
/* =============================================
QUESTPARTY — STYLES.CSS
Стимпанк детективная тема
============================================= */

/* --- ПЕРЕМЕННЫЕ --- */
:root {
--cream: #F5F0E8;
--cream-dark: #EDE7D9;
--copper: #B87333;
--copper-light: #D4944A;
--gold: #C9A84C;
--gold-light: #E2C36B;
--navy: #1A2744;
--navy-light: #243460;
--brown: #5C3A1E;
--text-dark: #1C1208;
--text-mid: #4A3728;
--text-light: #7A6A5A;
--white: #FFFFFF;
--shadow-sm: 0 2px 12px rgba(90,60,20,0.10);
--shadow-md: 0 8px 32px rgba(90,60,20,0.15);
--shadow-lg: 0 20px 60px rgba(90,60,20,0.20);
--radius-sm: 8px;
--radius-md: 16px;
--radius-lg: 24px;
--radius-xl: 40px;
--transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
--font-serif: 'Playfair Display', Georgia, serif;
--font-sans: 'Inter', sans-serif;
--font-type: 'Special Elite', monospace;
}

/* --- RESET & BASE --- */
*, *::before, *::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}

html {
scroll-behavior: smooth;
font-size: 16px;
}

body {
font-family: var(--font-sans);
background-color: var(--cream);
color: var(--text-dark);
overflow-x: hidden;
cursor: none;
}

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

a {
text-decoration: none;
color: inherit;
transition: color var(--transition);
}

button {
border: none;
background: none;
cursor: none;
font-family: var(--font-sans);
}

ul { list-style: none; }

.container {
max-width: 1240px;
margin: 0 auto;
padding: 0 24px;
}

section { padding: 100px 0; }

/* --- CUSTOM CURSOR --- */
.custom-cursor {
position: fixed;
top: 0; left: 0;
width: 10px; height: 10px;
background: var(--copper);
border-radius: 50%;
pointer-events: none;
z-index: 99999;
transform: translate(-50%, -50%);
transition: transform 0.1s, width 0.2s, height 0.2s, background 0.2s;
}

.cursor-follower {
position: fixed;
top: 0; left: 0;
width: 36px; height: 36px;
border: 2px solid var(--copper);
border-radius: 50%;
pointer-events: none;
z-index: 99998;
transform: translate(-50%, -50%);
transition: transform 0.15s ease, width 0.3s, height 0.3s, border-color 0.3s;
opacity: 0.6;
}

body:hover .custom-cursor { opacity: 1; }

.cursor-hover .custom-cursor {
width: 20px; height: 20px;
background: var(--gold);
}
.cursor-hover .cursor-follower {
width: 56px; height: 56px;
border-color: var(--gold);
opacity: 0.3;
}

/* --- PRELOADER --- */
.preloader {
position: fixed;
inset: 0;
background: var(--navy);
z-index: 100000;
display: flex;
align-items: center;
justify-content: center;
transition: opacity 0.6s, visibility 0.6s;
}

.preloader.hidden {
opacity: 0;
visibility: hidden;
pointer-events: none;
}

.preloader-inner {
text-align: center;
color: var(--cream);
}

.preloader-logo {
display: block;
width: min(400px, 86vw);
height: auto;
margin: 0 auto 18px;
filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.35));
animation: preloaderLogoIn 0.9s ease both;
}

@keyframes preloaderLogoIn {
from { opacity: 0; transform: scale(0.94); }
to { opacity: 1; transform: scale(1); }
}

.gear-loader {
display: flex;
gap: 8px;
justify-content: center;
align-items: center;
margin-bottom: 20px;
}

.gear {
font-size: 2.5rem;
display: inline-block;
color: var(--gold);
line-height: 1;
}

.gear-1 {
transform-origin: 58% 46%;
animation: preloaderSpinCW 6s linear infinite;
}

.gear-2 {
transform-origin: 44% 54%;
animation: preloaderSpinCCW 7s linear infinite;
font-size: 1.8rem;
margin-top: 6px;
}

.gear-3 {
transform-origin: 52% 40%;
animation: preloaderSpinCW 6.5s linear infinite;
}

@keyframes preloaderSpinCW  { to { transform: rotate(360deg); } }
@keyframes preloaderSpinCCW { to { transform: rotate(-360deg); } }

@keyframes spinCW  { to { transform: rotate(360deg); } }
@keyframes spinCCW { to { transform: rotate(-360deg); } }

.preloader-text {
font-family: var(--font-serif);
font-size: clamp(1.5rem, 4vw, 2rem);
font-weight: 700;
color: var(--gold);
letter-spacing: 0.02em;
text-align: center;
max-width: 18rem;
line-height: 1.2;
}

.preloader-sub {
font-size: 0.9rem;
color: var(--copper-light);
margin-top: 8px;
font-family: var(--font-type);
letter-spacing: 0.08em;
}

/* --- TYPOGRAPHY --- */
.section-badge {
display: inline-flex;
align-items: center;
gap: 6px;
background: var(--copper);
color: var(--white);
font-size: 0.78rem;
font-weight: 600;
letter-spacing: 0.12em;
text-transform: uppercase;
padding: 6px 16px;
border-radius: 20px;
margin-bottom: 20px;
font-family: var(--font-type);
}

.section-title {
font-family: var(--font-serif);
font-size: clamp(2rem, 4vw, 3.2rem);
font-weight: 700;
line-height: 1.15;
color: var(--text-dark);
margin-bottom: 20px;
}

.section-title .accent {
color: var(--copper);
font-style: italic;
}

.section-subtitle {
font-size: 1.05rem;
color: var(--text-light);
max-width: 600px;
margin: 0 auto;
line-height: 1.7;
}

.section-header {
text-align: center;
margin-bottom: 60px;
}

/* --- BUTTONS --- */
.btn-primary {
display: inline-flex;
align-items: center;
gap: 10px;
background: var(--copper);
color: var(--white);
font-size: 0.95rem;
font-weight: 600;
padding: 14px 28px;
border-radius: var(--radius-sm);
transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
position: relative;
overflow: hidden;
letter-spacing: 0.02em;
cursor: none;
}

.btn-primary:hover {
background: linear-gradient(135deg, var(--copper-light), var(--gold));
color: var(--white);
transform: translateY(-2px);
box-shadow: var(--shadow-md);
}

.btn-buy {
display: inline-flex;
align-items: center;
gap: 8px;
background: var(--copper);
color: var(--white);
font-size: 0.85rem;
font-weight: 600;
padding: 10px 18px;
border-radius: var(--radius-sm);
transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
cursor: none;
white-space: nowrap;
}

.btn-buy:hover {
background: linear-gradient(135deg, var(--copper-light), var(--gold));
color: var(--white);
transform: translateY(-2px);
box-shadow: var(--shadow-sm);
}

.btn-ghost {
display: inline-flex;
align-items: center;
gap: 10px;
background: rgba(255,255,255,0.12);
color: var(--white);
font-size: 0.95rem;
font-weight: 500;
padding: 14px 28px;
border-radius: var(--radius-sm);
border: 1px solid rgba(255,255,255,0.3);
backdrop-filter: blur(8px);
transition: all var(--transition);
cursor: none;
}

.btn-ghost:hover {
background: rgba(255,255,255,0.22);
transform: translateY(-2px);
}

.btn-outline {
display: inline-flex;
align-items: center;
gap: 10px;
background: transparent;
color: var(--copper);
font-size: 0.95rem;
font-weight: 600;
padding: 13px 28px;
border-radius: var(--radius-sm);
border: 2px solid var(--copper);
transition: all var(--transition);
cursor: none;
}

.btn-outline:hover {
background: var(--copper);
color: var(--white);
transform: translateY(-2px);
}

.btn-large { padding: 18px 40px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* =============================================
NAVBAR
============================================= */
.navbar {
--nav-row-top: 68px;
--logo-height: 162px;
--nav-row-bottom: calc(var(--logo-height) - var(--nav-row-top));
position: fixed;
top: 0; left: 0; right: 0;
z-index: 1000;
overflow: visible;
transition: --nav-row-top var(--transition), --logo-height var(--transition);
}

.navbar.scrolled {
--nav-row-top: 56px;
--logo-height: 138px;
}

.nav-top-bg {
position: absolute;
top: 0;
left: 0;
right: 0;
height: var(--nav-row-top);
z-index: 0;
pointer-events: none;
transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}

.navbar.scrolled .nav-top-bg {
background: rgba(245, 240, 232, 0.97);
backdrop-filter: blur(20px);
box-shadow: var(--shadow-sm);
}

.nav-grid {
position: relative;
z-index: 1;
max-width: 1240px;
margin: 0 auto;
padding: 0 24px;
display: grid;
grid-template-columns: 1fr auto 1fr;
grid-template-rows: var(--nav-row-top) var(--nav-row-bottom);
column-gap: 28px;
overflow: visible;
}

.nav-left {
grid-column: 1;
grid-row: 1;
display: flex;
justify-content: flex-end;
align-self: center;
min-width: 0;
position: relative;
z-index: 2;
}

.nav-right {
grid-column: 3;
grid-row: 1;
display: flex;
align-items: center;
justify-content: flex-start;
gap: 24px;
align-self: center;
min-width: 0;
position: relative;
z-index: 2;
}

.nav-bottom-slot {
grid-row: 2;
pointer-events: none;
}

.nav-bottom-slot--left { grid-column: 1; }
.nav-bottom-slot--right { grid-column: 3; }

.nav-logo {
display: flex;
align-items: center;
gap: 8px;
font-family: var(--font-serif);
font-size: 1.15rem;
font-weight: 700;
color: var(--white);
transition: color var(--transition), transform var(--transition);
flex-shrink: 0;
line-height: 1.15;
grid-column: 2;
grid-row: 1 / span 2;
justify-self: center;
align-self: center;
z-index: 1;
}

.nav-logo--image {
max-width: none;
line-height: 0;
}

.logo-img {
display: block;
height: var(--logo-height);
width: auto;
object-fit: contain;
filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.28));
transition: height var(--transition), transform var(--transition), filter var(--transition);
}

