/* ============================================================
   Термы «Медные Ключи» — демо CloudxBear. Дизайн-ДНК v2.
   Стекло (Apple Liquid Glass) + гибрид «день→вода»: страница
   светлая вверху (утренний туман) и плавно уходит в глубокую
   минеральную воду к блоку брони. Живой пар живёт у нижней
   кромки экрана. Термальная палитра: медь (горячая вода) +
   минеральный циан + петроль-глубина. Ноль крема.
   Шрифты: Bricolage Grotesque (display) + Hanken Grotesk (текст).
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,500;12..96,600;12..96,700&family=Hanken+Grotesk:wght@400;500;600;700&display=swap');

:root {
    /* глубина воды */
    --water-abyss: #0b2126;
    --water-deep: #0f2b31;
    --water: #16414a;
    --teal: #2f6f78;
    --teal-soft: #6ea6ac;
    /* свет / туман */
    --mist: #eef4f4;
    --mist-2: #dceaea;
    --mist-line: #c4dadb;
    /* минерал (акцент прохлады) */
    --cyan: #21b6c6;
    --cyan-bright: #58e0ec;
    --cyan-tint: rgba(33, 182, 198, 0.14);
    /* тепло (горячая вода, CTA) */
    /* акцент — «индийский океан»: насыщенный тёмный бирюзово-изумрудный */
    --copper: #0f9f8d;
    --copper-deep: #0a685f;
    --amber: #1ec7ac;
    --copper-tint: rgba(30, 199, 172, 0.16);
    /* температурная шкала: холод → жар, в мире прохладных минералов.
       Тепло кодируется яркостью и свечением, а не уходом в тёплый цвет — «ноль крема». */
    --t-12: #74dcec;   /* контрастная купель — ледяная бирюза */
    --t-33: #35c3c1;   /* детский */
    --t-36: #1fc1ab;   /* тёплый малый */
    --t-38: #10c79a;   /* игольчатый, главный */
    --t-39: #0bcb8c;   /* вечерний, самый горячий */
    --thermo-grad: linear-gradient(90deg, var(--t-12), var(--t-33), var(--t-36), var(--t-38), var(--t-39));
    /* чернила / текст */
    --ink: #10282d;
    --ink-soft: #405c62;
    --muted: #6d878c;
    --on-dark: #ecf5f5;
    --on-dark-soft: #a6c4c7;
    /* стекло */
    --glass-light: rgba(255, 255, 255, 0.30);
    --glass-light-2: rgba(255, 255, 255, 0.44);
    --glass-dark: rgba(12, 34, 39, 0.40);
    --glass-border: rgba(255, 255, 255, 0.40);
    --glass-border-dark: rgba(160, 205, 210, 0.24);
    --line: rgba(16, 40, 45, 0.12);
    --line-dark: rgba(190, 225, 228, 0.16);
    --shadow: 0 30px 70px -34px rgba(6, 24, 28, 0.6);
    --shadow-sm: 0 16px 40px -24px rgba(6, 24, 28, 0.5);
    --font-display: 'Bricolage Grotesque', 'Segoe UI', system-ui, sans-serif;
    --font-body: 'Hanken Grotesk', 'Segoe UI', system-ui, sans-serif;
    --nav-h: 74px;
    --radius: 26px;
    --radius-sm: 16px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    position: relative;
    font-family: var(--font-body);
    color: var(--on-dark);
    background: var(--water-abyss);
    font-size: 16.5px;
    line-height: 1.62;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    min-height: 100vh;
}

