/* ============================================================
   UltraCheapWebsites.com — main stylesheet
   ============================================================ */

:root {
  --bg: #0b0f1a;
  --bg-2: #0f1424;
  --surface: #131a2c;
  --surface-2: #1a2240;
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.14);

  --text: #e9ecf6;
  --text-soft: #b7bed1;
  --text-mute: #8993ad;

  --brand: #7c5cff;
  --brand-2: #5ce1ff;
  --brand-3: #ff5cb8;
  --accent: #ffd166;

  --grad-1: linear-gradient(135deg, #7c5cff 0%, #5ce1ff 100%);
  --grad-2: linear-gradient(135deg, #ff5cb8 0%, #7c5cff 60%, #5ce1ff 100%);
  --grad-text: linear-gradient(135deg, #a48bff 0%, #5ce1ff 50%, #ff89cf 100%);

  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 14px 40px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 0 60px rgba(124, 92, 255, 0.35);

  --radius: 14px;
  --radius-lg: 22px;

  --maxw: 1180px;
  --pad: clamp(1rem, 2.6vw, 1.6rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
  color: var(--text);
}
h1 { font-size: clamp(2.4rem, 5.4vw, 4.6rem); font-weight: 800; letter-spacing: -0.035em; }
h2 { font-size: clamp(1.8rem, 3.6vw, 3rem); }
h3 { font-size: 1.25rem; }
p  { color: var(--text-soft); margin: 0 0 1em; }
strong { color: var(--text); }

.grad {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.eyebrow {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-2);
  padding: 0.35rem 0.7rem;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: rgba(92, 225, 255, 0.06);
  margin-bottom: 1rem;
}

/* ============================ BUTTONS ============================ */
.btn {
  --btn-bg: var(--surface);
  --btn-color: var(--text);
  --btn-border: var(--line-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  border: 1px solid var(--btn-border);
  background: var(--btn-bg);
  color: var(--btn-color);
  font-weight: 600;
  font-size: 0.97rem;
  letter-spacing: -0.005em;
  transition: transform .15s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease, opacity .2s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

.btn--primary {
  --btn-bg: var(--brand);
  --btn-color: #fff;
  --btn-border: transparent;
  background-image: var(--grad-1);
  box-shadow: 0 10px 30px -10px rgba(124, 92, 255, 0.7);
}
.btn--primary:hover { box-shadow: 0 16px 40px -12px rgba(92, 225, 255, 0.6); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-color: var(--text);
}
.btn--ghost:hover { background: var(--surface); border-color: var(--line-2); }

.btn--sm  { padding: 0.55rem 0.95rem; font-size: 0.88rem; }
.btn--lg  { padding: 1.05rem 1.6rem; font-size: 1.02rem; }
.btn--block { display: flex; width: 100%; }

.btn__spinner {
  display: none;
  width: 14px; height: 14px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.btn.is-loading .btn__label { opacity: 0.7; }
.btn.is-loading .btn__spinner { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================ ANNOUNCEMENT BAR ============================ */
.announce {
  position: relative;
  background: linear-gradient(90deg, #7c5cff 0%, #5ce1ff 50%, #ff5cb8 100%);
  background-size: 200% 100%;
  animation: announce-shift 9s linear infinite;
  color: #ffffff;
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
@keyframes announce-shift {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}
.announce__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem 0.9rem;
  padding: 0.6rem var(--pad);
  text-align: center;
}
.announce__tag {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 0.15rem 0.7rem;
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.announce__text strong { color: #fff; font-weight: 700; }
.announce__text a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-left: 0.2rem;
}
.announce__text a:hover { text-decoration: none; }

/* ============================ NAV ============================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 15, 26, 0.6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
  gap: 1rem;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}
.logo__mark {
  display: grid;
  place-items: center;
  width: 32px; height: 32px;
  border-radius: 9px;
  background-image: var(--grad-1);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 6px 16px -4px rgba(124, 92, 255, 0.6);
}
.logo__text { color: var(--text); }
.logo__accent {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 0.4rem 1.4rem;
}
.nav__links > a {
  color: var(--text-soft);
  font-weight: 500;
  font-size: 0.94rem;
  padding: 0.35rem 0;
  transition: color .15s ease;
}
.nav__links > a:hover { color: var(--text); }
.nav__links .btn { padding-top: 0.5rem; padding-bottom: 0.5rem; }

.nav__toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.nav__toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}

/* ============================ HERO ============================ */
.hero {
  position: relative;
  padding: clamp(4rem, 9vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0;
  z-index: -1;
  pointer-events: none;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  animation: float 14s ease-in-out infinite;
}
.blob--1 { width: 520px; height: 520px; background: #7c5cff; top: -10%; left: -8%; animation-delay: 0s; }
.blob--2 { width: 480px; height: 480px; background: #5ce1ff; top: 20%; right: -8%; animation-delay: -3s; }
.blob--3 { width: 380px; height: 380px; background: #ff5cb8; bottom: -10%; left: 30%; animation-delay: -7s; opacity: 0.35; }
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(20px, -25px) scale(1.06); }
}
.grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.8), transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.8), transparent 70%);
}
.hero__inner {
  position: relative;
  text-align: center;
  max-width: 920px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-2);
  color: var(--text-soft);
  font-size: 0.86rem;
  margin-bottom: 1.5rem;
}
.pill__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.18);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.35); }
}
.hero__title { margin-bottom: 1.2rem; }
.hero__title .price {
  background: var(--grad-2);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__sub {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  color: var(--text-soft);
  max-width: 680px;
  margin: 0 auto 2rem;
}
.hero__cta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 2.6rem;
}
.hero__points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 1.6rem;
  color: var(--text-soft);
  font-size: 0.95rem;
}
.hero__points li::before {
  content: "✓";
  color: var(--brand-2);
  margin-right: 0.5rem;
  font-weight: 700;
}

/* ============================ TRUST STRIP ============================ */
.trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 2rem 0;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.015) 50%, transparent);
}
.trust__label {
  text-align: center;
  margin: 0 0 1rem;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.trust__row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem 2.6rem;
  opacity: 0.7;
}
.trust__row span {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-soft);
  letter-spacing: 0.02em;
}