.navbar.scrolled .logo-img {
filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
}

.nav-logo--image:hover .logo-img {
transform: scale(1.03);
}

.logo-text {
display: block;
}

.navbar.scrolled .nav-logo { color: var(--text-dark); }

.logo-icon {
font-size: 1.3rem;
animation: spinCW 8s linear infinite;
color: var(--gold);
}

.logo-accent { color: var(--copper); }

.nav-links {
display: flex;
gap: 28px;
margin-left: 0;
list-style: none;
}

.nav-links--left {
justify-content: flex-end;
}

.nav-links--right {
justify-content: flex-start;
}

.nav-link {
font-size: 0.9rem;
font-weight: 500;
color: rgba(255,255,255,0.85);
position: relative;
transition: color var(--transition);
}

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

.nav-link::after {
content: '';
position: absolute;
bottom: -3px; left: 0;
width: 0; height: 2px;
background: var(--copper);
transition: width var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.nav-link:hover { color: var(--copper); }

.nav-actions {
display: flex;
align-items: center;
gap: 20px;
flex-shrink: 0;
}

.nav-phone {
font-size: 0.88rem;
font-weight: 600;
color: rgba(255,255,255,0.9);
font-family: var(--font-type);
letter-spacing: 0.02em;
}

.navbar.scrolled .nav-phone { color: var(--text-dark); }

.nav-btn { padding: 10px 18px; font-size: 0.84rem; white-space: nowrap; }

.burger {
display: none;
flex-direction: column;
gap: 5px;
padding: 4px;
grid-column: 3;
grid-row: 1;
justify-self: end;
align-self: center;
position: relative;
z-index: 3;
}

.burger span {
display: block;
width: 24px; height: 2px;
background: var(--white);
transition: all var(--transition);
border-radius: 2px;
}

.navbar.scrolled .burger span { background: var(--text-dark); }
.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* MOBILE MENU */
.mobile-menu {
position: fixed;
top: 0; right: -100%;
width: min(340px, 88vw);
height: 100vh;
height: 100dvh;
background: linear-gradient(180deg, rgba(26, 39, 68, 0.98), rgba(18, 27, 48, 0.98));
z-index: 999;
padding: 148px 24px 32px;
transition: right var(--transition);
display: flex;
flex-direction: column;
gap: 8px;
box-shadow: -18px 0 48px rgba(0, 0, 0, 0.28);
border-left: 1px solid rgba(201, 168, 76, 0.24);
}

.mobile-menu.open { right: 0; }

.mobile-menu-inner {
display: flex;
flex-direction: column;
gap: 24px;
height: 100%;
}

.mobile-menu ul {
display: flex;
flex-direction: column;
gap: 10px;
}

.mobile-menu a {
color: rgba(255, 255, 255, 0.9);
font-size: 1.05rem;
font-weight: 600;
letter-spacing: 0.02em;
padding: 14px 16px;
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: var(--radius-sm);
background: rgba(255, 255, 255, 0.06);
display: block;
}

.mobile-menu a:hover,
.mobile-menu a:focus-visible {
color: var(--gold-light);
border-color: rgba(201, 168, 76, 0.45);
background: rgba(201, 168, 76, 0.12);
}

.mobile-menu .btn-primary {
width: 100%;
justify-content: center;
margin-top: auto;
}
.mobile-menu-overlay {
position: fixed;
inset: 0;
background: rgba(0,0,0,0.5);
z-index: 998;
opacity: 0;
visibility: hidden;
transition: all var(--transition);
}
.mobile-menu-overlay.open {
opacity: 1;
visibility: visible;
}

/* =============================================
HERO SECTION
============================================= */
.hero {
min-height: 100vh;
position: relative;
display: block;
background: #0a0a0a;
overflow: hidden;
--hero-side-inset: 32px;
}

.hero-bg {
position: absolute;
inset: 0;
z-index: 0;
overflow: hidden;
cursor: default;
}

.hero-image,
.hero-bg-image {
position: absolute;
inset: 0;
z-index: 0;
width: 100%;
height: 100%;
max-width: none;
object-fit: cover;
object-position: center center;
}

.hero-overlay,
.hero-bg-gradient {
position: absolute;
inset: 0;
z-index: 1;
pointer-events: none;
background: linear-gradient(
105deg,
rgba(0,0,0,0.38) 0%,
rgba(0,0,0,0.08) 38%,
transparent 62%
);
}

.hero-gears {
position: absolute;
inset: 0;
pointer-events: none;
z-index: 1;
}

.hero-gear {
position: absolute;
color: rgba(201,168,76,0.08);
font-size: 12rem;
animation: spinCW 30s linear infinite;
user-select: none;
}

.hero-gear.hg1 { top: -60px; right: -40px; font-size: 20rem; }
.hero-gear.hg2 { bottom: -80px; left: 5%; font-size: 16rem; animation-direction: reverse; animation-duration: 40s; }
.hero-gear.hg3 { top: 40%; right: 20%; font-size: 8rem; animation-duration: 20s; }

.hero-particles {
position: absolute;
inset: 0;
z-index: 1;
pointer-events: none;
}

.hero-particles--clickable {
pointer-events: auto;
cursor: default;
}

.hero-dirigible-layer {
position: absolute;
inset: 0;
z-index: 1;
pointer-events: none;
overflow: hidden;
}

.hero-dirigible-wrap {
position: absolute;
left: 0;
top: 0;
width: 0;
height: 0;
will-change: transform;
--flight-sign: 1;
--flight-flip: 1;
}

.hero-dirigible {
display: block;
width: min(14vw, 140px);
max-width: none;
height: auto;
aspect-ratio: 569 / 316;
transform: translate(-50%, -50%);
opacity: 0;
pointer-events: none;
filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.32));
will-change: transform, opacity;
}

.hero-dirigible.is-flying {
opacity: 1;
}

.hero-dirigible-sparks {
position: absolute;
inset: 0;
pointer-events: none;
overflow: hidden;
}

.hero-dirigible-spark {
position: absolute;
border-radius: 50%;
pointer-events: none;
background: radial-gradient(circle, rgba(255, 228, 140, 0.95) 0%, rgba(201, 168, 76, 0.75) 55%, transparent 100%);
box-shadow: 0 0 6px rgba(245, 215, 110, 0.45);
animation: heroDirigibleSparkFall var(--spark-duration, 2.4s) linear forwards;
}

@keyframes heroDirigibleSparkFall {
0% {
opacity: 0;
transform: translate(0, 0) scale(1);
}
12% {
opacity: 0.85;
}
100% {
opacity: 0;
transform: translate(var(--spark-drift, 6px), var(--spark-fall, 110px)) scale(0.25);
}
}

@media (prefers-reduced-motion: reduce) {
.hero-dirigible.is-flying {
animation: none;
opacity: 0;
}

.hero-dirigible-spark {
animation: none;
opacity: 0;
}
}

.particle {
position: absolute;
width: 3px; height: 3px;
background: var(--gold);
border-radius: 50%;
opacity: 0;
animation: floatParticle 6s ease-in-out infinite;
}

@keyframes floatParticle {
0%   { opacity: 0; transform: translateY(0) scale(0.5); }
20%  { opacity: 0.7; }
80%  { opacity: 0.4; }
100% { opacity: 0; transform: translateY(-120px) scale(1.2); }
}

.hero-content {
position: absolute;
inset: 0;
z-index: 2;
width: 100%;
max-width: 1240px;
margin: 0 auto;
padding: 0 24px;
box-sizing: border-box;
left: 0;
right: 0;
pointer-events: none;
}

.hero-content > * {
pointer-events: auto;
}

.hero-text { color: var(--white); }

.hero-eyebrow {
display: inline-flex;
align-items: center;
gap: 8px;
font-family: var(--font-type);
font-size: 0.8rem;
letter-spacing: 0.18em;
text-transform: uppercase;
color: var(--gold-light);
margin-bottom: 24px;
padding: 8px 16px;
border: 1px solid rgba(201,168,76,0.3);
border-radius: 4px;
background: rgba(201,168,76,0.06);
}

.eyebrow-gear { animation: spinCW 4s linear infinite; display: inline-block; }

.hero-title {
position: absolute;
top: 50%;
right: 24px;
transform: translateY(-50%);
text-align: right;
margin: 0;
max-width: min(540px, 46vw);
font-family: var(--font-serif);
font-size: clamp(2.6rem, 4.2vw, 4.6rem);
font-weight: 800;
line-height: 1.08;
color: var(--white);
-webkit-text-fill-color: var(--white);
-webkit-text-stroke: 1px #000;
paint-order: stroke fill;
z-index: 2;
}

.hero-title-line {
display: block;
}

.hero-badge,
.hero-panel {
background: rgba(8, 12, 22, 0.42);
backdrop-filter: blur(14px);
-webkit-backdrop-filter: blur(14px);
border: 1px solid rgba(255, 255, 255, 0.12);
border-radius: var(--radius-lg);
}

.hero-badge {
position: absolute;
top: 100px;
left: calc(var(--hero-side-inset) - max(0px, (100vw - 1240px) / 2));
display: inline-flex;
align-items: center;
gap: 8px;
width: fit-content;
max-width: min(560px, calc(100vw - var(--hero-side-inset) * 2));
margin: 0;
padding: 10px 18px;
font-family: var(--font-type);
font-size: 0.8rem;
letter-spacing: 0.12em;
text-transform: uppercase;
color: var(--gold-light);
z-index: 2;
}

