/* ============ SRWash — refined dark edition ============ */
:root {
  --bg: #000000;
  --bg-elev: #0a0a0c;
  --panel: #111113;
  --hairline: rgba(255, 255, 255, 0.09);
  --hairline-strong: rgba(255, 255, 255, 0.18);
  --text: #f5f5f7;
  --muted: #86868b;
  --accent: #7d7aff;
  --accent-2: #c974f0;
  --grad: linear-gradient(100deg, #7d7aff, #c974f0);
  --mint: #6ee7b7;
  --radius: 18px;
  --container-max: 1100px;
  --container-pad: clamp(20px, 5vw, 48px);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: rgba(125, 122, 255, 0.4); }

h1, h2, h3, h4 {
  font-weight: 700;
  letter-spacing: -0.025em;
}

a { color: inherit; text-decoration: none; }

.icon {
  width: 26px;
  height: 26px;
  stroke: url(#iconGrad);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  color: var(--accent);
  stroke: currentColor;
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  letter-spacing: -0.01em;
  border-radius: 999px;
  padding: 13px 26px;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background-color 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
  white-space: nowrap;
}
.btn--big { padding: 16px 32px; font-size: 16px; }
.btn--small { padding: 9px 18px; font-size: 13.5px; }
.btn--primary {
  background: linear-gradient(180deg, #8а84ff, #6f6bf2);
  background: linear-gradient(180deg, #8a84ff, #6f6bf2);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(111, 107, 242, 0.35);
}
.btn--primary:hover {
  transform: translateY(-1px) scale(1.015);
  box-shadow: 0 12px 32px rgba(111, 107, 242, 0.45);
}
/* scale on press: 0.96, never lower (better-ui) */
.btn:active { transform: translateY(0) scale(0.96); }
.btn--secondary {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--hairline);
  color: var(--text);
}
.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--hairline-strong);
  transform: translateY(-1px);
}
.btn__arrow { transition: transform 0.3s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }

.textlink {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #a5a1ff;
  font-weight: 500;
  font-size: 16px;
  transition: gap 0.3s var(--ease), color 0.2s ease;
}
.textlink:hover { gap: 10px; color: #c0bdff; }

/* ============ Nav ============ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 14px var(--container-pad);
  background: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}
.nav--scrolled { border-bottom-color: var(--hairline); }
.nav__logo {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
}
.nav__logo-mark {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.nav__links {
  display: flex;
  gap: 28px;
  margin-left: auto;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--muted);
}
.nav__links a { transition: color 0.25s ease; padding: 6px 0; }
.nav__links a:hover { color: var(--text); }
.nav__burger { display: none; }

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(100px, 13vh, 140px) var(--container-pad) 0;
  max-width: var(--container-max);
  margin: 0 auto;
  text-align: center;
  overflow: visible;
}
.hero__glow {
  position: absolute;
  bottom: -6%;
  left: 50%;
  transform: translateX(-50%);
  width: min(1000px, 130vw);
  aspect-ratio: 2 / 1;
  background: radial-gradient(closest-side, rgba(125, 122, 255, 0.16), transparent 72%);
  pointer-events: none;
}
.hero__eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  border: 1px solid var(--hairline);
  background: rgba(255, 255, 255, 0.04);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 28px;
}
.pulse-dot {
  width: 7px; height: 7px;
  background: var(--mint);
  border-radius: 50%;
  animation: pulse 2.2s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(110, 231, 183, 0.5); }
  70% { box-shadow: 0 0 0 10px rgba(110, 231, 183, 0); }
  100% { box-shadow: 0 0 0 0 rgba(110, 231, 183, 0); }
}

.hero__title {
  position: relative;
  font-size: clamp(44px, 7.2vw, 88px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.035em;
}
.hero__line { display: block; }
.hero__line--accent .word-reveal__word,
.hero__line--accent {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

html.js .word-reveal[data-word-reveal]:not(.is-ready) { opacity: 0; }
.word-reveal__word {
  display: inline-block;
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
  transition-delay: calc(var(--word-base, 0s) + var(--word-index) * 0.07s);
  will-change: opacity, transform;
}
.word-reveal.is-visible .word-reveal__word {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.hero__sub {
  position: relative;
  margin: 24px auto 0;
  max-width: 600px;
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.55;
  color: var(--muted);
}
.hero__sub strong { color: var(--text); font-weight: 500; }

.hero__actions {
  position: relative;
  margin-top: 36px;
  display: flex;
  gap: 22px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* ---- hero visual (sleek car in the hero) ---- */
.hero__visual {
  position: relative;
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: min(880px, 100%);
  margin-top: clamp(20px, 4vh, 48px);
}
.carimg {
  position: relative;
  overflow: hidden;
  width: min(760px, 100%);
}
.carimg img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 44svh;
  object-fit: contain;
  opacity: 0.9;
}
.carimg__sweep {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 140px;
  background: linear-gradient(100deg, rgba(125, 122, 255, 0) 0%, rgba(125, 122, 255, 0.28) 50%, rgba(201, 116, 240, 0) 100%);
  mix-blend-mode: screen;
  transform: skewX(-18deg);
  animation: sweep 7s var(--ease) infinite;
  animation-delay: 1.2s;
  pointer-events: none;
}
@keyframes sweep {
  0% { left: -20%; opacity: 0; }
  12% { opacity: 1; }
  55% { left: 110%; opacity: 1; }
  60%, 100% { left: 110%; opacity: 0; }
}

/* stats band */
.statsbar {
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: var(--bg-elev);
}
.hero__stats {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 26px 12px;
  text-align: center;
}
.stat + .stat { border-left: 1px solid var(--hairline); }
.stat__num {
  display: block;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.stat__label {
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 500;
}

/* ============ Feature strip ============ */
.marquee {
  border-bottom: 1px solid var(--hairline);
  overflow: hidden;
  padding: 18px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
}
.marquee__track {
  display: flex;
  gap: 48px;
  align-items: center;
  width: max-content;
  animation: marquee 46s linear infinite;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--muted);
  white-space: nowrap;
  will-change: transform;
}
.marquee__track i { color: rgba(125, 122, 255, 0.7); font-style: normal; font-size: 9px; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-33.333%); } }