/* ============================ SECTIONS ============================ */
.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
}
.section__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem;
}
.section__head--left { text-align: left; margin-left: 0; }
.section__head p { font-size: 1.05rem; }

/* ============================ OFFERS / CARDS ============================ */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.4rem;
}
.card {
  position: relative;
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  padding: 2rem 1.7rem;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 92, 255, 0.35);
  box-shadow: 0 18px 50px -20px rgba(124, 92, 255, 0.35);
}
.card--feature {
  background: linear-gradient(180deg, rgba(124, 92, 255, 0.12), var(--bg-2) 70%);
  border-color: rgba(124, 92, 255, 0.45);
  box-shadow: var(--shadow-glow);
}
.card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-1);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  box-shadow: 0 6px 14px -4px rgba(124, 92, 255, 0.55);
}
.card__title { font-size: 1.35rem; margin-bottom: 0.4rem; }
.card__lead { color: var(--text-soft); margin-bottom: 1.4rem; min-height: 4em; }
.card__price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1.4rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px dashed var(--line);
}
.card__amount {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  letter-spacing: -0.03em;
  color: var(--text);
}
.card__unit { color: var(--text-mute); font-size: 0.9rem; }
.card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.6rem;
  flex: 1;
}
.card__list li {
  padding: 0.45rem 0 0.45rem 1.7rem;
  position: relative;
  color: var(--text-soft);
}
.card__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 18px; height: 18px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: rgba(92, 225, 255, 0.12);
  background-image: linear-gradient(135deg, rgba(124,92,255,0.25), rgba(92,225,255,0.25));
}
.card__list li::after {
  content: "✓";
  position: absolute;
  left: 4px; top: 50%;
  transform: translateY(-50%);
  color: var(--brand-2);
  font-size: 0.78rem;
  font-weight: 700;
}
.offers__note {
  text-align: center;
  margin-top: 1.4rem;
  font-size: 0.88rem;
  color: var(--text-mute);
}