.badge-gear {
animation: spinCW 4s linear infinite;
display: inline-block;
}

.hero-panel-slot {
position: absolute;
bottom: 100px;
left: calc(var(--hero-side-inset) - max(0px, (100vw - 1240px) / 2));
max-width: min(560px, calc(100vw - var(--hero-side-inset) * 2));
width: 100%;
z-index: 2;
}

.hero-secret {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
z-index: 1;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 4px;
width: max-content;
max-width: calc(100% - 24px);
padding: 12px 16px;
text-align: center;
background: rgba(8, 12, 22, 0.94);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border: 1px dashed rgba(201, 168, 76, 0.5);
border-radius: var(--radius-md);
box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
visibility: hidden;
opacity: 0;
pointer-events: none;
transition: opacity 0.35s ease, visibility 0.35s ease, border-color 0.35s ease;
}

.hero-secret.is-revealed {
visibility: visible;
opacity: 1;
pointer-events: auto;
border-color: rgba(201, 168, 76, 0.85);
}

.hero-secret-label {
font-family: var(--font-type);
font-size: 0.62rem;
letter-spacing: 0.12em;
text-transform: uppercase;
color: rgba(255, 255, 255, 0.6);
}

.hero-secret-discount {
font-family: var(--font-serif);
font-size: 1.35rem;
font-weight: 700;
color: var(--gold-light);
line-height: 1;
}

.hero-secret-code {
font-family: var(--font-type);
font-size: 0.88rem;
font-weight: 700;
letter-spacing: 0.1em;
color: var(--navy);
background: var(--gold);
border: none;
border-radius: var(--radius-sm);
padding: 6px 12px;
cursor: pointer;
transition: transform var(--transition), background var(--transition);
}

.hero-secret-code:hover {
background: var(--gold-light);
transform: scale(1.04);
}

.hero-secret-hint {
font-size: 0.65rem;
color: rgba(255, 255, 255, 0.5);
line-height: 1.25;
max-width: 150px;
}

.hero-secret-code.is-copied {
background: #4caf7a;
color: var(--white);
}

.hero-panel {
position: relative;
bottom: auto;
left: auto;
max-width: none;
width: 100%;
margin: 0;
padding: 28px 32px;
z-index: 2;
cursor: grab;
touch-action: none;
user-select: none;
}

.hero-panel--dragging {
cursor: grabbing;
z-index: 20;
box-shadow: 0 20px 56px rgba(0, 0, 0, 0.55);
}

.hero-panel--positioned {
bottom: auto;
}

.hero-panel .hero-actions button {
cursor: none;
user-select: none;
}

.hero-panel .hero-stats {
padding-top: 0;
margin-bottom: 24px;
border-top: none;
gap: 28px;
}

.hero-panel .stat-number {
font-size: 1.65rem;
}

.hero-panel .stat-from {
font-size: 0.55em;
font-weight: 500;
color: rgba(201, 168, 76, 0.75);
letter-spacing: 0.02em;
vertical-align: baseline;
}

.hero-panel .stat-label {
max-width: 7rem;
line-height: 1.35;
text-align: center;
}

.hero-panel .hero-stat {
text-align: center;
}

.hero-panel .hero-subtitle {
margin-bottom: 28px;
max-width: none;
font-size: 1.05rem;
line-height: 1.75;
color: rgba(255, 255, 255, 0.88);
}

.hero-panel .hero-actions {
margin-bottom: 0;
}

.hero-subtitle {
font-size: 1.05rem;
line-height: 1.75;
color: rgba(255,255,255,0.75);
margin-bottom: 40px;
max-width: 480px;
}

.hero-title-line2 {
color: var(--gold);
font-style: italic;
display: block;
}

.hero-title-line3 {
display: block;
font-size: 0.7em;
color: rgba(255,255,255,0.7);
font-weight: 400;
font-style: normal;
margin-top: 4px;
}

.hero-desc {
font-size: 1.05rem;
line-height: 1.75;
color: rgba(255,255,255,0.75);
margin-bottom: 40px;
max-width: 480px;
}

.hero-actions {
display: flex;
gap: 16px;
flex-wrap: wrap;
margin-bottom: 48px;
}

.hero-stats {
display: flex;
gap: 40px;
padding-top: 32px;
border-top: 1px solid rgba(255,255,255,0.12);
}

.hero-stat-num,
.hero-stat .stat-number {
display: block;
font-family: var(--font-serif);
font-size: 2rem;
font-weight: 700;
color: var(--gold);
line-height: 1;
}

.hero-stat-label,
.hero-stat .stat-label {
font-size: 0.82rem;
color: rgba(255,255,255,0.55);
margin-top: 4px;
display: block;
}

.hero-stat-divider {
color: rgba(201, 168, 76, 0.45);
align-self: center;
font-size: 0.9rem;
}

/* HERO VISUAL */
.hero-visual {
position: relative;
display: flex;
align-items: center;
justify-content: center;
height: 560px;
}

.hero-box-wrap {
position: relative;
z-index: 2;
}

.hero-box-img {
width: 360px;
border-radius: var(--radius-md);
box-shadow: var(--shadow-lg);
border: 3px solid rgba(201,168,76,0.3);
}

.hero-badge-float {
position: absolute;
background: var(--white);
border-radius: var(--radius-sm);
padding: 12px 16px;
box-shadow: var(--shadow-md);
display: flex;
align-items: center;
gap: 10px;
font-size: 0.85rem;
font-weight: 600;
color: var(--text-dark);
animation: floatBadge 3s ease-in-out infinite;
white-space: nowrap;
}

.hero-badge-float .badge-icon { font-size: 1.4rem; }

.hbf-1 {
top: 40px; left: -60px;
animation-delay: 0s;
}
.hbf-2 {
bottom: 80px; left: -80px;
animation-delay: 1s;
}
.hbf-3 {
top: 120px; right: -60px;
animation-delay: 2s;
}

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

.hero-visual-gears {
position: absolute;
inset: 0;
pointer-events: none;
}

.hvg {
position: absolute;
color: rgba(201,168,76,0.15);
font-size: 5rem;
}

.hvg-1 { top: 0; left: 0; font-size: 8rem; animation: spinCW 12s linear infinite; }
.hvg-2 { bottom: 0; right: 0; font-size: 6rem; animation: spinCCW 10s linear infinite; }

.hero-scroll-hint {
position: absolute;
bottom: 40px;
left: 50%;
transform: translateX(-50%);
display: flex;
flex-direction: column;
align-items: center;
gap: 8px;
color: rgba(255,255,255,0.4);
font-size: 0.75rem;
letter-spacing: 0.12em;
font-family: var(--font-type);
z-index: 2;
animation: fadeInOut 2.5s ease-in-out infinite;
}

.scroll-mouse {
width: 22px; height: 34px;
border: 2px solid rgba(255,255,255,0.3);
border-radius: 11px;
position: relative;
display: flex;
justify-content: center;
padding-top: 5px;
}

.scroll-dot {
width: 4px; height: 6px;
background: var(--gold);
border-radius: 2px;
animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
0%, 100% { transform: translateY(0); opacity: 1; }
60%       { transform: translateY(8px); opacity: 0; }
}

@keyframes fadeInOut {
0%, 100% { opacity: 0.4; }
50%       { opacity: 1; }
}

/* =============================================
TRUST BAR
============================================= */
.trust-bar {
background: var(--navy);
padding: 24px 0;
border-top: 1px solid rgba(201,168,76,0.15);
border-bottom: 1px solid rgba(201,168,76,0.15);
}

.trust-bar-inner {
display: flex;
align-items: center;
justify-content: center;
gap: 0;
flex-wrap: wrap;
}

.trust-item {
display: flex;
align-items: center;
gap: 10px;
padding: 10px 32px;
color: rgba(255,255,255,0.75);
font-size: 0.88rem;
font-weight: 500;
border-right: 1px solid rgba(255,255,255,0.1);
}

.trust-item:last-child { border-right: none; }

.trust-icon {
font-size: 1.3rem;
color: var(--gold);
}

/* =============================================
SCENARIOS SECTION
============================================= */
.scenarios {
background: var(--cream);
padding: 100px 0;
}

.scenarios-filter,
.filter-tabs {
display: flex;
gap: 10px;
justify-content: center;
flex-wrap: wrap;
}

.scenario-filters {
margin-bottom: 48px;
}

.scenario-filters .filter-tabs {
margin-bottom: 28px;
}

.filter-advanced {
display: grid;
grid-template-columns: minmax(220px, 1.2fr) 1fr 1fr;
gap: 24px 32px;
align-items: start;
padding: 24px 28px;
background: var(--white);
border: 1.5px solid var(--cream-dark);
border-radius: var(--radius-md);
box-shadow: var(--shadow-sm);
}

.filter-group-label {
display: block;
font-size: 0.78rem;
font-weight: 600;
letter-spacing: 0.08em;
text-transform: uppercase;
color: var(--text-light);
margin-bottom: 12px;
}

.filter-hours {
display: flex;
flex-direction: column;
}

.filter-hours-value {
font-family: var(--font-serif);
font-size: 1.35rem;
font-weight: 700;
color: var(--copper);
text-align: center;
margin-top: 8px;
}

.filter-hours-range {
width: 100%;
height: 6px;
margin: 0;
accent-color: var(--copper);
cursor: none;
}

.filter-hours-ticks {
display: flex;
justify-content: space-between;
font-size: 0.78rem;
color: var(--text-light);
margin-bottom: 10px;
padding: 0 2px;
}

.filter-toggle-group {
display: flex;
flex-wrap: wrap;
gap: 8px;
}

