:root {
            --navy: #0A1628;
            --navy-mid: #112240;
            --navy-light: #1A3A5C;
            --steel: #4A6FA5;
            --steel-light: #6B8CBF;
            --steel-pale: #A8BDD8;
            --white: #FFFFFF;
            --off-white: #F4F7FB;
            --gray-light: #E8EEF6;
            --gray-text: #6B7A99;
            --accent: #1d4ed8;
            --accent-glow: rgba(29, 78, 216, 0.14);
            --gold: #C9A84C;
            --text-dark: #0A1628;
            --text-body: #2D3B55;
            --shadow-sm: 0 2px 12px rgba(10, 22, 40, 0.08);
            --shadow-md: 0 8px 32px rgba(10, 22, 40, 0.12);
            --shadow-lg: 0 20px 60px rgba(10, 22, 40, 0.16);
            --radius: 16px;
            --radius-sm: 10px;
            --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-body);
            background: var(--white);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        h1,
        h2,
        h3,
        h4,
        h5 {
            font-family: 'Sora', sans-serif;
            color: var(--navy);
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        img {
            max-width: 100%;
            display: block;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ─── NAVBAR (legacy — does not apply to injected .site-header nav.nav) ─── */
        nav:not(.nav) {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.96);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--gray-light);
            transition: var(--transition);
        }

        nav:not(.nav).scrolled {
            box-shadow: var(--shadow-md);
        }

        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: 'Sora', sans-serif;
            font-weight: 800;
            font-size: 1.35rem;
            color: var(--navy);
            letter-spacing: -0.5px;
        }

        .logo-icon {
            width: 38px;
            height: 38px;
            background: linear-gradient(135deg, var(--navy) 0%, var(--steel) 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-icon svg {
            width: 22px;
            height: 22px;
            fill: white;
        }

        .logo span {
            color: var(--steel);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 6px;
            list-style: none;
        }

        .nav-links>li {
            position: relative;
        }

        .nav-links>li>a {
            padding: 8px 14px;
            border-radius: 8px;
            font-size: 0.92rem;
            font-weight: 500;
            color: var(--text-body);
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .nav-links>li>a:hover,
        .nav-links>li>a.active {
            background: var(--off-white);
            color: var(--navy);
        }

        .dropdown-arrow {
            font-size: 10px;
            transition: var(--transition);
        }

        .nav-links>li:hover .dropdown-arrow {
            transform: rotate(180deg);
        }

        .dropdown {
            display: none;
            position: absolute;
            top: calc(100% + 8px);
            left: 0;
            background: white;
            border-radius: var(--radius-sm);
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--gray-light);
            min-width: 240px;
            overflow: hidden;
            z-index: 999;
            animation: dropIn 0.2s ease;
        }

        @keyframes dropIn {
            from {
                opacity: 0;
                transform: translateY(-8px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .nav-links>li:hover .dropdown {
            display: block;
        }

        .dropdown a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 11px 18px;
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--text-body);
            border-bottom: 1px solid var(--gray-light);
            transition: var(--transition);
        }

        .dropdown a:last-child {
            border-bottom: none;
        }

        .dropdown a:hover {
            background: var(--off-white);
            color: var(--navy);
            padding-left: 24px;
        }

        .dropdown a .dd-icon {
            width: 28px;
            height: 28px;
            border-radius: 6px;
            background: var(--gray-light);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            flex-shrink: 0;
        }

        .nav-cta {
            background: var(--navy);
            color: white;
            padding: 10px 22px;
            border-radius: 10px;
            font-size: 0.9rem;
            font-weight: 600;
            transition: var(--transition);
            letter-spacing: 0.2px;
        }

        .nav-cta:hover {
            background: var(--steel);
            transform: translateY(-1px);
            box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 8px;
        }

        .hamburger span {
            width: 24px;
            height: 2px;
            background: var(--navy);
            border-radius: 2px;
            transition: var(--transition);
        }

        .mobile-menu {
            display: none;
            position: fixed;
            top: 72px;
            left: 0;
            right: 0;
            bottom: 0;
            background: white;
            z-index: 999;
            overflow-y: auto;
            padding: 24px;
        }

        .mobile-menu.open {
            display: block;
        }

        .mobile-menu a {
            display: block;
            padding: 14px 0;
            font-size: 1rem;
            font-weight: 500;
            border-bottom: 1px solid var(--gray-light);
            color: var(--text-body);
        }

        .mobile-menu .m-section {
            font-family: 'Sora', sans-serif;
            font-weight: 700;
            font-size: 0.75rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--steel);
            padding: 20px 0 8px;
        }

        /* ─── HERO ─── */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: radial-gradient(1200px 800px at 15% 10%, rgba(99, 102, 241, 0.10), transparent 60%),
                radial-gradient(900px 650px at 85% 25%, rgba(139, 92, 246, 0.10), transparent 62%),
                linear-gradient(180deg, #ffffff 0%, #f8fafc 55%, #ffffff 100%);
            position: relative;
            overflow: hidden;
            padding-top: 0;
        }

        .hero-grid-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
            opacity: 0.06;
            background-image: linear-gradient(rgba(29, 78, 216, 0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(29, 78, 216, 0.12) 1px, transparent 1px);
            background-size: 56px 56px;
        }

        @media (prefers-reduced-motion: no-preference) {
            .hero-grid-bg {
                animation: heroGridDrift 48s ease-in-out infinite alternate;
            }
        }

        @keyframes heroGridDrift {
            from {
                transform: translate(0, 0);
            }

            to {
                transform: translate(-12px, -8px);
            }
        }

        .hero-orb {
            position: absolute;
            z-index: 0;
            border-radius: 50%;
            filter: blur(72px);
            pointer-events: none;
            opacity: 0.85;
        }

        .hero-orb-1 {
            width: 420px;
            height: 420px;
            background: radial-gradient(circle, rgba(29, 78, 216, 0.12) 0%, transparent 72%);
            top: -80px;
            right: -60px;
        }

        .hero-orb-2 {
            width: 360px;
            height: 360px;
            background: radial-gradient(circle, rgba(71, 85, 105, 0.1) 0%, transparent 72%);
            bottom: -60px;
            left: 8%;
        }

        .hero-wordmark {
            position: absolute;
            z-index: 1;
            right: -2%;
            top: 18%;
            transform: none;
            font-family: 'Sora', sans-serif;
            font-weight: 800;
            font-size: clamp(3.4rem, 8.6vw, 8.2rem);
            line-height: 0.9;
            letter-spacing: -0.05em;
            white-space: nowrap;
            pointer-events: none;
            user-select: none;
            opacity: 0.62;
            filter: saturate(1.05) contrast(1.08);
            mix-blend-mode: multiply;
            max-width: min(72vw, 720px);
            overflow: hidden;
            text-overflow: clip;
        }

        .hero-wordmark__core {
            background: linear-gradient(90deg, rgba(29, 78, 216, 0.22) 0%, rgba(29, 78, 216, 0.10) 60%, rgba(15, 23, 42, 0.04) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .hero-wordmark__tech {
            margin-left: 0.24em;
            color: rgba(29, 78, 216, 0.12);
        }

        /* Remove bubble template feel on homepage hero */
        .hero-bubbles { display:none; }

        .hero-mesh{
            position:absolute;
            inset:0;
            z-index:1;
            pointer-events:none;
            overflow:hidden;
        }
        .hero-blob{
            position:absolute;
            width:520px;
            height:520px;
            border-radius:999px;
            filter:blur(70px);
            opacity:.55;
            transform:translate3d(0,0,0);
            will-change:transform;
        }
        .hero-blob--a{left:-220px;top:-180px;background:radial-gradient(circle, rgba(99,102,241,.32), rgba(99,102,241,.05) 60%, transparent 72%)}
        .hero-blob--b{right:-260px;top:-140px;background:radial-gradient(circle, rgba(139,92,246,.28), rgba(139,92,246,.04) 60%, transparent 72%)}
        .hero-blob--c{right:-200px;bottom:-220px;background:radial-gradient(circle, rgba(29,78,216,.22), rgba(29,78,216,.03) 60%, transparent 72%)}
        @media (prefers-reduced-motion: no-preference){
            .hero-blob--a{animation:blobDrift 18s ease-in-out infinite}
            .hero-blob--b{animation:blobDrift 22s ease-in-out infinite -6s}
            .hero-blob--c{animation:blobDrift 26s ease-in-out infinite -10s}
        }
        @keyframes blobDrift{
            0%,100%{transform:translate3d(0,0,0) scale(1)}
            50%{transform:translate3d(46px,22px,0) scale(1.06)}
        }

        /* (Removed) hero bubble visuals to avoid template feel */

        .hero-inner {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 24px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-tag{
            display:inline-flex;
            align-items:center;
            justify-content:center;
            gap:10px;
            padding:8px 14px;
            border-radius:999px;
            background:rgba(255,255,255,.72);
            border:1px solid rgba(15,23,42,.10);
            font-size:.72rem;
            font-weight:800;
            letter-spacing:.14em;
            text-transform:uppercase;
            color:rgba(71,85,105,.92);
            box-shadow:0 10px 30px rgba(15,23,42,.06);
            margin-bottom:22px;
        }

        .hero-badge-dot {
            width: 6px;
            height: 6px;
            background: #16a34a;
            border-radius: 50%;
        }

        @media (prefers-reduced-motion: no-preference) {
            .hero-badge-dot {
                animation: pulseSoft 3.2s ease-in-out infinite;
            }
        }

        @keyframes pulseSoft {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.55;
            }
        }

        .hero h1 {
            font-size: clamp(2.2rem, 4.8vw, 4.4rem);
            font-weight: 900;
            line-height: 1.04;
            color: #0B1020;
            letter-spacing: -0.045em;
            margin-bottom: 16px;
        }

        /* highlight no longer used in new premium headline */

        .hero-desc {
            font-size: 1.05rem;
            line-height: 1.75;
            color: var(--gray-text);
            margin-bottom: 26px;
            max-width: 52ch;
            font-weight: 400;
        }

        .hero-actions {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }

        .btn-primary{
            background:linear-gradient(135deg, #6366F1 0%, #8B5CF6 55%, #1d4ed8 120%);
            border:1px solid rgba(99,102,241,.22);
            box-shadow:0 14px 40px rgba(99,102,241,.18);
            padding:14px 22px;
            border-radius:14px;
        }
        .btn-primary:hover{transform:translateY(-2px);box-shadow:0 18px 54px rgba(99,102,241,.22)}
        .btn-outline{
            background:rgba(255,255,255,.72);
            border:1px solid rgba(15,23,42,.14);
            color:#0B1020;
            border-radius:14px;
            padding:14px 22px;
        }
        .btn-outline:hover{background:rgba(99,102,241,.06);border-color:rgba(99,102,241,.22)}

        .hero-proof{
            display:grid;
            grid-template-columns:repeat(3, minmax(0,1fr));
            gap:14px;
            margin-top:28px;
        }
        .hp-card{
            padding:14px 14px 12px;
            border-radius:18px;
            background:rgba(255,255,255,.72);
            border:1px solid rgba(15,23,42,.10);
            box-shadow:0 12px 34px rgba(15,23,42,.06);
            min-width:0;
        }
        .hp-ic{
            width:34px;height:34px;
            border-radius:12px;
            display:grid;place-items:center;
            background:rgba(99,102,241,.10);
            border:1px solid rgba(99,102,241,.18);
            color:#4f46e5;
        }
        .hp-ic svg{width:18px;height:18px}
        .hp-main{
            margin-top:10px;
            font-family:'Sora',sans-serif;
            font-weight:800;
            letter-spacing:-.02em;
            color:#0B1020;
            font-size:.98rem;
            overflow-wrap:anywhere;
        }
        .hp-sub{
            margin-top:4px;
            color:rgba(71,85,105,.92);
            font-size:.86rem;
            line-height:1.35;
            overflow-wrap:anywhere;
        }

        @media (max-width:640px){
            .hero-proof{grid-template-columns:repeat(2, minmax(0,1fr))}
            .hp-main{font-size:.94rem}
        }
        @media (max-width:420px){
            .hero-proof{grid-template-columns:1fr}
        }

        .grd-grid{
            width:100%;
            max-width:520px;
            display:grid;
            grid-template-columns:1fr;
            gap:14px;
        }
        .grd-card{
            border-radius:24px;
            padding:18px 18px 16px;
            background:rgba(255,255,255,0.04);
            backdrop-filter: blur(20px);
            border:1px solid rgba(15,23,42,0.10);
            box-shadow:0 18px 54px rgba(15,23,42,.10);
            background:linear-gradient(180deg, rgba(255,255,255,.74), rgba(248,250,252,.74));
            position:relative;
            overflow:hidden;
        }
        .grd-card:before{
            content:"";
            position:absolute;
            inset:-60% -20%;
            background:radial-gradient(circle at 70% 30%, rgba(99,102,241,.16), transparent 55%);
            pointer-events:none;
        }
        .grd-top{display:flex;gap:12px;align-items:center;position:relative}
        .grd-icon{
            width:42px;height:42px;border-radius:16px;
            display:grid;place-items:center;
            background:rgba(99,102,241,.10);
            border:1px solid rgba(99,102,241,.18);
            color:#4f46e5;
            font-size:1.05rem;
            flex-shrink:0;
        }
        .grd-k{
            font-size:.74rem;
            font-weight:900;
            letter-spacing:.14em;
            text-transform:uppercase;
            color:rgba(71,85,105,.92);
        }
        .grd-t{
            margin-top:2px;
            font-family:'Sora',sans-serif;
            font-weight:900;
            letter-spacing:-.02em;
            color:#0B1020;
            font-size:1.1rem;
        }
        .grd-list{
            position:relative;
            margin-top:12px;
            padding:0;
            list-style:none;
            display:grid;
            gap:8px;
            color:rgba(30,58,95,.92);
            font-size:.92rem;
        }
        .grd-list li{display:flex;gap:10px;align-items:flex-start;line-height:1.35}
        .grd-list li:before{
            content:"";
            width:10px;height:10px;border-radius:999px;margin-top:4px;
            background:rgba(99,102,241,.24);
            box-shadow:0 0 0 3px rgba(99,102,241,.10);
            flex-shrink:0;
        }
        @media (hover:hover){
            .grd-card{transition:transform var(--transition), box-shadow var(--transition), border-color var(--transition)}
            .grd-card:hover{transform:translateY(-3px);border-color:rgba(99,102,241,.20);box-shadow:0 24px 80px rgba(15,23,42,.14)}
            .hp-card{transition:transform var(--transition), box-shadow var(--transition), border-color var(--transition)}
            .hp-card:hover{transform:translateY(-2px);border-color:rgba(99,102,241,.18);box-shadow:0 18px 50px rgba(15,23,42,.10)}
        }

        .btn-primary {
            background: var(--accent);
            color: white;
            padding: 14px 30px;
            border-radius: 12px;
            font-family: 'Sora', sans-serif;
            font-weight: 700;
            font-size: 0.95rem;
            letter-spacing: 0.2px;
            transition: var(--transition);
            box-shadow: 0 8px 24px rgba(29, 78, 216, 0.22);
            border: 1px solid transparent;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            background: #1e40af;
            box-shadow: 0 12px 32px rgba(29, 78, 216, 0.28);
        }

        .btn-primary:active {
            transform: translateY(0);
        }

        .btn-outline {
            border: 1.5px solid rgba(10, 22, 40, 0.22);
            color: var(--navy);
            padding: 14px 30px;
            border-radius: 12px;
            font-family: 'Sora', sans-serif;
            font-weight: 600;
            font-size: 0.95rem;
            transition: var(--transition);
            background: rgba(255, 255, 255, 0.7);
        }

        .btn-outline:hover {
            background: rgba(37, 99, 235, 0.06);
            border-color: rgba(37, 99, 235, 0.28);
            transform: translateY(-2px);
        }

        .hero-stats {
            display: flex;
            gap: 36px;
            margin-top: 44px;
        }

        .stat-item { display: flex; flex-direction: column; gap: 2px; }

        .stat-num {
            font-family: 'Sora', sans-serif;
            font-size: 1.9rem;
            font-weight: 800;
            color: var(--navy);
            line-height: 1;
        }

        /* Text-first proof chips (no inflated numerics) */
        .stat-num--text {
            font-size: clamp(1.02rem, 2.4vw, 1.28rem);
            font-weight: 800;
            letter-spacing: -0.02em;
            line-height: 1.15;
        }

        .stat-label {
            font-size: 0.8rem;
            color: var(--gray-text);
            margin-top: 4px;
        }

        .hero-visual {
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        @keyframes heroIn {
            from {
                opacity: 0;
                transform: translateY(18px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (prefers-reduced-motion: no-preference) {
            .hero .hero-content>* {
                opacity: 0;
                transform: translateY(18px);
            }

            .hero.is-ready .hero-content>* {
                animation: heroIn 0.72s cubic-bezier(.2, .8, .2, 1) forwards;
            }

            .hero.is-ready .hero-content>*:nth-child(1) {
                animation-delay: .05s;
            }

            .hero.is-ready .hero-content>*:nth-child(2) {
                animation-delay: .12s;
            }

            .hero.is-ready .hero-content>*:nth-child(3) {
                animation-delay: .2s;
            }

            .hero.is-ready .hero-content>*:nth-child(4) {
                animation-delay: .28s;
            }

            .hero.is-ready .hero-content>*:nth-child(5) {
                animation-delay: .36s;
            }

            .hero .hero-visual {
                opacity: 0;
                transform: translateY(14px);
            }

            .hero.is-ready .hero-visual {
                animation: heroIn 0.8s cubic-bezier(.2, .8, .2, 1) .22s forwards;
            }
        }

        /* (Removed) old tabbed showcase styles */

        .card-label {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--gray-text);
            margin-bottom: 8px;
        }

        .card-value {
            font-family: 'Sora', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--navy);
        }

        .card-sub {
            font-size: 0.8rem;
            color: var(--gray-text);
            margin-top: 2px;
        }

        .card-chart {
            display: flex;
            align-items: flex-end;
            gap: 4px;
            height: 50px;
            margin-top: 14px;
        }

        .bar {
            flex: 1;
            border-radius: 3px;
            background: linear-gradient(180deg, rgba(107, 140, 191, 0.8), rgba(74, 111, 165, 0.4));
            animation: growBar 1s ease;
        }

        @keyframes growBar {
            from {
                height: 0
            }
        }

        /* ─── SECTION COMMON ─── */
        section {
            padding: 96px 0;
        }

        .section-tag {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--steel);
            background: rgba(74, 111, 165, 0.1);
            border: 1px solid rgba(74, 111, 165, 0.2);
            padding: 5px 14px;
            border-radius: 100px;
            margin-bottom: 16px;
        }

        .section-title {
            font-size: clamp(1.9rem, 4vw, 2.9rem);
            font-weight: 800;
            letter-spacing: -0.5px;
            line-height: 1.15;
            margin-bottom: 16px;
        }

        .section-desc {
            font-size: 1.05rem;
            line-height: 1.75;
            color: var(--gray-text);
            max-width: 600px;
        }

        .section-desc a {
            color: var(--accent);
            text-decoration: underline;
            text-underline-offset: 3px;
            text-decoration-thickness: 1px;
        }

        .section-desc a:visited {
            color: #1e3a8a;
        }

        .logo-strip-head .section-desc a {
            color: var(--accent);
        }

        /* ─── TRUST BAR ─── */
        .trust-bar {
            background: var(--navy);
            padding: 32px 0;
            overflow: hidden;
        }

        .trust-inner {
            display: flex;
            align-items: center;
            gap: 0;
        }

        .trust-track {
            display: flex;
            gap: 60px;
            white-space: nowrap;
        }

        @media (prefers-reduced-motion: no-preference) {
            .trust-track {
                animation: scroll 72s linear infinite;
            }
        }

        @keyframes scroll {
            from {
                transform: translateX(0);
            }

            to {
                transform: translateX(-50%);
            }
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: rgba(255, 255, 255, 0.55);
            font-size: 0.85rem;
            font-weight: 500;
            flex-shrink: 0;
        }

        .trust-item svg {
            width: 16px;
            height: 16px;
            fill: var(--steel-light);
        }

        @media (prefers-reduced-motion: reduce) {
            .trust-inner {
                justify-content: center;
            }

            .trust-track {
                flex-wrap: wrap;
                justify-content: center;
                white-space: normal;
                gap: 16px 28px;
            }
        }

        /* ─── SERVICES (premium glass + animated lines) ─── */
        #services {
            background: linear-gradient(180deg, #eef2ff 0%, #f8fafc 45%, #f1f5f9 100%);
        }

        .services-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .services-header .section-desc {
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
            gap: 26px;
        }

        /* Service cards: per-card accent + professional hover fill */
        .service-card {
            --c1: #6366f1;
            --c2: #4f46e5;
            --c3: #4338ca;
            --fill-0: rgba(255, 255, 255, 0.92);
            --fill-1: rgba(248, 250, 252, 0.98);
            --heading: #0f172a;
            --body: #475569;
            --chip-bg: rgba(255, 255, 255, 0.85);
            --chip-border: rgba(15, 23, 42, 0.08);
            --chip-text: #334155;
            --link: #1d4ed8;
            --link-hover: #1e3a8a;
            --glow: 30, 64, 175;
            position: relative;
            border-radius: 20px;
            padding: 1px;
            isolation: isolate;
            overflow: visible;
            border: none;
            background: linear-gradient(145deg, var(--c1) 0%, var(--c2) 48%, var(--c3) 100%);
            background-size: 200% 200%;
            transition:
                transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
                background-position 0.6s ease;
            box-shadow:
                0 4px 6px rgba(15, 23, 42, 0.04),
                0 12px 32px rgba(var(--glow), 0.12);
        }

        .service-card--a1 {
            --c1: #8b5cf6;
            --c2: #7c3aed;
            --c3: #6d28d9;
            --glow: 109, 40, 217;
            --link: #6d28d9;
            --link-hover: #5b21b6;
        }

        .service-card--a2 {
            --c1: #38bdf8;
            --c2: #0ea5e9;
            --c3: #0284c7;
            --glow: 2, 132, 199;
            --link: #0369a1;
            --link-hover: #0c4a6e;
        }

        .service-card--a3 {
            --c1: #818cf8;
            --c2: #6366f1;
            --c3: #4f46e5;
            --glow: 79, 70, 229;
            --link: #4338ca;
            --link-hover: #3730a3;
        }

        .service-card--a4 {
            --c1: #2dd4bf;
            --c2: #14b8a6;
            --c3: #0d9488;
            --glow: 13, 148, 136;
            --link: #0f766e;
            --link-hover: #115e59;
        }

        .service-card--a5 {
            --c1: #94a3b8;
            --c2: #64748b;
            --c3: #475569;
            --glow: 71, 85, 105;
            --link: #334155;
            --link-hover: #1e293b;
        }

        @media (prefers-reduced-motion: no-preference) {
            .service-card {
                animation: serviceBorderFlow 14s ease infinite;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .service-card {
                animation: none !important;
                background-size: 100% 100%;
            }

            .service-card-bg::before,
            .service-card-aurora {
                animation: none !important;
            }
        }

        @keyframes serviceBorderFlow {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .service-card-bg {
            position: absolute;
            inset: 1px;
            border-radius: 19px;
            overflow: hidden;
            pointer-events: none;
            z-index: 0;
            background: linear-gradient(165deg, var(--fill-0) 0%, var(--fill-1) 100%);
            transition: opacity 0.45s ease;
        }

        .service-card-bg::before {
            content: '';
            position: absolute;
            width: 160%;
            height: 160%;
            top: -30%;
            left: -30%;
            background: repeating-linear-gradient(-28deg,
                    transparent 0,
                    transparent 40px,
                    color-mix(in srgb, var(--c2) 12%, transparent) 40px,
                    color-mix(in srgb, var(--c2) 12%, transparent) 41px,
                    transparent 41px,
                    transparent 80px,
                    color-mix(in srgb, var(--c1) 10%, transparent) 80px,
                    color-mix(in srgb, var(--c1) 10%, transparent) 81px);
            opacity: 0.5;
        }

        @supports not (color: color-mix(in srgb, white, black)) {
            .service-card-bg::before {
                background: repeating-linear-gradient(-28deg,
                        transparent 0,
                        transparent 40px,
                        rgba(99, 102, 241, 0.08) 40px,
                        rgba(99, 102, 241, 0.08) 41px,
                        transparent 41px,
                        transparent 80px,
                        rgba(14, 165, 233, 0.07) 80px,
                        rgba(14, 165, 233, 0.07) 81px);
            }
        }

        @media (prefers-reduced-motion: no-preference) {
            .service-card-bg::before {
                animation: serviceLinesDrift 28s linear infinite;
            }
        }

        @keyframes serviceLinesDrift {
            to { transform: translate(40px, 40px); }
        }

        .service-card-aurora {
            position: absolute;
            inset: 1px;
            border-radius: 19px;
            z-index: 0;
            pointer-events: none;
            opacity: 0.35;
            transition: opacity 0.45s ease;
            background:
                radial-gradient(ellipse 100% 80% at 10% 0%, color-mix(in srgb, var(--c1) 35%, transparent), transparent 55%),
                radial-gradient(ellipse 90% 70% at 92% 100%, color-mix(in srgb, var(--c3) 28%, transparent), transparent 52%);
        }

        @supports not (color: color-mix(in srgb, white, black)) {
            .service-card-aurora {
                background:
                    radial-gradient(ellipse 100% 80% at 10% 0%, rgba(99, 102, 241, 0.2), transparent 55%),
                    radial-gradient(ellipse 90% 70% at 92% 100%, rgba(79, 70, 229, 0.18), transparent 52%);
            }
        }

        @media (prefers-reduced-motion: no-preference) {
            .service-card-aurora {
                animation: serviceAurora 16s ease-in-out infinite alternate;
            }
        }

        @keyframes serviceAurora {
            from { opacity: 0.28; }
            to { opacity: 0.48; }
        }

        .service-card-inner {
            position: relative;
            z-index: 1;
            padding: 22px 22px 24px;
            border-radius: 19px;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(248, 250, 252, 0.94) 100%);
            -webkit-backdrop-filter: blur(12px);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.65);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
            transition:
                background 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                border-color 0.45s ease,
                box-shadow 0.45s ease;
        }

        .service-card-inner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 16px;
            right: 16px;
            height: 3px;
            border-radius: 0 0 4px 4px;
            background: linear-gradient(90deg, var(--c1), var(--c3));
            opacity: 0.92;
            pointer-events: none;
        }

        .service-card::after {
            content: '';
            position: absolute;
            inset: -2px;
            border-radius: 22px;
            background: linear-gradient(135deg, var(--c1), var(--c3));
            opacity: 0;
            z-index: -1;
            filter: blur(18px);
            transition: opacity 0.5s ease;
            pointer-events: none;
        }

        @media (hover: hover) and (prefers-reduced-motion: no-preference) {
            .service-card:hover,
            .service-card:focus-within {
                transform: translateY(-8px) scale(1.01);
                box-shadow:
                    0 8px 16px rgba(15, 23, 42, 0.06),
                    0 28px 56px rgba(var(--glow), 0.22);
                background-position: 100% 50%;
            }

            .service-card:hover::after,
            .service-card:focus-within::after {
                opacity: 0.35;
            }

            .service-card:hover .service-card-aurora,
            .service-card:focus-within .service-card-aurora {
                opacity: 0.65;
            }

            .service-card:hover .service-card-bg::before,
            .service-card:focus-within .service-card-bg::before {
                opacity: 0.75;
            }
        }

        @media (hover: hover) and (prefers-reduced-motion: reduce) {
            .service-card:hover,
            .service-card:focus-within {
                transform: translateY(-4px);
                box-shadow:
                    0 8px 24px rgba(var(--glow), 0.18);
            }
        }

        .service-card:hover .service-card-inner,
        .service-card:focus-within .service-card-inner {
            background: linear-gradient(155deg,
                    color-mix(in srgb, var(--c1) 14%, white) 0%,
                    color-mix(in srgb, var(--c2) 10%, white) 42%,
                    color-mix(in srgb, var(--c3) 8%, white) 100%);
            border-color: color-mix(in srgb, var(--c2) 28%, white);
            box-shadow:
                inset 0 1px 0 rgba(255, 255, 255, 0.7),
                inset 0 -1px 0 color-mix(in srgb, var(--c3) 8%, transparent);
        }

        @supports not (color: color-mix(in srgb, white, black)) {
            .service-card:hover .service-card-inner,
            .service-card:focus-within .service-card-inner {
                background: linear-gradient(155deg, #eef2ff 0%, #e0e7ff 45%, #dbeafe 100%);
                border-color: rgba(99, 102, 241, 0.35);
            }

            .service-card--a1:hover .service-card-inner,
            .service-card--a1:focus-within .service-card-inner {
                background: linear-gradient(155deg, #f3e8ff 0%, #ede9fe 50%, #e9d5ff 100%);
                border-color: rgba(139, 92, 246, 0.35);
            }

            .service-card--a2:hover .service-card-inner,
            .service-card--a2:focus-within .service-card-inner {
                background: linear-gradient(155deg, #ecfeff 0%, #e0f2fe 50%, #dbeafe 100%);
                border-color: rgba(14, 165, 233, 0.35);
            }

            .service-card--a3:hover .service-card-inner,
            .service-card--a3:focus-within .service-card-inner {
                background: linear-gradient(155deg, #eef2ff 0%, #e0e7ff 50%, #ddd6fe 100%);
                border-color: rgba(99, 102, 241, 0.35);
            }

            .service-card--a4:hover .service-card-inner,
            .service-card--a4:focus-within .service-card-inner {
                background: linear-gradient(155deg, #ccfbf1 0%, #99f6e4 45%, #5eead4 100%);
                border-color: rgba(13, 148, 136, 0.35);
            }

            .service-card--a5:hover .service-card-inner,
            .service-card--a5:focus-within .service-card-inner {
                background: linear-gradient(155deg, #f1f5f9 0%, #e2e8f0 50%, #cbd5e1 100%);
                border-color: rgba(71, 85, 105, 0.4);
            }
        }

        .service-icon-wrap {
            width: 54px;
            height: 54px;
            border-radius: 14px;
            display: grid;
            place-items: center;
            margin-bottom: 16px;
            background: linear-gradient(145deg,
                    color-mix(in srgb, var(--c1) 18%, white),
                    color-mix(in srgb, var(--c2) 12%, white));
            border: 1px solid color-mix(in srgb, var(--c2) 22%, white);
            box-shadow:
                0 4px 14px color-mix(in srgb, var(--c3) 18%, transparent),
                inset 0 1px 0 rgba(255, 255, 255, 0.75);
            transition:
                transform 0.45s cubic-bezier(0.34, 1.2, 0.64, 1),
                background 0.45s ease,
                border-color 0.45s ease,
                box-shadow 0.45s ease;
        }

        @supports not (color: color-mix(in srgb, white, black)) {
            .service-icon-wrap {
                background: linear-gradient(145deg, #eff6ff, #dbeafe);
                border: 1px solid rgba(59, 130, 246, 0.25);
                box-shadow: 0 4px 14px rgba(37, 99, 235, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.75);
            }
        }

        .service-card:hover .service-icon-wrap,
        .service-card:focus-within .service-icon-wrap {
            transform: translateY(-2px) scale(1.04);
            background: linear-gradient(145deg, var(--c1), var(--c2));
            border-color: color-mix(in srgb, var(--c3) 40%, white);
            box-shadow:
                0 12px 28px color-mix(in srgb, var(--c2) 35%, transparent),
                inset 0 1px 0 rgba(255, 255, 255, 0.35);
        }

        @supports not (color: color-mix(in srgb, white, black)) {
            .service-card:hover .service-icon-wrap,
            .service-card:focus-within .service-icon-wrap {
                border-color: rgba(255, 255, 255, 0.35);
            }

            .service-card--a1:hover .service-icon-wrap,
            .service-card--a1:focus-within .service-icon-wrap {
                background: linear-gradient(145deg, #8b5cf6, #7c3aed);
            }

            .service-card--a2:hover .service-icon-wrap,
            .service-card--a2:focus-within .service-icon-wrap {
                background: linear-gradient(145deg, #38bdf8, #0ea5e9);
            }

            .service-card--a3:hover .service-icon-wrap,
            .service-card--a3:focus-within .service-icon-wrap {
                background: linear-gradient(145deg, #818cf8, #6366f1);
            }

            .service-card--a4:hover .service-icon-wrap,
            .service-card--a4:focus-within .service-icon-wrap {
                background: linear-gradient(145deg, #2dd4bf, #14b8a6);
            }

            .service-card--a5:hover .service-icon-wrap,
            .service-card--a5:focus-within .service-icon-wrap {
                background: linear-gradient(145deg, #94a3b8, #64748b);
            }
        }

        .service-icon {
            font-size: 26px;
            line-height: 1;
            display: block;
            transition: transform 0.45s cubic-bezier(0.34, 1.35, 0.64, 1), filter 0.45s ease;
        }

        .service-card:hover .service-icon,
        .service-card:focus-within .service-icon {
            transform: scale(1.08);
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.12));
        }

        .service-card:hover .service-icon-wrap .service-icon,
        .service-card:focus-within .service-icon-wrap .service-icon {
            filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
        }

        .service-card h3 {
            font-size: 1.1rem;
            font-weight: 700;
            letter-spacing: -0.02em;
            margin-bottom: 8px;
            color: var(--heading);
            transition: color 0.4s ease;
        }

        .service-card p {
            font-size: 0.875rem;
            line-height: 1.6;
            color: var(--body);
            margin-bottom: 16px;
            transition: color 0.4s ease;
        }

        .service-card:hover h3,
        .service-card:focus-within h3 {
            color: color-mix(in srgb, var(--c3) 55%, #0f172a);
        }

        .service-card:hover p,
        .service-card:focus-within p {
            color: #334155;
        }

        @supports not (color: color-mix(in srgb, white, black)) {
            .service-card:hover h3,
            .service-card:focus-within h3 {
                color: #0f172a;
            }
        }

        .service-sub-list {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .service-sub-list li {
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.01em;
            background: var(--chip-bg);
            color: var(--chip-text);
            border: 1px solid var(--chip-border);
            padding: 6px 11px;
            border-radius: 8px;
            transition:
                background 0.35s ease,
                color 0.35s ease,
                border-color 0.35s ease,
                transform 0.35s ease;
        }

        .service-card:hover .service-sub-list li,
        .service-card:focus-within .service-sub-list li {
            background: color-mix(in srgb, var(--c2) 12%, white);
            color: color-mix(in srgb, var(--c3) 75%, #0f172a);
            border-color: color-mix(in srgb, var(--c2) 28%, white);
        }

        @supports not (color: color-mix(in srgb, white, black)) {
            .service-card:hover .service-sub-list li,
            .service-card:focus-within .service-sub-list li {
                background: rgba(239, 246, 255, 0.95);
                color: #1e3a8a;
                border-color: rgba(59, 130, 246, 0.28);
            }

            .service-card--a1:hover .service-sub-list li,
            .service-card--a1:focus-within .service-sub-list li {
                background: rgba(237, 233, 254, 0.95);
                color: #5b21b6;
                border-color: rgba(139, 92, 246, 0.3);
            }

            .service-card--a2:hover .service-sub-list li,
            .service-card--a2:focus-within .service-sub-list li {
                background: rgba(224, 242, 254, 0.95);
                color: #0c4a6e;
                border-color: rgba(14, 165, 233, 0.3);
            }

            .service-card--a3:hover .service-sub-list li,
            .service-card--a3:focus-within .service-sub-list li {
                background: rgba(224, 231, 255, 0.95);
                color: #3730a3;
                border-color: rgba(99, 102, 241, 0.3);
            }

            .service-card--a4:hover .service-sub-list li,
            .service-card--a4:focus-within .service-sub-list li {
                background: rgba(204, 251, 241, 0.95);
                color: #115e59;
                border-color: rgba(13, 148, 136, 0.3);
            }

            .service-card--a5:hover .service-sub-list li,
            .service-card--a5:focus-within .service-sub-list li {
                background: rgba(241, 245, 249, 0.98);
                color: #1e293b;
                border-color: rgba(71, 85, 105, 0.28);
            }
        }

        .service-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-top: 16px;
            font-size: 0.86rem;
            font-weight: 700;
            color: var(--link);
            transition: color 0.35s ease, gap 0.35s ease, transform 0.35s ease;
        }

        .service-card:hover .service-link,
        .service-card:focus-within .service-link {
            color: var(--link-hover);
        }

        .service-link:hover {
            color: var(--link-hover);
            gap: 10px;
        }

        .service-link:focus-visible {
            outline: 2px solid var(--c2);
            outline-offset: 3px;
            border-radius: 4px;
        }

        .service-card.av-card {
            -webkit-backdrop-filter: none;
            backdrop-filter: none;
        }

        .testi-card.av-card,
        .ind-card.av-card {
            -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
        }

        /* ─── WHY US ─── */
        #why-us {
            background: white;
        }

        .why-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .why-visual {
            position: relative;
            background: linear-gradient(135deg, var(--navy), var(--navy-light));
            border-radius: 24px;
            padding: 48px;
            overflow: hidden;
        }

        .why-visual::after {
            content: '';
            position: absolute;
            inset: 0;
            background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
            background-size: 40px 40px;
        }

        .why-feature-list {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .why-feat {
            background: rgba(255, 255, 255, 0.07);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 14px;
            padding: 20px;
            display: flex;
            gap: 14px;
            align-items: flex-start;
        }

        .why-feat-icon {
            width: 44px;
            height: 44px;
            flex-shrink: 0;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.16);
            display: grid;
            place-items: center;
            color: rgba(255, 255, 255, 0.95);
        }

        .why-feat-icon svg {
            width: 22px;
            height: 22px;
        }

        .why-feat h4 {
            font-size: 0.95rem;
            font-weight: 700;
            color: white;
            margin-bottom: 4px;
        }

        .why-feat p {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.5;
        }

        .why-points {
            display: flex;
            flex-direction: column;
            gap: 28px;
        }

        .why-point {
            display: flex;
            gap: 18px;
            padding: 18px 20px;
            border-radius: 14px;
            border: 1px solid var(--gray-light);
            background: var(--off-white);
            transition: border-color 0.25s ease, box-shadow 0.25s ease;
        }

        .why-point:hover {
            border-color: #cbd5e1;
            box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
        }

        .why-point-num {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: #fff;
            border: 1px solid var(--gray-light);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Sora', sans-serif;
            font-weight: 800;
            font-size: 0.85rem;
            color: var(--steel);
            flex-shrink: 0;
        }

        .why-point h4 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 6px;
            color: var(--navy);
        }

        .why-point p {
            font-size: 0.875rem;
            line-height: 1.65;
            color: var(--gray-text);
        }

        /* ─── PROCESS ─── */
        #process {
            background: var(--navy);
            position: relative;
            overflow: hidden;
        }

        #process::before {
            content: '';
            position: absolute;
            inset: 0;
            opacity: 0.04;
            background-image: linear-gradient(white 1px, transparent 1px), linear-gradient(90deg, white 1px, transparent 1px);
            background-size: 50px 50px;
        }

        #process .section-tag {
            color: var(--steel-pale);
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.1);
        }

        #process .section-title {
            color: white;
        }

        #process .section-desc {
            color: rgba(255, 255, 255, 0.6);
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
            gap: 16px;
            margin-top: 48px;
            position: relative;
            z-index: 2;
        }

        .process-step {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 26px 22px;
            position: relative;
            transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
        }

        .process-step:hover {
            background: rgba(255, 255, 255, 0.09);
            border-color: rgba(255, 255, 255, 0.16);
            transform: translateY(-2px);
        }

        .process-step-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            margin-bottom: 16px;
        }

        .process-step-idx {
            font-family: 'Sora', sans-serif;
            font-weight: 800;
            font-size: 0.72rem;
            letter-spacing: 0.16em;
            color: rgba(255, 255, 255, 0.35);
            text-transform: uppercase;
        }

        .process-step-icon {
            width: 46px;
            height: 46px;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.12);
            display: grid;
            place-items: center;
            color: rgba(255, 255, 255, 0.92);
        }

        .process-step-icon svg {
            width: 22px;
            height: 22px;
        }

        .process-step h4 {
            font-size: 1.05rem;
            font-weight: 700;
            color: white;
            margin-bottom: 10px;
            letter-spacing: -0.02em;
        }

        .process-step p {
            font-size: 0.86rem;
            line-height: 1.68;
            color: rgba(255, 255, 255, 0.58);
        }

        /* Testimonials section removed */

        /* ─── INDUSTRIES ─── */
        #industries {
            background: white;
        }

        .ind-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 20px;
            margin-top: 48px;
        }

        .ind-card {
            border: 1px solid var(--gray-light);
            border-radius: var(--radius-sm);
            padding: 28px 20px;
            text-align: center;
            transition: var(--transition);
            cursor: default;
        }

        .ind-card:hover {
            border-color: var(--steel);
            background: var(--off-white);
            transform: translateY(-3px);
        }

        .ind-icon {
            font-size: 32px;
            margin-bottom: 12px;
        }

        .ind-card span {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text-body);
        }

        /* ─── CTA BAND ─── */
        .cta-band {
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .cta-band::before {
            content: '';
            position: absolute;
            top: -80px;
            right: -80px;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: rgba(74, 111, 165, 0.2);
            filter: blur(60px);
        }

        .cta-inner {
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .cta-inner h2 {
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            font-weight: 800;
            color: white;
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }

        .cta-inner p {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.65);
            max-width: 540px;
            margin: 0 auto 36px;
            line-height: 1.75;
        }

        .cta-actions {
            display: flex;
            justify-content: center;
            gap: 14px;
            flex-wrap: wrap;
        }

        /* ─── CONTACT ─── */
        #contact {
            background: white;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.4fr;
            gap: 60px;
        }

        .contact-info h3 {
            font-size: 1.5rem;
            margin-bottom: 16px;
        }

        .contact-info p {
            font-size: 0.9rem;
            line-height: 1.75;
            color: var(--gray-text);
            margin-bottom: 32px;
        }

        .contact-items {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 14px;
        }

        .ci-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: var(--off-white);
            border: 1px solid var(--gray-light);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .ci-icon svg{
            width:20px;
            height:20px;
            display:block;
            stroke: var(--steel);
        }

        .ci-content strong {
            display: block;
            font-size: 0.85rem;
            color: var(--navy);
            margin-bottom: 2px;
        }

        .ci-content span {
            font-size: 0.85rem;
            color: var(--gray-text);
        }

        .contact-form {
            background: var(--off-white);
            border-radius: 20px;
            padding: 40px;
            border: 1px solid var(--gray-light);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 6px;
            margin-bottom: 16px;
        }

        .form-group label {
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--navy);
            letter-spacing: 0.3px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            padding: 12px 16px;
            border-radius: 10px;
            border: 1.5px solid var(--gray-light);
            font-family: 'Inter', sans-serif;
            font-size: 0.9rem;
            background: white;
            color: var(--text-body);
            transition: var(--transition);
            outline: none;
            width: 100%;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--steel);
            box-shadow: 0 0 0 3px rgba(74, 111, 165, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 110px;
        }

        .btn-submit {
            width: 100%;
            padding: 14px;
            background: var(--navy);
            color: white;
            border: none;
            border-radius: 12px;
            font-family: 'Sora', sans-serif;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
            letter-spacing: 0.3px;
        }

        .btn-submit:hover {
            background: var(--steel);
            transform: translateY(-2px);
            box-shadow: 0 6px 24px rgba(10, 22, 40, 0.25);
        }

        .form-success {
            display: none;
            text-align: center;
            padding: 24px;
        }

        .form-success.show {
            display: block;
        }

        .form-success h4 {
            color: var(--navy);
            margin-bottom: 8px;
        }

        .form-success p {
            color: var(--gray-text);
            font-size: 0.9rem;
        }

        /* ─── FOOTER ─── */
        footer {
            background: var(--navy);
            color: rgba(255, 255, 255, 0.65);
            padding: 72px 0 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.2fr;
            gap: 48px;
            margin-bottom: 48px;
        }

        .footer-brand .logo {
            color: white;
            margin-bottom: 16px;
        }

        .footer-brand p {
            font-size: 0.875rem;
            line-height: 1.75;
            max-width: 280px;
        }

        .footer-social {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }

        .social-btn {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            background: rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            transition: var(--transition);
        }

        .social-btn:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.25);
            transform: translateY(-2px);
        }

        .footer-col h5 {
            font-size: 0.85rem;
            font-weight: 700;
            color: white;
            letter-spacing: 0.5px;
            margin-bottom: 18px;
        }

        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .footer-links a {
            font-size: 0.85rem;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: white;
            padding-left: 4px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 22px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: gap;
        }

        .footer-bottom p {
            font-size: 0.8rem;
        }

        .footer-legal {
            display: flex;
            gap: 20px;
        }

        .footer-legal a {
            font-size: 0.8rem;
            transition: var(--transition);
        }

        .footer-legal a:hover {
            color: white;
        }

        /* ─── MODALS ─── */
        .modal-overlay {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 2000;
            background: rgba(10, 22, 40, 0.7);
            backdrop-filter: blur(6px);
            overflow-y: auto;
            padding: 40px 20px;
        }

        .modal-overlay.open {
            display: flex;
            align-items: flex-start;
            justify-content: center;
        }

        .modal-box {
            background: white;
            border-radius: 20px;
            max-width: 800px;
            width: 100%;
            padding: 48px;
            position: relative;
            max-height: 90vh;
            overflow-y: auto;
            animation: modalIn 0.3s ease;
            color: var(--text-body);
        }

        @keyframes modalIn {
            from {
                opacity: 0;
                transform: scale(0.95) translateY(20px)
            }

            to {
                opacity: 1;
                transform: scale(1) translateY(0)
            }
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: 1px solid var(--gray-light);
            background: var(--off-white);
            cursor: pointer;
            font-size: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            color: var(--text-body);
        }

        .modal-close:hover {
            background: var(--navy);
            color: white;
        }

        .modal-box h2 {
            font-size: 1.75rem;
            margin-bottom: 8px;
        }

        .modal-box .modal-date {
            font-size: 0.8rem;
            color: var(--gray-text);
            margin-bottom: 28px;
        }

        .modal-box h3 {
            font-size: 1.1rem;
            margin: 24px 0 10px;
            color: var(--navy);
        }

        .modal-box p {
            font-size: 0.9rem;
            line-height: 1.8;
            color: var(--text-body);
            margin-bottom: 12px;
        }

        .modal-box ul {
            padding-left: 20px;
            margin-bottom: 12px;
        }

        .modal-box ul li {
            font-size: 0.9rem;
            line-height: 1.8;
            color: var(--text-body);
            margin-bottom: 6px;
        }

        .modal-box p,
        .modal-box h3,
        .modal-box h2,
        .modal-box li {
            text-decoration: none;
        }

        .modal-box a {
            color: #1d4ed8;
            text-decoration: underline;
            text-underline-offset: 3px;
            font-weight: 600;
        }

        .modal-box a:hover {
            color: #1e3a8a;
        }

        /* (Removed) legacy WhatsApp floating button; use shared mobile FAB instead */

        /* ─── RESPONSIVE ─── */
        @media (max-width: 1024px) {
            .hero-inner {
                grid-template-columns: 1fr;
                gap: 48px;
            }

            .hero-wordmark {
                right: -18%;
                top: 18%;
                transform: none;
                font-size: clamp(2.8rem, 10vw, 5.4rem);
                opacity: 0.32;
            }

            .hero-visual {
                display: none;
            }

            .why-grid,
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 36px;
            }

            .process-steps {
                grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
            }
        }

        @media (max-width: 768px) {
            section {
                padding: 64px 0;
            }

            .hero {
                min-height: auto;
                padding-top: 0;
                padding-bottom: 48px;
            }

            .hero-inner {
                padding: 40px 16px;
                gap: 32px;
            }

            .hero-bubbles {
                opacity: 0.55;
            }

            .hero-wordmark {
                right: -22%;
                top: 12%;
                font-size: clamp(2.4rem, 11vw, 4.6rem);
                opacity: 0.26;
            }

            .nav-links,
            .nav-cta {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .process-steps {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 12px;
                text-align: center;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .hero-stats {
                gap: 20px;
                flex-wrap: wrap;
                justify-content: flex-start;
            }

            .hero h1 {
                font-size: clamp(1.45rem, 5.5vw + 0.35rem, 2.15rem);
                line-height: 1.12;
            }

            .testi-grid {
                grid-template-columns: 1fr;
            }

            .modal-box {
                padding: 28px;
            }

            .ind-grid {
                grid-template-columns: 1fr;
            }

            .trust-track {
                gap: 36px;
            }

            .trust-item {
                font-size: 0.8rem;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 16px;
            }

            .hero-inner {
                padding: 32px 12px;
            }

            .hero-badge {
                font-size: 0.72rem;
                padding: 5px 12px;
                max-width: 100%;
                flex-wrap: wrap;
            }

            .hero-actions {
                flex-direction: column;
                width: 100%;
            }

            .hero-actions .btn-primary,
            .hero-actions .btn-outline {
                text-align: center;
                width: 100%;
                justify-content: center;
            }

            .cta-actions {
                flex-direction: column;
                align-items: center;
            }

            .wa-float {
                right: 14px;
                bottom: 14px;
                width: 52px;
                height: 52px;
            }

            .wa-float svg {
                width: 26px;
                height: 26px;
            }
        }

        /* ─── ANIMATIONS ─── */
        .fade-up {
            opacity: 0;
            transform: translateY(22px);
            transition: opacity 0.65s cubic-bezier(.2, .8, .2, 1), transform 0.65s cubic-bezier(.2, .8, .2, 1);
        }

        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        @media (prefers-reduced-motion: reduce) {
            .fade-up {
                opacity: 1;
                transform: none;
                transition: none;
            }
        }

        .fade-up-delay-1 {
            transition-delay: 0.1s;
        }

        .fade-up-delay-2 {
            transition-delay: 0.2s;
        }

        .fade-up-delay-3 {
            transition-delay: 0.3s;
        }

        .fade-up-delay-4 {
            transition-delay: 0.4s;
        }

        /* Homepage: hide selected sections (reviews, industries, portfolio, contact) */
        body[data-page="home"] #industries,
        body[data-page="home"] #work,
        body[data-page="home"] #contact {
            display: none !important;
        }

/* ---- Shared site chrome (layout) ---- */
/* Safe corporate theme — fonts loaded from page <link> (Inter + Sora), no @import */

:root{
  --navy:#0f172a;
  --navy-2:#1e3a5f;
  --heading:#0f2d5c;
  --steel:#475569;
  --accent:#1d4ed8;
  --accent-hover:#1e40af;
  --accent-muted:rgba(29,78,216,.08);
  --accent-border:rgba(29,78,216,.22);
  --header-h:72px;
  --radius-pill:999px;
  --bg:#ffffff;
  --surface:#ffffff;
  --bg-soft:#f8fafc;
  --line:#e2e8f0;
  --text:#334155;
  --muted:#64748b;
  --shadow-sm:0 1px 3px rgba(15,23,42,.06);
  --shadow-md:0 12px 40px rgba(15,23,42,.1);
  --r:16px;
  --r-sm:12px;
  --r-xs:10px;
  --t:220ms cubic-bezier(.2,.8,.2,1);
}

@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
}

