    /* ===== TOKENS ===== */
    :root {
        --bg:        #07100d;
        --bg2:       #0c1a14;
        --bg3:       #112019;
        --bg-card:   #0f1d17;
        --primary:   #00e5a0;
        --primary-glow: rgba(0,229,160,.18);
        --primary-dim:  rgba(0,229,160,.08);
        --text:      #d6ede6;
        --text-muted:#5c8070;
        --text-soft: #9bbfb2;
        --border:    rgba(0,229,160,.18);
        --border-soft:rgba(0,229,160,.07);
        --radius:    12px;
        --radius-sm: 8px;
        --shadow:    0 4px 24px rgba(0,0,0,.5);
        --shadow-glow:0 0 32px rgba(0,229,160,.12);
        --font-head: 'Space Grotesk', sans-serif;
        --font-body: 'Inter', sans-serif;
        --nav-h:     68px;
    }

    /* ===== RESET ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
        background: var(--bg);
        color: var(--text);
        font-family: var(--font-body);
        line-height: 1.7;
        overflow-x: hidden;
    }
    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    ul { list-style: none; }
    button { cursor: pointer; font-family: inherit; }

    /* ===== GRID BG ===== */
    .grid-bg {
        position: absolute;
        inset: 0;
        background-image:
            linear-gradient(rgba(0,229,160,.04) 1px, transparent 1px),
            linear-gradient(90deg, rgba(0,229,160,.04) 1px, transparent 1px);
        background-size: 44px 44px;
        pointer-events: none;
        z-index: 0;
    }

    /* ===== TYPE ===== */
    h1,h2,h3,h4,h5 {
        font-family: var(--font-head);
        line-height: 1.2;
        letter-spacing: -.02em;
        font-weight: 700;
    }
    h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
    h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
    h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
    h4 { font-size: 1rem; font-weight: 600; }

    .label {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        font-size: .72rem;
        font-weight: 600;
        letter-spacing: .1em;
        text-transform: uppercase;
        color: var(--primary);
        background: var(--primary-dim);
        border: 1px solid var(--border);
        padding: 4px 12px;
        border-radius: 999px;
    }
    .label::before {
        content: '';
        width: 6px; height: 6px;
        background: var(--primary);
        border-radius: 50%;
        animation: blink 2s ease-in-out infinite;
    }

    /* ===== LAYOUT ===== */
    .container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
    section { position: relative; }
    .section-gap    { padding: 96px 0; }
    .section-gap-sm { padding: 60px 0; }

    /* ===== BUTTONS ===== */
    .btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 13px 26px;
        border-radius: 999px;
        font-family: var(--font-head);
        font-size: .92rem;
        font-weight: 600;
        transition: all .2s ease;
        border: none;
        white-space: nowrap;
    }
    .btn-primary { background: var(--primary); color: #07100d; }
    .btn-primary:hover {
        background: #13ffb4;
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(0,229,160,.35);
    }
    .btn-outline {
        background: transparent;
        color: var(--primary);
        border: 1px solid var(--border);
    }
    .btn-outline:hover {
        background: var(--primary-dim);
        border-color: var(--primary);
        transform: translateY(-2px);
    }
    .btn svg { width: 17px; height: 17px; flex-shrink: 0; }

    /* Shimmer sweep on buttons */
    .btn { position: relative; overflow: hidden; }
    .btn::after {
        content: '';
        position: absolute;
        top: 0; left: -100%;
        width: 60%; height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
        transform: skewX(-20deg);
        transition: left .5s ease;
    }
    .btn:hover::after { left: 160%; }

    /* Ripple */
    .ripple {
        position: absolute;
        border-radius: 50%;
        background: rgba(255,255,255,.25);
        transform: scale(0);
        animation: rippleAnim .55s linear;
        pointer-events: none;
    }
    @keyframes rippleAnim { to { transform: scale(4); opacity: 0; } }

    /* ===== NAV ===== */
    nav {
        position: fixed;
        top: 0; left: 0; right: 0;
        z-index: 100;
        height: var(--nav-h);
        display: flex;
        align-items: center;
        transition: background .3s, border-color .3s;
        border-bottom: 1px solid transparent;
    }
    nav.scrolled {
        background: rgba(7,16,13,.92);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        border-color: var(--border-soft);
    }
    nav .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
    .nav-logo {
        font-family: var(--font-head);
        font-size: 1.05rem;
        font-weight: 700;
        display: flex;
        align-items: center;
        gap: 10px;
        min-width: 0;
    }
    .nav-logo-img {
        display: block;
        width: auto;
        max-width: 170px;
        height: 32px;
        object-fit: contain;
    }
    .nav-logo-icon {
        width: 34px; height: 34px;
        background: var(--primary-dim);
        border: 1px solid var(--border);
        border-radius: var(--radius-sm);
        display: flex; align-items: center; justify-content: center;
        color: var(--primary);
        transition: background .2s, box-shadow .2s, transform .2s;
    }
    .nav-logo:hover .nav-logo-icon {
        background: rgba(0,229,160,.18);
        box-shadow: 0 0 14px rgba(0,229,160,.3);
        transform: rotate(10deg) scale(1.08);
    }
    .nav-logo em { color: var(--primary); font-style: normal; }
    .nav-links { display: flex; align-items: center; gap: 28px; }
    .nav-links a {
        font-size: .88rem; color: var(--text-soft);
        transition: color .2s;
        position: relative; padding-bottom: 3px;
    }
    .nav-links a::after {
        content: '';
        position: absolute; bottom: 0; left: 0;
        width: 0; height: 1px;
        background: var(--primary);
        box-shadow: 0 0 6px var(--primary);
        transition: width .25s ease;
    }
    .nav-links a:hover { color: var(--text); }
    .nav-links a:hover::after { width: 100%; }
    .nav-actions { display: flex; align-items: center; gap: 10px; }
    .hamburger {
        display: none;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        padding: 6px;
    }
    .hamburger span {
        display: block; width: 22px; height: 2px;
        background: var(--text); border-radius: 2px;
        transition: all .3s;
    }

    /* ===== MOBILE MENU ===== */
    .mobile-menu {
        position: fixed;
        top: var(--nav-h); left: 0; right: 0;
        background: rgba(7,16,13,.97);
        backdrop-filter: blur(18px);
        border-bottom: 1px solid var(--border-soft);
        padding: 20px 24px 28px;
        transform: translateY(-110%);
        transition: transform .3s ease;
        z-index: 99;
    }
    .mobile-menu.open { transform: translateY(0); }
    .mobile-menu ul { display: flex; flex-direction: column; gap: 2px; margin-bottom: 20px; }
    .mobile-menu ul a {
        display: block; padding: 11px 14px;
        color: var(--text-soft);
        border-radius: var(--radius-sm);
        transition: background .15s, color .15s;
    }
    .mobile-menu ul a:hover { background: var(--bg3); color: var(--text); }
    .mobile-menu .btn { width: 100%; justify-content: center; }

    /* ===== HERO ===== */
    .hero {
        min-height: 100vh;
        display: flex; align-items: center;
        padding-top: var(--nav-h);
        overflow: hidden;
    }
    .hero .container { position: relative; z-index: 1; }
    .hero-glow {
        position: absolute;
        top: 20%; left: 15%;
        width: 600px; height: 600px;
        background: radial-gradient(circle, rgba(0,229,160,.07) 0%, transparent 65%);
        pointer-events: none; z-index: 0;
    }
    .hero-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 56px;
        align-items: center;
        padding: 72px 0;
    }
    .hero-label { margin-bottom: 22px; }
    .hero-title { margin-bottom: 22px; color: var(--text); }
    .hero-title .hl {
        color: var(--primary);
        position: relative;
    }
    .hero-title .hl::after {
        content: '';
        position: absolute;
        bottom: 3px; left: 0; right: 0;
        height: 2px; background: var(--primary);
        border-radius: 2px; opacity: .35;
    }
    .hero-desc { font-size: 1.05rem; color: var(--text-soft); margin-bottom: 36px; max-width: 460px; }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
    .hero-trust {
        margin-top: 44px;
        display: flex; align-items: center; gap: 14px;
        font-size: .82rem; color: var(--text-muted);
    }
    .diag-banner {
        display: grid;
        grid-template-columns: minmax(0, 1.3fr) auto;
        gap: 28px;
        align-items: center;
        padding: 30px 32px;
        background: linear-gradient(135deg, #0c1a14 0%, #112019 100%);
        border: 1px solid var(--border-soft);
        border-radius: var(--radius);
        box-shadow: var(--shadow);
    }
    .diag-banner h2 { margin: 16px 0 10px; }
    .diag-banner p { color: var(--text-soft); max-width: 760px; }
    .diag-banner-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: flex-end;
    }
    .trust-avatars { display: flex; }
    .trust-av {
        width: 30px; height: 30px; border-radius: 50%;
        border: 2px solid var(--bg);
        margin-right: -9px;
        background: var(--bg3);
        display: flex; align-items: center; justify-content: center;
        font-size: .66rem; font-weight: 700;
        color: var(--primary); font-family: var(--font-head);
    }
    .trust-av:last-child { margin-right: 0; }
    .trust-avatars:hover .trust-av { margin-right: -4px; transition: margin .25s ease; }
    .trust-avatars:hover .trust-av:last-child { margin-right: 0; }

    /* Terminal */
    .hero-terminal {
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: var(--radius);
        box-shadow: var(--shadow), var(--shadow-glow);
        overflow: hidden;
        animation: terminalGlow 4s ease-in-out infinite;
    }
    /* Scan line inside terminal */
    .t-body { position: relative; }
    .t-body::after {
        content: '';
        position: absolute;
        left: 0; right: 0; height: 2px;
        background: linear-gradient(90deg, transparent, rgba(0,229,160,.15), transparent);
        animation: scanLine 3s linear infinite;
        pointer-events: none;
    }
    @keyframes scanLine {
        0%   { top: 0;    opacity: 0; }
        5%   { opacity: 1; }
        95%  { opacity: 1; }
        100% { top: 100%; opacity: 0; }
    }

    /* Glitch on hero title hover */
    .hero-title:hover .hl {
        animation: glitch .4s steps(2) 1;
    }
    @keyframes glitch {
        0%  { text-shadow: none; transform: none; }
        20% { text-shadow: -2px 0 rgba(255,0,128,.7), 2px 0 rgba(0,229,160,.7); transform: translateX(-1px); }
        40% { text-shadow:  2px 0 rgba(255,0,128,.7),-2px 0 rgba(0,229,160,.7); transform: translateX(2px); }
        60% { text-shadow: -1px 0 rgba(0,229,160,.5); transform: translateX(-1px); }
        80% { text-shadow:  1px 0 rgba(255,0,128,.4); transform: translateX(1px); }
        100%{ text-shadow: none; transform: none; }
    }

    @keyframes terminalGlow {
        0%,100% { box-shadow: var(--shadow), 0 0 32px rgba(0,229,160,.08); }
        50%      { box-shadow: var(--shadow), 0 0 48px rgba(0,229,160,.18); }
    }
    .t-header {
        background: var(--bg3);
        padding: 11px 16px;
        display: flex; align-items: center; gap: 7px;
        border-bottom: 1px solid var(--border-soft);
    }
    .t-dot { width: 11px; height: 11px; border-radius: 50%; }
    .t-r { background: #ff5f57; } .t-y { background: #ffbd2e; } .t-g { background: #28c840; }
    .t-title { margin-left: 8px; font-size: .72rem; color: var(--text-muted); font-family: monospace; }
    .t-body { padding: 22px; font-family: 'Courier New', monospace; font-size: .82rem; line-height: 2; }
    .t-body.switching { opacity: .28; transform: translateY(4px); transition: opacity .22s ease, transform .22s ease; }
    .t-body.ready { opacity: 1; transform: translateY(0); transition: opacity .28s ease, transform .28s ease; }
    .t-line { display: flex; gap: 8px; }
    .t-prompt { color: var(--primary); flex-shrink: 0; }
    .t-cmd    { color: var(--text); }
    .t-out    { color: var(--text-soft); padding-left: 14px; }
    .t-err    { color: #ff6b6b; padding-left: 14px; }
    .t-ok     { color: var(--primary); padding-left: 14px; }
    .t-cmt    { color: var(--text-muted); font-size: .76rem; padding-left: 14px; }
    .t-sp     { height: 6px; }
    .t-cursor {
        display: inline-block; width: 7px; height: 13px;
        background: var(--primary); vertical-align: middle;
        animation: blink 1s step-end infinite;
    }

    /* ===== SECTION HEADER ===== */
    .sec-head { text-align: center; max-width: 620px; margin: 0 auto 56px; }
    .sec-head .label { margin-bottom: 18px; }
    .sec-head h2 { margin-bottom: 14px; }
    .sec-head p { color: var(--text-soft); font-size: 1rem; }

    /* ===== PAIN ===== */
    .pain-section { background: var(--bg2); }
    .pain-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    .pain-card {
        background: var(--bg-card);
        border: 1px solid var(--border-soft);
        border-radius: var(--radius);
        padding: 26px;
        transition: border-color .2s, transform .2s;
    }
    .pain-card:hover {
        border-color: var(--border);
        transform: translateY(-3px);
        box-shadow: 0 8px 32px rgba(0,0,0,.4), 0 0 0 1px var(--border);
    }
    .pain-icon {
        width: 42px; height: 42px;
        background: var(--primary-dim);
        border: 1px solid var(--border-soft);
        border-radius: var(--radius-sm);
        display: flex; align-items: center; justify-content: center;
        margin-bottom: 14px;
        color: var(--primary);
        transition: transform .3s cubic-bezier(.34,1.56,.64,1), background .2s, box-shadow .2s, border-color .2s;
    }
    .pain-icon svg { width: 21px; height: 21px; stroke: currentColor; }
    .pain-card:hover .pain-icon {
        transform: scale(1.18) rotate(-6deg);
        background: rgba(0,229,160,.16);
        border-color: var(--border);
        box-shadow: 0 4px 14px rgba(0,229,160,.2);
    }
    .pain-tag { font-size: .73rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 5px; }
    .pain-card h4 { color: var(--text); margin-bottom: 7px; }
    .pain-card p  { color: var(--text-soft); font-size: .87rem; }

    /* ===== BENEFITS ===== */
    .ben-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .ben-card {
        background: var(--bg-card);
        border: 1px solid var(--border-soft);
        border-radius: var(--radius);
        padding: 30px 26px;
        transition: border-color .25s, box-shadow .25s, transform .2s;
        position: relative; overflow: hidden;
    }
    .ben-card::before {
        content: '';
        position: absolute; top: 0; left: 0; right: 0; height: 2px;
        background: var(--primary);
        transform: scaleX(0); transform-origin: left;
        transition: transform .3s ease;
    }
    .ben-card:hover::before { transform: scaleX(1); }
    .ben-card:hover {
        border-color: var(--border);
        box-shadow: 0 12px 40px rgba(0,0,0,.5), 0 0 24px rgba(0,229,160,.12);
        transform: translateY(-6px);
    }
    .ben-num {
        font-family: var(--font-head); font-size: .72rem; font-weight: 700;
        color: var(--text-muted); letter-spacing: .1em; margin-bottom: 18px;
        transition: color .2s;
    }
    .ben-card:hover .ben-num { color: var(--primary); }
    .ben-icon {
        width: 50px; height: 50px;
        background: var(--primary-dim);
        border: 1px solid var(--border-soft);
        border-radius: var(--radius-sm);
        display: flex; align-items: center; justify-content: center;
        color: var(--primary);
        margin-bottom: 14px;
        transition: transform .35s cubic-bezier(.34,1.56,.64,1), background .25s, box-shadow .25s, border-color .25s;
    }
    .ben-icon svg { width: 24px; height: 24px; stroke: currentColor; }
    .ben-card:hover .ben-icon {
        transform: scale(1.12) translateY(-3px);
        background: rgba(0,229,160,.15);
        border-color: var(--border);
        box-shadow: 0 0 18px rgba(0,229,160,.25);
    }
    .ben-card h4 { color: var(--text); margin-bottom: 9px; transition: color .2s; }
    .ben-card:hover h4 { color: var(--primary); }
    .ben-card p  { font-size: .86rem; color: var(--text-soft); line-height: 1.65; }

    /* ===== CASES ===== */
    .case-section {
        background:
            linear-gradient(180deg, rgba(12,26,20,.72), rgba(7,16,13,1)),
            linear-gradient(rgba(0,229,160,.035) 1px, transparent 1px),
            linear-gradient(90deg, rgba(0,229,160,.03) 1px, transparent 1px);
        background-size: auto, 44px 44px, 44px 44px;
        border-top: 1px solid var(--border-soft);
        border-bottom: 1px solid var(--border-soft);
    }
    .case-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .case-card {
        background: var(--bg-card);
        border: 1px solid var(--border-soft);
        border-radius: var(--radius);
        padding: 28px;
        min-height: 100%;
        display: grid;
        gap: 16px;
        align-content: start;
        box-shadow: var(--shadow);
        transition: border-color .2s, transform .2s, box-shadow .2s;
    }
    .case-card:hover {
        border-color: var(--border);
        transform: translateY(-4px);
        box-shadow: 0 10px 32px rgba(0,0,0,.45), 0 0 20px rgba(0,229,160,.08);
    }
    .case-sector {
        color: var(--primary);
        font-family: var(--font-head);
        font-size: .78rem;
        font-weight: 700;
        letter-spacing: .04em;
        text-transform: uppercase;
    }
    .case-card blockquote {
        color: var(--text);
        font-family: var(--font-head);
        font-size: 1.05rem;
        line-height: 1.45;
    }
    .case-meta {
        color: var(--text-muted);
        font-size: .82rem;
    }
    .case-result {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 2px;
    }
    .case-result span {
        display: inline-flex;
        align-items: center;
        min-height: 32px;
        padding: 0 11px;
        border-radius: 999px;
        border: 1px solid var(--border-soft);
        background: var(--primary-dim);
        color: var(--text-soft);
        font-size: .76rem;
    }

    /* ===== SERVICE FEATURE ===== */
    .service-feature-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .service-feature-card,
    .support-card {
        background: var(--bg-card);
        border: 1px solid var(--border-soft);
        border-radius: var(--radius);
        padding: 28px;
        box-shadow: var(--shadow);
        transition: border-color .2s, transform .2s, box-shadow .2s;
    }
    .service-feature-card:hover,
    .support-card:hover {
        border-color: var(--border);
        transform: translateY(-4px);
        box-shadow: 0 10px 32px rgba(0,0,0,.45), 0 0 20px rgba(0,229,160,.08);
    }
    .service-feature-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 16px;
    }
    .service-kicker,
    .support-badge {
        display: inline-flex;
        align-items: center;
        min-height: 30px;
        padding: 0 12px;
        border-radius: 999px;
        background: var(--primary-dim);
        border: 1px solid var(--border);
        color: var(--primary);
        font-size: .73rem;
        font-weight: 600;
        letter-spacing: .04em;
    }
    .service-feature-card h3,
    .support-card h3 {
        margin-bottom: 10px;
    }
    .service-feature-card p,
    .support-card p {
        color: var(--text-soft);
        font-size: .9rem;
    }
    .service-mini-list {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 18px;
    }
    .service-mini-list span {
        display: inline-flex;
        align-items: center;
        min-height: 32px;
        padding: 0 12px;
        border-radius: 999px;
        border: 1px solid var(--border-soft);
        background: rgba(255,255,255,.02);
        color: var(--text-soft);
        font-size: .78rem;
    }
    .service-feature-actions,
    .support-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 22px;
    }
    .service-price-note {
        font-size: .78rem;
        color: var(--primary);
        margin: 10px 0 0;
        font-family: var(--font-mono, monospace);
    }
    .service-price-note strong {
        font-weight: 700;
    }
    .support-section {
        background: linear-gradient(180deg, rgba(12,26,20,.95), rgba(7,16,13,1));
        border-top: 1px solid var(--border-soft);
        border-bottom: 1px solid var(--border-soft);
    }
    .support-shell {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* ===== PROCESS ===== */
    .process-section { background: var(--bg2); }
    .steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; position: relative; }
    .steps::before {
        content: '';
        position: absolute; top: 31px; left: 12%; right: 12%;
        height: 1px; background: var(--border); z-index: 0;
    }
    .step { text-align: center; padding: 0 14px; position: relative; z-index: 1; }
    .step-num {
        width: 62px; height: 62px; margin: 0 auto 22px;
        background: var(--bg3); border: 1px solid var(--border); border-radius: 50%;
        display: flex; align-items: center; justify-content: center;
        font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--primary);
        position: relative; z-index: 1;
        transition: background .2s, box-shadow .2s;
    }
    .step:hover .step-num {
        background: var(--primary-dim);
        box-shadow: 0 0 0 6px rgba(0,229,160,.08), 0 0 24px rgba(0,229,160,.25);
        transform: scale(1.08);
    }
    .step-num { transition: background .2s, box-shadow .2s, transform .25s cubic-bezier(.34,1.56,.64,1); }
    .step h4 { margin-bottom: 9px; font-size: .96rem; transition: color .2s; }
    .step:hover h4 { color: var(--primary); }
    .step p  { font-size: .83rem; color: var(--text-soft); }

    /* ===== STATS ===== */
    .stats-grid {
        display: grid; grid-template-columns: repeat(4, 1fr);
        gap: 1px; background: var(--border-soft);
        border: 1px solid var(--border-soft); border-radius: var(--radius); overflow: hidden;
    }
    .stat-item {
        background: var(--bg-card); padding: 38px 28px; text-align: center;
        transition: background .2s, box-shadow .2s;
        cursor: default;
    }
    .stat-item:hover {
        background: var(--bg3);
        box-shadow: inset 0 0 40px rgba(0,229,160,.05);
    }
    .stat-val {
        font-family: var(--font-head); font-size: 2.4rem; font-weight: 700;
        color: var(--primary); line-height: 1; margin-bottom: 7px;
        transition: text-shadow .2s;
    }
    .stat-item:hover .stat-val { text-shadow: 0 0 20px rgba(0,229,160,.5); }
    .stat-lbl { font-size: .83rem; color: var(--text-muted); transition: color .2s; }
    .stat-item:hover .stat-lbl { color: var(--text-soft); }

    /* ===== VALUES ===== */
    .val-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
    .val-card {
        padding: 34px 30px;
        background: var(--bg-card);
        border: 1px solid var(--border-soft); border-radius: var(--radius);
        transition: border-color .2s;
    }
    .val-card:hover {
        border-color: var(--border);
        box-shadow: 0 8px 32px rgba(0,0,0,.4), 0 0 20px rgba(0,229,160,.08);
        transform: translateY(-4px);
    }
    .val-card { transition: border-color .2s, box-shadow .25s, transform .25s; }
    .val-icon {
        width: 50px; height: 50px;
        background: var(--primary-dim); border: 1px solid var(--border-soft);
        border-radius: var(--radius-sm);
        display: flex; align-items: center; justify-content: center;
        color: var(--primary); margin-bottom: 18px;
        transition: background .25s, box-shadow .25s, transform .3s cubic-bezier(.34,1.56,.64,1), border-color .25s;
    }
    .val-card:hover .val-icon {
        background: rgba(0,229,160,.15);
        border-color: var(--border);
        box-shadow: 0 0 18px rgba(0,229,160,.25);
        transform: scale(1.12);
    }
    .val-card h4 { font-size: 1.05rem; margin-bottom: 10px; transition: color .2s; }
    .val-card:hover h4 { color: var(--primary); }
    .val-card p  { font-size: .88rem; color: var(--text-soft); }

    /* ===== CTA ===== */
    .cta-section {
        background: linear-gradient(135deg, #0a1e17 0%, #071410 100%);
        border-top: 1px solid var(--border-soft);
        border-bottom: 1px solid var(--border-soft);
    }
    .cta-inner { display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; }
    .cta-inner h2 { margin-bottom: 10px; }
    .cta-inner > div:first-child p { color: var(--text-soft); }
    .cta-actions { display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
    .wa-btn {
        display: inline-flex; align-items: center; gap: 9px;
        padding: 13px 22px;
        background: #25D366; color: #fff;
        border-radius: 999px;
        font-weight: 600; font-family: var(--font-head); font-size: .88rem;
        transition: all .2s;
    }
    .wa-btn:hover { background: #22c55e; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.3); }
    .cta-note { font-size: .76rem; color: var(--text-muted); text-align: right; }

    /* ===== FOOTER ===== */
    footer { background: var(--bg); border-top: 1px solid var(--border-soft); padding: 36px 0; }
    .foot-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
    .foot-brand { font-family: var(--font-head); font-size: .87rem; color: var(--text-muted); }
    .foot-brand em { color: var(--primary); font-style: normal; }
    .foot-links { display: flex; gap: 22px; }
    .foot-links a { font-size: .83rem; color: var(--text-muted); transition: color .2s; }
    .foot-links a:hover { color: var(--primary); }
    .soc-links { display: flex; gap: 10px; }
    .soc-link {
        width: 34px; height: 34px;
        background: var(--bg3); border: 1px solid var(--border-soft); border-radius: var(--radius-sm);
        display: flex; align-items: center; justify-content: center;
        color: var(--text-muted); font-size: .82rem; transition: all .2s;
    }
    .soc-link:hover {
        border-color: var(--primary); color: var(--primary);
        background: var(--primary-dim);
        box-shadow: 0 0 12px rgba(0,229,160,.25);
        transform: translateY(-3px);
    }
    .soc-link { transition: all .2s; }

    /* ===== MEDIA / IMAGE HELPERS ===== */
    .media-panel {
        position: relative;
        overflow: hidden;
        border-radius: var(--radius);
        border: 1px solid var(--border-soft);
        background: var(--bg-card);
        box-shadow: var(--shadow);
    }
    .media-panel img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: saturate(.95) contrast(1.05);
    }
    .media-panel::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, transparent, rgba(7,16,13,.28));
        pointer-events: none;
    }
    .image-band {
        min-height: 440px;
        background: center / cover no-repeat;
        position: relative;
        overflow: hidden;
    }
    .image-band::before {
        content: '';
        position: absolute;
        inset: 0;
        background:
            linear-gradient(90deg, rgba(7,16,13,.9), rgba(7,16,13,.42), rgba(7,16,13,.72)),
            linear-gradient(rgba(0,229,160,.06) 1px, transparent 1px),
            linear-gradient(90deg, rgba(0,229,160,.05) 1px, transparent 1px);
        background-size: auto, 44px 44px, 44px 44px;
    }
    .image-band > .container { position: relative; z-index: 1; }

    /* ===== SERVICE / ARTICLE PAGES ===== */
    .page-hero {
        min-height: 68vh;
        display: flex;
        align-items: center;
        padding: calc(var(--nav-h) + 72px) 0 72px;
        overflow: hidden;
        background:
            radial-gradient(circle at 22% 24%, rgba(0,229,160,.12), transparent 34%),
            linear-gradient(135deg, #07100d 0%, #0c1a14 58%, #07100d 100%);
    }
    .page-hero-inner {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(320px, .82fr);
        gap: 48px;
        align-items: center;
        position: relative;
        z-index: 1;
    }
    .page-hero-copy p {
        color: var(--text-soft);
        font-size: 1.05rem;
        max-width: 650px;
        margin-top: 18px;
    }
    .page-hero-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 30px;
    }
    .service-layout {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 320px;
        gap: 36px;
        align-items: start;
    }
    .article-panel,
    .side-panel,
    .form-panel {
        background: var(--bg-card);
        border: 1px solid var(--border-soft);
        border-radius: var(--radius);
        box-shadow: var(--shadow);
    }
    .article-panel { padding: 38px; }
    .article-panel h2,
    .article-panel h3,
    .article-panel h4,
    .article-panel h5 { margin: 30px 0 12px; }
    .article-panel h2:first-child,
    .article-panel h3:first-child { margin-top: 0; }
    .article-panel p,
    .article-panel li { color: var(--text-soft); }
    .article-panel p + p { margin-top: 15px; }
    .article-panel ul,
    .article-panel ol { margin: 16px 0 0 22px; }
    .article-panel ul { list-style: disc; }
    .article-panel ol { list-style: decimal; }
    .article-panel strong,
    .article-panel b { color: var(--text); }
    .side-panel {
        padding: 24px;
        position: sticky;
        top: calc(var(--nav-h) + 24px);
    }
    .side-panel h3 {
        font-size: 1rem;
        margin-bottom: 14px;
    }
    .side-list { display: grid; gap: 10px; }
    .side-list a,
    .side-list span {
        display: flex;
        justify-content: space-between;
        gap: 10px;
        padding: 12px 14px;
        color: var(--text-soft);
        background: rgba(255,255,255,.02);
        border: 1px solid var(--border-soft);
        border-radius: var(--radius-sm);
        transition: background .2s, color .2s, border-color .2s;
    }
    .side-list a:hover {
        color: var(--primary);
        background: var(--primary-dim);
        border-color: var(--border);
    }
    .newsletter-strip {
        background: linear-gradient(135deg, #0a1e17 0%, #071410 100%);
        border-top: 1px solid var(--border-soft);
        border-bottom: 1px solid var(--border-soft);
    }
    .newsletter-inner {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
        gap: 32px;
        align-items: center;
    }

    /* ===== FORMS / CONTACT ===== */
    .form-panel { padding: 34px; }
    .form-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }
    .field { display: grid; gap: 8px; }
    .field-full { grid-column: 1 / -1; }
    .field label {
        color: var(--text-soft);
        font-size: .82rem;
        font-weight: 600;
    }
    .input,
    .textarea,
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea {
        width: 100%;
        color: var(--text);
        background: rgba(255,255,255,.03);
        border: 1px solid var(--border-soft);
        border-radius: var(--radius-sm);
        padding: 13px 14px;
        font: inherit;
        transition: border-color .2s, box-shadow .2s, background .2s;
    }
    .textarea,
    textarea { min-height: 130px; resize: vertical; }
    .input:focus,
    .textarea:focus,
    input:focus,
    textarea:focus {
        outline: none;
        background: rgba(0,229,160,.04);
        border-color: var(--border);
        box-shadow: 0 0 0 3px rgba(0,229,160,.08);
    }
    .checkbox-row {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        color: var(--text-muted);
        font-size: .84rem;
    }
    .checkbox-row input { width: auto; margin-top: 6px; accent-color: var(--primary); }
    .contact-grid {
        display: grid;
        grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
        gap: 32px;
        align-items: start;
    }
    .contact-card {
        background: var(--bg-card);
        border: 1px solid var(--border-soft);
        border-radius: var(--radius);
        padding: 26px;
    }
    .contact-card + .contact-card { margin-top: 16px; }
    .contact-card p,
    .contact-card a { color: var(--text-soft); }
    .map-frame {
        width: 100%;
        min-height: 340px;
        border: 0;
        filter: grayscale(1) invert(.92) hue-rotate(90deg) saturate(.8);
    }
    .messages {
        display: grid;
        gap: 10px;
        margin-bottom: 20px;
    }
    .message {
        padding: 13px 15px;
        border-radius: var(--radius-sm);
        border: 1px solid var(--border);
        background: var(--primary-dim);
        color: var(--text);
    }

    /* ===== FAB ===== */
    .fab {
        position: fixed; bottom: 26px; right: 26px;
        width: 54px; height: 54px;
        background: #25D366; border-radius: 50%;
        display: flex; align-items: center; justify-content: center;
        box-shadow: 0 4px 18px rgba(37,211,102,.4);
        z-index: 200; transition: all .2s;
    }
    .fab:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,.5); }
    .fab svg { width: 26px; height: 26px; fill: #fff; }

    /* ===== ANIMATIONS ===== */
    @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }
    .afu { opacity: 0; transform: translateY(20px); transition: opacity .55s ease, transform .55s ease; }
    .afu.vis { opacity: 1; transform: translateY(0); }

    /* ===== RESPONSIVE ===== */
    @media(max-width:1024px){
        .ben-grid  { grid-template-columns: repeat(2,1fr); }
        .case-grid { grid-template-columns: 1fr 1fr; }
        .service-feature-grid,
        .support-shell { grid-template-columns: 1fr 1fr; }
        .steps     { grid-template-columns: repeat(2,1fr); gap: 32px; }
        .steps::before { display: none; }
        .stats-grid{ grid-template-columns: repeat(2,1fr); }
        .val-grid  { grid-template-columns: 1fr 1fr; }
        .page-hero-inner,
        .service-layout,
        .contact-grid { grid-template-columns: 1fr; }
        .diag-banner { grid-template-columns: 1fr; }
        .diag-banner-actions { align-items: flex-start; }
        .side-panel { position: static; }
    }
    @media(max-width:768px){
        .hero-inner{ grid-template-columns: 1fr; gap: 40px; padding: 56px 0 36px; }
        .hero-terminal { display: none; }
        .pain-grid { grid-template-columns: 1fr; }
        .ben-grid  { grid-template-columns: 1fr; }
        .case-grid { grid-template-columns: 1fr; }
        .service-feature-grid,
        .support-shell { grid-template-columns: 1fr; }
        .steps     { grid-template-columns: 1fr; }
        .cta-inner { grid-template-columns: 1fr; gap: 28px; }
        .cta-actions { align-items: flex-start; }
        .cta-note  { text-align: left; }
        .foot-inner{ flex-direction: column; gap: 14px; }
        .nav-links { display: none; }
        .nav-logo-img { max-width: 146px; height: 28px; }
        .nav-actions .btn-outline { display: none; }
        .hamburger { display: flex; }
        .val-grid  { grid-template-columns: 1fr; }
        .page-hero { min-height: auto; padding: calc(var(--nav-h) + 44px) 0 52px; }
        .page-hero-inner { gap: 28px; }
        .article-panel,
        .form-panel { padding: 24px; }
        .newsletter-inner,
        .form-grid { grid-template-columns: 1fr; }
        .field-full { grid-column: auto; }
    }
    @media(max-width:480px){
        .nav-logo-img { max-width: 132px; height: 26px; }
        .stats-grid{ grid-template-columns: 1fr; }
        .hero-actions { flex-direction: column; align-items: flex-start; }
        .diag-banner { padding: 24px 22px; }
    }