.filter-toggle {
padding: 9px 18px;
border-radius: 20px;
font-size: 0.88rem;
font-weight: 500;
color: var(--text-mid);
border: 1.5px solid var(--cream-dark);
background: var(--cream);
transition: all var(--transition);
cursor: none;
}

.filter-toggle.active {
background: var(--copper);
color: var(--white);
border-color: var(--copper);
}

@media (hover: hover) {
.filter-toggle:hover {
background: var(--copper);
color: var(--white);
border-color: var(--copper);
}
}

.filter-actions {
grid-column: 1 / -1;
display: flex;
justify-content: flex-end;
padding-top: 4px;
}

.filter-reset {
padding: 9px 20px;
border-radius: 20px;
font-size: 0.88rem;
font-weight: 500;
color: var(--text-mid);
border: 1.5px solid var(--cream-dark);
background: var(--white);
transition: all var(--transition);
cursor: none;
}

.filter-reset:hover:not(.is-idle) {
color: var(--copper);
border-color: var(--copper);
}

.filter-reset.is-idle {
opacity: 0.45;
cursor: default;
}

.scenarios-empty {
text-align: center;
color: var(--text-light);
font-size: 0.95rem;
margin: -12px 0 28px;
}

.filter-tabs {
margin-bottom: 0;
}

.filter-btn {
padding: 9px 22px;
border-radius: 20px;
font-size: 0.88rem;
font-weight: 500;
color: var(--text-mid);
border: 1.5px solid var(--cream-dark);
background: var(--white);
transition: all var(--transition);
cursor: none;
}

.filter-btn.active,
.filter-btn:hover {
background: var(--copper);
color: var(--white);
border-color: var(--copper);
}

.scenarios-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 28px;
}

.scenario-card {
background: var(--white);
border-radius: var(--radius-md);
overflow: hidden;
box-shadow: var(--shadow-sm);
transition: all var(--transition);
position: relative;
cursor: none;
}

.scenario-card:hover {
transform: translateY(-8px);
box-shadow: var(--shadow-lg);
}

.scenario-card--locked {
pointer-events: auto;
}

.scenario-card--locked:hover {
transform: none;
}

.card-lock-overlay {
position: absolute;
inset: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 8px;
background: rgba(26, 21, 16, 0.72);
color: var(--white);
font-weight: 600;
font-size: 0.95rem;
z-index: 3;
}

.card-lock-icon {
font-size: 1.75rem;
}

.badge-beta {
background: #5c4d3a;
color: #f5e6c8;
}

.btn-buy--disabled {
opacity: 0.55;
cursor: not-allowed;
}

.card-image-wrap {
position: relative;
height: 220px;
overflow: hidden;
}

.card-image {
width: 100%; height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}

.scenario-card:hover .card-image {
transform: scale(1.07);
}

.card-badges {
position: absolute;
top: 12px; left: 12px;
display: flex;
gap: 6px;
flex-wrap: wrap;
}

.card-badge {
padding: 4px 10px;
border-radius: 12px;
font-size: 0.72rem;
font-weight: 600;
letter-spacing: 0.06em;
text-transform: uppercase;
}

.badge-new {
background: var(--copper);
color: var(--white);
}

.badge-hit {
background: var(--gold);
color: var(--navy);
}

.badge-corp {
background: var(--navy);
color: var(--white);
}

.card-difficulty {
position: absolute;
bottom: 12px; right: 12px;
background: rgba(26,39,68,0.85);
color: var(--white);
padding: 4px 10px;
border-radius: 12px;
font-size: 0.72rem;
font-weight: 600;
backdrop-filter: blur(8px);
}

.card-body {
padding: 24px;
}

.card-meta {
display: flex;
gap: 16px;
margin-bottom: 14px;
flex-wrap: wrap;
}

.card-meta-item {
display: flex;
align-items: center;
gap: 5px;
font-size: 0.8rem;
color: var(--text-light);
}

.card-meta-icon { font-size: 0.9rem; }

.card-style {
display: inline-flex;
align-items: center;
width: fit-content;
max-width: 100%;
margin-bottom: 12px;
padding: 4px 10px;
border-radius: 999px;
background: rgba(184, 115, 51, 0.12);
color: var(--copper);
font-size: 0.74rem;
font-weight: 700;
letter-spacing: 0.04em;
text-transform: uppercase;
}

.card-title {
font-family: var(--font-serif);
font-size: 1.2rem;
font-weight: 700;
color: var(--text-dark);
margin-bottom: 10px;
line-height: 1.3;
}

.card-desc {
font-size: 0.88rem;
color: var(--text-light);
line-height: 1.65;
margin-bottom: 20px;
}

.card-footer {
display: flex;
align-items: center;
justify-content: space-between;
padding-top: 20px;
border-top: 1px solid var(--cream-dark);
}

.card-price-block {}

.card-price-old {
font-size: 0.82rem;
color: var(--text-light);
text-decoration: line-through;
display: block;
line-height: 1;
margin-bottom: 2px;
}

.card-price {
font-family: var(--font-serif);
font-size: 1.5rem;
font-weight: 700;
color: var(--copper);
line-height: 1;
}

.card-btn {
padding: 10px 20px;
font-size: 0.85rem;
}

.card-btn-detail {
background: transparent;
color: var(--text-mid);
border: 1.5px solid var(--cream-dark);
border-radius: var(--radius-sm);
padding: 9px 16px;
font-size: 0.82rem;
font-weight: 500;
transition: all var(--transition);
cursor: none;
}

.card-btn-detail:hover {
border-color: var(--copper);
color: var(--copper);
}

/* =============================================
HOW IT WORKS
============================================= */
.how-it-works {
background: var(--navy);
padding: 100px 0;
position: relative;
overflow: hidden;
}

.how-it-works::before {
content: '';
position: absolute;
inset: 0;
z-index: 0;
background: url('../images/how-it-works-bg.jpg') center / cover no-repeat;
pointer-events: none;
}

.how-it-works::after {
content: '';
position: absolute;
inset: 0;
z-index: 0;
background: linear-gradient(
180deg,
rgba(8, 12, 22, 0.78) 0%,
rgba(8, 12, 22, 0.58) 45%,
rgba(8, 12, 22, 0.78) 100%
);
pointer-events: none;
}

.how-it-works .container {
position: relative;
z-index: 1;
}

.how-it-works .section-badge { background: rgba(201,168,76,0.15); color: var(--gold); }
.how-it-works .section-title { color: var(--white); }
.how-it-works .section-subtitle { color: rgba(255,255,255,0.55); }

.how-it-works .section-header {
margin-bottom: 20px;
}

.how-it-works-intro {
max-width: 760px;
margin: 0 auto 48px;
font-size: 0.88rem;
line-height: 1.8;
color: rgba(255, 255, 255, 0.62);
text-align: center;
}

.how-bg-gears {
position: absolute;
inset: 0;
pointer-events: none;
overflow: hidden;
}

.how-gear {
position: absolute;
color: rgba(255,255,255,0.03);
font-size: 20rem;
animation: spinCW 60s linear infinite;
user-select: none;
}

.how-gear.hg-a { top: -100px; right: -100px; }
.how-gear.hg-b { bottom: -120px; left: -80px; animation-direction: reverse; font-size: 16rem; }

.steps-grid {
display: flex;
flex-direction: column;
align-items: center;
gap: 20px;
margin-bottom: 48px;
}

.steps-row {
position: relative;
z-index: 0;
display: flex;
align-items: center;
justify-content: center;
flex-wrap: nowrap;
}

.steps-row--center {
justify-content: center;
}

.step {
width: 280px;
height: 280px;
flex-shrink: 0;
box-sizing: border-box;
background: rgba(26, 39, 68, 0.88);
border: 1px solid rgba(255,255,255,0.1);
border-radius: var(--radius-md);
padding: 22px 20px;
position: relative;
z-index: 2;
overflow: hidden;
transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
}

