/* ── Design tokens ─────────────────────────────────────── */
:root {
  --accent:       #fecf07;
  --accent-dim:   #d4a900;
  --accent-dark:  #b38e00; /* unused — reserved */
  --accent-glow:  rgba(254, 207, 7, 0.2);
  --accent-glow2: rgba(254, 207, 7, 0.08);
  --bg:           #080808;
  --bg-mid:       #0f0f0f;
  --surface:      #161616;
  --surface-2:    #202020;
  --text:         #ffffff;
  --muted:        #888888;
  --border:       rgba(254, 207, 7, 0.18);
  --border-dim:   rgba(255, 255, 255, 0.08);
  --radius:       6px;
  --radius-lg:    14px;
  --radius-pill:  50px;
  --font-display: 'Bebas Neue', 'Impact', sans-serif;
  --font-body:    'DM Sans', 'Helvetica Neue', sans-serif;
  --max-w:        1200px;
  --header-h:     70px;
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.65;
}
h1,h2,h3,h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: var(--font-body); cursor: pointer; }
ul { list-style: none; padding: 0; }

/* ── Layout helpers ────────────────────────────────────── */
.container {
  width: min(var(--max-w), 100% - 3rem);
  margin-inline: auto;
}
.container-narrow {
  width: min(760px, 100% - 3rem);
  margin-inline: auto;
}
section { padding: 5rem 0; }
.bg-alt { background: var(--bg-mid); }
.section-head { text-align: center; margin-bottom: 3.5rem; }
.section-head .eyebrow { margin-bottom: .6rem; }
.section-head h2 { font-size: clamp(2.4rem, 5vw, 4rem); margin-bottom: .8rem; }
.section-head p { color: var(--muted); max-width: 560px; margin: 0 auto; }

/* ── Eyebrow label ─────────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .5rem;
}

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: transform .15s, box-shadow .15s, background .15s;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--accent);
  color: #000;
  box-shadow: 0 4px 20px var(--accent-glow);
}
.btn-primary:hover {
  background: var(--accent-dim);
  box-shadow: 0 6px 28px rgba(254,207,7,.35);
}
.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-outline:hover { background: var(--accent-glow2); }
.btn-ghost {
  background: rgba(255,255,255,.06);
  color: var(--text);
  border: 1px solid var(--border-dim);
}
.btn-ghost:hover { background: rgba(255,255,255,.1); }
.btn-lg { padding: 1rem 2.4rem; font-size: 1rem; }
.btn-sm { padding: .5rem 1.2rem; font-size: .8rem; }

/* ── Header ────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: rgba(8,8,8,.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-dim);
  z-index: 200;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.logo img { height: 36px; width: auto; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.site-nav > a {
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: rgba(255,255,255,.8);
  transition: color .15s;
}
.site-nav > a:hover { color: var(--accent); }
.nav-toggle { display: none; }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.lang-switcher { display: flex; gap: .4rem; margin-left: .4rem; }
.lang-pill {
  padding: .25rem .6rem;
  border-radius: var(--radius);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
  border: 1px solid var(--border-dim);
  color: var(--muted);
  transition: all .15s;
}
.lang-pill:hover { border-color: var(--accent); color: var(--accent); }
.lang-active { border-color: var(--accent); color: var(--accent); background: var(--accent-glow2); }

/* ── Scroll reveal ─────────────────────────────────────── */
html.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
html.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal, html.js .reveal.in { transition: none; transform: none; opacity: 1; }
}

