:root {
    --bg: #0b0b0b;
    --bg2: #101010;
    --card: #151515;
    /*--line: rgba(244, 241, 232, .14);*/
    --line-soft: rgba(244, 241, 232, .07);
    --text: #f4f1e8;

    --line: #f4f1e8;

    --muted: #a09d94;
    --sun: #ffd60a;
    --sun-dim: rgba(255, 214, 10, .13);
    --disp: 'Unbounded', system-ui, Arial, sans-serif;
    --body: 'Manrope', system-ui, Arial, sans-serif;
    --ease: cubic-bezier(.22, 1, .36, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden
}

::selection {
    background: var(--sun);
    color: #0b0b0b
}

.line {
    color: var(--text);
}

img {
    display: block;
    max-width: 100%
}

a {
    color: inherit;
    text-decoration: none
}

button {
    font-family: inherit;
    cursor: pointer
}

h1, h2, h3, .disp {
    font-family: var(--disp)
}

.wrap__inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 clamp(18px, 4vw, 48px)
}

/* noise / cursor / progress */
.noise {
    position: fixed;
    inset: 0;
    z-index: 120;
    pointer-events: none;
    opacity: .05;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E")
}

.t-title{
    color: var(--text);
}

.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--sun);
    z-index: 130;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: width .25s var(--ease), height .25s var(--ease);
    mix-blend-mode: difference;
    left: -100px;
    top: -100px
}

.cursor-dot.big {
    width: 46px;
    height: 46px
}

@media (pointer: coarse) {
    .cursor-dot {
        display: none
    }
}

.progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: var(--sun);
    z-index: 140
}


header.scrolled {
    background: rgba(11, 11, 11, .88);
    backdrop-filter: blur(14px);
    border-color: var(--line-soft)
}

.hd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 78px
}


.nav {
    display: flex;
    gap: clamp(14px, 2vw, 28px)
}

.nav a {
    font-size: 14px;
    font-weight: 700;
    color: var(--muted);
    position: relative;
    padding: 6px 0;
    transition: color .3s
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background: var(--sun);
    transition: width .35s var(--ease)
}

.nav a:hover {
    color: var(--text)
}

.nav a:hover::after {
    width: 100%
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--sun);
    color: #0b0b0b;
    border: 1px solid var(--sun);
    font-family: var(--disp);
    font-weight: 700;
    font-size: 13px;
    padding: 14px 24px;
    border-radius: 999px;
    letter-spacing: .01em;
    transition: transform .3s var(--ease), box-shadow .3s;
    text-align: center
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 34px rgba(255, 214, 10, .3)
}

.btn.ghost {
    background: transparent;
    color: var(--text);
    border-color: var(--line)
}

.btn.ghost:hover {
    border-color: var(--sun);
    color: var(--sun);
    box-shadow: none
}

.burger {
    display: none;
    background: none;
    border: 0;
    width: 44px;
    height: 44px;
    position: relative;
    z-index: 111
}

.burger span {
    position: absolute;
    left: 10px;
    right: 10px;
    height: 2px;
    background: var(--text);
    transition: .35s var(--ease)
}

.burger span:nth-child(1) {
    top: 16px
}

.burger span:nth-child(2) {
    top: 26px
}


/* hero */
.hero {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /*padding-top: 112px;*/
    padding-top: 40px;
    background: radial-gradient(900px 460px at 88% -10%, rgba(255, 214, 10, .1), transparent 60%),
    linear-gradient(var(--line-soft) 1px, transparent 1px), linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
    background-size: auto, 88px 88px, 88px 88px
}

.crumbs {
    font-size: 12px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 22px
}

.crumbs b {
    color: var(--sun)
}

.hero-grid {
    display: grid;
    grid-template-columns:1fr auto;
    gap: 32px;
    align-items: end;
    flex: 1
}

.overline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--disp);
    font-size: 12px;
    letter-spacing: .28em;
    color: var(--sun);
    text-transform: uppercase;
    margin-bottom: 24px
}

.overline::before {
    content: "";
    width: 10px;
    height: 10px;
    background: var(--sun);
    border-radius: 50%;
    animation: pulse 2s infinite
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 214, 10, .5)
    }
    50% {
        box-shadow: 0 0 0 9px rgba(255, 214, 10, 0)
    }
}

