/* ============================================================
   CYCLONE RIDE CLUB — styles.css
   Kinetic violet→lime duotone on near-black · default dark
   ============================================================ */

/* ---------- Design tokens (dark = default) ---------- */
:root {
  --ink: #111118;
  --off-white: #f5f3ef;
  --violet: #7a3cff;
  --violet-bright: #9a64ff;
  --lime: #c9f24a;
  --grey: #6a6b78;

  --bg: #0c0c12;
  --bg-2: #14141d;
  --surface: #17171f;
  --surface-2: #1d1d28;
  --card-line: #2a2a38;
  --line-soft: #22222e;
  --text: #f5f3ef;
  --text-soft: #a7a8b6;
  --text-dim: #76778a;

  --grad-duo: linear-gradient(120deg, #7a3cff 0%, #c9f24a 100%);
  --grad-duo-rev: linear-gradient(120deg, #c9f24a 0%, #7a3cff 100%);
  --grad-violet: linear-gradient(135deg, #9a64ff 0%, #7a3cff 100%);
  --grad-dark: linear-gradient(160deg, #17171f 0%, #0c0c12 100%);

  --shadow-sm: 0 2px 10px rgba(0,0,0,.4);
  --shadow-md: 0 18px 50px rgba(0,0,0,.55);
  --shadow-lg: 0 36px 90px rgba(0,0,0,.65);
  --glow-violet: 0 0 0 1px rgba(122,60,255,.4), 0 14px 40px rgba(122,60,255,.4);
  --glow-lime: 0 0 0 1px rgba(201,242,74,.4), 0 14px 40px rgba(201,242,74,.3);

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-pill: 999px;

  --sp-1: 8px;  --sp-2: 16px; --sp-3: 24px; --sp-4: 32px;
  --sp-5: 48px; --sp-6: 64px; --sp-7: 96px; --sp-8: 128px;

  --container: 1180px;
  --font-display: "Big Shoulders Display", Impact, system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;

  --header-h: 76px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Light theme ---------- */
html.theme-light {
  --bg: #f5f3ef;
  --bg-2: #ece9e2;
  --surface: #ffffff;
  --surface-2: #f3f1ec;
  --card-line: #e0ddd4;
  --line-soft: #e9e6df;
  --text: #111118;
  --text-soft: #45464f;
  --text-dim: #76778a;
  --grad-dark: linear-gradient(160deg, #ffffff 0%, #f5f3ef 100%);
  --shadow-sm: 0 2px 10px rgba(17,17,24,.07);
  --shadow-md: 0 18px 50px rgba(17,17,24,.13);
  --shadow-lg: 0 36px 90px rgba(17,17,24,.18);
  --glow-violet: 0 0 0 1px rgba(122,60,255,.25), 0 14px 40px rgba(122,60,255,.22);
  --glow-lime: 0 0 0 1px rgba(122,60,255,.2), 0 14px 40px rgba(201,242,74,.35);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background .4s var(--ease), color .4s var(--ease);
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

::selection { background: var(--lime); color: var(--ink); }
:focus-visible { outline: 3px solid var(--lime); outline-offset: 3px; border-radius: 4px; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 800; line-height: .94; letter-spacing: .01em; color: var(--text); text-transform: uppercase; }
h3, h4 { letter-spacing: .02em; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--sp-3); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; text-transform: uppercase; letter-spacing: .04em;
  padding: 13px 28px; border-radius: var(--r-pill);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s;
  white-space: nowrap; position: relative;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--lime); color: var(--ink); box-shadow: var(--glow-lime); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 0 0 1px rgba(201,242,74,.5), 0 20px 50px rgba(201,242,74,.4); }
.btn-violet { background: var(--violet); color: #fff; box-shadow: var(--glow-violet); }
.btn-violet:hover { transform: translateY(-3px); box-shadow: 0 0 0 1px rgba(122,60,255,.6), 0 20px 50px rgba(122,60,255,.5); }
.btn-ghost { background: transparent; color: var(--text); border: 2px solid var(--card-line); }
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--lime); color: var(--lime); }
.btn-outline-light { background: rgba(255,255,255,.08); color: #fff; border: 2px solid rgba(255,255,255,.3); backdrop-filter: blur(6px); }
.btn-outline-light:hover { background: rgba(255,255,255,.16); transform: translateY(-3px); }
.btn-block { width: 100%; justify-content: center; }
.btn-lg { padding: 16px 36px; font-size: 1.2rem; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--header-h);
  display: flex; align-items: center;
  background: color-mix(in srgb, var(--bg) 75%, transparent);
  backdrop-filter: blur(16px) saturate(140%);
  transition: box-shadow .3s var(--ease), background .3s var(--ease), border-color .3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled { box-shadow: var(--shadow-md); border-bottom-color: var(--line-soft); }
.header-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--sp-3); }

.brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; letter-spacing: .03em; text-transform: uppercase; color: var(--text); }
.brand .mark { width: 40px; height: 40px; flex: none; }
.brand .mark .spin-ring { transform-origin: center; animation: rpm-spin 3s linear infinite; }
@keyframes rpm-spin { to { transform: rotate(360deg); } }
.brand small { display: block; font-family: var(--font-body); font-weight: 700; font-size: .54rem; letter-spacing: .3em; text-transform: uppercase; color: var(--lime); margin-top: -3px; }

.nav { display: flex; align-items: center; gap: 2px; }
.nav a { font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; letter-spacing: .03em; text-transform: uppercase; padding: 9px 14px; border-radius: var(--r-pill); color: var(--text-soft); transition: color .2s, background .2s; position: relative; }
.nav a:hover { color: var(--text); }
.nav a.active { color: var(--lime); }
.nav a.active::after { content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 3px; border-radius: 3px; background: var(--lime); box-shadow: 0 0 8px var(--lime); }

.header-actions { display: flex; align-items: center; gap: 10px; }

.theme-toggle {
  width: 46px; height: 46px; border-radius: var(--r-pill);
  display: grid; place-items: center; color: var(--text);
  border: 2px solid var(--card-line); background: var(--surface);
  transition: transform .3s var(--ease), color .2s, border-color .2s;
}
.theme-toggle:hover { transform: rotate(18deg) scale(1.05); border-color: var(--lime); color: var(--lime); }
.theme-toggle svg { width: 21px; height: 21px; }
.theme-toggle .icon-moon { display: none; }
html.theme-light .theme-toggle .icon-sun { display: none; }
html.theme-light .theme-toggle .icon-moon { display: block; }

.nav-toggle { display: none; width: 46px; height: 46px; border-radius: var(--r-sm); flex-direction: column; gap: 5px; align-items: center; justify-content: center; border: 2px solid var(--card-line); background: var(--surface); }
.nav-toggle span { width: 22px; height: 2.5px; background: var(--text); border-radius: 3px; transition: transform .3s var(--ease), opacity .3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Sections ---------- */
main { padding-top: var(--header-h); }
.section { padding-block: var(--sp-7); position: relative; }
.section-tight { padding-block: var(--sp-6); }
.kicker { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: .92rem; letter-spacing: .22em; text-transform: uppercase; color: var(--lime); margin-bottom: var(--sp-2); }
.kicker::before { content: ""; width: 30px; height: 3px; border-radius: 3px; background: var(--grad-duo); }
.section-head { max-width: 720px; margin-bottom: var(--sp-5); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .kicker { justify-content: center; }
.section-head h2 { font-size: clamp(2.4rem, 6vw, 4rem); margin-bottom: var(--sp-2); }
.section-head p { color: var(--text-soft); font-size: 1.08rem; text-transform: none; }

/* ---------- Equalizer bars motif ---------- */
.eq { display: inline-flex; align-items: flex-end; gap: 3px; height: 22px; }
.eq span { width: 4px; background: var(--lime); border-radius: 2px; animation: eq-bounce 1s ease-in-out infinite; }
.eq span:nth-child(1) { height: 40%; animation-delay: 0s; }
.eq span:nth-child(2) { height: 90%; animation-delay: .2s; background: var(--violet-bright); }
.eq span:nth-child(3) { height: 60%; animation-delay: .4s; }
.eq span:nth-child(4) { height: 100%; animation-delay: .1s; background: var(--violet-bright); }
.eq span:nth-child(5) { height: 50%; animation-delay: .3s; }
@keyframes eq-bounce { 0%,100% { transform: scaleY(.4); } 50% { transform: scaleY(1); } }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: calc(100vh - var(--header-h)); display: flex; align-items: center; overflow: hidden; background: var(--grad-dark); }
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .55; }
.hero-glow.g1 { top: -10%; right: -5%; width: 480px; height: 480px; background: radial-gradient(circle, #7a3cff, transparent 70%); animation: pulse-glow 9s ease-in-out infinite; }
.hero-glow.g2 { bottom: -15%; left: -8%; width: 420px; height: 420px; background: radial-gradient(circle, #c9f24a, transparent 70%); opacity: .3; animation: pulse-glow 11s ease-in-out infinite 1s; }
@keyframes pulse-glow { 0%,100% { transform: scale(1); opacity: .5; } 50% { transform: scale(1.12); opacity: .65; } }

/* speed streaks */
.streaks { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.streak { position: absolute; height: 2px; left: -30%; border-radius: 2px; opacity: 0; animation: streak-fly linear infinite; }
@keyframes streak-fly { 0% { transform: translateX(0) skewX(-18deg); opacity: 0; } 10% { opacity: .8; } 90% { opacity: .6; } 100% { transform: translateX(160vw) skewX(-18deg); opacity: 0; } }

.hero .container { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: var(--sp-6); align-items: center; }
.hero h1 { font-size: clamp(3.2rem, 9vw, 6.6rem); margin-bottom: var(--sp-3); }
.hero h1 .duo { background: var(--grad-duo); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-lead { font-size: 1.25rem; color: var(--text-soft); margin-bottom: var(--sp-4); max-width: 520px; }
.hero-ctas { display: flex; gap: var(--sp-2); flex-wrap: wrap; }
.hero-meta { display: flex; gap: var(--sp-4); margin-top: var(--sp-5); flex-wrap: wrap; }
.hero-meta .hm { }
.hero-meta .hm .n { font-family: var(--font-display); font-weight: 800; font-size: 2.4rem; line-height: 1; color: var(--lime); }
.hero-meta .hm .l { font-size: .82rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: .1em; font-weight: 700; }

/* hero visual — RPM dial */
.hero-visual { position: relative; display: grid; place-items: center; }
.rpm-dial { position: relative; width: 100%; max-width: 420px; aspect-ratio: 1; }
.rpm-dial svg { width: 100%; height: 100%; }
.rpm-track { fill: none; stroke: var(--card-line); stroke-width: 14; }
.rpm-fill { fill: none; stroke: url(#duo-grad); stroke-width: 14; stroke-linecap: round; stroke-dasharray: 660; stroke-dashoffset: 660; animation: rpm-fill 2.4s var(--ease) forwards; }
@keyframes rpm-fill { to { stroke-dashoffset: 180; } }
.rpm-center { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; }
.rpm-center .big { font-family: var(--font-display); font-weight: 800; font-size: clamp(3.5rem, 10vw, 5.5rem); line-height: .9; background: var(--grad-duo); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.rpm-center .lbl { font-family: var(--font-display); font-weight: 700; letter-spacing: .3em; text-transform: uppercase; color: var(--text-soft); font-size: .9rem; }
.rpm-needle { transform-origin: 210px 210px; animation: needle-sweep 2.4s var(--ease) forwards; }
@keyframes needle-sweep { 0% { transform: rotate(-120deg); } 70% { transform: rotate(70deg); } 100% { transform: rotate(48deg); } }

.hero-eq-card { position: absolute; bottom: 4%; right: -10px; background: var(--surface); border: 1px solid var(--card-line); border-radius: var(--r-md); padding: 14px 18px; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 14px; animation: float-y 5s ease-in-out infinite; }
@keyframes float-y { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.hero-eq-card .eq { height: 30px; }
.hero-eq-card strong { font-family: var(--font-display); font-size: 1.1rem; display: block; }
.hero-eq-card span { font-size: .76rem; color: var(--text-dim); }

/* ---------- Trust strip / marquee ---------- */
.trust { background: var(--lime); color: var(--ink); overflow: hidden; }
.trust .container { padding-block: var(--sp-3); }
.trust-grid { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: var(--sp-2) var(--sp-5); }
.trust-item { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; text-transform: uppercase; letter-spacing: .03em; }
.trust-item svg { width: 22px; height: 22px; flex: none; }

/* ---------- Cards / classes ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: var(--sp-3); }
.card {
  background: var(--surface); border-radius: var(--r-lg); padding: var(--sp-4);
  border: 1px solid var(--card-line); box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
  position: relative; overflow: hidden; display: flex; flex-direction: column;
}
.card::after { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--grad-duo); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); }
.card:hover { transform: translateY(-8px); border-color: var(--violet); box-shadow: var(--glow-violet); }
.card:hover::after { transform: scaleX(1); }
.card-ico { width: 58px; height: 58px; border-radius: var(--r-md); display: grid; place-items: center; margin-bottom: var(--sp-3); background: var(--surface-2); color: var(--lime); border: 1px solid var(--card-line); transition: transform .35s var(--ease); }
.card:hover .card-ico { transform: scale(1.08); color: var(--violet-bright); }
.card-ico svg { width: 30px; height: 30px; }
.card h3 { font-size: 1.55rem; margin-bottom: 8px; }
.card p { color: var(--text-soft); font-size: .98rem; margin-bottom: var(--sp-3); flex: 1; }
.card-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; }
.card-price { font-family: var(--font-display); font-weight: 800; font-size: 2rem; color: var(--text); }
.card-price .per { font-family: var(--font-body); font-size: .8rem; font-weight: 700; color: var(--text-dim); }
.card-price .free { color: var(--lime); }
.card-link { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; text-transform: uppercase; letter-spacing: .04em; color: var(--lime); transition: gap .25s; }
.card-link:hover { gap: 11px; }
.card-meta { display: inline-flex; align-items: center; gap: 6px; font-size: .8rem; font-weight: 700; color: var(--text-dim); margin-bottom: var(--sp-2); text-transform: uppercase; letter-spacing: .06em; }
.card-meta svg { width: 15px; height: 15px; color: var(--violet-bright); }

.card.popular { border-color: var(--lime); box-shadow: var(--glow-lime); }
.card.popular::after { transform: scaleX(1); }
.badge-popular { position: absolute; top: 16px; right: -34px; transform: rotate(45deg); background: var(--lime); color: var(--ink); font-family: var(--font-display); font-weight: 700; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; padding: 6px 42px; }

/* ---------- Stats / count-up ---------- */
.stats { background: var(--ink); border-radius: var(--r-lg); padding: var(--sp-6) var(--sp-4); position: relative; overflow: hidden; border: 1px solid var(--card-line); }
html.theme-light .stats { background: var(--ink); }
.stats::before { content: ""; position: absolute; inset: 0; background: var(--grad-duo); opacity: .07; }
.stats-grid { position: relative; display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: var(--sp-4); text-align: center; }
.stat .num { font-family: var(--font-display); font-weight: 800; font-size: clamp(3.2rem, 8vw, 5rem); line-height: 1; display: block; background: var(--grad-duo); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat .label { display: block; margin-top: 8px; font-weight: 700; font-size: .95rem; color: #cfd0db; text-transform: uppercase; letter-spacing: .08em; }
.stats .stat .label { color: #cfd0db; }

/* mini equalizer under stats */
.stats-eq { position: relative; display: flex; justify-content: center; gap: 4px; margin-top: var(--sp-5); height: 36px; align-items: flex-end; }
.stats-eq span { width: 6px; border-radius: 3px; background: var(--grad-duo); animation: eq-bounce 1.1s ease-in-out infinite; }

/* ---------- Testimonials ---------- */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: var(--sp-3); }
.quote { background: var(--surface); border-radius: var(--r-lg); padding: var(--sp-4); border: 1px solid var(--card-line); box-shadow: var(--shadow-sm); position: relative; transition: transform .35s var(--ease), border-color .35s; }
.quote:hover { transform: translateY(-6px); border-color: var(--violet); }
.quote .stars { display: flex; gap: 3px; margin-bottom: var(--sp-2); color: var(--lime); }
.quote .stars svg { width: 18px; height: 18px; }
.quote p { font-size: 1.05rem; color: var(--text); margin-bottom: var(--sp-3); }
.quote-author { display: flex; align-items: center; gap: 12px; }
.avatar { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; color: var(--ink); font-size: 1.1rem; flex: none; }
.quote-author strong { display: block; font-size: .98rem; font-family: var(--font-display); letter-spacing: .03em; }
.quote-author span { font-size: .85rem; color: var(--text-dim); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: var(--violet); border-radius: var(--r-lg); padding: var(--sp-7) var(--sp-4); text-align: center; color: #fff; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: var(--grad-duo); opacity: .25; }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { font-size: clamp(2.4rem, 6vw, 4rem); color: #fff; margin-bottom: var(--sp-2); }
.cta-band p { font-size: 1.15rem; color: rgba(255,255,255,.92); margin-bottom: var(--sp-4); max-width: 560px; margin-inline: auto; text-transform: none; }
.cta-band .hero-ctas { justify-content: center; }
.cta-streaks { position: absolute; inset: 0; z-index: 0; opacity: .5; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #a7a8b6; padding-top: var(--sp-7); position: relative; overflow: hidden; border-top: 1px solid var(--card-line); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: var(--sp-4); position: relative; }
.footer-brand .brand { color: #fff; margin-bottom: var(--sp-2); }
.footer-brand .brand small { color: var(--lime); }
.footer-brand p { font-size: .95rem; max-width: 320px; color: #a7a8b6; }
.footer-col h4 { color: #fff; font-size: .9rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: var(--sp-2); }
.footer-col a, .footer-col li { font-size: .95rem; margin-bottom: 10px; transition: color .2s; color: #a7a8b6; }
.footer-col a:hover { color: var(--lime); }
.footer-col li { display: flex; gap: 9px; align-items: flex-start; }
.footer-col li svg { width: 17px; height: 17px; color: var(--violet-bright); flex: none; margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: var(--sp-6); padding-block: var(--sp-3); display: flex; justify-content: space-between; align-items: center; gap: var(--sp-2); flex-wrap: wrap; font-size: .87rem; color: #76778a; }
.footer-bottom .socials { display: flex; gap: 10px; }
.footer-bottom .socials a { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.06); transition: background .2s, transform .2s, color .2s; color: #a7a8b6; }
.footer-bottom .socials a:hover { background: var(--lime); color: var(--ink); transform: translateY(-3px); }
.footer-bottom .socials svg { width: 18px; height: 18px; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }

/* ---------- Sticky mobile join bar ---------- */
.join-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: none; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 16px calc(12px + env(safe-area-inset-bottom)); background: color-mix(in srgb, var(--surface) 94%, transparent); backdrop-filter: blur(14px); border-top: 1px solid var(--card-line); box-shadow: 0 -8px 28px rgba(0,0,0,.4); transform: translateY(110%); transition: transform .4s var(--ease); }
.join-bar.show { transform: translateY(0); }
.join-bar .jb-info strong { font-family: var(--font-display); display: block; font-size: 1.2rem; }
.join-bar .jb-info span { font-size: .8rem; color: var(--text-dim); }

/* ============================================================
   PAGE-SPECIFIC
   ============================================================ */
.page-hero { position: relative; padding-block: var(--sp-6) var(--sp-5); overflow: hidden; background: var(--grad-dark); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2.8rem, 7vw, 5rem); margin-bottom: var(--sp-2); max-width: 800px; }
.page-hero p { font-size: 1.15rem; color: var(--text-soft); max-width: 620px; text-transform: none; }

/* services rows */
.svc-list { display: flex; flex-direction: column; gap: var(--sp-3); }
.svc-row { display: grid; grid-template-columns: 64px 1fr auto; gap: var(--sp-3); align-items: center; background: var(--surface); border: 1px solid var(--card-line); border-radius: var(--r-lg); padding: var(--sp-3) var(--sp-4); box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s; position: relative; overflow: hidden; }
.svc-row::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--grad-duo); transform: scaleY(0); transform-origin: top; transition: transform .35s var(--ease); }
.svc-row:hover { transform: translateX(6px); border-color: var(--violet); box-shadow: var(--glow-violet); }
.svc-row:hover::before { transform: scaleY(1); }
.svc-row .svc-ico { width: 64px; height: 64px; border-radius: var(--r-md); display: grid; place-items: center; background: var(--surface-2); color: var(--lime); border: 1px solid var(--card-line); }
.svc-row .svc-ico svg { width: 32px; height: 32px; }
.svc-row.popular { border-color: var(--lime); box-shadow: var(--glow-lime); }
.svc-row.popular .svc-ico { background: var(--grad-duo); color: var(--ink); border: none; }
.svc-body h3 { font-size: 1.5rem; margin-bottom: 4px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.tag { font-family: var(--font-display); font-weight: 700; font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; padding: 4px 11px; border-radius: var(--r-pill); background: var(--lime); color: var(--ink); }
.tag.free { background: var(--violet); color: #fff; }
.svc-body p { color: var(--text-soft); font-size: .97rem; margin-bottom: 6px; text-transform: none; }
.svc-body .svc-meta { display: inline-flex; gap: 14px; font-size: .8rem; font-weight: 700; color: var(--text-dim); text-transform: uppercase; letter-spacing: .06em; }
.svc-body .svc-meta span { display: inline-flex; align-items: center; gap: 5px; }
.svc-body .svc-meta svg { width: 14px; height: 14px; color: var(--violet-bright); }
.svc-action { text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.svc-action .price { font-family: var(--font-display); font-weight: 800; font-size: 2rem; }
.svc-action .price .per { font-family: var(--font-body); font-size: .7rem; font-weight: 700; color: var(--text-dim); display: block; text-align: right; text-transform: uppercase; letter-spacing: .06em; }
.svc-action .price .free { color: var(--lime); }

/* about */
.about-story { display: grid; grid-template-columns: 1.1fr .9fr; gap: var(--sp-6); align-items: center; }
.story-visual { aspect-ratio: 4/5; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); background: var(--ink); position: relative; border: 1px solid var(--card-line); }
.story-visual svg { width: 100%; height: 100%; }
.about-story p { text-transform: none; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: var(--sp-3); }
.value { background: var(--surface); border: 1px solid var(--card-line); border-radius: var(--r-md); padding: var(--sp-4); box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), border-color .3s; }
.value:hover { transform: translateY(-6px); border-color: var(--violet); }
.value .v-ico { width: 52px; height: 52px; border-radius: var(--r-md); display: grid; place-items: center; background: var(--grad-duo); color: var(--ink); margin-bottom: var(--sp-2); }
.value .v-ico svg { width: 26px; height: 26px; }
.value h3 { font-size: 1.3rem; margin-bottom: 8px; }
.value p { color: var(--text-soft); font-size: .95rem; text-transform: none; }

.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: var(--sp-3); }
.team-card { text-align: center; background: var(--surface); border: 1px solid var(--card-line); border-radius: var(--r-lg); padding: var(--sp-4); box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), border-color .3s; }
.team-card:hover { transform: translateY(-6px); border-color: var(--violet); }
.team-avatar { width: 96px; height: 96px; border-radius: 50%; margin: 0 auto var(--sp-2); display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 2.2rem; color: var(--ink); box-shadow: var(--shadow-sm); }
.team-card h3 { font-size: 1.35rem; margin-bottom: 2px; }
.team-card .role { color: var(--lime); font-weight: 700; font-size: .82rem; margin-bottom: 10px; text-transform: uppercase; letter-spacing: .08em; font-family: var(--font-display); }
.team-card p { color: var(--text-soft); font-size: .92rem; text-transform: none; }
.certs { display: flex; flex-wrap: wrap; gap: var(--sp-2); justify-content: center; }
.cert { display: inline-flex; align-items: center; gap: 9px; background: var(--surface); border: 1px solid var(--card-line); border-radius: var(--r-pill); padding: 11px 20px; font-family: var(--font-display); font-weight: 600; font-size: .98rem; text-transform: uppercase; letter-spacing: .03em; box-shadow: var(--shadow-sm); }
.cert svg { width: 20px; height: 20px; color: var(--lime); }

/* gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: var(--sp-2); }
.tile { position: relative; border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-sm); cursor: pointer; border: 1px solid var(--card-line); }
.tile svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.tile .tile-cap { position: absolute; inset: auto 0 0 0; padding: 16px; background: linear-gradient(transparent, rgba(8,8,12,.92)); color: #fff; transform: translateY(8px); opacity: 0; transition: transform .4s var(--ease), opacity .4s var(--ease); z-index: 2; }
.tile:hover .tile-cap { transform: none; opacity: 1; }
.tile .tile-cap strong { font-family: var(--font-display); display: block; font-size: 1.15rem; text-transform: uppercase; letter-spacing: .03em; }
.tile .tile-cap span { font-size: .82rem; color: rgba(255,255,255,.8); }
.tile::after { content: ""; position: absolute; inset: 0; background: rgba(122,60,255,0); transition: background .4s; z-index: 1; }
.tile:hover::after { background: rgba(122,60,255,.2); }
.tile.wide { grid-column: span 2; }
.tile.tall { grid-row: span 2; }

/* contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: var(--sp-5); align-items: start; }
.contact-methods { display: flex; flex-direction: column; gap: var(--sp-2); margin-bottom: var(--sp-4); }
.contact-method { display: flex; gap: 16px; align-items: center; background: var(--surface); border: 1px solid var(--card-line); border-radius: var(--r-md); padding: var(--sp-3); box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), border-color .3s; }
.contact-method:hover { transform: translateX(5px); border-color: var(--violet); }
.contact-method .cm-ico { width: 50px; height: 50px; border-radius: var(--r-md); display: grid; place-items: center; background: var(--grad-duo); color: var(--ink); flex: none; }
.contact-method .cm-ico svg { width: 24px; height: 24px; }
.contact-method strong { display: block; font-family: var(--font-display); font-size: 1.1rem; letter-spacing: .02em; }
.contact-method span, .contact-method a { color: var(--text-soft); font-size: .94rem; }
.contact-method a:hover { color: var(--lime); }

.hours-table { width: 100%; border-collapse: collapse; background: var(--surface); border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--card-line); box-shadow: var(--shadow-sm); }
.hours-table th, .hours-table td { padding: 12px 18px; text-align: left; font-size: .94rem; }
.hours-table th { background: var(--surface-2); font-family: var(--font-display); font-weight: 700; font-size: .9rem; text-transform: uppercase; letter-spacing: .05em; }
.hours-table tr:not(:last-child) td { border-bottom: 1px solid var(--line-soft); }
.hours-table td:last-child { text-align: right; font-weight: 700; }
.hours-table tr.today td { color: var(--lime); background: var(--surface-2); }

/* forms */
.form-card { background: var(--surface); border: 1px solid var(--card-line); border-radius: var(--r-lg); padding: var(--sp-5); box-shadow: var(--shadow-md); }
.field { margin-bottom: var(--sp-3); }
.field label { display: block; font-family: var(--font-display); font-weight: 600; font-size: .95rem; margin-bottom: 7px; text-transform: uppercase; letter-spacing: .04em; }
.field .req { color: var(--lime); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; font-family: inherit; font-size: 1rem; color: var(--text);
  background: var(--surface-2); border: 1.5px solid var(--card-line); border-radius: var(--r-sm);
  transition: border-color .2s, box-shadow .2s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-dim); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--violet); box-shadow: 0 0 0 4px rgba(122,60,255,.18); }
.field input.invalid, .field select.invalid { border-color: #ff5a6e; box-shadow: 0 0 0 4px rgba(255,90,110,.14); }
.field textarea { resize: vertical; min-height: 130px; }
.field .err { color: #ff7585; font-size: .82rem; margin-top: 6px; font-weight: 700; display: none; }
.field .err.show { display: block; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-2); }
.form-success { display: none; text-align: center; padding: var(--sp-4); }
.form-success.show { display: block; }
.form-success .check { width: 70px; height: 70px; margin: 0 auto var(--sp-2); }

/* map */
.map-box { position: relative; border-radius: var(--r-lg); overflow: hidden; height: 340px; box-shadow: var(--shadow-md); border: 1px solid var(--card-line); }
.map-box svg.map-bg { position: absolute; inset: 0; width: 100%; height: 100%; }
.map-pin { position: absolute; top: 44%; left: 50%; transform: translate(-50%,-100%); width: 52px; height: 52px; color: var(--lime); filter: drop-shadow(0 6px 10px rgba(0,0,0,.5)); animation: pin-bob 2.4s ease-in-out infinite; }
@keyframes pin-bob { 0%,100% { transform: translate(-50%,-100%); } 50% { transform: translate(-50%,-112%); } }
.map-label { position: absolute; bottom: 16px; left: 16px; background: var(--surface); border-radius: var(--r-sm); padding: 10px 16px; box-shadow: var(--shadow-sm); font-family: var(--font-display); font-weight: 600; font-size: .95rem; text-transform: uppercase; letter-spacing: .03em; display: flex; align-items: center; gap: 8px; border: 1px solid var(--card-line); }
.map-label svg { width: 16px; height: 16px; color: var(--lime); }

/* ---------- Rides page ---------- */
.ride-styles { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: var(--sp-3); }
.ride-style { background: var(--surface); border: 1px solid var(--card-line); border-radius: var(--r-lg); padding: var(--sp-4); box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), border-color .35s; position: relative; overflow: hidden; }
.ride-style:hover { transform: translateY(-8px); border-color: var(--violet); box-shadow: var(--glow-violet); }
.ride-style .rs-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--sp-2); }
.ride-style .rs-ico { width: 54px; height: 54px; border-radius: var(--r-md); display: grid; place-items: center; background: var(--surface-2); color: var(--lime); border: 1px solid var(--card-line); }
.ride-style .rs-ico svg { width: 28px; height: 28px; }
.ride-style .rs-intensity { display: flex; gap: 3px; align-items: flex-end; height: 22px; }
.ride-style .rs-intensity span { width: 5px; border-radius: 2px; background: var(--card-line); }
.ride-style .rs-intensity span.on { background: var(--grad-duo); }
.ride-style h3 { font-size: 1.6rem; margin-bottom: 8px; }
.ride-style p { color: var(--text-soft); font-size: .96rem; margin-bottom: var(--sp-2); text-transform: none; }
.ride-style .rs-meta { display: flex; gap: 16px; font-size: .8rem; font-weight: 700; color: var(--text-dim); text-transform: uppercase; letter-spacing: .06em; }
.ride-style .rs-meta span { display: inline-flex; align-items: center; gap: 5px; }
.ride-style .rs-meta svg { width: 14px; height: 14px; color: var(--violet-bright); }

/* timetable */
.timetable-wrap { overflow-x: auto; }
.timetable { width: 100%; border-collapse: collapse; min-width: 760px; background: var(--surface); border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--card-line); box-shadow: var(--shadow-sm); }
.timetable th, .timetable td { padding: 12px 10px; text-align: center; font-size: .88rem; border-bottom: 1px solid var(--line-soft); border-right: 1px solid var(--line-soft); }
.timetable th { background: var(--ink); color: #fff; font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.timetable td:first-child, .timetable th:first-child { text-align: left; font-family: var(--font-display); font-weight: 700; background: var(--surface-2); }
.timetable .cls { display: inline-block; padding: 6px 9px; border-radius: var(--r-sm); font-family: var(--font-display); font-weight: 600; font-size: .78rem; text-transform: uppercase; letter-spacing: .02em; line-height: 1.2; }
.timetable .cls.rhythm { background: rgba(122,60,255,.18); color: var(--violet-bright); border: 1px solid rgba(122,60,255,.3); }
.timetable .cls.climb { background: rgba(201,242,74,.16); color: var(--lime); border: 1px solid rgba(201,242,74,.3); }
.timetable .cls.combo { background: rgba(255,255,255,.08); color: var(--text); border: 1px solid var(--card-line); }
.timetable .cls small { display: block; font-family: var(--font-body); font-weight: 600; font-size: .66rem; opacity: .7; }
.timetable .empty { color: var(--text-dim); opacity: .4; }

/* legend */
.tt-legend { display: flex; gap: var(--sp-3); flex-wrap: wrap; justify-content: center; margin-top: var(--sp-3); }
.tt-legend span { display: inline-flex; align-items: center; gap: 8px; font-size: .85rem; font-weight: 700; color: var(--text-soft); }
.tt-legend i { width: 16px; height: 16px; border-radius: 4px; display: inline-block; }

/* ---------- Checkout ---------- */
.checkout-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: var(--sp-5); align-items: start; }
.checkout-main { display: flex; flex-direction: column; gap: var(--sp-3); }
.panel { background: var(--surface); border: 1px solid var(--card-line); border-radius: var(--r-lg); padding: var(--sp-4); box-shadow: var(--shadow-sm); }
.panel h2 { font-size: 1.5rem; margin-bottom: var(--sp-3); display: flex; align-items: center; gap: 12px; }
.panel h2 .step-n { width: 32px; height: 32px; border-radius: 50%; background: var(--grad-duo); color: var(--ink); display: grid; place-items: center; font-size: 1rem; flex: none; }

/* pricing toggle (pack/single) */
.size-toggle { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: var(--sp-3); }
.size-toggle button { padding: 10px 18px; border-radius: var(--r-pill); border: 1.5px solid var(--card-line); background: var(--surface-2); font-family: var(--font-display); font-weight: 600; font-size: .92rem; text-transform: uppercase; letter-spacing: .03em; color: var(--text); transition: all .2s; }
.size-toggle button.active { background: var(--lime); color: var(--ink); border-color: var(--lime); }

/* slots */
.slot-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(100px,1fr)); gap: 10px; }
.slot { padding: 11px 6px; border-radius: var(--r-sm); border: 1.5px solid var(--card-line); background: var(--surface-2); text-align: center; font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--text); transition: all .2s; }
.slot:hover:not(:disabled) { border-color: var(--violet); color: var(--violet-bright); }
.slot.selected { background: var(--grad-duo); color: var(--ink); border-color: transparent; }
.slot:disabled { opacity: .35; cursor: not-allowed; text-decoration: line-through; }
.slot small { display: block; font-family: var(--font-body); font-size: .62rem; font-weight: 700; opacity: .75; margin-top: 2px; text-transform: uppercase; letter-spacing: .04em; }

/* payment tabs */
.pay-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: var(--sp-3); }
.pay-tab { display: inline-flex; align-items: center; gap: 8px; padding: 11px 18px; border-radius: var(--r-sm); border: 1.5px solid var(--card-line); background: var(--surface-2); font-family: var(--font-display); font-weight: 600; font-size: .95rem; text-transform: uppercase; letter-spacing: .03em; color: var(--text); transition: all .2s; }
.pay-tab.active { border-color: var(--lime); color: var(--lime); }
.pay-tab svg { width: 20px; height: 20px; }
.pay-panel { display: none; }
.pay-panel.active { display: block; animation: fade-in .3s var(--ease); }
@keyframes fade-in { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.redirect-note { display: flex; gap: 14px; align-items: center; padding: var(--sp-3); border-radius: var(--r-md); background: var(--surface-2); border: 1.5px dashed var(--card-line); }
.redirect-note .rn-ico { width: 48px; height: 48px; border-radius: var(--r-md); display: grid; place-items: center; flex: none; color: #fff; }
.redirect-note .rn-ico svg { width: 26px; height: 26px; }
.redirect-note strong { font-family: var(--font-display); display: block; margin-bottom: 3px; font-size: 1.1rem; }
.redirect-note span { font-size: .9rem; color: var(--text-soft); }

/* summary */
.summary { position: sticky; top: calc(var(--header-h) + 16px); }
.summary-card { background: var(--surface); border: 1px solid var(--card-line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.summary-head { background: var(--ink); color: #fff; padding: var(--sp-4); position: relative; overflow: hidden; }
.summary-head::before { content: ""; position: absolute; inset: 0; background: var(--grad-duo); opacity: .12; }
.summary-head > * { position: relative; }
.summary-head .kicker { color: var(--lime); }
.summary-head h3 { color: #fff; font-size: 1.7rem; }
.summary-head .svc-dur { font-size: .88rem; color: #b9bac6; margin-top: 4px; text-transform: uppercase; letter-spacing: .05em; }
.summary-body { padding: var(--sp-4); }
.summary-line { display: flex; justify-content: space-between; padding: 9px 0; font-size: .96rem; }
.summary-line.muted { color: var(--text-soft); }
.summary-line.total { border-top: 2px solid var(--card-line); margin-top: 8px; padding-top: 16px; font-family: var(--font-display); font-weight: 800; font-size: 1.7rem; }
.summary-line.total strong, .summary-line.total span { font-family: var(--font-display); }
.promo-row { display: flex; gap: 8px; margin: var(--sp-2) 0; }
.promo-row input { flex: 1; padding: 11px 13px; border: 1.5px solid var(--card-line); border-radius: var(--r-sm); background: var(--surface-2); font-family: var(--font-display); text-transform: uppercase; font-weight: 700; font-size: .95rem; color: var(--text); letter-spacing: .04em; }
.promo-row button { padding: 11px 18px; border-radius: var(--r-sm); background: var(--violet); color: #fff; font-family: var(--font-display); font-weight: 600; font-size: .92rem; text-transform: uppercase; }
.promo-msg { font-size: .84rem; font-weight: 700; margin-bottom: var(--sp-2); display: none; }
.promo-msg.ok { display: block; color: var(--lime); }
.promo-msg.bad { display: block; color: #ff7585; }

.secure-row { display: flex; align-items: center; gap: 10px; justify-content: center; padding: var(--sp-2); color: var(--text-soft); font-size: .85rem; font-weight: 700; }
.secure-row svg { width: 18px; height: 18px; color: var(--lime); }
.badges { display: flex; flex-wrap: wrap; gap: 7px; justify-content: center; padding: 0 var(--sp-4) var(--sp-3); }
.badge-chip { font-family: var(--font-display); font-size: .72rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; padding: 5px 11px; border-radius: 6px; background: var(--surface-2); border: 1px solid var(--card-line); color: var(--text-soft); }
.demo-note { text-align: center; font-size: .8rem; color: var(--text-dim); padding: 0 var(--sp-4) var(--sp-4); font-style: italic; }

.card-input-wrap { position: relative; }
.card-input-wrap .card-type { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); font-family: var(--font-display); font-weight: 700; font-size: .8rem; color: var(--lime); letter-spacing: .04em; }

/* ---------- Success ---------- */
.success-wrap { min-height: calc(100vh - var(--header-h)); display: grid; place-items: center; padding-block: var(--sp-6); background: var(--grad-dark); position: relative; overflow: hidden; }
.success-card { background: var(--surface); border-radius: var(--r-lg); padding: var(--sp-6) var(--sp-5); box-shadow: var(--shadow-lg); max-width: 640px; text-align: center; position: relative; z-index: 2; border: 1px solid var(--card-line); }
.check-anim { width: 110px; height: 110px; margin: 0 auto var(--sp-3); }
.check-anim circle { fill: none; stroke: var(--violet); stroke-width: 5; stroke-dasharray: 320; stroke-dashoffset: 320; animation: draw-circle 0.7s var(--ease) forwards; }
.check-anim path { fill: none; stroke: var(--lime); stroke-width: 6; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 80; stroke-dashoffset: 80; animation: draw-check 0.5s var(--ease) 0.5s forwards; }
@keyframes draw-circle { to { stroke-dashoffset: 0; } }
@keyframes draw-check { to { stroke-dashoffset: 0; } }
.success-card h1 { font-size: clamp(2.4rem,6vw,3.6rem); margin-bottom: var(--sp-2); }
.success-card .lead { color: var(--text-soft); font-size: 1.1rem; margin-bottom: var(--sp-4); text-transform: none; }
.ref-box { display: inline-flex; flex-direction: column; gap: 2px; background: var(--surface-2); border: 1.5px dashed var(--lime); border-radius: var(--r-md); padding: var(--sp-2) var(--sp-4); margin-bottom: var(--sp-4); }
.ref-box span { font-size: .76rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--text-dim); }
.ref-box strong { font-family: var(--font-display); font-size: 1.9rem; color: var(--lime); letter-spacing: .06em; }
.success-summary { background: var(--surface-2); border-radius: var(--r-md); padding: var(--sp-3); margin-bottom: var(--sp-4); text-align: left; }
.success-summary .summary-line.total { font-size: 1.3rem; }
.steps { display: grid; gap: var(--sp-2); text-align: left; margin-bottom: var(--sp-4); }
.step-item { display: flex; gap: 14px; align-items: flex-start; }
.step-item .s-num { width: 36px; height: 36px; border-radius: 50%; background: var(--grad-duo); color: var(--ink); display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; flex: none; }
.step-item strong { display: block; font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 2px; text-transform: uppercase; letter-spacing: .02em; }
.step-item p { color: var(--text-soft); font-size: .92rem; text-transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid, .about-story, .contact-grid, .checkout-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 380px; margin-inline: auto; order: -1; }
  .summary { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0; flex-direction: column; gap: 4px;
    background: var(--surface); padding: var(--sp-3); box-shadow: var(--shadow-lg);
    border-bottom: 1px solid var(--card-line); transform: translateY(-130%); transition: transform .4s var(--ease);
    align-items: stretch; max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  }
  .nav.open { transform: translateY(0); }
  .nav a { padding: 13px 16px; font-size: 1.1rem; border-radius: var(--r-sm); }
  .nav a.active::after { display: none; }
  .nav a.active { background: var(--surface-2); }
  .join-bar { display: flex; }
  .svc-row { grid-template-columns: 1fr; }
  .svc-row .svc-ico { display: none; }
  .svc-action { align-items: flex-start; }
  .svc-action .price .per { text-align: left; }
  body { padding-bottom: 76px; }
}
@media (max-width: 560px) {
  :root { --sp-7: 64px; }
  .field-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 180px; }
  .tile.wide { grid-column: span 1; }
  .pay-tab span { display: none; }
  .pay-tab { padding: 11px 14px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-ctas { width: 100%; }
  .hero-ctas .btn { flex: 1; justify-content: center; }
}
