/* ===== STILIANT — atelier layout ===== */

:root {
    --ink: #101214;
    --ink-soft: #1c1f24;
    --paper: #f3f4f6;
    --paper-deep: #e6e8ec;
    --text: #2a2e35;
    --muted: #6b7280;
    --line: rgba(16, 18, 20, 0.12);
    --accent: #0f766e;
    --accent-hover: #0b5f59;
    --accent-soft: rgba(15, 118, 110, 0.12);
    --font-display: 'Sora', sans-serif;
    --font-body: 'Manrope', sans-serif;
    --radius: 4px;
    --nav-h: 72px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-h);
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--text);
    line-height: 1.65;
    background:
        radial-gradient(ellipse 80% 50% at 100% -10%, rgba(15, 118, 110, 0.06), transparent 55%),
        radial-gradient(ellipse 60% 40% at 0% 30%, rgba(16, 18, 20, 0.04), transparent 50%),
        var(--paper);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    font-variant-numeric: lining-nums;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.15;
    color: var(--ink);
    letter-spacing: -0.02em;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.25s var(--ease);
}

a:hover {
    color: var(--accent-hover);
}

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

.section-title {
    font-size: clamp(1.85rem, 3.5vw, 2.75rem);
    text-align: center;
    margin-bottom: 0.35rem;
    font-weight: 800;
}

.section-title.text-start {
    text-align: left;
}

.section-subtitle {
    text-align: center;
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 36rem;
    margin: 0 auto 1.5rem;
    font-weight: 300;
}

/* ===== BUTTONS ===== */
.btn-primary {
    background-color: var(--accent);
    border: 1px solid var(--accent);
    color: #fff;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.85rem 1.75rem;
    border-radius: var(--radius);
    transition: background-color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
    letter-spacing: 0.01em;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    color: #fff;
    transform: translateY(-1px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.85rem 1.75rem;
    border-radius: var(--radius);
    border: 1px solid var(--ink);
    background: transparent;
    color: var(--ink);
    transition: background-color 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.btn-outline:hover,
.btn-outline:focus {
    background: var(--ink);
    color: #fff;
    transform: translateY(-1px);
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.55);
    color: #fff;
}

.btn-outline-light:hover,
.btn-outline-light:focus {
    background: #fff;
    border-color: #fff;
    color: var(--ink);
}

/* ===== NAVBAR ===== */
.navbar {
    background: transparent;
    padding: 1rem 0;
    transition: background-color 0.35s var(--ease), box-shadow 0.35s var(--ease), padding 0.35s var(--ease);
}

.navbar.scrolled {
    background: rgba(243, 244, 246, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 var(--line);
    padding: 0.65rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    transition: color 0.3s var(--ease);
}

.navbar.scrolled .navbar-brand {
    color: var(--ink);
}

.navbar-brand:hover {
    color: #fff;
}

.navbar.scrolled .navbar-brand:hover {
    color: var(--ink);
}

.navbar-brand img {
    border-radius: 50%;
}

.nav-link {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.82) !important;
    padding: 0.45rem 0.85rem !important;
    position: relative;
    transition: color 0.25s var(--ease);
}

.navbar.scrolled .nav-link {
    color: var(--text) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0.15rem;
    left: 0.85rem;
    right: 0.85rem;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s var(--ease);
    opacity: 0.55;
}

.nav-link:hover {
    color: #fff !important;
}

.navbar.scrolled .nav-link:hover {
    color: var(--accent) !important;
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.navbar-social {
    display: flex;
    gap: 0.9rem;
    align-items: center;
}

.navbar-social a {
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    transition: color 0.25s var(--ease);
}

.navbar.scrolled .navbar-social a {
    color: var(--muted);
}

.navbar-social a:hover {
    color: #fff;
}

.navbar.scrolled .navbar-social a:hover {
    color: var(--accent);
}

.navbar-toggler {
    border: none;
    padding: 0.4rem;
    width: 30px;
    height: 22px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: #fff;
    border-radius: 1px;
    transition: all 0.3s var(--ease);
}

.navbar.scrolled .navbar-toggler span {
    background: var(--ink);
}

.navbar-toggler[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.navbar-toggler[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(16, 18, 20, 0.96);
        margin-top: 0.75rem;
        padding: 1rem 1.25rem 1.25rem;
        border-radius: var(--radius);
    }

    .navbar.scrolled .navbar-collapse {
        background: #fff;
        box-shadow: 0 12px 40px rgba(16, 18, 20, 0.08);
    }

    .navbar-social {
        padding-top: 0.75rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 0.5rem;
    }

    .navbar.scrolled .navbar-social {
        border-top-color: var(--line);
    }
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: flex-end;
    padding: 0;
    overflow: hidden;
    color: #fff;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    transform: scale(1.04);
    animation: heroZoom 18s var(--ease) forwards;
}

@keyframes heroZoom {
    from { transform: scale(1.08); }
    to { transform: scale(1); }
}

.hero-veil {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(10, 12, 14, 0.88) 0%, rgba(10, 12, 14, 0.55) 48%, rgba(10, 12, 14, 0.25) 100%),
        linear-gradient(0deg, rgba(10, 12, 14, 0.7) 0%, transparent 45%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    padding-bottom: clamp(3.5rem, 10vh, 6.5rem);
    padding-top: calc(var(--nav-h) + 2rem);
}

.hero-content {
    max-width: 36rem;
}

.hero-brand {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2.4rem, 7vw, 4.5rem);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 1rem;
    line-height: 1;
}

.hero h1 {
    font-size: clamp(1.35rem, 2.6vw, 1.85rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    margin: 0 0 1rem;
    letter-spacing: -0.01em;
}

.hero-lead {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 300;
    line-height: 1.7;
    margin: 0 0 1.75rem;
    max-width: 28rem;
}

.hero .btn-primary {
    background: #fff;
    border-color: #fff;
    color: var(--ink);
}

.hero .btn-primary:hover,
.hero .btn-primary:focus {
    background: var(--paper);
    border-color: var(--paper);
    color: var(--ink);
}

/* ===== REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

.hero-content.reveal {
    transition-delay: 0.1s;
}

/* ===== OFFERS ===== */
.section-offers {
    padding: clamp(4rem, 9vw, 7rem) 0;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 2.5rem;
    border-top: 1px solid var(--line);
}

.offer-item {
    padding: 2rem 1.5rem 2rem 0;
    border-bottom: 1px solid var(--line);
    padding-right: 1.75rem;
}

.offer-item + .offer-item {
    border-left: 1px solid var(--line);
    padding-left: 1.75rem;
}

.offer-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1.5px dashed var(--ink);
    border-radius: 50%;
    margin-bottom: 1.25rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--ink);
    letter-spacing: 0;
    line-height: 1;
    font-variant-numeric: tabular-nums lining-nums;
    font-feature-settings: "tnum" 1, "lnum" 1;
}