::selection { background: var(--cyan); color: #04252b; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; border-radius: 6px; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* ---------- Гибридный фон «день→вода» ---------- */

.page-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(180deg,
            #6ba7b0 0%,
            #558d97 13%,
            #427680 27%,
            #315f6a 43%,
            #234d57 60%,
            #163b43 79%,
            #0b2126 100%);
}
/* каустика: рябь солнечного света у поверхности воды — живёт в верхней трети,
   мягко тает к глубине. Дешёвые слои радиальных бликов + очень медленный дрейф. */
.page-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(closest-side, rgba(180, 245, 250, 0.5), transparent 100%),
        radial-gradient(closest-side, rgba(140, 235, 245, 0.42), transparent 100%),
        radial-gradient(closest-side, rgba(130, 205, 242, 0.4), transparent 100%),
        radial-gradient(closest-side, rgba(160, 240, 246, 0.34), transparent 100%),
        radial-gradient(closest-side, rgba(110, 205, 240, 0.32), transparent 100%);
    background-repeat: no-repeat;
    background-size: 42vw 26vw, 30vw 22vw, 38vw 24vw, 26vw 18vw, 34vw 22vw;
    background-position: 12% 6%, 78% 11%, 46% 20%, 90% 26%, 22% 33%;
    -webkit-mask: linear-gradient(180deg, #000 0%, #000 22%, transparent 46%);
            mask: linear-gradient(180deg, #000 0%, #000 22%, transparent 46%);
    mix-blend-mode: soft-light;
    opacity: 0.9;
    filter: url(#steamFx);
    animation: caustics 26s ease-in-out infinite alternate;
    will-change: transform, opacity;
}
@keyframes caustics {
    0%   { transform: translate3d(-1.5%, -1%, 0) scale(1.04); opacity: 0.75; }
    50%  { transform: translate3d(1%, 0.6%, 0) scale(1.09); opacity: 1; }
    100% { transform: translate3d(2%, 1.4%, 0) scale(1.05); opacity: 0.8; }
}
@media (prefers-reduced-motion: reduce) {
    .page-bg::after { animation: none; }
}

/* размытые цветные орбы под стеклом — чтобы стеклу было что преломлять */
.bg-orbs { position: absolute; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.55; will-change: transform; animation: orb-drift 30s ease-in-out infinite alternate; }
.orb:nth-child(2n) { animation-duration: 38s; animation-direction: alternate-reverse; }
.orb:nth-child(3n) { animation-duration: 46s; }
@keyframes orb-drift {
    from { transform: translate3d(0, 0, 0); }
    to   { transform: translate3d(3%, -2.5%, 0); }
}
@media (prefers-reduced-motion: reduce) {
    .orb { animation: none; }
}

/* ---------- Живой пар: сплошной слой тумана у нижней кромки экрана ---------- */

.steam-layer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    height: 22vh;
    z-index: 20;
    pointer-events: none;
    overflow: hidden;
    transition: opacity 0.9s ease;
    /* курсор «разводит» туман — мягкая дыра следует за мышью */
    -webkit-mask: radial-gradient(circle 110px at var(--sx, -999px) var(--sy, -999px), transparent 0, transparent 42px, #000 110px);
            mask: radial-gradient(circle 110px at var(--sx, -999px) var(--sy, -999px), transparent 0, transparent 42px, #000 110px);
}
.steam-layer.is-hidden { opacity: 0; }

/* полоса тумана: широкая, плотная у самого низа, вьётся турбулентностью, дрейфует */
.fog {
    position: absolute;
    left: -50%;
    bottom: 0;
    width: 200%;
    height: 22vh;
    /* плотно у самой кромки → полностью прозрачно задолго до верха (нет линии-среза) */
    background: linear-gradient(to top,
        rgba(255, 255, 255, 0.68) 0%,
        rgba(255, 255, 255, 0.4) 20%,
        rgba(255, 255, 255, 0.12) 42%,
        transparent 66%);
    mix-blend-mode: screen;
    will-change: transform;
}
/* сплошная база — гарантирует ровное покрытие низа (без турбулентности, плавный дрейф) */
.fog.f1 { filter: blur(12px); opacity: 0.6; animation: fog-b 66s linear infinite; }
/* вихревые слои поверх — текстура и лёгкое движение */
.fog.f2 { filter: url(#steamFx) blur(6px); opacity: 0.5; animation: fog-a 44s linear infinite; }
.fog.f3 { filter: url(#steamFx) blur(9px); opacity: 0.4; animation: fog-a 82s linear infinite reverse; }
@keyframes fog-a { from { transform: translateX(0); } to { transform: translateX(-18%); } }
@keyframes fog-b { from { transform: translateX(-14%); } to { transform: translateX(3%); } }

@media (prefers-reduced-motion: reduce) {
    .steam-layer { display: none; }
}

/* ---------- Типографика ---------- */

h1, h2, h3, h4, .display {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: inherit;
}
h1 { font-size: clamp(2.4rem, 5.4vw, 4.25rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.7rem); }
h3 { font-size: 1.24rem; }
h4 { font-size: 1rem; }

p { text-wrap: pretty; }
.lead { font-size: clamp(1.04rem, 1.5vw, 1.2rem); color: #d3e8ea; line-height: 1.6; }
.muted { color: var(--muted); }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--font-display);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--amber);
}
.eyebrow::before {
    content: '';
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--amber);
    box-shadow: 0 0 0 4px var(--copper-tint);
}
.eyebrow.cyan { color: var(--cyan-bright); }
.eyebrow.cyan::before { background: var(--cyan-bright); box-shadow: 0 0 0 4px var(--cyan-tint); }

/* тон под зону гибрида */
.zone-dark { color: var(--on-dark); }
.zone-dark .lead { color: #cfe6e7; }
.zone-dark .eyebrow { color: var(--amber); }
.zone-dark .muted { color: var(--on-dark-soft); }

/* тёмное стекло само задаёт свои акценты — работает на любом фоне */
.glass-dark .eyebrow { color: var(--amber); }
.glass-dark .eyebrow::before { background: var(--amber); box-shadow: 0 0 0 4px var(--copper-tint); }
.glass-dark .lead { color: #cfe6e7; }

/* ---------- Стекло (Liquid Glass) ---------- */

.glass, .glass-dark {
    position: relative;
    border-radius: var(--radius);
    -webkit-backdrop-filter: blur(22px) saturate(200%);
    backdrop-filter: blur(22px) saturate(200%);
    isolation: isolate;
}
/* прозрачнее фон → сквозь стекло видно цвет; presence даёт яркая кромка + тень */
.glass {
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow:
        0 26px 54px -28px rgba(6, 24, 28, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.glass-dark {
    background: rgba(9, 28, 33, 0.30);
    border: 1px solid rgba(190, 230, 235, 0.32);
    color: var(--on-dark);
    box-shadow:
        var(--shadow),
        inset 0 1px 0 rgba(210, 240, 242, 0.26);
}
/* specular-блик по кромке */
.glass::before, .glass-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0) 32%, rgba(255, 255, 255, 0) 68%, rgba(255, 255, 255, 0.28));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    opacity: 0.7;
    pointer-events: none;
}
.glass-dark::before { background: linear-gradient(135deg, rgba(210, 240, 242, 0.5), transparent 34%, transparent 66%, rgba(210, 240, 242, 0.16)); opacity: 0.6; }

/* изморозь: микротекстура зерна на поверхности стекла (feTurbulence) */
.glass::after, .glass-dark::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='fn'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23fn)'/%3E%3C/svg%3E");
    background-size: 160px 160px;
    opacity: 0.06;
    mix-blend-mode: overlay;
}

/* стеклянный текст — полупрозрачные «морозные» буквы со светящейся кромкой */
.glass-text {
    color: rgba(255, 255, 255, 0.14);
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.55);
    text-shadow: 0 1px 24px rgba(180, 235, 240, 0.35), 0 2px 2px rgba(0, 0, 0, 0.15);
}

/* Настоящая рефракция — только там, где браузер умеет SVG-фильтр в backdrop (Chromium). */
@supports (backdrop-filter: url("#liquidGlass")) {
    .glass--liquid {
        -webkit-backdrop-filter: url("#liquidGlass") blur(6px) saturate(180%);
        backdrop-filter: url("#liquidGlass") blur(6px) saturate(180%);
    }
}

/* ---------- Кнопки ---------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 14px 26px;
    border-radius: 999px;
    border: 1.5px solid transparent;
    font-family: var(--font-display);
    font-size: 0.98rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    text-decoration: none;
    transition: transform 0.18s, box-shadow 0.24s, background 0.24s, color 0.24s, border-color 0.24s;
    white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-copper {
    background: linear-gradient(180deg, var(--copper), var(--copper-deep));
    /* градиент не должен затекать под прозрачную рамку — иначе на нижней кромке
       появляется светлая полоска-шов (особенно над цветными орбами) */
    background-clip: padding-box;
    -webkit-background-clip: padding-box;
    color: #f2fffb;
    box-shadow: 0 10px 22px -16px rgba(4, 24, 28, 0.5);
}
.btn-copper:hover { box-shadow: 0 16px 30px -18px rgba(4, 24, 28, 0.6); transform: translateY(-1px); }

.btn-cyan { background: var(--cyan); color: #042a30; box-shadow: 0 16px 30px -16px rgba(33, 182, 198, 0.8); }
.btn-cyan:hover { background: var(--cyan-bright); transform: translateY(-1px); }

.btn-glass {
    background: var(--glass-light);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    backdrop-filter: blur(14px) saturate(160%);
    border-color: var(--glass-border);
    color: var(--ink);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}
.btn-glass:hover { border-color: var(--cyan); color: var(--copper-deep); }

.zone-dark .btn-glass, .glass-dark .btn-glass { color: var(--on-dark); background: rgba(210, 240, 242, 0.1); border-color: var(--glass-border-dark); }
.zone-dark .btn-glass:hover { border-color: var(--cyan-bright); color: var(--cyan-bright); }

.btn-lg { padding: 16px 34px; font-size: 1.04rem; }

/* ---------- Навигация ---------- */

.site-nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    background: rgba(238, 244, 244, 0.5);
    -webkit-backdrop-filter: blur(18px) saturate(170%);
    backdrop-filter: blur(18px) saturate(170%);
    border-bottom: 1px solid transparent;
    transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.site-nav.scrolled { background: rgba(238, 244, 244, 0.82); border-bottom-color: var(--mist-line); box-shadow: 0 10px 30px -22px rgba(6, 24, 28, 0.5); }
.nav-inner { width: 100%; display: flex; align-items: center; gap: 24px; }

.logo { display: flex; align-items: center; gap: 11px; text-decoration: none; margin-right: auto; }
.logo-mark {
    width: 42px; height: 42px; border-radius: 13px; flex: 0 0 auto;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(150deg, rgba(33, 182, 198, 0.22), rgba(217, 138, 61, 0.22));
    border: 1px solid rgba(255, 255, 255, 0.5);
}
.logo-text { line-height: 1.08; }
.logo-text strong { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.12rem; color: var(--ink); }
.logo-text span { font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }

.nav-links { display: flex; align-items: center; gap: 22px; list-style: none; }
.nav-links a { text-decoration: none; font-size: 0.94rem; font-weight: 500; color: var(--ink-soft); padding: 6px 0; border-bottom: 2px solid transparent; transition: color 0.2s, border-color 0.2s; }
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--copper-deep); border-bottom-color: var(--copper); }

.nav-phone { font-family: var(--font-display); font-weight: 600; font-size: 0.94rem; text-decoration: none; color: var(--ink); white-space: nowrap; }
.nav-phone:hover { color: var(--copper-deep); }
.nav-cta { padding: 10px 20px; font-size: 0.9rem; }

.burger {
    display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 12px;
    background: var(--glass-light); flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.burger span { width: 18px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero: полноэкранное фото воды + стеклянные консоли ---------- */

.hero {
    position: relative;
    min-height: 94vh;
    display: flex;
    align-items: center;
    padding: calc(var(--nav-h) + 38px) 0 58px;
    overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(95% 85% at 16% 72%, rgba(8, 28, 33, 0.6), transparent 60%),
        radial-gradient(80% 90% at 90% 6%, rgba(33, 182, 198, 0.3), transparent 55%),
        linear-gradient(180deg, rgba(8, 28, 33, 0.24), rgba(8, 28, 33, 0.08) 52%, rgba(8, 28, 33, 0.44));
}
.hero-inner { position: relative; z-index: 2; width: 100%; }
.hero-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 24px;
    align-items: center;
}
.hero-console { padding: 40px 40px 36px; }
.hero-tag {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 7px 15px; border-radius: 999px;
    background: rgba(255, 255, 255, 0.12); border: 1px solid var(--glass-border-dark);
    -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
    font-size: 0.76rem; font-weight: 600; letter-spacing: 0.03em; color: var(--on-dark);
}
.hero-tag .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 0 4px var(--copper-tint); flex: 0 0 auto; }

.hero h1 { margin-top: 20px; max-width: 16ch; }
.hero h1 .temp {
    color: var(--amber);
    text-shadow: 0 0 36px rgba(242, 171, 84, 0.65);
    animation: breathe 4.6s ease-in-out infinite;
}
.hero .lead { margin-top: 18px; max-width: 46ch; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }

.hero-trust { display: flex; gap: 26px; margin-top: 28px; flex-wrap: wrap; }
.hero-trust div { display: flex; flex-direction: column; }
.hero-trust .ht-num { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: var(--on-dark); }
.hero-trust .ht-lbl { font-size: 0.8rem; color: var(--on-dark-soft); }

.hero-aside { display: flex; flex-direction: column; gap: 14px; }

/* плашка «вода/воздух» */
.elements-chip { display: flex; padding: 6px; border-radius: 20px; }
.ec-side { padding: 13px 20px; display: flex; flex-direction: column; gap: 2px; flex: 1; }
.ec-side + .ec-side { border-left: 1px solid var(--glass-border-dark); }
.ec-label { font-size: 0.63rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-dark-soft); }
.ec-value { font-family: var(--font-display); font-weight: 700; font-size: 1.85rem; }
.ec-side.water .ec-value { color: var(--amber); animation: breathe 4.4s ease-in-out infinite; }
.ec-side.air .ec-value { color: var(--cyan-bright); }
.ec-note { font-size: 0.72rem; color: var(--on-dark-soft); }

