@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Phudu:wght@300..900&display=swap");

/* ── Design tokens ─────────────────────────────────────── */
:root {
  --accent:       #00e64d;
  --accent-dim:   #00b33d;
  --accent-glow:  rgba(0, 230, 77, 0.18);
  --accent-glow2: rgba(0, 230, 77, 0.08);
  --bg:           #0d0d14;
  --bg-mid:       #101019;
  --surface:      #13131f;
  --surface-2:    #1a1a2e;
  --text:         #ffffff;
  --muted:        #9d9d9f;
  --border:       rgba(0, 230, 77, 0.2);
  --border-dim:   rgba(255,255,255,0.08);
  --radius:       12px;
  --radius-lg:    20px;
  --radius-pill:  44px;
  --font-display: 'Phudu', sans-serif;
  --font-body:    'Inter', sans-serif;
  --max-w:        1200px;
  --header-h:     72px;
}

/* ── Reset & base ──────────────────────────────────────── */
*, *::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.6;
}
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
}
a { text-decoration: none; color: var(--text); }
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(720px, 100% - 3rem);
  margin-inline: auto;
}
.section-head { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.section-head h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); margin-bottom: .6rem; }
.section-head p  { color: var(--muted); font-size: 1.05rem; }
section { padding: 5rem 0; }
.bg-alt { background: var(--bg-mid); }

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .7rem 1.8rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .02em;
  transition: transform .15s, box-shadow .15s, background .15s;
  border: none;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--accent);
  color: #000;
  box-shadow: 0 4px 18px var(--accent-glow);
}
.btn-primary:hover {
  background: var(--accent-dim);
  box-shadow: 0 6px 28px rgba(0,230,77,.38);
}
.btn-outline {
  border: 1.5px solid var(--border);
  color: var(--text);
  background: transparent;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-lg { padding: .9rem 2.2rem; font-size: 1rem; }
.btn-sm { padding: .5rem 1.2rem; font-size: .88rem; }

/* ── Eyebrow / tag ─────────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .6rem;
}
.green { color: var(--accent); }

/* ── Header / Nav ──────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 100;
  background: linear-gradient(180deg, rgba(13,13,20,0.97) 60%, rgba(13,13,20,0) 100%);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-dim);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo img { height: 38px; width: auto; }

/* nav */
.site-nav { display: flex; align-items: center; gap: 1.8rem; }
.site-nav a { font-size: .92rem; font-weight: 500; color: var(--text); transition: color .15s; }
.site-nav a:hover { color: var(--accent); }
.site-nav a.active { color: var(--accent); }

/* lang switcher */
.lang-switcher { display: flex; gap: .5rem; margin-left: .6rem; }
.lang-pill {
  padding: .2rem .6rem;
  border-radius: 99px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  border: 1px solid var(--border-dim);
  color: var(--muted);
  transition: all .15s;
}
.lang-pill:hover, .lang-active {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-glow2);
}
.lang-active { pointer-events: none; }

/* burger */
.nav-toggle { display: none; }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.nav-burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .25s;
}

/* ── Hero ──────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 60% 50%, rgba(0,230,77,.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 100% 20%, rgba(0,180,60,.08) 0%, transparent 60%),
    linear-gradient(135deg, #0d0d14 0%, #0f1a12 50%, #0d0d14 100%);
  z-index: 0;
}
/* animated grid overlay */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,230,77,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,230,77,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at center, black 30%, transparent 100%);
}
/* hero two-column layout */
.hero-layout {
  position: relative;
  z-index: 1;
  width: min(var(--max-w), 100% - 3rem);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  padding-top: calc(var(--header-h) + 2rem);
  padding-bottom: 4rem;
}
.hero-inner {
  position: relative;
}
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual img {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  filter: drop-shadow(0 0 60px rgba(0,230,77,0.25));
}
.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 2rem;
  max-width: 480px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* image frames for split sections */
.img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 8px 40px rgba(0,0,0,.4);
}
.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.img-frame:hover img { transform: scale(1.03); }
.img-frame--dark {
  background: radial-gradient(ellipse at center, rgba(0,230,77,.08) 0%, var(--surface-2) 70%);
  padding: 2rem;
}
.img-frame--dark img { object-fit: contain; }

/* scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: var(--muted);
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  animation: float 2s ease-in-out infinite;
}
.scroll-hint svg { width: 20px; height: 20px; stroke: var(--accent); }
@keyframes float {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(-6px); }
}

/* ── Feature strip (4 icons) ───────────────────────────── */
.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 2.5rem 0;
}
.feature-strip-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .8rem;
  padding: 1.6rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius);
  transition: border-color .2s, transform .2s;
}
.feature-strip-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
}
.feature-strip-card .icon-wrap {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-strip-card svg { width: 26px; height: 26px; stroke: var(--accent); }
.feature-strip-card h3 { font-size: .95rem; font-family: var(--font-body); font-weight: 600; }
.feature-strip-card p  { font-size: .82rem; color: var(--muted); }

/* ── Split section ─────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split-media img { border-radius: var(--radius-lg); width: 100%; }
.split-copy h2 { font-size: clamp(1.6rem, 2.5vw, 2.4rem); margin-bottom: 1rem; }
.split-copy p  { color: rgba(255,255,255,.8); margin-bottom: 1.6rem; line-height: 1.8; }
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

/* ── Feature grid (6 cards) ────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  padding: 2rem 1.6rem;
  background: var(--surface);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius);
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.feature-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px var(--accent-glow2);
}
.feature-ico {
  width: 48px; height: 48px;
  border-radius: var(--radius);
  background: var(--accent-glow);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.feature-ico svg { width: 24px; height: 24px; stroke: var(--accent); fill: none; }
.feature-card h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.feature-card p  { color: var(--muted); font-size: .92rem; line-height: 1.6; }

/* ── Testimonials ──────────────────────────────────────── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  padding: 1.8rem;
  background: var(--surface);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius);
  transition: border-color .2s;
}
.testimonial-card:hover { border-color: var(--border); }
.stars { color: var(--accent); letter-spacing: 2px; font-size: 1rem; margin-bottom: 1rem; }
.testimonial-card p   { color: rgba(255,255,255,.82); font-size: .95rem; line-height: 1.7; margin-bottom: 1.2rem; font-style: italic; }
.testimonial-card .author { font-weight: 700; font-size: .9rem; color: var(--accent); }

/* ── FAQ ───────────────────────────────────────────────── */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid var(--border-dim);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: .8rem;
  background: var(--surface);
  transition: border-color .2s, box-shadow .2s;
}
.faq-item[open], .faq-item:hover { border-color: var(--border); }
.faq-item[open] { box-shadow: 0 8px 32px var(--accent-glow2); }
.faq-item > summary {
  padding: 1.1rem 1.4rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  list-style: none;
  transition: color .2s;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::after { content: '+'; font-size: 1.3rem; color: var(--accent); flex-shrink: 0; }
.faq-item[open] > summary { color: var(--accent); }
.faq-item[open] > summary::after { content: '−'; }
.faq-body {
  padding: 0 1.4rem 1.2rem;
  color: rgba(255,255,255,.75);
  font-size: .92rem;
  line-height: 1.7;
}

/* ── Accordion (for contact / unsubscribe) ─────────────── */
details {
  border: 1px solid var(--border-dim);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: .8rem;
  transition: border-color .2s;
}
details[open], details:hover { border-color: var(--border); }
summary {
  padding: 1.1rem 1.4rem;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  background: var(--surface);
  transition: background .2s;
}
details[open] summary { background: var(--surface-2); color: var(--accent); }
summary::after { content: '+'; font-size: 1.3rem; color: var(--accent); }
details[open] summary::after { content: '−'; }
details .details-body { padding: 1.1rem 1.4rem; background: var(--surface); color: var(--muted); font-size: .95rem; line-height: 1.7; }

/* ── Page hero (inner pages) ───────────────────────────── */
.page-hero {
  padding: 8rem 0 4rem;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 70% at 50% 100%, var(--accent-glow) 0%, transparent 70%),
    var(--bg);
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 1rem; }
.page-hero p  { color: var(--muted); font-size: 1.05rem; }

