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

        :root {
            --navy: #060c1a;
            --navy-mid: #0c1425;
            --navy-light: #131d35;
            --blue: #3b82f6;
            --blue-glow: rgba(59,130,246,0.4);
            --orange: #f59e0b;
            --orange-glow: rgba(245,158,11,0.4);
            --green: #10b981;
            --white: #ffffff;
            --gray-50: #f8fafc;
            --gray-100: #f1f5f9;
            --gray-200: #e2e8f0;
            --gray-300: #cbd5e1;
            --gray-400: #94a3b8;
            --gray-500: #64748b;
            --gray-600: #475569;
            --gray-700: #334155;
            --gray-900: #0f172a;
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--gray-900);
            line-height: 1.6;
            overflow-x: hidden;
            background: var(--navy);
        }

        /* ACCESSIBILITY — prefers-reduced-motion */
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
        }

        /* ACCESSIBILITY — keyboard focus */
        :focus-visible {
            outline: 2px solid var(--orange);
            outline-offset: 3px;
            border-radius: 2px;
        }

        /* ACCESSIBILITY — skip link */
        .skip-link {
            position: absolute; left: -9999px; top: 0;
            background: var(--orange); color: var(--navy);
            padding: 12px 20px; font-weight: 700;
            z-index: 10002; border-radius: 0 0 8px 0;
            text-decoration: none;
        }
        .skip-link:focus { left: 0; }

        /* ACCESSIBILITY — mobile panel close button */
        .mobile-panel-close {
            position: absolute; top: 16px; right: 16px;
            background: none; border: none; color: var(--gray-300);
            font-size: 1.8rem; cursor: pointer; padding: 8px;
            line-height: 1; transition: color 0.3s;
        }
        .mobile-panel-close:hover { color: var(--orange); }

        /* ANIMATIONS */
        @keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }
        @keyframes pulse-glow { 0%,100% { opacity: 0.4; } 50% { opacity: 0.8; } }
        @keyframes slide-up { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
        @keyframes slide-in-left { from { opacity: 0; transform: translateX(-40px); } to { opacity: 1; transform: translateX(0); } }
        @keyframes gradient-shift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
        @keyframes shimmer { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }

        .fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
        .fade-in.visible { opacity: 1; transform: translateY(0); }
        .fade-in-delay-1 { transition-delay: 0.1s; }
        .fade-in-delay-2 { transition-delay: 0.2s; }
        .fade-in-delay-3 { transition-delay: 0.3s; }

        /* NAV */
        nav {
            position: fixed; top: 0; width: 100%; z-index: 1000;
            background: rgba(6, 12, 26, 0.7);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border-bottom: 1px solid rgba(255,255,255,0.05);
            transition: all 0.3s ease;
        }
        nav.scrolled { background: rgba(6, 12, 26, 0.95); }
        .nav-inner {
            max-width: 1200px; margin: 0 auto;
            display: flex; align-items: center; justify-content: space-between;
            padding: 18px 32px;
        }
        .logo {
            font-size: 1.4rem; font-weight: 900; color: var(--white);
            text-decoration: none; letter-spacing: -0.5px;
            display: flex; align-items: center; gap: 3px;
        }
        .logo-icon {
            width: 36px; height: 36px;
            margin-right: 10px;
            flex-shrink: 0;
        }
        .logo-icon svg { width: 100%; height: 100%; }
        .footer-brand .logo-icon { width: 32px; height: 32px; }
        .logo span { color: var(--orange); }
        .nav-links { display: flex; gap: 36px; align-items: center; }
        .nav-links a {
            color: var(--gray-400); text-decoration: none; font-size: 0.88rem;
            font-weight: 500; transition: color 0.3s; position: relative;
        }
        .nav-links a::after {
            content: ''; position: absolute; bottom: -4px; left: 0; width: 0;
            height: 2px; background: var(--orange); transition: width 0.3s;
        }
        .nav-links a:hover { color: var(--white); }
        .nav-links a:hover::after { width: 100%; }
        .nav-cta {
            background: var(--orange) !important; color: var(--navy) !important;
            padding: 10px 24px !important; border-radius: 8px;
            font-weight: 700 !important; transition: all 0.3s !important;
            box-shadow: 0 0 20px rgba(245,158,11,0.2);
        }
        .nav-cta::after { display: none !important; }
        .nav-cta:hover { background: #fbbf24 !important; transform: translateY(-1px); box-shadow: 0 4px 25px rgba(245,158,11,0.4) !important; }

        /* HERO */
        .hero {
            min-height: 100vh; display: flex; align-items: center;
            background: var(--navy);
            padding: 140px 32px 80px;
            position: relative; overflow: hidden;
        }
        .hero-bg {
            position: absolute; inset: 0; z-index: 0;
        }
        .hero-orb {
            position: absolute; border-radius: 50%; filter: blur(100px);
            animation: pulse-glow 6s ease-in-out infinite;
        }
        .hero-orb-1 {
            width: 600px; height: 600px; top: -10%; right: -5%;
            background: radial-gradient(circle, rgba(59,130,246,0.12), transparent 70%);
        }
        .hero-orb-2 {
            width: 500px; height: 500px; bottom: -15%; left: -10%;
            background: radial-gradient(circle, rgba(245,158,11,0.08), transparent 70%);
            animation-delay: 3s;
        }
        .hero-orb-3 {
            width: 300px; height: 300px; top: 40%; left: 50%;
            background: radial-gradient(circle, rgba(16,185,129,0.06), transparent 70%);
            animation-delay: 1.5s;
        }
        .hero-grid {
            position: absolute; inset: 0;
            background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
                              linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
            background-size: 60px 60px;
            mask-image: radial-gradient(ellipse at 50% 50%, black 20%, transparent 70%);
            -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 20%, transparent 70%);
        }
        .hero-content {
            position: relative; z-index: 2; max-width: 820px; margin: 0 auto; text-align: center;
        }
        .hero-badge {
            display: inline-flex; align-items: center; gap: 8px;
            background: rgba(59,130,246,0.1);
            border: 1px solid rgba(59,130,246,0.2);
            color: var(--blue); font-size: 0.82rem; font-weight: 600;
            padding: 8px 20px; border-radius: 50px; margin-bottom: 28px;
            backdrop-filter: blur(10px);
            animation: slide-up 0.8s ease forwards;
        }
        .hero-badge-dot {
            width: 6px; height: 6px; border-radius: 50%;
            background: var(--green); box-shadow: 0 0 8px var(--green);
            animation: pulse-glow 2s ease-in-out infinite;
        }
        .hero h1 {
            font-size: clamp(2.8rem, 6vw, 4.5rem); font-weight: 900;
            color: var(--white); line-height: 1.05; margin-bottom: 24px;
            letter-spacing: -2px;
            animation: slide-up 0.8s ease 0.1s both;
        }
        .hero h1 .highlight {
            background: linear-gradient(135deg, var(--orange), #fbbf24, var(--orange));
            background-size: 200% auto;
            -webkit-background-clip: text; -webkit-text-fill-color: transparent;
            animation: gradient-shift 4s ease infinite;
        }
        .hero p {
            font-size: 1.2rem; color: var(--gray-400);
            max-width: 580px; margin: 0 auto 40px; line-height: 1.8;
            animation: slide-up 0.8s ease 0.2s both;
        }
        .hero-buttons {
            display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
            animation: slide-up 0.8s ease 0.3s both;
        }
        .btn-primary {
            background: linear-gradient(135deg, var(--orange), #f59e0b);
            color: var(--navy); padding: 16px 38px; border-radius: 12px;
            text-decoration: none; font-weight: 700; font-size: 1.05rem;
            transition: all 0.3s; display: inline-flex; align-items: center; gap: 8px;
            box-shadow: 0 4px 25px rgba(245,158,11,0.25);
            position: relative; overflow: hidden;
        }
        .btn-primary::before {
            content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }
        .btn-primary:hover::before { left: 100%; }
        .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 40px rgba(245,158,11,0.4); }
        .btn-secondary {
            background: rgba(255,255,255,0.05); color: var(--white);
            padding: 16px 38px; border-radius: 12px; text-decoration: none;
            font-weight: 600; font-size: 1.05rem; transition: all 0.3s;
            border: 1px solid rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
        }
        .btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); transform: translateY(-2px); }

        /* SOCIAL PROOF BAR */
        .social-proof-text {
            margin-top: 60px; text-align: center;
            font-size: 0.9rem; color: var(--gray-400);
            animation: slide-up 0.8s ease 0.5s both;
        }

        /* STATS BAR */
        .stats-bar {
            background: var(--navy-mid);
            border-top: 1px solid rgba(255,255,255,0.05);
            border-bottom: 1px solid rgba(255,255,255,0.05);
            padding: 50px 32px;
        }
        .stats-inner {
            max-width: 1100px; margin: 0 auto;
            display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
            text-align: center;
        }
        .stat-item { position: relative; }
        .stat-item::after {
            content: ''; position: absolute; right: 0; top: 10%; height: 80%;
            width: 1px; background: rgba(255,255,255,0.06);
        }
        .stat-item:last-child::after { display: none; }
        .stat-number {
            font-size: 2.6rem; font-weight: 900; letter-spacing: -1px;
            background: linear-gradient(135deg, var(--white), var(--gray-300));
            -webkit-background-clip: text; -webkit-text-fill-color: transparent;
        }
        .stat-label { font-size: 0.82rem; color: var(--gray-400); margin-top: 6px; font-weight: 500; }

        /* SECTIONS */
        section { padding: 120px 32px; }
        .section-inner { max-width: 1100px; margin: 0 auto; }
        .section-label {
            font-size: 0.78rem; font-weight: 700; color: var(--blue);
            text-transform: uppercase; letter-spacing: 3px; margin-bottom: 14px;
            display: flex; align-items: center; gap: 12px;
        }
        .section-label::before {
            content: ''; width: 24px; height: 2px; background: currentColor;
        }
        .section-title {
            font-size: clamp(2rem, 4vw, 3rem); font-weight: 900;
            line-height: 1.1; margin-bottom: 16px; letter-spacing: -1.5px;
        }
        .section-subtitle {
            font-size: 1.1rem; color: var(--gray-400);
            max-width: 560px; margin-bottom: 56px; line-height: 1.7;
        }

        /* INDUSTRIES */
        .industries { background: var(--navy); color: var(--white); position: relative; overflow: hidden; }
        .industries::before {
            content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
            background: radial-gradient(ellipse at 80% 20%, rgba(59,130,246,0.06), transparent 60%);
        }
        .industries .section-label { color: var(--orange); }
        .industries .section-subtitle { color: var(--gray-400); }
        .industries-grid {
            display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
            position: relative;
        }
        .industry-card {
            background: rgba(255,255,255,0.03);
            border-radius: 16px; padding: 32px 20px;
            border: 1px solid rgba(255,255,255,0.06);
            text-align: center; transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            cursor: default; position: relative; overflow: hidden;
        }
        .industry-card::before {
            content: ''; position: absolute; inset: 0;
            background: linear-gradient(135deg, rgba(245,158,11,0.1), rgba(59,130,246,0.05));
            opacity: 0; transition: opacity 0.4s;
        }
        .industry-card:hover::before { opacity: 1; }
        .industry-card:hover {
            border-color: rgba(245,158,11,0.3);
            transform: translateY(-6px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 40px rgba(245,158,11,0.05);
        }
        .industry-icon {
            width: 48px; height: 48px; margin: 0 auto 14px;
            display: flex; align-items: center; justify-content: center;
            position: relative; z-index: 1;
            background: rgba(245, 158, 11, 0.08);
            border-radius: 12px;
            border: 1px solid rgba(245, 158, 11, 0.12);
            transition: all 0.4s;
        }
        .industry-card:hover .industry-icon {
            background: rgba(245, 158, 11, 0.15);
            border-color: rgba(245, 158, 11, 0.25);
        }
        .industry-icon svg {
            width: 24px; height: 24px;
            color: var(--orange);
            stroke-width: 1.5;
        }
        .industry-card h3 { font-size: 0.85rem; font-weight: 600; position: relative; z-index: 1; }

        /* PROBLEM SECTION */
        .problem { background: var(--navy-mid); color: var(--white); }
        .problem .section-subtitle { color: var(--gray-400); }
        .problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
        .problem-card {
            background: rgba(255,255,255,0.03); border-radius: 20px; padding: 40px 32px;
            border: 1px solid rgba(255,255,255,0.06); transition: all 0.4s;
            position: relative; overflow: hidden;
        }
        .problem-card::after {
            content: ''; position: absolute; top: 0; left: 0; right: 0;
            height: 3px; background: linear-gradient(90deg, var(--blue), var(--orange));
            opacity: 0; transition: opacity 0.4s;
        }
        .problem-card:hover { border-color: rgba(255,255,255,0.12); transform: translateY(-4px); }
        .problem-card:hover::after { opacity: 1; }
        .problem-icon {
            width: 56px; height: 56px; border-radius: 14px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.5rem; margin-bottom: 20px;
        }
        .problem-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; color: var(--white); }
        .problem-card p { color: var(--gray-400); font-size: 0.92rem; line-height: 1.7; }

        /* SERVICES */
        .services { background: var(--navy); color: var(--white); }
        .services .section-subtitle { color: var(--gray-400); }
        .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
        .service-card {
            background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
            border-radius: 20px; padding: 40px 32px;
            border: 1px solid rgba(255,255,255,0.06);
            position: relative; overflow: hidden; transition: all 0.4s;
        }
        .service-card::before {
            content: ''; position: absolute; top: 0; left: 0; right: 0;
            height: 3px; background: linear-gradient(90deg, var(--blue), var(--orange));
            transform: scaleX(0); transform-origin: left; transition: transform 0.4s;
        }
        .service-card:hover::before { transform: scaleX(1); }
        .service-card:hover { border-color: rgba(255,255,255,0.12); }
        .service-number {
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.75rem; font-weight: 500; color: var(--blue);
            background: rgba(59,130,246,0.1); padding: 4px 12px;
            border-radius: 6px; display: inline-block; margin-bottom: 20px;
            border: 1px solid rgba(59,130,246,0.15);
        }
        .service-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 10px; color: var(--white); }
        .service-card > p { color: var(--gray-400); font-size: 0.92rem; margin-bottom: 20px; line-height: 1.6; }
        .service-list { list-style: none; }
        .service-list li {
            padding: 7px 0; color: var(--gray-300); font-size: 0.88rem;
            display: flex; align-items: center; gap: 10px;
        }
        .service-list li::before {
            content: ''; width: 18px; height: 18px; border-radius: 50%;
            background: rgba(16,185,129,0.1); flex-shrink: 0;
            display: flex; align-items: center; justify-content: center;
            border: 1px solid rgba(16,185,129,0.2);
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 13l4 4L19 7' stroke='%2310b981' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
            background-size: 12px; background-repeat: no-repeat; background-position: center;
        }

        /* PRICING */
        .pricing { background: var(--navy-mid); color: var(--white); padding: 100px 32px; position: relative; }
        .pricing .section-label { color: var(--orange); }
        .pricing .section-subtitle { color: var(--gray-400); }
        .pricing-grid {
            display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
            max-width: 1100px; margin: 40px auto 0; position: relative;
        }
        .pricing-card {
            background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 20px; padding: 40px 32px 32px;
            display: flex; flex-direction: column;
            transition: all 0.4s; position: relative;
        }
        .pricing-card:hover { border-color: rgba(255,255,255,0.12); transform: translateY(-4px); }
        .pricing-card.featured {
            border-color: rgba(245,158,11,0.35);
            box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 40px rgba(245,158,11,0.08);
        }
        .pricing-badge {
            position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
            background: var(--orange); color: var(--navy);
            font-size: 0.7rem; font-weight: 800; letter-spacing: 1.5px;
            padding: 6px 14px; border-radius: 999px;
            text-transform: uppercase; white-space: nowrap;
        }
        .pricing-tier-name {
            font-size: 0.8rem; font-weight: 700; letter-spacing: 2px;
            text-transform: uppercase; color: var(--orange); margin-bottom: 14px;
        }
        .pricing-price {
            font-size: 2.8rem; font-weight: 900; color: var(--white);
            letter-spacing: -1px; line-height: 1;
        }
        .pricing-price-period {
            font-size: 1rem; font-weight: 500; color: var(--gray-400);
            letter-spacing: normal; margin-left: 4px;
        }
        .pricing-tagline {
            font-size: 0.9rem; color: var(--gray-400); line-height: 1.5;
            margin: 10px 0 24px; padding-bottom: 22px;
            border-bottom: 1px solid rgba(255,255,255,0.06);
        }
        .pricing-features { list-style: none; flex: 1; margin-bottom: 12px; }
        .pricing-features li {
            padding: 7px 0; color: var(--gray-300); font-size: 0.9rem;
            display: flex; align-items: flex-start; gap: 10px; line-height: 1.55;
        }
        .pricing-features li::before {
            content: ''; width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0;
            background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.2);
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 13l4 4L19 7' stroke='%2310b981' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
            background-size: 12px; background-repeat: no-repeat; background-position: center;
            margin-top: 3px;
        }
        .pricing-cta {
            text-align: center; margin-top: 48px;
            font-size: 0.95rem; color: var(--gray-300);
        }
        .pricing-cta a {
            color: var(--orange); text-decoration: none; font-weight: 600;
            border-bottom: 1px solid rgba(245,158,11,0.3);
            padding-bottom: 2px; transition: border-color 0.2s;
        }
        .pricing-cta a:hover { border-color: var(--orange); }
        @media (max-width: 768px) {
            .pricing-grid { grid-template-columns: 1fr; }
        }

        /* RESULTS */
        .results { background: var(--navy-mid); color: var(--white); position: relative; }
        .results::before {
            content: ''; position: absolute; inset: 0;
            background: radial-gradient(ellipse at 20% 80%, rgba(245,158,11,0.04), transparent 60%);
        }
        .results .section-label { color: var(--orange); }
        .results .section-subtitle { color: var(--gray-400); }
        .results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; }
        .result-card {
            background: rgba(255,255,255,0.03); border-radius: 20px; padding: 36px;
            border: 1px solid rgba(255,255,255,0.06); transition: all 0.4s;
            position: relative; overflow: hidden;
        }
        .result-card:hover { border-color: rgba(255,255,255,0.12); transform: translateY(-4px); }
        .result-tag {
            display: inline-block; font-size: 0.7rem; font-weight: 700;
            text-transform: uppercase; letter-spacing: 1.5px; padding: 5px 12px;
            border-radius: 6px; margin-bottom: 16px;
        }
        .result-metric {
            font-size: 2.8rem; font-weight: 900; letter-spacing: -1px;
            background: linear-gradient(135deg, var(--orange), #fbbf24);
            -webkit-background-clip: text; -webkit-text-fill-color: transparent;
        }
        .result-metric-sub {
            font-size: 1.1rem; font-weight: 600;
            color: var(--gray-400);
            margin-top: -8px; letter-spacing: normal;
        }
        .result-card h3 { font-size: 1.05rem; font-weight: 600; margin: 10px 0; color: var(--white); }
        .result-card p { color: var(--gray-400); font-size: 0.88rem; line-height: 1.7; }
        .result-source {
            display: block;
            margin-top: 16px;
            padding-top: 12px;
            border-top: 1px solid rgba(255,255,255,0.06);
            font-size: 0.72rem;
            color: var(--gray-500);
            font-style: normal;
            letter-spacing: 0.5px;
        }
        .results-disclaimer {
            color: var(--gray-400); font-size: 0.8rem; text-align: center;
            margin: 40px auto 0; max-width: 700px;
        }

        /* PROCESS */
        .process { background: var(--navy); color: var(--white); }
        .process .section-subtitle { color: var(--gray-400); }
        .process-steps {
            display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
            position: relative;
        }
        .process-steps::before {
            content: ''; position: absolute; top: 36px; left: 10%; right: 10%;
            height: 2px; background: linear-gradient(90deg, var(--blue), var(--orange), var(--green));
            opacity: 0.3;
        }
        .step {
            text-align: center; padding: 0 20px; position: relative;
        }
        .step-number {
            width: 72px; height: 72px; border-radius: 20px;
            background: linear-gradient(135deg, rgba(59,130,246,0.15), rgba(59,130,246,0.05));
            border: 1px solid rgba(59,130,246,0.2);
            display: flex; align-items: center; justify-content: center;
            font-family: 'JetBrains Mono', monospace;
            font-size: 1.4rem; font-weight: 700; color: var(--blue);
            margin: 0 auto 20px; position: relative; z-index: 2;
            transition: all 0.4s;
        }
        .step:hover .step-number {
            background: linear-gradient(135deg, var(--blue), var(--orange));
            color: var(--white); border-color: transparent;
            box-shadow: 0 8px 30px rgba(59,130,246,0.3);
            transform: translateY(-4px);
        }
        .step h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: var(--white); }
        .step p { color: var(--gray-400); font-size: 0.88rem; line-height: 1.6; }

        /* CTA */
        .cta {
            background: var(--navy-mid); position: relative; overflow: hidden;
            text-align: center; padding: 120px 32px;
        }
        .cta::before {
            content: ''; position: absolute; inset: 0;
            background: radial-gradient(ellipse at 50% 50%, rgba(245,158,11,0.06), transparent 60%),
                        radial-gradient(ellipse at 30% 30%, rgba(59,130,246,0.04), transparent 50%);
        }
        .cta-content { position: relative; z-index: 2; }
        .cta h2 {
            font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 900;
            color: var(--white); margin-bottom: 16px; letter-spacing: -1.5px;
        }
        .cta p { color: var(--gray-400); font-size: 1.1rem; max-width: 520px; margin: 0 auto 40px; line-height: 1.7; }
        .cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
        .cta-phone {
            background: linear-gradient(135deg, var(--orange), #fbbf24);
            color: var(--navy); padding: 18px 44px; border-radius: 14px;
            text-decoration: none; font-weight: 700; font-size: 1.15rem;
            transition: all 0.3s; display: inline-flex; align-items: center; gap: 10px;
            box-shadow: 0 4px 30px rgba(245,158,11,0.25);
        }
        .cta-phone:hover { transform: translateY(-3px); box-shadow: 0 8px 40px rgba(245,158,11,0.4); }
        .cta-email {
            background: rgba(255,255,255,0.06); color: var(--white);
            padding: 18px 44px; border-radius: 14px; text-decoration: none;
            font-weight: 600; font-size: 1.05rem; transition: all 0.3s;
            border: 1px solid rgba(255,255,255,0.1);
        }
        .cta-email:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }
        .cta-note { color: var(--gray-400); font-size: 0.82rem; margin-top: 16px; }
        .risk-reversal {
            display: inline-flex; justify-content: center; flex-wrap: wrap;
            gap: 32px; margin-bottom: 32px;
            font-size: 0.9rem; color: var(--gray-300);
        }
        .risk-reversal-item { display: inline-flex; align-items: baseline; gap: 6px; }
        .risk-reversal-check { color: var(--orange); font-weight: 900; font-size: 1rem; }
        .cta-fine-print { color: var(--gray-400); font-size: 0.78rem; margin-top: 8px; line-height: 1.5; }

        /* AUDIT FORM */
        .audit-form {
            max-width: 480px; margin: 40px auto 0; text-align: left;
        }
        .audit-form .form-row {
            display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px;
        }
        .audit-form .form-row.full { grid-template-columns: 1fr; }
        .audit-form input {
            width: 100%; padding: 14px 18px; border-radius: 10px;
            border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.05);
            color: var(--white); font-size: 0.95rem; font-family: 'Inter', sans-serif;
            transition: border-color 0.3s, box-shadow 0.3s; outline: none;
        }
        .audit-form input::placeholder { color: var(--gray-400); }
        .audit-form input:focus {
            border-color: var(--orange); box-shadow: 0 0 0 3px rgba(245,158,11,0.15);
        }
        .audit-form .form-submit {
            width: 100%; padding: 16px; border: none; border-radius: 12px; cursor: pointer;
            background: linear-gradient(135deg, var(--orange), #fbbf24);
            color: var(--navy); font-weight: 700; font-size: 1.1rem;
            font-family: 'Inter', sans-serif; transition: all 0.3s;
            box-shadow: 0 4px 30px rgba(245,158,11,0.25); margin-top: 6px;
        }
        .audit-form .form-submit:hover {
            transform: translateY(-3px); box-shadow: 0 8px 40px rgba(245,158,11,0.4);
        }
        .audit-form .form-submit:active { transform: scale(0.97); }
        .form-divider {
            display: flex; align-items: center; gap: 16px;
            margin: 30px auto; max-width: 480px; color: var(--gray-400); font-size: 0.85rem;
        }
        .form-divider::before, .form-divider::after {
            content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.1);
        }
        .form-success {
            display: none; text-align: center; padding: 30px;
            background: rgba(16,185,129,0.08); border: 1px solid rgba(16,185,129,0.25);
            border-radius: 14px; max-width: 480px; margin: 30px auto 0;
        }
        .form-success h3 { color: var(--green); font-size: 1.3rem; margin-bottom: 8px; }
        .form-success p { color: var(--gray-400); font-size: 0.95rem; }
        @media (max-width: 600px) {
            .audit-form .form-row { grid-template-columns: 1fr; }
        }
        .hp-field { position: absolute; left: -9999px; }

        /* ABOUT */
        .about { background: var(--navy-mid); color: var(--white); padding: 100px 32px; }
        .about .section-label { color: var(--orange); }
        .about .section-subtitle { color: var(--gray-400); }
        .about-grid {
            display: grid; grid-template-columns: 280px 1fr; gap: 56px;
            max-width: 960px; margin: 40px auto 0; align-items: center;
        }
        .about-avatar {
            width: 240px; height: 240px; border-radius: 50%;
            background: linear-gradient(135deg, var(--orange), var(--navy));
            display: flex; align-items: center; justify-content: center;
            box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 40px rgba(245,158,11,0.1);
            overflow: hidden;
        }
        .about-avatar img {
            width: 100%; height: 100%;
            border-radius: 50%;
            object-fit: cover;
            object-position: center top;
            display: block;
        }
        .about-content p {
            color: var(--gray-300); font-size: 1rem; line-height: 1.8;
            margin-bottom: 18px;
        }
        .about-content p:last-child { margin-bottom: 0; }
        @media (max-width: 768px) {
            .about-grid { grid-template-columns: 1fr; gap: 32px; justify-items: center; text-align: center; }
            .about-avatar { width: 180px; height: 180px; font-size: 3rem; }
        }

        /* FAQ */
        .faq { background: var(--navy-mid); padding: 100px 32px; }
        .faq-grid { max-width: 720px; margin: 0 auto; }
        .faq-item {
            border-bottom: 1px solid rgba(255,255,255,0.06);
        }
        .faq-question {
            width: 100%; background: none; border: none; color: var(--white);
            font-size: 1.05rem; font-weight: 600; text-align: left; padding: 24px 0;
            cursor: pointer; display: flex; justify-content: space-between; align-items: center;
            font-family: 'Inter', sans-serif; transition: color 0.3s; gap: 16px;
        }
        .faq-question:hover { color: var(--orange); }
        .faq-icon {
            color: var(--orange); font-size: 1.4rem; font-weight: 300;
            transition: transform 0.3s; flex-shrink: 0;
        }
        .faq-item.open .faq-icon { transform: rotate(45deg); }
        .faq-answer {
            max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease;
        }
        .faq-item.open .faq-answer { max-height: 300px; padding-bottom: 24px; }
        .faq-answer p {
            color: var(--gray-400); font-size: 0.95rem; line-height: 1.75;
        }

        /* FOOTER */
        footer {
            background: var(--navy); color: var(--gray-400);
            padding: 60px 32px 40px; border-top: 1px solid rgba(255,255,255,0.05);
        }
        .footer-inner {
            max-width: 1100px; margin: 0 auto;
            display: flex; justify-content: space-between; align-items: center;
            flex-wrap: wrap; gap: 24px;
        }
        .footer-brand .logo { font-size: 1.2rem; margin-bottom: 8px; display: inline-block; }
        .footer-brand p { font-size: 0.82rem; color: var(--gray-400); max-width: 320px; line-height: 1.6; }
        .footer-links { display: flex; gap: 32px; }
        .footer-links a {
            color: var(--gray-400); text-decoration: none; font-size: 0.85rem;
            transition: color 0.3s; font-weight: 500;
        }
        .footer-links a:hover { color: var(--white); }
        .footer-areas {
            max-width: 1100px; margin: 32px auto 0; padding-top: 24px;
            border-top: 1px solid rgba(255,255,255,0.06);
            display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
            gap: 8px 24px;
            font-size: 0.82rem;
        }
        .footer-areas-label {
            font-size: 0.72rem; font-weight: 700;
            text-transform: uppercase; letter-spacing: 1.5px;
            color: var(--gray-400);
        }
        .footer-areas a { color: var(--gray-400); text-decoration: none; transition: color 0.3s; }
        .footer-areas a:hover { color: var(--orange); }
        .footer-bottom {
            max-width: 1100px; margin: 40px auto 0;
            padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.05);
            display: flex; justify-content: space-between; align-items: center;
            font-size: 0.78rem; color: var(--gray-400);
        }

        /* MOBILE */
        @media (max-width: 1024px) {
            .industries-grid { grid-template-columns: repeat(2, 1fr); }
            .process-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
            .process-steps::before { display: none; }
        }
        @media (max-width: 768px) {
            .nav-links { display: none; }
            .nav-inner { padding: 16px 20px; }
            .hero { padding: 130px 20px 60px; min-height: auto; }
            .hero h1 { font-size: 2.4rem; letter-spacing: -1px; }
            .hero p { font-size: 1.05rem; }
            section { padding: 80px 20px; }
            .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
            .stat-item::after { display: none; }
            .industries-grid { grid-template-columns: 1fr; }
            .problem-grid { grid-template-columns: 1fr; }
            .services-grid { grid-template-columns: 1fr; }
            .results-grid { grid-template-columns: 1fr; }
            .process-steps { grid-template-columns: 1fr; }
            .footer-inner { flex-direction: column; text-align: center; }
            .footer-links { flex-wrap: wrap; justify-content: center; }
            .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
            .cta-buttons { flex-direction: column; align-items: center; }
            .risk-reversal { flex-direction: column; gap: 12px; align-items: center; }
        }

        /* HAMBURGER MOBILE */
        .mobile-menu-btn {
            display: none; background: none; border: none; cursor: pointer;
            width: 32px; height: 24px; position: relative; z-index: 1001;
        }
        .mobile-menu-btn span {
            display: block; width: 100%; height: 2px; background: var(--white);
            border-radius: 2px; transition: all 0.3s;
            position: absolute; left: 0;
        }
        .mobile-menu-btn span:nth-child(1) { top: 0; }
        .mobile-menu-btn span:nth-child(2) { top: 50%; transform: translateY(-50%); }
        .mobile-menu-btn span:nth-child(3) { bottom: 0; }
        @media (max-width: 768px) {
            .mobile-menu-btn { display: block; }
        }

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


        /* CUSTOM SCROLLBAR */
        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: var(--navy); }
        ::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, var(--orange), #d97706);
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover { background: #fbbf24; }



        /* ANIMATED GRADIENT BORDERS */
        @keyframes border-flow {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        .service-card:hover, .result-card:hover, .problem-card:hover {
            border-image: linear-gradient(135deg, var(--orange), var(--blue), var(--orange)) 1;
            border-image-slice: 1;
        }

        /* MOBILE SLIDE MENU */
        .mobile-overlay {
            position: fixed; inset: 0; z-index: 999;
            background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
            opacity: 0; visibility: hidden; transition: all 0.3s;
        }
        .mobile-overlay.open { opacity: 1; visibility: visible; }
        .mobile-panel {
            position: fixed; top: 0; right: -300px; width: 280px;
            height: 100vh; z-index: 1000;
            background: var(--navy-mid);
            border-left: 1px solid rgba(255,255,255,0.06);
            padding: 80px 32px 32px;
            transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            display: flex; flex-direction: column; gap: 0;
        }
        .mobile-panel.open { right: 0; }
        .mobile-panel a {
            color: var(--gray-300); text-decoration: none;
            font-size: 1.1rem; font-weight: 600; padding: 16px 0;
            border-bottom: 1px solid rgba(255,255,255,0.05);
            transition: color 0.3s, padding-left 0.3s;
        }
        .mobile-panel a:hover { color: var(--orange); padding-left: 8px; }
        .mobile-panel .nav-cta-mobile {
            background: var(--orange); color: var(--navy); text-align: center;
            padding: 14px 24px; border-radius: 10px; margin-top: 24px;
            font-weight: 700; border: none;
        }

        /* SECTION TITLE GRADIENT */
        .section-title {
            color: var(--white);
            background: linear-gradient(135deg, var(--white) 0%, var(--gray-300) 50%, var(--white) 100%);
            background-size: 200% auto;
            -webkit-background-clip: text; -webkit-text-fill-color: transparent;
        }

        /* STAT NUMBER COUNTER */
        .stat-number {
            font-family: 'JetBrains Mono', monospace;
        }


        /* ENHANCED HOVER STATES */
        .btn-primary { position: relative; }
        .btn-primary:active { transform: scale(0.97); }
        .btn-secondary:active { transform: scale(0.97); }

        /* STEP CONNECTOR DOTS */
        .step::after {
            content: ''; position: absolute; right: -4px; top: 36px;
            width: 8px; height: 8px; border-radius: 50%;
            background: var(--orange); opacity: 0.4;
        }
        .step:last-child::after { display: none; }
        @media (max-width: 1024px) { .step::after { display: none; } }
        /* COOKIE CONSENT BANNER */
        .cookie-banner {
            position: fixed; bottom: 0; left: 0; right: 0;
            background: var(--navy-mid);
            border-top: 2px solid var(--orange);
            padding: 20px 24px;
            z-index: 998;
            display: none;
        }
        .cookie-banner.show { display: block; }
        .cookie-banner-inner {
            max-width: 1200px; margin: 0 auto;
            display: flex; align-items: center; justify-content: space-between;
            gap: 32px;
        }
        .cookie-banner-msg {
            color: var(--gray-300); font-size: 0.88rem; line-height: 1.5;
            margin: 0; flex: 1;
        }
        .cookie-banner-msg a { color: var(--orange); text-decoration: underline; }
        .cookie-banner-actions { display: flex; gap: 12px; flex-shrink: 0; }
        .cookie-btn {
            font: inherit; cursor: pointer; padding: 10px 20px;
            border-radius: 8px; font-weight: 600; font-size: 0.9rem;
            transition: all 0.2s; white-space: nowrap;
        }
        .cookie-btn-reject {
            background: transparent; border: 1px solid rgba(255,255,255,0.2);
            color: var(--gray-300);
        }
        .cookie-btn-reject:hover { border-color: rgba(255,255,255,0.4); color: var(--white); }
        .cookie-btn-accept {
            background: var(--orange); border: 1px solid var(--orange);
            color: var(--navy);
        }
        .cookie-btn-accept:hover { background: #fbbf24; border-color: #fbbf24; }
        @media (max-width: 768px) {
            .cookie-banner-inner { flex-direction: column; gap: 16px; align-items: stretch; }
            .cookie-banner-msg { text-align: center; }
            .cookie-banner-actions { flex-direction: column; }
            .cookie-btn { width: 100%; }
        }

        /* TEMPLATE: Real testimonials only. Do not un-comment until you have 1+ real client with written permission. See FTC 16 CFR Part 255. */
        /*
        .testimonials { background: var(--navy); padding: 100px 32px; }
        .testimonial-disclosure {
            max-width: 720px; margin: 0 auto 40px;
            color: var(--gray-500); font-size: 0.82rem;
            text-align: center; line-height: 1.6;
        }
        .testimonial-grid {
            display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
            max-width: 900px; margin: 0 auto;
        }
        .testimonial-card {
            background: var(--navy-light); border: 1px solid rgba(255,255,255,0.06);
            border-radius: 16px; padding: 32px;
        }
        .testimonial-stars { color: var(--orange); font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 2px; }
        .testimonial-text {
            color: var(--gray-300); font-size: 0.95rem; line-height: 1.75;
            margin-bottom: 24px; font-style: italic;
        }
        .testimonial-author { display: flex; align-items: center; gap: 14px; }
        .testimonial-photo {
            width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex-shrink: 0;
        }
        .testimonial-name { color: var(--white); font-weight: 600; font-size: 0.95rem; }
        .testimonial-role { color: var(--gray-400); font-size: 0.8rem; margin-top: 2px; }
        @media (max-width: 768px) {
            .testimonial-grid { grid-template-columns: 1fr; }
        }
        */