@keyframes breathe {
    0%, 100% { transform: scale(1); opacity: 0.95; }
    50% { transform: scale(1.05); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
    .hero h1 .temp, .ec-side.water .ec-value, .sd-temp, .sm-temp { animation: none !important; }
}

/* ---------- Виджет брони (стекло, слоты, плавающая цена) ---------- */

.booking {
    padding: 26px;
    border-radius: var(--radius);
}
.booking h3 { font-size: 1.16rem; }
.booking .bk-sub { font-size: 0.86rem; color: var(--on-dark-soft); margin-top: 4px; }
.bk-block { margin-top: 18px; }
.bk-label { font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--on-dark-soft); margin-bottom: 9px; display: block; }
.bk-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.bk-chip {
    border: 1px solid var(--glass-border-dark);
    background: rgba(210, 240, 242, 0.06);
    color: var(--on-dark);
    border-radius: 12px;
    padding: 9px 14px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex; flex-direction: column; align-items: flex-start; gap: 1px;
    transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.bk-chip small { font-size: 0.72rem; color: var(--on-dark-soft); }
.bk-chip:hover { border-color: var(--cyan); }
.bk-chip.selected { border-color: var(--amber); background: var(--copper-tint); }
.bk-chip.selected small { color: var(--amber); }
.bk-chip[data-full] { opacity: 0.42; pointer-events: none; }
.bk-slots .bk-avail { font-size: 0.72rem; color: var(--cyan-bright); }

.bk-total {
    display: flex; align-items: baseline; justify-content: space-between;
    margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--line-dark);
}
.bk-total .bk-price { font-family: var(--font-display); font-weight: 700; font-size: 2rem; color: var(--amber); }
.bk-total .bk-price small { font-size: 0.9rem; font-weight: 400; color: var(--on-dark-soft); }
.booking .btn { width: 100%; margin-top: 16px; }
.bk-note { font-size: 0.74rem; color: var(--on-dark-soft); margin-top: 12px; text-align: center; }