.hero-title {
    font-weight: 900;
    text-transform: uppercase;
    font-size: clamp(34px, 6.6vw, 100px);
    line-height: 1;
    letter-spacing: -.01em
}

.mask {
    display: block;
    overflow: hidden
}

/* скрываем строки ТОЛЬКО если JS активен — иначе контент виден всегда */
.js .mask .line {
    display: block;
    transform: translateY(112%);
    transition: transform 1s var(--ease);
    transition-delay: var(--d, 0s)
}

.js body.loaded .mask .line, .js.loaded .mask .line {
    transform: none
}

body.loaded .mask .line {
    transform: none
}

.line.hl {
    color: var(--sun)
}

.line.outline {
    color: transparent;
    -webkit-text-stroke: 2px var(--sun)
}

.hero-sub {
    max-width: 560px;
    color: var(--muted);
    font-size: clamp(15px, 1.4vw, 18px);
    margin: 26px 0 0
}

.hero-sub b {
    color: var(--text)
}

.hero-side {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
    padding-bottom: 6px
}

.stamp {
    width: 176px;
    height: 176px;
    position: relative;
    flex: none
}

.stamp svg {
    width: 100%;
    height: 100%;
    animation: spin 16s linear infinite
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

.stamp text {
    fill: var(--sun);
    font-family: var(--disp);
    font-size: 15px;
    letter-spacing: .16em
}

.stamp .core {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-family: var(--disp);
    font-weight: 900;
    font-size: 36px;
    color: var(--text);
    flex-direction: column;
    padding: 50px;
}

.stamp .core span {
    display: block;
    font-size: 12px;
    color: var(--muted);
    font-weight: 400;
    letter-spacing: .2em;
    font-family: var(--body)
}

.hero-card {
    border: 1px solid var(--line);
    background: var(--card);
    border-radius: 16px;
    padding: 16px 20px;
    max-width: 260px;
    transition: border-color .3s, transform .3s var(--ease)
}

.hero-card:hover {
    border-color: var(--sun);
    transform: translateY(-4px)
}

.hero-card .k {
    font-family: var(--disp);
    font-size: 11px;
    letter-spacing: .2em;
    color: var(--sun)
}

.hero-card p {
    font-size: 13.5px;
    color: var(--muted);
    margin-top: 6px
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 30px;
    align-items: center;
    justify-content: space-between;
    /*border-top: 1px solid var(--line-soft);*/
    margin-top: 44px;
    padding: 18px 0 22px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .05em
}

.hero-meta a:hover {
    color: var(--sun)
}

.hero-meta .dot-sep {
    color: var(--sun)
}

.scroll-hint {
    display: inline-flex;
    align-items: center;
    gap: 10px
}

.scroll-hint i {
    width: 1px;
    height: 26px;
    background: var(--sun);
    display: inline-block;
    animation: drop 1.6s var(--ease) infinite
}

@keyframes drop {
    0% {
        transform: scaleY(0);
        transform-origin: top
    }
    45% {
        transform: scaleY(1)
    }
    100% {
        transform: scaleY(0);
        transform-origin: bottom
    }
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns:1fr
    }

    .hero-side {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%
    }
}

/* ticker */
.ticker {
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
    background: var(--sun);
    color: #0b0b0b;
    overflow: hidden
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: tick 30s linear infinite
}

.ticker:hover .ticker-track {
    animation-play-state: paused
}

.ticker-track span {
    display: flex;
    gap: 34px;
    padding: 13px 17px;
    font-family: var(--disp);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .14em;
    text-transform: uppercase;
    white-space: nowrap
}

@keyframes tick {
    to {
        transform: translateX(-50%)
    }
}

/* sections */
.sec {
    padding: clamp(80px, 10vw, 140px) 0
}

.sec-head {
    display: flex;
    align-items: baseline;
    gap: 22px;
    margin-bottom: clamp(36px, 5vw, 60px)
}

.sec-idx {
    font-family: var(--disp);
    color: var(--sun);
    font-size: 14px;
    letter-spacing: .2em
}