/* ── Pricing cards ─────────────────────────────────────── */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  justify-items: center;
}
.plan-card {
  width: 100%;
  max-width: 360px;
  padding: 2.4rem 2rem;
  background: var(--surface);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.plan-card:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px var(--accent-glow);
}
.plan-card .plan-op {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
}
.plan-price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.plan-card .plan-freq { color: var(--muted); font-size: .9rem; }
.plan-features { margin: .8rem 0; display: flex; flex-direction: column; gap: .5rem; }
.plan-features li { color: rgba(255,255,255,.82); font-size: .9rem; padding-left: 1.2rem; position: relative; }
.plan-features li::before { content: '✓'; color: var(--accent); position: absolute; left: 0; }

/* ── Steps ─────────────────────────────────────────────── */
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .8rem;
}
.step-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--accent);
  color: #000;
  font-weight: 900;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
}
.step h3 { font-size: 1rem; }
.step p   { color: var(--muted); font-size: .9rem; }

/* ── Contact cards ─────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.contact-card {
  padding: 2rem 1.5rem;
  border: 1.5px dashed var(--border);
  border-radius: var(--radius);
  text-align: center;
  transition: background .2s, border-color .2s;
}
.contact-card:hover { background: var(--surface); border-color: var(--accent); }
.contact-card .contact-ico {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--accent-glow);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.contact-card .contact-ico svg { width: 28px; height: 28px; stroke: var(--accent); fill: none; }
.contact-card h3 { font-size: 1.1rem; margin-bottom: .5rem; color: var(--accent); }
.contact-card p, .contact-card a { font-size: .95rem; color: rgba(255,255,255,.75); line-height: 1.6; }
.contact-card a { color: var(--accent); font-weight: 600; }

/* ── Contact form ──────────────────────────────────────── */
.form-wrap {
  max-width: 640px;
  margin: 0 auto;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.form-field label { font-size: .85rem; font-weight: 600; color: var(--muted); }
.form-field input,
.form-field textarea,
.form-field select {
  background: var(--surface);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius);
  padding: .75rem 1rem;
  color: var(--text);
  font-family: var(--font-body);
  font-size: .95rem;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  width: 100%;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow2); }
.form-field textarea { resize: vertical; min-height: 140px; }
.form-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2300e64d' fill='none' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .8rem center; }
.form-msg { display: none; padding: .8rem 1rem; border-radius: var(--radius); font-size: .9rem; font-weight: 600; margin-top: .8rem; }
.form-msg.success { background: rgba(0,230,77,.15); border: 1px solid var(--accent); color: var(--accent); display: block; }
.form-msg.error   { background: rgba(255,60,60,.1); border: 1px solid rgba(255,60,60,.5); color: #ff6b6b; display: block; }

/* ── Sign in ───────────────────────────────────────────── */
.signin-card {
  max-width: 440px;
  margin: 0 auto;
  padding: 3rem 2.5rem;
  background: var(--surface);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg);
}
.signin-card h1 { font-size: 1.8rem; text-align: center; margin-bottom: .5rem; }
.signin-card > p { text-align: center; color: var(--muted); font-size: .9rem; margin-bottom: 2rem; }
.signin-card .disclaimer { text-align: center; font-size: .78rem; color: var(--muted); margin-top: 1rem; }
.phone-row { display: flex; gap: 0; }
.phone-row select { width: 120px; border-radius: var(--radius) 0 0 var(--radius); flex-shrink: 0; border-right: none; }
.phone-row input  { border-radius: 0 var(--radius) var(--radius) 0; flex: 1; }
#signinMsg { text-align: center; }

/* ── Unsubscribe operator cards ────────────────────────── */
.unsub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.unsub-card {
  padding: 1.8rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius);
  transition: border-color .2s;
}
.unsub-card:hover { border-color: var(--border); }
.unsub-card h3 { color: var(--accent); font-size: 1.1rem; margin-bottom: .8rem; }
.unsub-card p  { color: rgba(255,255,255,.78); font-size: .92rem; line-height: 1.65; }
.unsub-card .code {
  display: inline-block;
  background: var(--accent-glow);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: .2rem .6rem;
  font-family: monospace;
  font-size: .95rem;
  color: var(--accent);
  margin: .3rem 0;
}

