    :root {
        --graphite: #0B1117;
        --graphite-soft: #A7ADB3;
        --accent-1: #9BEF00;
        --accent-2: #A3F000;
        --line: #303840;
        --surface: #111A22;
    }

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

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
        background: #0B1117;
        color: var(--graphite);
        overflow-x: hidden;
    }

    
    #progress-bar {
        position: fixed;
        top: 0;
        left: 0;
        height: 4px;
        width: 0%;
        background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
        z-index: 9999;
    }

    
    .bg-decor {
        position: fixed;
        inset: 0;
        overflow: hidden;
        z-index: 0;
        pointer-events: none;
    }

    .blob {
        position: absolute;
        border-radius: 50%;
        filter: blur(70px);
        opacity: 0.22;
        background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
        will-change: transform;
    }

    .blob-1 { width: 360px; height: 360px; top: 0%; left: -100px; }
    .blob-2 { width: 280px; height: 280px; top: 55%; right: -80px; }
    .blob-3 { width: 320px; height: 320px; top: 130%; left: 20%; }
    .blob-4 { width: 240px; height: 240px; top: 200%; right: 10%; }

    section {
        position: relative;
        z-index: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 84px 24px;
        text-align: center;
    }

    .accent {
        background: linear-gradient(120deg, var(--accent-1), var(--accent-2));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

    
    #hero {
        min-height: 86vh;
        padding-bottom: 96px;
    }

    #hero .greet {
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: var(--graphite-soft);
        margin-bottom: 22px;
    }

    #hero h1 {
        font-size: clamp(38px, 8.5vw, 80px);
        font-weight: 800;
        line-height: 1.06;
        letter-spacing: -0.02em;
        max-width: 900px;
    }

    #hero h1 .hero-line {
        display: block;
    }

    #hero .tagline {
        margin-top: 26px;
        font-size: clamp(16px, 2.4vw, 20px);
        color: var(--graphite-soft);
        max-width: 560px;
    }

    #hero .tagline-note {
        margin-top: 16px;
        max-width: 460px;
        font-size: 14px;
        font-weight: 600;
        color: var(--graphite-soft);
    }

    #hero .tagline-note::before {
        content: '';
        display: inline-block;
        vertical-align: middle;
        width: 7px;
        height: 7px;
        margin-right: 9px;
        margin-top: -2px;
        border-radius: 50%;
        background: linear-gradient(120deg, var(--accent-1), var(--accent-2));
    }

    .hero-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 14px;
        justify-content: center;
        margin-top: 34px;
    }

    .hero-actions .cta-button {
        margin-top: 0;
    }

    
    #hero h1 .hero-line.accent {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 2.52em;
    }

    #rotator {
        font-size: 1.18em;
        line-height: 1.06;
        transition: opacity 0.35s ease, transform 0.35s ease;
    }

    #rotator.is-swapping {
        opacity: 0;
        transform: translateY(-10px);
    }

    @media (prefers-reduced-motion: reduce) {
        #rotator { transition: opacity 0.2s ease; }
        #rotator.is-swapping { transform: none; }
    }

    
    #hero .greet,
    #hero h1 .hero-line,
    #hero .tagline,
    #hero .tagline-note,
    #hero .hero-actions {
        animation: hero-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) backwards;
    }

    #hero .greet { animation-delay: 0.05s; }
    #hero h1 .hero-line:nth-child(1) { animation-delay: 0.16s; }
    #hero h1 .hero-line:nth-child(2) { animation-delay: 0.29s; }
    #hero h1 .hero-line:nth-child(3) { animation-delay: 0.42s; }
    #hero .tagline { animation-delay: 0.58s; }
    #hero .tagline-note { animation-delay: 0.7s; }
    #hero .hero-actions { animation-delay: 0.82s; }

    @keyframes hero-rise {
        from {
            opacity: 0;
            transform: translateY(26px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @media (prefers-reduced-motion: reduce) {
        #hero .greet,
        #hero h1 .hero-line,
        #hero .tagline,
        #hero .tagline-note,
        #hero .hero-actions {
            animation: none;
        }
    }

    .cta-button {
        display: inline-block;
        margin-top: 28px;
        padding: 15px 34px;
        background: linear-gradient(120deg, var(--accent-1), var(--accent-2));
        color: #fff;
        font-weight: 700;
        font-size: 15px;
        text-decoration: none;
        border-radius: 12px;
        transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .cta-button--lg {
        padding: 20px 56px;
        font-size: 17px;
        border-radius: 14px;
    }

    .cta-button:hover {
        transform: scale(1.05);
        box-shadow: 0 14px 30px rgba(155, 239, 0, 0.22);
    }

    .scroll-hint {
        position: absolute;
        bottom: 28px;
        font-size: 13px;
        color: var(--graphite-soft);
        opacity: 0.6;
        animation: bounce 2s infinite;
    }

    @keyframes bounce {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(8px); }
    }

    
    html.js-anim .reveal {
        opacity: 0;
        transform: translateY(40px);
        transition: opacity 0.7s ease, transform 0.7s ease;
    }

    html.js-anim .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

    
    h2 {
        font-size: clamp(28px, 4vw, 40px);
        font-weight: 800;
        margin-bottom: 40px;
    }

    .section-sub {
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--graphite-soft);
        margin: 36px 0 16px;
        width: 100%;
        max-width: 620px;
        text-align: left;
    }

    .section-sub:first-of-type {
        margin-top: 0;
    }

    
    .tech-chips {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
        max-width: 720px;
        width: 100%;
    }

    .tech-chip {
        display: flex;
        align-items: baseline;
        gap: 9px;
        background: #171E26;
        border: 1px solid var(--line);
        border-radius: 14px;
        padding: 14px 20px;
        transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    }

    .tech-chip::before {
        content: '';
        align-self: center;
        width: 7px;
        height: 7px;
        border-radius: 50%;
        flex-shrink: 0;
        background: linear-gradient(120deg, var(--accent-1), var(--accent-2));
    }

    .tech-chip .tech-name {
        font-weight: 800;
        font-size: 17px;
        letter-spacing: -0.01em;
    }

    .tech-chip .tech-role {
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--graphite-soft);
        opacity: 0.75;
    }

    .tech-chip:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(155, 239, 0, 0.10);
        border-color: transparent;
    }

    
    .skills-list-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(220px, 1fr));
        gap: 12px;
        max-width: 620px;
        width: 100%;
    }

    .skill-item {
        display: flex;
        align-items: center;
        gap: 10px;
        background: #171E26;
        border: 1px solid var(--line);
        border-radius: 12px;
        padding: 14px 18px;
        text-align: left;
        font-size: 14px;
        font-weight: 600;
        transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    }

    .skill-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(155, 239, 0, 0.10);
        border-color: transparent;
    }

    .skill-item .check {
        color: var(--accent-1);
        font-weight: 800;
        flex-shrink: 0;
    }

    @media (max-width: 560px) {
        .skills-list-grid { grid-template-columns: 1fr; }
    }

    
    .skills-panel {
        --sk-stroke: rgba(35, 35, 41, 0.16);
        --sk-soft: rgba(35, 35, 41, 0.08);
        --sk-block: rgba(155, 239, 0, 0.14);
        --sk-dot: var(--accent-1);
        position: relative;
        display: grid;
        grid-template-columns: minmax(0, 330px) minmax(0, 1fr);
        gap: 24px;
        width: 100%;
        max-width: 980px;
        margin: 74px 0 40px;
        padding: 26px;
        border-radius: 26px;
        background: var(--surface);
        text-align: left;
    }

    .skill-radio {
        position: absolute;
        width: 1px;
        height: 1px;
        opacity: 0;
        pointer-events: none;
    }

    .skills-nav {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .skills-nav .nav-title {
        font-size: clamp(22px, 3vw, 32px);
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: -0.01em;
        margin-bottom: 6px;
    }

    .skill-tab {
        display: grid;
        grid-template-columns: 58px minmax(0, 1fr) auto;
        align-items: center;
        gap: 12px;
        border-radius: 14px;
        background: rgba(23, 30, 38, 0.88);
        font-size: 14px;
        font-weight: 700;
        line-height: 1.3;
        cursor: pointer;
        overflow: hidden;
        transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
    }

    .skill-tab:hover { transform: translateX(3px); }

    .skill-tab .num {
        display: flex;
        align-items: center;
        justify-content: center;
        align-self: stretch;
        padding: 15px 0;
        font-size: 18px;
        font-weight: 800;
        color: var(--graphite-soft);
        background: rgba(35, 35, 41, 0.06);
        transition: background 0.25s ease, color 0.25s ease;
    }

    .skill-tab .chev {
        padding-right: 16px;
        font-size: 13px;
        color: var(--graphite-soft);
        transform: rotate(90deg);
        transition: transform 0.25s ease, color 0.25s ease;
    }

    .skills-view {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 380px;
        padding: 30px 26px;
        border-radius: 20px;
       background: #111A22;
    }

    .skill-pane {
        display: none;
        width: 100%;
        text-align: center;
        animation: pane-in 0.35s ease backwards;
    }

    @keyframes pane-in {
        from { opacity: 0; transform: translateY(10px); }
    }

    .skill-pane h4 {
        font-size: clamp(20px, 2.6vw, 28px);
        font-weight: 800;
        letter-spacing: -0.01em;
        margin-bottom: 8px;
    }

    .skill-pane .pane-sub {
        font-size: 14px;
        line-height: 1.5;
        color: var(--graphite-soft);
        max-width: 420px;
        margin: 0 auto 22px;
    }

    .skill-pane svg {
        display: block;
        width: 100%;
        max-width: 400px;
        height: auto;
        margin: 0 auto;
    }

    #sk1:checked ~ .skills-nav .skill-tab[for="sk1"] {
        background: #171E26;
        box-shadow: 0 10px 24px rgba(155, 239, 0, 0.10);
    }

    #sk1:checked ~ .skills-nav .skill-tab[for="sk1"] .num {
        background: var(--accent-1);
        color: #fff;
    }

    #sk1:checked ~ .skills-nav .skill-tab[for="sk1"] .chev {
        color: var(--accent-1);
        transform: rotate(0deg);
    }

    #sk1:focus-visible ~ .skills-nav .skill-tab[for="sk1"] {
        outline: 3px solid var(--accent-1);
        outline-offset: 2px;
    }

    #sk1:checked ~ .skills-view .skill-pane[data-i="1"] { display: block; }

    #sk2:checked ~ .skills-nav .skill-tab[for="sk2"] {
        background: #171E26;
        box-shadow: 0 10px 24px rgba(155, 239, 0, 0.10);
    }

    #sk2:checked ~ .skills-nav .skill-tab[for="sk2"] .num {
        background: var(--accent-1);
        color: #fff;
    }

    #sk2:checked ~ .skills-nav .skill-tab[for="sk2"] .chev {
        color: var(--accent-1);
        transform: rotate(0deg);
    }

    #sk2:focus-visible ~ .skills-nav .skill-tab[for="sk2"] {
        outline: 3px solid var(--accent-1);
        outline-offset: 2px;
    }

    #sk2:checked ~ .skills-view .skill-pane[data-i="2"] { display: block; }

    #sk3:checked ~ .skills-nav .skill-tab[for="sk3"] {
        background: #171E26;
        box-shadow: 0 10px 24px rgba(155, 239, 0, 0.10);
    }

    #sk3:checked ~ .skills-nav .skill-tab[for="sk3"] .num {
        background: var(--accent-1);
        color: #fff;
    }

    #sk3:checked ~ .skills-nav .skill-tab[for="sk3"] .chev {
        color: var(--accent-1);
        transform: rotate(0deg);
    }

    #sk3:focus-visible ~ .skills-nav .skill-tab[for="sk3"] {
        outline: 3px solid var(--accent-1);
        outline-offset: 2px;
    }

    #sk3:checked ~ .skills-view .skill-pane[data-i="3"] { display: block; }

    #sk4:checked ~ .skills-nav .skill-tab[for="sk4"] {
        background: #171E26;
        box-shadow: 0 10px 24px rgba(155, 239, 0, 0.10);
    }

    #sk4:checked ~ .skills-nav .skill-tab[for="sk4"] .num {
        background: var(--accent-1);
        color: #fff;
    }

    #sk4:checked ~ .skills-nav .skill-tab[for="sk4"] .chev {
        color: var(--accent-1);
        transform: rotate(0deg);
    }

    #sk4:focus-visible ~ .skills-nav .skill-tab[for="sk4"] {
        outline: 3px solid var(--accent-1);
        outline-offset: 2px;
    }

    #sk4:checked ~ .skills-view .skill-pane[data-i="4"] { display: block; }

    #sk5:checked ~ .skills-nav .skill-tab[for="sk5"] {
        background: #171E26;
        box-shadow: 0 10px 24px rgba(155, 239, 0, 0.10);
    }

    #sk5:checked ~ .skills-nav .skill-tab[for="sk5"] .num {
        background: var(--accent-1);
        color: #fff;
    }

    #sk5:checked ~ .skills-nav .skill-tab[for="sk5"] .chev {
        color: var(--accent-1);
        transform: rotate(0deg);
    }

    #sk5:focus-visible ~ .skills-nav .skill-tab[for="sk5"] {
        outline: 3px solid var(--accent-1);
        outline-offset: 2px;
    }

    #sk5:checked ~ .skills-view .skill-pane[data-i="5"] { display: block; }

    #sk6:checked ~ .skills-nav .skill-tab[for="sk6"] {
        background: #171E26;
        box-shadow: 0 10px 24px rgba(155, 239, 0, 0.10);
    }

    #sk6:checked ~ .skills-nav .skill-tab[for="sk6"] .num {
        background: var(--accent-1);
        color: #fff;
    }

    #sk6:checked ~ .skills-nav .skill-tab[for="sk6"] .chev {
        color: var(--accent-1);
        transform: rotate(0deg);
    }

    #sk6:focus-visible ~ .skills-nav .skill-tab[for="sk6"] {
        outline: 3px solid var(--accent-1);
        outline-offset: 2px;
    }

    #sk6:checked ~ .skills-view .skill-pane[data-i="6"] { display: block; }

    @media (prefers-reduced-motion: reduce) {
        .skill-pane { animation: none; }
        .skill-tab:hover { transform: none; }
    }

    @media (max-width: 820px) {
        .skills-panel {
            grid-template-columns: minmax(0, 1fr);
            padding: 20px;
            border-radius: 20px;
        }
        .skills-view { min-height: 300px; padding: 24px 18px; }
    }

    
    .works-count {
        margin-top: -28px;
        margin-bottom: 30px;
        font-size: 14px;
        font-weight: 600;
        color: var(--graphite-soft);
        letter-spacing: 0.5px;
    }

    



















    .work-card[hidden] {
        display: none;
    }


    

    .work-open {
        position: absolute;
        inset: 0;
        font-size: 0;
        color: transparent;
        text-decoration: none;
        z-index: 2;
    }

    .work-open:focus-visible {
        outline: 3px solid var(--accent-1);
        outline-offset: 3px;
        border-radius: 20px;
    }



    
    .services-list {
        width: 100%;
        max-width: 940px;
        border-top: 1px solid var(--line);
    }

    .service-row {
        display: grid;
        grid-template-columns: 72px 1fr auto;
        gap: 22px;
        align-items: start;
        width: 100%;
        padding: 28px 10px;
        border: 0;
        border-bottom: 1px solid var(--line);
        background: none;
        font: inherit;
        color: inherit;
        text-align: left;
        cursor: pointer;
        transition: background 0.25s ease;
    }

    .service-row:hover { background: var(--surface); }

    .service-row:focus-visible {
        outline: 3px solid var(--accent-1);
        outline-offset: -3px;
    }

    .service-num {
        font-size: 28px;
        font-weight: 800;
        line-height: 1.15;
        letter-spacing: -0.02em;
        color: #d2d2de;
        transition: color 0.25s ease;
    }

    .service-row:hover .service-num { color: var(--accent-1); }

    .service-name {
        display: block;
        font-size: clamp(19px, 2.4vw, 25px);
        font-weight: 800;
        letter-spacing: -0.01em;
        margin-bottom: 8px;
    }

    .service-desc {
        display: block;
        font-size: 15px;
        font-weight: 400;
        line-height: 1.55;
        color: var(--graphite-soft);
        max-width: 560px;
    }

    .service-price {
        font-size: clamp(17px, 2vw, 22px);
        font-weight: 800;
        white-space: nowrap;
        text-align: right;
        padding-top: 2px;
    }

    .service-price.is-custom {
        font-size: 13px;
        font-weight: 700;
        line-height: 1.4;
        color: var(--graphite-soft);
        white-space: normal;
        max-width: 150px;
    }

    @media (max-width: 720px) {
        .service-row {
            grid-template-columns: 46px 1fr;
            gap: 14px;
            padding: 22px 4px;
        }
        .service-num { font-size: 21px; }
        .service-price {
            grid-column: 2;
            text-align: left;
            margin-top: 12px;
        }
        .service-price.is-custom { max-width: none; }
    }

    .services-hint {
        margin: -22px 0 30px;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.3px;
        color: var(--graphite-soft);
    }

    
    .svc-modal {
        position: fixed;
        inset: 0;
        z-index: 10000;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 24px;
    }

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

    body.modal-open { overflow: hidden; }

    @keyframes modal-fade { from { opacity: 0; } }
    @keyframes modal-rise { from { opacity: 0; transform: translateY(20px) scale(0.98); } }

    .svc-modal__backdrop {
        position: absolute;
        inset: 0;
        background: rgba(18, 18, 26, 0.55);
        animation: modal-fade 0.25s ease backwards;
    }

    
    .why-steps {
        --why-badge-bg: #171E26;
        --why-badge-line: var(--mint);
        --why-badge-text: var(--mint);
    }

    .why-card {
        --why-card-bg: #171E26;
        border-color: rgba(255, 255, 255, 0.12);
    }

    .why-aside {
        --why-aside-bg: #171E26;
        --why-aside-text: #F2F4F5;
        --why-aside-soft: rgba(157, 166, 174, 0.78);
        --why-aside-line: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.12);
    }

    .why-aside h3 { color: var(--graphite); }

    .svc-modal__panel {
        position: relative;
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 620px;
        max-height: 90vh;
        background: #171E26;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
        animation: modal-rise 0.3s cubic-bezier(0.22, 1, 0.36, 1) backwards;
    }

    .svc-modal__close {
        position: absolute;
        top: 18px;
        right: 18px;
        z-index: 2;
        width: 38px;
        height: 38px;
        border-radius: 50%;
        border: 1px solid var(--line);
        background: #171E26;
        font-size: 15px;
        line-height: 1;
        color: var(--graphite);
        cursor: pointer;
        transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    }

    .svc-modal__close:hover {
        background: var(--graphite);
        border-color: var(--graphite);
        color: #fff;
    }

    .svc-modal__body {
        flex: 1;
        min-height: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding: 34px 32px 32px;
        text-align: left;
    }

    .svc-eyebrow {
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        color: var(--accent-1);
        margin-bottom: 12px;
        padding-right: 40px;
    }

    .svc-title {
        font-size: clamp(24px, 4vw, 32px);
        font-weight: 800;
        letter-spacing: -0.02em;
        line-height: 1.12;
        margin-bottom: 12px;
    }

    .svc-desc {
        font-size: 15px;
        line-height: 1.6;
        color: var(--graphite-soft);
        margin-bottom: 24px;
    }

    .svc-stats {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        margin-bottom: 28px;
    }

    .svc-stat {
        border: 1px solid var(--line);
        border-radius: 14px;
        padding: 16px 18px;
    }

    .svc-stat .label {
        font-size: 10px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.2px;
        color: var(--graphite-soft);
        margin-bottom: 7px;
    }

    .svc-stat .value {
        font-size: 19px;
        font-weight: 800;
        line-height: 1.2;
        color: var(--accent-1);
    }

    .svc-subhead {
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        color: var(--graphite-soft);
        margin-bottom: 6px;
    }

    .svc-includes { list-style: none; }

    .svc-includes li {
        display: flex;
        gap: 11px;
        align-items: flex-start;
        padding: 13px 0;
        font-size: 14.5px;
        line-height: 1.5;
        border-bottom: 1px solid var(--line);
    }

    .svc-includes li::before {
        content: '\2713';
        color: var(--accent-1);
        font-weight: 800;
        flex-shrink: 0;
    }

    .svc-note {
        margin-top: 18px;
        font-size: 13px;
        line-height: 1.5;
        color: var(--graphite-soft);
        background: var(--surface);
        border-radius: 12px;
        padding: 14px 16px;
    }

    .svc-modal__foot {
        flex-shrink: 0;
        padding: 18px 32px 24px;
        border-top: 1px solid var(--line);
    }

    .svc-modal__foot .cta-button {
        display: block;
        width: 100%;
        margin-top: 0;
        text-align: center;
    }

    @media (max-width: 640px) {
        .svc-modal { padding: 12px; }
        .svc-modal__panel { max-height: 94vh; }
        .svc-modal__body { padding: 30px 22px 26px; }
        .svc-modal__foot { padding: 16px 22px 20px; }
        .svc-stats { grid-template-columns: 1fr; }
    }

    
    .benefits-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(240px, 1fr));
        gap: 20px;
        max-width: 760px;
        width: 100%;
    }

    .benefit-card {
        background: #171E26;
        border: 1px solid var(--line);
        border-radius: 16px;
        padding: 28px;
        text-align: left;
        transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    }

    .benefit-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 32px rgba(155, 239, 0, 0.10);
        border-color: transparent;
    }

    .benefit-card .title {
        display: flex;
        align-items: center;
        gap: 10px;
        font-weight: 700;
        font-size: 18px;
        margin-bottom: 10px;
    }

    .benefit-card .title .emoji {
        font-size: 22px;
    }

    .benefit-card p {
        color: var(--graphite-soft);
        font-size: 15px;
        line-height: 1.5;
    }

    .benefits-grid .benefit-card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
    }

    @media (max-width: 640px) {
        .benefits-grid {
            grid-template-columns: 1fr;
        }
    }

    
    .process-list {
        display: flex;
        flex-direction: column;
        max-width: 460px;
        width: 100%;
        text-align: left;
    }

    .process-step {
        display: flex;
        gap: 18px;
        position: relative;
        padding-bottom: 32px;
    }

    .process-step:last-child {
        padding-bottom: 0;
    }

    .process-step::before {
        content: '';
        position: absolute;
        left: 19px;
        top: 42px;
        bottom: 4px;
        width: 2px;
        background: var(--line);
    }

    .process-step:last-child::before {
        display: none;
    }

    .process-num {
        flex-shrink: 0;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: linear-gradient(120deg, var(--accent-1), var(--accent-2));
        color: #fff;
        font-weight: 800;
        font-size: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .process-step h3 {
        font-size: 17px;
        font-weight: 700;
        margin-bottom: 4px;
        padding-top: 8px;
    }

    .process-step p {
        color: var(--graphite-soft);
        font-size: 14px;
        line-height: 1.5;
    }

    
    .why-layout {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 320px;
        gap: 28px;
        align-items: stretch;
        width: 100%;
        max-width: 1120px;
        text-align: left;
    }

    .why-main h2 {
        text-align: left;
        margin-bottom: 42px;
    }

    .why-steps {
        --why-gap: 20px;
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: var(--why-gap);
        list-style: none;
    }

    .why-step {
        display: flex;
        flex-direction: column;
    }

    .why-badge {
        position: relative;
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
    }

    .why-badge span {
        position: relative;
        z-index: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        font-size: 17px;
        font-weight: 800;
        background: var(--why-badge-bg, #fff);
        border: 2px solid var(--why-badge-line, var(--accent-1));
        color: var(--why-badge-text, var(--accent-1));
    }

    .why-step:not(:last-child) .why-badge::after {
        content: '';
        position: absolute;
        top: 50%;
        left: calc(50% + 30px);
        width: calc(100% + var(--why-gap) - 60px);
        height: 2px;
        background: var(--why-badge-line, var(--accent-1));
        opacity: 0.45;
    }

    .why-card {
        flex: 1;
        padding: 26px 22px;
        border-radius: 18px;
        background: var(--why-card-bg, #fff);
        border: 1px solid var(--line);
        transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .why-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 16px 32px rgba(155, 239, 0, 0.08);
    }

    .why-card svg {
        display: block;
        width: 42px;
        height: 42px;
        margin-bottom: 18px;
        stroke: var(--accent-1);
        stroke-width: 2.4;
        stroke-linecap: round;
        stroke-linejoin: round;
        fill: none;
    }

    .why-card h3 {
        font-size: 17px;
        font-weight: 800;
        line-height: 1.25;
        margin-bottom: 10px;
    }

    .why-card p {
        font-size: 14px;
        line-height: 1.55;
        color: var(--graphite-soft);
    }

    
    .why-aside {
        display: flex;
        flex-direction: column;
        padding: 30px 26px;
        border-radius: 22px;
        background: var(--why-aside-bg, var(--graphite));
        color: var(--why-aside-text, #fff);
    }

    .why-aside h3 {
        font-size: clamp(21px, 2.4vw, 26px);
        font-weight: 800;
        line-height: 1.2;
        letter-spacing: -0.01em;
        padding-bottom: 22px;
        border-bottom: 1px solid var(--why-aside-line, rgba(255, 255, 255, 0.18));
    }

    .why-aside svg {
        display: block;
        width: 100%;
        max-width: 235px;
        height: auto;
        margin: 30px auto;
    }

    .why-aside p {
        margin-top: auto;
        font-size: 14.5px;
        line-height: 1.6;
        color: var(--why-aside-soft, rgba(255, 255, 255, 0.75));
    }

    @media (max-width: 1040px) {
        .why-layout { grid-template-columns: minmax(0, 1fr); }
        .why-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
        .why-step .why-badge::after { display: none; }
        .why-aside { max-width: 560px; }
    }

    @media (max-width: 560px) {
        .why-steps { grid-template-columns: minmax(0, 1fr); }
        .why-main h2 { margin-bottom: 32px; }
        .why-badge { margin-bottom: 14px; }
    }

    
    .faq-list {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 780px;
    }

    .faq-item {
        background: #171E26;
        border: 1px solid var(--line);
        border-radius: 16px;
        overflow: hidden;
        transition: border-color 0.25s ease, box-shadow 0.25s ease;
    }

    .faq-item[open] {
        border-color: transparent;
        box-shadow: 0 14px 30px rgba(155, 239, 0, 0.08);
    }

    .faq-item summary {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 18px;
        padding: 20px 22px;
        font-size: 16px;
        font-weight: 700;
        line-height: 1.4;
        text-align: left;
        cursor: pointer;
        list-style: none;
        transition: color 0.2s ease;
    }

    .faq-item summary::-webkit-details-marker { display: none; }

    .faq-item summary:hover { color: var(--accent-1); }

    .faq-item summary::after {
        content: '';
        flex-shrink: 0;
        width: 9px;
        height: 9px;
        margin-top: -4px;
        border-right: 2px solid var(--accent-1);
        border-bottom: 2px solid var(--accent-1);
        transform: rotate(45deg);
        transition: transform 0.25s ease;
    }

    .faq-item[open] summary::after {
        margin-top: 3px;
        transform: rotate(-135deg);
    }

    .faq-answer {
        padding: 0 22px 22px;
        font-size: 15px;
        line-height: 1.6;
        color: var(--graphite-soft);
        text-align: left;
    }

    @media (max-width: 640px) {
        .faq-item summary { padding: 17px 18px; font-size: 15px; }
        .faq-answer { padding: 0 18px 18px; font-size: 14.5px; }
    }

    
    .cta-block {
        padding: 60px 24px;
    }

    .cta-block p {
        color: var(--graphite-soft);
        font-size: 16px;
        max-width: 440px;
        margin-top: 4px;
    }

    
    .contacts-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 16px;
        max-width: 640px;
        width: 100%;
    }

    @media (max-width: 560px) {
        .contacts-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }

    .contact-link {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        text-decoration: none;
        color: var(--graphite);
        background: #171E26;
        border: 1px solid var(--line);
        padding: 26px 16px;
        border-radius: 14px;
        font-weight: 600;
        font-size: 14px;
        transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    }

    .contact-link:hover {
        border-color: transparent;
        box-shadow: 0 14px 28px rgba(155, 239, 0, 0.10);
        color: var(--accent-1);
    }

    .contact-link .icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 24px;
        height: 24px;
    }

    .contact-link .icon svg {
        width: 100%;
        height: 100%;
    }

    
    footer {
        position: relative;
        z-index: 1;
        padding: 40px 24px 32px;
        text-align: center;
        border-top: 1px solid var(--line);
    }

    footer .footer-name {
        font-weight: 700;
        font-size: 16px;
        margin: 0;
    }

    
    :root {
        --lavender: #0B1117;
        --mint: #9BEF00;
        --mint-deep: #9BEF00;
        --graphite: #F2F4F5;
        --graphite-soft: rgba(157, 166, 174, 0.78);
        --accent-1: var(--mint);
        --accent-2: #A3F000;
        --line:rgba(255, 255, 255, 0.12);
        --surface:  #111A22;
        --on-dark:  #F2F4F5;
        --on-dark-soft:rgba(242, 244, 245, 0.72);
        --line-dark: rgba(255, 255, 255, 0.12);
        --card-dark: #171E26;
    }

    body { background: var(--lavender); }

    
    .accent {
        background: none;
        -webkit-background-clip: border-box;
        background-clip: border-box;
        color: var(--mint);
        padding: 0;
        font-weight: 900;
        -webkit-text-stroke: 0.02em var(--mint);
    }

    #progress-bar { background: var(--graphite); }

    .blob {
        opacity: 0.4;
        filter: blur(95px);
        background: linear-gradient(135deg, #F2F4F5, var(--mint));
    }

    
    .tech-chip:hover,
    .skill-item:hover,
    .work-card:hover,
    .contact-link:hover,
    .faq-item[open] {
        box-shadow: 0 14px 30px rgba(155, 239, 0, 0.10);
    }

    
    .cta-button {
        background: #171E26;
        color: #9BEF00;
         border: 1px solid #303840;
    }

    .cta-button:hover {
        box-shadow: 0 14px 30px rgba(155, 239, 0, 0.18);
    }

    .process-num {
        background: var(--graphite);
        color: var(--mint);
    }

    
    #benefits,
    #services {
        background: var(--surface);
        color: var(--on-dark);
    }

    #benefits h2,
    #services h2 { color: var(--on-dark); }

    
    #benefits .accent,
    #services .accent {
        background: none;
        -webkit-background-clip: initial;
        background-clip: initial;
        color: var(--mint);
    }

    #benefits .benefit-card {
        background: var(--card-dark);
        border-color: var(--line-dark);
    }

    #benefits .benefit-card .title { color: var(--mint); }
    #benefits .benefit-card p { color: var(--on-dark-soft); }

    #benefits .benefit-card:hover {
        border-color: var(--mint);
        box-shadow: 0 18px 36px rgba(0, 0, 0, 0.4);
    }

    .services-list { border-top-color: var(--line-dark); }

    .service-row {
        border-bottom-color: var(--line-dark);
        color: var(--on-dark);
    }

    .service-row:hover { background: rgba(155, 239, 0, 0.07); }
    .service-row:focus-visible { outline-color: var(--mint); }

    .service-num { color: rgba(155, 239, 0, 0.30); }
    .service-row:hover .service-num { color: var(--mint); }

    .service-name { color: var(--mint); }
    .services-hint { color: var(--on-dark-soft); }
    .service-desc { color: var(--on-dark-soft); }
    .service-price { color: var(--on-dark); }
    .service-price.is-custom { color: rgba(155, 239, 0, 0.60); }

    
    .svc-modal__panel {
        background: var(--surface);
        color: var(--on-dark);
    }

    .svc-modal__close {
        background: transparent;
        border-color: var(--line-dark);
        color: var(--on-dark);
    }

    .svc-modal__close:hover {
        background: var(--mint);
        border-color: var(--mint);
        color: var(--graphite);
    }

    .svc-eyebrow { color: var(--mint); }
    .svc-title { color: var(--mint); }
    .svc-desc { color: var(--on-dark-soft); }

    .svc-stat { border-color: var(--line-dark); }
    .svc-stat .label { color: rgba(155, 239, 0, 0.60); }
    .svc-stat .value { color: var(--mint); }

    .svc-subhead { color: rgba(155, 239, 0, 0.60); }

    .svc-includes li {
        color: var(--on-dark);
        border-bottom-color: var(--line-dark);
    }

    .svc-includes li::before { color: var(--mint); }

    .svc-note {
        background: rgba(255, 255, 255, 0.06);
        color: var(--on-dark-soft);
    }

    .svc-modal__foot { border-top-color: var(--line-dark); }

    
    .svc-modal__foot .cta-button {
        background: var(--mint);
        color: var(--graphite);
    }

    .svc-modal__foot .cta-button:hover {
        box-shadow: 0 14px 30px rgba(155, 239, 0, 0.18);
    }

    /* ---------- «Мои работы»: карточки в сетке ----------
       Скриншот сверху с меткой типа проекта, ниже название, описание и
       «Открыть сайт ↗». При наведении карточку обводит цвет темы.
       Сетка на flex, чтобы неполный последний ряд вставал по центру. */
    .works-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 32px;
        width: 100%;
        max-width: 1180px;
    }
    .work-card {
        position: relative;
        flex: 0 1 calc((100% - 64px) / 3);
        display: flex;
        flex-direction: column;
        text-align: left;
        /* в US и UA --card задан темой, в RU его нет — там прежний цвет карточки */
        background: var(--card, #171E26);
        border: 1px solid var(--line);
        border-radius: 26px;
        overflow: hidden;
        box-shadow: 0 24px 46px -26px rgba(0, 0, 0, 0.6);
        transition: translate 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    }
    /* подъём через translate, а не transform: transform занят анимацией появления .reveal */
    .work-card:hover {
        translate: 0 -6px;
        border-color: var(--accent-1);
        box-shadow: 0 16px 34px rgba(0, 0, 0, 0.55);
    }
    .work-shot {
        position: relative;
        aspect-ratio: 16 / 10;
        overflow: hidden;
        background: var(--surface);
        border-bottom: 1px solid var(--line);
    }
    .work-shot img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top center;
        transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .work-card:hover .work-shot img { transform: scale(1.04); }

    /* метка типа проекта: цвет темы на тёмной размытой подложке — читается и на светлых скриншотах */
    .work-tag {
        position: absolute;
        top: 14px;
        left: 14px;
        z-index: 1;
        font-size: 11px;
        font-weight: 700;
        line-height: 1;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--accent-1);
        background: rgba(12, 12, 16, 0.66);
        -webkit-backdrop-filter: blur(6px);
        backdrop-filter: blur(6px);
        padding: 8px 13px;
        border-radius: 999px;
    }

    .work-meta {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        flex: 1;
        padding: 20px 22px 22px;
    }
    .work-meta h3 {
        margin: 0 0 6px;
        font-size: clamp(18px, 1.45vw, 21px);
        font-weight: 800;
        line-height: 1.2;
        letter-spacing: -0.01em;
        color: inherit;
    }
    .work-meta p {
        margin: 0;
        font-size: 14px;
        line-height: 1.45;
        color: var(--graphite-soft);
    }
    /* ссылка прижата к низу — в одном ряду кнопки стоят на одной линии при разной длине описаний */
    .work-open-hint {
        display: inline-block;
        margin-top: auto;
        padding-top: 14px;
        font-size: 14px;
        font-weight: 700;
        color: var(--accent-1);
        transition: transform 0.25s ease;
    }
    .work-card:hover .work-open-hint { transform: translateX(4px); }
    .work-open:focus-visible { border-radius: 26px; }

    @media (max-width: 980px) {
        .work-card { flex-basis: calc((100% - 32px) / 2); }
    }
    @media (max-width: 600px) {
        .works-grid { gap: 22px; }
        .work-card { flex-basis: 100%; border-radius: 22px; }
    }
    @media (prefers-reduced-motion: reduce) {
        .work-card, .work-shot img, .work-open-hint { transition: none; }
        .work-card:hover { translate: none; }
        .work-card:hover .work-shot img, .work-card:hover .work-open-hint { transform: none; }
    }