.sec-title {
    font-weight: 700;
    text-transform: uppercase;
    font-size: clamp(24px, 4.2vw, 52px);
    line-height: 1.06;
    color: var(--text);
}

/* reveal-состояния только при активном JS */
.js .reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
    transition-delay: var(--rd, 0s)
}

.js .reveal.in {
    opacity: 1;
    transform: none
}

/* tasks */
.tasks-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 22px
}

.task-card {
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--card);
    padding: 30px 28px;
    position: relative;
    overflow: hidden;
    transition: border-color .3s, transform .45s var(--ease)
}

.task-card:hover {
    border-color: var(--sun);
    transform: translateY(-6px)
}

.task-card .idx {
    position: absolute;
    top: 18px;
    right: 24px;
    font-family: var(--disp);
    font-weight: 900;
    font-size: 56px;
    color: rgba(244, 241, 232, .06);
    line-height: 1
}

.task-card:hover .idx {
    color: var(--sun-dim)
}

.t-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--disp);
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    padding: 7px 14px;
    border-radius: 999px;
    border: 1px solid var(--line)
}

.t-label.q {
    color: var(--muted)
}

.t-label.s {
    color: var(--sun);
    border-color: rgba(255, 214, 10, .4);
    background: var(--sun-dim)
}

.task-card h3 {
    font-size: clamp(16px, 1.7vw, 20px);
    line-height: 1.4;
    margin: 16px 0 20px;
    font-weight: 700
}

.task-card .sol {
    border-top: 1px dashed var(--line);
    padding-top: 18px;
    color: var(--muted);
    font-size: 14.5px
}

.task-card .sol b {
    color: var(--sun)
}

@media (max-width: 860px) {
    .tasks-grid {
        grid-template-columns:1fr
    }
}

/* process */
.proc {
    display: grid;
    grid-template-columns:1fr 1.2fr;
    gap: clamp(30px, 5vw, 80px);
    align-items: start
}

.proc-left {
    position: sticky;
    top: 110px
}

.proc-left p {
    color: var(--muted);
    margin-top: 18px;
    max-width: 440px
}

.proc-left p b {
    color: var(--text)
}

.proc-steps {
    display: flex;
    flex-direction: column
}

.step {
    display: grid;
    grid-template-columns:86px 1fr;
    gap: 22px;
    padding: 34px 0;
    border-top: 1px solid var(--line)
}

.step:last-child {
    border-bottom: 1px solid var(--line)
}

.step .n {
    font-family: var(--disp);
    font-weight: 900;
    font-size: clamp(30px, 3.6vw, 50px);
    color: transparent;
    color: var(--text);
    line-height: 1;
    transition: color .4s
}

.step:hover .n {
    color: var(--sun)
}

.step h3 {
    font-size: clamp(17px, 2vw, 24px);
    text-transform: uppercase;
    margin-bottom: 10px
}

.step p {
    color: var(--muted);
    font-size: 15px
}

@media (max-width: 900px) {
    .proc {
        grid-template-columns:1fr
    }

    .proc-left {
        position: static
    }
}

/* why */
.why {
    background: var(--bg2);
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft)
}

.why-grid {
    display: grid;
    grid-template-columns:auto 1fr;
    gap: clamp(30px, 6vw, 100px);
    align-items: center
}

.why-num {
    text-align: center
}

.why-num .v {
    font-family: var(--disp);
    font-weight: 900;
    font-size: clamp(90px, 14vw, 200px);
    color: var(--sun);
    line-height: 1;
    font-variant-numeric: tabular-nums
}

.why-num .l {
    color: var(--muted);
    letter-spacing: .18em;
    text-transform: uppercase;
    font-size: 12px;
    margin-top: 8px
}

.why-row {
    display: grid;
    grid-template-columns:44px 1fr;
    gap: 18px;
    padding: 24px 0;
    border-top: 1px solid var(--line)
}

.why-row:first-of-type {
    border-top: 0
}

.why-row .chk {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--sun);
    color: #0b0b0b;
    display: grid;
    place-items: center;
    font-weight: 900;
    font-size: 15px
}

