        :root {
            --navy: #0A2540;
            --navy-soft: #122d4a;
            --navy-deep: #061a2e;
            --white: #FFFFFF;
            --cream: #F5F2EC;
            --cream-dark: #EBE6DC;
            --sky: #3B82F6;
            --sky-soft: #60A5FA;
            --ink: #1a1a1a;
            --muted: #6b7280;
            --line: rgba(10, 37, 64, 0.12);
            --line-light: rgba(255, 255, 255, 0.12);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        html { scroll-behavior: smooth; }

        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--navy);
            background: var(--cream);
            overflow-x: hidden;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        .nav-links a{
            margin-left:35px !important;
        }

        body::before {
            content: '';
            position: fixed;
            inset: 0;
            pointer-events: none;
            z-index: 1;
            opacity: 0.35;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.08 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Fraunces', serif;
            font-weight: 500;
            letter-spacing: -0.02em;
            line-height: 1.05;
        }

        .sans { font-family: 'Manrope', sans-serif; }

        a { text-decoration: none; color: inherit; transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1); }
        img { max-width: 100%; display: block; }
        ul { list-style: none; }
        button { font-family: inherit; cursor: pointer; border: none; background: none; }

        .container {
            max-width: 1360px;
            margin: 0 auto;
            padding: 0 32px;
            position: relative;
            z-index: 2;
        }

        .eyebrow {
            font-family: 'Manrope', sans-serif;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: var(--sky);
            display: inline-flex;
            align-items: center;
            gap: 12px;
        }

        .eyebrow::before {
            content: '';
            width: 32px;
            height: 1px;
            background: currentColor;
        }

        .display {
            font-family: 'Fraunces', serif;
            font-weight: 400;
            letter-spacing: -0.03em;
            line-height: 0.95;
        }

        .display em {
            font-style: italic;
            font-weight: 300;
            color: var(--sky);
        }

        /* ===== NAVIGATION ===== */
        .nav {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 100;
            padding: 20px 0;
            transition: all 0.4s ease;
            mix-blend-mode: difference;
            color: var(--white);
        }

        .nav.scrolled {
            mix-blend-mode: normal;
            background: rgba(245, 242, 236, 0.85);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--line);
            color: var(--navy);
            padding: 14px 0;
        }

        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Fraunces', serif;
            font-size: 22px;
            font-weight: 500;
            letter-spacing: -0.01em;
        }

        .logo-mark {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: var(--white);
            color: var(--navy);
            display: grid;
            place-items: center;
            font-size: 14px;
            position: relative;
        }

        .nav.scrolled .logo-mark {
            background: var(--navy);
            color: var(--white);
        }

        .logo-mark::after {
            content: '';
            position: absolute;
            inset: -4px;
            border: 1px solid currentColor;
            border-radius: 50%;
            opacity: 0.3;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 36px;
            font-family: 'Manrope', sans-serif;
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 0.02em;
        }

        .nav-links a {
            position: relative;
            padding: 4px 0;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0;
            width: 0; height: 1px;
            background: currentColor;
            transition: width 0.4s ease;
        }

        .nav-links a:hover::after { width: 100%; }

        .nav-cta {
            padding: 12px 24px !important;
            border: 1px solid currentColor;
            border-radius: 100px;
            font-weight: 600 !important;
        }

        .nav-cta::after { display: none; }

        .nav-cta:hover {
            background: var(--sky);
            border-color: var(--sky);
            color: var(--white) !important;
        }

        .nav.scrolled .nav-cta:hover {
            background: var(--navy);
            border-color: var(--navy);
        }

        .menu-toggle {
            display: none;
            width: 40px;
            height: 40px;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 5px;
        }

        .menu-toggle span {
            width: 24px;
            height: 1.5px;
            background: currentColor;
            transition: all 0.3s ease;
        }

        .menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
        .menu-toggle.active span:nth-child(2) { opacity: 0; }
        .menu-toggle.active span:nth-child(2) { transform: rotate(-45deg); }

        /* ===== HERO ===== */
        .hero {
            min-height: 100vh;
            background: var(--navy);
            color: var(--white);
            position: relative;
            overflow: hidden;
            padding: 140px 0 80px;
            display: flex;
            align-items: center;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -30%; right: -10%;
            width: 70%; height: 140%;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 60%);
            pointer-events: none;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 80px;
            align-items: center;
        }

        .hero-meta {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 40px;
            font-family: 'Manrope', sans-serif;
            font-size: 12px;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            opacity: 0.7;
        }

        .hero-meta .dot {
            width: 6px; height: 6px;
            background: var(--sky);
            border-radius: 50%;
            animation: pulseDot 2s infinite;
        }

        @keyframes pulseDot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.4; transform: scale(1.4); }
        }

        .hero h1 {
            font-size: clamp(3rem, 7vw, 6.5rem);
            margin-bottom: 32px;
        }

        .hero h1 em {
            font-style: italic;
            font-weight: 300;
            color: var(--sky-soft);
            display: inline-block;
        }

        .hero h1 .underline-svg {
            position: relative;
            display: inline-block;
        }

        .hero h1 .underline-svg::after {
            content: '';
            position: absolute;
            left: 0; bottom: 8%;
            width: 100%; height: 12px;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 12' preserveAspectRatio='none'%3E%3Cpath d='M2 8 Q 75 2, 150 6 T 298 5' stroke='%233B82F6' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat;
            background-size: 100% 100%;
        }

        .hero-desc {
            font-size: 18px;
            line-height: 1.7;
            opacity: 0.75;
            max-width: 520px;
            margin-bottom: 48px;
        }

        .hero-actions {
            display: flex;
            align-items: center;
            gap: 24px;
            flex-wrap: wrap;
        }

        .btn-arrow {
            display: inline-flex;
            align-items: center;
            gap: 14px;
            font-family: 'Manrope', sans-serif;
            font-weight: 600;
            font-size: 14px;
            letter-spacing: 0.02em;
            padding: 18px 32px;
            border-radius: 100px;
            background: var(--white);
            color: var(--navy);
            transition: all 0.4s ease;
        }

        .btn-arrow .arrow-circle {
            width: 28px; height: 28px;
            border-radius: 50%;
            background: var(--navy);
            color: var(--white);
            display: grid; place-items: center;
            font-size: 11px;
            transition: transform 0.4s ease;
        }

        .btn-arrow:hover { background: var(--sky); color: var(--white); }
        .btn-arrow:hover .arrow-circle { background: var(--white); color: var(--sky); transform: rotate(-45deg); }

        .btn-ghost {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            font-family: 'Manrope', sans-serif;
            font-weight: 500;
            font-size: 14px;
            color: var(--white);
            padding: 18px 0;
            border-bottom: 1px solid rgba(255,255,255,0.3);
        }

        .btn-ghost:hover { border-color: var(--sky); color: var(--sky-soft); }

        .hero-visual {
            position: relative;
            aspect-ratio: 4/5;
        }

        .hero-img-main {
            position: absolute;
            inset: 0;
            border-radius: 240px 240px 24px 24px;
            overflow: hidden;
            box-shadow: 0 40px 80px -20px rgba(0,0,0,0.5);
        }

        .hero-img-main img {
            width: 100%; height: 100%;
            object-fit: cover;
            filter: saturate(0.9) contrast(1.05);
        }

        .hero-badge {
            position: absolute;
            background: var(--cream);
            color: var(--navy);
            padding: 18px 22px;
            border-radius: 20px;
            box-shadow: 0 20px 40px -10px rgba(0,0,0,0.3);
            display: flex;
            align-items: center;
            gap: 14px;
            font-family: 'Manrope', sans-serif;
        }

        .hero-badge.top {
            top: 40px; left: -40px;
            animation: floatBadge 6s ease-in-out infinite;
        }

        .hero-badge.bottom {
            bottom: 60px; right: -30px;
            animation: floatBadge 6s ease-in-out infinite 3s;
        }

        @keyframes floatBadge {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-12px); }
        }

        .hero-badge .badge-icon {
            width: 44px; height: 44px;
            border-radius: 12px;
            background: var(--navy);
            color: var(--white);
            display: grid; place-items: center;
            font-size: 16px;
        }

        .hero-badge .badge-text strong {
            display: block;
            font-size: 15px;
            font-weight: 700;
        }

        .hero-badge .badge-text span {
            font-size: 11px;
            opacity: 0.6;
        }

        .hero-scroll {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            font-family: 'Manrope', sans-serif;
            font-size: 11px;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            opacity: 0.5;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
        }

        .hero-scroll::after {
            content: '';
            width: 1px; height: 40px;
            background: currentColor;
            animation: scrollLine 2s ease-in-out infinite;
        }

        @keyframes scrollLine {
            0%, 100% { transform: scaleY(1); transform-origin: top; }
            50% { transform: scaleY(0.3); transform-origin: top; }
        }

        /* ===== MARQUEE ===== */
        .marquee {
            background: var(--navy);
            color: var(--white);
            padding: 28px 0;
            overflow: hidden;
            border-top: 1px solid var(--line-light);
            border-bottom: 1px solid var(--line-light);
        }

        .marquee-track {
            display: flex;
            gap: 60px;
            animation: marquee 40s linear infinite;
            white-space: nowrap;
        }

        .marquee-item {
            font-family: 'Fraunces', serif;
            font-size: 32px;
            font-style: italic;
            font-weight: 300;
            display: flex;
            align-items: center;
            gap: 60px;
            opacity: 0.8;
        }

        .marquee-item::after {
            content: '✦';
            color: var(--sky);
            font-style: normal;
            font-size: 18px;
        }

        @keyframes marquee {
            to { transform: translateX(-50%); }
        }

        /* ===== ABOUT ===== */
        .about {
            padding: 140px 0;
            background: var(--cream);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 80px;
            align-items: start;
        }

        .about-sticky {
            position: sticky;
            top: 120px;
        }

        .about-sticky h2 {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            margin: 24px 0 32px;
        }

        .about-sticky h2 em {
            font-style: italic;
            font-weight: 300;
            color: var(--sky);
        }

        .about-sticky p {
            font-size: 17px;
            line-height: 1.7;
            color: var(--navy-soft);
            max-width: 440px;
        }

        .about-principles {
            display: grid;
            gap: 2px;
            background: var(--line);
            border: 1px solid var(--line);
            border-radius: 24px;
            overflow: hidden;
        }

        .principle {
            background: var(--cream);
            padding: 36px 32px;
            display: grid;
            grid-template-columns: 60px 1fr;
            gap: 24px;
            transition: background 0.4s ease;
        }

        .principle:hover { background: var(--white); }

        .principle-num {
            font-family: 'Fraunces', serif;
            font-size: 32px;
            font-style: italic;
            color: var(--sky);
            font-weight: 400;
        }

        .principle h4 {
            font-family: 'Fraunces', serif;
            font-size: 24px;
            font-weight: 500;
            margin-bottom: 8px;
        }

        .principle p {
            font-size: 14px;
            color: var(--muted);
            line-height: 1.6;
        }

        /* ===== METRICS ===== */
        .metrics {
            background: var(--navy);
            color: var(--white);
            padding: 120px 0;
            position: relative;
            overflow: hidden;
        }

        .metrics::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.1) 0%, transparent 40%);
        }

        .metrics-header {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: end;
            margin-bottom: 80px;
            position: relative;
        }

        .metrics-header h2 {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            color: var(--white);
        }

        .metrics-header h2 em {
            font-style: italic;
            font-weight: 300;
            color: var(--sky-soft);
        }

        .metrics-header p {
            font-size: 16px;
            opacity: 0.7;
            max-width: 400px;
        }

        .metrics-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2px;
            background: var(--line-light);
            border: 1px solid var(--line-light);
            border-radius: 24px;
            overflow: hidden;
            position: relative;
        }

        .metric {
            background: var(--navy);
            padding: 48px 32px;
            position: relative;
            transition: background 0.4s ease;
        }

        .metric:hover { background: var(--navy-soft); }

        .metric-label {
            font-family: 'Manrope', sans-serif;
            font-size: 11px;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            opacity: 0.6;
            margin-bottom: 20px;
        }

        .metric-value {
            font-family: 'Fraunces', serif;
            font-size: clamp(3rem, 5vw, 5rem);
            font-weight: 400;
            line-height: 1;
            margin-bottom: 16px;
        }

        .metric-value em {
            font-style: italic;
            color: var(--sky-soft);
            font-weight: 300;
        }

        .metric-desc {
            font-size: 14px;
            opacity: 0.7;
            line-height: 1.5;
        }

        /* ===== BENTO FEATURES ===== */
        .features {
            padding: 140px 0;
            background: var(--cream);
        }

        .section-head {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: end;
            margin-bottom: 80px;
        }

        .section-head h2 {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
        }

        .section-head h2 em {
            font-style: italic;
            font-weight: 300;
            color: var(--sky);
        }

        .section-head p {
            font-size: 16px;
            color: var(--muted);
            max-width: 440px;
            line-height: 1.7;
        }

        .bento {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            grid-auto-rows: 200px;
            gap: 16px;
        }

        .bento-card {
            background: var(--white);
            border-radius: 24px;
            padding: 32px;
            position: relative;
            overflow: hidden;
            transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
            border: 1px solid var(--line);
        }

        .bento-card:hover { transform: translateY(-6px); }

        .bento-card.dark {
            background: var(--navy);
            color: var(--white);
            border-color: transparent;
        }

        .bento-card.accent {
            background: var(--sky);
            color: var(--white);
            border-color: transparent;
        }

        .bento-card.span-2 { grid-column: span 2; }
        .bento-card.span-3 { grid-column: span 3; }
        .bento-card.span-4 { grid-column: span 4; }
        .bento-card.row-2 { grid-row: span 2; }

        .bento-num {
            font-family: 'Fraunces', serif;
            font-style: italic;
            font-size: 14px;
            opacity: 0.5;
            margin-bottom: 20px;
            display: block;
        }

        .bento-icon {
            width: 56px; height: 56px;
            border-radius: 16px;
            background: var(--cream);
            color: var(--navy);
            display: grid; place-items: center;
            font-size: 20px;
            margin-bottom: 24px;
        }

        .bento-card.dark .bento-icon {
            background: rgba(255,255,255,0.1);
            color: var(--white);
        }

        .bento-card.accent .bento-icon {
            background: rgba(255,255,255,0.2);
            color: var(--white);
        }

        .bento-card h3 {
            font-size: 24px;
            margin-bottom: 12px;
            font-weight: 500;
        }

        .bento-card p {
            font-size: 14px;
            line-height: 1.6;
            opacity: 0.75;
        }

        .bento-card.large h3 { font-size: 32px; }

        /* ===== PROCESS ===== */
        .process {
            padding: 140px 0;
            background: var(--white);
        }

        .process-list {
            margin-top: 80px;
        }

        .process-item {
            display: grid;
            grid-template-columns: 100px 1fr 1.2fr 1fr;
            gap: 40px;
            padding: 40px 0;
            border-top: 1px solid var(--line);
            align-items: center;
            transition: all 0.4s ease;
            cursor: pointer;
        }

        .process-item:last-child { border-bottom: 1px solid var(--line); }

        .process-item:hover {
            padding-left: 20px;
            background: linear-gradient(90deg, var(--cream) 0%, transparent 100%);
        }

        .process-item:hover .process-num { color: var(--sky); }

        .process-num {
            font-family: 'Fraunces', serif;
            font-style: italic;
            font-size: 48px;
            font-weight: 400;
            color: var(--navy);
            transition: color 0.4s ease;
        }

        .process-title {
            font-family: 'Fraunces', serif;
            font-size: 28px;
            font-weight: 500;
        }

        .process-desc {
            font-size: 14px;
            color: var(--muted);
            line-height: 1.6;
        }

        .process-arrow {
            justify-self: end;
            width: 48px; height: 48px;
            border-radius: 50%;
            border: 1px solid var(--line);
            display: grid; place-items: center;
            transition: all 0.4s ease;
        }

        .process-item:hover .process-arrow {
            background: var(--navy);
            color: var(--white);
            border-color: var(--navy);
            transform: rotate(-45deg);
        }

        /* ===== PRICING ===== */
        .pricing {
            padding: 140px 0;
            background: var(--cream);
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .price-card {
            background: var(--white);
            border-radius: 28px;
            padding: 40px;
            border: 1px solid var(--line);
            position: relative;
            transition: all 0.4s ease;
        }

        .price-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 30px 60px -20px rgba(10, 37, 64, 0.15);
        }

        .price-card.featured {
            background: var(--navy);
            color: var(--white);
            border-color: transparent;
            transform: scale(1.02);
        }

        .price-card.featured:hover { transform: scale(1.02) translateY(-8px); }

        .price-tag {
            position: absolute;
            top: 24px; right: 24px;
            font-family: 'Manrope', sans-serif;
            font-size: 10px;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            padding: 6px 14px;
            border-radius: 100px;
            background: var(--sky);
            color: var(--white);
        }

        .price-name {
            font-family: 'Fraunces', serif;
            font-size: 28px;
            font-weight: 500;
            margin-bottom: 8px;
        }

        .price-name em { font-style: italic; font-weight: 300; }

        .price-tagline {
            font-size: 13px;
            opacity: 0.6;
            margin-bottom: 32px;
        }

        .price-amount {
            display: flex;
            align-items: baseline;
            gap: 8px;
            margin-bottom: 32px;
            padding-bottom: 32px;
            border-bottom: 1px solid var(--line);
        }

        .price-card.featured .price-amount { border-color: var(--line-light); }

        .price-amount .currency {
            font-family: 'Fraunces', serif;
            font-size: 24px;
            font-style: italic;
        }

        .price-amount .value {
            font-family: 'Fraunces', serif;
            font-size: 64px;
            font-weight: 400;
            line-height: 1;
        }

        .price-amount .period {
            font-size: 13px;
            opacity: 0.6;
        }

        .price-features {
            margin-bottom: 32px;
        }

        .price-features li {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 0;
            font-size: 14px;
        }

        .price-features li i {
            width: 20px; height: 20px;
            border-radius: 50%;
            background: var(--cream);
            color: var(--navy);
            display: grid; place-items: center;
            font-size: 9px;
        }

        .price-card.featured .price-features li i {
            background: rgba(255,255,255,0.15);
            color: var(--white);
        }

        .price-features li.off { opacity: 0.35; }

        .price-btn {
            display: block;
            width: 100%;
            padding: 16px;
            text-align: center;
            border-radius: 100px;
            font-family: 'Manrope', sans-serif;
            font-weight: 600;
            font-size: 14px;
            background: var(--navy);
            color: var(--white);
            transition: all 0.4s ease;
        }

        .price-card.featured .price-btn {
            background: var(--white);
            color: var(--navy);
        }

        .price-btn:hover { background: var(--sky); color: var(--white); }
        .price-card.featured .price-btn:hover { background: var(--sky); color: var(--white); }

        /* ===== SERVICES ===== */
        .services {
            padding: 140px 0;
            background: var(--white);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .service-card {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            aspect-ratio: 4/5;
            cursor: pointer;
            group: true;
        }

        .service-card img {
            width: 100%; height: 100%;
            object-fit: cover;
            transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
            filter: saturate(0.85);
        }

        .service-card:hover img { transform: scale(1.08); }

        .service-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(10, 37, 64, 0.95) 0%, rgba(10, 37, 64, 0.3) 50%, transparent 100%);
            padding: 32px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            color: var(--white);
        }

        .service-num {
            position: absolute;
            top: 24px; left: 32px;
            font-family: 'Fraunces', serif;
            font-style: italic;
            font-size: 14px;
            opacity: 0.8;
        }

        .service-icon {
            width: 52px; height: 52px;
            border-radius: 14px;
            background: var(--sky);
            color: var(--white);
            display: grid; place-items: center;
            font-size: 18px;
            margin-bottom: 20px;
            transition: transform 0.4s ease;
        }

        .service-card:hover .service-icon { transform: rotate(-8deg) scale(1.1); }

        .service-card h3 {
            font-size: 26px;
            font-weight: 500;
            margin-bottom: 10px;
        }

        .service-card p {
            font-size: 13px;
            opacity: 0.85;
            line-height: 1.6;
            margin-bottom: 16px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease;
        }

        .service-card:hover p { max-height: 100px; }

        .service-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-family: 'Manrope', sans-serif;
            font-size: 12px;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            font-weight: 600;
        }

        .service-link i { transition: transform 0.4s ease; }
        .service-card:hover .service-link i { transform: translateX(6px); }

        /* ===== CTA BAND ===== */
        .cta-band {
            background: var(--navy);
            color: var(--white);
            padding: 120px 0;
            position: relative;
            overflow: hidden;
        }

        .cta-band::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.2) 0%, transparent 60%);
        }

        .cta-inner {
            text-align: center;
            position: relative;
            max-width: 900px;
            margin: 0 auto;
        }

        .cta-inner h2 {
            font-size: clamp(2.5rem, 6vw, 5.5rem);
            margin-bottom: 32px;
        }

        .cta-inner h2 em {
            font-style: italic;
            font-weight: 300;
            color: var(--sky-soft);
        }

        .cta-inner p {
            font-size: 18px;
            opacity: 0.75;
            max-width: 600px;
            margin: 0 auto 48px;
        }

        /* ===== INSURANCE ===== */
        .insurance {
            padding: 140px 0;
            background: var(--cream);
        }

        .insurance-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .insurance-visual {
            position: relative;
            aspect-ratio: 1;
            border-radius: 24px;
            overflow: hidden;
        }

        .insurance-visual img {
            width: 100%; height: 100%;
            object-fit: cover;
        }

        .insurance-visual::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, transparent 50%, rgba(10, 37, 64, 0.4) 100%);
        }

        .insurance-float {
            position: absolute;
            bottom: 24px; left: 24px; right: 24px;
            background: var(--cream);
            padding: 24px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            gap: 20px;
            z-index: 2;
        }

        .insurance-float-icon {
            width: 56px; height: 56px;
            border-radius: 14px;
            background: var(--navy);
            color: var(--white);
            display: grid; place-items: center;
            font-size: 20px;
            flex-shrink: 0;
        }

        .insurance-float strong {
            display: block;
            font-family: 'Fraunces', serif;
            font-size: 20px;
            font-weight: 500;
        }

        .insurance-float span {
            font-size: 13px;
            color: var(--muted);
        }

        .insurance-content h2 {
            font-size: clamp(2rem, 4vw, 3.5rem);
            margin: 24px 0 24px;
        }

        .insurance-content h2 em {
            font-style: italic;
            font-weight: 300;
            color: var(--sky);
        }

        .insurance-list {
            margin: 32px 0 40px;
        }

        .insurance-list li {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 16px 0;
            border-bottom: 1px solid var(--line);
            font-size: 15px;
        }

        .insurance-list li i {
            width: 32px; height: 32px;
            border-radius: 50%;
            background: var(--navy);
            color: var(--white);
            display: grid; place-items: center;
            font-size: 11px;
            flex-shrink: 0;
        }

        /* ===== BOOKING ===== */
        .booking {
            padding: 140px 0;
            background: var(--white);
        }

        .booking-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 60px;
            background: var(--navy);
            color: var(--white);
            border-radius: 32px;
            overflow: hidden;
        }

        .booking-info {
            padding: 60px 48px;
            position: relative;
        }

        .booking-info::before {
            content: '';
            position: absolute;
            top: -50%; right: -30%;
            width: 400px; height: 400px;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
            border-radius: 50%;
        }

        .booking-info h3 {
            font-size: 36px;
            margin: 20px 0 16px;
            position: relative;
        }

        .booking-info h3 em {
            font-style: italic;
            font-weight: 300;
            color: var(--sky-soft);
        }

        .booking-info > p {
            opacity: 0.7;
            margin-bottom: 40px;
            position: relative;
        }

        .booking-contact {
            position: relative;
        }

        .booking-contact-item {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 18px 0;
            border-top: 1px solid var(--line-light);
        }

        .booking-contact-item:last-child { border-bottom: 1px solid var(--line-light); }

        .booking-contact-item i {
            width: 40px; height: 40px;
            border-radius: 10px;
            background: rgba(255,255,255,0.08);
            display: grid; place-items: center;
            font-size: 14px;
            color: var(--sky-soft);
        }

        .booking-contact-item strong {
            display: block;
            font-family: 'Manrope', sans-serif;
            font-size: 11px;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            opacity: 0.6;
            margin-bottom: 2px;
            font-weight: 600;
        }

        .booking-contact-item span {
            font-size: 15px;
        }

        .booking-form-wrap {
            background: var(--cream);
            color: var(--navy);
            padding: 60px 48px;
        }

        .booking-form-wrap h3 {
            font-family: 'Fraunces', serif;
            font-size: 32px;
            font-weight: 500;
            margin-bottom: 8px;
        }

        .booking-form-wrap h3 em { font-style: italic; font-weight: 300; color: var(--sky); }

        .booking-form-wrap > p {
            font-size: 14px;
            color: var(--muted);
            margin-bottom: 32px;
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .field { margin-bottom: 16px; }
        .field.full { grid-column: span 2; }

        .field label {
            display: block;
            font-family: 'Manrope', sans-serif;
            font-size: 11px;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--navy);
        }

        .field input,
        .field select,
        .field textarea {
            width: 100%;
            padding: 14px 16px;
            border: 1px solid var(--line);
            border-radius: 12px;
            background: var(--white);
            font-family: 'Open Sans', sans-serif;
            font-size: 14px;
            color: var(--navy);
            transition: all 0.3s ease;
        }

        .field input:focus,
        .field select:focus,
        .field textarea:focus {
            outline: none;
            border-color: var(--sky);
            box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
        }

        .field textarea { resize: vertical; min-height: 100px; }

        .submit-btn {
            width: 100%;
            padding: 18px;
            background: var(--navy);
            color: var(--white);
            border-radius: 100px;
            font-family: 'Manrope', sans-serif;
            font-weight: 600;
            font-size: 14px;
            letter-spacing: 0.02em;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            transition: all 0.4s ease;
            margin-top: 8px;
        }

        .submit-btn:hover { background: var(--sky); }

        .submit-btn .arrow-circle {
            width: 24px; height: 24px;
            border-radius: 50%;
            background: var(--white);
            color: var(--navy);
            display: grid; place-items: center;
            font-size: 10px;
            transition: transform 0.4s ease;
        }

        .submit-btn:hover .arrow-circle { transform: rotate(-45deg); }

        /* ===== REVIEWS ===== */
        .reviews {
            padding: 140px 0;
            background: var(--cream);
        }

        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .review {
            background: var(--white);
            border-radius: 24px;
            padding: 36px;
            border: 1px solid var(--line);
            display: flex;
            flex-direction: column;
            transition: all 0.4s ease;
        }

        .review:hover {
            transform: translateY(-6px);
            box-shadow: 0 30px 60px -20px rgba(10, 37, 64, 0.12);
        }

        .review:nth-child(even) {
            background: var(--navy);
            color: var(--white);
            border-color: transparent;
        }

        .review-stars {
            display: flex;
            gap: 3px;
            margin-bottom: 20px;
            color: #FBBF24;
            font-size: 13px;
        }

        .review-quote {
            font-family: 'Fraunces', serif;
            font-size: 19px;
            font-weight: 400;
            line-height: 1.5;
            margin-bottom: 32px;
            flex: 1;
        }

        .review:nth-child(even) .review-quote { color: rgba(255,255,255,0.9); }

        .review-author {
            display: flex;
            align-items: center;
            gap: 14px;
            padding-top: 24px;
            border-top: 1px solid var(--line);
        }

        .review:nth-child(even) .review-author { border-color: var(--line-light); }

        .review-avatar {
            width: 48px; height: 48px;
            border-radius: 50%;
            overflow: hidden;
            flex-shrink: 0;
        }

        .review-avatar img { width: 100%; height: 100%; object-fit: cover; }

        .review-name {
            font-family: 'Manrope', sans-serif;
            font-weight: 600;
            font-size: 14px;
        }

        .review-loc {
            font-size: 12px;
            opacity: 0.6;
        }

        /* ===== FAQ ===== */
        .faq {
            padding: 140px 0;
            background: var(--white);
        }

        .faq-grid {
            display: grid;
            grid-template-columns: 1fr 1.4fr;
            gap: 80px;
            align-items: start;
        }

        .faq-sticky {
            position: sticky;
            top: 120px;
        }

        .faq-sticky h2 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            margin: 24px 0 24px;
        }

        .faq-sticky h2 em { font-style: italic; font-weight: 300; color: var(--sky); }

        .faq-sticky p {
            font-size: 15px;
            color: var(--muted);
            line-height: 1.7;
            margin-bottom: 32px;
        }

        .faq-list { display: grid; gap: 12px; }

        .faq-item {
            border: 1px solid var(--line);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item.open {
            background: var(--cream);
            border-color: var(--navy);
        }

        .faq-q {
            padding: 24px 28px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            cursor: pointer;
            font-family: 'Fraunces', serif;
            font-size: 18px;
            font-weight: 500;
        }

        .faq-toggle {
            width: 32px; height: 32px;
            border-radius: 50%;
            border: 1px solid var(--line);
            display: grid; place-items: center;
            font-size: 12px;
            flex-shrink: 0;
            transition: all 0.4s ease;
        }

        .faq-item.open .faq-toggle {
            background: var(--navy);
            color: var(--white);
            border-color: var(--navy);
            transform: rotate(45deg);
        }

        .faq-a {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease;
        }

        .faq-item.open .faq-a { max-height: 300px; }

        .faq-a-inner {
            padding: 0 28px 24px;
            font-size: 14px;
            color: var(--muted);
            line-height: 1.7;
        }

        /* ===== CONTACT ===== */
        .contact {
            padding: 140px 0;
            background: var(--navy);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .contact::before {
            content: '';
            position: absolute;
            top: -30%; right: -10%;
            width: 60%; height: 160%;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 60%);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 80px;
            position: relative;
        }

        .contact-info h2 {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            color: var(--white);
            margin: 24px 0 24px;
        }

        .contact-info h2 em {
            font-style: italic;
            font-weight: 300;
            color: var(--sky-soft);
        }

        .contact-info > p {
            opacity: 0.7;
            margin-bottom: 48px;
            max-width: 420px;
        }

        .contact-methods {
            display: grid;
            gap: 2px;
            background: var(--line-light);
            border-radius: 20px;
            overflow: hidden;
        }

        .contact-method {
            background: var(--navy);
            padding: 24px;
            display: flex;
            align-items: center;
            gap: 20px;
            transition: background 0.3s ease;
        }

        .contact-method:hover { background: var(--navy-soft); }

        .contact-method i {
            width: 48px; height: 48px;
            border-radius: 12px;
            background: rgba(59, 130, 246, 0.15);
            color: var(--sky-soft);
            display: grid; place-items: center;
            font-size: 16px;
            flex-shrink: 0;
        }

        .contact-method strong {
            display: block;
            font-family: 'Manrope', sans-serif;
            font-size: 11px;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            opacity: 0.6;
            margin-bottom: 4px;
            font-weight: 600;
        }

        .contact-method span {
            font-size: 15px;
        }

        .contact-form {
            background: var(--cream);
            color: var(--navy);
            padding: 48px;
            border-radius: 24px;
        }

        .contact-form h3 {
            font-size: 28px;
            margin-bottom: 8px;
        }

        .contact-form h3 em { font-style: italic; font-weight: 300; color: var(--sky); }

        .contact-form > p {
            font-size: 14px;
            color: var(--muted);
            margin-bottom: 28px;
        }

        /* ===== NEWSLETTER ===== */
        .newsletter {
            padding: 140px 0;
            background: var(--cream);
        }

        .newsletter-card {
            background: var(--white);
            border-radius: 32px;
            overflow: hidden;
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            border: 1px solid var(--line);
        }

        .newsletter-left {
            padding: 60px 48px;
            background: var(--navy);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .newsletter-left::before {
            content: '';
            position: absolute;
            bottom: -50%; right: -30%;
            width: 400px; height: 400px;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.25) 0%, transparent 70%);
            border-radius: 50%;
        }

        .newsletter-left h2 {
            font-size: clamp(2rem, 3.5vw, 3rem);
            color: var(--white);
            margin: 20px 0 20px;
            position: relative;
        }

        .newsletter-left h2 em { font-style: italic; font-weight: 300; color: var(--sky-soft); }

        .newsletter-left p {
            opacity: 0.75;
            font-size: 15px;
            line-height: 1.7;
            position: relative;
        }

        .newsletter-right {
            padding: 60px 48px;
        }

        .newsletter-right h3 {
            font-family: 'Fraunces', serif;
            font-size: 24px;
            font-weight: 500;
            margin-bottom: 24px;
        }

        .newsletter-success {
            display: none;
            text-align: center;
            padding: 40px 20px;
        }

        .newsletter-success i {
            font-size: 48px;
            color: var(--sky);
            margin-bottom: 16px;
        }

        .newsletter-success h4 {
            font-family: 'Fraunces', serif;
            font-size: 24px;
            margin-bottom: 8px;
        }

        .newsletter-success p {
            color: var(--muted);
            font-size: 14px;
        }

        /* ===== LEGAL ===== */
        .legal {
            padding: 100px 0;
            background: var(--white);
        }

        .legal-wrap {
            max-width: 860px;
            margin: 0 auto;
        }

        .legal-wrap h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            margin-bottom: 12px;
        }

        .legal-wrap h2 em { font-style: italic; font-weight: 300; color: var(--sky); }

        .legal-updated {
            font-family: 'Manrope', sans-serif;
            font-size: 12px;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            opacity: 0.6;
            margin-bottom: 40px;
            padding-bottom: 24px;
            border-bottom: 1px solid var(--line);
        }

        .legal-wrap h3 {
            font-family: 'Fraunces', serif;
            font-size: 22px;
            font-weight: 500;
            margin: 32px 0 12px;
        }

        .legal-wrap p {
            color: var(--muted);
            font-size: 15px;
            line-height: 1.7;
            margin-bottom: 12px;
        }

        /* ===== FOOTER ===== */
        .footer {
            background: var(--navy-deep);
            color: var(--white);
            padding: 100px 0 0;
            position: relative;
        }

        .footer-top {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
            gap: 60px;
            padding-bottom: 80px;
            border-bottom: 1px solid var(--line-light);
        }

        .footer-brand p {
            opacity: 0.6;
            font-size: 14px;
            line-height: 1.7;
            margin: 20px 0 28px;
            max-width: 320px;
        }

        .footer-social {
            display: flex;
            gap: 10px;
        }

        .footer-social a {
            width: 40px; height: 40px;
            border-radius: 50%;
            border: 1px solid var(--line-light);
            display: grid; place-items: center;
            font-size: 13px;
            transition: all 0.3s ease;
        }

        .footer-social a:hover {
            background: var(--sky);
            border-color: var(--sky);
            transform: translateY(-3px);
        }

        .footer-col h5 {
            font-family: 'Manrope', sans-serif;
            font-size: 11px;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            opacity: 0.5;
            margin-bottom: 24px;
            font-weight: 600;
        }

        .footer-col ul li {
            margin-bottom: 12px;
        }

        .footer-col ul li a {
            font-size: 14px;
            opacity: 0.75;
            transition: all 0.3s ease;
        }

        .footer-col ul li a:hover {
            opacity: 1;
            color: var(--sky-soft);
            padding-left: 6px;
        }

        .footer-newsletter-cta {
            display: flex;
            gap: 8px;
            margin-top: 16px;
        }

        .footer-newsletter-cta input {
            flex: 1;
            padding: 14px 16px;
            background: rgba(255,255,255,0.05);
            border: 1px solid var(--line-light);
            border-radius: 100px;
            color: var(--white);
            font-size: 13px;
            font-family: inherit;
        }

        .footer-newsletter-cta input::placeholder { color: rgba(255,255,255,0.4); }

        .footer-newsletter-cta input:focus {
            outline: none;
            border-color: var(--sky);
        }

        .footer-newsletter-cta button {
            width: 48px; height: 48px;
            border-radius: 50%;
            background: var(--sky);
            color: var(--white);
            display: grid; place-items: center;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .footer-newsletter-cta button:hover {
            background: var(--white);
            color: var(--navy);
            transform: rotate(-45deg);
        }

        .footer-bottom {
            padding: 28px 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 16px;
            font-size: 13px;
            opacity: 0.5;
        }

        .footer-bottom-links {
            display: flex;
            gap: 28px;
        }

        .footer-bottom-links a:hover { opacity: 1; color: var(--sky-soft); }

        /* ===== BACK TO TOP ===== */
        .to-top {
            position: fixed;
            bottom: 30px; right: 30px;
            width: 52px; height: 52px;
            border-radius: 50%;
            background: var(--navy);
            color: var(--white);
            display: grid; place-items: center;
            font-size: 14px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            z-index: 99;
            box-shadow: 0 10px 30px rgba(10, 37, 64, 0.3);
        }

        .to-top.visible { opacity: 1; visibility: visible; }
        .to-top:hover { background: var(--sky); transform: translateY(-4px); }

        /* ===== REVEAL ===== */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
        }

        .reveal.in {
            opacity: 1;
            transform: translateY(0);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .hero-grid,
            .about-grid,
            .metrics-header,
            .section-head,
            .insurance-grid,
            .booking-grid,
            .faq-grid,
            .contact-grid,
            .newsletter-card {
                grid-template-columns: 1fr;
                gap: 48px;
            }

            .about-sticky, .faq-sticky { position: static; }

            .metrics-grid { grid-template-columns: repeat(2, 1fr); }
            .bento { grid-template-columns: repeat(4, 1fr); }
            .bento-card.span-3, .bento-card.span-4 { grid-column: span 4; }
            .bento-card.span-2 { grid-column: span 2; }

            .services-grid, .pricing-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }

            .process-item { grid-template-columns: 60px 1fr 40px; }
            .process-desc { display: none; }

            .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
            .price-card.featured { transform: none; }
            .price-card.featured:hover { transform: translateY(-8px); }
        }

        @media (max-width: 768px) {
            .container { padding: 0 20px; }

            .nav-links {
                position: fixed;
                top: 0; right: -100%;
                width: 85%; max-width: 360px;
                height: 100vh;
                background: var(--navy);
                color: var(--white);
                flex-direction: column;
                align-items: flex-start;
                padding: 100px 32px 32px;
                gap: 20px;
                transition: right 0.4s ease;
                z-index: 99;
                mix-blend-mode: normal;
            }

            .nav-links.active { right: 0; }
            .menu-toggle { display: flex; }

            .hero { padding: 120px 0 60px; }
            .hero-visual { max-width: 400px; margin: 0 auto; }
            .hero-badge.top { left: 0; }
            .hero-badge.bottom { right: 0; }

            .bento { grid-template-columns: 1fr 1fr; }
            .bento-card, .bento-card.span-2, .bento-card.span-3, .bento-card.span-4 { grid-column: span 2; }

            .services-grid, .pricing-grid, .reviews-grid, .metrics-grid { grid-template-columns: 1fr; }

            .form-grid { grid-template-columns: 1fr; }
            .field.full { grid-column: span 1; }

            .booking-info, .booking-form-wrap, .newsletter-left, .newsletter-right, .contact-form { padding: 36px 28px; }

            .footer-top { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; text-align: center; }

            .marquee-item { font-size: 22px; gap: 40px; }

            .process-item { grid-template-columns: 1fr; gap: 12px; padding: 28px 0; }
            .process-num { font-size: 32px; }
            .process-arrow { display: none; }
        }

        @media (max-width: 480px) {
            .hero h1 { font-size: 2.75rem; }
            .hero-actions { flex-direction: column; align-items: stretch; }
            .btn-arrow, .btn-ghost { justify-content: center; }
        }