/* ── HERO ──────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-h);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: .35;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(8,8,8,.92) 40%, rgba(8,8,8,.4) 100%),
    linear-gradient(to top, rgba(8,8,8,.8) 0%, transparent 50%);
}
.hero-layout {
  position: relative;
  z-index: 1;
  width: min(var(--max-w), 100% - 3rem);
  margin-inline: auto;
  padding: 5rem 0;
}
.hero-kicker {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: 1.2rem;
}
.hero-kicker .line { width: 40px; height: 2px; background: var(--accent); }
.hero-kicker span {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
}
.hero h1 {
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  line-height: .97;
  margin-bottom: 1.6rem;
  max-width: 720px;
}
.hero h1 .gold { color: var(--accent); }
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.75);
  max-width: 500px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border-dim);
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--accent);
  line-height: 1;
}
.hero-stat-lbl {
  font-size: .8rem;
  color: var(--muted);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: .3rem;
}

/* ── Feature strip ─────────────────────────────────────── */
.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
}
.feature-strip-card {
  padding: 2rem 1.8rem;
  border-right: 1px solid var(--border-dim);
  transition: background .2s;
}
.feature-strip-card:last-child { border-right: none; }
.feature-strip-card:hover { background: var(--surface-2); }
.fstrip-ico {
  width: 40px; height: 40px;
  background: var(--accent-glow2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.fstrip-ico svg { width: 20px; height: 20px; stroke: var(--accent); }
.feature-strip-card h3 {
  font-family: var(--font-body);
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: .4rem;
}
.feature-strip-card p { font-size: .85rem; color: var(--muted); line-height: 1.55; }

/* ── Gallery grid ──────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: .8rem;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

/* ── Split sections ────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split.reverse .split-media { order: 1; }
.split.reverse .split-copy { order: 0; }
.split-copy .eyebrow { margin-bottom: .6rem; }
.split-copy h2 { font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 1.2rem; }
.split-copy p { color: rgba(255,255,255,.75); font-size: 1rem; line-height: 1.75; margin-bottom: 1.6rem; }
.split-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.split-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.split-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  pointer-events: none;
}

/* ── Feature grid ──────────────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color .2s, transform .2s;
}
.feature-card:hover { border-color: var(--border); transform: translateY(-4px); }
.feature-ico {
  width: 48px; height: 48px;
  background: var(--accent-glow2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.feature-ico svg { width: 24px; height: 24px; stroke: var(--accent); }
.feature-card h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: .5rem;
}
.feature-card p { font-size: .88rem; color: var(--muted); line-height: 1.65; }

/* ── CTA banner ────────────────────────────────────────── */
.cta-banner {
  background:
    radial-gradient(ellipse 80% 80% at 50% 50%, rgba(254,207,7,.12) 0%, transparent 70%),
    var(--bg-mid);
  padding: 6rem 0;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-banner h2 { font-size: clamp(2.5rem, 5vw, 4.5rem); margin-bottom: 1rem; }
.cta-banner p { color: var(--muted); font-size: 1.05rem; margin-bottom: 2rem; }

/* ── Testimonials ──────────────────────────────────────── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.stars { color: var(--accent); font-size: 1rem; margin-bottom: .8rem; letter-spacing: .1em; }
.testimonial-card p { color: rgba(255,255,255,.8); font-size: .92rem; line-height: 1.7; margin-bottom: 1rem; }
.t-author { display: flex; align-items: center; gap: .8rem; }
.t-avatar {
  width: 38px; height: 38px;
  background: var(--accent-glow2);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .85rem;
  color: var(--accent);
  flex-shrink: 0;
}
.t-name { font-size: .88rem; font-weight: 600; }
.t-role { font-size: .78rem; color: var(--muted); }

/* ── Page hero ─────────────────────────────────────────── */
.page-hero {
  padding: calc(var(--header-h) + 4rem) 0 3.5rem;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 60% at 50% 0%, rgba(254,207,7,.1) 0%, transparent 70%),
    var(--bg);
  border-bottom: 1px solid var(--border-dim);
}
.page-hero .eyebrow { margin-bottom: .6rem; }
.page-hero h1 { font-size: clamp(2.5rem, 6vw, 5rem); margin-bottom: 1rem; }
.page-hero p { color: var(--muted); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* ── About / values ────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.value-card {
  background: var(--surface);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border-top: 3px solid var(--accent);
  transition: transform .2s;
}
.value-card:hover { transform: translateY(-4px); }
.value-card h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: .6rem;
}
.value-card p { color: var(--muted); font-size: .9rem; line-height: 1.65; }

/* ── Milestones ────────────────────────────────────────── */
.milestones-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.milestone-card {
  background: var(--surface);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.milestone-year {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
}
.milestone-card h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: .4rem;
}
.milestone-card p { color: var(--muted); font-size: .88rem; line-height: 1.6; }

/* ── Pricing ───────────────────────────────────────────── */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.plan-card {
  background: var(--surface);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  transition: border-color .2s, transform .2s;
}
.plan-card.featured {
  border-color: var(--accent);
  background: linear-gradient(135deg, var(--surface-2) 0%, #1c1a00 100%);
}
.plan-card:hover { border-color: var(--border); transform: translateY(-4px); }
.plan-card.featured:hover { border-color: var(--accent); }
.plan-badge {
  display: inline-block;
  background: var(--accent);
  color: #000;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .2rem .7rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
  align-self: flex-start;
}
.plan-operator { font-family: var(--font-display); font-size: 1.8rem; margin-bottom: .2rem; }
.plan-price-row {
  display: flex;
  align-items: baseline;
  gap: .4rem;
  margin: 1.2rem 0;
  padding: 1.2rem 0;
  border-top: 1px solid var(--border-dim);
  border-bottom: 1px solid var(--border-dim);
}
.plan-currency { font-size: 1rem; font-weight: 600; color: var(--accent); }
.plan-amount { font-family: var(--font-display); font-size: 3.5rem; color: var(--accent); line-height: 1; }
.plan-freq { font-size: .85rem; color: var(--muted); }
.plan-features {
  list-style: none;
  margin: 1.2rem 0 1.8rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  flex: 1;
}
.plan-features li {
  font-size: .88rem;
  color: rgba(255,255,255,.8);
  padding-left: 1.4rem;
  position: relative;
}
.plan-features li::before { content: '\2713'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

/* ── Steps ─────────────────────────────────────────────── */
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}
.steps-row::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: calc(16.66% + 1rem);
  right: calc(16.66% + 1rem);
  height: 2px;
  background: linear-gradient(to right, var(--accent), var(--accent-dim));
  opacity: .3;
}
.step { text-align: center; }
.step-num {
  width: 64px; height: 64px;
  background: var(--bg);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--accent);
  position: relative;
  z-index: 1;
}
.step h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: .5rem;
}
.step p { font-size: .85rem; color: var(--muted); line-height: 1.6; }