.step:hover {
background: rgba(30, 46, 78, 0.96);
border-color: rgba(201, 168, 76, 0.5);
transform: translateY(-8px) scale(1.02);
box-shadow:
0 18px 36px rgba(0, 0, 0, 0.38),
0 0 28px rgba(201, 168, 76, 0.18),
inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.step:hover .step-gear {
color: rgba(201, 168, 76, 0.14);
}

.step-number {
position: absolute;
top: 14px;
right: 16px;
font-family: var(--font-serif);
font-size: 2.5rem;
font-weight: 700;
color: rgba(255,255,255,0.07);
line-height: 1;
user-select: none;
}

.step-content h3 {
font-family: var(--font-serif);
font-size: 1.1rem;
color: var(--white);
margin-bottom: 10px;
line-height: 1.25;
}

.step-content p {
font-size: 0.85rem;
color: rgba(255,255,255,0.62);
line-height: 1.5;
margin: 0;
display: -webkit-box;
-webkit-line-clamp: 6;
-webkit-box-orient: vertical;
overflow: hidden;
}

.step-gear {
position: absolute;
bottom: -24px;
right: -24px;
font-size: 5.5rem;
color: rgba(201,168,76,0.08);
animation: spinCW 15s linear infinite;
pointer-events: none;
user-select: none;
transition: color var(--transition);
}

.step-separator {
position: relative;
z-index: 1;
width: 56px;
height: 78px;
flex-shrink: 0;
margin: 0;
pointer-events: none;
overflow: visible;
}

.step-separator-gear {
position: absolute;
color: rgba(201, 168, 76, 0.42);
line-height: 1;
user-select: none;
filter: drop-shadow(0 0 10px rgba(201, 168, 76, 0.12));
}

.step-separator-gear-inner {
display: block;
animation: spinCW linear infinite;
}

.step-separator-gear--lg {
left: 46%;
top: 62%;
transform: translate(-50%, -50%);
font-size: 3.6rem;
z-index: 3;
}

.step-separator-gear--lg .step-separator-gear-inner {
animation-duration: 10s;
}

.step-separator-gear--md {
left: 82%;
top: 10%;
transform: translate(-50%, 0);
font-size: 2rem;
z-index: 2;
opacity: 0.65;
}

.step-separator-gear--md .step-separator-gear-inner {
animation-duration: 7s;
}

.step-separator-gear--sm {
left: 14%;
top: 22%;
transform: translate(-50%, 0);
font-size: 1.2rem;
z-index: 1;
opacity: 0.5;
}

.step-separator-gear--sm .step-separator-gear-inner {
animation-duration: 5s;
}

.how-it-works-cta { text-align: center; margin-top: 8px; }

/* =============================================
PROMO BANNER
============================================= */
.promo-banner {
background: linear-gradient(135deg, var(--brown) 0%, var(--copper) 50%, var(--gold) 100%);
padding: 80px 0;
position: relative;
overflow: hidden;
}

.promo-bg-gears {
position: absolute;
inset: 0;
pointer-events: none;
overflow: visible;
}

.promo-gear {
position: absolute;
color: rgba(255,255,255,0.06);
font-size: 16rem;
line-height: 1;
user-select: none;
border: none;
background: none;
padding: 0;
}

.promo-gear-inner {
display: block;
animation: spinCW 40s linear infinite;
}

.promo-gear--secret {
pointer-events: auto;
cursor: pointer;
color: rgba(255,255,255,0.08);
z-index: 2;
}

.promo-gear--secret .promo-gear-inner {
animation: spinCCW 40s linear infinite;
}

.promo-gear--secret.is-active {
color: rgba(255,255,255,0.14);
}

.promo-gear-reveal {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
display: flex;
flex-direction: column;
align-items: center;
gap: 4px;
min-width: 160px;
padding: 14px 16px;
background: rgba(8, 12, 22, 0.92);
border: 1px solid rgba(201, 168, 76, 0.55);
border-radius: var(--radius-md);
box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
z-index: 5;
pointer-events: auto;
}

.promo-gear-reveal[hidden] {
display: none !important;
}

.promo-gear-reveal-label {
font-family: var(--font-type);
font-size: 0.65rem;
letter-spacing: 0.12em;
text-transform: uppercase;
color: rgba(255, 255, 255, 0.65);
}

.promo-gear-reveal-discount {
font-family: var(--font-serif);
font-size: 1.5rem;
font-weight: 700;
color: var(--gold-light);
line-height: 1;
}

.promo-gear-reveal-code {
font-family: var(--font-type);
font-size: 1rem;
font-weight: 700;
letter-spacing: 0.1em;
color: var(--gold);
cursor: pointer;
padding: 4px 8px;
border-radius: var(--radius-sm);
transition: background var(--transition);
}

.promo-gear-reveal-code:hover {
background: rgba(201, 168, 76, 0.15);
}

.promo-gear-reveal-hint {
font-size: 0.68rem;
color: rgba(255, 255, 255, 0.5);
text-align: center;
}

.pg1 { top: -80px; left: -60px; }
.pg2 { bottom: -80px; right: -60px; font-size: 20rem; }
.pg3 { top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 30rem; opacity: 0.03; }
.pg3 .promo-gear-inner { transform: none; }

.promo-inner {
display: grid;
grid-template-columns: 1fr;
gap: 0;
align-items: center;
position: relative;
z-index: 1;
max-width: 560px;
}

.promo-eyebrow {
font-family: var(--font-type);
font-size: 0.82rem;
letter-spacing: 0.14em;
text-transform: uppercase;
color: rgba(255,255,255,0.7);
margin-bottom: 16px;
}

.promo-title {
font-family: var(--font-serif);
font-size: clamp(1.8rem, 3.5vw, 2.8rem);
font-weight: 700;
color: var(--white);
margin-bottom: 16px;
line-height: 1.2;
}

.promo-title span { color: var(--navy); }

.promo-desc {
font-size: 1rem;
color: rgba(255,255,255,0.8);
line-height: 1.7;
margin-bottom: 28px;
max-width: 440px;
}

.promo-countdown {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 32px;
}

.countdown-item {
text-align: center;
background: rgba(0,0,0,0.25);
border-radius: var(--radius-sm);
padding: 12px 20px;
min-width: 72px;
}

.countdown-num {
display: block;
font-family: var(--font-type);
font-size: 2rem;
color: var(--white);
line-height: 1;
font-weight: 700;
}

.countdown-label {
font-size: 0.72rem;
color: rgba(255,255,255,0.6);
text-transform: uppercase;
letter-spacing: 0.1em;
display: block;
margin-top: 4px;
}

.countdown-sep {
font-size: 2rem;
color: rgba(255,255,255,0.5);
font-weight: 700;
line-height: 1;
margin-bottom: 16px;
}

.btn-promo {
background: var(--navy);
color: var(--white);
font-size: 1rem;
padding: 16px 36px;
}

.btn-promo:hover { background: var(--navy-light); }

.promo-expired-note {
font-size: 0.95rem;
color: rgba(255, 255, 255, 0.85);
margin: -12px 0 20px;
max-width: 440px;
}

.promo-secrets-progress {
display: flex;
flex-direction: column;
gap: 12px;
margin-top: 4px;
}

.promo-secret-item {
display: flex;
align-items: center;
gap: 14px;
padding: 14px 16px;
background: rgba(0, 0, 0, 0.22);
border: 1px solid rgba(255, 255, 255, 0.12);
border-radius: var(--radius-sm);
transition: border-color var(--transition), background var(--transition);
}

.promo-secret-item.is-found {
border-color: rgba(201, 168, 76, 0.5);
background: rgba(0, 0, 0, 0.32);
}

.promo-secret-icon {
flex-shrink: 0;
width: 36px;
height: 36px;
display: flex;
align-items: center;
justify-content: center;
font-family: var(--font-serif);
font-size: 1.1rem;
font-weight: 700;
color: var(--navy);
background: rgba(255, 255, 255, 0.85);
border-radius: 50%;
}

.promo-secret-item.is-found .promo-secret-icon {
background: var(--gold);
color: var(--navy);
font-size: 1rem;
}

.promo-secret-item div {
display: flex;
flex-direction: column;
gap: 2px;
}

.promo-secret-item strong {
font-family: var(--font-serif);
font-size: 0.95rem;
color: var(--white);
}

.promo-secret-item span {
font-size: 0.82rem;
color: rgba(255, 255, 255, 0.65);
}

.promo-secret-item.is-found span:last-child {
color: var(--gold-light);
}

.promo-hunt-card {
background: rgba(0, 0, 0, 0.25);
border: 1px solid rgba(255, 255, 255, 0.15);
border-radius: var(--radius-lg);
padding: 28px 32px;
max-width: 420px;
margin-left: auto;
}

.promo-hunt-card-label {
display: block;
font-family: var(--font-type);
font-size: 0.75rem;
letter-spacing: 0.14em;
text-transform: uppercase;
color: rgba(255, 255, 255, 0.6);
margin-bottom: 12px;
}

.promo-hunt-card p {
font-size: 1rem;
line-height: 1.7;
color: rgba(255, 255, 255, 0.88);
margin-bottom: 20px;
}

.promo-hunt-card p em {
color: var(--gold-light);
font-style: normal;
}

.promo-hunt-found {
font-size: 0.9rem;
color: rgba(255, 255, 255, 0.7);
}

.promo-hunt-found strong {
color: var(--gold-light);
font-size: 1.1rem;
}

.promo-banner.is-expired .promo-countdown {
opacity: 0.45;
}

.promo-banner.is-expired .promo-gear--secret {
pointer-events: none;
cursor: default;
}

.promo-boxes {
display: grid;
grid-template-columns: 1fr auto 1fr auto 1fr;
align-items: center;
gap: 12px;
}

.promo-box {
background: rgba(255,255,255,0.15);
border: 1px solid rgba(255,255,255,0.25);
border-radius: var(--radius-sm);
padding: 20px;
text-align: center;
backdrop-filter: blur(8px);
}

.promo-box.box-result {
background: var(--navy);
border-color: var(--navy);
}

.box-label {
display: block;
font-size: 0.78rem;
color: rgba(255,255,255,0.7);
margin-bottom: 8px;
font-family: var(--font-type);
letter-spacing: 0.06em;
}

.box-price {
display: block;
font-family: var(--font-serif);
font-size: 1.4rem;
font-weight: 700;
color: var(--white);
line-height: 1;
}

.promo-plus, .promo-equals {
font-size: 1.8rem;
color: rgba(255,255,255,0.6);
font-weight: 700;
text-align: center;
}

.old-price-s {
text-decoration: line-through;
font-size: 0.9rem;
color: rgba(255,255,255,0.5) !important;
margin-bottom: 4px;
}

.new-price-s {
color: var(--gold-light) !important;
font-size: 1.6rem;
}

/* =============================================
ABOUT SECTION
============================================= */
.about { background: var(--cream-dark); padding: 100px 0; }

.about-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 80px;
align-items: center;
}

.about-image-wrap {
position: relative;
}

.about-image {
width: 100%;
border-radius: var(--radius-lg);
box-shadow: var(--shadow-lg);
}

.about-image-badge {
position: absolute;
top: -20px; right: -20px;
background: var(--copper);
color: var(--white);
width: auto;
min-width: 96px;
max-width: 118px;
min-height: 96px;
padding: 14px 12px;
border-radius: 50%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
box-shadow: var(--shadow-md);
}