/* ---------- Секции ---------- */

.section { padding: 92px 0; position: relative; }
.section-head { max-width: 660px; margin-bottom: 46px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { margin-top: 14px; }
.section-head .lead { margin-top: 14px; }

/* ---------- Источники: teaser на главной ---------- */

.springs-teaser { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.spring-mini { padding: 26px; display: flex; flex-direction: column; gap: 9px; }
.spring-mini { --c: var(--t-38); border-top: 2px solid color-mix(in srgb, var(--c) 60%, transparent); }
.spring-mini .sm-temp {
    font-family: var(--font-display); font-weight: 700; font-size: 2.7rem;
    color: var(--c); line-height: 1; display: inline-block;
    text-shadow: 0 0 24px color-mix(in srgb, var(--c) 45%, transparent);
    animation: breathe 4.6s ease-in-out infinite;
}
.spring-mini:nth-child(2) { --c: var(--t-36); }
.spring-mini:nth-child(2) .sm-temp { animation-delay: 0.9s; }
.spring-mini:nth-child(3) { --c: var(--t-12); }
.spring-mini:nth-child(3) .sm-temp { animation-delay: 1.7s; }
.spring-mini .sm-name { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; }
.spring-mini .sm-desc { font-size: 0.9rem; color: var(--on-dark-soft); }

/* ---------- Термальная шкала: сигнатура страницы «Бассейны» ---------- */
/* Пять источников на одной температурной оси — от контрастной купели к жару.
   Позиция = порядок по температуре, цвет = тепло, число = точное значение. */

@property --fill { syntax: '<number>'; inherits: false; initial-value: 0; }

.thermo { padding: 30px 36px 30px; margin-bottom: 44px; }
.thermo-head { margin-bottom: 12px; }
.thermo-head h2 { font-size: clamp(1.35rem, 2.3vw, 1.85rem); }
.thermo-head p { font-size: 0.92rem; color: var(--on-dark-soft); margin-top: 6px; max-width: 60ch; }

.thermo-scroll { overflow-x: auto; overflow-y: hidden; scrollbar-width: none; }
.thermo-scroll::-webkit-scrollbar { display: none; }
.thermo-track { position: relative; height: 128px; margin-top: 14px; }
.thermo-rail {
    position: absolute; left: 0; right: 0; top: 62px; height: 8px; border-radius: 999px;
    background: var(--thermo-grad);
    box-shadow: 0 0 26px -2px rgba(88, 224, 236, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}
.thermo-cap { position: absolute; top: 4px; font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--on-dark-soft); display: flex; align-items: center; gap: 6px; }
.thermo-cap.cold { left: 0; }
.thermo-cap.hot { right: 0; }
.thermo-cap svg { width: 14px; height: 14px; }
.thermo-cap.cold svg { color: var(--t-12); }
.thermo-cap.hot svg { color: var(--t-39); }

.thermo-mark {
    position: absolute; top: 0; bottom: 0; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center;
    background: none; border: 0; padding: 0; color: inherit; cursor: pointer;
    width: 96px;
}
.thermo-mark .tm-temp {
    font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; line-height: 1;
    color: var(--c); margin-top: 20px;
    text-shadow: 0 0 18px color-mix(in srgb, var(--c) 55%, transparent);
    transition: transform 0.25s;
}
.thermo-mark .tm-dot {
    position: absolute; top: 58px; left: 50%; transform: translateX(-50%);
    width: 16px; height: 16px; border-radius: 50%; background: var(--c);
    box-shadow: 0 0 0 4px rgba(11, 33, 38, 0.55), 0 0 16px color-mix(in srgb, var(--c) 70%, transparent);
    transition: transform 0.25s, box-shadow 0.25s;
}
.thermo-mark .tm-name {
    position: absolute; top: 84px; font-size: 0.73rem; font-weight: 500; line-height: 1.2;
    color: var(--on-dark-soft); width: 84px; text-align: center;
    transition: color 0.25s;
}
.thermo-mark:hover .tm-dot, .thermo-mark:focus-visible .tm-dot { transform: translateX(-50%) scale(1.35); }
.thermo-mark:hover .tm-temp, .thermo-mark.is-active .tm-temp { transform: translateY(-3px); }
.thermo-mark:hover .tm-name, .thermo-mark.is-active .tm-name { color: var(--on-dark); }
.thermo-mark.is-active .tm-dot { transform: translateX(-50%) scale(1.35); box-shadow: 0 0 0 4px rgba(11, 33, 38, 0.55), 0 0 22px color-mix(in srgb, var(--c) 90%, transparent); }

/* ---------- Карточки источников (страница «Бассейны») ---------- */

.springs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(288px, 1fr)); gap: 22px; }
.spring-card { padding: 30px; scroll-margin-top: calc(var(--nav-h) + 20px); transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s; }
.spring-card:hover { transform: translateY(-4px); }
/* подсветка карточки при наведении на метку шкалы */
.spring-card.is-hi { border-color: color-mix(in srgb, var(--dial, var(--copper)) 70%, transparent); box-shadow: var(--shadow), 0 0 0 1px color-mix(in srgb, var(--dial, var(--copper)) 55%, transparent), 0 0 34px -10px color-mix(in srgb, var(--dial, var(--copper)) 80%, transparent); }
@keyframes flash-ring { 0%,100% { box-shadow: var(--shadow); } 40% { box-shadow: var(--shadow), 0 0 0 2px var(--dial, var(--copper)), 0 0 40px -6px var(--dial, var(--copper)); } }
.spring-card.is-flash { animation: flash-ring 1.1s ease; }
.spring-card-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 16px; }
.spring-dial {
    flex: 0 0 auto; width: 92px; height: 92px; border-radius: 50%; padding: 6px;
    background: conic-gradient(var(--dial, var(--copper)) calc(var(--fill, 0) * 1%), rgba(160, 205, 210, 0.22) 0);
    display: flex; align-items: center; justify-content: center;
    transition: --fill 1.1s cubic-bezier(0.4, 0, 0.2, 1);
}
.spring-card.visible .spring-dial { --fill: var(--fillT, 60); }
.spring-dial-inner {
    width: 100%; height: 100%; border-radius: 50%;
    background: rgba(12, 34, 39, 0.55);
    -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.spring-dial .sd-temp { font-family: var(--font-display); font-weight: 700; font-size: 1.42rem; color: var(--dial, var(--amber)); animation: breathe 4.2s ease-in-out infinite; }
.spring-dial .sd-unit { font-size: 0.58rem; color: var(--on-dark-soft); letter-spacing: 0.06em; }
.spring-tag {
    display: inline-block; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.06em;
    text-transform: uppercase; padding: 5px 12px; border-radius: 999px;
    background: color-mix(in srgb, var(--dial, var(--copper)) 18%, transparent); color: var(--dial, var(--amber));
}
.spring-card h3 { margin-top: 10px; }
.spring-card .sc-desc { font-size: 0.92rem; color: var(--on-dark-soft); margin: 12px 0 16px; }

.mineral-bars { display: flex; flex-direction: column; gap: 8px; }
.mineral-row { display: grid; grid-template-columns: 92px 1fr 42px; align-items: center; gap: 10px; font-size: 0.75rem; color: var(--on-dark-soft); }
.mineral-track { height: 6px; border-radius: 999px; background: rgba(160, 205, 210, 0.2); overflow: hidden; }
.mineral-fill { height: 100%; border-radius: 999px; width: 0; background: linear-gradient(90deg, color-mix(in srgb, var(--dial, var(--copper)) 55%, var(--water-deep)), var(--dial, var(--amber))); transition: width 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.15s; }
.spring-card.visible .mineral-fill { width: var(--w, 60%); }

.mineral-legend { display: flex; flex-wrap: wrap; gap: 16px 22px; margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line-dark); font-size: 0.82rem; color: var(--on-dark-soft); }
.mineral-legend span { display: inline-flex; align-items: center; gap: 8px; }
.mineral-legend i { width: 20px; height: 6px; border-radius: 999px; flex: 0 0 auto; }