/* ── About values ──────────────────────────────────────── */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.value-card {
  padding: 2rem 1.5rem;
  background: var(--surface);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
}
.value-card h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.value-card p  { color: var(--muted); font-size: .92rem; line-height: 1.65; }

/* ── Milestones ────────────────────────────────────────── */
.milestones { display: flex; flex-direction: column; gap: 2rem; position: relative; padding-left: 2rem; }
.milestones::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}
.milestone {
  position: relative;
  padding-left: 1.5rem;
}
.milestone::before {
  content: '';
  position: absolute;
  left: -2.35rem; top: .4rem;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}
.milestone h3 { font-size: 1.05rem; margin-bottom: .3rem; }
.milestone p  { color: var(--muted); font-size: .9rem; line-height: 1.6; }
.milestone .year { color: var(--accent); font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: .2rem; }

/* ── Carrier billing info ──────────────────────────────── */
.cb-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.cb-card {
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius);
}
.cb-card h3 { color: var(--accent); margin-bottom: .8rem; }
.cb-card p  { color: rgba(255,255,255,.78); font-size: .95rem; line-height: 1.7; }

/* ── Legal pages wrapper ───────────────────────────────── */
.legal-wrap {
  background: #efefef;
  color: #3a3a3a;
  padding: 2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
}
.legal-wrap h1 { font-size: 1.1rem; font-weight: normal; color: #3f3f3f; }
.legal-wrap h2 { font-size: 1rem; font-weight: 700; color: #3f3f3f; }
.legal-wrap p, .legal-wrap li { font-size: .85rem; line-height: 1.7; }
.legal-wrap a { color: #333b43; border-bottom: 1px solid #f0f0f0; }

/* ── 404 ───────────────────────────────────────────────── */
.notfound-wrap {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 1rem;
}
.notfound-wrap .big-num {
  font-family: var(--font-display);
  font-size: clamp(6rem, 18vw, 12rem);
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  opacity: .15;
}
.notfound-wrap h1 { font-size: 2rem; margin-bottom: 1rem; }
.notfound-wrap p  { color: var(--muted); margin-bottom: 2rem; }

/* ── CTA banner ────────────────────────────────────────── */
.cta-banner {
  text-align: center;
  padding: 5rem 1rem;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, var(--accent-glow) 0%, transparent 70%),
    var(--bg-mid);
}
.cta-banner h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); margin-bottom: 1rem; }
.cta-banner p  { color: var(--muted); margin: 0 auto 2rem; }

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

/* ── 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 { opacity: 1; transform: none; transition: none; }
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 900px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .split.reverse { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .cb-grid { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .feature-strip { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-layout { grid-template-columns: 1fr; gap: 2rem; }
  .hero-visual { order: -1; max-height: 40vh; overflow: hidden; }
  .hero-visual img { max-height: 40vh; }
  .hero-actions { flex-direction: column; }

  /* mobile nav */
  .site-nav {
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    flex-direction: column;
    background: rgba(13,13,20,.98);
    padding: 2rem;
    gap: 1.2rem;
    align-items: flex-start;
    transform: translateY(-110%);
    transition: transform .3s ease;
    border-bottom: 1px solid var(--border-dim);
    z-index: 99;
  }
  .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 support (Arabic) ──────────────────────────────── */
[dir="rtl"] .header-inner { flex-direction: row-reverse; }
[dir="rtl"] .hero-layout { direction: rtl; }
[dir="rtl"] .milestones { padding-left: 0; padding-right: 2rem; }
[dir="rtl"] .milestones::before { left: auto; right: 0; }
[dir="rtl"] .milestone { padding-left: 0; padding-right: 1.5rem; }
[dir="rtl"] .milestone::before { left: auto; right: -2.35rem; }
[dir="rtl"] .value-card { border-left: none; border-right: 3px solid var(--accent); }
[dir="rtl"] .plan-features li { padding-left: 0; padding-right: 1.2rem; }
[dir="rtl"] .plan-features li::before { left: auto; right: 0; }
[dir="rtl"] .footer-grid { direction: rtl; }
[dir="rtl"] .footer-col ul { direction: rtl; }
[dir="rtl"] .footer-bottom { direction: rtl; }
[dir="rtl"] .split.reverse { direction: ltr; }
[dir="rtl"] .lang-switcher { margin-left: 0; margin-right: .6rem; }
[dir="rtl"] .details-body { text-align: right; }
[dir="rtl"] .unsub-card p { text-align: right; }