.badge-text--phrase {
font-family: var(--font-serif);
font-size: 0.72rem;
font-weight: 700;
text-align: center;
line-height: 1.35;
}

.badge-num {
font-family: var(--font-serif);
font-size: 1.8rem;
font-weight: 700;
line-height: 1;
}

.badge-text {
font-size: 0.65rem;
text-align: center;
line-height: 1.3;
opacity: 0.9;
}

.about-image-card {
position: absolute;
bottom: 24px; left: -24px;
background: var(--white);
border-radius: var(--radius-sm);
padding: 14px 18px;
box-shadow: var(--shadow-md);
display: flex;
align-items: center;
gap: 10px;
}

.about-card-icon { font-size: 1.6rem; }

.about-card-text {
font-size: 0.82rem;
font-weight: 600;
color: var(--text-dark);
line-height: 1.4;
}

.about-lead {
font-size: 1.1rem;
color: var(--text-mid);
line-height: 1.7;
font-weight: 600;
margin-bottom: 16px;
}

.about-text {
font-size: 0.95rem;
color: var(--text-light);
line-height: 1.75;
font-weight: 400;
margin-bottom: 32px;
}

.about-values {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
margin-bottom: 36px;
}

.about-value {
display: flex;
gap: 12px;
align-items: flex-start;
}

.value-icon {
font-size: 1.4rem;
flex-shrink: 0;
margin-top: 2px;
}

.about-value strong {
display: block;
font-size: 0.9rem;
color: var(--text-dark);
margin-bottom: 3px;
}

.about-value p {
font-size: 0.82rem;
color: var(--text-light);
line-height: 1.5;
}

/* =============================================
TEAM SECTION
============================================= */
.team { background: var(--cream); padding: 100px 0; }

.team-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 28px;
}

.team-card {
background: var(--white);
border-radius: var(--radius-md);
padding: 28px 20px;
text-align: center;
box-shadow: var(--shadow-sm);
transition: all var(--transition);
position: relative;
}

.team-card:hover {
transform: translateY(-6px);
box-shadow: var(--shadow-md);
}

.team-photo-wrap {
position: relative;
display: inline-block;
margin-bottom: 20px;
}

.team-photo {
width: 100px; height: 100px;
border-radius: 50%;
object-fit: cover;
border: 3px solid var(--copper);
margin: 0 auto;
}

.team-gear-deco {
position: absolute;
bottom: -4px; right: -4px;
background: var(--copper);
color: var(--white);
width: 28px; height: 28px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 0.9rem;
animation: spinCW 6s linear infinite;
border: 2px solid var(--white);
}

.team-name {
font-family: var(--font-serif);
font-size: 1.05rem;
color: var(--text-dark);
margin-bottom: 6px;
}

.team-role {
font-size: 0.8rem;
color: var(--copper);
font-weight: 600;
letter-spacing: 0.06em;
text-transform: uppercase;
font-family: var(--font-type);
display: block;
margin-bottom: 12px;
}

.team-bio {
font-size: 0.85rem;
color: var(--text-light);
line-height: 1.6;
}

/* =============================================
REVIEWS
============================================= */
.reviews { background: var(--cream-dark); padding: 100px 0; position: relative; overflow: hidden; }

.section-title--nowrap {
white-space: nowrap;
}

.reviews-telegram-link {
color: var(--copper);
font-weight: 600;
text-decoration: underline;
text-underline-offset: 3px;
transition: color var(--transition);
}

.reviews-telegram-link:hover {
color: var(--copper-light);
}
.reviews::before { content: ''; position: absolute; inset: 0; background: url('../images/reviews-bg.jpg') center/cover no-repeat; opacity: 0.08; pointer-events: none; }

.reviews-slider-wrap { position: relative; overflow: hidden; width: 100%; }

.reviews-track {
display: flex;
gap: 24px;
transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
will-change: transform;
}

.review-card {
background: var(--white);
border-radius: var(--radius-md);
padding: 32px;
flex: 0 0 var(--review-card-width, 380px);
width: var(--review-card-width, 380px);
max-width: var(--review-card-width, 380px);
min-width: 0;
box-sizing: border-box;
box-shadow: var(--shadow-sm);
transition: all var(--transition);
border: 1px solid transparent;
overflow: hidden;
}

.review-card:hover {
box-shadow: var(--shadow-md);
border-color: var(--copper);
transform: translateY(-4px);
}

.review-top {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 18px;
flex-wrap: wrap;
}

.review-avatar {
width: 46px; height: 46px;
border-radius: 50%;
background: linear-gradient(135deg, var(--copper), var(--gold));
color: var(--white);
font-weight: 700;
font-size: 0.85rem;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}

.review-meta {
flex: 1;
min-width: 0;
}

.review-meta strong {
display: block;
font-size: 0.92rem;
color: var(--text-dark);
margin-bottom: 3px;
}

.review-stars {
color: var(--gold);
font-size: 0.82rem;
letter-spacing: 2px;
}

.review-scenario-tag {
font-size: 0.72rem;
font-weight: 600;
background: var(--cream-dark);
color: var(--copper);
padding: 4px 10px;
border-radius: 12px;
font-family: var(--font-type);
letter-spacing: 0.04em;
white-space: nowrap;
}

.review-text {
font-size: 0.9rem;
color: var(--text-mid);
line-height: 1.72;
margin-bottom: 18px;
font-style: italic;
white-space: normal;
overflow-wrap: anywhere;
word-break: break-word;
min-width: 0;
}

.review-date {
font-size: 0.78rem;
color: var(--text-light);
font-family: var(--font-type);
letter-spacing: 0.06em;
}

.reviews-controls {
display: flex;
align-items: center;
justify-content: center;
gap: 20px;
margin-top: 36px;
}

.reviews-prev,
.reviews-next {
width: 44px; height: 44px;
border-radius: 50%;
background: var(--white);
border: 2px solid var(--cream-dark);
font-size: 1.1rem;
color: var(--text-mid);
display: flex;
align-items: center;
justify-content: center;
transition: all var(--transition);
cursor: none;
box-shadow: var(--shadow-sm);
}

.reviews-prev:hover,
.reviews-next:hover {
background: var(--copper);
border-color: var(--copper);
color: var(--white);
transform: scale(1.08);
}

.reviews-dots {
display: flex;
gap: 8px;
align-items: center;
}

.reviews-dot {
width: 8px; height: 8px;
border-radius: 50%;
background: var(--cream-dark);
border: 2px solid var(--copper);
transition: all var(--transition);
cursor: none;
}

.reviews-dot.active {
background: var(--copper);
width: 24px;
border-radius: 4px;
}

.reviews-summary {
display: flex;
justify-content: center;
gap: 80px;
margin-top: 60px;
padding-top: 40px;
border-top: 1px solid var(--cream-dark);
}

.summary-item {
text-align: center;
}

.summary-big {
display: block;
font-family: var(--font-serif);
font-size: 3rem;
font-weight: 700;
color: var(--copper);
line-height: 1;
margin-bottom: 6px;
}

.summary-stars {
color: var(--gold);
font-size: 1rem;
letter-spacing: 3px;
margin-bottom: 6px;
}

.summary-sub {
font-size: 0.85rem;
color: var(--text-light);
}

/* =============================================
FAQ SECTION
============================================= */
.faq { background: var(--cream); padding: 100px 0; }

.faq-grid {
display: grid;
grid-template-columns: 1fr 1.6fr;
gap: 80px;
align-items: start;
}

.faq-left {
position: sticky;
top: 100px;
}

.faq-lead {
font-size: 1rem;
color: var(--text-light);
line-height: 1.7;
margin-bottom: 28px;
margin-top: -8px;
}

.faq-gear-deco {
font-size: 8rem;
color: var(--copper);
opacity: 0.07;
margin-top: 32px;
animation: spinCW 20s linear infinite;
display: inline-block;
}

.faq-list {
display: flex;
flex-direction: column;
gap: 12px;
}

.faq-item {
background: var(--white);
border-radius: var(--radius-sm);
border: 1.5px solid var(--cream-dark);
overflow: hidden;
transition: border-color var(--transition);
}

.faq-item.open {
border-color: var(--copper);
}

.faq-question {
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
padding: 20px 24px;
font-size: 0.95rem;
font-weight: 600;
color: var(--text-dark);
text-align: left;
cursor: none;
background: transparent;
transition: color var(--transition);
gap: 16px;
}

.faq-question:hover { color: var(--copper); }

.faq-icon {
font-size: 1.4rem;
color: var(--copper);
font-weight: 300;
flex-shrink: 0;
transition: transform var(--transition);
line-height: 1;
}

.faq-item.open .faq-icon {
transform: rotate(45deg);
}

.faq-answer {
max-height: 0;
overflow: hidden;
transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
padding 0.3s ease;
padding: 0 24px;
}

.faq-item.open .faq-answer {
max-height: 300px;
padding: 0 24px 20px;
}

.faq-answer p {
font-size: 0.9rem;
color: var(--text-light);
line-height: 1.75;
}

/* =============================================
CTA SECTION
============================================= */
.cta-section {
background: var(--navy);
padding: 100px 0;
position: relative;
overflow: hidden;
}

.cta-inner {
text-align: center;
position: relative;
z-index: 1;
max-width: 700px;
margin: 0 auto;
}

.cta-gears {
position: absolute;
inset: 0;
pointer-events: none;
z-index: 0;
}

.cta-gear {
position: absolute;
color: rgba(201,168,76,0.06);
animation: spinCW 30s linear infinite;
user-select: none;
}

.cg1 { font-size: 18rem; top: -80px; left: -80px; }
.cg2 { font-size: 14rem; bottom: -60px; right: -60px; animation-direction: reverse; }

.cta-section .section-badge {
background: rgba(201,168,76,0.12);
color: var(--gold);
}