/* ---------- Тарифы-билеты (стекло) ---------- */

.wristbands { display: grid; grid-template-columns: repeat(auto-fit, minmax(272px, 1fr)); gap: 24px; align-items: stretch; }
.wristband { position: relative; padding: 30px 28px; display: flex; flex-direction: column; gap: 14px; overflow: hidden; }
.wristband::before {
    content: ''; position: absolute; top: 0; bottom: 0; left: 12px; width: 22px;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.5) 2.4px, transparent 2.6px);
    background-size: 100% 20px; background-position: center;
    border-right: 2px dashed rgba(255, 255, 255, 0.32);
}
.wristband-body { padding-left: 22px; display: flex; flex-direction: column; gap: 13px; flex: 1; }
.wristband .wb-name { font-family: var(--font-display); font-size: 1.12rem; font-weight: 600; }
.wristband .wb-price { font-family: var(--font-display); font-size: 2.15rem; font-weight: 700; color: var(--amber); line-height: 1; }
.wristband .wb-price small { font-size: 0.9rem; font-weight: 400; color: var(--on-dark-soft); }
.wb-includes { display: flex; flex-direction: column; gap: 8px; font-size: 0.9rem; color: var(--on-dark-soft); }
.wb-includes span { display: flex; align-items: flex-start; gap: 8px; }
.wb-includes span::before { content: '✓'; color: var(--cyan-bright); font-weight: 700; flex: 0 0 auto; }
.wristband .btn { margin-top: auto; }
.wristband.featured { background: linear-gradient(165deg, rgba(217, 138, 61, 0.32), rgba(12, 34, 39, 0.4)); border-color: rgba(242, 171, 84, 0.5); }
.wb-flag { position: absolute; top: 16px; right: -30px; transform: rotate(45deg); background: var(--copper-deep); color: #eafff6; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.08em; padding: 4px 34px; text-transform: uppercase; }

/* ---------- СПА-программы ---------- */

.programs-list { padding: 8px 30px; }
.program-row {
    display: grid; grid-template-columns: 1fr auto auto; gap: 22px; align-items: center;
    padding: 20px 0; border-bottom: 1px solid var(--line-dark);
}
.program-row:last-child { border-bottom: none; }
.program-row .pr-name { font-family: var(--font-display); font-weight: 600; font-size: 1.06rem; }
.program-row .pr-desc { font-size: 0.88rem; color: var(--on-dark-soft); margin-top: 3px; }
.program-row .pr-dur { font-size: 0.84rem; color: var(--on-dark-soft); white-space: nowrap; }
.program-row .pr-price { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--amber); white-space: nowrap; }
.zone-dark .program-row .pr-dur { color: var(--on-dark-soft); }