.card__tag {
  display: inline-block;
  margin-left: 0.4rem;
  padding: 0.1rem 0.5rem;
  border-radius: 999px;
  background: var(--grad-1);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  vertical-align: middle;
  white-space: nowrap;
}

.promo {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.4rem;
  align-items: start;
  padding: 1.6rem 1.8rem;
  background:
    radial-gradient(circle at 0% 0%, rgba(124,92,255,0.25), transparent 60%),
    radial-gradient(circle at 100% 100%, rgba(92,225,255,0.18), transparent 60%),
    linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid rgba(124, 92, 255, 0.4);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glow);
}
.promo__icon {
  font-size: 2.6rem;
  line-height: 1;
  filter: drop-shadow(0 4px 12px rgba(124,92,255,0.4));
}
.promo__body h3 {
  margin-bottom: 0.4rem;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.promo__body p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.96rem;
}
@media (max-width: 560px) {
  .promo { grid-template-columns: 1fr; padding: 1.4rem; }
  .promo__icon { font-size: 2rem; }
  .card__tag { display: inline-block; margin-left: 0; margin-top: 0.3rem; }
}

/* ============================ STEPS ============================ */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
  counter-reset: step;
}
.step {
  position: relative;
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.5rem;
  transition: transform .2s ease, border-color .2s ease;
}
.step:hover { transform: translateY(-3px); border-color: var(--line-2); }
.step__num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  letter-spacing: -0.02em;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.6rem;
}
.step h3 { margin-bottom: 0.4rem; }
.step p { font-size: 0.95rem; margin: 0; }

/* ============================ WHY / VISUAL ============================ */
.why__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.why__copy p { font-size: 1.03rem; }
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.stat {
  padding: 1.2rem 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.stat__num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.35rem;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat__num span { font-size: 1rem; opacity: 0.7; margin-left: 0.15rem; }
.stat__lbl { color: var(--text-mute); font-size: 0.85rem; }

.why__visual {
  position: relative;
  min-height: 360px;
}
.window {
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 2;
}
.window--back {
  position: absolute;
  top: 50px;
  left: 60px;
  right: -20px;
  z-index: 1;
  opacity: 0.6;
  transform: rotate(2deg);
}
.window__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.7rem 0.9rem;
  background: var(--surface-2);
  border-bottom: 1px solid var(--line);
}
.window__bar span {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
}
.window__bar span:nth-child(1) { background: #ff5f57; }
.window__bar span:nth-child(2) { background: #febc2e; }
.window__bar span:nth-child(3) { background: #28c840; }
.window__url {
  margin-left: 0.7rem;
  background: rgba(0,0,0,0.25);
  border: 1px solid var(--line);
  color: var(--text-mute);
  font-size: 0.78rem;
  padding: 0.25rem 0.7rem;
  border-radius: 6px;
  font-family: 'Space Grotesk', monospace;
}
.window__body {
  padding: 1.5rem 1.4rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.mock-line {
  height: 12px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--surface-2), rgba(124,92,255,0.25), var(--surface-2));
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}
.w-80 { width: 80%; }
.w-70 { width: 70%; }
.w-60 { width: 60%; }
.w-50 { width: 50%; }
.w-40 { width: 40%; }
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.mock-cta {
  margin-top: 0.4rem;
  width: 140px;
  height: 38px;
  border-radius: 999px;
  background-image: var(--grad-1);
}
.mock-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}
.mock-grid > div {
  aspect-ratio: 1.3;
  border-radius: 10px;
  background: var(--surface-2);
  border: 1px solid var(--line);
}
.window--back .mock-grid { grid-template-columns: repeat(2, 1fr); }

/* ============================ FORM ============================ */
.request .section__head { margin-bottom: 2.5rem; }
.form {
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3vw, 2.4rem);
  box-shadow: var(--shadow-md);
  max-width: 880px;
  margin: 0 auto;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
  position: relative;
}
.field__label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.field__hint {
  color: var(--text-mute);
  font-weight: 400;
  font-size: 0.8rem;
}
.field__counter {
  font-size: 0.78rem;
  color: var(--text-mute);
  margin-top: -0.2rem;
  align-self: flex-end;
}
.field input,
.field select,
.field textarea {
  background: rgba(0,0,0,0.25);
  border: 1px solid var(--line-2);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  color: var(--text);
  font: inherit;
  font-size: 0.96rem;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
  width: 100%;
}
.field input::placeholder,
.field textarea::placeholder {
  color: #5e6781;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brand);
  background: rgba(0,0,0,0.35);
  box-shadow: 0 0 0 4px rgba(124,92,255,0.16);
}
.field textarea { resize: vertical; min-height: 140px; line-height: 1.55; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8'%3E%3Cpath fill='%238993ad' d='M1 1l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.4rem;
}
.field--check {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.7rem;
}
.field--check input { width: 18px; height: 18px; margin-top: 3px; flex-shrink: 0; }
.field--check span { font-size: 0.92rem; color: var(--text-soft); }