/* ── Unsubscribe ───────────────────────────────────────── */
.unsub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.unsub-card {
  background: var(--surface);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.unsub-card h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--accent); margin-bottom: 1rem; }
.unsub-card p { font-size: .9rem; color: rgba(255,255,255,.8); margin-bottom: .4rem; line-height: 1.5; }
.code {
  display: inline-block;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--accent);
  font-family: monospace;
  font-size: .9rem;
  padding: .15rem .6rem;
  border-radius: var(--radius);
  font-weight: 700;
}

/* ── Refund bullets ────────────────────────────────────── */
.refund-list {
  display: flex;
  flex-direction: column;
  gap: .9rem;
  max-width: 720px;
  margin: 0 auto;
}
.refund-list li {
  display: flex;
  gap: .8rem;
  align-items: flex-start;
  font-size: .95rem;
  color: rgba(255,255,255,.82);
  line-height: 1.65;
}
.refund-list .check { color: var(--accent); flex-shrink: 0; margin-top: .1rem; }

/* ── FAQ accordion ─────────────────────────────────────── */
details {
  border: 1px solid var(--border-dim);
  border-radius: var(--radius);
  margin-bottom: .6rem;
  background: var(--surface);
}
details[open] { border-color: var(--border); }
summary {
  cursor: pointer;
  padding: 1.2rem 1.5rem;
  font-weight: 600;
  font-size: .95rem;
  font-family: var(--font-body);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; color: var(--accent); font-size: 1.2rem; flex-shrink: 0; }
details[open] summary::after { content: '-'; }
.details-body { padding: 0 1.5rem 1.2rem; color: var(--muted); font-size: .9rem; line-height: 1.7; }