.why-row h3 {
    font-size: clamp(16px, 1.9vw, 22px);
    text-transform: uppercase;
    margin-bottom: 8px
}

.why-row p {
    color: var(--muted);
    font-size: 14.5px;
    max-width: 760px
}

@media (max-width: 820px) {
    .why-grid {
        grid-template-columns:1fr
    }

    .why-num {
        text-align: left
    }
}

/* pricing */
.price-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 22px;
    align-items: stretch
}

.price-card {
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--card);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    transition: border-color .3s, transform .45s var(--ease)
}

.price-card:hover {
    border-color: var(--sun);
    transform: translateY(-8px)
}

.price-card.hot {
    background: var(--sun);
    color: #0b0b0b;
    border-color: var(--sun)
}

.price-card.hot .muted, .price-card.hot li {
    color: rgba(11, 11, 11, .72)
}

.hot-badge {
    position: absolute;
    top: -14px;
    right: 24px;
    background: #0b0b0b;
    color: var(--sun);
    font-family: var(--disp);
    font-size: 11px;
    letter-spacing: .2em;
    padding: 7px 14px;
    border-radius: 999px
}

.price-card h3 {
    font-size: clamp(18px, 2vw, 24px);
    text-transform: uppercase
}

.price-card .desc {
    font-size: 14px
}

.price-card .desc.muted, .price-card .muted {
    color: var(--muted)
}

.price-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
    font-size: 13.5px;
    color: var(--muted);
    flex: 1
}

.price-card li {
    padding-left: 20px;
    position: relative
}

.price-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 8px;
    height: 8px;
    background: var(--sun);
    border-radius: 2px;
    transform: rotate(45deg)
}

.price-card.hot li::before {
    background: #0b0b0b
}

.price-line {
    display: flex;
    align-items: baseline;
    gap: 12px;
    border-top: 1px dashed var(--line);
    padding-top: 18px
}

.price-card.hot .price-line {
    border-color: rgba(11, 11, 11, .3)
}

.price-val {
    font-family: var(--disp);
    font-weight: 900;
    font-size: clamp(26px, 2.6vw, 36px);
    color: var(--sun)
}

.price-card.hot .price-val {
    color: #0b0b0b
}

.price-note {
    font-size: 12px;
    color: var(--muted)
}

@media (max-width: 980px) {
    .price-grid {
        grid-template-columns:1fr;
        max-width: 560px;
        margin: 0 auto
    }
}

/* portfolio */
.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 34px
}

.chip {
    border: 1px solid var(--line);
    background: transparent;
    color: var(--muted);
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .04em;
    transition: .3s
}

.chip:hover {
    border-color: var(--sun);
    color: var(--text)
}

.chip.on {
    background: var(--sun);
    border-color: var(--sun);
    color: #0b0b0b
}

.works-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 22px
}

.work-card {
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden;
    background: var(--card);
    transition: opacity .3s var(--ease), transform .3s var(--ease), border-color .3s
}

.work-card:hover {
    border-color: var(--sun)
}

.js .work-card.hide {
    opacity: 0;
    transform: scale(.95)
}

.work-media {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #181818
}

.work-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 1.4s var(--ease), filter .5s;
    filter: saturate(.92)
}

.work-card:hover .work-media img {
    transform: scale(1.1);
    filter: saturate(1.08)
}

.work-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(11, 11, 11, .82);
    backdrop-filter: blur(6px);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--sun);
    z-index: 2
}

.work-body {
    padding: 20px 22px 22px
}

.work-body .t-title {
    font-size: 16px;
    line-height: 1.35
}

.work-body p {
    color: var(--muted);
    font-size: 13px;
    margin-top: 6px
}

.works-empty {
    display: none;
    border: 1px dashed var(--line);
    border-radius: 20px;
    padding: 60px 30px;
    text-align: center;
    color: var(--muted)
}

.works-empty.show {
    display: block
}

@media (max-width: 1020px) {
    .works-grid {
        grid-template-columns:repeat(2, 1fr)
    }
}

@media (max-width: 620px) {
    .works-grid {
        grid-template-columns:1fr
    }
}

/* cta / form */
.cta {
    background: var(--sun);
    color: #0b0b0b;
    border-radius: 26px;
    overflow: hidden;
    position: relative
}

.cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(-45deg, rgba(11, 11, 11, .06) 0 2px, transparent 2px 26px)
}

.cta-grid {
    position: relative;
    display: grid;
    grid-template-columns:1.1fr 1fr;
    gap: clamp(30px, 5vw, 70px);
    padding: clamp(30px, 5vw, 64px)
}

.cta h2 {
    font-size: clamp(26px, 4.2vw, 54px);
    text-transform: uppercase;
    font-weight: 900;
    line-height: 1.04
}

.cta .lead {
    font-size: clamp(15px, 1.5vw, 18px);
    font-weight: 600;
    margin: 20px 0 8px;
    max-width: 480px
}

.cta .sub {
    color: rgba(11, 11, 11, .68);
    max-width: 480px;
    font-size: 14.5px
}

.cta form {
    background: #0b0b0b;
    color: var(--text);
    border-radius: 20px;
    padding: clamp(24px, 3vw, 36px);
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 30px 80px rgba(11, 11, 11, .35)
}

.f-field label {
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 7px
}

.f-field input, .f-field select {
    width: 100%;
    background: #151515;
    border: 1px solid var(--line);
    border-radius: 12px;
    color: var(--text);
    padding: 13px 15px;
    font-family: var(--body);
    font-size: 15px;
    outline: none;
    transition: border-color .3s
}

.f-field input:focus, .f-field select:focus {
    border-color: var(--sun)
}

.f-field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23ffd60a' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center
}

.consent {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 12px;
    color: var(--muted)
}

.consent input {
    accent-color: var(--sun);
    margin-top: 2px;
    width: 16px;
    height: 16px;
    flex: none
}

.cta form .btn.sent {
    background: #151515;
    color: var(--sun)
}

@media (max-width: 900px) {
    .cta-grid {
        grid-template-columns:1fr
    }
}

/* footer */
footer {
    border-top: 1px solid var(--line-soft);
    padding: 60px 0 30px;
    overflow: hidden
}

.f-grid {
    display: grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 46px
}

.f-grid h5 {
    font-family: var(--disp);
    font-size: 12px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--sun);
    margin-bottom: 16px
}

.f-grid a {
    display: block;
    color: var(--muted);
    padding: 4px 0;
    font-size: 14px;
    transition: color .3s, transform .3s
}

.f-grid a:hover {
    color: var(--text);
    transform: translateX(4px)
}

.f-grid p {
    color: var(--muted);
    font-size: 14px;
    max-width: 320px
}

.f-word {
    font-family: var(--disp);
    font-weight: 900;
    font-size: clamp(56px, 13vw, 200px);
    line-height: .9;
    text-align: center;
    color: transparent;
    -webkit-text-stroke: 1px rgba(244, 241, 232, .14);
    user-select: none;
    transition: color .8s, -webkit-text-stroke-color .8s
}

.f-word:hover {
    color: rgba(255, 214, 10, .12);
    -webkit-text-stroke-color: rgba(255, 214, 10, .55)
}

.f-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 30px;
    justify-content: space-between;
    color: var(--muted);
    font-size: 12.5px;
    border-top: 1px solid var(--line-soft);
    padding-top: 22px;
    margin-top: 28px
}

@media (max-width: 900px) {
    .f-grid {
        grid-template-columns:1fr 1fr
    }
}

.toast {
    position: fixed;
    left: 50%;
    bottom: 28px;
    transform: translate(-50%, 90px);
    background: var(--sun);
    color: #0b0b0b;
    font-weight: 800;
    font-size: 14px;
    padding: 14px 26px;
    border-radius: 999px;
    z-index: 150;
    transition: transform .5s var(--ease);
    box-shadow: 0 12px 40px rgba(255, 214, 10, .3)
}

.toast.show {
    transform: translate(-50%, 0)
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto
    }

    *, *::before, *::after {
    }

    .js .mask .line {
        transform: none
    }

    .js .reveal {
        opacity: 1;
        transform: none
    }
}



.stamp svg {
    animation: spin 20s linear infinite;
    transform-origin: center center; /* для корректного вращения вокруг центра */
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}


