        *, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
        :root {
            --bg: #0c0c1d;
            --bg-light: #12122a;
            --bg-card: rgba(20, 20, 50, 0.6);
            --bg-card-solid: #14143a;
            --accent: #c9a84c;
            --accent-hover: #e0c060;
            --accent-glow: rgba(201, 168, 76, 0.15);
            --teal: #00d4aa;
            --teal-dark: #00b894;
            --teal-glow: rgba(0, 212, 170, 0.12);
            --purple: #8b5cf6;
            --purple-glow: rgba(139, 92, 246, 0.12);
            --white: #ffffff;
            --gray-100: #f0f0f5;
            --gray-300: #b0b0c0;
            --gray-500: #70708a;
            --gray-700: #40405a;
            --radius: 20px;
            --radius-sm: 12px;
        }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--bg);
            color: var(--white);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }
        a { color: inherit; text-decoration: none; }
        img { max-width:100%; display:block; }
        button { font-family:inherit; cursor:pointer; border:none; background:none; }
        ul { list-style:none; }
        .container { max-width:1200px; margin:0 auto; padding:0 32px; }

        /* ============== GRADIENT MESH BACKGROUND ============== */
        .gradient-mesh {
            position:fixed; inset:0; z-index:0; pointer-events:none;
            overflow:hidden;
        }
        .gradient-mesh .blob {
            position:absolute; border-radius:50%; filter:blur(120px);
            animation: meshFloat 35s ease-in-out infinite;
        }
        .gradient-mesh .blob-1 {
            width:600px; height:600px; top:-10%; left:-10%;
            background:radial-gradient(circle, rgba(0,212,170,0.18) 0%, transparent 70%);
            animation-duration:32s;
        }
        .gradient-mesh .blob-2 {
            width:500px; height:500px; top:40%; right:-15%;
            background:radial-gradient(circle, rgba(201,168,76,0.10) 0%, transparent 70%);
            animation-duration:38s; animation-delay:-10s;
        }
        .gradient-mesh .blob-3 {
            width:450px; height:450px; bottom:-5%; left:30%;
            background:radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
            animation-duration:42s; animation-delay:-20s;
        }
        .gradient-mesh .blob-4 {
            width:350px; height:350px; top:20%; left:50%;
            background:radial-gradient(circle, rgba(0,212,170,0.1) 0%, transparent 70%);
            animation-duration:28s; animation-delay:-5s;
        }
        @keyframes meshFloat {
            0%,100%{transform:translate(0,0) scale(1);}
            25%{transform:translate(60px,-40px) scale(1.1);}
            50%{transform:translate(-30px,50px) scale(0.95);}
            75%{transform:translate(-50px,-30px) scale(1.05);}
        }

        /* ============== SCROLL PROGRESS ============== */
        .scroll-progress {
            position:fixed; top:0; left:0; height:3px; z-index:300;
            background: linear-gradient(90deg, var(--teal), var(--accent));
            width:0%; transition: none;
        }

        /* ============== CUSTOM CURSOR ============== */
        .cursor-dot {
            position:fixed; top:0; left:0; width:6px; height:6px;
            background:var(--teal); border-radius:50%; pointer-events:none;
            z-index:9999; transform:translate(-50%,-50%);
            transition: width 0.2s, height 0.2s, background 0.2s;
        }
        .cursor-ring {
            position:fixed; top:0; left:0; width:36px; height:36px;
            border:1px solid rgba(0,212,170,0.5); border-radius:50%; pointer-events:none;
            z-index:9998; transform:translate(-50%,-50%);
            transition: width 0.3s, height 0.3s, border-color 0.3s, opacity 0.3s, border-style 0.3s;
            opacity:0.6;
        }
        .cursor-dot.hover { width:10px; height:10px; background:var(--accent); }
        .cursor-ring.hover { width:56px; height:56px; border-color:var(--accent); opacity:0.9; }
        .cursor-ring.card-hover { width:56px; height:56px; border-style:dashed; border-color:var(--teal); opacity:0.7; }
        @media(max-width:768px) { .cursor-dot, .cursor-ring { display:none !important; } }

        /* ============== NAVBAR ============== */
        .navbar {
            position:fixed; top:0; left:0; right:0; z-index:100;
            padding:20px 0; transition: all 0.4s;
        }
        .navbar.scrolled {
            padding:12px 0;
            background:rgba(12,12,29,0.85);
            backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px);
            border-bottom:1px solid rgba(255,255,255,0.04);
        }
        .navbar.scrolled::after {
            content:''; position:absolute; bottom:0; left:0; right:0; height:1px;
            background:linear-gradient(90deg, transparent, var(--teal), var(--accent), transparent);
            opacity:0.3;
        }
        .nav-inner { display:flex; justify-content:space-between; align-items:center; }
        .nav-brand { display:flex; align-items:center; gap:12px; }
        .nav-brand img { width:56px; height:56px; border-radius:50%; object-fit:cover; }
        .nav-brand-name { font-size:17px; font-weight:700; letter-spacing:-0.3px; }
        .nav-brand-name small {
            display:block; font-size:10px; font-weight:500;
            color:var(--accent); letter-spacing:2px; text-transform:uppercase; margin-top:1px;
        }
        .nav-links { display:flex; align-items:center; gap:36px; }
        .nav-links a {
            font-size:14px; font-weight:500; color:var(--gray-300);
            transition:color 0.3s; position:relative; white-space:nowrap;
        }
        .nav-links a:hover, .nav-links a.active { color:var(--white); }
        .nav-links a::after {
            content:''; position:absolute; bottom:-6px; left:50%; transform:translateX(-50%);
            width:0; height:4px; width:4px; border-radius:50%;
            background:var(--accent); opacity:0; transition:opacity 0.3s;
        }
        .nav-links a.active::after { opacity:1; }

        .btn-accent {
            display:inline-flex; align-items:center; gap:8px;
            padding:11px 24px;
            background:var(--accent); color:#000;
            border-radius:50px; font-size:13px; font-weight:600;
            transition:all 0.3s; position:relative; overflow:hidden;
        }
        .btn-accent:hover {
            background:var(--accent-hover); transform:translateY(-2px);
            box-shadow:0 8px 30px rgba(201,168,76,0.3);
        }

        .lang-switch { display:flex; align-items:center; gap:4px; }
        .lang-switch a {
            font-size:20px; padding:4px 6px;
            border-radius:50px; transition:all 0.3s;
            border:2px solid transparent;
            line-height:1; display:flex; align-items:center; justify-content:center;
            opacity:0.5; filter:grayscale(0.5);
        }
        .lang-switch a:hover { opacity:1; filter:grayscale(0); transform:scale(1.15); }
        .lang-switch a.active {
            opacity:1; filter:grayscale(0);
            border-color:rgba(201,168,76,0.4);
            background:rgba(201,168,76,0.08);
        }

        .btn-teal {
            display:inline-flex; align-items:center; gap:8px;
            padding:16px 36px;
            background:linear-gradient(135deg, var(--teal), #00b894); color:#000;
            border-radius:50px; font-size:14px; font-weight:600;
            transition:all 0.3s; position:relative; overflow:hidden;
        }
        .btn-teal:hover {
            transform:translateY(-2px);
            box-shadow:0 12px 36px rgba(0,212,170,0.3);
        }
        .btn-outline-w {
            display:inline-flex; align-items:center; gap:8px;
            padding:16px 36px;
            border:1.5px solid rgba(255,255,255,0.15); color:var(--white);
            border-radius:50px; font-size:14px; font-weight:500;
            transition:all 0.3s; background:transparent; position:relative; overflow:hidden;
        }
        .btn-outline-w:hover { border-color:var(--accent); color:var(--accent); }
        .btn-teal::before, .btn-accent::before {
            content:''; position:absolute; top:50%; left:50%;
            width:0; height:0; border-radius:50%;
            background:rgba(255,255,255,0.15);
            transform:translate(-50%,-50%); transition:width 0.5s, height 0.5s;
        }
        .btn-teal:hover::before, .btn-accent:hover::before { width:300px; height:300px; }

        /* Hamburger */
        .hamburger {
            display:none; width:44px; height:44px;
            border-radius:50%; background:var(--teal);
            align-items:center; justify-content:center;
            flex-direction:column; gap:5px; padding:0;
        }
        .hamburger span {
            display:block; width:20px; height:2px; background:#000;
            border-radius:2px; transition:all 0.3s;
        }
        .hamburger.active span:nth-child(1){transform:rotate(45deg) translate(5px,5px);}
        .hamburger.active span:nth-child(2){opacity:0;}
        .hamburger.active span:nth-child(3){transform:rotate(-45deg) translate(5px,-5px);}

        .mobile-menu {
            display:none; position:fixed; inset:0; z-index:99;
            background:rgba(12,12,29,0.98);
            flex-direction:column; align-items:center; justify-content:center; gap:32px;
            opacity:0; pointer-events:none; transition:opacity 0.4s;
            backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px);
        }
        .mobile-menu.open { opacity:1; pointer-events:all; }
        .mobile-menu a { font-size:24px; font-weight:600; color:var(--gray-300); transition:color 0.3s; }
        .mobile-menu a:hover { color:var(--accent); }
        .mobile-menu .lang-switch a { font-size:28px; padding:6px 10px; }

        /* ============== HERO ============== */
        .hero {
            min-height:100vh; display:flex; align-items:center;
            padding:140px 0 80px; position:relative; overflow:hidden;
        }
        .hero-aurora {
            position:absolute; inset:0; z-index:0; pointer-events:none;
        }
        .hero .container { position:relative; z-index:1; }
        .hero-grid { display:grid; grid-template-columns:1fr; gap:60px; align-items:center; max-width:800px; }
        .hero-label {
            font-size:13px; font-weight:600; text-transform:uppercase;
            letter-spacing:3px; color:var(--teal); margin-bottom:20px;
            display:inline-flex; align-items:center; gap:10px;
        }
        .hero-label::before {
            content:''; width:30px; height:1px; background:var(--teal);
        }
        .hero h1 {
            font-family:'Playfair Display', serif;
            font-size:clamp(38px, 5vw, 62px); font-weight:800;
            line-height:1.12; letter-spacing:-1.5px; margin-bottom:28px;
        }
        .hero h1 .accent {
            background:linear-gradient(90deg, var(--accent), var(--accent-hover), var(--teal), var(--accent));
            background-size:300% 100%;
            -webkit-background-clip:text; -webkit-text-fill-color:transparent;
            background-clip:text;
            animation:shimmerText 4s ease-in-out infinite;
        }
        @keyframes shimmerText {
            0%{background-position:0% 50%}50%{background-position:100% 50%}100%{background-position:0% 50%}
        }
        .hero h1 em { font-style:italic; color:var(--teal); }

        /* Rotating text */
        .hero-rotate-wrap {
            display:inline-block; position:relative; height:1.25em;
            overflow:hidden; vertical-align:bottom;
            min-width:200px;
        }
        .hero-rotate-inner {
            display:flex; flex-direction:column;
            animation:rotateText 10s cubic-bezier(0.4,0,0.2,1) infinite;
        }
        .hero-rotate-inner span {
            display:block; height:1.25em; line-height:1.25;
            color:var(--teal);
            background:linear-gradient(135deg, var(--accent), var(--teal));
            -webkit-background-clip:text; -webkit-text-fill-color:transparent;
            background-clip:text;
        }
        @keyframes rotateText {
            0%,18%{transform:translateY(0);}
            20%,38%{transform:translateY(-20%);}
            40%,58%{transform:translateY(-40%);}
            60%,78%{transform:translateY(-60%);}
            80%,100%{transform:translateY(-80%);}
        }

        .hero-desc {
            font-size:17px; color:var(--gray-300); line-height:1.8;
            margin-bottom:40px; max-width:500px;
        }
        .hero-buttons { display:flex; gap:16px; flex-wrap:wrap; margin-bottom:60px; }

        .hero-stats { display:flex; gap:48px; }
        .hero-stat {
            position:relative; padding-left:20px;
        }
        .hero-stat::before {
            content:''; position:absolute; left:0; top:4px; bottom:4px;
            width:2px; background:linear-gradient(180deg, var(--teal), var(--accent));
            border-radius:2px;
        }
        .hero-stat-num {
            font-size:44px; font-weight:900;
            letter-spacing:-2px; line-height:1;
            background:linear-gradient(135deg, var(--teal), var(--accent));
            -webkit-background-clip:text; -webkit-text-fill-color:transparent;
            background-clip:text;
        }
        .hero-stat-label {
            font-size:11px; font-weight:600; text-transform:uppercase;
            letter-spacing:2px; color:var(--gray-500); margin-top:6px;
        }

        /* hero-visual removed — V10 single-column hero */

        /* ============== TICKER ============== */
        .ticker {
            padding:22px 0; overflow:hidden; white-space:nowrap; position:relative;
            background:linear-gradient(90deg, var(--teal), var(--accent), var(--teal));
            background-size:300% 100%;
            animation:tickerBg 8s linear infinite;
        }
        @keyframes tickerBg {
            0%{background-position:0% 50%}100%{background-position:300% 50%}
        }
        .ticker::before, .ticker::after {
            content:''; position:absolute; top:0; bottom:0; width:80px; z-index:2; pointer-events:none;
        }
        .ticker::before { left:0; background:linear-gradient(90deg, var(--bg), transparent); }
        .ticker::after { right:0; background:linear-gradient(90deg, transparent, var(--bg)); }
        .ticker-track { display:flex; animation:tickerScroll 25s linear infinite; width:max-content; }
        .ticker-content { display:flex; align-items:center; flex-shrink:0; }
        .ticker-item {
            font-size:15px; font-weight:800; color:var(--bg);
            text-transform:uppercase; letter-spacing:3px; padding:0 32px;
            line-height:1;
        }
        .ticker-dot {
            width:6px; height:6px; background:rgba(12,12,29,0.4);
            border-radius:50%; flex-shrink:0;
        }
        @keyframes tickerScroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }

        /* ============== SECTIONS ============== */
        .section { padding:clamp(80px,12vw,140px) 0; position:relative; }
        .section-label {
            font-size:12px; font-weight:700; text-transform:uppercase;
            letter-spacing:4px; color:var(--teal); margin-bottom:16px;
            display:inline-flex; align-items:center; gap:10px;
        }
        .section-label::before {
            content:''; width:24px; height:1px; background:var(--teal);
        }
        .section-title {
            font-family:'Playfair Display', serif;
            font-size:clamp(30px,4vw,50px); font-weight:800;
            letter-spacing:-1px; margin-bottom:20px; line-height:1.2; position:relative;
        }
        .section-title::after {
            content:''; display:block; width:0; height:3px;
            background:linear-gradient(90deg, var(--teal), var(--accent));
            border-radius:2px; margin-top:16px;
            transition:width 1s cubic-bezier(0.16,1,0.3,1) 0.3s;
        }
        .section-desc { font-size:17px; color:var(--gray-300); line-height:1.8; max-width:560px; }
        .section-header { margin-bottom:64px; }
        .section-header-center { text-align:center; margin-bottom:64px; }
        .section-header-center .section-desc { margin:0 auto; }
        .section-header-center .section-title::after { margin:16px auto 0; }
        .reveal.visible .section-title::after,
        .section-header-center.reveal.visible .section-title::after { width:80px; }

        /* ============== GLOW DIVIDERS ============== */
        .glow-divider {
            width:100%; height:2px; position:relative; overflow:visible;
        }
        .glow-divider::before {
            content:''; position:absolute; left:50%; top:-1px;
            transform:translateX(-50%); width:40%; height:3px;
            background:linear-gradient(90deg, transparent, var(--teal), var(--accent), transparent);
            border-radius:50%;
            animation:glowPulse 3s ease-in-out infinite;
        }
        @keyframes glowPulse {
            0%,100%{opacity:0.3;width:30%}50%{opacity:0.8;width:60%}
        }

        /* ============== GLASSMORPHISM CARDS ============== */
        .glass-card {
            background:rgba(20,20,50,0.5);
            backdrop-filter:blur(16px); -webkit-backdrop-filter:blur(16px);
            border:1px solid rgba(255,255,255,0.06);
            border-radius:var(--radius);
            position:relative; overflow:hidden;
            transition:all 0.4s cubic-bezier(0.16,1,0.3,1);
        }
        .glass-card::before {
            content:''; position:absolute; inset:0;
            border-radius:var(--radius); padding:1px;
            background:linear-gradient(135deg, rgba(0,212,170,0.2) 0%, transparent 40%, transparent 60%, rgba(201,168,76,0.2) 100%);
            -webkit-mask:linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite:xor; mask-composite:exclude;
            opacity:0; transition:opacity 0.4s; pointer-events:none;
        }
        .glass-card::after {
            content:''; position:absolute; top:-50%; left:-50%; width:200%; height:200%;
            background:linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.03) 50%, transparent 60%);
            transform:rotate(45deg) translateY(100%);
            transition:transform 0.6s; pointer-events:none;
        }
        .glass-card:hover::before { opacity:1; }
        .glass-card:hover::after { transform:rotate(45deg) translateY(-100%); }
        .glass-card:hover {
            transform:translateY(-8px);
            border-color:rgba(255,255,255,0.1);
            box-shadow:0 24px 60px rgba(0,0,0,0.3), 0 0 40px rgba(0,212,170,0.05);
        }

        /* ============== SERVICES ============== */
        .services-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:32px; }
        .service-card {
            position:relative; overflow:hidden; display:flex; flex-direction:column;
        }
        .service-img-wrap {
            overflow:hidden; position:relative; height:200px; flex-shrink:0;
            border-radius:var(--radius) var(--radius) 0 0;
        }
        .service-img {
            width:100%; height:100%; object-fit:cover;
            transition:transform 0.6s cubic-bezier(0.16,1,0.3,1);
        }
        .service-card:hover .service-img { transform:scale(1.08); }
        .service-img-wrap::after {
            content:''; position:absolute; inset:0;
            background:linear-gradient(180deg, transparent 40%, rgba(12,12,29,0.7) 100%);
            pointer-events:none;
        }
        .service-content {
            padding:28px 28px 32px; flex:1; display:flex; flex-direction:column;
        }
        .service-icon { width:48px; height:48px; margin-bottom:18px; color:var(--teal); }
        .service-icon svg { width:100%; height:100%; }
        .service-card h3 { font-size:22px; font-weight:700; margin-bottom:12px; letter-spacing:-0.3px; }
        .service-content > p { font-size:14px; color:var(--gray-300); line-height:1.7; margin-bottom:20px; }
        .service-features { display:flex; flex-direction:column; gap:10px; }
        .service-features li {
            font-size:13px; color:var(--gray-500); display:flex; align-items:center; gap:10px;
        }
        .service-features li::before {
            content:''; width:6px; height:6px; border-radius:50%;
            background:linear-gradient(135deg, var(--teal), var(--purple));
            flex-shrink:0;
        }
        .service-card .service-cta {
            display:inline-flex; align-items:center; gap:6px;
            margin-top:auto; padding-top:24px;
            color:var(--teal); font-size:13px; font-weight:600;
            transition:all 0.3s;
        }
        .service-card .service-cta:hover { color:var(--accent); gap:10px; }

        /* ============== PORTFOLIO ============== */
        .portfolio-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:32px; }
        .portfolio-card { border-radius:var(--radius); overflow:hidden; }
        .portfolio-img { width:100%; height:300px; object-fit:cover; transition:transform 0.6s; }
        .portfolio-card:hover .portfolio-img { transform:scale(1.06); }
        .portfolio-img-wrap { overflow:hidden; position:relative; }
        .portfolio-img-wrap::after {
            content:''; position:absolute; inset:0;
            background:linear-gradient(180deg, transparent 50%, rgba(12,12,29,0.8) 100%);
            opacity:0; transition:opacity 0.4s; pointer-events:none;
        }
        .portfolio-card:hover .portfolio-img-wrap::after { opacity:1; }
        .portfolio-body { padding:28px 32px; }
        .portfolio-body h3 { font-size:20px; font-weight:700; margin-bottom:8px; }
        .portfolio-body p { font-size:14px; color:var(--gray-500); line-height:1.6; }
        .portfolio-tags { display:flex; gap:8px; margin-top:14px; flex-wrap:wrap; }
        .portfolio-tags span {
            font-size:11px; font-weight:600; padding:5px 14px;
            background:rgba(0,212,170,0.06); color:var(--teal);
            border-radius:50px; border:1px solid rgba(0,212,170,0.1);
            transition:all 0.3s;
        }
        .portfolio-card:hover .portfolio-tags span {
            background:rgba(0,212,170,0.1); box-shadow:0 0 12px rgba(0,212,170,0.08);
        }

        /* ============== PRICING SCROLL-LOCK CAROUSEL ============== */
        .pricing-scroll-container {
            position: relative;
        }
        .pricing-carousel-section {
            position: sticky;
            top: 0;
            overflow: hidden;
            height: 100vh;
            height: 100dvh;
            display: flex;
            flex-direction: column;
            z-index: 10;
            padding: 0;
        }
        /* Header row: compact, top */
        .pricing-header-row {
            flex-shrink: 0;
            text-align: center;
            padding: 50px 20px 20px;
        }
        .pricing-header-row .section-label { font-size: 13px; margin-bottom: 10px; }
        .pricing-header-row h2 { font-size: clamp(24px, 3.5vw, 36px); line-height: 1.2; margin-bottom: 10px; }
        .pricing-header-row p {
            font-size: 15px; color: var(--gray-300); max-width: 520px;
            margin: 0 auto; line-height: 1.5;
        }
        /* Slider area: fills remaining space */
        .pricing-slider-wrap {
            flex: 1;
            position: relative;
            overflow: visible;
            width: 100%;
            min-height: 0;
        }
        .pricing-slider-stage {
            position: relative;
            width: 100%;
            height: 100%;
        }
        .pricing-slide {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 600px;
            max-width: 90vw;
            transform: translate(-50%, -50%);
            transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
            opacity: 0;
            pointer-events: none;
        }
        /* Cards: comfortable desktop size */
        .pricing-slide .pricing-card {
            padding: 36px 36px 28px;
        }
        .pricing-slide .pricing-icon { width: 44px; height: 44px; margin-bottom: 14px; }
        .pricing-slide .pricing-card h3 { font-size: 24px; margin-bottom: 6px; }
        .pricing-slide .pricing-card > .pricing-desc {
            font-size: 14px; margin-bottom: 18px; line-height: 1.5;
            display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
        }
        .pricing-slide .price-currencies { padding: 14px 0; margin-bottom: 16px; }
        .pricing-slide .price-amount { font-size: 22px; }
        .pricing-slide .price-code { font-size: 12px; }
        .pricing-slide .price-starting { font-size: 13px; margin-bottom: 4px; }
        .pricing-slide .pricing-monthly-label { font-size: 12px; margin-bottom: 6px; }
        .pricing-slide .price-monthly .price-amount { font-size: 28px; }
        .pricing-slide .price-monthly .price-code { font-size: 12px; }
        .pricing-slide .pricing-setup-row { margin-bottom: 14px; padding-bottom: 14px; }
        .pricing-slide .pricing-setup-label { font-size: 12px; }
        .pricing-slide .pricing-setup-prices { font-size: 13px; }
        /* Features: 2 columns */
        .pricing-slide .pricing-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px 18px;
            margin-bottom: 18px;
        }
        .pricing-slide .pricing-features li { font-size: 14px; }
        .pricing-slide .pricing-cta { padding: 14px 28px; font-size: 15px; }
        .pricing-slide .pricing-extra { padding: 6px 12px; margin-bottom: 12px; font-size: 12px; }
        .pricing-slide .pricing-examples { font-size: 12px; margin-bottom: 10px; }
        .pricing-slide .pricing-deducted-note { padding: 12px 18px; font-size: 14px; margin-top: 10px; }
        .pricing-slide .pricing-deducted-info { padding: 10px 16px; font-size: 13px; margin-top: 10px; }
        .pricing-slide .pricing-funnel-badge { font-size: 11px; padding: 5px 12px; top: 16px; right: 16px; }
        .pricing-slide .pricing-badge { font-size: 13px; padding: 6px 18px; }
        /* Powered by: compact */
        .pricing-slide .powered-by-logos { margin: 14px 0 6px; padding: 12px 0; }
        .pricing-slide .powered-label { font-size: 10px; margin-bottom: 8px; }
        .pricing-slide .powered-logo span { font-size: 12px; }
        .pricing-slide .powered-logo svg { width: 24px; height: 24px; }

        .pricing-slide.active {
            opacity: 1;
            pointer-events: auto;
            z-index: 10;
        }

        /* Powered-by base styles */
        .powered-by-logos {
            text-align: center; margin: 16px 0 8px; padding: 14px 0;
            border-top: 1px solid rgba(255,255,255,0.06);
        }
        .powered-label {
            font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px;
            color: var(--gray-500); display: block; margin-bottom: 10px;
        }
        .powered-icons { display: flex; justify-content: center; gap: 24px; }
        .powered-logo {
            display: flex; align-items: center; gap: 6px;
            opacity: 0.7; transition: opacity 0.3s;
        }
        .powered-logo:hover { opacity: 1; }
        .powered-logo span { font-size: 13px; font-weight: 700; color: var(--gray-300); }

        /* Bottom controls row */
        .pricing-bottom-row {
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 8px 20px 20px;
            gap: 10px;
        }
        .pricing-controls {
            display: flex;
            justify-content: center;
            gap: 14px;
        }
        .pricing-arrow {
            width: 44px; height: 44px; border-radius: 50%;
            border: 1px solid rgba(255,255,255,0.1);
            background: rgba(255,255,255,0.03);
            color: var(--white);
            display: flex; align-items: center; justify-content: center;
            cursor: pointer; transition: all 0.3s;
        }
        .pricing-arrow:hover {
            border-color: var(--teal);
            background: rgba(0,212,170,0.08);
            color: var(--teal);
        }
        .pricing-arrow svg { width: 18px; height: 18px; stroke-width: 2; }
        .pricing-dots {
            display: flex; justify-content: center; gap: 8px;
        }
        .pricing-dot {
            width: 8px; height: 8px; border-radius: 50%;
            background: rgba(255,255,255,0.15);
            border: none; cursor: pointer; transition: all 0.3s; padding: 0;
        }
        .pricing-dot.active {
            background: var(--teal);
            box-shadow: 0 0 12px rgba(0,212,170,0.3);
            transform: scale(1.3);
        }

        /* Scroll progress indicator — vertical bars on right */
        .pricing-scroll-indicator {
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 6px;
            z-index: 20;
        }
        .pricing-scroll-indicator span {
            display: block;
            width: 3px;
            height: 18px;
            border-radius: 2px;
            background: rgba(255,255,255,0.12);
            transition: all 0.4s;
        }
        .pricing-scroll-indicator span.active {
            background: var(--teal);
            height: 28px;
            box-shadow: 0 0 8px rgba(0,212,170,0.3);
        }

        /* "Sur devis" / custom quote block */
        .price-custom {
            text-align: center;
            padding: 24px 0;
            margin-bottom: 28px;
            border-top: 1px solid rgba(255,255,255,0.06);
            border-bottom: 1px solid rgba(255,255,255,0.06);
        }
        .price-custom-label {
            font-size: 26px;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, var(--teal), var(--purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .price-custom-desc {
            font-size: 12px;
            color: var(--gray-500);
            margin-top: 6px;
        }

        .pricing-card {
            position: relative;
            padding: 40px 32px;
            border-radius: var(--radius);
            background: var(--bg-card);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255,255,255,0.06);
            transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
            display: flex;
            flex-direction: column;
            overflow: visible;
        }
        .pricing-card:hover {
            transform: translateY(-8px);
            border-color: rgba(255,255,255,0.12);
            box-shadow: 0 32px 64px rgba(0,0,0,0.3);
        }

        /* Featured/popular card */
        .pricing-card.featured {
            border-color: var(--accent);
            box-shadow: 0 0 40px rgba(201,168,76,0.08), 0 24px 60px rgba(0,0,0,0.3);
        }
        .pricing-card.featured:hover {
            box-shadow: 0 0 60px rgba(201,168,76,0.15), 0 32px 64px rgba(0,0,0,0.4);
        }

        .pricing-badge {
            position: absolute;
            top: -14px;
            left: 50%;
            transform: translateX(-50%);
            padding: 6px 24px;
            background: linear-gradient(135deg, var(--accent), var(--accent-hover));
            color: #000;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            border-radius: 50px;
            white-space: nowrap;
        }

        .pricing-icon {
            width: 56px;
            height: 56px;
            margin-bottom: 24px;
            color: var(--teal);
        }
        .pricing-card.featured .pricing-icon {
            color: var(--accent);
        }

        .pricing-card h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 10px;
            letter-spacing: -0.3px;
        }

        .pricing-card > .pricing-desc {
            font-size: 14px;
            color: var(--gray-300);
            line-height: 1.7;
            margin-bottom: 28px;
        }

        /* Price display - 3 currencies equal */
        .price-currencies {
            display: flex;
            justify-content: center;
            gap: 0;
            margin-bottom: 28px;
            padding: 20px 0;
            border-top: 1px solid rgba(255,255,255,0.06);
            border-bottom: 1px solid rgba(255,255,255,0.06);
        }
        .price-currency {
            flex: 1;
            text-align: center;
            position: relative;
        }
        .price-currency:not(:last-child)::after {
            content: '';
            position: absolute;
            right: 0;
            top: 10%;
            height: 80%;
            width: 1px;
            background: rgba(255,255,255,0.08);
        }
        .price-amount {
            font-size: 20px;
            font-weight: 800;
            letter-spacing: -0.5px;
            line-height: 1.2;
            color: var(--white);
        }
        .pricing-card.featured .price-amount {
            background: linear-gradient(135deg, var(--accent), var(--accent-hover));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .price-code {
            font-size: 11px;
            font-weight: 600;
            color: var(--gray-500);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 4px;
        }

        /* Starting from prefix */
        .price-starting {
            font-size: 11px;
            font-weight: 600;
            color: var(--teal);
            text-transform: uppercase;
            letter-spacing: 2px;
            text-align: center;
            margin-bottom: 8px;
        }

        /* === MONTHLY PRICE (big) + SETUP PRICE (small) === */
        .pricing-monthly-label {
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--teal);
            text-align: center;
            margin-bottom: 6px;
        }
        .price-monthly .price-amount {
            font-size: 22px;
            font-weight: 900;
            letter-spacing: -0.5px;
        }
        .pricing-card.featured .price-monthly .price-amount {
            background: linear-gradient(135deg, var(--accent), var(--accent-hover));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .pricing-setup-row {
            text-align: center;
            margin-bottom: 16px;
            padding-bottom: 14px;
            border-bottom: 1px solid rgba(255,255,255,0.06);
        }
        .pricing-setup-label {
            font-size: 10px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--gray-500);
        }
        .pricing-setup-prices {
            font-size: 11px;
            font-weight: 600;
            color: var(--gray-400);
            margin-left: 6px;
        }

        /* Extra pricing note */
        .pricing-extra {
            text-align: center;
            margin-bottom: 20px;
            padding: 12px 16px;
            background: rgba(0,212,170,0.06);
            border: 1px solid rgba(0,212,170,0.1);
            border-radius: var(--radius-sm);
            font-size: 12px;
            color: var(--teal);
            font-weight: 600;
        }
        .pricing-extra-currencies {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 6px;
            font-size: 11px;
            color: var(--gray-500);
            font-weight: 500;
        }
        .pricing-examples {
            font-size: 12px;
            color: var(--gray-500);
            font-style: italic;
            text-align: center;
            margin-bottom: 20px;
            line-height: 1.5;
        }

        .pricing-features {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-bottom: 32px;
            flex-grow: 1;
        }
        .pricing-features li {
            font-size: 14px;
            color: var(--gray-300);
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .pricing-features li::before {
            content: '';
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: rgba(0,212,170,0.1);
            flex-shrink: 0;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2300d4aa'%3E%3Cpath d='M6 10l3 3 5-6' stroke='%2300d4aa' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: center;
            background-size: 14px;
        }

        .pricing-cta {
            display: block;
            text-align: center;
            padding: 16px 28px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            transition: all 0.3s;
            border: 1px solid rgba(0,212,170,0.2);
            color: var(--teal);
            background: rgba(0,212,170,0.06);
        }
        .pricing-cta:hover {
            background: var(--teal);
            color: #000;
            border-color: var(--teal);
            box-shadow: 0 10px 30px rgba(0,212,170,0.2);
        }
        .pricing-card.featured .pricing-cta {
            background: linear-gradient(135deg, var(--accent), var(--accent-hover));
            color: #000;
            border: none;
        }
        .pricing-card.featured .pricing-cta:hover {
            box-shadow: 0 10px 30px rgba(201,168,76,0.3);
            transform: translateY(-2px);
        }

        /* ============== PRICING FUNNEL BADGES ============== */
        .pricing-funnel-badge {
            position: absolute;
            top: 16px;
            right: 16px;
            background: linear-gradient(135deg, var(--teal), #00b894);
            color: #000;
            font-size: 11px;
            font-weight: 700;
            padding: 5px 12px;
            border-radius: 20px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            z-index: 2;
            animation: funnel-pulse 2s ease-in-out infinite;
        }
        @keyframes funnel-pulse {
            0%, 100% { box-shadow: 0 0 0 0 rgba(0,212,170,0.4); }
            50% { box-shadow: 0 0 0 8px rgba(0,212,170,0); }
        }
        .pricing-deducted-note {
            background: rgba(0,212,170,0.08);
            border: 1px solid rgba(0,212,170,0.2);
            border-radius: 12px;
            padding: 12px 16px;
            font-size: 13px;
            color: var(--teal);
            text-align: center;
            margin-top: 8px;
            margin-bottom: 4px;
            line-height: 1.5;
        }
        .pricing-deducted-info {
            background: rgba(0,212,170,0.05);
            border: 1px dashed rgba(0,212,170,0.25);
            border-radius: 10px;
            padding: 10px 14px;
            font-size: 12px;
            color: rgba(0,212,170,0.85);
            text-align: center;
            margin-top: 10px;
            margin-bottom: 4px;
            line-height: 1.4;
        }
        .pricing-card.featured .pricing-deducted-info {
            border-color: rgba(201,168,76,0.3);
            background: rgba(201,168,76,0.06);
            color: var(--accent);
        }

        /* Services responsive */
        @media(max-width:768px) {
            .services-grid { grid-template-columns:1fr; gap:24px; }
            .service-img-wrap { height:180px; }
        }
        @media(max-width:480px) {
            .service-content { padding:20px 20px 24px; }
            .service-img-wrap { height:160px; }
        }

        /* ============== GOOGLE REVIEW CTA ============== */
        .google-review-cta { background: linear-gradient(180deg, transparent, rgba(0,212,170,0.03), transparent); }
        .google-review-inner { max-width: 500px; margin: 0 auto; }
        .google-review-btn {
            display: inline-flex; align-items: center; justify-content: center;
            padding: 14px 32px; border-radius: 50px;
            background: linear-gradient(135deg, #4285F4, #34A853);
            color: #fff; font-weight: 700; font-size: 15px;
            text-decoration: none; transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(66,133,244,0.3);
        }
        .google-review-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 28px rgba(66,133,244,0.45);
        }

        /* ============== CONTACT SPLIT ============== */
        .contact-split {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }
        .contact-left {
            padding-top: 20px;
        }
        .contact-left .section-label {
            font-size: 11px; font-weight: 700; text-transform: uppercase;
            letter-spacing: 3px; color: var(--teal); margin-bottom: 32px;
        }
        .contact-hero-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(32px, 4vw, 50px);
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: -0.5px;
            margin-bottom: 48px;
        }
        .contact-hero-title em {
            font-style: italic;
            color: var(--teal);
        }
        .contact-info-list {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }
        .contact-info-item {
            display: flex;
            align-items: center;
            gap: 16px;
            color: var(--gray-300);
            text-decoration: none;
            font-size: 15px;
            transition: color 0.3s;
        }
        .contact-info-item:hover {
            color: var(--teal);
        }
        .contact-info-icon {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: rgba(0,212,170,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .contact-info-icon svg {
            width: 20px;
            height: 20px;
            color: var(--teal);
        }

        /* Right form */
        .contact-form-card {
            padding: 40px;
            border-radius: var(--radius);
        }
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--gray-500);
            margin-bottom: 8px;
        }
        .form-group .label-teal {
            color: var(--teal);
        }
        .form-group input:not([type="radio"]),
        .form-group textarea {
            width: 100%;
            padding: 14px 16px;
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: var(--radius-sm);
            color: var(--white);
            font-size: 14px;
            font-family: 'Inter', sans-serif;
            outline: none;
            transition: all 0.3s;
        }
        .form-group input:not([type="radio"]):focus,
        .form-group textarea:focus {
            border-color: var(--teal);
            background: rgba(0,212,170,0.04);
        }
        .form-group input:not([type="radio"])::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255,255,255,0.25);
        }
        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }
        .radio-group {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .form-group label.radio-option {
            position: static;
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 16px;
            background: rgba(255,255,255,0.02);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: var(--radius-sm);
            cursor: pointer;
            font-size: 14px;
            font-weight: 400;
            color: var(--gray-300);
            text-transform: none;
            letter-spacing: 0;
            pointer-events: auto;
            transition: all 0.3s;
        }
        .form-group label.radio-option:hover {
            border-color: var(--teal);
            background: rgba(0,212,170,0.04);
        }
        .radio-option input[type="radio"] {
            width: 18px;
            height: 18px;
            accent-color: var(--teal);
            flex-shrink: 0;
        }
        .contact-submit {
            width: 100%;
            padding: 16px;
            background: var(--teal);
            color: #000;
            border: none;
            border-radius: var(--radius-sm);
            font-size: 15px;
            font-weight: 700;
            font-family: 'Inter', sans-serif;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 8px;
        }
        .contact-submit:hover {
            background: var(--teal-hover);
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(0,212,170,0.25);
        }
        @media(max-width:768px) {
            .contact-split { grid-template-columns: 1fr; gap: 40px; }
            .form-row { grid-template-columns: 1fr; }
            .contact-form-card { padding: 28px 20px; }
        }

        /* ============== PARALLAX STATS ============== */
        .parallax-stats {
            position:relative; padding:120px 0; overflow:hidden;
        }
        .parallax-stats::before {
            content:''; position:absolute; inset:0;
            background:linear-gradient(135deg, rgba(0,212,170,0.05), rgba(139,92,246,0.05), rgba(201,168,76,0.05));
            background-size:400% 400%; animation:meshFloat 20s ease-in-out infinite;
        }
        .parallax-stats::after {
            content:''; position:absolute; inset:0;
            background:url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1400&q=60') center/cover no-repeat;
            opacity:0.04;
        }
        .parallax-inner { position:relative; z-index:1; text-align:center; }
        .parallax-quote {
            font-family:'Playfair Display', serif;
            font-size:clamp(24px,3.5vw,40px); font-weight:700;
            line-height:1.4; max-width:700px; margin:0 auto 72px;
            letter-spacing:-0.5px;
        }
        .parallax-quote .accent { color:var(--accent); }
        .stats-row { display:grid; grid-template-columns:repeat(4,1fr); gap:32px; }
        .stat-item { text-align:center; }
        .stat-num {
            font-size:56px; font-weight:900; letter-spacing:-2px; line-height:1;
            background:linear-gradient(135deg, var(--accent), var(--accent-hover));
            -webkit-background-clip:text; -webkit-text-fill-color:transparent;
            background-clip:text;
            text-shadow:none;
            filter:drop-shadow(0 0 20px rgba(201,168,76,0.2));
        }
        .stat-suffix { font-size:36px; }
        .stat-label {
            font-size:12px; font-weight:600; text-transform:uppercase;
            letter-spacing:2px; color:var(--gray-500); margin-top:10px;
        }

        /* ============== PROCESS TIMELINE ============== */
        .process-timeline {
            position:relative; max-width:800px; margin:0 auto;
        }
        .process-timeline::before {
            content:''; position:absolute; left:32px; top:0; bottom:0; width:2px;
            background:linear-gradient(180deg, var(--teal), var(--accent));
            opacity:0.2;
        }
        .process-timeline .timeline-line-active {
            position:absolute; left:32px; top:0; width:2px; height:0;
            background:linear-gradient(180deg, var(--teal), var(--accent));
            transition:height 0.8s cubic-bezier(0.16,1,0.3,1);
        }
        .process-step {
            display:flex; gap:32px; margin-bottom:48px; position:relative;
            align-items:flex-start;
        }
        .process-step:last-child { margin-bottom:0; }
        .step-number {
            width:64px; height:64px; border-radius:50%; flex-shrink:0;
            display:flex; align-items:center; justify-content:center;
            font-size:20px; font-weight:800; color:var(--gray-500);
            border:2px solid rgba(255,255,255,0.06);
            background:var(--bg);
            position:relative; z-index:2;
            transition:all 0.5s;
        }
        .process-step.lit .step-number {
            color:var(--white);
            border-color:var(--teal);
            background:rgba(0,212,170,0.08);
            box-shadow:0 0 24px rgba(0,212,170,0.15);
        }
        .step-content {
            padding:8px 0 0; flex:1;
        }
        .step-content h3 {
            font-size:20px; font-weight:700; margin-bottom:10px;
            transition:color 0.5s;
        }
        .process-step.lit .step-content h3 { color:var(--teal); }
        .step-content p { font-size:15px; color:var(--gray-500); line-height:1.7; }

        /* ============== TEAM ============== */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
            max-width: 900px;
            margin: 0 auto;
        }
        .team-card {
            padding: 48px 32px 40px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .team-photo-wrap {
            position: relative;
            width: 150px;
            height: 150px;
            margin-bottom: 28px;
        }
        .team-photo {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
            border: 3px solid rgba(255,255,255,0.08);
            position: relative;
            z-index: 2;
        }
        .team-photo-glow {
            position: absolute;
            inset: -12px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(0,212,170,0.2) 0%, rgba(139,92,246,0.1) 50%, transparent 70%);
            filter: blur(16px);
            z-index: 1;
            animation: teamGlow 4s ease-in-out infinite alternate;
        }
        @keyframes teamGlow {
            0% { opacity: 0.4; transform: scale(1); }
            100% { opacity: 0.7; transform: scale(1.05); }
        }
        .team-info h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 6px;
            letter-spacing: -0.3px;
        }
        .team-role {
            display: inline-block;
            font-size: 13px;
            font-weight: 600;
            color: var(--teal);
            letter-spacing: 0.5px;
            margin-bottom: 20px;
        }
        .team-bio {
            font-size: 14px;
            color: var(--gray-300);
            line-height: 1.7;
            margin-bottom: 24px;
        }
        .team-skills {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            justify-content: center;
            margin-bottom: 24px;
        }
        .team-skill {
            font-size: 11px;
            font-weight: 600;
            padding: 6px 14px;
            border-radius: 50px;
            background: rgba(0,212,170,0.08);
            color: var(--teal);
            border: 1px solid rgba(0,212,170,0.15);
            letter-spacing: 0.3px;
        }
        .team-socials {
            margin-top: auto;
        }
        .team-linkedin {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 600;
            color: var(--gray-300);
            padding: 10px 24px;
            border-radius: 50px;
            border: 1px solid rgba(255,255,255,0.08);
            transition: all 0.3s;
        }
        .team-linkedin:hover {
            color: #0A66C2;
            border-color: rgba(10,102,194,0.3);
            background: rgba(10,102,194,0.06);
            transform: translateY(-2px);
        }

        /* ============== CONTACT ============== */
        .contact-grid { display:grid; grid-template-columns:1fr 1.2fr; gap:64px; align-items:start; }
        .contact-info-list { display:flex; flex-direction:column; gap:28px; margin-top:36px; }
        .contact-info-item { display:flex; align-items:center; gap:16px; }
        .contact-info-icon {
            width:48px; height:48px; border-radius:12px;
            background:rgba(0,212,170,0.06); display:flex;
            align-items:center; justify-content:center; flex-shrink:0;
            color:var(--teal); border:1px solid rgba(0,212,170,0.08);
        }
        .contact-info-icon svg { width:22px; height:22px; }
        .contact-info-item .label { font-size:12px; color:var(--gray-500); font-weight:500; }
        .contact-info-item .value { font-size:15px; color:var(--white); font-weight:500; }

        /* ============== SCROLL TEXT REVEAL ============== */
        .text-reveal .word {
            display:inline-block;
            opacity:0;
            transform:translateY(30px);
            transition:opacity 0.6s cubic-bezier(0.16,1,0.3,1), transform 0.6s cubic-bezier(0.16,1,0.3,1);
        }
        .text-reveal.revealed .word {
            opacity:1;
            transform:translateY(0);
        }
        .text-reveal .word:nth-child(1) { transition-delay:0s; }
        .text-reveal .word:nth-child(2) { transition-delay:0.05s; }
        .text-reveal .word:nth-child(3) { transition-delay:0.1s; }
        .text-reveal .word:nth-child(4) { transition-delay:0.15s; }
        .text-reveal .word:nth-child(5) { transition-delay:0.2s; }
        .text-reveal .word:nth-child(6) { transition-delay:0.25s; }
        .text-reveal .word:nth-child(7) { transition-delay:0.3s; }
        .text-reveal .word:nth-child(8) { transition-delay:0.35s; }
        .text-reveal .word:nth-child(9) { transition-delay:0.4s; }
        .text-reveal .word:nth-child(10) { transition-delay:0.45s; }
        .text-reveal .word:nth-child(n+11) { transition-delay:0.5s; }

        /* ============== FOOTER ============== */
        .footer { padding:80px 0 32px; position:relative; }
        .footer::before {
            content:''; position:absolute; top:0; left:0; right:0; height:2px;
            background:linear-gradient(90deg, transparent, var(--teal), var(--accent), transparent);
            animation:glowPulse 4s ease-in-out infinite;
        }
        .footer-grid {
            display:grid; grid-template-columns:2fr 1fr 1fr 1.2fr;
            gap:48px; margin-bottom:56px;
        }
        .footer-brand-desc { font-size:14px; color:var(--gray-500); line-height:1.7; margin-top:16px; }
        .footer-col h4 { font-size:14px; font-weight:700; margin-bottom:20px; color:var(--gray-300); }
        .footer-col ul li { margin-bottom:10px; }
        .footer-col a {
            font-size:13px; color:var(--gray-500); transition:all 0.3s;
            position:relative;
        }
        .footer-col a:hover { color:var(--teal); padding-left:6px; }
        .footer-social { display:flex; gap:12px; margin-top:24px; }
        .footer-social a {
            width:40px; height:40px; border-radius:50%;
            border:1px solid rgba(255,255,255,0.06);
            display:flex; align-items:center; justify-content:center;
            color:var(--gray-500); transition:all 0.3s;
        }
        .footer-social a:hover {
            border-color:var(--teal); color:var(--teal);
            box-shadow:0 0 16px rgba(0,212,170,0.1);
        }
        .footer-bottom {
            display:flex; justify-content:space-between; align-items:center;
            padding-top:28px; border-top:1px solid rgba(255,255,255,0.04);
        }
        .footer-bottom p { font-size:12px; color:var(--gray-700); }

        /* ============== LOGIN MODAL ============== */
        .modal-overlay {
            position:fixed; inset:0; z-index:200;
            background:rgba(0,0,0,0.6);
            backdrop-filter:blur(12px); -webkit-backdrop-filter:blur(12px);
            display:flex; align-items:center; justify-content:center;
            opacity:0; pointer-events:none; transition:opacity 0.3s;
            padding:24px;
        }
        .modal-overlay.open { opacity:1; pointer-events:all; }
        .modal-card {
            width:100%; max-width:440px;
            background:rgba(20,20,50,0.9);
            backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px);
            border:1px solid rgba(255,255,255,0.08);
            border-radius:var(--radius); padding:44px 40px;
            box-shadow:0 40px 100px rgba(0,0,0,0.5);
            transform:translateY(20px) scale(0.97);
            transition:transform 0.4s cubic-bezier(0.16,1,0.3,1);
            position:relative;
        }
        .modal-overlay.open .modal-card { transform:translateY(0) scale(1); }
        .modal-close {
            position:absolute; top:16px; right:16px;
            width:36px; height:36px; border-radius:50%;
            background:rgba(255,255,255,0.05); border:none;
            color:var(--gray-500); font-size:18px; cursor:pointer;
            display:flex; align-items:center; justify-content:center;
            transition:all 0.3s;
        }
        .modal-close:hover { background:rgba(255,60,60,0.1); color:#ff6b6b; }
        .modal-header { text-align:center; margin-bottom:32px; }
        .modal-header img {
            width:56px; height:56px; border-radius:50%; object-fit:cover;
            margin:0 auto 16px;
        }
        .modal-header h2 {
            font-family:'Playfair Display',serif;
            font-size:24px; font-weight:800; margin-bottom:8px;
        }
        .modal-header p { font-size:14px; color:var(--gray-500); }
        .login-form .form-group { margin-bottom:18px; }
        .login-form .form-group label {
            position:static; display:block; margin-bottom:8px;
            font-size:13px; font-weight:500; color:var(--gray-500);
        }
        .login-form .form-group input { padding:15px 16px 15px 48px; }
        .login-form .input-wrap { position:relative; }
        .login-form .input-icon {
            position:absolute; left:16px; top:50%; transform:translateY(-50%);
            color:var(--gray-500); pointer-events:none;
        }
        .login-form .input-icon svg { width:18px; height:18px; }
        .btn-login {
            width:100%; padding:16px; border:none;
            background:var(--accent); color:#000;
            border-radius:50px; font-size:15px; font-weight:600;
            font-family:'Inter',sans-serif; cursor:pointer; transition:all 0.3s;
        }
        .btn-login:hover {
            background:var(--accent-hover);
            box-shadow:0 10px 30px rgba(201,168,76,0.3);
        }
        .error-msg {
            background:rgba(255,60,60,0.08); border:1px solid rgba(255,60,60,0.15);
            color:#ff6b6b; padding:12px 16px; border-radius:var(--radius-sm);
            font-size:13px; margin-bottom:20px;
        }
        .success-msg {
            background:rgba(0,212,170,0.08); border:1px solid rgba(0,212,170,0.15);
            color:var(--teal); padding:12px 16px; border-radius:var(--radius-sm);
            font-size:13px; margin-bottom:20px;
        }
        .modal-trust {
            display:flex; justify-content:center; gap:24px;
            margin-top:24px; padding-top:20px;
            border-top:1px solid rgba(255,255,255,0.05);
        }
        .modal-trust span {
            font-size:11px; color:var(--gray-700); display:flex; align-items:center; gap:4px;
        }

        /* ============== ANIMATIONS ============== */
        .reveal {
            opacity:0; transform:translateY(50px);
            transition:all 0.9s cubic-bezier(0.16,1,0.3,1);
        }
        .reveal-scale {
            opacity:0; transform:translateY(40px) scale(0.95);
            transition:all 0.9s cubic-bezier(0.16,1,0.3,1);
        }
        .reveal-left {
            opacity:0; transform:translateX(-50px);
            transition:all 0.9s cubic-bezier(0.16,1,0.3,1);
        }
        .reveal-right {
            opacity:0; transform:translateX(50px);
            transition:all 0.9s cubic-bezier(0.16,1,0.3,1);
        }
        .reveal-blur {
            opacity:0; transform:translateY(30px); filter:blur(8px);
            transition:all 1s cubic-bezier(0.16,1,0.3,1);
        }
        .reveal.visible, .reveal-scale.visible, .reveal-left.visible,
        .reveal-right.visible, .reveal-blur.visible {
            opacity:1; transform:translate(0,0) scale(1) rotate(0); filter:blur(0);
        }
        .r-delay-1 { transition-delay:0.1s; }
        .r-delay-2 { transition-delay:0.2s; }
        .r-delay-3 { transition-delay:0.3s; }
        .r-delay-4 { transition-delay:0.4s; }

        /* Hero stagger */
        .hero .hero-label, .hero h1, .hero-desc, .hero-buttons, .hero-stats {
            opacity:0; transform:translateY(30px);
            animation:heroIn 0.8s cubic-bezier(0.16,1,0.3,1) forwards;
        }
        .hero .hero-label { animation-delay:0.3s; }
        .hero h1 { animation-delay:0.5s; }
        .hero .hero-desc { animation-delay:0.7s; }
        .hero .hero-buttons { animation-delay:0.9s; }
        .hero .hero-stats { animation-delay:1.1s; }
        @keyframes heroIn { to { opacity:1; transform:translateY(0); } }

        /* Navbar slide down */
        .navbar {
            animation:navSlide 0.6s cubic-bezier(0.16,1,0.3,1) forwards;
            opacity:0; transform:translateY(-20px);
        }
        @keyframes navSlide { to { opacity:1; transform:translateY(0); } }

        /* ============== BOOKING MODAL ============== */
        .booking-overlay {
            position:fixed; inset:0; z-index:200;
            background:rgba(0,0,0,0.7); backdrop-filter:blur(6px);
            display:flex; align-items:center; justify-content:center;
            opacity:0; visibility:hidden; transition:all 0.35s;
        }
        .booking-overlay.open { opacity:1; visibility:visible; }
        .booking-card {
            background:rgba(20,20,50,0.95); backdrop-filter:blur(20px);
            border:1px solid rgba(255,255,255,0.08);
            border-radius:var(--radius); padding:36px 32px;
            max-width:440px; width:90%; max-height:90vh; overflow-y:auto;
            transform:translateY(30px) scale(0.95); transition:all 0.4s cubic-bezier(0.16,1,0.3,1);
            position:relative;
        }
        .booking-overlay.open .booking-card { transform:translateY(0) scale(1); }
        .booking-header { text-align:center; margin-bottom:28px; }
        .booking-header h2 { font-size:22px; font-weight:700; margin:0 0 8px; }
        .booking-badge {
            display:inline-block; padding:4px 14px; border-radius:20px;
            background:rgba(0,212,170,0.12); color:var(--teal);
            font-size:12px; font-weight:600; letter-spacing:0.5px;
        }
        .booking-close {
            position:absolute; top:16px; right:16px; width:32px; height:32px;
            border:none; background:rgba(255,255,255,0.06); border-radius:50%;
            color:var(--gray-500); font-size:20px; cursor:pointer; transition:all 0.3s;
            display:flex; align-items:center; justify-content:center;
        }
        .booking-close:hover { background:rgba(255,255,255,0.12); color:#fff; }
        .booking-step { display:none; }
        .booking-step.active { display:block; }
        .booking-step-title { font-size:13px; font-weight:600; color:var(--gray-500); text-transform:uppercase; letter-spacing:1.5px; margin-bottom:16px; }
        .cal-nav { display:flex; align-items:center; justify-content:space-between; margin-bottom:16px; }
        .cal-nav button {
            width:32px; height:32px; border:none; border-radius:50%;
            background:rgba(255,255,255,0.06); color:#fff; cursor:pointer;
            display:flex; align-items:center; justify-content:center; transition:all 0.3s;
        }
        .cal-nav button:hover { background:rgba(255,255,255,0.12); }
        .cal-nav span { font-size:15px; font-weight:600; }
        .cal-days-header { display:grid; grid-template-columns:repeat(7,1fr); gap:4px; margin-bottom:8px; text-align:center; }
        .cal-days-header span { font-size:11px; font-weight:600; color:var(--gray-600); text-transform:uppercase; }
        .cal-grid { display:grid; grid-template-columns:repeat(7,1fr); gap:4px; }
        .cal-day {
            width:100%; aspect-ratio:1; border:none; border-radius:50%;
            background:transparent; color:var(--gray-300); font-size:13px; font-weight:500;
            cursor:pointer; transition:all 0.2s; display:flex; align-items:center; justify-content:center;
        }
        .cal-day:hover:not(:disabled) { background:rgba(0,212,170,0.15); color:#fff; }
        .cal-day:disabled { opacity:0.2; cursor:default; }
        .cal-day.today { border:1px solid var(--teal); color:var(--teal); }
        .cal-day.selected { background:var(--teal); color:#000; font-weight:700; }
        .slots-section h4 { font-size:12px; font-weight:600; color:var(--gray-500); margin:16px 0 10px; text-transform:uppercase; letter-spacing:1px; }
        .slots-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:8px; }
        .slot-btn {
            padding:10px 8px; border:1px solid rgba(255,255,255,0.08); border-radius:var(--radius-sm);
            background:rgba(255,255,255,0.02); color:var(--gray-300); font-size:13px; font-weight:500;
            cursor:pointer; transition:all 0.2s; text-align:center;
        }
        .slot-btn:hover { border-color:var(--teal); color:var(--teal); background:rgba(0,212,170,0.06); }
        .slot-btn.selected { border-color:var(--teal); background:var(--teal); color:#000; font-weight:700; }
        .booking-form-group { margin-bottom:16px; }
        .booking-form-group label { display:block; font-size:12px; font-weight:600; color:var(--gray-500); margin-bottom:6px; text-transform:uppercase; letter-spacing:1px; }
        .booking-form-group input {
            width:100%; padding:12px 16px; border:1px solid rgba(255,255,255,0.08);
            border-radius:var(--radius-sm); background:rgba(255,255,255,0.03);
            color:#fff; font-size:14px; font-family:inherit; transition:border-color 0.3s;
        }
        .booking-form-group input:focus { outline:none; border-color:var(--teal); }
        .booking-recap {
            background:rgba(0,212,170,0.06); border:1px solid rgba(0,212,170,0.15);
            border-radius:var(--radius-sm); padding:14px 18px; margin-bottom:20px;
            font-size:14px; color:var(--gray-300); line-height:1.6;
        }
        .booking-recap strong { color:#fff; }
        .booking-submit {
            width:100%; padding:14px 24px; border:none; border-radius:var(--radius-sm);
            background:var(--teal); color:#000; font-size:15px; font-weight:700;
            cursor:pointer; transition:all 0.3s; font-family:inherit;
        }
        .booking-submit:hover { background:#00f0c0; transform:translateY(-1px); }
        .booking-confirmed { text-align:center; padding:20px 0; }
        .booking-confirmed .checkmark {
            width:64px; height:64px; border-radius:50%;
            background:rgba(0,212,170,0.15); color:var(--teal);
            display:flex; align-items:center; justify-content:center;
            margin:0 auto 20px; font-size:28px;
            animation:bookingPop 0.5s cubic-bezier(0.16,1,0.3,1);
        }
        @keyframes bookingPop { 0%{transform:scale(0)}50%{transform:scale(1.2)}100%{transform:scale(1)} }
        .booking-confirmed h3 { font-size:20px; margin:0 0 8px; }
        .booking-confirmed p { color:var(--gray-500); font-size:14px; margin-bottom:20px; }
        .booking-gcal-btn {
            display:inline-flex; align-items:center; gap:8px;
            padding:10px 20px; border-radius:var(--radius-sm);
            background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.1);
            color:#fff; font-size:13px; font-weight:600; text-decoration:none; transition:all 0.3s;
        }
        .booking-gcal-btn:hover { background:rgba(255,255,255,0.12); }

        /* Timezone selection */
        .tz-options { display:flex; flex-direction:column; gap:12px; }
        .tz-option {
            display:flex; align-items:center; gap:16px;
            padding:16px 18px; border-radius:var(--radius-sm);
            background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.08);
            color:#fff; cursor:pointer; transition:all 0.3s; text-align:left; width:100%;
        }
        .tz-option:hover { background:rgba(0,212,170,0.08); border-color:var(--teal); transform:translateX(4px); }
        .tz-option-icon { flex-shrink:0; }
        .tz-avatar { width:48px; height:48px; border-radius:50%; object-fit:cover; border:2px solid rgba(255,255,255,0.1); }
        .tz-option-info { flex:1; display:flex; flex-direction:column; gap:2px; }
        .tz-option-info strong { font-size:15px; font-weight:700; }
        .tz-option-info span { font-size:13px; color:var(--gray-400); }
        .tz-option-info small { font-size:11px; color:var(--teal); font-weight:600; margin-top:2px; }
        .tz-arrow { flex-shrink:0; color:var(--gray-500); transition:transform 0.3s; }
        .tz-option:hover .tz-arrow { transform:translateX(4px); color:var(--teal); }

        /* ============== WHATSAPP FLOATING ============== */
        .whatsapp-float {
            position:fixed; bottom:24px; right:24px; z-index:90;
            width:56px; height:56px; border-radius:50%;
            background:#25D366; color:white;
            display:flex; align-items:center; justify-content:center;
            box-shadow:0 4px 20px rgba(37,211,102,0.4);
            text-decoration:none; transition:transform 0.3s;
            animation:waPulse 2s infinite;
        }
        .whatsapp-float:hover { transform:scale(1.1); }
        @keyframes waPulse {
            0%{box-shadow:0 0 0 0 rgba(37,211,102,0.5);}
            70%{box-shadow:0 0 0 14px rgba(37,211,102,0);}
            100%{box-shadow:0 0 0 0 rgba(37,211,102,0);}
        }

        /* ============== RESPONSIVE ============== */
        @media(max-width:1024px) {
            .hero-grid { grid-template-columns:1fr; gap:48px; }
            .services-grid { grid-template-columns:1fr; }
            .pricing-slide { width: 360px; }
            .pricing-arrow { width: 42px; height: 42px; }
            .pricing-arrow svg { width: 18px; height: 18px; }
            .pricing-scroll-indicator { right: 12px; }
            .stats-row { grid-template-columns:repeat(2,1fr); }
            .team-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
            .contact-grid { grid-template-columns:1fr; }
            .footer-grid { grid-template-columns:repeat(2,1fr); }
        }
        @media(max-width:768px) {
            .nav-links, .nav-brand-name small { display:none; }
            .hamburger { display:flex; }
            .nav-inner .lang-switch, .nav-inner .btn-accent { display:none; }
            .mobile-menu { display:flex; }
            .hero { min-height:auto; padding:120px 0 60px; }
            /* Pricing mobile fix: prevent overlap */
            .pricing-header-row { padding: 30px 16px 10px; }
            .pricing-header-row h2 { font-size: 22px; margin-bottom: 6px; }
            .pricing-header-row p { font-size: 12px; margin-bottom: 0; }
            .pricing-slide { top: 55%; width: 92vw; }
            .pricing-slide .pricing-card { padding: 18px 16px 14px; }
            .pricing-slide .pricing-card h3 { font-size: 16px; }
            .pricing-slide .pricing-card > .pricing-desc { font-size: 11px; margin-bottom: 8px; -webkit-line-clamp: 2; }
            .pricing-slide .price-currencies { padding: 6px 0; margin-bottom: 8px; }
            .pricing-slide .price-amount { font-size: 14px; }
            .pricing-slide .price-code { font-size: 9px; }
            .pricing-slide .pricing-features { gap: 3px 8px; margin-bottom: 8px; }
            .pricing-slide .pricing-features li { font-size: 10px; }
            .pricing-slide .pricing-cta { padding: 8px 16px; font-size: 11px; }
            .pricing-slide .pricing-deducted-note { padding: 6px 10px; font-size: 10px; }
            .pricing-slide .pricing-icon { width: 28px; height: 28px; margin-bottom: 6px; }
            .pricing-slide .powered-by-logos { margin: 4px 0 2px; padding: 6px 0; }
            .pricing-slide .powered-label { font-size: 7px; }
            .pricing-slide .powered-logo span { font-size: 9px; }
            .pricing-slide .powered-logo svg { width: 16px; height: 16px; }
            .hero-stats { gap:24px; flex-wrap:wrap; }
            .hero-stat-num { font-size:32px; }
            .process-timeline::before, .process-timeline .timeline-line-active { left:20px; }
            .step-number { width:40px; height:40px; font-size:14px; }
            .process-step { gap:20px; }
            .stats-row { grid-template-columns:repeat(2,1fr); gap:24px; }
            .stat-num { font-size:40px; }
            .footer-grid { grid-template-columns:1fr; gap:32px; }
            .footer-bottom { flex-direction:column; gap:12px; text-align:center; }
            .form-row { grid-template-columns:1fr; }
            .modal-card { padding:36px 24px; }
            .pricing-slide { width: 310px; }
            .pricing-header-row { padding: 30px 16px 0; }
            .pricing-header-row h2 { font-size: 20px; }
            .pricing-header-row p { font-size: 11px; }
            .pricing-slide .pricing-card { padding: 18px 16px 14px; }
            .pricing-slide .pricing-card h3 { font-size: 15px; }
            .pricing-slide .pricing-features { grid-template-columns: 1fr; gap: 3px; }
            .pricing-slide .pricing-features li { font-size: 10px; }
            .pricing-slide .price-monthly .price-amount { font-size: 18px; }
            .pricing-slide .pricing-setup-row { margin-bottom: 6px; padding-bottom: 6px; }
            .pricing-slide .pricing-setup-label, .pricing-slide .pricing-setup-prices { font-size: 9px; }
            .pricing-bottom-row { padding: 6px 16px 14px; }
            .pricing-scroll-indicator { display: none; }
            .service-img-wrap { height: 160px; }
            .contact-form-centered { padding: 32px 24px; }
            .contact-footer-info { flex-direction: column; align-items: center; gap: 16px; }
        }
        @media(max-width:480px) {
            .pricing-slide { width: 270px; }
            .pricing-slide .pricing-card { padding: 14px 12px 10px; }
            .pricing-slide .pricing-card h3 { font-size: 14px; }
            .pricing-slide .pricing-desc { font-size: 10px; -webkit-line-clamp: 1; }
            .pricing-slide .pricing-features li { font-size: 9px; }
            .pricing-slide .pricing-cta { padding: 8px 16px; font-size: 11px; }
            .pricing-slide .price-monthly .price-amount { font-size: 16px; }
            .pricing-slide .pricing-setup-prices { font-size: 8px; }
            .pricing-header-row { padding: 20px 12px 0; }
            .pricing-header-row h2 { font-size: 18px; }
            .pricing-bottom-row { padding: 4px 12px 12px; gap: 6px; }
            .pricing-controls { gap: 10px; }
            .pricing-arrow { width: 38px; height: 38px; }
            .hero h1 { font-size:30px; }
            .hero-buttons { flex-direction:column; }
            .btn-teal, .btn-outline-w { width:100%; justify-content:center; }
            .stat-num { font-size:32px; }
            .contact-form-card { padding:28px 20px; }
            .portfolio-img { height:220px; }
            .hero-rotate-wrap { min-width:140px; }
        }

        /* ============== SUCCESS MODAL ============== */
        .success-overlay {
            position:fixed; inset:0; z-index:10002;
            background:rgba(0,0,0,0.6); backdrop-filter:blur(10px);
            display:flex; align-items:center; justify-content:center;
            opacity:0; visibility:hidden; transition:all 0.4s ease;
        }
        .success-overlay.open { opacity:1; visibility:visible; }
        .success-card {
            background:linear-gradient(165deg, rgba(15,25,50,0.98), rgba(10,15,28,0.98));
            border:1px solid rgba(0,212,170,0.2);
            border-radius:24px; padding:48px 40px 40px; text-align:center;
            max-width:400px; width:90%; position:relative; overflow:hidden;
            transform:scale(0.8) translateY(20px); transition:transform 0.5s cubic-bezier(0.175,0.885,0.32,1.275);
        }
        .success-overlay.open .success-card { transform:scale(1) translateY(0); }
        /* Glow background */
        .success-card::before {
            content:''; position:absolute; top:-50%; left:-50%;
            width:200%; height:200%;
            background:radial-gradient(circle at 50% 60%, rgba(0,212,170,0.08) 0%, transparent 50%);
            animation:successGlow 3s ease-in-out infinite alternate;
        }
        @keyframes successGlow { 0%{opacity:0.5;transform:scale(0.9);} 100%{opacity:1;transform:scale(1.1);} }
        /* Checkmark circle */
        .success-check-wrap {
            width:90px; height:90px; margin:0 auto 24px; position:relative;
        }
        .success-check-ring {
            width:90px; height:90px; border-radius:50%;
            position:absolute; top:0; left:0;
        }
        .success-check-ring svg { width:90px; height:90px; transform:rotate(-90deg); }
        .success-check-ring circle {
            fill:none; stroke:var(--teal); stroke-width:3;
            stroke-dasharray:276; stroke-dashoffset:276;
            stroke-linecap:round;
        }
        .success-overlay.open .success-check-ring circle {
            animation:drawCircle 0.6s 0.2s ease forwards;
        }
        @keyframes drawCircle { to { stroke-dashoffset:0; } }
        /* Checkmark */
        .success-check-icon {
            position:absolute; top:50%; left:50%;
            transform:translate(-50%,-50%); width:40px; height:40px;
        }
        .success-check-icon svg { width:40px; height:40px; }
        .success-check-icon path {
            fill:none; stroke:var(--teal); stroke-width:3;
            stroke-linecap:round; stroke-linejoin:round;
            stroke-dasharray:50; stroke-dashoffset:50;
        }
        .success-overlay.open .success-check-icon path {
            animation:drawCheck 0.4s 0.7s ease forwards;
        }
        @keyframes drawCheck { to { stroke-dashoffset:0; } }
        /* Pulse rings */
        .success-pulse {
            position:absolute; top:50%; left:50%;
            width:90px; height:90px; border-radius:50%;
            transform:translate(-50%,-50%);
            border:2px solid rgba(0,212,170,0.3);
            opacity:0;
        }
        .success-overlay.open .success-pulse {
            animation:successPulse 1.5s 0.8s ease-out forwards;
        }
        .success-overlay.open .success-pulse:nth-child(2) {
            animation:successPulse 1.5s 1.1s ease-out forwards;
        }
        @keyframes successPulse {
            0% { opacity:0.6; transform:translate(-50%,-50%) scale(1); }
            100% { opacity:0; transform:translate(-50%,-50%) scale(2.5); }
        }
        /* Floating sparkles */
        .success-sparkles {
            position:absolute; top:0; left:0; width:100%; height:100%;
            pointer-events:none; overflow:hidden;
        }
        .success-sparkle {
            position:absolute; width:4px; height:4px; border-radius:50%;
            background:var(--teal); opacity:0;
        }
        .success-overlay.open .success-sparkle { animation:sparkleFloat 2s ease-out forwards; }
        .success-sparkle:nth-child(1){ left:15%; top:70%; animation-delay:0.5s !important; background:var(--accent); }
        .success-sparkle:nth-child(2){ left:80%; top:65%; animation-delay:0.7s !important; width:3px; height:3px; }
        .success-sparkle:nth-child(3){ left:25%; top:80%; animation-delay:0.9s !important; background:var(--accent); width:5px; height:5px; }
        .success-sparkle:nth-child(4){ left:70%; top:75%; animation-delay:0.6s !important; width:3px; height:3px; }
        .success-sparkle:nth-child(5){ left:50%; top:85%; animation-delay:1.0s !important; background:var(--accent); }
        .success-sparkle:nth-child(6){ left:35%; top:60%; animation-delay:0.8s !important; width:5px; height:5px; }
        .success-sparkle:nth-child(7){ left:60%; top:55%; animation-delay:1.1s !important; background:var(--accent); width:3px; height:3px; }
        .success-sparkle:nth-child(8){ left:45%; top:90%; animation-delay:0.4s !important; }
        @keyframes sparkleFloat {
            0% { opacity:0; transform:translateY(0) scale(0); }
            20% { opacity:1; transform:translateY(-10px) scale(1); }
            100% { opacity:0; transform:translateY(-80px) scale(0.3); }
        }
        /* Text */
        .success-title {
            font-size:22px; font-weight:800; margin-bottom:10px;
            position:relative; opacity:0;
        }
        .success-overlay.open .success-title { animation:successFadeUp 0.5s 0.9s ease forwards; }
        .success-text {
            font-size:14px; color:var(--gray-400); line-height:1.6;
            margin-bottom:28px; position:relative; opacity:0;
        }
        .success-overlay.open .success-text { animation:successFadeUp 0.5s 1.1s ease forwards; }
        @keyframes successFadeUp { from{opacity:0;transform:translateY(10px);} to{opacity:1;transform:translateY(0);} }
        /* Button */
        .success-btn {
            display:inline-block; padding:14px 40px; border:none;
            border-radius:50px; background:var(--teal); color:var(--bg);
            font-size:15px; font-weight:700; cursor:pointer;
            position:relative; overflow:hidden; opacity:0;
            transition:transform 0.3s, box-shadow 0.3s;
        }
        .success-overlay.open .success-btn { animation:successFadeUp 0.5s 1.3s ease forwards; }
        .success-btn:hover { transform:translateY(-2px); box-shadow:0 8px 30px rgba(0,212,170,0.3); }
        .success-btn::after {
            content:''; position:absolute; top:50%; left:50%;
            width:0; height:0; border-radius:50%;
            background:rgba(255,255,255,0.2);
            transform:translate(-50%,-50%);
            transition:width 0.4s, height 0.4s;
        }
        .success-btn:active::after { width:200px; height:200px; }
        /* Progress bar auto-close */
        .success-progress {
            position:absolute; bottom:0; left:0; height:3px;
            background:linear-gradient(90deg, var(--teal), var(--accent));
            border-radius:0 0 24px 24px; width:100%;
            transform-origin:left;
        }
        .success-overlay.open .success-progress { animation:successCountdown 6s 1.5s linear forwards; }
        @keyframes successCountdown { from{transform:scaleX(1);} to{transform:scaleX(0);} }
        @media(max-width:480px){
            .success-card { padding:36px 24px 32px; }
            .success-check-wrap { width:70px; height:70px; }
            .success-check-ring, .success-check-ring svg { width:70px; height:70px; }
            .success-check-ring circle { stroke-dasharray:214; stroke-dashoffset:214; }
            .success-title { font-size:19px; }
            .success-text { font-size:13px; }
        }

        /* ============== COOKIE BANNER ============== */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 10000;
            background: rgba(10,15,28,0.97);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-top: 1px solid rgba(0,212,170,0.15);
            padding: 20px 24px;
            transform: translateY(100%);
            transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
        }
        .cookie-banner.visible { transform: translateY(0); }
        .cookie-inner {
            max-width: 1100px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 24px;
        }
        .cookie-icon {
            flex-shrink: 0;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(0,212,170,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }
        .cookie-text { flex: 1; }
        .cookie-text strong {
            display: block;
            font-size: 14px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 4px;
        }
        .cookie-text p {
            font-size: 12px;
            color: var(--gray-400);
            line-height: 1.5;
            margin: 0;
        }
        .cookie-text a {
            color: var(--teal);
            text-decoration: underline;
            cursor: pointer;
        }
        .cookie-buttons {
            display: flex;
            gap: 10px;
            flex-shrink: 0;
        }
        .cookie-btn {
            padding: 10px 22px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: all 0.3s;
        }
        .cookie-btn-accept {
            background: var(--teal);
            color: #000;
        }
        .cookie-btn-accept:hover { background: #00e6b8; }
        .cookie-btn-reject {
            background: rgba(255,255,255,0.06);
            color: var(--gray-300);
            border: 1px solid rgba(255,255,255,0.1);
        }
        .cookie-btn-reject:hover { background: rgba(255,255,255,0.1); }
        @media(max-width:768px) {
            .cookie-inner { flex-direction: column; text-align: center; gap: 14px; }
            .cookie-icon { display: none; }
            .cookie-buttons { width: 100%; justify-content: center; }
        }

        /* ============== LEGAL MODAL ============== */
        .legal-overlay {
            position: fixed;
            inset: 0;
            z-index: 10001;
            background: rgba(0,0,0,0.7);
            backdrop-filter: blur(6px);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            padding: 20px;
        }
        .legal-overlay.open { opacity: 1; visibility: visible; }
        .legal-card {
            background: var(--bg);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: var(--radius);
            max-width: 720px;
            width: 100%;
            max-height: 85vh;
            overflow-y: auto;
            padding: 40px 36px;
            position: relative;
        }
        .legal-card::-webkit-scrollbar { width: 4px; }
        .legal-card::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 2px; }
        .legal-card h2 {
            font-size: 22px;
            font-weight: 800;
            margin-bottom: 28px;
            color: #fff;
            padding-bottom: 16px;
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }
        .legal-card h3 {
            font-size: 15px;
            font-weight: 700;
            color: var(--teal);
            margin: 24px 0 8px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .legal-card p {
            font-size: 13px;
            color: var(--gray-300);
            line-height: 1.7;
            margin-bottom: 12px;
        }
        .legal-close-btn {
            display: block;
            margin: 28px auto 0;
            padding: 12px 36px;
            border-radius: 50px;
            background: var(--teal);
            color: #000;
            font-weight: 700;
            font-size: 14px;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
        }
        .legal-close-btn:hover { background: #00e6b8; }
        .legal-card .legal-x {
            position: absolute;
            top: 16px;
            right: 16px;
            width: 32px;
            height: 32px;
            border: none;
            background: rgba(255,255,255,0.06);
            color: var(--gray-400);
            border-radius: 50%;
            font-size: 18px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }
        .legal-card .legal-x:hover { background: rgba(255,255,255,0.12); color: #fff; }

        /* ============== SUB-PAGES (multi-page restructure) ============== */
        .breadcrumb { font-size:13px; margin-bottom:26px; display:flex; flex-wrap:wrap; gap:8px; align-items:center; }
        .breadcrumb a { color:var(--gray-300); transition:color .2s; }
        .breadcrumb a:hover { color:var(--teal); }
        .breadcrumb .sep { color:var(--gray-700); }
        .breadcrumb .current { color:var(--teal); }

        .subpage-hero { padding:150px 0 30px; position:relative; z-index:1; }
        .subpage-h1 {
            font-family:'Playfair Display', serif;
            font-size:clamp(32px,4.6vw,54px); font-weight:800;
            letter-spacing:-1px; line-height:1.15; margin-bottom:18px;
        }
        .subpage-lead { font-size:clamp(16px,2vw,21px); color:var(--gray-300); line-height:1.7; max-width:680px; }

        .subpage-prose { max-width:760px; }
        .subpage-prose p { font-size:16.5px; color:var(--gray-300); line-height:1.85; margin-bottom:18px; }
        .subpage-prose h2 {
            font-family:'Playfair Display', serif; font-size:clamp(24px,3vw,34px);
            font-weight:800; color:var(--white); margin-bottom:18px; letter-spacing:-0.5px;
        }

        .subpage-features { display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:20px; }
        .subpage-feature { padding:28px; }
        .subpage-feature h3 { font-size:18px; font-weight:700; color:var(--white); margin-bottom:10px; }
        .subpage-feature p { font-size:14.5px; color:var(--gray-300); line-height:1.7; }

        .subpage-cta { text-align:center; }
        .subpage-cta .glass-card { max-width:720px; margin:0 auto; padding:48px 36px; }
        .subpage-cta h2 {
            font-family:'Playfair Display', serif; font-size:clamp(24px,3.2vw,36px);
            font-weight:800; margin-bottom:14px; letter-spacing:-0.5px;
        }
        .subpage-cta p { color:var(--gray-300); font-size:16px; line-height:1.7; max-width:540px; margin:0 auto 28px; }

        .related-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:20px; }
        .related-card {
            display:block; padding:26px; background:rgba(20,20,50,0.5);
            border:1px solid rgba(255,255,255,0.06); border-radius:var(--radius-sm);
            transition:transform .25s, border-color .25s;
        }
        .related-card:hover { transform:translateY(-4px); border-color:rgba(0,212,170,0.4); }
        .related-card h3 { font-size:17px; font-weight:700; color:var(--white); margin-bottom:8px; }
        .related-card p { font-size:14px; color:var(--gray-500); line-height:1.6; }
        .related-card .arrow { color:var(--teal); font-weight:700; margin-top:12px; display:inline-block; font-size:14px; }

        /* ── Services : grille Bento (style Apple) ── */
        .svc-bento { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
        .svc-bento-card {
            display:flex; flex-direction:column; padding:30px; text-decoration:none;
            background:linear-gradient(160deg,#15153a,#101030);
            border:1px solid rgba(255,255,255,0.07); border-radius:22px;
            transition:transform .3s cubic-bezier(.2,.7,.3,1), border-color .3s, box-shadow .3s;
        }
        .svc-bento-card:hover {
            transform:translateY(-5px); border-color:rgba(0,212,170,0.32);
            box-shadow:0 20px 50px -20px rgba(0,0,0,0.7), 0 0 0 1px rgba(0,212,170,0.12);
        }
        .svc-bento-card .svc-ic {
            width:54px; height:54px; border-radius:15px; flex-shrink:0; margin-bottom:20px;
            display:flex; align-items:center; justify-content:center; color:var(--teal);
            background:linear-gradient(135deg,rgba(0,212,170,0.22),rgba(0,212,170,0.04));
            border:1px solid rgba(0,212,170,0.18);
        }
        .svc-bento-card .svc-ic svg { width:26px; height:26px; }
        .svc-bento-card h2 {
            font-size:20px; font-weight:700; letter-spacing:-0.02em;
            color:var(--white); margin-bottom:9px;
        }
        .svc-bento-card p { font-size:14.5px; line-height:1.62; color:var(--gray-300); flex:1; }
        .svc-bento-card .arrow {
            margin-top:18px; font-size:13.5px; font-weight:600; color:var(--teal);
        }
        /* carte produit phare : 2×2 */
        .svc-bento-card.flagship {
            grid-column:span 2; grid-row:span 2; padding:38px;
            background:
                radial-gradient(500px 280px at 80% 0%,rgba(0,212,170,0.14),transparent 65%),
                linear-gradient(160deg,#15153a,#101030);
        }
        .svc-bento-card.flagship .svc-ic { width:64px; height:64px; border-radius:18px; margin-bottom:26px; }
        .svc-bento-card.flagship .svc-ic svg { width:32px; height:32px; }
        .svc-bento-card.flagship h2 { font-size:29px; margin-bottom:13px; }
        .svc-bento-card.flagship p { font-size:16px; max-width:92%; flex:none; }
        .svc-bento-card.flagship .svc-flag-points {
            list-style:none; display:grid; grid-template-columns:1fr 1fr;
            gap:13px 20px; margin:24px 0 4px;
        }
        .svc-bento-card.flagship .svc-flag-points li {
            display:flex; align-items:center; gap:9px;
            font-size:14px; font-weight:500; color:var(--white);
        }
        .svc-bento-card.flagship .svc-flag-points svg {
            width:18px; height:18px; color:var(--teal); flex-shrink:0;
        }
        .svc-bento-card .svc-tag {
            align-self:flex-start; font-size:11px; font-weight:700; letter-spacing:0.1em;
            text-transform:uppercase; color:var(--teal); background:var(--teal-glow);
            border:1px solid rgba(0,212,170,0.25); padding:5px 12px; border-radius:30px;
            margin-bottom:18px;
        }
        @media (max-width:880px) {
            .svc-bento { grid-template-columns:repeat(2,1fr); }
            .svc-bento-card.flagship { grid-column:span 2; grid-row:span 1; }
        }
        @media (max-width:560px) {
            .svc-bento { grid-template-columns:1fr; }
            .svc-bento-card.flagship { grid-column:span 1; padding:30px; }
            .svc-bento-card.flagship h2 { font-size:24px; }
        }

        .subpage-section-head { text-align:center; max-width:640px; margin:0 auto 48px; }

        .team-page-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:24px; }
        .team-page-card { padding:36px 32px; text-align:center; display:flex; flex-direction:column; align-items:center; }
        .team-photo {
            width:128px; height:128px; margin:0 auto 20px; border-radius:50%;
            padding:4px; flex-shrink:0;
            background:linear-gradient(135deg, var(--teal), rgba(0,212,170,0.15));
            box-shadow:0 0 0 1px rgba(0,212,170,0.25), 0 8px 24px rgba(0,0,0,0.25);
            transition:transform 0.25s cubic-bezier(0.16,1,0.3,1), box-shadow 0.25s ease;
        }
        .team-photo img {
            width:120px; height:120px; border-radius:50%; object-fit:cover; display:block;
            border:3px solid var(--bg-card-solid);
        }
        .team-page-card:hover .team-photo {
            transform:scale(1.04);
            box-shadow:0 0 0 1px rgba(0,212,170,0.45), 0 0 28px rgba(0,212,170,0.18), 0 8px 24px rgba(0,0,0,0.3);
        }
        .team-page-card h2 { font-size:19px; font-weight:700; color:var(--white); margin-bottom:4px; }
        .team-page-card .role { font-size:13px; color:var(--teal); font-weight:600; letter-spacing:0.3px; margin-bottom:14px; }
        .team-page-card .bio { font-size:14px; color:var(--gray-300); line-height:1.7; margin-bottom:18px; }
        .team-page-card .skills { display:flex; flex-wrap:wrap; gap:8px; justify-content:center; margin-top:auto; }
        .team-page-card .skills span {
            font-size:11px; font-weight:600; letter-spacing:0.2px; line-height:1;
            padding:7px 12px; border-radius:20px;
            color:var(--teal);
            background:var(--teal-glow);
            border:1px solid rgba(0,212,170,0.2);
            backdrop-filter:blur(6px); -webkit-backdrop-filter:blur(6px);
            transition:background 0.2s ease, border-color 0.2s ease;
        }
        .team-page-card:hover .skills span { border-color:rgba(0,212,170,0.35); background:rgba(0,212,170,0.16); }

        .legal-prose { max-width:760px; margin:0 auto; }
        .legal-prose h2 { font-size:18px; font-weight:700; color:var(--teal); margin:28px 0 10px; }
        .legal-prose p { font-size:15px; color:var(--gray-300); line-height:1.8; }

        /* ============== ENRICHED SUB-PAGE COMPONENTS ============== */

        /* --- Service hero image --- */
        .service-hero-img {
            width:100%; aspect-ratio:21/9; object-fit:cover;
            border-radius:var(--radius); margin-bottom:36px;
            border:1px solid rgba(255,255,255,0.06);
        }

        /* --- Feature card icon badge --- */
        .subpage-feature .feat-icon {
            width:44px; height:44px; margin-bottom:16px;
            display:flex; align-items:center; justify-content:center;
            border-radius:var(--radius-sm); background:var(--teal-glow);
            color:var(--teal);
        }
        .subpage-feature .feat-icon svg { width:24px; height:24px; }

        /* --- Pricing comparison table --- */
        .pricing-table {
            display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
            gap:24px; align-items:stretch;
        }
        /* a lone offer : constrained, centred — not stretched full-width */
        .pricing-table--single {
            grid-template-columns:minmax(0,420px);
            justify-content:center;
        }
        .pricing-offer {
            display:flex; flex-direction:column; padding:36px 30px;
            background:rgba(20,20,50,0.5); border:1px solid rgba(255,255,255,0.06);
            border-radius:var(--radius); transition:transform .25s, border-color .25s;
        }
        .pricing-offer:hover { transform:translateY(-5px); border-color:rgba(0,212,170,0.4); }
        .pricing-offer.featured {
            border-color:var(--teal); background:var(--teal-glow);
            box-shadow:0 0 40px rgba(0,212,170,0.08);
        }
        .pricing-offer .offer-badge {
            align-self:flex-start; position:static; font-size:11px; font-weight:700;
            letter-spacing:0.5px; text-transform:uppercase;
            padding:5px 12px; margin-bottom:14px; border-radius:20px;
            background:var(--teal); color:var(--bg);
        }
        .pricing-offer h3 { font-size:19px; font-weight:700; color:var(--white); margin-bottom:8px; }
        .pricing-offer .pricing-price {
            font-family:'Playfair Display',serif; font-size:40px; font-weight:800;
            color:var(--teal); line-height:1.1; margin:6px 0;
        }
        .pricing-offer .pricing-price .pricing-unit {
            font-family:'Inter',sans-serif; font-size:14px; font-weight:600;
            color:var(--gray-500);
        }
        /* "sur devis" / custom-quote price : no number, styled distinctly */
        .pricing-offer .pricing-price.pricing-quote {
            font-size:26px; color:var(--accent);
        }
        .pricing-offer .pricing-desc { font-size:14px; color:var(--gray-300); line-height:1.7; margin-bottom:18px; }
        .pricing-offer .pricing-rows { display:flex; flex-direction:column; gap:10px; flex:1; margin-bottom:24px; }
        .pricing-offer .pricing-row {
            display:flex; gap:10px; align-items:flex-start;
            font-size:14px; color:var(--gray-300); line-height:1.6;
        }
        .pricing-offer .pricing-row::before {
            content:''; flex-shrink:0; width:16px; height:16px; margin-top:2px;
            background:var(--teal-glow); border-radius:50%;
            background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300d4aa' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
            background-size:11px; background-repeat:no-repeat; background-position:center;
        }
        .pricing-offer .btn { margin-top:auto; }

        /* --- Sub-page process timeline (distinct from the homepage .process-timeline) --- */
        .subpage-timeline {
            position:relative; max-width:780px; margin:0 auto;
            display:flex; flex-direction:column; gap:28px;
        }
        .subpage-timeline::before {
            content:''; position:absolute; top:24px; bottom:24px; left:31px;
            width:2px; background:linear-gradient(180deg, var(--teal), var(--accent));
            opacity:0.35;
        }
        .subpage-timeline-step {
            position:relative; display:flex; gap:24px; padding:28px;
            align-items:flex-start;
        }
        .subpage-timeline-step .step-num {
            position:relative; z-index:1; flex-shrink:0;
            width:64px; height:64px; display:flex; align-items:center; justify-content:center;
            font-family:'Playfair Display',serif; font-size:30px; font-weight:800;
            color:var(--bg); background:linear-gradient(135deg, var(--teal), var(--teal-dark));
            border-radius:50%; box-shadow:0 0 0 6px var(--bg-light);
        }
        .subpage-timeline-step .step-body { flex:1; }
        .subpage-timeline-step .step-icon {
            width:34px; height:34px; margin-bottom:10px;
            display:flex; align-items:center; justify-content:center;
            color:var(--teal);
        }
        .subpage-timeline-step .step-icon svg { width:24px; height:24px; }
        .subpage-timeline-step h2 { font-size:19px; font-weight:700; color:var(--white); margin-bottom:8px; }
        .subpage-timeline-step p { font-size:15px; color:var(--gray-300); line-height:1.7; }

        /* --- Credibility metrics band --- */
        .metrics-band {
            display:grid; grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
            gap:24px; padding:40px 32px; text-align:center;
        }
        .metric { display:flex; flex-direction:column; gap:6px; }
        .metric .metric-number {
            font-family:'Playfair Display',serif; font-size:clamp(34px,4vw,46px);
            font-weight:800; color:var(--teal); line-height:1;
        }
        .metric .metric-label {
            font-size:13px; color:var(--gray-300); letter-spacing:0.3px;
            text-transform:uppercase;
        }

        @media(max-width:768px){
            .service-hero-img { aspect-ratio:16/9; margin-bottom:28px; }
            .subpage-timeline::before { left:23px; }
            .subpage-timeline-step { gap:18px; padding:24px; }
            .subpage-timeline-step .step-num { width:48px; height:48px; font-size:23px; }
            .metrics-band { padding:32px 24px; gap:20px; }
        }
        @media(max-width:480px){
            .service-hero-img { aspect-ratio:4/3; }
            .pricing-table { grid-template-columns:1fr; }
            .pricing-offer { padding:30px 24px; }
            .subpage-timeline::before { display:none; }
            .subpage-timeline-step {
                flex-direction:column; gap:14px; padding:22px;
            }
            .subpage-timeline-step .step-num { box-shadow:none; }
            .metrics-band { grid-template-columns:repeat(2,1fr); }
        }

        @media(max-width:600px){
            .subpage-hero { padding:120px 0 24px; }
        }

        /* ============== REDUCED MOTION ============== */
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration:0.001ms !important;
                animation-iteration-count:1 !important;
                transition-duration:0.001ms !important;
                scroll-behavior:auto !important;
            }
            .svc-bento-card:hover, .pricing-offer:hover,
            .subpage-timeline-step:hover, .related-card:hover,
            .glass-card:hover { transform:none; }
            .team-page-card:hover .team-photo { transform:none; }
        }
        .faq-list { max-width:760px; margin:0 auto; display:flex; flex-direction:column; gap:14px; }
        .faq-item { background:rgba(20,20,50,0.5); border:1px solid rgba(255,255,255,0.06); border-radius:var(--radius-sm); overflow:hidden; }
        .faq-item summary {
            cursor:pointer; padding:20px 24px; font-size:16px; font-weight:600;
            color:var(--white); list-style:none; display:flex;
            justify-content:space-between; gap:16px; align-items:center;
            transition:color .2s;
        }
        .faq-item summary::-webkit-details-marker { display:none; }
        .faq-item summary::after {
            content:'+'; color:var(--teal); font-size:24px; font-weight:300;
            flex-shrink:0; transition:transform .25s;
        }
        .faq-item[open] summary::after { transform:rotate(45deg); }
        .faq-item summary:hover { color:var(--teal); }
        .faq-item .faq-answer { padding:0 24px 20px; font-size:15px; color:var(--gray-300); line-height:1.75; }

        /* --- Stripe payment link (process page collab card) --- */
        .stripe-link {
            display:inline-flex; align-items:center; gap:10px;
            margin-top:18px; font-size:14px; font-weight:600;
            color:var(--teal); text-decoration:none;
            transition:color .2s ease;
        }
        .stripe-link .stripe-logo {
            width:26px; height:26px; flex-shrink:0;
            color:var(--white); transition:color .2s ease;
        }
        .stripe-link:hover { color:var(--white); }
        .stripe-link:hover .stripe-logo { color:#635BFF; }