/* ── Contact cards ─────────────────────────────────────── */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}
.contact-card-ico {
  width: 52px; height: 52px;
  background: var(--accent-glow2);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.contact-card-ico svg { width: 22px; height: 22px; stroke: var(--accent); }
.contact-card h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: .4rem;
}
.contact-card p { font-size: .88rem; color: var(--muted); }
.contact-card a { color: var(--accent); font-weight: 600; }

/* ── Contact form ──────────────────────────────────────── */
.contact-form {
  background: var(--surface);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg);
  padding: 3rem;
  max-width: 720px;
  margin: 0 auto;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: .82rem; font-weight: 600; letter-spacing: .04em; color: rgba(255,255,255,.7); }
.form-group input, .form-group textarea, .form-group select {
  background: var(--surface-2);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body);
  font-size: .9rem;
  padding: .7rem 1rem;
  outline: none;
  transition: border-color .15s;
  width: 100%;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-msg { font-size: .88rem; margin-top: 1rem; text-align: center; }
.form-msg.ok { color: var(--accent); }
.form-msg.err { color: #ff5252; }

/* ── Signin ────────────────────────────────────────────── */
.signin-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 2rem) 1.5rem 3rem;
  background:
    radial-gradient(ellipse 50% 50% at 50% 0%, rgba(254,207,7,.1) 0%, transparent 60%),
    var(--bg);
}
.signin-card {
  background: var(--surface);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg);
  padding: 3rem;
  width: 100%;
  max-width: 440px;
  text-align: center;
}
.signin-card h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: .8rem; }
.signin-card p { color: var(--muted); font-size: .9rem; margin-bottom: 2rem; }
.phone-row { display: flex; gap: .6rem; margin-bottom: 1rem; }
.phone-row select {
  background: var(--surface-2);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius);
  color: var(--text);
  font-size: .9rem;
  padding: .7rem .8rem;
  cursor: pointer;
  flex-shrink: 0;
  width: 100px;
}
.phone-row input {
  flex: 1;
  background: var(--surface-2);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius);
  color: var(--text);
  font-size: .9rem;
  padding: .7rem 1rem;
  outline: none;
  transition: border-color .15s;
}
.phone-row input:focus { border-color: var(--accent); }
.signin-status {
  margin-top: 1.2rem;
  font-size: .88rem;
  border-radius: var(--radius);
  padding: .8rem;
  display: none;
}
.signin-status.ok { background: rgba(254,207,7,.1); color: var(--accent); display: block; }
.signin-status.err { background: rgba(255,80,80,.1); color: #ff5252; display: block; }
.signin-disclaimer { margin-top: 1.5rem; font-size: .78rem; color: var(--muted); line-height: 1.55; }

/* ── Carrier billing ───────────────────────────────────── */
.cb-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.cb-card {
  background: var(--surface);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.cb-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--accent);
  opacity: .25;
  line-height: 1;
  margin-bottom: .5rem;
}
.cb-card h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: .6rem;
}
.cb-card p { color: var(--muted); font-size: .9rem; line-height: 1.65; }

/* ── Legal wrapper ─────────────────────────────────────── */
.legal-wrap {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255,255,255,.82);
  line-height: 1.75;
  font-size: .95rem;
}
.legal-wrap h2, .legal-wrap h3 {
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--text);
  margin: 2rem 0 .6rem;
}
.legal-wrap p { margin-bottom: .8rem; }
.legal-wrap a { color: var(--accent); }

/* ── 404 ───────────────────────────────────────────────── */
.page-404 {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  gap: 1.5rem;
}
.page-404 .big-num {
  font-family: var(--font-display);
  font-size: clamp(6rem, 20vw, 14rem);
  color: var(--accent);
  opacity: .18;
  line-height: 1;
}
.page-404 h1 { font-size: clamp(2rem, 4vw, 3rem); }
.page-404 p { color: var(--muted); max-width: 420px; }