html{
  scroll-behavior:smooth;
  -webkit-text-size-adjust:100%;
  /* clip avoids horizontal bleed; fixed header does not rely on sticky */
  overflow-x:clip;
  scroll-padding-top:calc(var(--header-h) + 10px);
}
body{
  background:var(--bg);
  color:var(--text);
  font-family:'Inter',system-ui,-apple-system,'Segoe UI',Roboto,Arial,sans-serif;
  -webkit-font-smoothing:antialiased;
  overflow-x:visible;
  position:relative;
}
img,video,canvas{
  max-width:100%;
  height:auto;
}
.container{max-width:1200px;margin:0 auto;padding:0 24px}

/* Ambient bubbles — same glass orb treatment as homepage .hero-bubble (hidden on home) */
.page-bubbles{
  position:fixed;
  inset:0;
  z-index:0;
  overflow:hidden;
  pointer-events:none;
}
body[data-page="home"] .page-bubbles{display:none}
.page-bubble{
  position:absolute;
  border-radius:50%;
  background:radial-gradient(
    circle at 28% 28%,
    rgba(255,255,255,.35),
    rgba(37,99,235,.28) 38%,
    rgba(30,64,175,.22) 55%,
    rgba(79,70,229,.1) 68%,
    transparent 78%
  );
  border:1px solid rgba(37,99,235,.35);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.08) inset,
    0 16px 48px rgba(29,78,216,.18);
  opacity:.92;
  will-change:transform;
}
/* Positions + timing aligned with index hero (first 8); 9–10 fill extra slots */
.page-bubble:nth-child(1){width:140px;height:140px;left:6%;top:18%;animation:pageBubbleDrift 16s ease-in-out infinite}
.page-bubble:nth-child(2){width:88px;height:88px;left:22%;top:62%;animation:pageBubbleDrift 14s ease-in-out infinite -2s}
.page-bubble:nth-child(3){width:110px;height:110px;right:12%;top:14%;animation:pageBubbleDrift 18s ease-in-out infinite -5s}
.page-bubble:nth-child(4){width:72px;height:72px;right:28%;top:48%;animation:pageBubbleDrift 13s ease-in-out infinite -1s}
.page-bubble:nth-child(5){width:56px;height:56px;left:44%;top:12%;animation:pageBubbleDrift 12s ease-in-out infinite -3s}
.page-bubble:nth-child(6){width:96px;height:96px;right:6%;bottom:18%;animation:pageBubbleDrift 17s ease-in-out infinite -6s}
.page-bubble:nth-child(7){width:64px;height:64px;left:8%;bottom:22%;animation:pageBubbleDrift 15s ease-in-out infinite -4s}
.page-bubble:nth-child(8){width:48px;height:48px;left:52%;bottom:30%;animation:pageBubbleDrift 11s ease-in-out infinite -.5s}
.page-bubble:nth-child(9){width:64px;height:64px;right:18%;bottom:8%;animation:pageBubbleDrift 15s ease-in-out infinite -2.5s}
.page-bubble:nth-child(10){width:72px;height:72px;left:32%;top:38%;animation:pageBubbleDrift 16s ease-in-out infinite -3.5s}
@keyframes pageBubbleDrift{
  0%,100%{transform:translate(0,0) scale(1)}
  25%{transform:translate(8vw,-6vh) scale(1.08)}
  50%{transform:translate(-6vw,4vh) scale(.92)}
  75%{transform:translate(5vw,5vh) scale(1.04)}
}
@media (prefers-reduced-motion:reduce){
  .page-bubble{animation:none;opacity:.35}
}
/* Header shell: reserve vertical space so content clears the fixed bar */
#siteHeader{
  position:relative;
  z-index:100;
  overflow:visible;
  min-height:var(--header-h);
}
.site-footer,
section{
  position:relative;
  z-index:1;
}
section[id]{
  scroll-margin-top:calc(var(--header-h) + 16px);
}

