@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&family=Noto+Serif+JP:wght@400;700&display=swap');

:root {
    --color-teal-dark: #0d4f4f;
    --color-teal-mid: #1a7a7a;
    --color-teal-light: #2ba3a3;
    --color-lime-vibrant: #84cc16;
    --color-lime-soft: #a3e635;
    --color-cyan-electric: #06b6d4;
    --color-cyan-bright: #22d3ee;
    --color-neutral-50: #fafafa;
    --color-neutral-100: #f5f5f5;
    --color-neutral-200: #e5e5e5;
    --color-neutral-300: #d4d4d4;
    --color-neutral-400: #a3a3a3;
    --color-neutral-500: #737373;
    --color-neutral-600: #525252;
    --color-neutral-800: #262626;
    --color-neutral-900: #171717;
    
    --gradient-primary: linear-gradient(135deg, var(--color-teal-dark) 0%, var(--color-teal-mid) 50%, var(--color-lime-vibrant) 100%);
    --gradient-water: linear-gradient(180deg, var(--color-teal-dark) 0%, var(--color-teal-light) 100%);
    --gradient-cyan: linear-gradient(135deg, var(--color-cyan-electric) 0%, var(--color-cyan-bright) 100%);
    
    --font-display: 'Noto Sans JP', sans-serif;
    --font-body: 'Noto Sans JP', sans-serif;
    --font-serif: 'Noto Serif JP', serif;
    
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-strong: 0 15px 50px rgba(0, 0, 0, 0.18);
    --shadow-glow: 0 0 30px rgba(6, 182, 212, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-neutral-50);
    color: var(--color-neutral-900);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

strong, p, span {
    color: inherit;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 700;
    font-family: var(--font-display);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    min-height: 52px;
    border: none;
    gap: 10px;
}

.btn-primary {
    background: var(--gradient-cyan);
    color: var(--color-neutral-900);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(6, 182, 212, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--color-neutral-900);
    border: 2px solid var(--color-neutral-900);
}

.btn-secondary:hover {
    background: var(--color-neutral-900);
    color: var(--color-neutral-50);
}

.btn-accent {
    background: var(--gradient-primary);
    color: var(--color-neutral-50);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-strong);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13, 79, 79, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-neutral-50);
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 18px;
    letter-spacing: -0.03em;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--gradient-cyan);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-link {
    padding: 10px 18px;
    color: var(--color-neutral-100);
    font-weight: 500;
    font-size: 14px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.nav-link:hover {
    color: var(--color-neutral-50);
    background: rgba(255, 255, 255, 0.1);
}

.nav-link.active {
    color: var(--color-lime-vibrant);
    background: rgba(132, 204, 22, 0.15);
}

.header-cta {
    padding: 12px 24px;
    font-size: 14px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-neutral-50);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: var(--gradient-primary);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
    animation: fluidMove 15s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(132, 204, 22, 0.1) 0%, transparent 70%);
    animation: fluidMove 20s ease-in-out infinite reverse;
}

@keyframes fluidMove {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(5deg); }
    66% { transform: translate(-20px, 20px) rotate(-3deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    color: var(--color-lime-soft);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-size: clamp(40px, 7vw, 72px);
    color: var(--color-neutral-50);
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 560px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    max-width: 700px;
    z-index: 1;
    opacity: 0.9;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-cyan-electric);
    margin-bottom: 16px;
    padding: 6px 14px;
    background: rgba(6, 182, 212, 0.1);
    border-radius: 4px;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    color: var(--color-neutral-900);
    margin-bottom: 20px;
}

.section-desc {
    font-size: 17px;
    color: var(--color-neutral-600);
    line-height: 1.8;
}

.card {
    background: var(--color-neutral-50);
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--color-neutral-200);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.card-glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-cyan);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-neutral-900);
    margin-bottom: 12px;
}