/* ── Footer ────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-mid);
  border-top: 1px solid var(--border-dim);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand .logo img { height: 32px; }
.footer-brand p { font-size: .88rem; color: var(--muted); line-height: 1.7; max-width: 280px; margin-bottom: 1rem; }
.footer-entity { font-size: .78rem; color: var(--muted); line-height: 1.6; }
.footer-col h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 1rem;
}
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul li a { font-size: .88rem; color: var(--muted); transition: color .15s; }
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border-dim);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: .8rem; color: var(--muted); }
.footer-version { font-size: .75rem; color: rgba(255,255,255,.2); }

/* ── Responsive 900px ──────────────────────────────────── */
@media (max-width: 900px) {
  section { padding: 3.5rem 0; }
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  /* Reset all split ordering at single-column — visual order matches DOM order */
  .split .split-media, .split .split-copy,
  .split.reverse .split-media, .split.reverse .split-copy,
  [dir="rtl"] .split .split-media, [dir="rtl"] .split .split-copy,
  [dir="rtl"] .split.reverse .split-media, [dir="rtl"] .split.reverse .split-copy { order: unset; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.tall, .gallery-item.wide { grid-row: unset; grid-column: unset; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .milestones-grid { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr; }
  .steps-row::before { display: none; }
  .contact-cards { grid-template-columns: 1fr; }
  .cb-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Responsive 700px ──────────────────────────────────── */
@media (max-width: 700px) {
  section { padding: 2.8rem 0; }
  .feature-strip { grid-template-columns: repeat(2, 1fr); }
  /* Keep column divider; only remove bottom border on the last row */
  .feature-strip-card { border-bottom: 1px solid var(--border-dim); }
  .feature-strip-card:nth-child(even) { border-right: none; }
  .feature-strip-card:nth-last-child(-n+2) { border-bottom: none; }
  .feature-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .logo img { height: 26px; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  .hero-actions { flex-direction: column !important; align-items: stretch; }
  .hero-actions .btn { text-align: center; }
  .contact-form { padding: 2rem 1.5rem; }
  .signin-card { padding: 2rem 1.5rem; }

  .site-nav {
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    flex-direction: column;
    background: rgba(8,8,8,.98);
    padding: 2rem;
    gap: 1.2rem;
    align-items: flex-start;
    /* Translate by -(own height + header height) so the bottom edge lands at y=0,
       keeping the nav entirely above the viewport and out of the header's paint area. */
    transform: translateY(calc(-100% - var(--header-h)));
    transition: transform .3s ease;
    border-bottom: 1px solid var(--border-dim);
    z-index: 99;
  }
  [dir="rtl"] .site-nav { align-items: flex-end; text-align: right; }
  .nav-toggle:checked ~ .site-nav { transform: translateY(0); }
  .nav-burger { display: flex; }
  .nav-toggle:checked ~ .nav-burger span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
  .nav-toggle:checked ~ .nav-burger span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked ~ .nav-burger span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
}

/* ── RTL Arabic ────────────────────────────────────────── */
[dir="rtl"] .header-inner { flex-direction: row-reverse; }
[dir="rtl"] .hero-kicker { flex-direction: row-reverse; }
/* Basic split: put copy on the right (Arabic reading start), media on left */
[dir="rtl"] .split .split-copy  { order: 0; }
[dir="rtl"] .split .split-media { order: 1; }
/* Reverse split: alternate back — media right, copy left */
[dir="rtl"] .split.reverse .split-media { order: 0; }
[dir="rtl"] .split.reverse .split-copy  { order: 1; }
[dir="rtl"] .footer-grid { direction: rtl; }
[dir="rtl"] .footer-bottom { direction: rtl; }
[dir="rtl"] .plan-features li { padding-left: 0; padding-right: 1.4rem; }
[dir="rtl"] .plan-features li::before { left: auto; right: 0; }
[dir="rtl"] .refund-list li { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .lang-switcher { margin-left: 0; margin-right: .4rem; }
[dir="rtl"] .steps-row::before { left: calc(16.66% + 1rem); right: calc(16.66% + 1rem); }
@media (min-width: 701px) {
  [dir="rtl"] .hero-actions { flex-direction: row-reverse; }
}