/* Shared cards (homepage + future pages) */
.av-card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--r);
  transition:transform var(--t),box-shadow var(--t),border-color var(--t);
}
@media (hover:hover) and (prefers-reduced-motion: no-preference){
  .av-card:hover{
    transform:translateY(-4px);
    box-shadow:var(--shadow-md);
    border-color:#cbd5e1;
  }
}
.av-card--glass{
  background:rgba(255,255,255,.72);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
}

/* Header — fixed so it stays visible while scrolling (sticky can fail with ancestor overflow) */
.site-header{
  position:fixed;
  top:0;
  left:0;
  right:0;
  width:100%;
  z-index:1000;
  background:rgba(255,255,255,.97);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  border-bottom:1px solid var(--line);
  transition:box-shadow var(--t),border-color var(--t);
  overflow:visible;
  box-sizing:border-box;
}
.site-header .container{
  overflow:visible;
  padding-inline:16px;
}
.site-header.is-scrolled{box-shadow:var(--shadow-sm)}
.header-inner{
  min-height:var(--header-h);
  display:grid;
  grid-template-columns:auto minmax(0,1fr) auto;
  align-items:center;
  gap:8px 12px;
  padding-block:0;
  box-sizing:border-box;
  overflow:visible;
  min-width:0;
}
.brand{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-family:'Sora',system-ui,sans-serif;
  font-weight:700;
  font-size:1.02rem;
  letter-spacing:-.03em;
  color:var(--heading);
  white-space:nowrap;
  transition:font-size var(--t);
  flex-shrink:0;
  line-height:1;
  text-decoration:none;
}
.brand-lockup{
  display:inline-flex;
  align-items:baseline;
  flex-wrap:nowrap;
  line-height:1;
}
.brand-core{
  color:var(--steel);
  font-weight:800;
}
.brand-accent{
  color:var(--steel);
  font-weight:800;
}
.brand-suffix{
  margin-left:.28em;
  color:var(--steel);
  font-weight:700;
  font-size:.92em;
  letter-spacing:0;
}
.brand-mark{
  width:56px;height:56px;
  border-radius:10px;
  background:transparent;
  display:grid;place-items:center;
  box-shadow:none;
  flex-shrink:0;
  transition:width var(--t),height var(--t),border-radius var(--t);
}
.brand-mark svg{width:19px;height:19px;fill:currentColor}
.brand-mark img{width:100%;height:100%;object-fit:contain;display:block}
.site-header a.brand:visited{color:var(--heading)}
.site-header a.brand:visited .brand-core{color:var(--steel)}
.site-header a.brand:visited .brand-accent{color:var(--steel)}
.site-header a.brand:visited .brand-suffix{color:var(--steel)}