/* price */
.price-factors{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;margin-bottom:22px}
.factor{border:1px solid var(--line);border-radius:20px;background:var(--card);padding:28px;transition:border-color .3s,transform .4s var(--ease)}
.factor:hover{border-color:var(--sun);transform:translateY(-6px)}
.factor .ic{width:52px;height:52px;border-radius:14px;background:var(--sun-dim);border:1px solid rgba(255,214,10,.35);display:grid;place-items:center;font-size:22px;margin-bottom:16px}
.factor h3{font-size:17px;text-transform:uppercase;margin-bottom:10px; color:var(--text);}
.factor p{color:var(--muted);font-size:14px}
.price-cta{border-radius:22px;background:var(--sun);color:#0b0b0b;padding:clamp(26px,4vw,44px);display:flex;flex-wrap:wrap;gap:24px;align-items:center;justify-content:space-between;position:relative;overflow:hidden}
.price-cta::before{content:"";position:absolute;inset:0;background:repeating-linear-gradient(-45deg,rgba(11,11,11,.06) 0 2px,transparent 2px 26px)}
.price-cta h3{font-size:clamp(20px,2.6vw,23px);text-transform:uppercase;font-weight:900;position:relative;max-width:640px}
.price-cta p{position:relative;color:rgba(11,11,11,.7);max-width:640px;margin-top:8px;font-size:14.5px}
.price-cta .btn{position:relative;flex:none}
@media(max-width:900px){.price-factors{grid-template-columns:1fr}}

.srv-body h3 {
    color: var(--text);
}

/* services */
.chips{display:flex;flex-wrap:wrap;gap:10px;margin-bottom:34px}
.chip{border:1px solid var(--line);background:transparent;color:var(--muted);border-radius:999px;padding:10px 18px;font-size:13px;font-weight:800;letter-spacing:.04em;transition:.3s}
.chip:hover{border-color:var(--sun);color:var(--text)}
.chip.on{background:var(--sun);border-color:var(--sun);color:#0b0b0b}
.srv-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.srv-card{border:1px solid var(--line);border-radius:20px;overflow:hidden;background:var(--card);display:flex;flex-direction:column;transition:opacity .3s var(--ease),transform .3s var(--ease),border-color .3s}
.srv-card:hover{border-color:var(--sun)}
.js .srv-card.hide{opacity:0;transform:scale(.95)}
.srv-media{position:relative;aspect-ratio:4/3;overflow:hidden;background:#181818}
.srv-media img{width:100%;height:100%;object-fit:cover;transform:scale(1.02);transition:transform 1.4s var(--ease),filter .5s;filter:saturate(.92)}
.srv-card:hover .srv-media img{transform:scale(1.1);filter:saturate(1.08)}
.srv-num{position:absolute;top:14px;left:14px;background:var(--sun);color:#0b0b0b;font-family:var(--disp);font-weight:900;font-size:12px;padding:6px 12px;border-radius:999px;z-index:2}
.srv-cat{position:absolute;top:14px;right:14px;background:rgba(11,11,11,.82);backdrop-filter:blur(6px);border:1px solid var(--line);border-radius:999px;padding:6px 12px;font-size:10px;font-weight:800;letter-spacing:.14em;text-transform:uppercase;color:var(--sun);z-index:2}
.srv-body{padding:22px 22px 24px;display:flex;flex-direction:column;gap:10px;flex:1}
.srv-body h3{font-size:16px;line-height:1.35}
.srv-body p{color:var(--muted);font-size:13.5px;flex:1}
.srv-body .calc{align-self:flex-start;background:none;border:0;color:var(--sun);font-weight:800;font-size:12.5px;letter-spacing:.1em;text-transform:uppercase;padding:0;display:inline-flex;gap:8px;align-items:center}
.srv-body .calc b{transition:transform .3s var(--ease)}
.srv-body .calc:hover b{transform:translate(3px,-3px)}
.srv-empty{display:none;border:1px dashed var(--line);border-radius:20px;padding:60px 30px;text-align:center;color:var(--muted)}
.srv-empty.show{display:block}
@media(max-width:1020px){.srv-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:620px){.srv-grid{grid-template-columns:1fr}}