.offer-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.65rem;
    font-weight: 700;
}

.offer-item p {
    font-size: 0.95rem;
    color: var(--muted);
    margin: 0;
    font-weight: 300;
}

/* ===== FORMATS ===== */
.section-formats {
    padding: clamp(4rem, 9vw, 7rem) 0;
    background: var(--ink);
    color: rgba(255, 255, 255, 0.78);
}

.section-formats .section-title {
    color: #fff;
}

.section-formats .section-subtitle {
    color: rgba(255, 255, 255, 0.55);
}

.formats-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    margin-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.format-item {
    padding: 2rem 1.5rem 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.format-item + .format-item {
    border-left: 1px solid rgba(255, 255, 255, 0.14);
    padding-left: 1.75rem;
}

.format-item h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 0.75rem;
}

.format-item p {
    margin: 0;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.65);
    font-size: 1rem;
}

/* ===== ABOUT ===== */
.section-about {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    min-height: 70vh;
    background: var(--ink);
    color: rgba(255, 255, 255, 0.78);
}

.about-visual {
    position: relative;
    min-height: 420px;
    overflow: hidden;
}

.about-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    transition: transform 1.2s var(--ease);
}

.about-visual.is-visible img {
    transform: scale(1.03);
}

.about-copy {
    padding: clamp(3rem, 7vw, 5.5rem) clamp(1.5rem, 5vw, 4.5rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-copy .section-title {
    color: #fff;
    margin-bottom: 1.25rem;
}

.about-copy p {
    font-size: 1.05rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.72);
}

.about-copy strong {
    color: #fff;
    font-weight: 600;
}

.about-copy .btn-primary {
    align-self: flex-start;
    margin-top: 0.75rem;
    background: transparent;
    border-color: rgba(255, 255, 255, 0.55);
    color: #fff;
}

.about-copy .btn-primary:hover,
.about-copy .btn-primary:focus {
    background: #fff;
    border-color: #fff;
    color: var(--ink);
}

/* ===== PRODUCTS ===== */
.section-products {
    padding: clamp(4rem, 9vw, 7rem) 0;
}

.products-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem 2rem;
    margin-top: 2.5rem;
}

.product-item h3 {
    font-size: 1.2rem;
    margin: 1.25rem 0 0.5rem;
}