/* Undo legacy per-page `nav { position:fixed; ... }` — it was meant for an old navbar and breaks injected `<nav class="nav">` */
.site-header nav.nav{
  position:static;
  top:auto;
  right:auto;
  left:auto;
  bottom:auto;
  width:auto;
  max-width:none;
  min-height:0;
  margin:0;
  z-index:auto;
  background:transparent;
  backdrop-filter:none;
  -webkit-backdrop-filter:none;
  border:none;
  box-shadow:none;
}

.nav{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:nowrap;
  gap:1px;
  padding:2px;
  border:1px solid var(--line);
  background:var(--bg-soft);
  border-radius:var(--radius-pill);
  min-width:0;
  max-width:100%;
  justify-self:center;
  width:max-content;
  align-self:center;
  min-height:40px;
  box-sizing:border-box;
}
.nav a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:4px;
  padding:0 11px;
  min-height:36px;
  border-radius:var(--radius-pill);
  font-size:.83rem;
  font-weight:600;
  color:var(--navy-2);
  text-decoration:none;
  transition:background var(--t),color var(--t),box-shadow var(--t);
  flex-shrink:0;
  white-space:nowrap;
  line-height:1;
  box-sizing:border-box;
}
.nav a:visited{color:var(--navy-2)}
.nav a:hover{background:var(--surface);color:var(--heading)}
.nav a.is-active{
  background:var(--surface);
  color:var(--accent);
  box-shadow:0 0 0 1px var(--line);
}
.nav a.is-active:visited{color:var(--accent)}
.nav-item{
  position:relative;
  flex-shrink:0;
}
.nav-item.is-open,
.nav-item:focus-within{
  z-index:1100;
}
.nav-trigger{cursor:pointer}
.nav-trigger .chev{font-size:10px;opacity:.55;transition:transform var(--t)}
.nav-item.is-open .chev,
.nav-item:focus-within .chev{transform:rotate(180deg)}
/* Invisible hover bridge so pointer can move from trigger into menu without closing */
.nav-item::after{
  content:'';
  position:absolute;
  left:0;
  right:0;
  top:100%;
  height:20px;
  display:none;
  z-index:1099;
}
.nav-item:hover::after,
.nav-item.is-open::after,
.nav-item:focus-within::after{display:block}
.menu{
  position:absolute;
  left:0;
  top:calc(100% + 2px);
  margin-top:4px;
  min-width:min(320px,calc(100vw - 48px));
  width:min(360px,calc(100vw - 48px));
  max-height:min(72vh,520px);
  overflow-y:auto;
  overscroll-behavior:contain;
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--r);
  box-shadow:0 16px 48px rgba(15,23,42,.12),0 0 0 1px rgba(15,23,42,.04);
  padding:10px;
  display:none;
  z-index:1101;
  -webkit-overflow-scrolling:touch;
}
/* Open state driven by .is-open (pointer) or :focus-within (keyboard) */
.nav-item.is-open .menu,
.nav-item:focus-within .menu{
  display:block;
  animation:menuIn .22s ease forwards;
}
@keyframes menuIn{from{opacity:0;transform:translateY(-4px)}to{opacity:1;transform:translateY(0)}}
.menu a{
  width:100%;
  justify-content:flex-start;
  padding:11px 12px;
  border-radius:var(--r-sm);
  font-weight:500;
  text-decoration:none;
  color:var(--heading);
}
.menu a:visited{color:var(--heading)}
.menu a:hover{background:var(--bg-soft);transform:none}
.menu .nav-icon{flex-shrink:0;color:var(--steel)}
.menu a:hover .nav-icon{color:var(--accent)}
.menu .kicker{
  font-size:.68rem;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--muted);
  padding:8px 10px 4px;
}
.menu-grid{display:grid;grid-template-columns:1fr;gap:2px}