.card-text {
    font-size: 15px;
    color: var(--color-neutral-600);
    line-height: 1.7;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.features {
    background: var(--color-neutral-100);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--color-neutral-50);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

.feature-title {
    font-size: 22px;
    color: var(--color-neutral-900);
    margin-bottom: 16px;
}

.feature-text {
    font-size: 15px;
    color: var(--color-neutral-600);
    line-height: 1.7;
}

.services {
    background: var(--color-neutral-50);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--color-neutral-50);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    border: 1px solid var(--color-neutral-200);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.service-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-content {
    padding: 28px;
}

.service-price {
    display: inline-block;
    padding: 6px 14px;
    background: var(--gradient-cyan);
    color: var(--color-neutral-900);
    font-weight: 700;
    font-size: 14px;
    border-radius: 6px;
    margin-bottom: 14px;
}

.team {
    background: var(--gradient-primary);
    color: var(--color-neutral-50);
}

.team .section-label {
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-lime-soft);
}

.team .section-title {
    color: var(--color-neutral-50);
}

.team .section-desc {
    color: rgba(255, 255, 255, 0.8);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    text-align: center;
}

.team-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin: 0 auto 20px;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.3);
}

.team-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--color-neutral-50);
}

.team-role {
    font-size: 14px;
    color: var(--color-lime-soft);
    font-weight: 500;
}

.reviews {
    background: var(--color-neutral-100);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: var(--color-neutral-50);
    padding: 32px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.review-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.review-info {
    flex: 1;
}

.review-name {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-neutral-900);
}

.review-location {
    font-size: 13px;
    color: var(--color-neutral-600);
}

.review-stars {
    color: var(--color-lime-vibrant);
    font-size: 16px;
    margin-bottom: 16px;
}

.review-text {
    font-size: 15px;
    color: var(--color-neutral-600);
    line-height: 1.8;
    font-style: italic;
}

.cta-section {
    background: var(--gradient-primary);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(28px, 4vw, 42px);
    color: var(--color-neutral-50);
    margin-bottom: 20px;
}

.cta-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
}

.cta-section .btn-primary {
    background: var(--color-neutral-50);
    color: var(--color-teal-dark);
}

.cta-section .btn-primary:hover {
    background: var(--color-lime-soft);
}

.footer {
    background: var(--color-neutral-900);
    color: var(--color-neutral-300);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-neutral-50);
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-logo-icon {
    width: 44px;
    height: 44px;
    background: var(--gradient-cyan);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.footer-desc {
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-neutral-400);
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-neutral-50);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    font-size: 14px;
    color: var(--color-neutral-400);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--color-lime-vibrant);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
}

.footer-contact span {
    font-size: 18px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--color-neutral-800);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copyright {
    font-size: 13px;
    color: var(--color-neutral-500);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 13px;
    color: var(--color-neutral-500);
}

.footer-legal a:hover {
    color: var(--color-neutral-300);
}

.contact-hero {
    background: var(--gradient-primary);
    padding: 160px 0 80px;
    text-align: center;
}

.contact-hero-title {
    font-size: clamp(36px, 6vw, 56px);
    color: var(--color-neutral-50);
    margin-bottom: 20px;
}

.contact-hero-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto;
}

.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info {
    padding: 40px;
    background: var(--color-neutral-100);
    border-radius: 20px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 30px;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-cyan);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.contact-info-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-neutral-600);
    margin-bottom: 4px;
}

.contact-info-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-neutral-900);
}

.contact-map {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 16px;
    overflow: hidden;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-neutral-800);
    margin-bottom: 8px;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 16px 20px;
    font-size: 15px;
    font-family: var(--font-body);
    border: 2px solid var(--color-neutral-200);
    border-radius: 10px;
    background: var(--color-neutral-50);
    color: var(--color-neutral-900);
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--color-cyan-electric);
    box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.1);
}

.form-success-message {
    display: none;
    padding: 20px;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid var(--color-cyan-electric);
    border-radius: 12px;
    color: var(--color-teal-dark);
    font-weight: 600;
    text-align: center;
    margin-top: 20px;
}

