
    :root {
        --bg-0: #04050a;
        --bg-1: #0a0820;
        --bg-2: #0d101c;
        --bg-3: #15172a;
        --ink-0: #ffffff;
        --ink-1: rgba(255, 255, 255, 0.96);
        --ink-2: rgba(255, 255, 255, 0.70);
        --ink-3: rgba(255, 255, 255, 0.55);
        --ink-4: rgba(255, 255, 255, 0.38);
        --violet-0: #8b5cf6;
        --violet-1: #a78bfa;
        --violet-2: #6d28d9;
        --green-1: #4ade80;
        --green-2: #6ee7a8;
        --amber-1: #fcd34d;
        --line: rgba(255, 255, 255, 0.10);
        --line-strong: rgba(255, 255, 255, 0.18);
    }

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

    html,
    body {
        background: var(--bg-0);
        color: var(--ink-1);
        font-family: 'Geist', system-ui, -apple-system, sans-serif;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        overflow-x: hidden;
        scroll-behavior: smooth;
    }

    .mono {
        font-family: 'Geist Mono', ui-monospace, monospace;
    }

    /* =========================================================
     STAGE — outer container with atmospheric background
  ========================================================= */
    .stage {
        position: relative;
        width: 100%;
        height: 100vh;
        min-height: 820px;
        overflow: hidden;
        isolation: isolate;
        background:
            radial-gradient(120% 65% at 50% -8%,
                rgba(139, 92, 246, 0.32) 0%,
                rgba(99, 50, 200, 0.12) 35%,
                transparent 65%),
            radial-gradient(60% 35% at 50% 5%,
                rgba(167, 139, 250, 0.20) 0%,
                transparent 60%),
            linear-gradient(180deg, #0a0820 0%, #06070f 38%, #03040a 100%);
    }

    .stage::after {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(140% 95% at 50% 50%,
                transparent 38%,
                rgba(0, 0, 0, 0.55) 88%,
                rgba(0, 0, 0, 0.92) 100%);
        pointer-events: none;
        z-index: 50;
    }

    .noise {
        position: absolute;
        inset: 0;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.4 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
        opacity: 0.05;
        mix-blend-mode: overlay;
        pointer-events: none;
        z-index: 45;
    }

    /* =========================================================
     TOPBAR
  ========================================================= */
    .topbar {
        position: relative;
        z-index: 65;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        background: rgba(6, 7, 15, 0.42);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }

    .topbar-inner {
        max-width: 1440px;
        margin: 0 auto;
        padding: 10px 48px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        font-size: 13px;
        font-weight: 500;
        letter-spacing: 0.02em;
    }

    .topbar-left,
    .topbar-right {
        display: flex;
        align-items: center;
        gap: 18px;
    }

    .topbar-link {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        color: var(--ink-2);
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .topbar-link:hover {
        color: var(--ink-0);
    }

    .topbar-icon {
        width: 28px;
        height: 28px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.08);
        color: var(--violet-1);
        flex-shrink: 0;
    }

    .topbar-icon svg {
        width: 14px;
        height: 14px;
        fill: currentColor;
    }

    /* =========================================================
     NAVIGATION
  ========================================================= */
    .nav {
        position: relative;
        z-index: 60;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 22px 48px;
        max-width: 1440px;
        margin: 0 auto;
    }

    .logo {
        color: var(--ink-0);
        font-weight: 600;
        font-size: 22px;
        letter-spacing: -0.025em;
        display: inline-flex;
        align-items: baseline;
        text-decoration: none;
    }

    .logo sup {
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 0.08em;
        color: var(--violet-1);
        margin-left: 3px;
        text-transform: uppercase;
    }

    .nav-links {
        display: flex;
        gap: 22px;
        align-items: center;
    }

    .nav-toggle {
        display: none;
        width: 52px;
        height: 52px;
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(255, 255, 255, 0.03);
        align-items: center;
        justify-content: center;
        gap: 5px;
        flex-direction: column;
        cursor: pointer;
        transition: border-color 0.2s ease, background 0.2s ease;
    }

    .nav-toggle span {
        width: 20px;
        height: 2px;
        border-radius: 999px;
        background: var(--ink-0);
        transition: transform 0.25s ease, opacity 0.25s ease;
    }

    .nav.is-open .nav-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav.is-open .nav-toggle span:nth-child(2) {
        opacity: 0;
    }

    .nav.is-open .nav-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .nav-item {
        position: relative;
        padding: 16px 0;
    }

    .nav-link-main {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: var(--ink-1);
        text-decoration: none;
        font-size: 13px;
        font-weight: 500;
        transition: color 0.2s ease;
        letter-spacing: 0.01em;
    }

    .nav-link-main.is-active {
        color: var(--violet-1);
    }

    .nav-link-main::after {
        content: '';
        width: 6px;
        height: 6px;
        border-right: 1.5px solid currentColor;
        border-bottom: 1.5px solid currentColor;
        transform: rotate(45deg) translateY(-1px);
        opacity: 0.6;
        transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .nav-item:hover .nav-link-main,
    .nav-item:focus-within .nav-link-main {
        color: var(--violet-1);
    }

    .nav-item:hover .nav-link-main::after,
    .nav-item:focus-within .nav-link-main::after {
        transform: rotate(225deg) translateY(-1px);
        opacity: 1;
    }

    .nav-item::after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        height: 16px;
    }

    .nav-dropdown {
        position: absolute;
        top: 100%;
        left: 50%;
        width: 350px;
        padding: 12px;
        border-radius: 22px;
        background:
            radial-gradient(120% 120% at 0% 0%, rgba(139, 92, 246, 0.16), transparent 55%),
            rgba(14, 16, 30, 0.92);
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 22px 60px rgba(0, 0, 0, 0.38);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        transform: translateX(-50%) translateY(12px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    }

    .nav-dropdown-services {
        width: 1120px;
        padding: 20px;
    }

    .services-mega-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 18px;
    }

    .services-mega-col {
        min-width: 0;
        padding: 8px 10px 6px;
    }

    .services-mega-col h3 {
        color: #5b7cff;
        font-size: 15px;
        font-weight: 700;
        letter-spacing: -0.01em;
        margin-bottom: 14px;
    }

    .services-mega-visual {
        width: 100%;
        aspect-ratio: 16 / 7;
        border-radius: 14px;
        margin-bottom: 16px;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 14px 28px rgba(15, 23, 42, 0.18);
        background-size: cover;
        background-position: center;
    }

    .services-mega-visual-ai {
        background-image: url('../images/competency-agentic-ai.png');
    }

    .services-mega-visual-data {
        background-image: url('../images/competency-data-analytics.png');
    }

    .services-mega-visual-devops {
        background-image: url('../images/competency-process-automation.png');
    }

    .services-mega-visual-dev {
        background-image: url('../images/competency-digital-product.png');
    }

    .services-mega-links {
        list-style: none;
        display: grid;
        gap: 10px;
    }

    .services-mega-links a {
        color: var(--ink-1);
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        line-height: 1.35;
        transition: color 0.18s ease, transform 0.18s ease;
        display: inline-block;
    }

    .services-mega-links a:hover,
    .services-mega-links a:focus-visible {
        color: var(--violet-1);
        transform: translateX(2px);
        outline: none;
    }

    .nav-item:hover .nav-dropdown,
    .nav-item:focus-within .nav-dropdown {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(-50%) translateY(0);
    }

    .nav-sublink {
        display: block;
        padding: 14px 14px 13px;
        border-radius: 16px;
        text-decoration: none;
        transition: background 0.2s ease, transform 0.2s ease;
    }

    .nav-sublink:hover,
    .nav-sublink:focus-visible {
        background: rgba(255, 255, 255, 0.05);
        transform: translateY(-1px);
        outline: none;
    }

    .nav-sublink-title {
        display: block;
        color: var(--ink-0);
        font-size: 14px;
        font-weight: 600;
        letter-spacing: -0.01em;
        margin-bottom: 5px;
    }

    .nav-sublink-text {
        display: block;
        color: var(--ink-3);
        font-size: 12px;
        line-height: 1.5;
    }

    .nav-right {
        display: flex;
        align-items: center;
        gap: 18px;
    }

    .nav-mobile-cta {
        display: none;
    }

    .lang-switch {
        display: inline-flex;
        gap: 0;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid var(--line);
        border-radius: 999px;
        padding: 3px;
    }

    .lang-switch button {
        background: transparent;
        border: none;
        color: var(--ink-3);
        font-family: inherit;
        font-size: 12px;
        font-weight: 600;
        padding: 5px 12px;
        border-radius: 999px;
        cursor: pointer;
        transition: all 0.2s;
        letter-spacing: 0.02em;
    }

    .lang-switch button.active {
        background: rgba(255, 255, 255, 0.10);
        color: var(--ink-0);
    }

    .nav-login {
        background: transparent;
        border: none;
        color: var(--ink-1);
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        font-family: inherit;
        cursor: pointer;
    }

    .cta-primary {
        background: var(--ink-0);
        color: #000;
        border: none;
        border-radius: 999px;
        padding: 10px 20px;
        font-size: 14px;
        font-weight: 500;
        font-family: inherit;
        cursor: pointer;
        transition: transform 0.15s, box-shadow 0.15s;
    }

    .cta-primary:hover {
        transform: translateY(-1px);
        box-shadow: 0 8px 24px rgba(139, 92, 246, 0.25);
    }

    /* =========================================================
     MODAL
  ========================================================= */
    .modal-overlay {
        position: fixed;
        inset: 0;
        z-index: 120;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 24px;
        background: rgba(3, 4, 10, 0.72);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
    }

    .modal-overlay[hidden] {
        display: none;
    }

    .modal-card {
        position: relative;
        width: min(100%, 520px);
        padding: 34px 30px 30px;
        border-radius: 28px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        background:
            radial-gradient(100% 120% at 0% 0%, rgba(139, 92, 246, 0.18), transparent 55%),
            linear-gradient(180deg, #141626 0%, #0a0c18 100%);
        box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
    }

    .video-modal-card {
        width: min(100%, 960px);
        padding-bottom: 26px;
    }

    .video-modal-shell {
        margin-top: 22px;
        overflow: hidden;
        border-radius: 22px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        background: rgba(4, 6, 16, 0.88);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    }

    .video-modal-player {
        display: block;
        width: 100%;
        aspect-ratio: 16 / 9;
        background: #05070f;
    }

    .modal-close {
        position: absolute;
        top: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.04);
        color: var(--ink-1);
        font-size: 24px;
        line-height: 1;
        cursor: pointer;
    }

    .modal-eyebrow {
        display: inline-block;
        margin-bottom: 14px;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        color: var(--violet-1);
    }

    .modal-title {
        font-size: clamp(28px, 4vw, 36px);
        line-height: 1.05;
        letter-spacing: -0.03em;
        color: var(--ink-0);
        margin-bottom: 12px;
    }

    .modal-text {
        color: var(--ink-2);
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 24px;
    }

    .modal-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .modal-action {
        display: flex;
        flex-direction: column;
        gap: 8px;
        padding: 20px 18px;
        border-radius: 20px;
        text-decoration: none;
        color: var(--ink-1);
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    }

    .modal-action:hover {
        transform: translateY(-2px);
        border-color: rgba(167, 139, 250, 0.36);
        background: rgba(255, 255, 255, 0.06);
    }

    .modal-action-label {
        font-size: 18px;
        font-weight: 600;
        color: var(--ink-0);
    }

    .modal-action-meta {
        font-size: 13px;
        color: var(--ink-3);
        word-break: break-word;
    }

    /* =========================================================
     HERO
  ========================================================= */
    .hero {
        position: relative;
        z-index: 20;
        text-align: center;
        padding: 64px 24px 0;
        max-width: 1100px;
        margin: 0 auto;
    }

    .eyebrow {
        display: inline-block;
        font-size: 12px;
        color: var(--ink-2);
        letter-spacing: 0.18em;
        text-transform: uppercase;
        margin-bottom: 22px;
        font-weight: 600;
        padding: 6px 14px;
        border: 1px solid var(--line);
        border-radius: 999px;
        background: rgba(139, 92, 246, 0.06);
    }

    .headline {
        font-size: clamp(34px, 4.3vw, 64px);
        line-height: 1.05;
        letter-spacing: -0.035em;
        color: var(--ink-0);
        font-weight: 500;
        margin-bottom: 22px;
        max-width: 920px;
        margin-left: auto;
        margin-right: auto;
    }

    .headline em {
        font-style: normal;
        color: var(--violet-1);
    }

    .hero-sub {
        font-size: 17px;
        line-height: 1.55;
        color: var(--ink-2);
        max-width: 660px;
        margin: 0 auto 30px;
        font-weight: 400;
    }

    .hero-ctas {
        display: inline-flex;
        gap: 14px;
        align-items: center;
    }

    .btn-primary {
        background: var(--ink-0);
        color: #000;
        border: none;
        border-radius: 999px;
        padding: 14px 26px;
        font-size: 15px;
        font-weight: 500;
        font-family: inherit;
        cursor: pointer;
        transition: transform 0.15s, box-shadow 0.15s;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .btn-primary:hover {
        transform: translateY(-1px);
        box-shadow: 0 12px 32px rgba(139, 92, 246, 0.3);
    }

    .btn-primary::after {
        content: '→';
    }

    .btn-ghost {
        background: transparent;
        color: var(--ink-1);
        border: 1px solid var(--line-strong);
        border-radius: 999px;
        padding: 13px 24px;
        font-size: 15px;
        font-weight: 500;
        font-family: inherit;
        cursor: pointer;
        transition: background 0.2s, border-color 0.2s;
        text-decoration: none;
    }

    .btn-ghost:hover {
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.32);
    }

    /* =========================================================
     3D SCENE — TILTED TABLE PERSPECTIVE
  ========================================================= */
    .scene {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        top: 38%;
        z-index: 10;
        perspective: 1200px;
        perspective-origin: 50% -5%;
        overflow: hidden;
    }

    .scene::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg,
                var(--bg-0) 0%,
                rgba(4, 5, 10, 0.92) 15%,
                rgba(4, 5, 10, 0.55) 32%,
                rgba(4, 5, 10, 0.15) 55%,
                rgba(4, 5, 10, 0) 80%);
        pointer-events: none;
        z-index: 40;
    }

    .scene::after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 22%;
        background: linear-gradient(180deg,
                rgba(4, 5, 10, 0) 0%,
                rgba(4, 5, 10, 0.85) 55%,
                var(--bg-0) 100%);
        pointer-events: none;
        z-index: 42;
    }

    .floor {
        position: absolute;
        width: 160%;
        left: -30%;
        bottom: -8%;
        height: 2600px;
        transform-style: preserve-3d;
        transform: rotateX(65deg);
        transform-origin: 50% 100%;
    }

    .lane {
        position: absolute;
        top: 0;
        bottom: 0;
        width: 25%;
    }

    .lane.l1 {
        left: 0%;
    }

    .lane.l2 {
        left: 25%;
    }

    .lane.l3 {
        left: 50%;
    }

    .lane.l4 {
        left: 75%;
    }

    .track {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        gap: 40px;
        padding: 20px;
        will-change: transform;
    }

    .track.down1 {
        animation: scrollDown 95s linear infinite;
    }

    .track.up1 {
        animation: scrollUp 110s linear infinite;
    }

    .track.down2 {
        animation: scrollDown 88s linear infinite;
    }

    .track.up2 {
        animation: scrollUp 105s linear infinite;
    }

    @keyframes scrollDown {
        from {
            transform: translateY(-50%);
        }

        to {
            transform: translateY(0);
        }
    }

    @keyframes scrollUp {
        from {
            transform: translateY(0);
        }

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

    /* =========================================================
     TILES
  ========================================================= */
    .tile {
        width: 100%;
        aspect-ratio: 16 / 10;
        border-radius: 22px;
        background: #0d101c;
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.06),
            0 14px 40px rgba(0, 0, 0, 0.55),
            0 2px 8px rgba(0, 0, 0, 0.3);
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        backface-visibility: hidden;
    }

    .tile::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 40%;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
        pointer-events: none;
        border-radius: 22px 22px 0 0;
    }

    .photo-green {
        background: radial-gradient(80% 100% at 30% 50%, rgba(40, 80, 75, 0.42), transparent 70%), linear-gradient(135deg, #15222a 0%, #20383a 40%, #355a4f 70%, #1f2e2c 100%);
    }

    .photo-warm {
        background: radial-gradient(80% 100% at 40% 60%, rgba(140, 80, 68, 0.38), transparent 70%), linear-gradient(135deg, #24162a 0%, #3a2226 40%, #5e3e36 70%, #3a2230 100%);
    }

    .photo-violet {
        background: radial-gradient(80% 100% at 50% 40%, rgba(120, 90, 170, 0.42), transparent 70%), linear-gradient(135deg, #221638 0%, #3a3060 50%, #5a4485 100%);
    }

    .photo-blue {
        background: radial-gradient(80% 100% at 60% 40%, rgba(70, 105, 165, 0.42), transparent 70%), linear-gradient(135deg, #18234a 0%, #243060 50%, #3a558a 100%);
    }

    .photo-rose {
        background: radial-gradient(80% 100% at 35% 55%, rgba(160, 95, 120, 0.38), transparent 70%), linear-gradient(135deg, #2e1832 0%, #4a253c 50%, #6e3a55 100%);
    }

    .photo-amber {
        background: radial-gradient(80% 100% at 50% 50%, rgba(160, 118, 68, 0.35), transparent 70%), linear-gradient(135deg, #24181a 0%, #3e2e22 50%, #6e4a24 100%);
    }

    .photo-teal {
        background: radial-gradient(80% 100% at 45% 50%, rgba(55, 118, 118, 0.4), transparent 70%), linear-gradient(135deg, #0a2426 0%, #163e3e 50%, #226666 100%);
    }

    .photo-slate {
        background: radial-gradient(80% 100% at 50% 50%, rgba(105, 115, 135, 0.32), transparent 70%), linear-gradient(135deg, #161624 0%, #242432 50%, #3e3e55 100%);
    }

    .pill-overlay {
        position: relative;
        z-index: 2;
        display: inline-flex;
        align-items: center;
        gap: 12px;
        padding: 16px 32px;
        background: rgba(18, 16, 32, 0.78);
        backdrop-filter: blur(20px) saturate(140%);
        -webkit-backdrop-filter: blur(20px) saturate(140%);
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: 999px;
        color: var(--ink-0);
        font-size: 21px;
        font-weight: 500;
        letter-spacing: -0.005em;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        cursor: pointer;
        transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
    }

    .pill-overlay:hover,
    .pill-overlay:focus-visible {
        transform: translateY(-1px);
        border-color: rgba(191, 219, 254, 0.35);
        box-shadow: 0 14px 34px rgba(0, 0, 0, 0.55);
        outline: none;
    }

    .pill-overlay .dot {
        width: 11px;
        height: 11px;
        border-radius: 50%;
        background: #4ade80;
        box-shadow: 0 0 14px #4ade80;
    }

    .pill-overlay .star {
        color: var(--violet-1);
        font-size: 22px;
        line-height: 1;
    }

    .tile-chat {
        flex-direction: column;
        justify-content: center;
        align-items: stretch;
        padding: 32px 38px;
        gap: 12px;
        background: linear-gradient(180deg, #181a2a 0%, #0d0f1c 100%);
    }

    .tile-chat .bubble {
        font-size: 22px;
        line-height: 1.4;
        color: var(--ink-1);
        font-weight: 400;
        letter-spacing: -0.01em;
    }

    .tile-chat .bubble.muted {
        color: var(--ink-3);
    }

    .tile-chat .meta {
        margin-top: 10px;
        font-size: 18px;
        color: var(--ink-3);
        text-transform: uppercase;
        letter-spacing: 0.08em;
        font-weight: 600;
    }

    .tile-doc {
        flex-direction: column;
        justify-content: space-between;
        align-items: stretch;
        padding: 30px 32px;
        background: linear-gradient(180deg, #15172a 0%, #0a0c18 100%);
    }

    .tile-doc .doc-row {
        display: flex;
        gap: 20px;
        align-items: center;
    }

    .tile-doc .doc-icon {
        width: 54px;
        height: 66px;
        border-radius: 9px;
        background: linear-gradient(180deg, #8b5cf6, #6d28d9);
        border: 1px solid rgba(167, 139, 250, 0.4);
        position: relative;
        flex-shrink: 0;
    }

    .tile-doc .doc-icon::after {
        content: '';
        position: absolute;
        inset: 10px 9px;
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0px, rgba(255, 255, 255, 0.5) 2px, transparent 2px, transparent 7px),
            linear-gradient(180deg, transparent 10px, rgba(255, 255, 255, 0.35) 10px, rgba(255, 255, 255, 0.35) 12px, transparent 12px, transparent 19px),
            linear-gradient(180deg, transparent 22px, rgba(255, 255, 255, 0.35) 22px, rgba(255, 255, 255, 0.35) 24px, transparent 24px);
    }

    .tile-doc .doc-text {
        flex: 1;
        min-width: 0;
    }

    .tile-doc .doc-name {
        font-size: 21px;
        font-weight: 500;
        color: var(--ink-0);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        letter-spacing: -0.01em;
        cursor: pointer;
        transition: color 0.18s ease, text-shadow 0.18s ease;
    }

    .tile-doc .doc-name:hover,
    .tile-doc .doc-name:focus-visible {
        color: #dbe8ff;
        text-shadow: 0 0 18px rgba(139, 92, 246, 0.24);
        outline: none;
    }

    .tile-doc .doc-sub {
        font-size: 18px;
        color: var(--ink-3);
        margin-top: 5px;
        font-weight: 500;
    }

    .tile-doc .status {
        align-self: flex-start;
        display: inline-flex;
        align-items: center;
        gap: 9px;
        background: rgba(34, 197, 94, 0.14);
        color: #6ee7a8;
        border: 1px solid rgba(34, 197, 94, 0.32);
        padding: 8px 16px;
        border-radius: 999px;
        font-size: 16px;
        font-weight: 600;
    }

    .tile-doc .status::before {
        content: '';
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: currentColor;
        box-shadow: 0 0 9px currentColor;
    }

    .tile-doc .status.amber {
        background: rgba(251, 191, 36, 0.14);
        color: #fcd34d;
        border-color: rgba(251, 191, 36, 0.32);
    }

    .tile-pay {
        flex-direction: column;
        align-items: stretch;
        justify-content: space-between;
        padding: 30px 32px;
        background: linear-gradient(180deg, #15172a 0%, #0a0c18 100%);
    }

    .tile-pay .pay-label {
        font-size: 18px;
        color: var(--ink-3);
        text-transform: uppercase;
        letter-spacing: 0.08em;
        font-weight: 600;
    }

    .tile-pay .pay-amt {
        font-size: 48px;
        font-weight: 500;
        letter-spacing: -0.03em;
        color: var(--ink-0);
        line-height: 1;
        font-feature-settings: 'tnum';
        margin-top: auto;
    }

    .tile-pay .pay-amt .c {
        font-size: 27px;
        color: var(--ink-2);
    }

    .tile-pay .pay-meta {
        font-size: 18px;
        color: var(--ink-2);
        margin-top: 10px;
        font-weight: 500;
    }

    .tile-appt {
        flex-direction: row;
        align-items: center;
        padding: 28px 30px;
        gap: 20px;
        background: linear-gradient(180deg, #15172a 0%, #0a0c18 100%);
    }

    .tile-appt .cal {
        width: 78px;
        height: 93px;
        border-radius: 18px;
        background: linear-gradient(180deg, rgba(139, 92, 246, 0.18), rgba(109, 40, 217, 0.08));
        border: 1px solid rgba(167, 139, 250, 0.25);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .tile-appt .cal .mon {
        font-size: 18px;
        font-weight: 600;
        color: var(--violet-1);
        text-transform: uppercase;
        letter-spacing: 0.06em;
    }

    .tile-appt .cal .day {
        font-size: 33px;
        font-weight: 500;
        color: var(--ink-0);
        letter-spacing: -0.02em;
        line-height: 1;
        margin-top: 5px;
    }

    .tile-appt .info {
        flex: 1;
        min-width: 0;
    }

    .tile-appt .a-title {
        font-size: 21px;
        font-weight: 500;
        color: var(--ink-0);
        letter-spacing: -0.01em;
        margin-bottom: 6px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        cursor: pointer;
        transition: color 0.18s ease, text-shadow 0.18s ease;
    }

    .tile-appt .a-title:hover,
    .tile-appt .a-title:focus-visible {
        color: #dbe8ff;
        text-shadow: 0 0 18px rgba(56, 189, 248, 0.28);
        outline: none;
    }

    .tile-appt .a-time {
        font-size: 18px;
        color: var(--ink-3);
        font-weight: 500;
    }

    .tile-metric {
        flex-direction: column;
        align-items: stretch;
        justify-content: space-between;
        padding: 30px 32px;
        background: linear-gradient(180deg, #15172a 0%, #0a0c18 100%);
    }

    .tile-metric .m-label {
        font-size: 18px;
        color: var(--ink-3);
        text-transform: uppercase;
        letter-spacing: 0.08em;
        font-weight: 600;
    }

    .tile-metric .m-value {
        font-size: 56px;
        font-weight: 500;
        letter-spacing: -0.03em;
        color: var(--ink-0);
        line-height: 1;
        font-feature-settings: 'tnum';
        margin-top: auto;
    }

    .tile-metric .m-delta {
        font-size: 18px;
        color: #6ee7a8;
        margin-top: 10px;
        font-weight: 500;
    }

    /* =========================================================
     CONTENT SECTIONS — below the hero
  ========================================================= */
    .section {
        position: relative;
        max-width: 1280px;
        margin: 0 auto;
        padding: 120px 48px;
    }

    .trust-strip {
        max-width: 1280px;
        margin: 0 auto;
        padding: 28px 48px 0;
    }

    .trust-strip-inner {
        display: grid;
        grid-template-columns: 0.9fr 1.1fr;
        gap: 26px;
        border: 1px solid rgba(167, 139, 250, 0.14);
        border-radius: 28px;
        padding: 28px;
        background:
            radial-gradient(90% 120% at 0% 0%, rgba(139, 92, 246, 0.16), transparent 55%),
            radial-gradient(80% 100% at 100% 100%, rgba(74, 222, 128, 0.08), transparent 52%),
            linear-gradient(180deg, rgba(21, 23, 42, 0.96) 0%, rgba(10, 12, 24, 0.96) 100%);
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.04),
            0 24px 60px rgba(0, 0, 0, 0.22);
    }

    .trust-strip-label {
        display: inline-block;
        margin-bottom: 16px;
        font-size: 11px;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        color: var(--ink-3);
        font-weight: 700;
    }

    .trust-strip-copy h2 {
        color: var(--ink-0);
        font-size: clamp(26px, 3vw, 38px);
        line-height: 1.08;
        letter-spacing: -0.035em;
        font-weight: 500;
        margin-bottom: 16px;
        max-width: 440px;
    }

    .trust-strip-copy p {
        color: var(--ink-2);
        font-size: 15px;
        line-height: 1.7;
        max-width: 440px;
    }

    .trust-strip-points {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 20px;
    }

    .trust-strip-points span {
        display: inline-flex;
        align-items: center;
        min-height: 32px;
        padding: 0 12px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.08);
        color: var(--ink-1);
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0.01em;
    }

    .trust-strip-spotlight {
        position: relative;
        margin-top: 22px;
        padding: 20px 20px 18px;
        border-radius: 20px;
        border: 1px solid rgba(167, 139, 250, 0.18);
        background:
            radial-gradient(90% 120% at 0% 0%, rgba(139, 92, 246, 0.18), transparent 55%),
            linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(10, 12, 24, 0.52) 100%);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    }

    .trust-strip-spotlight-kicker {
        display: inline-flex;
        margin-bottom: 10px;
        color: #a5b4fc;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
    }

    .trust-strip-spotlight strong {
        display: block;
        color: var(--ink-0);
        font-size: 18px;
        line-height: 1.45;
        letter-spacing: -0.02em;
        max-width: 36ch;
    }

    .trust-strip-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
        align-self: center;
    }

    .trust-chip {
        position: relative;
        overflow: hidden;
        padding: 20px 18px 18px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        min-height: 138px;
        transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
    }

    .trust-chip::after {
        content: '';
        position: absolute;
        inset: auto -10% -38% auto;
        width: 150px;
        height: 150px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.06);
        filter: blur(10px);
        opacity: 0.6;
        pointer-events: none;
    }

    .trust-chip:hover {
        transform: translateY(-4px);
        border-color: rgba(167, 139, 250, 0.24);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
    }

    .trust-chip-pricing::after {
        background: rgba(139, 92, 246, 0.14);
    }

    .trust-chip-ownership::after {
        background: rgba(96, 165, 250, 0.14);
    }

    .trust-chip-compliance::after {
        background: rgba(56, 189, 248, 0.14);
    }

    .trust-chip-delivery::after {
        background: rgba(16, 185, 129, 0.14);
    }

    .trust-chip-kicker {
        display: inline-block;
        margin-bottom: 14px;
        color: var(--violet-1);
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
    }

    .trust-chip strong,
    .proof-card strong {
        display: block;
        color: var(--ink-0);
        font-size: 22px;
        margin-bottom: 8px;
        letter-spacing: -0.02em;
        line-height: 1.1;
    }

    .trust-chip span,
    .proof-card span {
        color: var(--ink-3);
        font-size: 13px;
        line-height: 1.6;
    }

    .section-head {
        max-width: 720px;
        margin-bottom: 64px;
    }

    .competency-showcase {
        margin-bottom: 72px;
        padding: 54px 36px 24px;
        border-radius: 30px;
        background:
            radial-gradient(70% 90% at 0% 0%, rgba(139, 92, 246, 0.08), transparent 55%),
            radial-gradient(60% 80% at 100% 100%, rgba(125, 211, 252, 0.08), transparent 55%),
            linear-gradient(180deg, #f6f8fd 0%, #eef2fb 100%);
        border: 1px solid rgba(122, 138, 173, 0.18);
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.65),
            0 18px 50px rgba(11, 16, 32, 0.08);
    }

    .competency-showcase-head {
        max-width: 720px;
        margin: 0 auto 34px;
        text-align: center;
    }

    .competency-showcase .section-eyebrow {
        color: #8b5cf6;
    }

    .competency-showcase-title {
        color: #0f172a;
        font-size: clamp(34px, 4vw, 56px);
        line-height: 1.05;
        letter-spacing: -0.04em;
        font-weight: 500;
    }

    .competency-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0 22px;
    }

    .competency-item {
        position: relative;
        display: grid;
        grid-template-columns: 1fr 168px;
        gap: 22px;
        align-items: center;
        padding: 20px 12px;
        border-top: 1px solid rgba(100, 116, 139, 0.18);
        min-height: 154px;
    }

    .competency-copy {
        position: relative;
        min-width: 0;
    }

    .competency-copy h3 {
        color: #0f172a;
        font-size: 22px;
        line-height: 1.25;
        letter-spacing: -0.02em;
        font-weight: 600;
        max-width: 280px;
    }

    .competency-visual {
        width: 100%;
        aspect-ratio: 16 / 10;
        border-radius: 18px;
        position: relative;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.7);
        box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
    }

    .competency-visual::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 58%);
    }

    .competency-visual-product {
        background:
            linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
            url('../images/competency-digital-product.png') center/cover no-repeat;
    }

    .competency-visual-process {
        background:
            linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01)),
            url('../images/competency-process-automation.png') center/cover no-repeat;
    }

    .competency-visual-aiapp {
        background:
            linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
            url('../images/competency-ai-application.png') center/cover no-repeat;
    }

    .competency-visual-agentic {
        background:
            linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01)),
            url('../images/competency-agentic-ai.png') center/cover no-repeat;
    }

    .competency-visual-data {
        background:
            linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01)),
            url('../images/competency-data-analytics.png') center/cover no-repeat;
    }

    .competency-visual-web {
        background:
            linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01)),
            url('../images/competency-web-design.png') center/cover no-repeat;
    }

    .competency-visual-mobile {
        background:
            linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01)),
            url('../images/competency-mobile-app.png') center/cover no-repeat;
    }

    .competency-visual-commerce {
        background:
            linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01)),
            url('../images/competency-commerce-portal.png') center/cover no-repeat;
    }

    .competency-hover-card {
        position: absolute;
        top: -10px;
        left: -14px;
        width: min(100%, 500px);
        padding: 22px 24px 20px;
        border-radius: 22px;
        background:
            radial-gradient(120% 120% at 0% 0%, rgba(184, 223, 0, 0.12), transparent 48%),
            rgba(255, 255, 255, 0.98);
        border-top: 3px solid #b8df00;
        box-shadow: 0 22px 48px rgba(15, 23, 42, 0.14);
        opacity: 0;
        visibility: hidden;
        transform: translateY(8px);
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
        z-index: 3;
    }

    .competency-hover-card p {
        color: #475569;
        font-size: 15px;
        line-height: 1.7;
        margin: 18px 0 18px;
        max-width: 360px;
    }

    .competency-hover-card a {
        color: #0f172a;
        text-decoration: none;
        font-weight: 700;
        font-size: 15px;
    }

    .competency-item:hover .competency-hover-card,
    .competency-item:focus-within .competency-hover-card {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .section-eyebrow {
        display: inline-block;
        font-size: 12px;
        font-weight: 600;
        color: var(--violet-1);
        letter-spacing: 0.18em;
        text-transform: uppercase;
        margin-bottom: 18px;
    }

    .section-title {
        font-size: clamp(30px, 3.4vw, 48px);
        font-weight: 500;
        letter-spacing: -0.03em;
        line-height: 1.1;
        color: var(--ink-0);
        margin-bottom: 18px;
    }

    .section-lead {
        font-size: 17px;
        line-height: 1.55;
        color: var(--ink-2);
        max-width: 620px;
    }

    /* ---- SERVICES (4 Cards, 2x2) ---- */
    .services-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .service-card {
        background: linear-gradient(180deg, var(--bg-3) 0%, var(--bg-2) 100%);
        border: 1px solid var(--line);
        border-radius: 24px;
        padding: 36px 32px;
        position: relative;
        overflow: hidden;
        transition: transform 0.25s, border-color 0.25s;
    }

    .service-card:hover {
        transform: translateY(-2px);
        border-color: rgba(167, 139, 250, 0.4);
    }

    .service-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(80% 60% at 20% 0%, rgba(139, 92, 246, 0.10), transparent 60%);
        pointer-events: none;
    }

    .service-card[id] {
        scroll-margin-top: 120px;
    }

    .service-num {
        font-family: 'Geist Mono', monospace;
        font-size: 12px;
        font-weight: 500;
        color: var(--violet-1);
        letter-spacing: 0.08em;
        margin-bottom: 24px;
        display: block;
    }

    .service-title {
        font-size: 24px;
        font-weight: 500;
        letter-spacing: -0.02em;
        color: var(--ink-0);
        margin-bottom: 12px;
    }

    .service-desc {
        font-size: 15px;
        line-height: 1.55;
        color: var(--ink-2);
        margin-bottom: 24px;
    }

    .service-bullets {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 9px;
    }

    .service-bullets li {
        font-size: 14px;
        color: var(--ink-2);
        padding-left: 22px;
        position: relative;
        line-height: 1.5;
    }

    .service-bullets li::before {
        content: '';
        position: absolute;
        left: 0;
        top: 9px;
        width: 12px;
        height: 1px;
        background: var(--violet-1);
    }

    .why-section {
        padding-top: 40px;
    }

    .why-grid,
    .tech-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .why-card,
    .tech-card,
    .proof-card {
        background: linear-gradient(180deg, var(--bg-3) 0%, var(--bg-2) 100%);
        border: 1px solid var(--line);
        border-radius: 22px;
        padding: 28px 26px;
    }

    .why-kicker {
        display: inline-block;
        margin-bottom: 18px;
        font-family: 'Geist Mono', monospace;
        color: var(--violet-1);
        font-size: 12px;
        letter-spacing: 0.12em;
    }

    .why-card h3,
    .tech-card h3 {
        color: var(--ink-0);
        font-size: 22px;
        font-weight: 500;
        letter-spacing: -0.02em;
        margin-bottom: 10px;
    }

    .why-card p,
    .tech-card p {
        color: var(--ink-2);
        font-size: 15px;
        line-height: 1.6;
    }

    /* ---- METHODIK (3 Schritte horizontal) ---- */
    .methodik {
        background: linear-gradient(180deg, transparent 0%, rgba(139, 92, 246, 0.04) 50%, transparent 100%);
    }

    .methodik-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
        position: relative;
    }

    .methodik-grid::before {
        content: '';
        position: absolute;
        top: 32px;
        left: 5%;
        right: 5%;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--line-strong) 20%, var(--line-strong) 80%, transparent);
        z-index: 0;
    }

    .method-step {
        position: relative;
        z-index: 1;
    }

    .method-num {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        background: linear-gradient(180deg, var(--bg-3) 0%, var(--bg-2) 100%);
        border: 1px solid var(--line-strong);
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Geist Mono', monospace;
        font-size: 22px;
        font-weight: 500;
        color: var(--violet-1);
        margin-bottom: 24px;
    }

    .method-title {
        font-size: 20px;
        font-weight: 500;
        letter-spacing: -0.015em;
        color: var(--ink-0);
        margin-bottom: 10px;
    }

    .method-meta {
        display: inline-block;
        font-size: 11px;
        font-weight: 600;
        color: var(--violet-1);
        letter-spacing: 0.12em;
        text-transform: uppercase;
        background: rgba(139, 92, 246, 0.10);
        padding: 4px 10px;
        border-radius: 999px;
        margin-bottom: 14px;
    }

    .method-desc {
        font-size: 14px;
        line-height: 1.55;
        color: var(--ink-2);
    }

    /* ---- CASES (3 Cards) ---- */
    .cases-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .case-card {
        background:
            linear-gradient(180deg, rgba(18, 19, 34, 0.94) 0%, rgba(11, 13, 24, 0.98) 100%);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 24px;
        padding: 0;
        overflow: hidden;
        transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
    }

    .case-card:hover {
        transform: translateY(-6px);
        border-color: rgba(167, 139, 250, 0.24);
        box-shadow: 0 30px 72px rgba(0, 0, 0, 0.22);
    }

    .case-visual {
        height: 215px;
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: flex-end;
        padding: 18px;
        background-size: cover;
        background-position: center;
    }

    .case-visual.v1 {
        background-image:
            linear-gradient(180deg, rgba(19, 14, 42, 0.18) 0%, rgba(12, 9, 25, 0.72) 100%),
            url('../images/industry-logistics.png');
    }

    .case-visual.v2 {
        background-image:
            linear-gradient(180deg, rgba(7, 25, 28, 0.12) 0%, rgba(7, 16, 23, 0.74) 100%),
            url('../images/industry-retail-ecommerce.png');
    }

    .case-visual.v3 {
        background-image:
            linear-gradient(180deg, rgba(18, 27, 58, 0.12) 0%, rgba(10, 14, 26, 0.78) 100%),
            url('../images/industry-manufacturing.png');
    }

    .case-visual::after {
        content: '';
        position: absolute;
        inset: 0;
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, transparent 34%),
            radial-gradient(60% 80% at 50% 100%, rgba(0, 0, 0, 0.52), transparent 70%);
    }

    .case-visual-overlay {
        position: relative;
        z-index: 1;
        display: inline-flex;
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.9rem 1rem;
        border-radius: 18px;
        background: rgba(9, 11, 19, 0.56);
        border: 1px solid rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(10px);
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
    }

    .case-visual-overlay strong {
        color: #fff;
        font-size: 1rem;
        letter-spacing: -0.02em;
    }

    .case-visual-chip {
        display: inline-flex;
        align-items: center;
        width: fit-content;
        padding: 0.34rem 0.62rem;
        border-radius: 999px;
        background: rgba(180, 244, 109, 0.16);
        color: #dff8a8;
        border: 1px solid rgba(180, 244, 109, 0.22);
        font-size: 0.72rem;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        font-weight: 700;
    }

    .case-body {
        padding: 26px 26px 30px;
    }

    .case-tag {
        display: inline-block;
        font-size: 11px;
        font-weight: 600;
        color: var(--ink-3);
        letter-spacing: 0.1em;
        text-transform: uppercase;
        margin-bottom: 12px;
    }

    .case-title {
        font-size: 18px;
        font-weight: 600;
        letter-spacing: -0.015em;
        color: var(--ink-0);
        margin-bottom: 10px;
        line-height: 1.3;
    }

    .case-snippet {
        font-size: 14px;
        line-height: 1.62;
        color: var(--ink-2);
        margin-bottom: 18px;
    }

    .case-metric {
        display: flex;
        gap: 18px;
        border-top: 1px solid var(--line);
        padding-top: 16px;
    }

    .case-metric div {
        flex: 1;
    }

    .case-metric .val {
        font-family: 'Geist Mono', monospace;
        font-size: 20px;
        font-weight: 500;
        color: var(--ink-0);
        letter-spacing: -0.02em;
    }

    .case-metric .lbl {
        font-size: 11px;
        color: var(--ink-3);
        text-transform: uppercase;
        letter-spacing: 0.08em;
        margin-top: 4px;
        font-weight: 600;
    }

    .case-status-banner {
        text-align: center;
        margin-top: 28px;
        padding: 14px 20px;
        background: rgba(167, 139, 250, 0.06);
        border: 1px dashed rgba(167, 139, 250, 0.3);
        border-radius: 12px;
        font-size: 13px;
        color: var(--ink-3);
        font-weight: 500;
    }

    .case-status-banner strong {
        color: var(--violet-1);
        font-weight: 600;
    }

    /* ---- ABOUT ---- */
    .about-grid {
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 80px;
        align-items: center;
    }

    .about-text {
        position: relative;
    }

    .about-points {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin-bottom: 24px;
    }

    .about-points span {
        display: inline-flex;
        align-items: center;
        padding: 0.48rem 0.8rem;
        border-radius: 999px;
        background: rgba(167, 139, 250, 0.08);
        border: 1px solid rgba(167, 139, 250, 0.16);
        color: #d7cbff;
        font-size: 12px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        font-weight: 700;
    }

    .about-text p {
        font-size: 16px;
        line-height: 1.65;
        color: var(--ink-2);
        margin-bottom: 18px;
    }

    .about-text p:first-child {
        font-size: 22px;
        line-height: 1.4;
        color: var(--ink-0);
        font-weight: 400;
        letter-spacing: -0.015em;
        margin-bottom: 24px;
    }

    .about-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .about-quote {
        margin-top: 28px;
        padding: 22px 24px;
        border-radius: 22px;
        background:
            linear-gradient(180deg, rgba(20, 22, 36, 0.86) 0%, rgba(12, 14, 25, 0.96) 100%);
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 18px 46px rgba(0, 0, 0, 0.16);
    }

    .about-quote-kicker {
        display: inline-block;
        margin-bottom: 10px;
        color: var(--violet-1);
        font-size: 12px;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        font-weight: 700;
    }

    .about-quote strong {
        display: block;
        color: var(--ink-0);
        font-size: 20px;
        line-height: 1.45;
        letter-spacing: -0.02em;
    }

    .proof-section {
        padding-top: 40px;
    }

    .proof-grid {
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 28px;
        align-items: start;
    }

    .proof-panel {
        padding: 6px 0;
    }

    .quote-card {
        margin-top: 28px;
        padding: 28px 28px 24px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 22px;
    }

    .quote-card p {
        font-size: 22px;
        line-height: 1.45;
        color: var(--ink-0);
        letter-spacing: -0.02em;
    }

    .quote-card footer {
        margin-top: 18px;
        color: var(--ink-3);
        font-size: 13px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .proof-metrics {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }

    .tech-section {
        padding-top: 40px;
    }

    .page-shell {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 48px 120px;
    }

    .page-hero {
        position: relative;
        overflow: hidden;
        margin-top: 28px;
        padding: 72px 48px 56px;
        border-radius: 32px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        background:
            radial-gradient(85% 95% at 0% 0%, rgba(139, 92, 246, 0.18), transparent 55%),
            linear-gradient(180deg, #15172a 0%, #0a0c18 100%);
    }

    .page-hero h1 {
        max-width: 780px;
        font-size: clamp(36px, 5vw, 60px);
        line-height: 1.05;
        letter-spacing: -0.04em;
        color: var(--ink-0);
        font-weight: 500;
        margin-bottom: 18px;
    }

    .page-hero p {
        max-width: 720px;
        color: var(--ink-2);
        font-size: 18px;
        line-height: 1.6;
    }

    .page-meta {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 20px;
        padding: 8px 14px;
        border-radius: 999px;
        border: 1px solid var(--line);
        color: var(--violet-1);
        font-size: 12px;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        font-weight: 700;
    }

    .page-grid {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: 24px;
        margin-top: 28px;
    }

    .page-panel,
    .contact-card,
    .legal-card {
        background: linear-gradient(180deg, var(--bg-3) 0%, var(--bg-2) 100%);
        border: 1px solid var(--line);
        border-radius: 24px;
        padding: 32px 30px;
    }

    .page-panel h2,
    .contact-card h2,
    .legal-card h2 {
        color: var(--ink-0);
        font-size: 28px;
        letter-spacing: -0.03em;
        margin-bottom: 14px;
    }

    .page-panel p,
    .page-panel li,
    .contact-card p,
    .legal-card p,
    .legal-card li {
        color: var(--ink-2);
        font-size: 15px;
        line-height: 1.65;
    }

    .page-list,
    .legal-list {
        list-style: none;
        display: grid;
        gap: 14px;
        margin-top: 18px;
    }

    .page-list li,
    .legal-list li {
        padding: 14px 0 0;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .mini-stat {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
        margin-top: 24px;
    }

    .mini-stat div {
        padding: 18px 16px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.06);
    }

    .mini-stat strong {
        display: block;
        color: var(--ink-0);
        font-size: 20px;
        margin-bottom: 6px;
    }

    .mini-stat span {
        color: var(--ink-3);
        font-size: 12px;
        line-height: 1.5;
    }

    .solutions-page {
        position: relative;
    }

    .solutions-hero {
        display: grid;
        grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
        gap: 28px;
        align-items: stretch;
    }

    .solutions-hero-copy {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .solutions-hero-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 14px;
        margin-top: 28px;
    }

    .solutions-hero-panel,
    .solutions-intro-grid,
    .solutions-framework-grid,
    .solutions-coverage-grid {
        display: grid;
        gap: 24px;
    }

    .solutions-hero-panel {
        align-content: stretch;
    }

    .solutions-proof-card {
        padding: 26px 26px 24px;
        border-radius: 26px;
        border: 1px solid rgba(255, 255, 255, 0.09);
        background:
            radial-gradient(90% 100% at 100% 0%, rgba(56, 189, 248, 0.12), transparent 55%),
            linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(10, 12, 24, 0.72) 100%);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
    }

    .solutions-proof-kicker,
    .solution-tag {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: #a5b4fc;
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.12em;
    }

    .solutions-proof-card strong {
        display: block;
        margin-top: 12px;
        color: var(--ink-0);
        font-size: 28px;
        line-height: 1.15;
        letter-spacing: -0.03em;
    }

    .solutions-proof-card p,
    .solutions-stack-panel p {
        margin-top: 12px;
    }

    .solutions-proof-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
        margin-top: 14px;
    }

    .solutions-proof-grid div,
    .solutions-industry-grid div {
        padding: 18px 16px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.06);
    }

    .solutions-proof-grid strong,
    .solutions-industry-grid strong {
        display: block;
        color: var(--ink-0);
        font-size: 20px;
        margin-bottom: 8px;
        letter-spacing: -0.02em;
    }

    .solutions-proof-grid span,
    .solutions-industry-grid span {
        color: var(--ink-3);
        font-size: 13px;
        line-height: 1.55;
    }

    .solutions-intro-grid,
    .solutions-framework-grid,
    .solutions-coverage-grid {
        grid-template-columns: 1.2fr 0.8fr;
        margin-top: 28px;
    }

    .solution-highlight-panel {
        background:
            radial-gradient(80% 100% at 0% 0%, rgba(139, 92, 246, 0.14), transparent 55%),
            linear-gradient(180deg, var(--bg-3) 0%, var(--bg-2) 100%);
    }

    .solutions-catalogue {
        margin-top: 36px;
    }

    .solutions-section-head {
        max-width: 920px;
        margin-bottom: 26px;
    }

    .solutions-card-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
    }

    .solution-card {
        position: relative;
        overflow: hidden;
        min-height: 320px;
        padding: 28px 28px 26px;
        border-radius: 28px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        background:
            radial-gradient(120% 120% at 100% 0%, rgba(255, 255, 255, 0.06), transparent 48%),
            linear-gradient(180deg, #15172a 0%, #0a0c18 100%);
        box-shadow: 0 22px 54px rgba(0, 0, 0, 0.18);
    }

    .solution-card::after {
        content: '';
        position: absolute;
        inset: auto -8% -28% auto;
        width: 220px;
        height: 220px;
        border-radius: 50%;
        background: var(--solution-accent, rgba(139, 92, 246, 0.14));
        filter: blur(18px);
        opacity: 0.7;
        pointer-events: none;
    }

    .solution-card-accent-violet {
        --solution-accent: rgba(139, 92, 246, 0.16);
    }

    .solution-card-accent-cyan {
        --solution-accent: rgba(56, 189, 248, 0.16);
    }

    .solution-card-accent-emerald {
        --solution-accent: rgba(52, 211, 153, 0.16);
    }

    .solution-card-accent-amber {
        --solution-accent: rgba(251, 191, 36, 0.16);
    }

    .solution-card-accent-rose {
        --solution-accent: rgba(244, 114, 182, 0.16);
    }

    .solution-card-accent-slate {
        --solution-accent: rgba(148, 163, 184, 0.16);
    }

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

    .solution-pulse {
        width: 12px;
        height: 12px;
        border-radius: 999px;
        background: #b7f000;
        box-shadow: 0 0 0 8px rgba(183, 240, 0, 0.13);
        flex-shrink: 0;
    }

    .solution-card h3 {
        color: var(--ink-0);
        font-size: clamp(28px, 3vw, 34px);
        line-height: 1.08;
        letter-spacing: -0.04em;
        margin-bottom: 14px;
        max-width: 13ch;
    }

    .solution-card p {
        max-width: 56ch;
    }

    .solution-list,
    .solutions-journey-list {
        margin-top: 20px;
        display: grid;
        gap: 12px;
        padding-left: 0;
        list-style: none;
    }

    .solution-list li,
    .solutions-journey-list li {
        position: relative;
        padding-left: 18px;
        color: var(--ink-2);
        font-size: 15px;
        line-height: 1.6;
    }

    .solution-list li::before,
    .solutions-journey-list li::before {
        content: '';
        position: absolute;
        left: 0;
        top: 10px;
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #b7f000;
        box-shadow: 0 0 14px rgba(183, 240, 0, 0.34);
    }

    .solutions-pillars {
        display: grid;
        gap: 16px;
        margin-top: 24px;
    }

    .solutions-pillar {
        padding: 18px 18px 16px;
        border-radius: 18px;
        border: 1px solid rgba(255, 255, 255, 0.07);
        background: rgba(255, 255, 255, 0.03);
    }

    .solutions-pillar strong {
        display: block;
        margin-bottom: 8px;
        color: var(--ink-0);
        font-size: 18px;
        letter-spacing: -0.02em;
    }

    .solutions-chip-group {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 18px;
    }

    .solutions-chip-group span {
        padding: 10px 14px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        color: var(--ink-1);
        font-size: 13px;
        font-weight: 600;
    }

    .solutions-industry-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
        margin-top: 20px;
    }

    .solutions-journey-list strong {
        color: var(--ink-0);
        font-weight: 600;
    }

    .solutions-cta-panel {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 24px;
        align-items: center;
        margin-top: 30px;
        padding: 34px 32px;
        border-radius: 30px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        background:
            radial-gradient(85% 120% at 0% 0%, rgba(139, 92, 246, 0.18), transparent 52%),
            linear-gradient(180deg, #15172a 0%, #0a0c18 100%);
        box-shadow: 0 22px 54px rgba(0, 0, 0, 0.2);
    }

    .solutions-cta-panel h2 {
        color: var(--ink-0);
        font-size: clamp(32px, 4vw, 42px);
        line-height: 1.05;
        letter-spacing: -0.04em;
        margin-bottom: 12px;
    }

    .solutions-cta-panel p {
        max-width: 58ch;
        color: var(--ink-2);
        font-size: 16px;
        line-height: 1.65;
    }

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

    .services-page {
        position: relative;
    }

    .services-hero {
        display: grid;
        grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
        gap: 28px;
        align-items: stretch;
    }

    .services-hero-copy {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .services-hero-actions,
    .services-cta-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 14px;
        margin-top: 28px;
    }

    .services-hero-stage {
        display: grid;
        gap: 14px;
        align-content: stretch;
    }

    .services-stage-card,
    .services-flow-item,
    .service-showcase-card,
    .services-cta-panel {
        position: relative;
        overflow: hidden;
    }

    .services-stage-card-main {
        padding: 28px 26px 24px;
        border-radius: 26px;
        border: 1px solid rgba(255, 255, 255, 0.09);
        background:
            radial-gradient(100% 120% at 100% 0%, rgba(56, 189, 248, 0.13), transparent 56%),
            linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(10, 12, 24, 0.72) 100%);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
        animation: servicesFloat 9s ease-in-out infinite;
    }

    .services-stage-kicker,
    .service-showcase-num {
        display: inline-flex;
        align-items: center;
        color: #a5b4fc;
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.12em;
    }

    .services-stage-card-main strong {
        display: block;
        margin-top: 12px;
        color: var(--ink-0);
        font-size: 30px;
        line-height: 1.1;
        letter-spacing: -0.04em;
    }

    .services-stage-card-main p {
        margin-top: 12px;
        color: var(--ink-2);
        font-size: 15px;
        line-height: 1.6;
    }

    .services-stage-stats {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
    }

    .services-stage-stats div,
    .services-compare-points div {
        padding: 18px 16px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.06);
    }

    .services-stage-stats strong,
    .services-compare-points strong {
        display: block;
        color: var(--ink-0);
        font-size: 20px;
        margin-bottom: 8px;
        letter-spacing: -0.02em;
    }

    .services-stage-stats span,
    .services-compare-points span {
        color: var(--ink-3);
        font-size: 13px;
        line-height: 1.55;
    }

    .services-flow-strip {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 18px;
        margin-top: 28px;
    }

    .services-flow-item {
        padding: 22px 20px 18px;
        border-radius: 22px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(10, 12, 24, 0.72) 100%);
        transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
    }

    .services-flow-item:hover {
        transform: translateY(-4px);
        border-color: rgba(167, 139, 250, 0.26);
        box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
    }

    .services-flow-item span {
        display: inline-flex;
        margin-bottom: 14px;
        color: var(--violet-1);
        font-family: 'Geist Mono', monospace;
        font-size: 12px;
        letter-spacing: 0.12em;
    }

    .services-flow-item strong {
        display: block;
        color: var(--ink-0);
        font-size: 20px;
        letter-spacing: -0.03em;
        margin-bottom: 8px;
    }

    .services-flow-item p {
        color: var(--ink-2);
        font-size: 14px;
        line-height: 1.6;
    }

    .services-section-head {
        margin-top: 42px;
        max-width: 920px;
    }

    .service-showcase-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
        margin-top: 28px;
    }

    .service-showcase-card {
        display: grid;
        grid-template-rows: 240px auto;
        border-radius: 30px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        background:
            radial-gradient(100% 120% at 100% 0%, rgba(255, 255, 255, 0.05), transparent 50%),
            linear-gradient(180deg, #15172a 0%, #0a0c18 100%);
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
        transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
    }

    .service-showcase-card:hover {
        transform: translateY(-6px);
        border-color: rgba(167, 139, 250, 0.28);
        box-shadow: 0 28px 68px rgba(0, 0, 0, 0.24);
    }

    .service-showcase-card-large {
        grid-column: span 2;
        grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
        grid-template-rows: none;
        min-height: 360px;
    }

    .service-showcase-visual {
        position: relative;
        overflow: hidden;
        min-height: 100%;
        background-size: cover;
        background-position: center;
    }

    .service-showcase-visual::before {
        content: '';
        position: absolute;
        inset: 0;
        background:
            linear-gradient(180deg, rgba(8, 11, 23, 0.05) 0%, rgba(8, 11, 23, 0.18) 100%),
            radial-gradient(80% 70% at 50% 0%, rgba(255, 255, 255, 0.18), transparent 70%);
        animation: servicesGlow 11s ease-in-out infinite;
    }

    .service-showcase-visual-ai {
        background-image: url('../images/competency-agentic-ai.png');
    }

    .service-showcase-visual-data {
        background-image: url('../images/competency-data-analytics.png');
    }

    .service-showcase-visual-erp {
        background-image: url('../images/competency-process-automation.png');
    }

    .service-showcase-visual-custom {
        background-image: url('../images/competency-digital-product.png');
    }

    .service-showcase-visual-strategy {
        background-image: url('../images/competency-web-design.png');
    }

    .service-showcase-visual-devops {
        background-image: url('../images/competency-ai-application.png');
    }

    .service-showcase-body {
        padding: 28px 28px 26px;
    }

    .service-showcase-body h2 {
        color: var(--ink-0);
        font-size: clamp(28px, 3vw, 38px);
        line-height: 1.06;
        letter-spacing: -0.045em;
        margin: 14px 0 14px;
        max-width: 15ch;
    }

    .service-showcase-card-large .service-showcase-body h2 {
        max-width: 16ch;
    }

    .service-showcase-body p {
        color: var(--ink-2);
        font-size: 15px;
        line-height: 1.65;
    }

    .service-showcase-list {
        list-style: none;
        display: grid;
        gap: 12px;
        margin-top: 20px;
    }

    .service-showcase-list li {
        position: relative;
        padding-left: 18px;
        color: var(--ink-2);
        font-size: 15px;
        line-height: 1.6;
    }

    .service-showcase-list li::before {
        content: '';
        position: absolute;
        left: 0;
        top: 10px;
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #b7f000;
        box-shadow: 0 0 12px rgba(183, 240, 0, 0.32);
    }

    .service-showcase-stats {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
        margin-top: 22px;
    }

    .service-showcase-stats div {
        padding: 16px 14px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.07);
    }

    .service-showcase-stats strong {
        display: block;
        color: var(--ink-0);
        font-size: 18px;
        margin-bottom: 7px;
    }

    .service-showcase-stats span {
        color: var(--ink-3);
        font-size: 12px;
        line-height: 1.55;
    }

    .services-compare-grid {
        display: grid;
        grid-template-columns: 1.15fr 0.85fr;
        gap: 24px;
        margin-top: 28px;
    }

    .services-compare-panel-accent {
        background:
            radial-gradient(80% 100% at 100% 0%, rgba(56, 189, 248, 0.12), transparent 55%),
            linear-gradient(180deg, var(--bg-3) 0%, var(--bg-2) 100%);
    }

    .services-compare-points {
        display: grid;
        gap: 14px;
        margin-top: 20px;
    }

    .services-cta-panel {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 24px;
        align-items: center;
        margin-top: 30px;
        padding: 34px 32px;
        border-radius: 30px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        background:
            radial-gradient(85% 120% at 0% 0%, rgba(139, 92, 246, 0.18), transparent 52%),
            linear-gradient(180deg, #15172a 0%, #0a0c18 100%);
        box-shadow: 0 22px 54px rgba(0, 0, 0, 0.2);
    }

    .services-cta-panel h2 {
        color: var(--ink-0);
        font-size: clamp(32px, 4vw, 42px);
        line-height: 1.05;
        letter-spacing: -0.04em;
        margin-bottom: 12px;
        max-width: 16ch;
    }

    .services-cta-panel p {
        max-width: 56ch;
        color: var(--ink-2);
        font-size: 16px;
        line-height: 1.65;
    }

    @keyframes servicesFloat {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-6px);
        }
    }

    @keyframes servicesGlow {
        0%, 100% {
            transform: scale(1) translate3d(0, 0, 0);
            opacity: 0.85;
        }
        50% {
            transform: scale(1.04) translate3d(0, -6px, 0);
            opacity: 1;
        }
    }

    .industries-page {
        position: relative;
    }

    .industries-hero {
        display: grid;
        grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
        gap: 28px;
        align-items: stretch;
    }

    .industries-hero-copy {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .industries-hero-actions,
    .industries-cta-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 14px;
        margin-top: 28px;
    }

    .industries-hero-stack {
        position: relative;
        min-height: 420px;
    }

    .industries-floating-card {
        position: absolute;
        border-radius: 28px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        background-size: cover;
        background-position: center;
        box-shadow: 0 28px 68px rgba(0, 0, 0, 0.26);
        overflow: hidden;
    }

    .industries-floating-card::after,
    .industry-lane-media::after {
        content: '';
        position: absolute;
        inset: 0;
        background:
            linear-gradient(180deg, rgba(8, 11, 23, 0.08) 0%, rgba(8, 11, 23, 0.28) 100%),
            radial-gradient(75% 70% at 50% 0%, rgba(255, 255, 255, 0.2), transparent 70%);
        pointer-events: none;
    }

    .industries-floating-card-one {
        inset: 26px 80px auto 0;
        height: 200px;
        background-image: url('../images/industry-logistics.png');
        animation: floatCardLeft 10s ease-in-out infinite;
    }

    .industries-floating-card-two {
        inset: 126px 0 auto 110px;
        height: 220px;
        background-image: url('../images/industry-manufacturing.png');
        animation: floatCardCenter 11s ease-in-out infinite;
    }

    .industries-floating-card-three {
        inset: auto 36px 8px 36px;
        height: 170px;
        background-image: url('../images/industry-financial-services.png');
        animation: floatCardRight 9s ease-in-out infinite;
    }

    .industries-intro {
        margin-top: 40px;
        max-width: 920px;
    }

    .industry-lane {
        display: grid;
        grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
        gap: 30px;
        align-items: center;
        margin-top: 34px;
    }

    .industry-lane-left {
        grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    }

    .industry-lane-copy {
        padding: 8px 2px;
    }

    .industry-kicker {
        display: inline-flex;
        color: #a5b4fc;
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        margin-bottom: 14px;
    }

    .industry-lane-copy h2 {
        color: var(--ink-0);
        font-size: clamp(32px, 4vw, 48px);
        line-height: 1.04;
        letter-spacing: -0.045em;
        margin-bottom: 16px;
        max-width: 13ch;
    }

    .industry-lane-copy p {
        color: var(--ink-2);
        font-size: 16px;
        line-height: 1.7;
        max-width: 56ch;
    }

    .industry-points {
        list-style: none;
        display: grid;
        gap: 12px;
        margin-top: 22px;
    }

    .industry-points li {
        position: relative;
        padding-left: 18px;
        color: var(--ink-2);
        font-size: 15px;
        line-height: 1.65;
    }

    .industry-points li::before {
        content: '';
        position: absolute;
        left: 0;
        top: 10px;
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #b7f000;
        box-shadow: 0 0 12px rgba(183, 240, 0, 0.32);
    }

    .industry-lane-media {
        position: relative;
        min-height: 420px;
        border-radius: 30px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        background-size: cover;
        background-position: center;
        overflow: hidden;
        box-shadow: 0 28px 68px rgba(0, 0, 0, 0.22);
    }

    .industry-lane-right .industry-lane-media {
        animation: laneFloatRight 11s ease-in-out infinite;
    }

    .industry-lane-left .industry-lane-media {
        animation: laneFloatLeft 11s ease-in-out infinite;
    }

    .industry-media-logistics {
        background-image: url('../images/industry-logistics.png');
    }

    .industry-media-manufacturing {
        background-image: url('../images/industry-manufacturing.png');
    }

    .industry-media-retail {
        background-image: url('../images/industry-retail-ecommerce.png');
    }

    .industry-media-real-estate {
        background-image: url('../images/industry-real-estate.png');
    }

    .industry-media-healthcare {
        background-image: url('../images/industry-healthcare.png');
    }

    .industry-media-financial {
        background-image: url('../images/industry-financial-services.png');
    }

    .industries-cta-panel {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 24px;
        align-items: center;
        margin-top: 34px;
        padding: 34px 32px;
        border-radius: 30px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        background:
            radial-gradient(85% 120% at 0% 0%, rgba(139, 92, 246, 0.18), transparent 52%),
            linear-gradient(180deg, #15172a 0%, #0a0c18 100%);
        box-shadow: 0 22px 54px rgba(0, 0, 0, 0.2);
    }

    .industries-cta-panel h2 {
        color: var(--ink-0);
        font-size: clamp(32px, 4vw, 42px);
        line-height: 1.05;
        letter-spacing: -0.04em;
        margin-bottom: 12px;
        max-width: 16ch;
    }

    .industries-cta-panel p {
        max-width: 58ch;
        color: var(--ink-2);
        font-size: 16px;
        line-height: 1.65;
    }

    @keyframes floatCardLeft {
        0%, 100% { transform: translate3d(0, 0, 0) rotate(-4deg); }
        50% { transform: translate3d(0, -8px, 0) rotate(-2deg); }
    }

    @keyframes floatCardCenter {
        0%, 100% { transform: translate3d(0, 0, 0) rotate(3deg); }
        50% { transform: translate3d(0, -10px, 0) rotate(1deg); }
    }

    @keyframes floatCardRight {
        0%, 100% { transform: translate3d(0, 0, 0) rotate(-2deg); }
        50% { transform: translate3d(0, -7px, 0) rotate(0deg); }
    }

    @keyframes laneFloatRight {
        0%, 100% { transform: translate3d(10px, 0, 0); }
        50% { transform: translate3d(0, -8px, 0); }
    }

    @keyframes laneFloatLeft {
        0%, 100% { transform: translate3d(-10px, 0, 0); }
        50% { transform: translate3d(0, -8px, 0); }
    }

    .hire-browser {
        display: grid;
        grid-template-columns: 290px 1fr;
        gap: 0;
        margin-top: 34px;
        border-radius: 30px;
        overflow: hidden;
        background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
        border: 1px solid rgba(15, 23, 42, 0.08);
        box-shadow: 0 18px 50px rgba(11, 16, 32, 0.06);
    }

    .hire-sidebar {
        padding: 34px 32px;
        background: linear-gradient(180deg, #fbfcff 0%, #f2f5fb 100%);
        border-right: 1px solid rgba(15, 23, 42, 0.08);
    }

    .hire-sidebar-kicker {
        display: inline-block;
        margin-bottom: 22px;
        color: #94a3b8;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
    }

    .hire-model-card {
        display: block;
        padding: 12px 0;
        text-decoration: none;
        border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    }

    .hire-model-card:last-child {
        border-bottom: none;
    }

    .hire-model-card strong {
        display: block;
        color: #0f172a;
        font-size: 18px;
        margin-bottom: 4px;
        letter-spacing: -0.02em;
    }

    .hire-model-card span {
        color: #64748b;
        font-size: 14px;
        line-height: 1.5;
    }

    .hire-stack-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 26px;
        padding: 28px 30px 34px;
    }

    .hire-stack-col h2 {
        color: #94a3b8;
        font-size: 17px;
        font-weight: 700;
        margin-bottom: 20px;
        letter-spacing: -0.02em;
    }

    .hire-stack-col ul {
        list-style: none;
        display: grid;
        gap: 12px;
    }

    .hire-stack-col li {
        color: #0f172a;
        font-size: 18px;
        font-weight: 500;
        line-height: 1.35;
    }

    .hire-summary-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        margin-top: 28px;
    }

    .login-shell {
        display: grid;
        grid-template-columns: 0.95fr 0.95fr;
        gap: 30px;
        align-items: center;
        min-height: 72vh;
    }

    .login-intro {
        padding: 24px 8px;
    }

    .login-intro h1 {
        max-width: 520px;
        font-size: clamp(40px, 5vw, 62px);
        line-height: 1.02;
        letter-spacing: -0.045em;
        color: var(--ink-0);
        margin: 18px 0 18px;
    }

    .login-intro p {
        max-width: 520px;
        color: var(--ink-2);
        font-size: 17px;
        line-height: 1.65;
    }

    .login-points {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
        margin-top: 26px;
    }

    .login-points span {
        display: inline-flex;
        align-items: center;
        min-height: 34px;
        padding: 0 14px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.08);
        color: var(--ink-2);
        font-size: 13px;
        font-weight: 500;
    }

    .login-card {
        padding: 34px 30px 28px;
        border-radius: 30px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        background:
            radial-gradient(85% 120% at 0% 0%, rgba(139, 92, 246, 0.16), transparent 56%),
            linear-gradient(180deg, #15172a 0%, #0a0c18 100%);
        box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
    }

    .login-card h2 {
        color: var(--ink-0);
        font-size: 32px;
        letter-spacing: -0.03em;
        margin-bottom: 24px;
    }

    .login-demo-note {
        margin: -6px 0 18px;
        padding: 12px 14px;
        border-radius: 16px;
        border: 1px solid rgba(167, 139, 250, 0.18);
        background: rgba(139, 92, 246, 0.08);
        color: var(--ink-2);
        font-size: 13px;
        line-height: 1.6;
    }

    .login-alert {
        margin-bottom: 16px;
        padding: 14px 16px;
        border-radius: 16px;
        font-size: 14px;
        line-height: 1.55;
        border: 1px solid transparent;
    }

    .login-alert-error {
        background: rgba(248, 113, 113, 0.12);
        border-color: rgba(248, 113, 113, 0.24);
        color: #fecaca;
    }

    .login-alert-success {
        background: rgba(74, 222, 128, 0.12);
        border-color: rgba(74, 222, 128, 0.24);
        color: #bbf7d0;
    }

    .login-form {
        display: grid;
        gap: 18px;
    }

    .login-field {
        display: grid;
        gap: 8px;
    }

    .login-field span {
        color: var(--ink-2);
        font-size: 13px;
        font-weight: 600;
    }

    .login-field input {
        width: 100%;
        min-height: 54px;
        padding: 0 16px;
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(255, 255, 255, 0.04);
        color: var(--ink-0);
        font: inherit;
        outline: none;
    }

    .login-field input::placeholder {
        color: var(--ink-4);
    }

    .login-meta {
        display: flex;
        justify-content: space-between;
        gap: 14px;
        align-items: center;
        flex-wrap: wrap;
    }

    .login-meta a,
    .login-remember span {
        color: var(--ink-2);
        font-size: 13px;
        text-decoration: none;
    }

    .login-remember {
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .login-submit {
        min-height: 54px;
        border: none;
        border-radius: 999px;
        background: var(--ink-0);
        color: #000;
        font: inherit;
        font-weight: 700;
        cursor: pointer;
    }

    .login-footer-note {
        margin-top: 20px;
        padding-top: 18px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .login-footer-note p {
        color: var(--ink-3);
        font-size: 13px;
        line-height: 1.6;
    }

    .contact-shell {
        padding-top: 28px;
    }

    .contact-hero-card {
        position: relative;
        display: grid;
        grid-template-columns: 0.85fr 1.15fr;
        gap: 28px;
        padding: 38px;
        border-radius: 34px;
        overflow: hidden;
        background:
            linear-gradient(135deg, rgba(110, 135, 198, 0.94) 0%, rgba(146, 171, 225, 0.88) 50%, rgba(132, 157, 217, 0.84) 100%);
        color: #fff;
    }

    .contact-hero-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background:
            radial-gradient(70% 120% at 100% 0%, rgba(255, 255, 255, 0.12), transparent 55%),
            linear-gradient(115deg, transparent 0%, transparent 58%, rgba(255, 255, 255, 0.08) 58.5%, rgba(255, 255, 255, 0.08) 60%, transparent 60.5%);
        pointer-events: none;
    }

    .contact-lead,
    .contact-form-card {
        position: relative;
        z-index: 1;
    }

    .contact-lead .page-meta {
        color: rgba(255, 255, 255, 0.92);
        border-color: rgba(255, 255, 255, 0.28);
        background: rgba(16, 22, 42, 0.14);
    }

    .contact-lead h1 {
        margin-top: 26px;
        margin-bottom: 18px;
        font-size: clamp(40px, 5vw, 62px);
        line-height: 1;
        letter-spacing: -0.04em;
        color: #fff;
    }

    .contact-lead p {
        max-width: 480px;
        color: rgba(255, 255, 255, 0.92);
        font-size: 18px;
        line-height: 1.65;
    }

    .contact-person {
        display: inline-flex;
        align-items: center;
        gap: 16px;
        margin-top: 8px;
        padding: 16px 18px;
        border-radius: 22px;
        background: rgba(17, 24, 43, 0.16);
        border: 1px solid rgba(255, 255, 255, 0.16);
    }

    .contact-avatar,
    .testimonial-avatar {
        width: 78px;
        height: 78px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(180deg, rgba(12, 20, 42, 0.8) 0%, rgba(41, 60, 106, 0.9) 100%);
        color: #fff;
        font-size: 24px;
        font-weight: 700;
        border: 2px solid rgba(255, 255, 255, 0.18);
        flex-shrink: 0;
    }

    .contact-person strong,
    .testimonial-person strong {
        display: block;
        font-size: 20px;
        color: #fff;
        margin-bottom: 4px;
    }

    .contact-person span,
    .testimonial-person span {
        color: rgba(255, 255, 255, 0.8);
        font-size: 14px;
    }

    .contact-direct-links {
        display: flex;
        gap: 14px;
        flex-wrap: wrap;
        margin-top: 28px;
    }

    .contact-direct-links a {
        display: inline-flex;
        align-items: center;
        min-height: 46px;
        padding: 0 18px;
        border-radius: 999px;
        background: rgba(17, 24, 43, 0.18);
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: #fff;
        text-decoration: none;
        font-weight: 500;
    }

    .contact-form-card {
        padding: 30px 28px;
        border-radius: 28px;
        background: rgba(10, 16, 32, 0.18);
        border: 1px solid rgba(255, 255, 255, 0.18);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .contact-form-card h2 {
        color: #fff;
        font-size: 30px;
        letter-spacing: -0.03em;
        margin-bottom: 22px;
    }

    .contact-form-alert {
        margin-bottom: 18px;
        padding: 0.95rem 1rem;
        border-radius: 18px;
        font-size: 0.95rem;
        line-height: 1.55;
        border: 1px solid rgba(255, 255, 255, 0.14);
    }

    .contact-form-alert-success {
        background: rgba(161, 223, 0, 0.14);
        border-color: rgba(161, 223, 0, 0.34);
        color: #efffc2;
    }

    .contact-form-alert-error {
        background: rgba(255, 109, 109, 0.14);
        border-color: rgba(255, 109, 109, 0.32);
        color: #ffd2d2;
    }

    .contact-form {
        display: grid;
        gap: 18px;
    }

    .contact-form-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }

    .field {
        display: grid;
        gap: 8px;
    }

    .field span {
        color: rgba(255, 255, 255, 0.88);
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.02em;
    }

    .field input,
    .field textarea,
    .field select {
        width: 100%;
        border: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.38);
        background: transparent;
        color: #fff;
        padding: 12px 0 14px;
        font: inherit;
        outline: none;
    }

    .field input::placeholder,
    .field textarea::placeholder {
        color: rgba(255, 255, 255, 0.52);
    }

    .field select option {
        color: #111827;
    }

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

    .consent-line {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        color: rgba(255, 255, 255, 0.82);
        font-size: 13px;
        line-height: 1.5;
    }

    .consent-line input {
        margin-top: 3px;
    }

    .contact-actions {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 18px;
        flex-wrap: wrap;
    }

    .contact-actions p {
        color: rgba(255, 255, 255, 0.84);
        font-size: 13px;
    }

    .contact-submit {
        min-width: 180px;
        padding: 14px 24px;
        border: none;
        border-radius: 999px;
        background: #c6f000;
        color: #0f172a;
        font: inherit;
        font-weight: 700;
        cursor: pointer;
    }

    .contact-office-section,
    .testimonial-section,
    .global-section {
        margin-top: 72px;
    }

    .office-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
    }

    .office-card {
        padding: 28px 26px;
        border-radius: 24px;
        background: linear-gradient(180deg, #ffffff 0%, #f7f8fc 100%);
        border: 1px solid rgba(13, 16, 28, 0.08);
        box-shadow: 0 18px 50px rgba(11, 16, 32, 0.06);
    }

    .office-card-active {
        background: linear-gradient(180deg, #eef4ff 0%, #ffffff 100%);
    }

    .office-flag {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 18px;
        background: linear-gradient(180deg, #dbeafe 0%, #bfdbfe 100%);
        color: #1d4ed8;
        font-weight: 700;
        font-size: 13px;
        letter-spacing: 0.08em;
    }

    .office-card h3,
    .testimonial-content p,
    .office-card a,
    .office-card p,
    .global-copy .section-title,
    .global-copy .section-lead {
        color: #0f172a;
    }

    .office-card h3 {
        font-size: 28px;
        letter-spacing: -0.03em;
        margin-bottom: 14px;
    }

    .office-card p {
        font-size: 16px;
        line-height: 1.65;
        margin-bottom: 24px;
    }

    .office-card a {
        text-decoration: none;
        font-size: 22px;
        font-weight: 700;
        letter-spacing: -0.02em;
    }

    .testimonial-card {
        display: grid;
        grid-template-columns: 320px 1fr;
        gap: 32px;
        padding: 36px 34px;
        border-radius: 30px;
        background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
        border: 1px solid rgba(15, 23, 42, 0.08);
        box-shadow: 0 18px 50px rgba(11, 16, 32, 0.06);
    }

    .testimonial-person {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .testimonial-avatar {
        width: 94px;
        height: 94px;
        background: linear-gradient(180deg, #1e293b 0%, #475569 100%);
    }

    .testimonial-person strong,
    .testimonial-person span {
        color: #0f172a;
    }

    .testimonial-stars {
        color: #f5c518;
        font-size: 28px;
        letter-spacing: 0.18em;
        margin-bottom: 16px;
    }

    .testimonial-content p {
        font-size: 26px;
        line-height: 1.5;
        letter-spacing: -0.02em;
    }

    .testimonial-links {
        display: flex;
        gap: 28px;
        flex-wrap: wrap;
        margin-top: 28px;
    }

    .testimonial-links a {
        color: #84cc16;
        text-decoration: none;
        font-weight: 700;
        font-size: 18px;
    }

    .global-section {
        display: grid;
        grid-template-columns: 0.75fr 1.25fr;
        gap: 30px;
        align-items: center;
        padding: 38px;
        border-radius: 30px;
        background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
        border: 1px solid rgba(15, 23, 42, 0.08);
        box-shadow: 0 18px 50px rgba(11, 16, 32, 0.06);
    }

    .global-map-card {
        position: relative;
        min-height: 480px;
        border-radius: 32px;
        overflow: hidden;
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.08) 100%),
            url('../images/contact-world-map.jpg') center/cover no-repeat;
        border: 1px solid rgba(15, 23, 42, 0.08);
    }

    .map-marker {
        position: absolute;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: #c6f000;
        box-shadow: 0 0 0 10px rgba(198, 240, 0, 0.2);
        z-index: 1;
    }

    .marker-label {
        position: absolute;
        color: #0f172a;
        white-space: nowrap;
        font-size: 16px;
        font-weight: 700;
        padding: 4px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.92);
        box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
        z-index: 2;
    }

    .marker-de {
        left: 51.2%;
        top: 39.6%;
    }

    .marker-uk {
        left: 44.1%;
        top: 38.4%;
    }

    .marker-tr {
        left: 52.8%;
        top: 46.8%;
    }

    .marker-label-de {
        top: -20px;
        left: 24px;
        transform: none;
    }

    .marker-label-uk {
        top: -38px;
        left: -68px;
        transform: none;
    }

    .marker-label-tr {
        top: -12px;
        left: 25px;
        transform: none;
    }

    .contact-metrics-section {
        margin-top: 72px;
        padding: 54px 40px 32px;
        border-radius: 30px;
        background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
        border: 1px solid rgba(15, 23, 42, 0.08);
        box-shadow: 0 18px 50px rgba(11, 16, 32, 0.06);
    }

    .contact-metrics-section .section-eyebrow {
        color: #8b5cf6;
    }

    .contact-metrics-section .section-title {
        color: #0f172a;
    }

    .metrics-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 26px;
    }

    .metric-donut-card h3 {
        color: #0f172a;
        font-size: 24px;
        letter-spacing: -0.03em;
        margin-bottom: 28px;
    }

    .metric-donut-layout {
        display: grid;
        grid-template-columns: 1fr 170px 1fr;
        align-items: center;
        gap: 14px;
    }

    .metric-donut {
        position: relative;
        width: 170px;
        height: 170px;
        border-radius: 50%;
        margin: 0 auto;
    }

    .metric-donut::after {
        content: '';
        position: absolute;
        inset: 44px;
        border-radius: 50%;
        background: #fff;
    }

    .metric-donut-blue {
        background: conic-gradient(#88a4dd 0 43%, #aac0e8 43% 80%, #d2def2 80% 100%);
    }

    .metric-donut-green {
        background: conic-gradient(#98d700 0 33%, #bfe341 33% 72%, #cfe96f 72% 93%, #e5f4bd 93% 100%);
    }

    .metric-donut-amber {
        background: conic-gradient(#ffad1f 0 60%, #ffd45d 60% 90%, #f3a118 90% 100%);
    }

    .metric-note {
        display: grid;
        gap: 4px;
        color: #0f172a;
    }

    .metric-note strong {
        font-size: 32px;
        line-height: 1;
        letter-spacing: -0.04em;
        color: #88a4dd;
    }

    .metric-note span {
        font-size: 16px;
        line-height: 1.4;
        color: #1e293b;
        font-weight: 600;
    }

    .metric-note.green strong {
        color: #98d700;
    }

    .metric-note.amber strong {
        color: #ffb400;
    }

    .metric-note-left {
        text-align: left;
    }

    .metric-note-right {
        text-align: left;
    }

    .metric-note-bottom {
        margin-top: 18px;
        text-align: center;
    }

    .metric-note-row {
        display: flex;
        justify-content: center;
        gap: 42px;
        margin-top: 18px;
    }

    .stat-card {
        padding: 28px 24px;
        background:
            radial-gradient(120% 120% at 100% 0%, rgba(167, 139, 250, 0.08), transparent 44%),
            linear-gradient(180deg, rgba(20, 22, 36, 0.92) 0%, rgba(13, 15, 25, 0.98) 100%);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 24px;
        min-height: 128px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
        transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    }

    .stat-card:hover {
        transform: translateY(-4px);
        border-color: rgba(167, 139, 250, 0.2);
        box-shadow: 0 24px 54px rgba(0, 0, 0, 0.18);
    }

    .stat-card-accent {
        background:
            radial-gradient(120% 120% at 100% 0%, rgba(167, 139, 250, 0.18), transparent 44%),
            linear-gradient(180deg, rgba(32, 22, 56, 0.92) 0%, rgba(16, 16, 30, 0.98) 100%);
    }

    .stat-val {
        font-family: 'Geist Mono', monospace;
        font-size: 36px;
        font-weight: 500;
        letter-spacing: -0.03em;
        color: var(--violet-1);
        line-height: 1;
        margin-bottom: 8px;
    }

    .stat-lbl {
        font-size: 12px;
        color: var(--ink-3);
        text-transform: uppercase;
        letter-spacing: 0.08em;
        font-weight: 600;
        line-height: 1.4;
    }

    /* ---- CTA BANNER ---- */
    .cta-banner {
        max-width: 1180px;
        margin: 0 auto;
        padding: 0 48px;
    }

    .cta-banner-inner {
        background:
            radial-gradient(60% 100% at 0% 0%, rgba(139, 92, 246, 0.20), transparent 60%),
            radial-gradient(80% 120% at 100% 100%, rgba(99, 50, 200, 0.18), transparent 60%),
            linear-gradient(180deg, #15172a 0%, #0a0c18 100%);
        border: 1px solid var(--line-strong);
        border-radius: 28px;
        padding: 72px 60px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .cta-banner-inner h2 {
        font-size: clamp(28px, 3.2vw, 44px);
        font-weight: 500;
        letter-spacing: -0.03em;
        line-height: 1.1;
        color: var(--ink-0);
        margin-bottom: 16px;
        max-width: 720px;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-banner-inner p {
        font-size: 16px;
        line-height: 1.55;
        color: var(--ink-2);
        margin-bottom: 32px;
        max-width: 540px;
        margin-left: auto;
        margin-right: auto;
    }

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

    /* ---- FOOTER ---- */
    .footer {
        border-top: 1px solid var(--line);
        margin-top: 80px;
        padding: 48px 48px 32px;
        max-width: 1280px;
        margin-left: auto;
        margin-right: auto;
    }

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

    .footer-brand .logo {
        margin-bottom: 14px;
        display: inline-block;
    }

    .footer-brand p {
        font-size: 14px;
        line-height: 1.55;
        color: var(--ink-3);
        max-width: 320px;
    }

    .footer-badges {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        margin-top: 18px;
    }

    .footer-badges span {
        display: inline-flex;
        align-items: center;
        min-height: 30px;
        padding: 0 12px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        color: var(--ink-2);
        font-size: 12px;
        font-weight: 500;
    }

    .footer-col h4 {
        font-size: 12px;
        font-weight: 600;
        color: var(--ink-2);
        text-transform: uppercase;
        letter-spacing: 0.12em;
        margin-bottom: 16px;
    }

    .footer-col h5 {
        font-size: 11px;
        font-weight: 700;
        color: var(--violet-1);
        letter-spacing: 0.12em;
        text-transform: uppercase;
        margin: 26px 0 14px;
    }

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

    .footer-col a {
        color: var(--ink-3);
        text-decoration: none;
        font-size: 14px;
        font-weight: 450;
        transition: color 0.2s;
    }

    .footer-col a:hover {
        color: var(--ink-1);
    }

    .footer-bottom {
        border-top: 1px solid var(--line);
        padding-top: 24px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 13px;
        color: var(--ink-4);
    }

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

    .footer-bottom a {
        color: var(--ink-4);
        text-decoration: none;
        transition: color 0.2s;
    }

    .footer-bottom a:hover {
        color: var(--ink-2);
    }

    /* =========================================================
     A11Y — reduced motion
  ========================================================= */
    @media (prefers-reduced-motion: reduce) {

        .track.down1,
        .track.up1,
        .track.down2,
        .track.up2 {
            animation: none;
        }

        html {
            scroll-behavior: auto;
        }
    }

    /* =========================================================
     RESPONSIVE
  ========================================================= */
    @media (max-width: 1024px) {
        .topbar-inner {
            padding: 10px 28px;
        }

        .topbar-left,
        .topbar-right {
            gap: 12px;
        }

        .nav {
            padding: 18px 28px;
        }

        .nav-toggle {
            display: inline-flex;
        }

        .nav-links {
            display: none;
            position: absolute;
            top: calc(100% + 12px);
            left: 28px;
            right: 28px;
            padding: 16px;
            border-radius: 24px;
            background: rgba(10, 12, 21, 0.96);
            border: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            flex-direction: column;
            align-items: stretch;
            gap: 0;
            max-height: calc(100vh - 160px);
            overflow: auto;
        }

        .nav.is-open .nav-links {
            display: flex;
        }

        .nav-dropdown-services {
            width: 100%;
        }

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

        .nav-item {
            padding: 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        .nav-item:last-of-type {
            border-bottom: none;
        }

        .nav-item::after,
        .nav-link-main::after {
            display: none;
        }

        .nav-link-main {
            width: 100%;
            justify-content: space-between;
            padding: 16px 4px 14px;
            font-size: 15px;
        }

        .nav-dropdown,
        .nav-dropdown-services {
            position: static;
            left: auto;
            top: auto;
            width: 100%;
            padding: 0 0 14px;
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: none;
            background: transparent;
            border: none;
            box-shadow: none;
            backdrop-filter: none;
            -webkit-backdrop-filter: none;
            border-radius: 0;
        }

        .services-mega-grid {
            gap: 12px;
        }

        .services-mega-col {
            padding: 14px;
            border-radius: 18px;
        }

        .nav-sublink {
            padding-left: 10px;
            padding-right: 10px;
        }

        .nav-mobile-cta {
            display: grid;
            grid-template-columns: 1fr;
            gap: 12px;
            padding-top: 18px;
        }

        .nav-mobile-cta .nav-login {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            min-height: 48px;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.03);
        }

        .floor {
            width: 120%;
            left: -10%;
        }

        .lane {
            width: 33.34%;
        }

        .lane.l1 {
            left: 0%;
        }

        .lane.l2 {
            left: 33.33%;
        }

        .lane.l3 {
            left: 66.66%;
        }

        .lane.l4 {
            display: none;
        }

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

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

        .trust-strip {
            padding: 28px 28px 0;
        }

        .trust-strip-inner {
            grid-template-columns: 1fr;
        }

        .trust-strip-grid,
        .why-grid,
        .proof-grid,
        .tech-grid,
        .page-grid,
        .services-hero,
        .services-compare-grid,
        .industries-hero,
        .industry-lane,
        .industry-lane-left,
        .solutions-hero,
        .solutions-intro-grid,
        .solutions-framework-grid,
        .solutions-coverage-grid,
        .contact-hero-card,
        .global-section,
        .hire-summary-grid,
        .login-shell {
            grid-template-columns: 1fr;
        }

        .proof-metrics {
            grid-template-columns: 1fr 1fr;
        }

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

        .testimonial-card {
            grid-template-columns: 1fr;
        }

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

        .solutions-card-grid,
        .service-showcase-grid,
        .solutions-proof-grid,
        .solutions-industry-grid {
            grid-template-columns: 1fr;
        }

        .services-flow-strip,
        .services-stage-stats,
        .service-showcase-stats {
            grid-template-columns: 1fr;
        }

        .service-showcase-card-large {
            grid-column: auto;
            grid-template-columns: 1fr;
            grid-template-rows: 240px auto;
        }

        .solutions-cta-panel {
            grid-template-columns: 1fr;
        }

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

        .industries-cta-panel {
            grid-template-columns: 1fr;
        }

        .solutions-cta-actions {
            justify-content: flex-start;
        }

        .hire-browser {
            grid-template-columns: 1fr;
        }

        .hire-sidebar {
            border-right: none;
            border-bottom: 1px solid rgba(15, 23, 42, 0.08);
        }

        .hire-stack-grid {
            grid-template-columns: 1fr 1fr;
        }

        .methodik-grid {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .methodik-grid::before {
            display: none;
        }

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

        .about-grid {
            grid-template-columns: 1fr;
            gap: 40px;
        }

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

        .section {
            padding: 80px 28px;
        }

        .competency-showcase {
            padding: 42px 24px 18px;
        }

        .page-shell {
            padding: 0 28px 80px;
        }

        .page-hero {
            padding: 56px 32px 42px;
        }

        .service-showcase-body h2,
        .solution-card h3 {
            max-width: none;
        }

        .contact-hero-card {
            padding: 30px;
        }

        .cta-banner {
            padding: 0 28px;
        }

        .cta-banner-inner {
            padding: 48px 32px;
        }
    }

    @media (max-width: 640px) {
        .topbar-inner {
            padding: 10px 18px;
            flex-direction: column;
            align-items: stretch;
            gap: 10px;
        }

        .nav {
            padding: 16px 18px;
        }

        .nav-links {
            left: 18px;
            right: 18px;
            top: calc(100% + 10px);
            padding: 14px;
            border-radius: 20px;
        }

        .topbar-left,
        .topbar-right {
            justify-content: center;
            flex-wrap: wrap;
        }

        .topbar-link {
            justify-content: center;
        }

        .nav-right .nav-login {
            display: none;
        }

        .topbar-right .nav-login {
            display: none;
        }

        .nav-toggle {
            width: 48px;
            height: 48px;
            border-radius: 14px;
        }

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

        .industries-floating-card-one {
            inset: 8px 50px auto 0;
        }

        .industries-floating-card-two {
            inset: 112px 0 auto 76px;
        }

        .industries-floating-card-three {
            inset: auto 20px 0 20px;
        }

        .services-hero-actions,
        .services-cta-actions,
        .industries-hero-actions,
        .industries-cta-actions,
        .solutions-hero-actions,
        .solutions-cta-actions {
            flex-direction: column;
            align-items: stretch;
        }

        .industries-hero-stack {
            min-height: 360px;
        }

        .industry-lane-media {
            min-height: 340px;
        }

        .solutions-proof-grid {
            grid-template-columns: 1fr;
        }

        .hero {
            padding: 40px 18px 0;
        }

        .eyebrow {
            font-size: 10px;
            letter-spacing: 0.14em;
            padding: 5px 12px;
        }

        .floor {
            width: 110%;
            left: -5%;
        }

        .lane {
            width: 50%;
        }

        .lane.l1 {
            left: 0%;
        }

        .lane.l2 {
            left: 50%;
        }

        .lane.l3,
        .lane.l4 {
            display: none;
        }

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

        .industries-hero-stack {
            min-height: 300px;
        }

        .industry-lane-media {
            min-height: 260px;
        }

        .industry-lane-copy h2 {
            max-width: none;
        }

        .service-showcase-card,
        .solution-card,
        .services-cta-panel,
        .industries-cta-panel,
        .solutions-cta-panel,
        .page-panel {
            padding-left: 22px;
            padding-right: 22px;
        }

        .hero-ctas .btn-primary,
        .hero-ctas .btn-ghost {
            width: 100%;
            justify-content: center;
        }

        .about-stats {
            grid-template-columns: 1fr;
        }

        .trust-strip {
            padding: 24px 18px 0;
        }

        .trust-strip-inner,
        .page-panel,
        .contact-card,
        .legal-card {
            padding: 24px 20px;
        }

        .trust-strip-grid,
        .proof-metrics,
        .mini-stat,
        .contact-form-grid,
        .hire-stack-grid {
            grid-template-columns: 1fr;
        }

        .competency-item {
            grid-template-columns: 1fr 130px;
            gap: 18px;
            min-height: 124px;
        }

        .competency-copy h3 {
            font-size: 18px;
            max-width: none;
        }

        .competency-hover-card {
            position: static;
            width: 100%;
            margin-top: 12px;
            opacity: 1;
            visibility: visible;
            transform: none;
            box-shadow: none;
            border: 1px solid rgba(15, 23, 42, 0.08);
            border-top: 3px solid #b8df00;
            border-radius: 18px;
        }

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

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

        .service-card {
            padding: 28px 24px;
        }

        .cta-banner-inner {
            padding: 40px 22px;
        }

        .page-shell {
            padding: 0 18px 72px;
        }

        .page-hero {
            padding: 44px 20px 34px;
            border-radius: 24px;
        }

        .contact-hero-card,
        .testimonial-card,
        .global-map-card {
            border-radius: 24px;
        }

        .contact-metrics-section {
            padding: 34px 20px 20px;
            border-radius: 24px;
        }

        .metric-donut-layout {
            grid-template-columns: 1fr;
            text-align: center;
        }

        .metric-note-left,
        .metric-note-right {
            text-align: center;
        }

        .metric-note-row {
            gap: 24px;
            flex-wrap: wrap;
        }

        .contact-form-card {
            padding: 24px 20px;
        }

        .contact-actions {
            align-items: stretch;
        }

        .contact-submit {
            width: 100%;
        }

        .global-map-card {
            min-height: 360px;
        }

        .testimonial-content p {
            font-size: 20px;
        }

        .modal-card {
            padding: 30px 18px 20px;
        }

        .modal-actions {
            grid-template-columns: 1fr;
        }
    }