.header-actions{
  display:flex;
  align-items:center;
  gap:8px;
  flex-shrink:0;
}
@media (max-width:1180px){
  .nav a{padding:0 8px;min-height:34px;font-size:.78rem}
  .btn{padding:8px 10px;font-size:.8rem}
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:10px 14px;
  border-radius:var(--r-sm);
  border:1px solid var(--line);
  font-family:'Inter',system-ui,sans-serif;
  font-weight:600;
  font-size:.86rem;
  text-decoration:none;
  transition:transform var(--t),box-shadow var(--t),background var(--t),border-color var(--t),color var(--t);
  white-space:nowrap;
}
.btn:visited{color:var(--heading)}
.btn:focus-visible{outline:2px solid var(--accent);outline-offset:2px}
.btn:active{transform:translateY(1px)}
.btn-primary{
  background:var(--accent);
  color:#fff;
  border-color:transparent;
  box-shadow:0 4px 14px rgba(29,78,216,.25);
  position:relative;
}
.btn-primary:visited{color:#fff}
.btn-primary::before{
  content:'';
  position:absolute;
  inset:0;
  border-radius:inherit;
  padding:1px;
  background:linear-gradient(135deg,rgba(255,255,255,.35),transparent 40%,rgba(255,255,255,.12));
  -webkit-mask:linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);
  mask:linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
  pointer-events:none;
  opacity:.5;
}
.btn-primary:hover{
  background:var(--accent-hover);
  transform:translateY(-1px);
  box-shadow:0 8px 24px rgba(29,78,216,.3);
}
.btn-ghost{
  background:var(--surface);
  color:var(--heading);
}
.btn-ghost:visited{color:var(--heading)}
.btn-ghost:hover{background:var(--bg-soft);border-color:#cbd5e1}
.btn-call{
  background:rgba(16,185,129,.12);
  border-color:rgba(16,185,129,.28);
  color:#065f46;
}
.btn-call:visited{color:#065f46}
.btn-call .nav-icon{color:#10b981}
.btn-call:hover{
  background:rgba(16,185,129,.18);
  border-color:rgba(16,185,129,.34);
  transform:translateY(-1px);
  box-shadow:0 10px 26px rgba(16,185,129,.12);
}

.burger{
  width:44px;height:44px;
  border-radius:999px;
  border:1px solid rgba(15,23,42,.12);
  background:rgba(255,255,255,.75);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  display:none;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:4px;
  padding:0;
  box-shadow:0 14px 40px rgba(15,23,42,.12);
}
.burger span{
  display:block;
  width:18px;
  height:2px;
  background:rgba(30,58,95,.95);
  border-radius:2px;
  transition:transform var(--t),opacity var(--t),background var(--t);
}
.burger:hover{background:rgba(248,250,252,.9);border-color:rgba(99,102,241,.18)}
.burger:focus{outline:none}
.burger:focus-visible{outline:2px solid rgba(99,102,241,.55);outline-offset:3px}

.drawer-backdrop{
  position:fixed;inset:0;z-index:1200;
  background:rgba(15,23,42,.45);
  backdrop-filter:blur(4px);
  opacity:0;pointer-events:none;
  transition:opacity var(--t);
}
.drawer{
  position:fixed;top:0;right:0;bottom:0;z-index:1300;
  width:min(420px,92vw);
  background:var(--surface);
  border-left:1px solid var(--line);
  box-shadow:var(--shadow-md);
  transform:translateX(102%);
  transition:transform var(--t);
  display:flex;
  flex-direction:column;
}
.drawer-head{
  min-height:var(--header-h);
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 18px;
  border-bottom:1px solid var(--line);
}
.drawer-body{padding:14px 18px 22px;overflow:auto}
.drawer a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:13px 12px;
  border-radius:var(--r-sm);
  font-weight:600;
  color:var(--heading);
  border:1px solid transparent;
  text-decoration:none;
}
.drawer a:visited{color:var(--heading)}
.drawer a:hover{background:var(--bg-soft);border-color:var(--line)}
.drawer .section{
  margin-top:12px;
  margin-bottom:8px;
  font-size:.68rem;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--muted);
}
.drawer-actions{display:grid;gap:10px;padding:0 18px 18px}
.drawer-open .drawer-backdrop{opacity:1;pointer-events:auto}
.drawer-open .drawer{transform:translateX(0)}

.site-footer{
  margin-top:80px;
  background:linear-gradient(180deg,#123056 0%,#0c2748 42%,#081a30 100%);
  color:rgba(255,255,255,.78);
  border-top:1px solid rgba(147,197,253,.15);
}
.footer-inner{padding:68px 0 0}
.footer-grid{
  display:grid;
  grid-template-columns:minmax(0,2fr) repeat(3,minmax(0,1fr));
  gap:42px;
  padding-bottom:44px;
  align-items:start;
}
.footer-grid>*{min-width:0}
.footer-brand a.brand{color:#e8f1ff}
.footer-brand a.brand .brand-core{color:rgba(203,213,225,.95)}
.footer-brand a.brand .brand-accent{color:rgba(203,213,225,.95)}
.footer-brand a.brand .brand-suffix{color:rgba(203,213,225,.95)}
.footer-brand a.brand:visited{color:#e8f1ff}
.footer-brand a.brand:visited .brand-core{color:rgba(203,213,225,.95)}
.footer-brand a.brand:visited .brand-accent{color:rgba(203,213,225,.95)}
.footer-brand a.brand:visited .brand-suffix{color:rgba(203,213,225,.95)}
.footer-brand p{margin-top:14px;max-width:340px;line-height:1.75;font-size:.9rem}
.footer-title{
  color:#fff;
  font-family:'Sora',system-ui,sans-serif;
  font-weight:700;
  font-size:.78rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:14px;
}
.footer-links{list-style:none;display:grid;gap:10px;margin:0;padding:0}
.footer-links a{
  font-size:.88rem;
  color:rgba(255,255,255,.82);
  text-decoration:none;
  transition:color var(--t),transform var(--t);
}
.footer-links a:visited{color:rgba(255,255,255,.82)}
.footer-links a:hover{color:#fff;transform:translateX(2px)}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.1);
  padding:18px 0;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}
.footer-legal{display:flex;gap:18px;flex-wrap:wrap}
.footer-legal a{
  color:#bfdbfe;
  text-decoration:none;
  font-weight:500;
}
.footer-legal a:visited{color:#bfdbfe}
.footer-legal a:hover{color:#fff;text-decoration:underline;text-underline-offset:3px}
.footer-contact-plain{
  font-size:.88rem;
  color:rgba(255,255,255,.72);
  line-height:1.5;
  margin:0;
  padding:0;
  max-width:260px;
}
.footer-links li>.footer-contact-plain{padding-top:2px}
.socials{display:flex;gap:10px;margin-top:16px}
.social{
  width:40px;height:40px;
  border-radius:var(--r-sm);
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  display:grid;place-items:center;
  transition:transform var(--t),background var(--t),border-color var(--t);
  color:#fff;
  text-decoration:none;
}
.social svg{width:22px;height:22px;display:block}
.social--instagram svg{width:24px;height:24px}
.social--facebook svg{width:22px;height:22px}
.social--youtube svg{width:24px;height:24px}
.social:visited{color:#fff}
.social:hover{transform:translateY(-2px);background:rgba(255,255,255,.12);border-color:rgba(255,255,255,.2)}

section{padding:84px 0}

.fade-up{will-change:transform,opacity}

nav#navbar .nav-inner{gap:14px}
nav#navbar .nav-links{gap:4px;flex-wrap:nowrap}
nav#navbar .nav-links>li>a{white-space:nowrap}

@media (max-width:980px){
  .nav{display:none}
  .burger{display:flex}
  .footer-grid{grid-template-columns:1fr 1fr;gap:26px}
  section{padding:64px 0}
  .site-header .container{padding-inline:12px}
  .page-hero{
    padding-top:88px;
    padding-bottom:44px;
  }
  .page-hero .section-title,
  .section-title{
    font-size:clamp(1.5rem,3.2vw + .85rem,2.35rem);
  }
  .section-desc{
    font-size:0.95rem;
    max-width:100%;
  }
}
@media (max-width:640px){
  .footer-grid{grid-template-columns:1fr}
  .container{padding:0 16px}
  section{padding:48px 0}
  .site-footer{margin-top:48px}
  .footer-inner{padding-top:44px}
  .footer-bottom{flex-direction:column;align-items:flex-start;text-align:left}
  .footer-legal{flex-direction:column;gap:10px}
  .logo-strip-section{padding:32px 0}
  .logo-strip-row{gap:14px 20px}
  .portfolio-card,.pricing-card{padding:20px 18px}
  .portfolio-grid,.pricing-grid{gap:16px}
  .faq-item summary{padding:14px 14px;font-size:.9rem}
  .drawer{width:min(100vw,100%)}
  .header-actions{gap:6px}
  .header-actions .btn{padding:8px 10px;font-size:.78rem;gap:6px}
  /* Mobile navbar: hide Free consultation button */
  .header-actions .btn-primary{display:none}
  .header-actions{justify-self:end}
  /* Premium mobile alignment */
  .header-actions{gap:10px}
  .btn-call{padding:8px 10px;min-width:44px}
  .btn-call span{display:none}
  .btn-call .nav-icon{margin:0}
}

/* Mobile floating action menu (FAB) */
.mfab{
  position:fixed;
  right:16px;
  bottom:16px;
  z-index:1200;
  display:none;
}
@media (max-width:640px){
  .mfab{display:block}
}
.mfab-btn{
  width:56px;height:56px;
  border-radius:999px;
  border:1px solid rgba(37,211,102,.28);
  background:linear-gradient(135deg, rgba(37,211,102,.22), rgba(22,163,74,.18));
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  box-shadow:0 18px 46px rgba(15,23,42,.18);
  display:grid;place-items:center;
  color:#0B1020;
  cursor:pointer;
  transition:transform var(--t), box-shadow var(--t), background var(--t);
}
.mfab-btn:hover{transform:translateY(-2px)}
.mfab.is-open .mfab-btn{transform:translateY(-2px)}
.mfab-btn .nav-icon{color:#0B1020}

/* menu styles removed (WhatsApp-only button) */
@media (max-width:480px){
  .container{padding:0 14px}
  .brand{font-size:.88rem}
  .brand-mark{width:44px;height:44px}
  .brand-mark svg{width:17px;height:17px}
  .header-actions .btn-ghost span{
    position:absolute;width:1px;height:1px;padding:0;margin:-1px;
    overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;
  }
  .header-actions .btn-ghost{
    padding:8px 10px;
    min-width:40px;
    justify-content:center;
  }
}
@media (max-width:380px){
  .brand-suffix{display:none}
}

h1,h2,h3,h4,h5{
  font-family:'Sora',system-ui,sans-serif;
  letter-spacing:-.02em;
  line-height:1.14;
  color:var(--heading);
}
h1{font-weight:800}
h2,h3{font-weight:700}
h4,h5{font-weight:600}
.hero h1,
.page-hero h1,
.page-hero .section-title,
.section-title{
  font-family:'Sora',system-ui,sans-serif;
  letter-spacing:-.03em;
}
.drawer-head-title{
  font-family:'Sora',system-ui,sans-serif;
  font-weight:700;
  font-size:1.02rem;
  letter-spacing:-.02em;
  color:var(--heading);
}

.btn .nav-icon{color:var(--steel);flex-shrink:0}
.btn-primary .nav-icon{color:rgba(255,255,255,.95)}
.menu a{display:inline-flex;align-items:center;gap:10px}
.menu a span{flex:1}

.logo-strip-section{
  padding:48px 0;
  background:var(--bg-soft);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.logo-strip-head{text-align:center;margin-bottom:28px}
.logo-strip-head p{font-size:.88rem;color:var(--muted);margin-top:8px}
.logo-strip-row{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  align-items:center;
  gap:20px 32px;
}
.logo-placeholder{
  min-width:120px;
  height:40px;
  border-radius:var(--r-xs);
  border:1px dashed #cbd5e1;
  background:rgba(255,255,255,.8);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:.72rem;
  font-weight:600;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:#94a3b8;
}

.portfolio-section{background:var(--bg)}
.portfolio-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(min(100%,280px),1fr));
  gap:24px;
  margin-top:40px;
}
.portfolio-card{
  padding:28px;
  border-radius:var(--r);
  border:1px solid var(--line);
  background:var(--surface);
  transition:transform var(--t),box-shadow var(--t),border-color var(--t);
}
@media (hover:hover) and (prefers-reduced-motion: no-preference){
  .portfolio-card:hover{
    transform:translateY(-4px);
    box-shadow:var(--shadow-md);
    border-color:#cbd5e1;
  }
}
.portfolio-card h3{font-size:1.05rem;margin-bottom:10px}
.portfolio-card p{font-size:.88rem;color:var(--muted);line-height:1.65;margin-bottom:14px}
.portfolio-meta{font-size:.78rem;font-weight:600;color:var(--accent);letter-spacing:.02em}

.pricing-section{background:var(--bg-soft)}
.pricing-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(min(100%,260px),1fr));
  gap:22px;
  margin-top:40px;
  align-items:stretch;
}
.pricing-card{
  padding:28px 24px;
  border-radius:var(--r);
  border:1px solid var(--line);
  background:var(--surface);
  display:flex;
  flex-direction:column;
  transition:transform var(--t),box-shadow var(--t);
}
.pricing-card.featured{
  border-color:var(--accent-border);
  box-shadow:0 12px 36px rgba(29,78,216,.12);
  position:relative;
}
.pricing-card.featured::before{
  content:'';
  position:absolute;
  inset:0;
  border-radius:inherit;
  padding:1px;
  background:linear-gradient(145deg,var(--accent),rgba(29,78,216,.15));
  -webkit-mask:linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);
  mask:linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
  pointer-events:none;
}
.pricing-name{font-family:'Sora',system-ui,sans-serif;font-weight:700;font-size:1.05rem;margin-bottom:6px}
.pricing-price{font-size:1.75rem;font-weight:800;color:var(--heading);letter-spacing:-.02em}
.pricing-price span{font-size:.85rem;font-weight:600;color:var(--muted)}
.pricing-card ul{list-style:none;margin:18px 0 22px;display:grid;gap:10px;font-size:.86rem;color:var(--text)}
.pricing-card li{padding-left:20px;position:relative}
.pricing-card li::before{
  content:'';
  position:absolute;
  left:0;top:.55em;
  width:6px;height:6px;border-radius:50%;
  background:var(--accent);
  opacity:.7;
}

.faq-section{background:var(--bg)}
.faq-list{max-width:760px;margin:40px auto 0;display:grid;gap:10px}
.faq-item{
  border:1px solid var(--line);
  border-radius:var(--r-sm);
  background:var(--surface);
  overflow:hidden;
}
.faq-item summary{
  list-style:none;
  cursor:pointer;
  padding:16px 18px;
  font-family:'Sora',system-ui,sans-serif;
  font-weight:600;
  font-size:.95rem;
  color:var(--heading);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::after{
  content:'+';
  font-weight:400;
  font-size:1.25rem;
  color:var(--muted);
  flex-shrink:0;
}
.faq-item[open] summary::after{content:'–'}
.faq-item .faq-body{
  padding:0 18px 16px;
  font-size:.9rem;
  line-height:1.7;
  color:var(--muted);
  border-top:1px solid var(--bg-soft);
}

/* Legal pages: body text must read as normal prose, not links */
.legal .card{
  color:var(--text);
}
.legal .card h1,
.legal .card h2,
.legal .card h3{
  color:var(--heading);
  text-decoration:none;
}
.legal .card p,
.legal .card li{
  color:var(--text);
  text-decoration:none;
}
.legal .card a{
  color:var(--accent);
  text-decoration:none;
  font-weight:600;
  border-bottom:1px solid rgba(29,78,216,.28);
  padding-bottom:1px;
  transition:color var(--t),border-color var(--t),background var(--t);
}
.legal .card a:hover{
  color:var(--accent-hover);
  border-bottom-color:rgba(30,64,175,.45);
}
.legal .card a:focus-visible{
  outline:2px solid var(--accent);
  outline-offset:2px;
  border-radius:2px;
}