/* ============ Sections ============ */
.section {
  padding: clamp(88px, 12vw, 150px) var(--container-pad);
  max-width: var(--container-max);
  margin: 0 auto;
}
.section--alt {
  max-width: none;
  background: var(--bg-elev);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.section--alt > * { max-width: var(--container-max); margin-left: auto; margin-right: auto; }

.section__head { text-align: center; margin-bottom: clamp(48px, 6vw, 72px); }
.section__eyebrow {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 14px;
}
.section__title {
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.section__title em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section__sub {
  margin: 18px auto 0;
  max-width: 560px;
  color: var(--muted);
  font-size: 17px;
}
.section__sub strong { color: var(--text); font-weight: 500; }

/* ============ Service cards ============ */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  position: relative;
  padding: 32px 28px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  background: var(--panel);
  transition: transform 0.5s var(--ease), border-color 0.4s ease, background-color 0.4s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--hairline-strong);
  background: #141416;
}
.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(125, 122, 255, 0.1);
  color: #a5a1ff;
  margin-bottom: 20px;
  transition: transform 0.5s var(--ease);
}
.card:hover .card__icon { transform: scale(1.06); }
.card h3 { font-size: 18px; font-weight: 600; letter-spacing: -0.015em; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 14.5px; line-height: 1.55; }