/* ---------- Преимущества / почему мы ---------- */

.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.feature { padding: 28px; }
.feature .ft-ic { width: 46px; height: 46px; border-radius: 13px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; background: rgba(88, 224, 236, 0.16); color: var(--cyan-bright); }
.feature h3 { font-size: 1.08rem; margin-bottom: 8px; }
.feature p { font-size: 0.9rem; color: var(--on-dark-soft); }

/* ---------- Отзывы ---------- */

.reviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.review { padding: 28px; display: flex; flex-direction: column; gap: 14px; }
.review .rv-stars { color: var(--amber); letter-spacing: 2px; font-size: 0.95rem; }
.review p { font-size: 0.96rem; line-height: 1.6; }
.review .rv-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review .rv-ava { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(150deg, var(--cyan), var(--copper)); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; color: #04252b; flex: 0 0 auto; }
.review .rv-name { font-weight: 600; font-size: 0.92rem; }
.review .rv-meta { font-size: 0.78rem; color: var(--muted); }
.zone-dark .review .rv-meta { color: var(--on-dark-soft); }

/* ---------- Изображение в рамке-стекле ---------- */

.media-frame { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.3); box-shadow: var(--shadow); }
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 46px; align-items: center; }

/* ---------- FAQ ---------- */

.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { overflow: hidden; }
.faq-q {
    width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 20px 24px; background: none; border: none; text-align: left;
    font-family: var(--font-display); font-weight: 600; font-size: 1rem; color: inherit;
}
.faq-plus { flex: 0 0 auto; width: 27px; height: 27px; border-radius: 50%; background: var(--copper-tint); color: var(--amber); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; transition: transform 0.25s; }
.faq-item.open .faq-plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.32s ease; }
.faq-a p { padding: 0 24px 20px; color: var(--on-dark-soft); font-size: 0.94rem; max-width: 70ch; }