.product-item p {
    font-size: 0.95rem;
    color: var(--muted);
    margin: 0;
    font-weight: 300;
}

.product-visual {
    background: var(--paper-deep);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s var(--ease);
}

.product-visual--icon img {
    /* PNG содержат тонкую белую кромку — слегка обрезаем */
    transform: scale(1.035);
    transform-origin: center;
}

.product-item:hover .product-visual img {
    transform: scale(1.04);
}

.product-item:hover .product-visual--icon img {
    transform: scale(1.07);
}

/* ===== QUALITY ===== */
.section-quality {
    padding: clamp(4rem, 9vw, 7rem) 0;
    background: var(--ink);
    color: rgba(255, 255, 255, 0.78);
}

.quality-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.quality-copy .section-title {
    color: #fff;
    margin-bottom: 1.25rem;
}

.quality-copy > p {
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.quality-list {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.quality-list li {
    padding: 0.95rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.78);
    padding-left: 1.5rem;
    position: relative;
}

.quality-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    border: 1.5px solid var(--accent);
    border-radius: 50%;
    transform: translateY(-50%);
}

.quality-visual {
    overflow: hidden;
    min-height: 320px;
}

.quality-visual img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
}

/* ===== CASES ===== */
.section-cases {
    padding: clamp(4rem, 9vw, 7rem) 0;
}

.cases-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

.case-visual {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--paper-deep);
    margin-bottom: 1.25rem;
}

.case-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s var(--ease);
}

.case-item:hover .case-visual img {
    transform: scale(1.04);
}

.case-item h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.case-item p {
    font-size: 0.95rem;
    color: var(--muted);
    margin: 0;
    font-weight: 300;
}

.cases-note {
    text-align: center;
    color: var(--muted);
    margin: 2.5rem auto 1rem;
    font-weight: 300;
}

.cases-actions,
.band-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.telegram-band .band-actions {
    flex-shrink: 0;
    justify-content: flex-end;
}

/* ===== TELEGRAM CTA ===== */
.section-telegram {
    padding: clamp(3rem, 6vw, 4.5rem) 0;
}

.telegram-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: clamp(1.75rem, 4vw, 2.5rem) 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.telegram-band h2 {
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    margin: 0 0 0.5rem;
}

.telegram-band p {
    margin: 0;
    color: var(--muted);
    font-weight: 300;
    max-width: 36rem;
}

/* ===== WHY US ===== */
.section-why {
    padding: clamp(4rem, 9vw, 7rem) 0;
    background:
        linear-gradient(180deg, transparent, rgba(15, 118, 110, 0.04) 40%, transparent),
        transparent;
}

.why-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    max-width: 920px;
    margin: 2.5rem auto 0;
    border-top: 1px solid var(--line);
}

.why-item {
    display: flex;
    gap: 1.15rem;
    align-items: flex-start;
    padding: 1.6rem 1.5rem 1.6rem 0;
    border-bottom: 1px solid var(--line);
}

.why-item:nth-child(even) {
    padding-left: 1.5rem;
    border-left: 1px solid var(--line);
}

.why-number {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--accent);
    line-height: 1.2;
    flex-shrink: 0;
    min-width: 2rem;
    letter-spacing: 0.04em;
    font-variant-numeric: tabular-nums lining-nums;
    font-feature-settings: "tnum" 1, "lnum" 1;
}

.why-item h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.why-item p {
    font-size: 0.95rem;
    color: var(--muted);
    margin: 0;
    font-weight: 300;
}

/* ===== PRICING ===== */
.section-pricing {
    padding: clamp(4rem, 9vw, 7rem) 0;
    background: var(--ink);
    color: #fff;
}

.section-pricing .section-title {
    color: #fff;
}