.hp {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form__turnstile {
  margin: 0.4rem 0 1.1rem;
  display: flex;
  justify-content: center;
}

.form__status {
  margin: 1rem 0 0;
  text-align: center;
  font-size: 0.95rem;
  min-height: 1.4em;
}
.form__status.is-success { color: #4ade80; }
.form__status.is-error { color: #ff8e8e; }

/* ============================ PAY ============================ */
.pay__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.pay__list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}
.pay__list li {
  padding: 0.4rem 0;
  display: flex;
  gap: 0.6rem;
  color: var(--text-soft);
}
.pay__list span {
  color: var(--brand-2);
  font-weight: 700;
}
.pay__card {
  background: linear-gradient(180deg, rgba(124,92,255,0.14), var(--surface));
  border: 1px solid rgba(124, 92, 255, 0.4);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: var(--shadow-glow);
  text-align: center;
}
.pay__amount {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 0.3rem;
  margin-bottom: 1rem;
}
.pay__currency {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--text-soft);
}
.pay__num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 5rem;
  letter-spacing: -0.04em;
  line-height: 1;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pay__tax {
  color: var(--text-mute);
  font-size: 0.95rem;
  margin-left: 0.4rem;
}
.pay__desc {
  color: var(--text-soft);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}
.pay__card .btn { margin-bottom: 0.7rem; }
.pay__note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-mute);
}
.pay__note a { color: var(--brand-2); text-decoration: underline; }

/* ============================ FAQ ============================ */
.faq__list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.faq__item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.2rem 1.2rem;
  transition: border-color .2s ease, background .2s ease;
}
.faq__item[open] { border-color: var(--line-2); background: var(--surface-2); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 600;
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--text);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text-mute);
  transition: transform .2s ease;
}
.faq__item[open] summary::after { transform: rotate(45deg); color: var(--brand-2); }
.faq__item p {
  margin: 0 0 1.1rem;
  color: var(--text-soft);
  font-size: 0.97rem;
}

/* ============================ CTA STRIP ============================ */
.cta {
  position: relative;
  padding: clamp(3rem, 6vw, 5rem) 0;
  background:
    radial-gradient(ellipse at top left, rgba(124,92,255,0.25), transparent 60%),
    radial-gradient(ellipse at bottom right, rgba(92,225,255,0.18), transparent 60%),
    var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.cta__inner h2 { margin-bottom: 0.4rem; }
.cta__inner p { font-size: 1.05rem; margin-bottom: 1.5rem; }
.cta__buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.7rem;
}