/* ============ Price list ============ */
.pricelist {
  max-width: 720px !important;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 8px clamp(20px, 4vw, 36px);
}
.pricelist__row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 22px 0;
}
.pricelist__row + .pricelist__row { border-top: 1px solid var(--hairline); }
.pricelist__name {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
  display: flex;
  flex-direction: column;
}
.pricelist__name small {
  font-weight: 400;
  font-size: 13px;
  color: var(--muted);
}
.pricelist__dots { flex: 1; }
.pricelist__price {
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.pricelist__price small { font-size: 13px; color: var(--muted); font-weight: 400; }

/* ============ Plans ============ */
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}
.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 36px 30px;
  border: 1px solid var(--hairline);
  border-radius: 22px;
  background: var(--panel);
  transition: transform 0.5s var(--ease), border-color 0.4s ease;
}
.plan:hover { transform: translateY(-4px); border-color: var(--hairline-strong); }
.plan--featured {
  border: 1px solid transparent;
  background:
    linear-gradient(var(--panel), var(--panel)) padding-box,
    linear-gradient(140deg, rgba(125, 122, 255, 0.8), rgba(201, 116, 240, 0.8)) border-box;
}
.plan--featured:hover { transform: translateY(-6px); }
.plan__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad);
  color: #fff;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.02em;
  padding: 5px 14px;
  border-radius: 999px;
}
.plan__name { font-size: 21px; font-weight: 700; letter-spacing: -0.02em; }
.plan__tagline { color: var(--muted); font-size: 14px; margin-top: 4px; }
.plan__price {
  margin-top: 24px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.plan__amount { font-size: 40px; font-weight: 700; letter-spacing: -0.03em; }
.plan__currency { font-weight: 500; color: var(--muted); font-size: 18px; }
.plan__bonus {
  margin-top: 4px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--mint);
}
.plan__features {
  list-style: none;
  margin: 26px 0 30px;
  display: grid;
  gap: 11px;
  font-size: 14px;
  color: #b9b9c0;
}
.plan__features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.plan__features li::before {
  content: "";
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 3px;
  background: currentColor;
  color: #a5a1ff;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / contain no-repeat;
}
.plan__cta { margin-top: auto; }
.plans__note {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  margin-top: 36px;
}
.plans__note a { color: #a5a1ff; }
.plans__note a:hover { text-decoration: underline; }

/* ============ Savings calculator ============ */
.calc {
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  background: var(--panel);
  padding: clamp(28px, 4vw, 40px);
  margin-top: 48px;
}
.calc__title {
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 26px;
}
.calc__slider {
  display: grid;
  gap: 10px;
  max-width: 560px;
  margin: 0 auto;
}
.calc__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}
.calc__slider input[type="range"] {
  width: 100%;
  accent-color: var(--accent);
  cursor: pointer;
}
.calc__value {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: center;
}
.calc__base {
  text-align: center;
  color: var(--muted);
  font-size: 14.5px;
  margin-top: 18px;
}
.calc__base strong { color: var(--text); font-weight: 600; }
.calc__results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
}
.calc__tier {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: center;
  padding: 22px 16px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
  transition: transform 0.5s var(--ease), opacity 0.4s ease;
}
.calc__tier-name { font-size: 16px; font-weight: 700; letter-spacing: -0.015em; }
.calc__tier-discount { font-size: 12.5px; color: var(--muted); font-weight: 500; margin-bottom: 10px; }
.calc__tier-saving {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #b9b9c0;
}
.calc__tier-per { font-size: 12px; color: var(--muted); font-weight: 500; }
.calc__tier.is-best {
  border: 1px solid transparent;
  background:
    linear-gradient(var(--panel), var(--panel)) padding-box,
    linear-gradient(140deg, rgba(125, 122, 255, 0.8), rgba(201, 116, 240, 0.8)) border-box;
  transform: translateY(-2px);
}
.calc__tier.is-best .calc__tier-saving { color: var(--text); }
.calc__tier.is-best .calc__tier-name {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.calc__note {
  text-align: center;
  color: var(--muted);
  font-size: 12.5px;
  margin-top: 20px;
}

/* ============ Big CTA ============ */
.bigcta {
  position: relative;
  background:
    radial-gradient(600px 360px at 50% 120%, rgba(125, 122, 255, 0.16), transparent 72%),
    var(--bg);
  padding: clamp(100px, 14vw, 160px) 24px;
  text-align: center;
  overflow: hidden;
}
.bigcta h2 {
  font-size: clamp(34px, 5.6vw, 62px);
  letter-spacing: -0.03em;
  max-width: 760px;
  margin: 0 auto 32px;
  line-height: 1.08;
}
.shine {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============ FAQ ============ */
.faq {
  max-width: 720px !important;
  border-top: 1px solid var(--hairline);
}
.faq details { border-bottom: 1px solid var(--hairline); }
.faq summary {
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  list-style: none;
  padding: 24px 4px;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.015em;
  transition: color 0.25s ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: #c0bdff; }
.faq summary::after {
  content: "";
  margin-left: auto;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  background: var(--muted);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round'%3E%3Cline x1='12' y1='5' x2='12' y2='19'/%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round'%3E%3Cline x1='12' y1='5' x2='12' y2='19'/%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform 0.35s var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p {
  padding: 0 4px 24px;
  color: var(--muted);
  font-size: 15px;
  max-width: 620px;
}
.faq details p a { color: #a5a1ff; }
.faq__num { display: none; }

/* ============ Contact ============ */
.contact {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  align-items: start;
}
.contact__info { display: grid; gap: 14px; }
.contact__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 22px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  background: var(--panel);
  transition: border-color 0.3s ease, background-color 0.3s ease;
}
.contact__item:hover { border-color: var(--hairline-strong); background: #141416; }
.contact__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(125, 122, 255, 0.1);
  color: #a5a1ff;
}
.contact__icon .icon { width: 20px; height: 20px; }
.contact__item h4 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 2px;
}
.contact__item p { font-size: 15.5px; font-weight: 500; }
.contact__item a:hover { color: #a5a1ff; }
.contact__map {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--hairline);
  min-height: 400px;
  filter: grayscale(1) invert(0.92) contrast(0.9);
}
.contact__map iframe { width: 100%; height: 100%; min-height: 400px; border: 0; display: block; }

/* ============ Footer ============ */
.footer {
  border-top: 1px solid var(--hairline);
  padding: 32px var(--container-pad);
}
.footer__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 13px;
}

/* ============ Reveal ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  html.js .word-reveal[data-word-reveal]:not(.is-ready),
  .word-reveal__word { opacity: 1; transform: none; transition: none; }
}

/* ============ Responsive ============ */
@media (max-width: 960px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .plans { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .contact { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav__links {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.94);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    font-size: 21px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .nav__links.is-open { opacity: 1; pointer-events: auto; }
  .nav__cta { display: none; }
  .nav__burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-left: auto;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 8px;
    z-index: 110;
  }
  .nav__burger span {
    width: 24px; height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__burger.is-open span:nth-child(2) { opacity: 0; }
  .nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .cards { grid-template-columns: 1fr; }
  .calc__results { grid-template-columns: 1fr; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: 0; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--hairline); }
}

/* ============ Top-up flow (feltoltes.html) ============ */
.topup {
  max-width: 480px;
  margin: 0 auto;
  padding: clamp(130px, 16vh, 180px) var(--container-pad) 120px;
}
.topup__head { text-align: center; margin-bottom: 40px; }
.topup__head h1 { font-size: clamp(30px, 5vw, 40px); letter-spacing: -0.03em; }
.topup__head p { color: var(--muted); margin-top: 10px; font-size: 15.5px; }

.topup__step {
  display: none;
  border: 1px solid var(--hairline);
  border-radius: 22px;
  background: var(--panel);
  padding: 30px 28px;
}
.topup__step.is-active {
  display: block;
  animation: step-in 0.55s var(--ease) both;
}
@keyframes step-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 8px;
}
.field input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 500;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}
.field input:focus {
  border-color: rgba(125, 122, 255, 0.7);
  box-shadow: 0 0 0 4px rgba(125, 122, 255, 0.15);
}
.field input.is-invalid { border-color: rgba(255, 99, 99, 0.7); }
.field__hint { font-size: 12.5px; color: var(--muted); margin-top: 8px; }
.field__error {
  font-size: 13px;
  color: #ff6b6b;
  margin-top: 8px;
  display: none;
}
.field__error.is-visible { display: block; }

.balance-card {
  position: relative;
  border-radius: 18px;
  padding: 22px 24px;
  margin-bottom: 22px;
  background:
    radial-gradient(140% 140% at 10% 0%, rgba(125, 122, 255, 0.25), transparent 55%),
    radial-gradient(140% 140% at 100% 100%, rgba(201, 116, 240, 0.18), transparent 55%),
    #17171a;
  border: 1px solid var(--hairline-strong);
}
.balance-card__label { font-size: 12px; font-weight: 600; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; }
.balance-card__amount { font-size: 34px; font-weight: 700; letter-spacing: -0.03em; margin-top: 4px; }
.balance-card__id { font-size: 13px; color: var(--muted); margin-top: 10px; }

.amounts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.amount-chip {
  border: 1px solid var(--hairline);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  color: var(--text);
  font-family: var(--font);
  padding: 14px 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: border-color 0.25s ease, background-color 0.25s ease, transform 0.3s var(--ease);
}
.amount-chip small { display: block; font-size: 11.5px; font-weight: 500; color: var(--mint); margin-top: 3px; }
.amount-chip:hover { border-color: var(--hairline-strong); }
.amount-chip.is-selected {
  border-color: rgba(125, 122, 255, 0.8);
  background: rgba(125, 122, 255, 0.12);
}

.summary {
  border-top: 1px solid var(--hairline);
  margin-top: 20px;
  padding-top: 16px;
  display: grid;
  gap: 8px;
  font-size: 14.5px;
}
.summary__row { display: flex; justify-content: space-between; color: var(--muted); }
.summary__row strong { color: var(--text); font-weight: 600; }
.summary__row--total { font-size: 16px; padding-top: 8px; border-top: 1px solid var(--hairline); }
.summary__row--total span:first-child { color: var(--text); font-weight: 600; }

.topup__actions { margin-top: 24px; display: grid; gap: 10px; }
.topup__actions .btn { width: 100%; }

.demo-note {
  margin-top: 18px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 214, 102, 0.08);
  border: 1px solid rgba(255, 214, 102, 0.25);
  color: #e6c86e;
  font-size: 13px;
  text-align: center;
}