.cta-title {
font-family: var(--font-serif);
font-size: clamp(2rem, 4vw, 3.4rem);
font-weight: 700;
color: var(--white);
line-height: 1.15;
margin-bottom: 20px;
}

.cta-title .accent { color: var(--gold); font-style: italic; }

.cta-subtitle {
font-size: 1.05rem;
color: rgba(255,255,255,0.6);
line-height: 1.7;
margin-bottom: 40px;
max-width: 500px;
margin-left: auto;
margin-right: auto;
}

.cta-actions {
display: flex;
gap: 16px;
justify-content: center;
flex-wrap: wrap;
margin-bottom: 40px;
}

.cta-section .btn-outline {
color: var(--white);
border-color: rgba(255,255,255,0.3);
}

.cta-section .btn-outline:hover {
background: rgba(255,255,255,0.1);
border-color: var(--white);
color: var(--white);
}

.cta-contacts {
display: flex;
gap: 32px;
justify-content: center;
flex-wrap: wrap;
}

.contact-link {
display: flex;
align-items: center;
gap: 8px;
font-size: 0.9rem;
color: rgba(255,255,255,0.6);
transition: color var(--transition);
}

.contact-link:hover { color: var(--gold); }
.contact-icon { font-size: 1rem; }

/* =============================================
FOOTER
============================================= */
.footer {
background: #111827;
padding: 80px 0 0;
color: rgba(255,255,255,0.7);
}