.form-textarea {
    min-height: 140px;
    resize: vertical;
}

.process {
    background: var(--color-neutral-100);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -15px;
    width: 30px;
    height: 2px;
    background: var(--color-neutral-300);
}

.process-step:last-child::after {
    display: none;
}

.process-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 900;
    color: var(--color-neutral-50);
}

.process-title {
    font-size: 20px;
    color: var(--color-neutral-900);
    margin-bottom: 12px;
}

.process-text {
    font-size: 15px;
    color: var(--color-neutral-600);
    line-height: 1.7;
}

.faq {
    background: var(--color-neutral-50);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 16px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--color-neutral-200);
}

.faq-question {
    width: 100%;
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--color-neutral-50);
    border: none;
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;
    color: var(--color-neutral-900);
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--color-neutral-100);
}

.faq-icon {
    font-size: 24px;
    color: var(--color-cyan-electric);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: var(--color-neutral-100);
}

.faq-answer-content {
    padding: 0 30px 24px;
    font-size: 15px;
    color: var(--color-neutral-600);
    line-height: 1.8;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 79, 79, 0.8) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 24px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--color-neutral-50);
    font-weight: 600;
}

.filter-btn {
    transition: all 0.3s ease;
}

.filter-btn.active {
    background: var(--gradient-cyan);
    color: var(--color-neutral-900);
}

.page-header {
    background: var(--gradient-primary);
    padding: 160px 0 80px;
    text-align: center;
}

.page-title {
    font-size: clamp(32px, 5vw, 52px);
    color: var(--color-neutral-50);
    margin-bottom: 16px;
}

.page-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.page-breadcrumb a {
    color: var(--color-lime-soft);
}

.page-breadcrumb a:hover {
    text-decoration: underline;
}

.cookie-consent-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    max-width: 450px;
    background: var(--color-neutral-900);
    border-radius: 16px;
    padding: 28px;
    box-shadow: var(--shadow-strong);
    z-index: 9999;
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cookie-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-neutral-50);
    margin-bottom: 12px;
}

.cookie-text {
    font-size: 14px;
    color: var(--color-neutral-400);
    line-height: 1.6;
    margin-bottom: 20px;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-btn {
    flex: 1;
    min-width: 120px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.cookie-btn-accept {
    background: var(--gradient-cyan);
    color: var(--color-neutral-900);
}

.cookie-btn-decline {
    background: transparent;
    color: var(--color-neutral-400);
    border: 1px solid var(--color-neutral-600);
}

.cookie-btn:hover {
    transform: translateY(-2px);
}

.legal-page {
    padding: 140px 0 80px;
    background: var(--color-neutral-100);
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--color-neutral-50);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.legal-title {
    font-size: 36px;
    color: var(--color-neutral-900);
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--color-neutral-200);
}

.legal-section {
    margin-bottom: 32px;
}

.legal-subtitle {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-neutral-900);
    margin-bottom: 16px;
}

.legal-text {
    font-size: 15px;
    color: var(--color-neutral-600);
    line-height: 1.8;
}

.thank-you {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    padding: 120px 24px;
}

.thank-you-content {
    text-align: center;
    max-width: 600px;
}

.thank-you-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 32px;
    background: var(--color-neutral-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
}

.thank-you-title {
    font-size: clamp(32px, 5vw, 48px);
    color: var(--color-neutral-50);
    margin-bottom: 20px;
}

.thank-you-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.8;
}

@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .header-cta {
        display: none;
    }
    .header-inner {
        padding: 12px 16px;
    }
    
    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--color-teal-dark);
        flex-direction: column;
        padding: 20px;
        gap: 8px;
        transform: translateY(-150%);
        opacity: 0;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-image {
        display: none;
    }
    
    .section {
        padding: 70px 0;
    }
    
    .features-grid,
    .services-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .process-step::after {
        display: none;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-consent-banner {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .card,
    .feature-card {
        padding: 24px;
    }
    
    .service-content {
        padding: 20px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
}