.spinner {
  width: 22px;
  height: 22px;
  border: 2.5px solid rgba(255, 255, 255, 0.25);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.success-mark {
  width: 72px;
  height: 72px;
  margin: 6px auto 20px;
  border-radius: 50%;
  background: rgba(110, 231, 183, 0.12);
  border: 1px solid rgba(110, 231, 183, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}
.success-mark svg {
  width: 32px;
  height: 32px;
  stroke: var(--mint);
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 30;
  stroke-dashoffset: 30;
  animation: draw-check 0.7s var(--ease) 0.25s forwards;
}
@keyframes draw-check { to { stroke-dashoffset: 0; } }

.topup__success { text-align: center; }
.topup__success h2 { font-size: 24px; letter-spacing: -0.02em; margin-bottom: 6px; }
.topup__success .tx { font-size: 12.5px; color: var(--muted); margin-top: 14px; }

/* ============ Craft pass (better-* skills) ============ */

/* -- accessibility: visible focus rings (better-accessibility #2) -- */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}
.btn:focus-visible,
.amount-chip:focus-visible {
  outline-offset: 3px;
  border-radius: inherit;
}

/* -- accessibility: skip link (better-accessibility #13) -- */
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  background: var(--panel);
  color: var(--text);
  border: 1px solid var(--hairline-strong);
  border-radius: 10px;
  padding: 10px 16px;
  font-weight: 600;
  font-size: 14px;
  transform: translateY(-200%);
}
.skip-link:focus-visible { transform: none; }

/* -- accessibility: anchored headings clear the fixed nav -- */
section[id] { scroll-margin-top: 84px; }

/* -- accessibility: comfortable nav hit areas (better-accessibility #5) -- */
.nav__links a { padding: 10px 4px; }

/* -- typography: equal-width digits for numeric UI (better-typography) -- */
.stat__num,
.plan__amount,
.pricelist__price,
.balance-card__amount,
.summary strong,
.calc output,
.calc strong,
.tx {
  font-variant-numeric: tabular-nums;
}

/* -- typography: wrapping (better-typography) -- */
.hero__title,
.section__title,
.bigcta h2,
.topup__head h1 {
  text-wrap: balance;
}
.hero__sub,
.section__sub,
.card p,
.faq details p,
.plans__note,
.topup__head p {
  text-wrap: pretty;
}

/* -- ui: press feedback on amount chips (better-ui #9) -- */
.amount-chip:active { transform: scale(0.96); }