.footer-grid {
display: grid;
grid-template-columns: 1.8fr 1fr 1fr 1fr;
gap: 48px;
padding-bottom: 60px;
border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .nav-logo {
color: var(--white);
margin-bottom: 16px;
display: inline-flex;
}

.footer-tagline {
font-size: 0.88rem;
line-height: 1.7;
color: rgba(255,255,255,0.5);
margin-bottom: 24px;
max-width: 280px;
}

.footer-socials {
display: flex;
gap: 10px;
}

.social-link {
width: 38px; height: 38px;
border-radius: 50%;
background: rgba(255,255,255,0.07);
border: 1px solid rgba(255,255,255,0.1);
display: flex;
align-items: center;
justify-content: center;
font-size: 0.9rem;
color: rgba(255,255,255,0.7);
transition: all var(--transition);
}

.social-link:hover {
background: var(--copper);
border-color: var(--copper);
color: var(--white);
transform: translateY(-2px);
}

.footer-heading {
font-family: var(--font-serif);
font-size: 0.95rem;
font-weight: 700;
color: var(--white);
margin-bottom: 20px;
letter-spacing: 0.04em;
}

.footer-links {
display: flex;
flex-direction: column;
gap: 10px;
}

.footer-links a {
font-size: 0.87rem;
color: rgba(255,255,255,0.5);
transition: color var(--transition);
line-height: 1.4;
}

.footer-links a:hover { color: var(--gold); }

.footer-bottom {
display: flex;
align-items: center;
justify-content: space-between;
padding: 24px 0;
font-size: 0.82rem;
color: rgba(255,255,255,0.3);
flex-wrap: wrap;
gap: 12px;
}

.footer-bottom-links {
display: flex;
gap: 24px;
}

.footer-bottom-links a {
color: rgba(255,255,255,0.3);
transition: color var(--transition);
}

.footer-bottom-links a:hover { color: var(--gold); }

/* =============================================
MODAL
============================================= */
.modal-overlay {
position: fixed;
inset: 0;
background: rgba(10,10,20,0.75);
backdrop-filter: blur(6px);
z-index: 9000;
opacity: 0;
visibility: hidden;
transition: all var(--transition);
}

.modal-overlay.open {
opacity: 1;
visibility: visible;
}

.modal {
position: fixed;
top: 50%; left: 50%;
transform: translate(-50%, -50%) scale(0.92);
background: var(--cream);
border-radius: var(--radius-lg);
padding: 48px;
width: 90%;
max-width: 520px;
max-height: 90vh;
overflow-y: auto;
z-index: 9001;
opacity: 0;
visibility: hidden;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
box-shadow: 0 40px 100px rgba(0,0,0,0.4);
}

.modal.open {
opacity: 1;
visibility: visible;
transform: translate(-50%, -50%) scale(1);
}

.modal-wide { max-width: 780px; }

.modal-video {
max-width: 900px;
background: var(--navy);
padding: 20px;
}

.modal-close {
position: absolute;
top: 16px; right: 16px;
width: 36px; height: 36px;
border-radius: 50%;
background: var(--cream-dark);
color: var(--text-mid);
font-size: 0.9rem;
display: flex;
align-items: center;
justify-content: center;
transition: all var(--transition);
cursor: none;
border: none;
}

.modal-close:hover {
background: var(--copper);
color: var(--white);
transform: rotate(90deg);
}

.modal-header { text-align: center; margin-bottom: 32px; }

.modal-title-row {
display: flex;
align-items: center;
justify-content: center;
gap: 12px;
margin-bottom: 8px;
}

.modal-gear {
font-size: 2rem;
line-height: 1;
color: var(--copper);
animation: spinCW 6s linear infinite;
display: inline-block;
flex-shrink: 0;
}

.modal-title {
font-family: var(--font-serif);
font-size: 1.8rem;
color: var(--text-dark);
margin-bottom: 0;
}

.modal-sub {
font-size: 0.9rem;
color: var(--text-light);
}

/* FORM STYLES */
.form-group { margin-bottom: 18px; }

.form-hint {
font-size: 0.8rem;
color: var(--text-light);
margin-top: 8px;
line-height: 1.45;
}

.promo-apply-row {
display: flex;
gap: 10px;
align-items: stretch;
}

.promo-apply-row .form-input {
flex: 1;
min-width: 0;
}

.promo-apply-btn {
flex-shrink: 0;
padding: 12px 18px;
white-space: nowrap;
}

.form-promo-msg {
font-size: 0.85rem;
margin-top: 8px;
line-height: 1.45;
}

.form-promo-msg.is-success { color: var(--navy, #1a3a2a); }
.form-promo-msg.is-error { color: #a33; }

.booking-price-old {
font-size: 1rem;
font-weight: 500;
color: var(--text-light);
text-decoration: line-through;
margin-bottom: 4px;
}

.booking-price-new {
font-size: 1.35rem;
font-weight: 700;
color: var(--copper, #B87333);
}

.form-label {
display: block;
font-size: 0.85rem;
font-weight: 600;
color: var(--text-dark);
margin-bottom: 7px;
}

.form-label-optional {
font-weight: 400;
color: var(--text-light);
}

.form-group--promo {
padding: 14px 16px;
border-radius: var(--radius-sm);
border: 1.5px dashed rgba(184, 115, 51, 0.45);
background: rgba(184, 115, 51, 0.06);
}

.form-group--promo.is-disabled {
opacity: 0.65;
}

.form-group--promo.is-disabled .form-input,
.form-group--promo.is-disabled .btn-promo-apply {
cursor: not-allowed;
}

.booking-price-note {
font-size: 0.85rem;
color: var(--text-light);
margin-bottom: 6px;
}

.form-input,
.form-select,
.form-textarea {
width: 100%;
padding: 12px 16px;
border-radius: var(--radius-sm);
border: 1.5px solid var(--cream-dark);
background: var(--white);
font-family: var(--font-sans);
font-size: 0.92rem;
color: var(--text-dark);
transition: border-color var(--transition), box-shadow var(--transition);
outline: none;
appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
border-color: var(--copper);
box-shadow: 0 0 0 3px rgba(184,115,51,0.12);
}

.form-textarea {
height: 90px;
resize: vertical;
line-height: 1.6;
}

.counter-wrap {
display: flex;
align-items: center;
gap: 0;
width: fit-content;
border: 1.5px solid var(--cream-dark);
border-radius: var(--radius-sm);
overflow: hidden;
background: var(--white);
}

.counter-btn {
width: 40px; height: 40px;
font-size: 1.3rem;
font-weight: 300;
color: var(--copper);
background: transparent;
border: none;
cursor: none;
transition: background var(--transition);
display: flex;
align-items: center;
justify-content: center;
}

.counter-btn:hover { background: var(--cream-dark); }

.counter-val {
padding: 0 20px;
font-size: 1rem;
font-weight: 600;
color: var(--text-dark);
min-width: 48px;
text-align: center;
border-left: 1px solid var(--cream-dark);
border-right: 1px solid var(--cream-dark);
line-height: 40px;
}

.form-check {
display: flex;
align-items: center;
gap: 10px;
margin-bottom: 20px;
font-size: 0.85rem;
color: var(--text-light);
}

.form-check input { cursor: none; }
.form-check a { color: var(--copper); text-decoration: underline; }

.modal-success {
text-align: center;
padding: 20px 0;
}

.success-icon {
width: 72px; height: 72px;
border-radius: 50%;
background: linear-gradient(135deg, var(--copper), var(--gold));
color: var(--white);
font-size: 2rem;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 20px;
animation: successPop 0.5s cubic-bezier(0.34,1.56,0.64,1);
}

@keyframes successPop {
from { transform: scale(0); opacity: 0; }
to   { transform: scale(1); opacity: 1; }
}

.modal-success h3 {
font-family: var(--font-serif);
font-size: 1.6rem;
color: var(--text-dark);
margin-bottom: 10px;
}

.modal-success p {
font-size: 0.92rem;
color: var(--text-light);
line-height: 1.7;
}

/* VIDEO MODAL */
.video-wrap {
position: relative;
padding-bottom: 56.25%;
height: 0;
border-radius: var(--radius-md);
overflow: hidden;
}

.video-wrap iframe {
position: absolute;
inset: 0;
width: 100%; height: 100%;
}

/* =============================================
BACK TO TOP
============================================= */
.back-to-top {
position: fixed;
bottom: 32px; right: 32px;
width: 48px; height: 48px;
border-radius: 50%;
background: var(--copper);
color: var(--white);
font-size: 1.1rem;
display: flex;
align-items: center;
justify-content: center;
box-shadow: var(--shadow-md);
z-index: 800;
opacity: 0;
visibility: hidden;
transform: translateY(16px);
transition: all var(--transition);
cursor: none;
border: none;
}

.back-to-top.visible {
opacity: 1;
visibility: visible;
transform: translateY(0);
}

.back-to-top:hover {
background: var(--gold);
transform: translateY(-4px);
}

/* =============================================
AOS ANIMATIONS
============================================= */
[data-aos="fade-up"] {
opacity: 0;
transform: translateY(40px);
transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-aos="fade-right"] {
opacity: 0;
transform: translateX(-40px);
transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-aos="fade-left"] {
opacity: 0;
transform: translateX(40px);
transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-aos="zoom-in"] {
opacity: 0;
transform: scale(0.9);
transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-aos].aos-animate {
opacity: 1;
transform: none;
}

/* =============================================
RESPONSIVE
============================================= */
@media (max-width: 1024px) {
.filter-advanced {
grid-template-columns: 1fr 1fr;
}
.filter-group--hours,
.filter-group--players {
grid-column: 1 / -1;
}
.nav-links { gap: 20px; }
.nav-right { gap: 16px; }
.navbar {
--nav-row-top: 64px;
--logo-height: 144px;
}
.navbar.scrolled {
--nav-row-top: 56px;
--logo-height: 126px;
}
.nav-btn { padding: 8px 16px; font-size: 0.82rem; }
.scenarios-grid { grid-template-columns: repeat(2, 1fr); }
.hero-content { grid-template-columns: 1fr; gap: 48px; padding-top: 100px; }
.hero-visual { height: 400px; }
.hero-box-img { width: 280px; }
.promo-inner { grid-template-columns: 1fr; gap: 48px; }
.about-grid { grid-template-columns: 1fr; gap: 48px; }
.team-grid { grid-template-columns: repeat(2, 1fr); }
.footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
.how-it-works .steps-grid .step { width: 252px; height: 252px; }
.how-it-works .step-separator { width: 48px; height: 68px; }
.how-it-works .step-separator-gear--lg { font-size: 3.1rem; }
.how-it-works .step-separator-gear--md { font-size: 1.75rem; }
.how-it-works .step-separator-gear--sm { font-size: 1.05rem; }
.faq-grid { grid-template-columns: 1fr; gap: 40px; }
.faq-left { position: static; }
}

@media (max-width: 768px) {
section { padding: 72px 0; }
.filter-advanced {
grid-template-columns: 1fr;
padding: 20px;
}
.nav-left,
.nav-right { display: none; }
.nav-grid {
column-gap: 12px;
}
.navbar {
--nav-row-top: 56px;
--logo-height: 132px;
}
.navbar.scrolled {
--nav-row-top: 52px;
--logo-height: 120px;
}
.burger { display: flex; }
.nav-btn { display: none; }
.scenarios-grid { grid-template-columns: 1fr; }
.review-card { min-width: 0; }
.reviews-summary { gap: 36px; }
.hero-stats { gap: 24px; flex-wrap: wrap; }
.hero-actions { flex-direction: column; }
.promo-boxes { grid-template-columns: 1fr; }
.promo-plus, .promo-equals { display: none; }
.team-grid { grid-template-columns: 1fr 1fr; }
.footer-grid { grid-template-columns: 1fr; }
.modal { padding: 32px 24px; }
.promo-banner { display: none; }
.hbf-1, .hbf-2, .hbf-3 { display: none; }
.about-values { grid-template-columns: 1fr; }
.cta-contacts { gap: 20px; }
.how-it-works .steps-row {
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.how-it-works .step-separator { display: none; }
.how-it-works .steps-grid .step {
  width: 100%;
  max-width: 280px;
  height: auto;
  aspect-ratio: 1;
}
}

@media (max-width: 480px) {
.container { padding: 0 16px; }
.section-title { font-size: 1.8rem; }
.hero-title { font-size: 2.4rem; }
.team-grid { grid-template-columns: 1fr; }
.reviews-summary { flex-direction: column; gap: 24px; }
.footer-bottom { flex-direction: column; text-align: center; }
.countdown-item { min-width: 56px; padding: 10px 12px; }
.countdown-num { font-size: 1.5rem; }
}

/* === FIXES === */

/* 1. About image bigger */
.about-image-block { max-width: 600px; margin: 0 auto; }
.about-image { width: 100%; height: auto; aspect-ratio: auto; }

/* 2. Services strip (static) */
.ticker-wrap {
  padding: 20px 24px;
  width: 100%;
  text-align: center;
  background: transparent;
  border-top: 1px solid rgba(184, 115, 51, 0.2);
  border-bottom: 1px solid rgba(184, 115, 51, 0.2);
}
.ticker__line {
  margin: 0 auto;
  max-width: 1240px;
  font-family: var(--font-type);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--text-mid);
  text-transform: uppercase;
  line-height: 1.6;
}

/* 3b. Hero — независимые блоки на мобильных */
@media (max-width: 768px) {
  .hero-content {
    position: relative;
    inset: auto;
    min-height: auto;
    padding: 110px 20px 88px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    pointer-events: auto;
  }
  .hero-badge,
  .hero-panel-slot,
  .hero-panel,
  .hero-title {
    position: static;
    transform: none;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    max-width: 100%;
  }
  .hero-title {
    text-align: left;
    order: 2;
  }
  .hero-badge {
    order: 1;
    padding: 8px 14px;
    font-size: 0.75rem;
  }
  .hero-panel-slot {
    order: 3;
  }
  .hero-panel {
    order: unset;
    padding: 24px 20px;
    cursor: default;
    touch-action: auto;
    user-select: auto;
  }
  .hero-secret {
    display: none;
  }
  .hero-title {
    -webkit-text-stroke-width: 0.75px;
  }
}

@media (hover: none), (pointer: coarse) {
  body,
  button {
    cursor: auto;
  }

  a,
  button,
  input,
  select,
  textarea,
  .scenario-card,
  .faq-question,
  .back-to-top,
  .hero-secret-code,
  .promo-gear--secret,
  .promo-gear-reveal-code {
    cursor: pointer;
  }

  .custom-cursor,
  .cursor-follower {
    display: none;
  }
}

/* =============================================
LEGAL PAGES (privacy policy, etc.)
============================================= */
.legal-page-body {
background: var(--cream);
color: var(--text-dark);
cursor: auto;
}

.payment-page-body {
background: var(--cream);
color: var(--text-dark);
cursor: auto;
}

.payment-page-body a,
.payment-page-body button,
.payment-page-body .btn-primary,
.payment-page-body .btn-outline {
cursor: pointer;
}

.legal-page-body section {
padding: 0;
margin: 0;
}

.legal-page-header {
padding: 20px 0;
border-bottom: 1px solid var(--cream-dark);
background: var(--white);
}

.legal-page-header-inner {
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
}

.legal-page-logo img {
display: block;
height: 52px;
width: auto;
}

.legal-page-back {
padding: 10px 18px;
font-size: 0.88rem;
cursor: pointer;
}

.legal-document {
padding: 40px 24px 64px;
}

.legal-container {
max-width: 760px;
margin: 0 auto;
background: var(--white);
border: 1.5px solid var(--cream-dark);
border-radius: var(--radius-md);
padding: 40px 48px 48px;
box-shadow: var(--shadow-sm);
}

.legal-container h1 {
font-family: var(--font-serif);
font-size: 2rem;
font-weight: 700;
margin-bottom: 10px;
text-align: center;
color: var(--text-dark);
}

.legal-container .last-updated {
text-align: center;
color: var(--text-light);
font-size: 0.9rem;
margin-bottom: 28px;
font-style: italic;
}

.legal-container section + section {
margin-top: 28px;
padding-top: 28px;
border-top: 1px solid var(--cream-dark);
}

.legal-container section h2 {
font-family: var(--font-serif);
font-size: 1.3rem;
font-weight: 600;
color: var(--navy);
margin: 0 0 14px;
}

.legal-container section h3 {
font-size: 1.05rem;
font-weight: 600;
color: var(--text-mid);
margin: 16px 0 10px;
}

.legal-container section p {
font-size: 0.95rem;
line-height: 1.75;
margin-bottom: 12px;
color: var(--text-mid);
}

.legal-container section p:last-child {
margin-bottom: 0;
}

.legal-container section ul {
margin: 0 0 14px;
padding-left: 1.35rem;
list-style: disc;
}

.legal-container section li {
font-size: 0.95rem;
line-height: 1.7;
margin-bottom: 8px;
color: var(--text-mid);
}

.legal-container section li::marker {
color: var(--copper);
}

.legal-container section a {
color: var(--copper);
text-decoration: underline;
text-underline-offset: 2px;
}

.legal-container section a:hover {
color: var(--navy);
}

.legal-footer-actions {
margin-top: 32px;
padding-top: 24px;
border-top: 1px solid var(--cream-dark);
text-align: center;
}

.legal-footer-actions .btn-primary {
cursor: pointer;
}

@media (max-width: 768px) {
.legal-document {
padding: 24px 16px 48px;
}

.legal-container {
padding: 28px 20px 32px;
}

.legal-container h1 {
font-size: 1.6rem;
}

.legal-container section + section {
margin-top: 22px;
padding-top: 22px;
}

.legal-container section h2 {
font-size: 1.15rem;
}

.legal-page-header-inner {
flex-wrap: wrap;
}
}