/* ============================ FOOTER ============================ */
.footer {
  padding: 3rem 0 1.5rem;
  background: #070912;
  color: var(--text-mute);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 2.5rem;
  align-items: start;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}
.footer__brand p { margin: 0.7rem 0 0; font-size: 0.92rem; max-width: 320px; }
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.footer__cols h4 {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 0.7rem;
}
.footer__cols a {
  display: block;
  padding: 0.25rem 0;
  font-size: 0.92rem;
  color: var(--text-mute);
  transition: color .2s ease;
}
.footer__cols a:hover { color: var(--text); }
.footer__bottom {
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.82rem;
}

/* ============================ 404 PAGE ============================ */
.notfound { padding-top: clamp(3rem, 7vw, 5rem); }
.notfound__num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: clamp(7rem, 18vw, 12rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.4rem;
  filter: drop-shadow(0 12px 36px rgba(124, 92, 255, 0.35));
}
.notfound__links {
  margin: 2.4rem auto 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 1.4rem;
  max-width: 720px;
}
.notfound__links a {
  color: var(--text-soft);
  border-bottom: 1px dashed var(--line-2);
  padding-bottom: 1px;
  font-size: 0.95rem;
  transition: color .15s ease, border-color .15s ease;
}
.notfound__links a:hover {
  color: var(--brand-2);
  border-color: var(--brand-2);
}

/* ============================ LEGAL PAGES ============================ */
.legal {
  padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(4rem, 8vw, 6rem);
}
.legal__inner {
  max-width: 760px;
}
.legal__back {
  margin: 0 0 1.6rem;
  font-size: 0.92rem;
}
.legal__back a {
  color: var(--text-mute);
  transition: color .15s ease;
}
.legal__back a:hover { color: var(--brand-2); }
.legal__back--bottom {
  margin-top: 3rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}
.legal__head { margin-bottom: 2rem; }
.legal__head h1 {
  font-size: clamp(2.2rem, 4.2vw, 3.2rem);
  margin-bottom: 0.6rem;
}
.legal__meta {
  color: var(--text-mute);
  font-size: 0.88rem;
  margin: 0;
}
.legal__lead {
  font-size: 1.08rem;
  color: var(--text-soft);
  border-left: 3px solid rgba(124, 92, 255, 0.5);
  padding: 0.2rem 0 0.2rem 1.2rem;
  margin: 2rem 0 2.5rem;
}
.legal h2 {
  font-size: 1.35rem;
  margin: 2.6rem 0 0.8rem;
  scroll-margin-top: 96px;
}
.legal h2:first-of-type { margin-top: 0.5rem; }
.legal p, .legal ul {
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.75;
}
.legal ul {
  padding-left: 1.4rem;
  margin: 0 0 1.2rem;
}
.legal li { margin-bottom: 0.4rem; }
.legal a {
  color: var(--brand-2);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(92, 225, 255, 0.45);
  transition: color .15s ease;
}
.legal a:hover { color: #a3eeff; text-decoration-color: var(--brand-2); }
.legal strong { color: var(--text); }

/* ============================ REVEAL ANIMATIONS ============================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ============================ MOBILE ============================ */
@media (max-width: 880px) {
  .why__grid, .pay__grid { grid-template-columns: 1fr; gap: 2rem; }
  .why__visual { min-height: 280px; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer__cols { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav.is-open .nav__links {
    display: flex;
    position: absolute;
    left: 0; right: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    background: rgba(11, 15, 26, 0.96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    padding: 1rem var(--pad) 1.4rem;
    gap: 0.8rem;
  }
  .nav__links > a { padding: 0.6rem 0; border-bottom: 1px solid var(--line); }
  .nav__links > a:last-child { border: 0; }
  .form__row { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .pay__num { font-size: 3.8rem; }
  .card__lead { min-height: auto; }
}
