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

        :root {
            --blue:        #3C9BBA;
            --blue-light:  #9DCDDD;
            --blue-medium: #2A6C82;
            --blue-dark:   #1B465E;
            --black:       #231F20;
            --black-rich:  #111010;
            --white:       #F9F9F9;
            --orange:      #FF9D00;
            --gray:        rgba(255,255,255,0.5);
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: 'Fira Sans', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--black);
            color: var(--white);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* ─── UTILITIES ────────────────────────────────── */
        .label {
            display: inline-block;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--blue-light);
            margin-bottom: 16px;
        }
        em { font-style: normal; color: var(--blue); }

        /* ─── BUTTONS ──────────────────────────────────── */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 13px 28px;
            border-radius: 100px;
            font-family: inherit;
            font-size: 15px;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.22s cubic-bezier(0.4,0,0.2,1);
            border: none;
            letter-spacing: -0.01em;
        }
        .btn-primary {
            background: var(--blue);
            color: #fff;
        }
        .btn-primary:hover {
            background: #338fab;
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(60,155,186,0.35);
        }
        .btn-ghost {
            background: transparent;
            color: var(--white);
            border: 1.5px solid rgba(255,255,255,0.25);
        }
        .btn-ghost:hover {
            border-color: rgba(255,255,255,0.6);
            background: rgba(255,255,255,0.05);
            transform: translateY(-2px);
        }
        .btn-white {
            background: #fff;
            color: var(--blue-dark);
            font-weight: 700;
        }
        .btn-white:hover {
            background: rgba(255,255,255,0.92);
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(0,0,0,0.25);
        }
        .btn-outline-white {
            background: transparent;
            color: #fff;
            border: 1.5px solid rgba(255,255,255,0.4);
        }
        .btn-outline-white:hover {
            border-color: #fff;
            background: rgba(255,255,255,0.08);
            transform: translateY(-2px);
        }
        .btn-sm  { padding: 8px 18px; font-size: 13px; }
        .btn-lg  { padding: 16px 36px; font-size: 16px; }

        /* ─── NAVIGATION ───────────────────────────────── */
        nav {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 1000;
            height: 64px;
            padding: 0 48px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: rgba(35, 31, 32, 0.8);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border-bottom: 1px solid rgba(255,255,255,0.06);
            transition: background 0.3s, border-color 0.3s;
        }
        nav.scrolled {
            background: rgba(17, 16, 16, 0.96);
            border-bottom-color: rgba(60,155,186,0.12);
        }
        .logo {
            display: flex;
            flex-direction: column;
            line-height: 1;
            text-decoration: none;
            gap: 1px;
        }
        .logo img { display: block; }
        .footer-brand-col .logo { width: fit-content; }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 36px;
            list-style: none;
        }
        .nav-links li a {
            font-size: 14px;
            font-weight: 400;
            color: rgba(255,255,255,0.65);
            text-decoration: none;
            transition: color 0.2s;
        }
        .nav-links li a:hover { color: #fff; }
        .mobile-btn {
            display: none;
            background: none;
            border: none;
            color: #fff;
            cursor: pointer;
            padding: 4px;
        }

        /* ─── HERO ─────────────────────────────────────── */
        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 110px 24px 100px;
            position: relative;
            overflow: hidden;
        }
        .hero-bg {
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 90% 70% at 50% 10%, rgba(27,70,94,0.9) 0%, transparent 65%),
                radial-gradient(ellipse 50% 40% at 85% 85%, rgba(60,155,186,0.12) 0%, transparent 55%),
                radial-gradient(ellipse 40% 30% at 15% 75%, rgba(42,108,130,0.15) 0%, transparent 50%);
            animation: heroGlow 10s ease-in-out infinite alternate;
        }
        @keyframes heroGlow {
            from { opacity: 0.8; }
            to   { opacity: 1; }
        }
        .hero-grid {
            position: absolute;
            inset: 0;
            background-image: radial-gradient(circle, rgba(60,155,186,0.18) 1px, transparent 1px);
            background-size: 44px 44px;
            mask-image: radial-gradient(ellipse 75% 65% at 50% 50%, black 20%, transparent 80%);
            -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 50%, black 20%, transparent 80%);
        }
        .particle {
            position: absolute;
            border-radius: 50%;
            background: var(--blue);
            opacity: 0;
            animation: float var(--dur, 6s) ease-in-out var(--delay, 0s) infinite;
        }
        @keyframes float {
            0%   { opacity: 0; transform: translate(0,0) scale(0); }
            20%  { opacity: 0.6; }
            80%  { opacity: 0.4; }
            100% { opacity: 0; transform: translate(var(--tx, 30px), var(--ty, -60px)) scale(1); }
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 7px 18px;
            border-radius: 100px;
            border: 1px solid rgba(60,155,186,0.35);
            background: rgba(60,155,186,0.08);
            font-size: 13px;
            font-weight: 500;
            color: var(--blue-light);
            margin-bottom: 32px;
            position: relative;
            letter-spacing: 0.02em;
        }
        .badge-dot {
            width: 7px; height: 7px;
            border-radius: 50%;
            background: var(--blue);
            animation: pulse 2.5s ease-in-out infinite;
        }
        @keyframes pulse {
            0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(60,155,186,0.5); }
            50%       { opacity: 0.6; box-shadow: 0 0 0 6px rgba(60,155,186,0); }
        }
        .hero h1 {
            font-size: clamp(36px, 5.2vw, 70px);
            font-weight: 800;
            letter-spacing: -0.04em;
            line-height: 1.08;
            max-width: 1040px;
            margin-bottom: 28px;
            position: relative;
        }
        .hero-sub {
            font-size: clamp(16px, 1.8vw, 20px);
            font-weight: 300;
            color: rgba(255,255,255,0.6);
            max-width: 560px;
            line-height: 1.7;
            margin-bottom: 44px;
            position: relative;
        }
        .hero-ctas {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            justify-content: center;
            position: relative;
        }
        .hero-scroll-indicator {
            position: absolute;
            bottom: 36px; left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            color: rgba(255,255,255,0.25);
            font-size: 10px;
            letter-spacing: 0.12em;
            text-transform: uppercase;
        }
        .scroll-bar {
            width: 1px; height: 44px;
            background: linear-gradient(to bottom, rgba(60,155,186,0.7), transparent);
            animation: scrollAnim 2.2s ease-in-out infinite;
        }
        @keyframes scrollAnim {
            0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
            40%  { transform: scaleY(1); opacity: 1; }
            100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
        }

        /* ─── TRUST BAR ─────────────────────────────────── */
        .trust-bar {
            padding: 28px 48px;
            background: rgba(255,255,255,0.025);
            border-top: 1px solid rgba(255,255,255,0.05);
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        .trust-label {
            text-align: center;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.25);
            margin-bottom: 22px;
        }
        .trust-logos {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 44px;
            flex-wrap: wrap;
        }
        .trust-logo {
            font-size: 13px;
            font-weight: 600;
            color: rgba(255,255,255,0.22);
            letter-spacing: 0.04em;
            text-transform: uppercase;
            transition: color 0.2s;
        }
        .trust-logo:hover { color: rgba(255,255,255,0.5); }

        /* ─── STATS ─────────────────────────────────────── */
        .stats-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            border-bottom: 1px solid rgba(255,255,255,0.06);
        }
        .stat-cell {
            padding: 56px 40px;
            text-align: center;
            border-right: 1px solid rgba(255,255,255,0.06);
        }
        .stat-cell:last-child { border-right: none; }
        .stat-num {
            font-size: clamp(44px, 5.5vw, 68px);
            font-weight: 800;
            color: var(--blue);
            letter-spacing: -0.04em;
            line-height: 1;
            margin-bottom: 8px;
        }
        .stat-desc {
            font-size: 14px;
            font-weight: 300;
            color: rgba(255,255,255,0.45);
            line-height: 1.5;
        }

        /* ─── PROBLEM ───────────────────────────────────── */
        .problem {
            padding: 140px 48px;
            background: var(--blue-dark);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .problem::before {
            content: '';
            position: absolute; inset: 0;
            background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(60,155,186,0.12), transparent);
        }
        .problem-watermark {
            position: absolute;
            font-size: clamp(80px, 18vw, 240px);
            font-weight: 800;
            color: rgba(60,155,186,0.06);
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            letter-spacing: -0.05em;
            white-space: nowrap;
            pointer-events: none;
            user-select: none;
        }
        .problem-inner {
            position: relative;
            max-width: 820px;
            margin: 0 auto;
        }
        .problem-inner h2 {
            font-size: clamp(30px, 5vw, 58px);
            font-weight: 700;
            letter-spacing: -0.035em;
            line-height: 1.1;
            margin-bottom: 24px;
        }
        .problem-inner p {
            font-size: clamp(16px, 1.7vw, 19px);
            font-weight: 300;
            color: rgba(255,255,255,0.65);
            line-height: 1.75;
            max-width: 640px;
            margin: 0 auto 44px;
        }
        .problem-callout {
            display: inline-flex;
            align-items: center;
            gap: 24px;
            padding: 24px 36px;
            border-radius: 16px;
            background: rgba(0,0,0,0.25);
            border: 1px solid rgba(60,155,186,0.2);
            margin-bottom: 44px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .callout-stat {
            text-align: center;
        }
        .callout-stat .num {
            font-size: 36px;
            font-weight: 800;
            color: var(--blue);
            letter-spacing: -0.03em;
            line-height: 1;
        }
        .callout-stat .lbl {
            font-size: 12px;
            color: rgba(255,255,255,0.45);
            margin-top: 4px;
        }
        .callout-divider {
            width: 1px;
            height: 48px;
            background: rgba(255,255,255,0.1);
        }

        /* ─── ICP SECTION ───────────────────────────────── */
        .icp {
            padding: 120px 48px;
            background: var(--black);
        }
        .icp-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }
        .icp-header {
            grid-column: 1 / -1;
            max-width: 640px;
            margin-bottom: 16px;
        }
        .icp-header h2 {
            font-size: clamp(30px, 4.5vw, 52px);
            font-weight: 700;
            letter-spacing: -0.03em;
            line-height: 1.1;
            margin-bottom: 16px;
        }
        .icp-header p {
            font-size: 18px;
            font-weight: 300;
            color: rgba(255,255,255,0.55);
            line-height: 1.7;
        }
        .icp-card {
            padding: 44px 40px;
            border-radius: 20px;
            border: 1px solid rgba(255,255,255,0.07);
            background: rgba(255,255,255,0.02);
            transition: border-color 0.3s, transform 0.3s;
        }
        .icp-card:hover {
            border-color: rgba(60,155,186,0.3);
            transform: translateY(-4px);
        }
        .icp-tag {
            display: inline-block;
            padding: 4px 12px;
            border-radius: 100px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: 20px;
        }
        .icp-card.primary .icp-tag {
            background: rgba(60,155,186,0.15);
            color: var(--blue-light);
            border: 1px solid rgba(60,155,186,0.25);
        }
        .icp-card.secondary .icp-tag {
            background: rgba(255,255,255,0.05);
            color: rgba(255,255,255,0.4);
            border: 1px solid rgba(255,255,255,0.1);
        }
        .icp-card h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 12px;
            line-height: 1.2;
        }
        .icp-card p {
            font-size: 15px;
            color: rgba(255,255,255,0.5);
            line-height: 1.65;
            margin-bottom: 24px;
        }
        .icp-points {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .icp-points li {
            font-size: 14px;
            color: rgba(255,255,255,0.55);
            padding-left: 20px;
            position: relative;
            line-height: 1.5;
        }
        .icp-points li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--blue);
            font-size: 12px;
            top: 2px;
        }
        .icp-insight {
            grid-column: 1 / -1;
            margin-top: 8px;
            padding: 28px 36px;
            border-radius: 14px;
            background: rgba(60,155,186,0.07);
            border: 1px solid rgba(60,155,186,0.18);
            display: flex;
            align-items: flex-start;
            gap: 16px;
        }
        .insight-icon {
            font-size: 20px;
            flex-shrink: 0;
            margin-top: 2px;
        }
        .icp-insight p {
            font-size: 15px;
            color: rgba(255,255,255,0.65);
            line-height: 1.65;
            font-style: italic;
        }
        .icp-insight strong {
            color: var(--white);
            font-weight: 600;
            font-style: normal;
        }

        /* ─── SERVICES / CV360 ──────────────────────────── */
        .services {
            padding: 130px 48px;
            background: var(--black-rich);
        }
        .services-intro {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 80px;
        }
        .services-intro h2 {
            font-size: clamp(32px, 5vw, 58px);
            font-weight: 700;
            letter-spacing: -0.035em;
            line-height: 1.08;
            margin-bottom: 16px;
        }
        .services-intro p {
            font-size: 18px;
            font-weight: 300;
            color: rgba(255,255,255,0.55);
            line-height: 1.7;
        }
        .cv360-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 8px 20px;
            border-radius: 100px;
            background: rgba(60,155,186,0.1);
            border: 1px solid rgba(60,155,186,0.25);
            font-size: 13px;
            font-weight: 600;
            color: var(--blue-light);
            letter-spacing: 0.04em;
            margin-bottom: 20px;
        }
        .services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
            border: 1px solid rgba(255,255,255,0.06);
            background: rgba(255,255,255,0.06);
            gap: 1px;
        }
        .svc-card {
            background: #161314;
            padding: 40px 30px;
            transition: background 0.25s;
            position: relative;
            overflow: hidden;
        }
        .svc-card::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0; right: 0;
            height: 2px;
            background: var(--blue);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }
        .svc-card:hover { background: #1e1a1b; }
        .svc-card:hover::after { transform: scaleX(1); }
        .svc-name-tag {
            display: inline-block;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--blue);
            margin-bottom: 12px;
        }
        .svc-icon {
            width: 44px; height: 44px;
            border-radius: 10px;
            background: rgba(60,155,186,0.1);
            border: 1px solid rgba(60,155,186,0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            margin-bottom: 16px;
        }
        .svc-card h3 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 10px;
            line-height: 1.35;
        }
        .svc-card p {
            font-size: 13.5px;
            color: rgba(255,255,255,0.42);
            line-height: 1.65;
        }
        .services-note {
            margin-top: 32px;
            text-align: center;
            font-size: 14px;
            color: rgba(255,255,255,0.3);
        }
        .services-note em {
            color: rgba(255,255,255,0.5);
            font-style: normal;
        }

        /* ─── RESILIENCE SPLIT ──────────────────────────── */
        .split {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 580px;
        }
        .split-left {
            background: var(--blue-dark);
            padding: 100px 80px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .split-left h2 {
            font-size: clamp(28px, 4vw, 50px);
            font-weight: 700;
            letter-spacing: -0.03em;
            line-height: 1.1;
            margin-bottom: 20px;
        }
        .split-left p {
            font-size: 17px;
            font-weight: 300;
            color: rgba(255,255,255,0.6);
            line-height: 1.7;
            max-width: 400px;
            margin-bottom: 36px;
        }
        .split-right {
            background: #0f0d0e;
            padding: 80px 64px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 20px;
        }
        .why-row {
            padding: 24px 20px;
            border-radius: 12px;
            border: 1px solid rgba(255,255,255,0.07);
            background: rgba(255,255,255,0.02);
            display: flex;
            gap: 16px;
            align-items: flex-start;
            transition: border-color 0.25s;
        }
        .why-row:hover { border-color: rgba(60,155,186,0.25); }
        .why-num {
            font-size: 11px;
            font-weight: 700;
            color: var(--blue);
            letter-spacing: 0.06em;
            flex-shrink: 0;
            padding-top: 2px;
        }
        .why-row h4 {
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 4px;
        }
        .why-row p {
            font-size: 13px;
            color: rgba(255,255,255,0.45);
            line-height: 1.55;
        }

        /* ─── PROCESS ───────────────────────────────────── */
        .process {
            padding: 130px 48px;
            background: var(--black);
        }
        .process-header {
            text-align: center;
            margin-bottom: 88px;
        }
        .process-header h2 {
            font-size: clamp(30px, 4.5vw, 54px);
            font-weight: 700;
            letter-spacing: -0.03em;
            line-height: 1.1;
            margin-bottom: 16px;
        }
        .process-header p {
            font-size: 18px;
            font-weight: 300;
            color: rgba(255,255,255,0.5);
            max-width: 480px;
            margin: 0 auto;
            line-height: 1.7;
        }
        .process-track {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            position: relative;
        }
        .process-track::before {
            content: '';
            position: absolute;
            top: 46px;
            left: calc(12.5% + 2px);
            right: calc(12.5% + 2px);
            height: 1px;
            background: linear-gradient(to right, transparent, rgba(60,155,186,0.4) 20%, rgba(60,155,186,0.4) 80%, transparent);
        }
        .step {
            padding: 0 28px;
            text-align: center;
        }
        .step-circle {
            width: 92px; height: 92px;
            border-radius: 50%;
            background: rgba(60,155,186,0.08);
            border: 1px solid rgba(60,155,186,0.25);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 32px;
            font-size: 26px;
            font-weight: 800;
            color: var(--blue);
            position: relative; z-index: 1;
            transition: background 0.3s, border-color 0.3s;
        }
        .step:hover .step-circle {
            background: rgba(60,155,186,0.18);
            border-color: rgba(60,155,186,0.5);
        }
        .step h3 {
            font-size: 17px;
            font-weight: 600;
            margin-bottom: 12px;
        }
        .step p {
            font-size: 14px;
            color: rgba(255,255,255,0.45);
            line-height: 1.65;
        }

        /* ─── SOCIAL PROOF ──────────────────────────────── */
        .social-proof {
            padding: 100px 48px;
            background: var(--blue-dark);
        }
        .social-proof-header {
            text-align: center;
            margin-bottom: 64px;
        }
        .social-proof-header h2 {
            font-size: clamp(28px, 4vw, 50px);
            font-weight: 700;
            letter-spacing: -0.03em;
            line-height: 1.1;
        }
        .proof-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1px;
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.06);
            max-width: 900px;
            margin: 0 auto 64px;
        }
        .proof-cell {
            background: rgba(0,0,0,0.3);
            padding: 40px 28px;
            text-align: center;
        }
        .proof-cell .big {
            font-size: clamp(32px, 4vw, 52px);
            font-weight: 800;
            color: var(--blue);
            letter-spacing: -0.04em;
            line-height: 1;
            margin-bottom: 8px;
        }
        .proof-cell .small {
            font-size: 13px;
            color: rgba(255,255,255,0.4);
            line-height: 1.4;
        }
        .testi-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            max-width: 1100px;
            margin: 0 auto;
        }
        .testi-card {
            background: rgba(0,0,0,0.25);
            border: 1px solid rgba(255,255,255,0.09);
            border-radius: 18px;
            padding: 36px 30px;
            transition: border-color 0.3s;
        }
        .testi-card:hover { border-color: rgba(60,155,186,0.3); }
        .quote-mark {
            font-size: 48px;
            line-height: 1;
            color: var(--blue);
            font-family: Georgia, serif;
            margin-bottom: 16px;
        }
        .testi-text {
            font-size: 15px;
            font-weight: 300;
            color: rgba(255,255,255,0.75);
            line-height: 1.75;
            font-style: italic;
            margin-bottom: 28px;
        }
        .testi-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .testi-avatar {
            width: 42px; height: 42px;
            border-radius: 50%;
            background: rgba(60,155,186,0.2);
            border: 1px solid rgba(60,155,186,0.35);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 15px;
            font-weight: 700;
            color: var(--blue-light);
            flex-shrink: 0;
        }
        .testi-name {
            font-size: 14px;
            font-weight: 600;
            line-height: 1.3;
        }
        .testi-company {
            font-size: 12px;
            color: rgba(255,255,255,0.35);
        }

        /* ─── CERTIFICATIONS ────────────────────────────── */
        .certs {
            padding: 72px 48px;
            background: var(--black-rich);
            border-top: 1px solid rgba(255,255,255,0.05);
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        .certs-inner {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            text-align: center;
        }
        .certs-label {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.25);
            white-space: nowrap;
        }
        .certs-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
        }
        .cert-pill {
            padding: 6px 14px;
            border-radius: 8px;
            border: 1px solid rgba(60,155,186,0.22);
            font-size: 12px;
            font-weight: 600;
            color: rgba(60,155,186,0.75);
            letter-spacing: 0.04em;
            transition: border-color 0.2s, color 0.2s;
        }
        .cert-pill:hover {
            border-color: rgba(60,155,186,0.5);
            color: var(--blue-light);
        }

        /* ─── CTA ───────────────────────────────────────── */
        .cta-section {
            padding: 160px 48px;
            background: linear-gradient(140deg, #0d2635 0%, var(--blue-dark) 40%, var(--blue-medium) 80%, #2891ae 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute; inset: 0;
            background: radial-gradient(ellipse 60% 80% at 50% 60%, rgba(255,255,255,0.05), transparent);
        }
        .cta-section::after {
            content: '';
            position: absolute; inset: 0;
            background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
            background-size: 36px 36px;
        }
        .cta-inner {
            position: relative;
            z-index: 1;
        }
        .cta-section h2 {
            font-size: clamp(34px, 5.5vw, 68px);
            font-weight: 800;
            letter-spacing: -0.04em;
            line-height: 1.04;
            margin-bottom: 20px;
        }
        .cta-section p {
            font-size: clamp(16px, 1.8vw, 19px);
            font-weight: 300;
            color: rgba(255,255,255,0.72);
            max-width: 520px;
            margin: 0 auto 48px;
            line-height: 1.7;
        }
        .cta-btns {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }
        .contact-details {
            margin-top: 56px;
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
        }
        .contact-item {
            font-size: 14px;
            color: rgba(255,255,255,0.55);
            text-decoration: none;
            transition: color 0.2s;
        }
        .contact-item:hover { color: rgba(255,255,255,0.9); }
        .contact-item span {
            display: block;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.25);
            margin-bottom: 4px;
        }

        /* ─── FOOTER ────────────────────────────────────── */
        footer {
            background: #0a0809;
            padding: 80px 48px 36px;
        }
        .footer-top {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 48px;
            padding-bottom: 56px;
            border-bottom: 1px solid rgba(255,255,255,0.05);
            margin-bottom: 36px;
        }
        .footer-brand-col p {
            font-size: 14px;
            color: rgba(255,255,255,0.35);
            line-height: 1.7;
            max-width: 280px;
            margin-top: 18px;
        }
        .footer-addr {
            margin-top: 20px;
            font-size: 13px;
            color: rgba(255,255,255,0.25);
            line-height: 1.7;
        }
        .footer-contact-links {
            margin-top: 16px;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .footer-contact-links a {
            font-size: 13px;
            color: rgba(255,255,255,0.35);
            text-decoration: none;
            transition: color 0.2s;
        }
        .footer-contact-links a:hover { color: var(--blue-light); }
        .footer-col h5 {
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: rgba(255,255,255,0.25);
            margin-bottom: 20px;
        }
        .footer-col a {
            display: block;
            font-size: 14px;
            color: rgba(255,255,255,0.4);
            text-decoration: none;
            margin-bottom: 12px;
            transition: color 0.2s;
        }
        .footer-col a:hover { color: var(--white); }
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
        }
        .footer-bottom p {
            font-size: 12px;
            color: rgba(255,255,255,0.18);
        }
        .footer-certs {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }
        .footer-cert {
            padding: 3px 9px;
            border-radius: 6px;
            border: 1px solid rgba(60,155,186,0.15);
            font-size: 10px;
            font-weight: 700;
            color: rgba(60,155,186,0.45);
            letter-spacing: 0.04em;
        }

        /* ─── SCROLL ANIMATIONS ─────────────────────────── */
        .reveal {
            opacity: 0;
            transform: translateY(28px);
            transition: opacity 0.75s cubic-bezier(0.4,0,0.2,1),
                        transform 0.75s cubic-bezier(0.4,0,0.2,1);
        }
        .reveal.active { opacity: 1; transform: translateY(0); }
        .reveal-d1 { transition-delay: 0.08s; }
        .reveal-d2 { transition-delay: 0.16s; }
        .reveal-d3 { transition-delay: 0.24s; }
        .reveal-d4 { transition-delay: 0.32s; }

        /* ─── SCROLL PROGRESS BAR ──────────────────────── */
        #scroll-progress {
            position: fixed;
            top: 0; left: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--blue-medium), var(--blue), var(--blue-light));
            z-index: 2001;
            width: 0%;
            transition: width 0.08s linear;
            pointer-events: none;
        }


        /* ─── HERO ENTRANCE ANIMATIONS ──────────────── */
        .hero .hero-badge {
            opacity: 0;
            transform: translateY(-10px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        .hero .hero-badge.loaded { opacity: 1; transform: translateY(0); }

        .hero-line { display: block; overflow: hidden; }
        .hero-line-inner {
            display: block;
            transform: translateY(105%);
            transition: transform 1.05s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .hero-line-inner.loaded { transform: translateY(0); }

        .hero .hero-sub {
            opacity: 0;
            transform: translateY(8px);
            transition: opacity 0.85s ease, transform 0.85s ease;
        }
        .hero .hero-sub.loaded { opacity: 1; transform: translateY(0); }

        .hero .hero-ctas {
            opacity: 0;
            transform: translateY(12px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        .hero .hero-ctas.loaded { opacity: 1; transform: translateY(0); }

        /* ─── REVEAL VARIANTS ────────────────────────── */
        .reveal-left {
            opacity: 0;
            transform: translateX(-36px);
            transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1);
        }
        .reveal-right {
            opacity: 0;
            transform: translateX(36px);
            transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1);
        }
        .reveal-left.active, .reveal-right.active { opacity: 1; transform: translateX(0); }

        .reveal-scale {
            opacity: 0;
            transform: scale(0.93) translateY(10px);
            transition: opacity 0.7s ease, transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
        }
        .reveal-scale.active { opacity: 1; transform: scale(1) translateY(0); }

        /* ─── SPLIT LEFT PHOTO OVERLAY ───────────────── */
        .split-left { position: relative; overflow: hidden; }
        .split-left-img {
            position: absolute;
            inset: 0;
            background-image: url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=900&q=80&fit=crop&auto=format');
            background-size: cover;
            background-position: center;
            opacity: 0.08;
            filter: saturate(0.2);
            pointer-events: none;
        }
        .split-left > *:not(.split-left-img) { position: relative; z-index: 1; }

        /* ─── ENHANCED CARD HOVER ────────────────────── */
        .icp-card {
            transition: border-color 0.3s, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s;
        }
        .icp-card:hover {
            border-color: rgba(60,155,186,0.35);
            transform: translateY(-6px);
            box-shadow: 0 24px 48px rgba(0,0,0,0.3);
        }
        .testi-card {
            transition: border-color 0.3s, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s;
        }
        .testi-card:hover {
            border-color: rgba(60,155,186,0.3);
            transform: translateY(-6px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }
        .svc-card { will-change: transform; }
        .cert-pill { cursor: default; transition: border-color 0.2s, color 0.2s, transform 0.2s; }
        .cert-pill:hover { transform: translateY(-2px); }

        /* ─── STEP SPRING HOVER ──────────────────────── */
        .step { transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }
        .step:hover { transform: translateY(-10px); }
        .step-circle { transition: background 0.3s, border-color 0.3s, box-shadow 0.3s; }
        .step:hover .step-circle {
            background: rgba(60,155,186,0.2);
            border-color: rgba(60,155,186,0.55);
            box-shadow: 0 0 0 10px rgba(60,155,186,0.07);
        }

        /* ─── STAT CELL HOVER ────────────────────────── */
        .stat-cell { transition: background 0.3s; }
        .stat-cell:hover { background: rgba(255,255,255,0.02); }

        /* ─── RESPONSIVE ────────────────────────────────── */
        @media (max-width: 1024px) {
            nav { padding: 0 28px; }
            .stats-row { grid-template-columns: repeat(2, 1fr); }
            .services-grid { grid-template-columns: repeat(2, 1fr); }
            .split { grid-template-columns: 1fr; }
            .split-left { padding: 80px 48px; }
            .split-right { padding: 60px 48px; }
            .process-track { grid-template-columns: repeat(2, 1fr); gap: 48px; }
            .process-track::before { display: none; }
            .icp-inner { grid-template-columns: 1fr; }
            .icp-header { grid-column: auto; }
            .testi-grid { grid-template-columns: 1fr 1fr; }
            .proof-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-top { grid-template-columns: 1fr 1fr; }
            .certs-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
        }
        @media (max-width: 768px) {
            nav { padding: 0 20px; }
            .nav-links { display: none; }
            .mobile-btn { display: block; }
            .hero { padding: 90px 20px 80px; }
            .stats-row { grid-template-columns: 1fr 1fr; }
            .services-grid { grid-template-columns: 1fr; }
            .services, .icp, .problem, .social-proof, .cta-section, .process { padding: 80px 20px; }
            .trust-bar { padding: 24px 20px; }
            .testi-grid { grid-template-columns: 1fr; }
            .proof-grid { grid-template-columns: repeat(2, 1fr); }
            .split-left { padding: 64px 24px; }
            .split-right { padding: 48px 24px; }
            .process-track { grid-template-columns: 1fr; }
            .footer-top { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; text-align: center; }
            .contact-details { flex-direction: column; gap: 24px; }
            footer { padding: 60px 20px 28px; }
            .certs { padding: 56px 20px; }
            .problem-callout { flex-direction: column; gap: 16px; }
            .callout-divider { display: none; }
        }