/* ---------- Чек-лист ---------- */

.checklist { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; }
.check-card { padding: 24px; }
.check-card .cc-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--cyan-tint); color: var(--cyan); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.zone-dark .check-card .cc-icon { background: rgba(88, 224, 236, 0.16); color: var(--cyan-bright); }
.check-card h3 { font-size: 1.02rem; margin-bottom: 6px; }
.check-card p { font-size: 0.88rem; color: var(--on-dark-soft); }

/* ---------- CTA-полоса ---------- */

.cta-band { position: relative; padding: 30px 0 100px; text-align: center; overflow: hidden; }
.cta-inner { padding: 56px 40px; border-radius: 32px; }
.cta-band h2 { max-width: 22ch; margin: 0 auto 14px; }
.cta-band .lead { max-width: 48ch; margin: 0 auto 28px; }

/* ---------- Формы ---------- */

.form-card { padding: 32px; }
.form-row { margin-bottom: 16px; }
.form-row label { display: block; font-size: 0.84rem; font-weight: 600; margin-bottom: 6px; color: inherit; }
.form-row input, .form-row select, .form-row textarea {
    width: 100%; padding: 13px 16px; border-radius: 12px;
    border: 1.5px solid var(--glass-border-dark); background: rgba(210, 240, 242, 0.08);
    color: inherit; font-family: var(--font-body); font-size: 0.96rem; transition: border-color 0.2s, background 0.2s;
}
.form-row input::placeholder, .form-row textarea::placeholder { color: var(--on-dark-soft); }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { outline: none; border-color: var(--cyan); background: rgba(210, 240, 242, 0.14); }
.form-row select option { color: #10282d; }
.form-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-note { font-size: 0.78rem; color: var(--on-dark-soft); margin-top: 12px; line-height: 1.55; }
.form-ok { text-align: center; padding: 24px 6px; }
.form-ok .ok-i { width: 58px; height: 58px; margin: 0 auto 16px; border-radius: 50%; background: var(--cyan-tint); color: var(--cyan-bright); display: flex; align-items: center; justify-content: center; }

/* светлая форма (в светлой зоне) */
.form-card.on-light .form-row input, .form-card.on-light .form-row select, .form-card.on-light .form-row textarea { border-color: var(--line); background: rgba(255, 255, 255, 0.5); color: var(--ink); }
.form-card.on-light .form-row input::placeholder { color: var(--muted); }
.form-card.on-light .form-note { color: var(--muted); }

/* ---------- Хлебные крошки / page-hero ---------- */

.page-hero { position: relative; padding: calc(var(--nav-h) + 74px) 0 52px; overflow: hidden; }
/* атмосфера внутренних страниц: тёплый свет источника справа + прохладный минеральный
   отблеск снизу-слева — чтобы страница открывалась не плоской заливкой, а водой со светом */
.page-hero::before {
    content: '';
    position: absolute; inset: 0; z-index: 0; pointer-events: none;
    background:
        radial-gradient(60% 90% at 88% -6%, rgba(88, 224, 236, 0.28), transparent 58%),
        radial-gradient(70% 70% at 6% 118%, rgba(58, 164, 230, 0.24), transparent 60%);
}
.page-hero > .container { position: relative; z-index: 1; }
.page-hero .lead { max-width: 62ch; margin-top: 14px; }
.crumbs { display: flex; align-items: center; gap: 8px; font-size: 0.84rem; color: var(--on-dark-soft); margin-bottom: 20px; }
.crumbs a { text-decoration: none; color: var(--on-dark-soft); }
.crumbs a:hover { color: var(--amber); }
.crumbs span { color: var(--amber); }

/* ---------- Появление ---------- */

.reveal-on { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-on.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
    .reveal-on { opacity: 1; transform: none; transition: none; }
    .spring-dial, .mineral-fill { transition: none; }
}

/* ---------- Ховер карточек: подъём + наполнение паром ---------- */
/* На всех карточках пар поднимается снизу и заполняет карточку, как над
   горячей водой источника. Два слоя с разной скоростью дают живой клубящийся
   объём. Реализовано слоями фона (без доп. DOM) — работает и на .glass-dark. */
.feature, .spring-mini, .review, .check-card, .spring-card {
    background-image:
        radial-gradient(62% 72% at 50% 120%, rgba(216, 248, 251, 0.46), rgba(200, 243, 249, 0.14) 52%, transparent 78%),
        radial-gradient(50% 62% at 20% 126%, rgba(178, 240, 247, 0.34), transparent 68%),
        radial-gradient(54% 66% at 80% 124%, rgba(150, 232, 243, 0.30), transparent 70%);
    background-repeat: no-repeat;
    background-position: bottom center, bottom center, bottom center;
    background-size: 100% 0%, 100% 0%, 100% 0%;
    background-color: rgba(9, 28, 33, 0.30);
    transition:
        opacity 0.7s ease,
        transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1),
        background-size 0.95s cubic-bezier(0.22, 0.68, 0.24, 1),
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}
.feature:hover, .spring-mini:hover, .review:hover, .check-card:hover, .spring-card:hover {
    transform: translateY(-6px);
    border-color: rgba(150, 226, 232, 0.55);
    box-shadow: var(--shadow), 0 22px 52px -22px rgba(6, 24, 28, 0.72);
    background-size: 100% 165%, 100% 130%, 100% 142%;
}
@media (prefers-reduced-motion: reduce) {
    .feature, .spring-mini, .review, .check-card, .spring-card { transition: box-shadow 0.3s ease, border-color 0.3s ease; }
    .feature:hover, .spring-mini:hover, .review:hover, .check-card:hover, .spring-card:hover { transform: none; background-size: 100% 165%, 100% 130%, 100% 142%; }
}

