        /* ===== Reset ===== */
        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

        /* ===== Design Tokens ===== */
        :root {
            --serif: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
            --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            --black: #0a0a0a;
            --white: #ffffff;
            --cream: #f8f6f3;
            --warm-gray: #8a8278;
            --light-gray: #e8e4df;
            --gold: #b8975a;
            --gold-light: #d4b87a;
            --charcoal: #2a2a2a;
            --soft-black: #1a1a1a;
            --max-w: 1140px;
            --max-w-narrow: 780px;
        }

        body {
            font-family: var(--sans);
            background: var(--cream);
            color: var(--black);
            line-height: 1.7;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        img { max-width: 100%; height: auto; display: block; }
        a { color: inherit; text-decoration: none; transition: all .4s cubic-bezier(.25,.1,.25,1); }

        /* ===== Layout ===== */
        .container {
            max-width: var(--max-w);
            margin: 0 auto;
            padding: 0 40px;
        }
        .container-narrow {
            max-width: var(--max-w-narrow);
            margin: 0 auto;
            padding: 0 40px;
        }
        .section {
            padding: 120px 0;
        }
        .section-sm {
            padding: 80px 0;
        }
        .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

        /* ===== Navigation ===== */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            transition: all .6s cubic-bezier(.25,.1,.25,1);
        }
        .nav-bar {
            max-width: var(--max-w);
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 24px 40px;
            transition: padding .6s;
        }
        .nav.scrolled {
            background: rgba(248,246,243,.97);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            box-shadow: 0 1px 0 rgba(0,0,0,.04);
        }
        .nav.scrolled .nav-bar { padding: 14px 40px; }
        .nav-logo {
            font-family: var(--serif);
            font-size: 1.4rem;
            font-weight: 400;
            letter-spacing: .12em;
            text-transform: uppercase;
            color: var(--white);
            transition: color .6s;
        }
        .nav.scrolled .nav-logo { color: var(--black); }
        .nav-links {
            display: flex;
            gap: 36px;
            list-style: none;
        }
        .nav-links a {
            font-size: .68rem;
            font-weight: 500;
            letter-spacing: .2em;
            text-transform: uppercase;
            color: rgba(255,255,255,.65);
            position: relative;
            padding-bottom: 4px;
        }
        .nav.scrolled .nav-links a { color: var(--warm-gray); }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--gold);
            transition: width .4s;
        }
        .nav-links a:hover { color: var(--white); }
        .nav.scrolled .nav-links a:hover { color: var(--black); }
        .nav-links a:hover::after { width: 100%; }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--white);
            cursor: pointer;
            padding: 8px;
            transition: color .6s;
        }
        .nav.scrolled .nav-toggle { color: var(--black); }

        /* ===== Hero ===== */
        .hero {
            position: relative;
            min-height: 100vh;
            overflow: hidden;
            background: var(--black);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .hero-network {
            position: absolute;
            inset: 0;
            z-index: 0;
            width: 100%;
            height: 100%;
        }
        .hero-overlay {
            position: absolute;
            inset: 0;
            z-index: 1;
            background:
                linear-gradient(180deg, rgba(10,10,10,.2) 0%, transparent 40%, rgba(10,10,10,.4) 100%),
                radial-gradient(ellipse at 50% 50%, transparent 30%, rgba(10,10,10,.3) 100%);
        }
        .hero-vignette {
            position: absolute;
            inset: 0;
            z-index: 1;
            box-shadow: inset 0 0 200px 60px rgba(0,0,0,.4);
            pointer-events: none;
        }
        /* Curtain reveal */
        .hero-curtain-left,
        .hero-curtain-right {
            position: absolute;
            top: 0;
            bottom: 0;
            width: 50%;
            background: var(--black);
            z-index: 5;
            animation-fill-mode: forwards;
            animation-timing-function: cubic-bezier(.77,0,.18,1);
        }
        .hero-curtain-left {
            left: 0;
            animation: curtainLeft 1.4s ease .3s forwards;
        }
        .hero-curtain-right {
            right: 0;
            animation: curtainRight 1.4s ease .3s forwards;
        }
        @keyframes curtainLeft {
            0% { transform: translateX(0); }
            100% { transform: translateX(-100%); }
        }
        @keyframes curtainRight {
            0% { transform: translateX(0); }
            100% { transform: translateX(100%); }
        }
        .hero-content {
            position: relative;
            z-index: 3;
            text-align: center;
            max-width: var(--max-w);
            padding: 0 40px;
        }
        .hero-eyebrow {
            font-size: .63rem;
            font-weight: 500;
            letter-spacing: .4em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 28px;
            opacity: 0;
            animation: fadeUp .8s ease 1.6s forwards;
        }
        .hero h1 {
            font-family: var(--serif);
            font-size: clamp(3.5rem, 8vw, 7rem);
            font-weight: 300;
            line-height: 1.02;
            color: var(--white);
            letter-spacing: -.03em;
            margin-bottom: 28px;
            opacity: 0;
            animation: fadeUp 1s ease 1.8s forwards;
        }
        .hero h1 em {
            font-style: italic;
            font-weight: 300;
            display: block;
            color: var(--gold-light);
        }
        .hero-sub {
            font-size: 1rem;
            font-weight: 300;
            color: rgba(255,255,255,.55);
            max-width: 520px;
            margin: 0 auto 48px;
            line-height: 1.85;
            letter-spacing: .02em;
            opacity: 0;
            animation: fadeUp .8s ease 2s forwards;
        }
        .hero-cta {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            justify-content: center;
            opacity: 0;
            animation: fadeUp .8s ease 2.2s forwards;
        }
        .hero-name {
            position: absolute;
            bottom: 56px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 3;
            font-family: var(--sans);
            font-size: .6rem;
            font-weight: 500;
            letter-spacing: .4em;
            text-transform: uppercase;
            color: rgba(255,255,255,.3);
            opacity: 0;
            animation: fadeUp .8s ease 2.6s forwards;
            white-space: nowrap;
        }
        .hero-scroll {
            position: absolute;
            bottom: 40px;
            right: 40px;
            z-index: 3;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            opacity: 0;
            animation: fadeUp .8s ease 2.8s forwards;
        }
        .hero-scroll span {
            font-size: .55rem;
            letter-spacing: .3em;
            text-transform: uppercase;
            color: rgba(255,255,255,.3);
            writing-mode: vertical-rl;
        }
        .hero-scroll-line {
            width: 1px;
            height: 48px;
            background: linear-gradient(to bottom, var(--gold), transparent);
            animation: scrollPulse 2s ease infinite;
        }
        @keyframes scrollPulse {
            0%, 100% { opacity: .3; transform: scaleY(.6); }
            50% { opacity: 1; transform: scaleY(1); }
        }
        /* Gold corner accents */
        .hero-corner {
            position: absolute;
            z-index: 3;
            width: 60px;
            height: 60px;
            opacity: 0;
            animation: fadeIn .6s ease 2.4s forwards;
        }
        .hero-corner::before,
        .hero-corner::after {
            content: '';
            position: absolute;
            background: var(--gold);
        }
        .hero-corner.tl { top: 32px; left: 32px; }
        .hero-corner.tl::before { top: 0; left: 0; width: 32px; height: 1px; }
        .hero-corner.tl::after { top: 0; left: 0; width: 1px; height: 32px; }
        .hero-corner.br { bottom: 32px; right: 32px; }
        .hero-corner.br::before { bottom: 0; right: 0; width: 32px; height: 1px; }
        .hero-corner.br::after { bottom: 0; right: 0; width: 1px; height: 32px; }

        /* ===== Buttons ===== */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-family: var(--sans);
            font-size: .68rem;
            font-weight: 500;
            letter-spacing: .18em;
            text-transform: uppercase;
            padding: 16px 36px;
            border: none;
            cursor: pointer;
            transition: all .4s cubic-bezier(.25,.1,.25,1);
        }
        .btn-light { background: var(--white); color: var(--black); }
        .btn-light:hover { background: var(--gold); color: var(--white); }
        .btn-outline-light { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,.2); }
        .btn-outline-light:hover { border-color: var(--gold); color: var(--gold); }
        .btn-dark { background: var(--black); color: var(--white); }
        .btn-dark:hover { background: var(--gold); }
        .btn-outline-dark { background: transparent; color: var(--black); border: 1px solid rgba(0,0,0,.15); }
        .btn-outline-dark:hover { border-color: var(--gold); color: var(--gold); }
        .btn-gold { background: var(--gold); color: var(--white); }
        .btn-gold:hover { background: var(--charcoal); }

        /* ===== Animations ===== */
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        .reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all .9s cubic-bezier(.25,.1,.25,1);
        }
        .reveal.visible { opacity: 1; transform: translateY(0); }
        .reveal-left {
            opacity: 0;
            transform: translateX(-60px);
            transition: all .9s cubic-bezier(.25,.1,.25,1);
        }
        .reveal-left.visible { opacity: 1; transform: translateX(0); }
        .reveal-right {
            opacity: 0;
            transform: translateX(60px);
            transition: all .9s cubic-bezier(.25,.1,.25,1);
        }
        .reveal-right.visible { opacity: 1; transform: translateX(0); }
        .reveal-fade {
            opacity: 0;
            transition: opacity 1.2s cubic-bezier(.25,.1,.25,1);
        }
        .reveal-fade.visible { opacity: 1; }

        /* ===== Shared Typography ===== */
        .eyebrow {
            font-size: .63rem;
            font-weight: 500;
            letter-spacing: .3em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 20px;
        }
        .section-title {
            font-family: var(--serif);
            font-size: clamp(2rem, 4vw, 3.2rem);
            font-weight: 300;
            line-height: 1.15;
            letter-spacing: -.01em;
            margin-bottom: 20px;
        }
        .section-title em { font-style: italic; }
        .section-text {
            font-size: .92rem;
            font-weight: 300;
            line-height: 1.9;
            color: var(--warm-gray);
        }
        .divider { width: 36px; height: 1px; background: var(--gold); margin: 28px 0; }
        .divider-center { width: 36px; height: 1px; background: var(--gold); margin: 28px auto; }
        .text-center { text-align: center; }

        /* ===== About ===== */
        .about-bg { background: var(--white); }
        .about-grid {
            display: grid;
            grid-template-columns: 5fr 6fr;
            gap: 72px;
            align-items: center;
        }
        .about-image {
            position: relative;
        }
        .about-image img {
            width: 100%;
            aspect-ratio: 3/4;
            object-fit: cover;
            filter: grayscale(15%);
            transition: filter .6s;
        }
        .about-image:hover img { filter: grayscale(0%); }
        .about-image-border {
            position: absolute;
            inset: 12px;
            border: 1px solid rgba(184,151,90,.25);
            pointer-events: none;
        }
        .about-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 36px;
        }
        .about-tag {
            font-size: .63rem;
            font-weight: 500;
            letter-spacing: .12em;
            text-transform: uppercase;
            padding: 9px 20px;
            border: 1px solid var(--light-gray);
            color: var(--warm-gray);
            transition: all .4s;
        }
        .about-tag:hover { border-color: var(--gold); color: var(--gold); }

        /* ===== Stats ===== */
        .stats-bg { background: var(--black); }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            border: 1px solid rgba(255,255,255,.06);
        }
        .stat {
            padding: 52px 24px;
            text-align: center;
            border-right: 1px solid rgba(255,255,255,.06);
        }
        .stat:last-child { border-right: none; }
        .stat-number {
            font-family: var(--serif);
            font-size: clamp(2.2rem, 3.5vw, 3rem);
            font-weight: 300;
            color: var(--gold);
            line-height: 1;
            margin-bottom: 10px;
        }
        .stat-label {
            font-size: .63rem;
            font-weight: 500;
            letter-spacing: .18em;
            text-transform: uppercase;
            color: rgba(255,255,255,.35);
        }

        /* ===== Services ===== */
        .services-bg { background: var(--cream); }
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1px;
            background: var(--light-gray);
            border: 1px solid var(--light-gray);
        }
        .service-card {
            padding: 48px 36px;
            background: var(--white);
            transition: all .5s cubic-bezier(.25,.1,.25,1);
            position: relative;
            overflow: hidden;
        }
        .service-card::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: var(--black);
            transition: height .5s cubic-bezier(.25,.1,.25,1);
            z-index: 0;
        }
        .service-card:hover::before { height: 100%; }
        .service-card > * { position: relative; z-index: 1; }
        .service-card:hover .service-num,
        .service-card:hover h3 { color: var(--white); }
        .service-card:hover .service-num { color: var(--gold); }
        .service-card:hover p { color: rgba(255,255,255,.55); }
        .service-num {
            font-family: var(--serif);
            font-size: 2.2rem;
            font-weight: 300;
            color: var(--light-gray);
            margin-bottom: 24px;
            transition: color .5s;
        }
        .service-card h3 {
            font-family: var(--serif);
            font-size: 1.35rem;
            font-weight: 400;
            margin-bottom: 14px;
            transition: color .5s;
        }
        .service-card p {
            font-size: .82rem;
            font-weight: 300;
            line-height: 1.85;
            color: var(--warm-gray);
            transition: color .5s;
        }

        /* ===== Editorial ===== */
        .editorial-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            border: 1px solid var(--light-gray);
            overflow: hidden;
        }
        .editorial-grid.reverse .editorial-img { order: 2; }
        .editorial-grid.reverse .editorial-text { order: 1; }
        .editorial-img {
            position: relative;
            overflow: hidden;
            min-height: 480px;
        }
        .editorial-img img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(25%) contrast(1.04);
            transition: all .7s;
        }
        .editorial-img:hover img {
            filter: grayscale(0%);
            transform: scale(1.03);
        }
        .editorial-text {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 64px 56px;
        }
        .editorial-text.dark { background: var(--soft-black); color: var(--white); }
        .editorial-text.dark p { color: rgba(255,255,255,.5); }
        .editorial-text.light { background: var(--white); }
        .editorial-text h3 {
            font-family: var(--serif);
            font-size: clamp(1.4rem, 2.5vw, 1.9rem);
            font-weight: 300;
            line-height: 1.3;
            margin-bottom: 20px;
        }
        .editorial-text p {
            font-size: .88rem;
            font-weight: 300;
            line-height: 2;
            color: var(--warm-gray);
            margin-bottom: 14px;
        }
        .editorial-text p:last-of-type { margin-bottom: 0; }

        /* ===== Magento Features ===== */
        .features-bg { background: var(--black); }
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1px;
            background: rgba(255,255,255,.06);
            border: 1px solid rgba(255,255,255,.06);
            margin-top: 64px;
        }
        .feature-card {
            background: var(--soft-black);
            padding: 44px 32px;
            text-align: center;
            transition: background .4s;
        }
        .feature-card:hover { background: rgba(255,255,255,.04); }
        .feature-icon {
            width: 52px;
            height: 52px;
            margin: 0 auto 20px;
            border: 1px solid rgba(255,255,255,.08);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
        }
        .feature-card h4 {
            font-family: var(--serif);
            font-size: 1.1rem;
            font-weight: 400;
            margin-bottom: 10px;
            color: var(--white);
        }
        .feature-card p {
            font-size: .78rem;
            font-weight: 300;
            line-height: 1.85;
            color: rgba(255,255,255,.4);
        }

        /* ===== AI Integrations ===== */
        .ai-bg {
            background: linear-gradient(170deg, #0d0f14 0%, #111318 40%, #0f1117 100%);
            position: relative;
            overflow: hidden;
        }
        .ai-bg::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(ellipse at 30% 50%, rgba(184,151,90,.04) 0%, transparent 60%),
                        radial-gradient(ellipse at 70% 30%, rgba(100,120,200,.03) 0%, transparent 50%);
            animation: aiGlow 12s ease-in-out infinite alternate;
        }
        @keyframes aiGlow {
            0% { transform: translate(0, 0); }
            100% { transform: translate(2%, -1%); }
        }
        .ai-header {
            text-align: center;
            margin-bottom: 64px;
            position: relative;
        }
        .ai-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(184,151,90,.08);
            border: 1px solid rgba(184,151,90,.15);
            padding: 8px 20px;
            font-size: .6rem;
            font-weight: 600;
            letter-spacing: .2em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 28px;
        }
        .ai-badge-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--gold);
            animation: aiPulse 2s ease infinite;
        }
        @keyframes aiPulse {
            0%, 100% { opacity: .4; transform: scale(.8); }
            50% { opacity: 1; transform: scale(1.2); }
        }
        .ai-title {
            font-family: var(--serif);
            font-size: clamp(2rem, 4vw, 3.2rem);
            font-weight: 300;
            line-height: 1.15;
            color: var(--white);
            margin-bottom: 20px;
        }
        .ai-title em { font-style: italic; color: var(--gold-light); }
        .ai-subtitle {
            font-size: .92rem;
            font-weight: 300;
            line-height: 1.9;
            color: rgba(255,255,255,.4);
            max-width: 620px;
            margin: 0 auto;
        }
        .ai-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1px;
            background: rgba(255,255,255,.04);
            border: 1px solid rgba(255,255,255,.06);
        }
        .ai-card {
            background: rgba(15,17,23,.9);
            padding: 44px 32px;
            transition: all .5s cubic-bezier(.25,.1,.25,1);
            position: relative;
            overflow: hidden;
        }
        .ai-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
            opacity: 0;
            transition: opacity .5s;
        }
        .ai-card:hover::after { opacity: 1; }
        .ai-card:hover { background: rgba(255,255,255,.03); }
        .ai-card-icon {
            width: 52px;
            height: 52px;
            margin-bottom: 24px;
            border: 1px solid rgba(255,255,255,.06);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            position: relative;
        }
        .ai-card-icon::before {
            content: '';
            position: absolute;
            inset: -1px;
            background: linear-gradient(135deg, rgba(184,151,90,.2), transparent 50%);
            z-index: -1;
        }
        .ai-card h4 {
            font-family: var(--serif);
            font-size: 1.1rem;
            font-weight: 400;
            color: var(--white);
            margin-bottom: 12px;
        }
        .ai-card p {
            font-size: .78rem;
            font-weight: 300;
            line-height: 1.85;
            color: rgba(255,255,255,.4);
        }
        .ai-card-tag {
            display: inline-block;
            margin-top: 16px;
            font-size: .58rem;
            font-weight: 500;
            letter-spacing: .12em;
            text-transform: uppercase;
            color: var(--gold);
            opacity: .6;
        }
        .ai-cta-row {
            text-align: center;
            margin-top: 56px;
            position: relative;
        }

        /* ===== Quote ===== */
        .quote-bg { background: var(--white); }
        .quote-inner {
            padding: 100px 0;
            text-align: center;
            position: relative;
        }
        .quote-inner::before,
        .quote-inner::after {
            content: '';
            position: absolute;
            left: 50%;
            width: 1px;
            height: 48px;
            background: var(--gold);
        }
        .quote-inner::before { top: 0; }
        .quote-inner::after { bottom: 0; }
        .quote-text {
            font-family: var(--serif);
            font-size: clamp(1.4rem, 3vw, 2.2rem);
            font-weight: 300;
            font-style: italic;
            line-height: 1.45;
            max-width: 600px;
            margin: 0 auto;
            color: var(--charcoal);
        }
        .quote-author {
            font-size: .65rem;
            font-weight: 500;
            letter-spacing: .25em;
            text-transform: uppercase;
            color: var(--gold);
            margin-top: 28px;
        }

        /* ===== Testimonials ===== */
        .testimonials-bg { background: var(--cream); }
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 1px;
            background: var(--light-gray);
            border: 1px solid var(--light-gray);
        }
        .testimonial {
            padding: 44px 36px;
            background: var(--white);
            transition: all .4s;
        }
        .testimonial:hover { background: var(--cream); }
        .testimonial-mark {
            font-family: var(--serif);
            font-size: 2.8rem;
            line-height: 1;
            color: var(--gold);
            margin-bottom: 16px;
        }
        .testimonial p {
            font-size: .88rem;
            font-weight: 300;
            line-height: 1.9;
            color: var(--warm-gray);
            margin-bottom: 28px;
            font-style: italic;
        }
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 14px;
        }
        .testimonial-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            object-fit: cover;
            filter: grayscale(25%);
        }
        .testimonial-name {
            font-size: .78rem;
            font-weight: 500;
            letter-spacing: .08em;
            text-transform: uppercase;
        }
        .testimonial-name a:hover { color: var(--gold); }
        .testimonial-role {
            font-size: .72rem;
            color: var(--warm-gray);
            margin-top: 2px;
        }

        /* ===== Clients ===== */
        .clients-bg { background: var(--soft-black); }
        .clients-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0;
        }
        .client-logo {
            width: 130px;
            height: 72px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 14px;
            border: 1px solid rgba(255,255,255,.04);
            margin: -1px 0 0 -1px;
            transition: all .4s;
            filter: grayscale(100%) brightness(.6) invert(1);
            opacity: .3;
        }
        .client-logo:hover {
            filter: grayscale(0%) brightness(1) invert(0);
            opacity: 1;
            background: rgba(255,255,255,.06);
        }
        .client-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }

        /* ===== Blog ===== */
        .blog-bg { background: var(--white); }
        .blog-quote {
            font-family: var(--serif);
            font-size: 1.1rem;
            font-weight: 300;
            font-style: italic;
            line-height: 1.8;
            color: var(--warm-gray);
            text-align: center;
            max-width: 560px;
            margin: 0 auto;
        }

        /* ===== Marquee ===== */
        .marquee {
            padding: 28px 0;
            overflow: hidden;
            background: var(--white);
            border-top: 1px solid var(--light-gray);
            border-bottom: 1px solid var(--light-gray);
        }
        .marquee-track {
            display: flex;
            gap: 72px;
            animation: marqueeScroll 28s linear infinite;
            white-space: nowrap;
            will-change: transform;
        }
        .marquee-item {
            font-family: var(--serif);
            font-size: 1.25rem;
            font-weight: 300;
            color: var(--warm-gray);
            display: flex;
            align-items: center;
            gap: 72px;
            flex-shrink: 0;
        }
        .marquee-dot {
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: var(--gold);
            flex-shrink: 0;
        }
        @keyframes marqueeScroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* ===== CTA ===== */
        .cta-bg { background: var(--black); }
        .cta-inner {
            text-align: center;
        }
        .cta-inner h2 {
            font-family: var(--serif);
            font-size: clamp(2rem, 4.5vw, 3.5rem);
            font-weight: 300;
            line-height: 1.12;
            color: var(--white);
            margin-bottom: 28px;
        }
        .cta-inner h2 em { color: var(--gold-light); }
        .cta-inner > p {
            font-size: .92rem;
            font-weight: 300;
            line-height: 1.9;
            color: rgba(255,255,255,.4);
            max-width: 580px;
            margin: 0 auto 44px;
        }
        .cta-contacts {
            display: flex;
            justify-content: center;
            gap: 56px;
            margin-top: 56px;
            flex-wrap: wrap;
        }
        .cta-contact-item { text-align: center; }
        .cta-contact-label {
            font-size: .58rem;
            font-weight: 500;
            letter-spacing: .3em;
            text-transform: uppercase;
            color: rgba(255,255,255,.25);
            margin-bottom: 6px;
        }
        .cta-contact-value {
            font-family: var(--serif);
            font-size: 1.05rem;
            color: var(--white);
        }
        .cta-contact-value a:hover { color: var(--gold); }

        /* ===== Footer ===== */
        .footer { background: var(--black); border-top: 1px solid rgba(255,255,255,.04); }
        .footer-inner { padding: 72px 0 36px; }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 56px;
        }
        .footer-brand .nav-logo {
            color: var(--white);
            display: inline-block;
            margin-bottom: 18px;
        }
        .footer-brand p {
            font-size: .78rem;
            font-weight: 300;
            line-height: 1.9;
            color: rgba(255,255,255,.3);
        }
        .footer h5 {
            font-size: .6rem;
            font-weight: 500;
            letter-spacing: .25em;
            text-transform: uppercase;
            color: rgba(255,255,255,.45);
            margin-bottom: 20px;
        }
        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .footer-links a {
            font-size: .78rem;
            font-weight: 300;
            color: rgba(255,255,255,.3);
        }
        .footer-links a:hover { color: var(--gold); }
        .social-links {
            display: flex;
            gap: 12px;
            list-style: none;
        }
        .social-links a {
            width: 34px;
            height: 34px;
            border: 1px solid rgba(255,255,255,.08);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255,255,255,.35);
            transition: all .4s;
        }
        .social-links a:hover { border-color: var(--gold); color: var(--gold); }
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,.04);
            padding-top: 32px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
        }
        .footer-copy {
            font-size: .72rem;
            font-weight: 300;
            color: rgba(255,255,255,.2);
        }
        .footer-quote {
            font-family: var(--serif);
            font-size: .78rem;
            font-style: italic;
            color: rgba(255,255,255,.15);
        }

        /* ===== Floating WhatsApp ===== */
        .float-wa {
            position: fixed;
            bottom: 28px;
            right: 28px;
            z-index: 999;
            display: flex;
            align-items: center;
            gap: 12px;
            opacity: 0;
            animation: fadeUp .6s ease 2s forwards;
        }
        .float-wa-label {
            background: var(--white);
            color: var(--black);
            padding: 10px 18px;
            font-size: .68rem;
            font-weight: 500;
            letter-spacing: .08em;
            text-transform: uppercase;
            box-shadow: 0 6px 24px rgba(0,0,0,.08);
            white-space: nowrap;
        }
        .float-wa-btn {
            width: 48px;
            height: 48px;
            background: var(--black);
            border: 1px solid rgba(255,255,255,.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            box-shadow: 0 6px 24px rgba(0,0,0,.12);
            transition: all .4s;
        }
        .float-wa-btn:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }

        /* ===== Mobile Drawer ===== */
        .nav-drawer {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 1001;
            background: var(--black);
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 32px;
        }
        .nav-drawer.open { display: flex; }
        .nav-drawer a {
            font-family: var(--serif);
            font-size: 1.8rem;
            font-weight: 300;
            color: var(--white);
            letter-spacing: .05em;
        }
        .nav-drawer a:hover { color: var(--gold); }
        .nav-drawer-close {
            position: absolute;
            top: 24px;
            right: 40px;
            background: none;
            border: none;
            color: var(--white);
            font-size: 1.4rem;
            cursor: pointer;
        }

        /* ===== Responsive ===== */
        @media (max-width: 1024px) {
            .container, .container-narrow { padding: 0 28px; }
            .nav-bar { padding: 20px 28px; }
            .nav.scrolled .nav-bar { padding: 12px 28px; }
            .hero-content { padding: 0 28px; }
            .hero-corner { display: none; }
            .hero-name { bottom: 80px; font-size: .5rem; }
            .about-grid { grid-template-columns: 1fr; gap: 48px; }
            .about-image { max-width: 420px; }
            .stats-grid { grid-template-columns: repeat(2, 1fr); }
            .stat:nth-child(2) { border-right: none; }
            .services-grid { grid-template-columns: 1fr 1fr; }
            .editorial-grid { grid-template-columns: 1fr; }
            .editorial-grid.reverse .editorial-img { order: -1; }
            .editorial-grid.reverse .editorial-text { order: 2; }
            .editorial-img { min-height: 350px; }
            .editorial-text { padding: 48px 32px; }
            .features-grid { grid-template-columns: 1fr 1fr; }
            .ai-grid { grid-template-columns: 1fr 1fr; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 768px) {
            .nav-links { display: none; }
            .nav-toggle { display: block; }
            .section { padding: 80px 0; }
            .section-sm { padding: 56px 0; }
            .services-grid { grid-template-columns: 1fr; }
            .testimonials-grid { grid-template-columns: 1fr; }
            .features-grid { grid-template-columns: 1fr; }
            .ai-grid { grid-template-columns: 1fr; }
            .float-wa-label { display: none; }
            .footer-grid { grid-template-columns: 1fr; gap: 28px; }
            .footer-bottom { flex-direction: column; text-align: center; }
            .hero-content { padding: 0 20px; }
            .hero-name { display: none; }
            .hero-scroll { display: none; }
        }
        @media (max-width: 480px) {
            .container, .container-narrow { padding: 0 20px; }
            .nav-bar { padding: 16px 20px; }
            .hero-cta { flex-direction: column; }
            .btn { width: 100%; justify-content: center; }
            .stat { padding: 36px 16px; }
            .service-card { padding: 36px 24px; }
            .testimonial { padding: 32px 24px; }
            .client-logo { width: 100px; height: 56px; }
            .cta-contacts { gap: 28px; }
        }

        /* ===== Reduced Motion ===== */
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
            .reveal, .reveal-left, .reveal-right, .reveal-fade { opacity: 1; transform: none; }
            .marquee-track { animation: none; }
        }

        /* ===== Skip link (accessibility) ===== */
        .skip-link {
            position: absolute;
            left: -9999px;
            top: 0;
            z-index: 2000;
            background: var(--black);
            color: var(--white);
            padding: 12px 20px;
            font-size: .72rem;
            letter-spacing: .12em;
            text-transform: uppercase;
        }
        .skip-link:focus { left: 12px; top: 12px; }

        /* ===== Nav actions + Language switcher ===== */
        .nav-actions { display: flex; align-items: center; gap: 28px; }
        .lang-switch { display: flex; align-items: center; gap: 2px; }
        .lang-switch .lang-link {
            font-size: .66rem;
            font-weight: 600;
            letter-spacing: .12em;
            text-transform: uppercase;
            padding: 4px 8px;
            line-height: 1;
        }
        /* Nav variant — mirrors nav color transitions (light over hero, dark when scrolled) */
        .lang-switch--nav .lang-link { color: rgba(255,255,255,.5); }
        .lang-switch--nav .lang-link:hover { color: var(--white); }
        .lang-switch--nav .lang-link.is-active { color: var(--gold); }
        .lang-switch--nav .lang-link + .lang-link { border-left: 1px solid rgba(255,255,255,.15); }
        .nav.scrolled .lang-switch--nav .lang-link { color: var(--warm-gray); }
        .nav.scrolled .lang-switch--nav .lang-link:hover { color: var(--black); }
        .nav.scrolled .lang-switch--nav .lang-link.is-active { color: var(--gold); }
        .nav.scrolled .lang-switch--nav .lang-link + .lang-link { border-left-color: rgba(0,0,0,.12); }

        /* Drawer variant */
        .lang-switch--drawer { margin-top: 16px; gap: 8px; }
        .lang-switch--drawer .lang-link {
            font-size: .8rem;
            color: rgba(255,255,255,.5);
            border: 1px solid rgba(255,255,255,.12);
            padding: 8px 16px;
        }
        .lang-switch--drawer .lang-link:hover { color: var(--white); }
        .lang-switch--drawer .lang-link.is-active { color: var(--gold); border-color: var(--gold); }

        /* Footer variant */
        .lang-switch--footer { flex-direction: column; align-items: flex-start; gap: 10px; }
        .lang-switch--footer .lang-link {
            font-size: .78rem;
            font-weight: 300;
            letter-spacing: normal;
            text-transform: none;
            padding: 0;
            color: rgba(255,255,255,.3);
        }
        .lang-switch--footer .lang-link:hover,
        .lang-switch--footer .lang-link.is-active { color: var(--gold); }

        @media (max-width: 768px) {
            .lang-switch--nav { display: none; }
            .nav-actions { gap: 0; }
        }

        /* ===== Accordion (Challenges + FAQ) ===== */
        .accordion { border-top: 1px solid var(--light-gray); }
        .acc-item { border-bottom: 1px solid var(--light-gray); }
        .acc-h { margin: 0; font: inherit; }
        .acc-q {
            width: 100%;
            background: none;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 28px;
            text-align: left;
            padding: 26px 4px;
            font-family: var(--serif);
            font-size: 1.18rem;
            font-weight: 400;
            line-height: 1.4;
            color: var(--black);
            transition: color .3s;
        }
        .acc-q:hover { color: var(--gold); }
        .acc-icon { position: relative; width: 16px; height: 16px; flex-shrink: 0; }
        .acc-icon::before, .acc-icon::after {
            content: ''; position: absolute; background: var(--gold);
            transition: transform .35s cubic-bezier(.25,.1,.25,1);
        }
        .acc-icon::before { top: 50%; left: 0; width: 16px; height: 1.5px; transform: translateY(-50%); }
        .acc-icon::after  { left: 50%; top: 0; width: 1.5px; height: 16px; transform: translateX(-50%); }
        .acc-item.open .acc-icon::after { transform: translateX(-50%) scaleY(0); }
        /* Panels open by default (no-JS / crawlers see all content); collapse only when JS is on */
        .acc-a { display: grid; grid-template-rows: 1fr; }
        .js .acc-a { grid-template-rows: 0fr; transition: grid-template-rows .45s cubic-bezier(.25,.1,.25,1); }
        .js .acc-item.open .acc-a { grid-template-rows: 1fr; }
        .acc-a-inner { overflow: hidden; }
        .acc-a-inner p {
            padding: 0 4px 28px;
            font-size: .92rem;
            font-weight: 300;
            line-height: 1.9;
            color: var(--warm-gray);
        }
        @media (max-width: 480px) {
            .acc-q { font-size: 1.05rem; padding: 22px 2px; }
        }