.price-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.price-item {
    padding: 2rem 1.5rem 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.price-item + .price-item {
    border-left: 1px solid rgba(255, 255, 255, 0.14);
    padding-left: 1.75rem;
}

.price-item h3 {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    margin-bottom: 0.75rem;
    letter-spacing: 0;
}

.price-value {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.35rem;
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums lining-nums;
    font-feature-settings: "tnum" 1, "lnum" 1;
}

.price-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.price-disclaimer {
    text-align: center;
    max-width: 34rem;
    margin: 2rem auto 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 300;
}

.price-disclaimer strong {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

.section-pricing .btn-primary {
    background: #fff;
    border-color: #fff;
    color: var(--ink);
}

.section-pricing .btn-primary:hover,
.section-pricing .btn-primary:focus {
    background: var(--paper);
    border-color: var(--paper);
    color: var(--ink);
}

/* ===== STEPS ===== */
.section-steps {
    padding: clamp(4rem, 9vw, 7rem) 0;
}

.steps-list {
    list-style: none;
    margin: 2.5rem 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    counter-reset: none;
    border-top: 1px solid var(--line);
}

.step-item {
    padding: 2rem 1.5rem 0 0;
    border-bottom: 1px solid var(--line);
    padding-bottom: 2rem;
}

.step-item + .step-item {
    border-left: 1px solid var(--line);
    padding-left: 1.75rem;
}

.step-number {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1rem;
    line-height: 1;
    font-variant-numeric: tabular-nums lining-nums;
    font-feature-settings: "tnum" 1, "lnum" 1;
}

.step-item h3 {
    font-size: 1.05rem;
    margin-bottom: 0.45rem;
}

.step-item p {
    font-size: 0.95rem;
    color: var(--muted);
    margin: 0;
    font-weight: 300;
}

/* ===== CONTACTS ===== */
.section-contacts {
    padding: clamp(4rem, 9vw, 7rem) 0;
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 2rem;
    border-top: 1px solid var(--line);
}

.contact-item {
    padding: 1.75rem 1.25rem 1.75rem 0;
    border-bottom: 1px solid var(--line);
}

.contact-item + .contact-item {
    border-left: 1px solid var(--line);
    padding-left: 1.5rem;
}

.contact-item h3 {
    font-size: 0.75rem;
    font-weight: 600;
    font-family: var(--font-body);
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.55rem;
}

.contact-item p,
.contact-item a {
    font-size: 1.05rem;
    color: var(--ink);
    margin: 0;
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--accent);
}

.map-container {
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--paper-deep);
    min-height: 280px;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--ink-soft);
    color: rgba(255, 255, 255, 0.55);
    padding: 2.25rem 0;
}

.footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.footer-brand:hover {
    color: rgba(255, 255, 255, 0.8);
}

.footer-brand img {
    border-radius: 50%;
}

.footer-social {
    display: flex;
    gap: 1.1rem;
}

.footer-social a {
    color: rgba(255, 255, 255, 0.45);
    display: flex;
    align-items: center;
}

.footer-social a:hover {
    color: #fff;
}

.footer-copy {
    font-size: 0.8rem;
    line-height: 1.55;
    margin: 0;
    text-align: right;
}

/* ===== SCROLL TO TOP ===== */
#scrollToTop {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    background: var(--ink);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s var(--ease), visibility 0.3s, transform 0.25s var(--ease), background-color 0.25s;
    z-index: 1000;
}

#scrollToTop.visible {
    opacity: 1;
    visibility: visible;
}

#scrollToTop:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
    .offers-grid,
    .products-row,
    .steps-list,
    .contacts-grid,
    .price-row,
    .cases-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .formats-row,
    .quality-grid {
        grid-template-columns: 1fr;
    }

    .format-item + .format-item {
        border-left: none;
        padding-left: 0;
    }

    .offer-item,
    .step-item,
    .contact-item,
    .price-item {
        padding: 1.5rem 1rem 1.5rem 0;
    }

    .offer-item + .offer-item,
    .step-item + .step-item,
    .contact-item + .contact-item,
    .price-item + .price-item {
        border-left: none;
        padding-left: 0;
    }

    .offer-item:nth-child(even),
    .step-item:nth-child(even),
    .contact-item:nth-child(even),
    .price-item:nth-child(even) {
        border-left: 1px solid var(--line);
        padding-left: 1.25rem;
    }

    .price-item:nth-child(even) {
        border-left-color: rgba(255, 255, 255, 0.14);
    }

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

    .about-visual {
        min-height: 360px;
    }

    .telegram-band {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 767.98px) {
    .hero {
        min-height: 92svh;
        align-items: flex-end;
    }

    .hero-veil {
        background:
            linear-gradient(180deg, rgba(10, 12, 14, 0.45) 0%, rgba(10, 12, 14, 0.82) 55%, rgba(10, 12, 14, 0.92) 100%);
    }

    .offers-grid,
    .products-row,
    .steps-list,
    .contacts-grid,
    .price-row,
    .why-list,
    .cases-row,
    .formats-row {
        grid-template-columns: 1fr;
    }

    .offer-item:nth-child(even),
    .step-item:nth-child(even),
    .contact-item:nth-child(even),
    .price-item:nth-child(even),
    .why-item:nth-child(even) {
        border-left: none;
        padding-left: 0;
    }

    .why-item {
        padding: 1.35rem 0;
    }

    .footer-row {
        flex-direction: column;
        text-align: center;
    }

    .footer-copy {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .reveal,
    .hero-media img,
    .product-visual img,
    .about-visual img {
        animation: none !important;
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
}