/* Legals */
.legals-wrap { padding: 3.5rem 0; }
.legals { padding-top: 1rem; padding-bottom: 5rem; }
.legals h1 { display: none; }
.legals h6 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--accent, #e83d72); margin: 2rem 0 0.5rem; }
.legals p { font-size: 0.92rem; line-height: 1.8; margin-bottom: 0.8rem; }
.legals ul { margin: 0.5rem 0 1rem; padding-left: 1.5rem; }
.legals li { font-size: 0.92rem; line-height: 1.8; margin-bottom: 0.4rem; }
.legals a { color: var(--accent, #e83d72); }

/* ── Hero (rebuilt two-column) ─────────────────────────── */
.hero-bg-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 65% 50%, rgba(0,230,77,.13) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 30%, rgba(0,180,60,.07) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  padding-top: calc(var(--header-h) + 3rem);
  padding-bottom: 5rem;
  width: min(var(--max-w), 100% - 3rem);
  margin-inline: auto;
}
.hero-copy h1 {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}
.hero-copy p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero card (right column visual) */
.hero-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.4rem;
  text-align: center;
  box-shadow: 0 0 60px rgba(0,230,77,.1), 0 20px 60px rgba(0,0,0,.4);
}
.hero-card-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.hero-card h3 { font-size: 1.3rem; margin-bottom: .6rem; }
.hero-card p  { color: var(--muted); font-size: .9rem; }
.hero-card-dots { display: flex; justify-content: center; gap: .5rem; margin-top: 1.4rem; }
.hero-card-dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  opacity: .6;
  animation: pulse-dot 1.8s ease-in-out infinite;
}
.hero-card-dots span:nth-child(2) { animation-delay: .3s; }
.hero-card-dots span:nth-child(3) { animation-delay: .6s; }
@keyframes pulse-dot { 0%,100% { opacity:.2; transform:scale(.8); } 50% { opacity:1; transform:scale(1.1); } }

/* ── Showcase grid ─────────────────────────────────────── */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.showcase-card {
  background: var(--surface);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  transition: border-color .2s, transform .2s;
}
.showcase-card:hover { border-color: var(--border); transform: translateY(-3px); }
.showcase-icon { font-size: 2rem; margin-bottom: .8rem; }
.showcase-card h3 { font-size: 1.05rem; margin-bottom: .4rem; }
.showcase-card p  { color: var(--muted); font-size: .9rem; line-height: 1.6; }

/* ── About strip ───────────────────────────────────────── */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-copy h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 1rem; }
.about-copy p  { color: var(--muted); margin-bottom: 1.8rem; line-height: 1.7; }
.about-art { display: flex; justify-content: center; }
.about-art-inner {
  position: relative;
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.art-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(0,230,77,.3);
  animation: spin-ring 8s linear infinite;
}
.ring-1 { width: 100%; height: 100%; animation-duration: 12s; }
.ring-2 { width: 74%; height: 74%; animation-duration: 9s; animation-direction: reverse; }
.ring-3 { width: 50%; height: 50%; animation-duration: 6s; }
@keyframes spin-ring { to { transform: rotate(360deg); } }
.art-icon { font-size: 3.5rem; position: relative; z-index: 1; }

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; padding-top: calc(var(--header-h) + 2rem); }
  .hero-visual { order: -1; }
  .hero-ctas { flex-direction: column; }
  .about-strip { grid-template-columns: 1fr; gap: 2rem; }
  .about-art { display: none; }
}
[dir="rtl"] .hero-inner { direction: rtl; }
[dir="rtl"] .about-strip { direction: rtl; }
[dir="rtl"] .hero-ctas { flex-direction: row-reverse; }