/* ---------- Подвал ---------- */

.site-footer { position: relative; color: var(--on-dark-soft); padding: 66px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand strong { color: var(--on-dark); font-family: var(--font-display); font-size: 1.08rem; }
.footer-brand p { margin-top: 10px; max-width: 42ch; font-size: 0.92rem; }
.footer-grid h4 { color: var(--on-dark); font-size: 0.94rem; margin-bottom: 15px; }
.footer-grid ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-grid a { text-decoration: none; color: var(--on-dark-soft); font-size: 0.9rem; }
.footer-grid a:hover { color: var(--cyan-bright); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding-top: 24px; border-top: 1px solid var(--line-dark); font-size: 0.82rem; }
.footer-bottom a { color: var(--cyan-bright); text-decoration: none; }
.footer-disclaimer { margin-top: 14px; font-size: 0.76rem; color: rgba(166, 196, 199, 0.65); max-width: 92ch; }

/* ---------- Липкая полоса брони (моб. + скролл) ---------- */

.sticky-book {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
    display: none; align-items: center; justify-content: space-between; gap: 14px;
    padding: 12px 18px calc(12px + env(safe-area-inset-bottom));
    background: rgba(12, 34, 39, 0.6);
    -webkit-backdrop-filter: blur(18px) saturate(170%); backdrop-filter: blur(18px) saturate(170%);
    border-top: 1px solid var(--glass-border-dark);
    transform: translateY(110%); transition: transform 0.35s ease;
}
.sticky-book.show { transform: translateY(0); }
.sticky-book .sb-text { color: var(--on-dark); font-size: 0.86rem; line-height: 1.2; }
.sticky-book .sb-text b { font-family: var(--font-display); color: var(--amber); font-size: 1.1rem; display: block; }
.sticky-book .btn { flex: 0 0 auto; }

/* ---------- Адаптив ---------- */

@media (max-width: 960px) {
    .hero { min-height: 0; }
    .hero-grid { grid-template-columns: 1fr; gap: 18px; }
    .hero-console { padding: 30px 26px; }
    .split { grid-template-columns: 1fr; gap: 28px; }
    .springs-teaser { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 26px; }
}

@media (max-width: 900px) {
    .nav-links {
        position: fixed; top: var(--nav-h); left: 0; right: 0; flex-direction: column; align-items: stretch;
        gap: 4px; padding: 12px 18px 18px; display: none;
        background: rgba(238, 244, 244, 0.97); border-bottom: 1px solid var(--mist-line);
        -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
    }
    .nav-links.open { display: flex; }
    .nav-links a { padding: 13px 12px; border-radius: 10px; }
    .nav-links a.active { background: var(--copper-tint); }
    .nav-phone { display: none; }
    .nav-cta { display: none; }
    .burger { display: flex; }
    .sticky-book { display: flex; }
    .program-row { grid-template-columns: 1fr auto; }
    .program-row .pr-dur { display: none; }
}

@media (max-width: 760px) {
    /* шкала не поместится пятью метками — даём ей горизонтальный скролл + намёк краями */
    .thermo { padding: 24px 22px; }
    .thermo-track { min-width: 600px; }
    .thermo-mark .tm-name { font-size: 0.68rem; width: 80px; }
    .thermo-scroll {
        -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 93%, transparent 100%);
                mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 93%, transparent 100%);
    }
}

@media (max-width: 560px) {
    .container { padding: 0 18px; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { width: 100%; }
    .hero-trust { gap: 18px; }
    .hero-console { padding: 26px 20px; }
    .cta-inner { padding: 40px 22px; }
    .form-cols { grid-template-columns: 1fr; }
}
