/* ── Design tokens ─────────────────────────────────────── */
:root {
  --accent:       #02b9f2;
  --accent-dim:   #01a0d4;
  --accent-glow:  rgba(2, 185, 242, 0.2);
  --accent-glow2: rgba(2, 185, 242, 0.08);
  --bg:           #080c12;
  --bg-mid:       #0d1219;
  --surface:      #111823;
  --surface-2:    #18222e;
  --text:         #ffffff;
  --muted:        #7a8fa8;
  --border:       rgba(2, 185, 242, 0.22);
  --border-dim:   rgba(255, 255, 255, 0.08);
  --radius:       8px;
  --radius-lg:    16px;
  --radius-pill:  50px;
  --font-display: 'Orbitron', 'Phudu', sans-serif;
  --font-body:    'Inter', sans-serif;
  --max-w:        1200px;
  --header-h:     80px;
}

/* ── 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;
  overflow-x: hidden;
}
h1,h2,h3,h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.03em;
}
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: 6rem 0; }
.bg-alt { background: var(--bg-mid); }
.section-head { text-align: center; margin-bottom: 4rem; }
.section-head .eyebrow { margin-bottom: .6rem; }
.section-head h2 { font-size: clamp(2.4rem, 5vw, 3.8rem); margin-bottom: 1rem; }
.section-head p { color: var(--muted); max-width: 600px; margin: 0 auto; }

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

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 2.2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .05em;
  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: #000000;
  box-shadow: 0 4px 20px var(--accent-glow);
}
.btn-primary:hover {
  background: var(--accent-dim);
  box-shadow: 0 6px 28px rgba(2,185,242,.35);
}
.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-outline:hover { background: var(--accent-glow2); }
.btn-lg { padding: 1.1rem 2.6rem; font-size: 1rem; }
.btn-sm { padding: .6rem 1.4rem; font-size: .85rem; }

/* ── Header ────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: rgba(8,12,18,.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: 38px; width: auto; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}
.site-nav > a {
  font-size: .9rem;
  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; }
}

/* ── Home Hero ─────────────────────────────────────────── */
.home-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--header-h);
}
.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video-bg video {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .25;
}
.hero-video-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 0%, rgba(8,12,18,.9) 100%),
    linear-gradient(to top, rgba(8,12,18,1) 0%, transparent 60%);
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 2rem;
}
.hero-content h1 {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  line-height: 1.05;
  margin-bottom: 1.8rem;
  color: #fff;
  text-shadow: 0 0 40px rgba(2,185,242,.2);
}
.hero-content h1 .cyan { color: var(--accent); }
.hero-content p {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: rgba(255,255,255,.8);
  margin-bottom: 2.8rem;
  line-height: 1.6;
}
.scroll-btn-container {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: var(--muted);
  cursor: pointer;
  z-index: 2;
}
.scroll-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: bounce 2s infinite;
}
.scroll-btn img {
  width: 28px;
  height: auto;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

/* ── Transforming / Split Section ──────────────────────── */
.transforming-section {
  padding: 6rem 0;
}
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 0 30px rgba(2,185,242,.15);
}
.split-img-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  pointer-events: none;
}
.split-img-wrapper img {
  width: 100%;
  display: block;
}
.split-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
  color: #fff;
}
.split-content p {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* ── Future / Mobile Showcase ────────────────────────── */
.future-section {
  text-align: center;
  padding: 6rem 0;
}
.future-section h2 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 4rem;
}
.mobile-images-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3.5rem;
}
.mobile-images-grid img {
  max-width: 280px;
  width: 100%;
  transition: transform .3s ease;
}
.mobile-images-grid img:hover {
  transform: translateY(-10px);
}
.future-info {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.2rem;
  color: rgba(255,255,255,.9);
  line-height: 1.8;
}
.future-info p {
  margin-bottom: 1.5rem;
}

/* ── Tailor-made Section ───────────────────────────────── */
.tailor-made {
  padding: 6rem 0;
  text-align: center;
}
.tailor-made h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 4rem;
}
.tailor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.tailor-card {
  background: var(--surface);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  transition: all .3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tailor-card:hover {
  border-color: var(--border);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--accent-glow2);
}
.tailor-icon-wrap {
  width: 90px;
  height: 90px;
  margin-bottom: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.03);
  border-radius: 50%;
  border: 1px dashed var(--border);
}
.tailor-icon-wrap img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}
.tailor-card p {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.4;
}

/* ── FAQ Section ──────────────────────────────────────── */
.faq-section {
  padding: 6rem 0;
}
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}
details {
  border: 1px solid var(--border-dim);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  background: var(--surface);
  transition: all .2s ease;
}
details[open] {
  border-color: var(--border);
  box-shadow: 0 4px 20px var(--accent-glow2);
}
summary {
  cursor: pointer;
  padding: 1.5rem;
  font-weight: 600;
  font-size: 1.1rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  outline: none;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: '+';
  color: var(--accent);
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform .2s ease;
}
details[open] summary::after {
  content: '-';
}
.details-body {
  padding: 0 1.5rem 1.5rem;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1rem;
}

/* ── Pricing Page CSS ──────────────────────────────────── */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.plan-card {
  background: var(--surface);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.plan-card:hover {
  border-color: var(--border);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px var(--accent-glow2);
}
.plan-operator {
  font-size: 2rem;
  color: #fff;
  margin-bottom: .5rem;
}
.plan-price-row {
  display: flex;
  align-items: baseline;
  gap: .5rem;
  margin: 1.5rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border-dim);
  border-bottom: 1px solid var(--border-dim);
}
.plan-currency {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent);
}
.plan-amount {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--accent);
  line-height: 1;
}
.plan-freq {
  font-size: .95rem;
  color: var(--muted);
}
.plan-features {
  list-style: none;
  margin: 1.5rem 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: .8rem;
  flex: 1;
}
.plan-features li {
  font-size: .95rem;
  color: rgba(255,255,255,.85);
  padding-left: 1.8rem;
  position: relative;
}
.plan-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ── Steps ─────────────────────────────────────────────── */
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  position: relative;
  margin-top: 4rem;
}
.steps-row::before {
  content: '';
  position: absolute;
  top: 2.2rem;
  left: calc(16.66% + 1.5rem);
  right: calc(16.66% + 1.5rem);
  height: 2px;
  background: linear-gradient(to right, var(--accent), var(--accent-dim));
  opacity: .2;
}
.step { text-align: center; }
.step-num {
  width: 70px; height: 70px;
  background: var(--bg);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--accent);
  position: relative;
  z-index: 1;
  box-shadow: 0 0 20px var(--accent-glow2);
}
.step h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: .6rem;
}
.step p { font-size: .95rem; color: var(--muted); line-height: 1.7; }

/* ── Contact Page CSS ──────────────────────────────────── */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 5rem;
  max-width: 640px;
  margin-inline: auto;
}
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  transition: all .3s ease;
}
.contact-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
}
.contact-card h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: .8rem;
  color: var(--accent);
}
.contact-card p { font-size: .95rem; color: var(--muted); margin-bottom: 1rem; }
.contact-card a { color: #fff; font-weight: 600; font-size: 1.1rem; }
.contact-card a:hover { color: var(--accent); }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg);
  padding: 4rem;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 10px 45px rgba(0,0,0,.3);
}
.form-section-head { margin-bottom: 3rem; text-align: center; }
.form-section-head h2 { font-size: 2.2rem; margin-bottom: .6rem; }
.form-section-head p { color: var(--muted); font-size: 1.05rem; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.form-group { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 1.1rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: .85rem; font-weight: 600; color: rgba(255,255,255,.8); }
.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: .95rem;
  padding: .9rem 1.2rem;
  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: 150px; }
.contact-form button[type="submit"] { margin-top: 0.5rem; width: 100%; }
.contact-form h3 { margin-bottom: 1.5rem; }
.form-msg { font-size: .95rem; margin-top: 1.5rem; text-align: center; font-weight: 600; }
.form-msg.ok { color: var(--accent); }
.form-msg.err { color: #ff5252; }
.error-msg { font-size: .8rem; color: #ff5252; margin-top: .3rem; font-weight: 500; }

/* ── Signin Page CSS ───────────────────────────────────── */
.signin-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 4rem) 1.5rem 4rem;
  background:
    radial-gradient(ellipse 60% 60% at 50% 0%, rgba(2,185,242,.1) 0%, transparent 60%),
    var(--bg);
}
.signin-card {
  background: var(--surface);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  width: 100%;
  max-width: 480px;
  text-align: center;
  box-shadow: 0 15px 45px rgba(0,0,0,.4);
}
.signin-card h1 { font-size: clamp(2rem, 5vw, 2.8rem); margin-bottom: 1rem; color: #fff; }
.signin-card p { color: var(--muted); font-size: 1rem; margin-bottom: 2.5rem; line-height: 1.6; }
.signin-card button { margin-top: 0.5rem; }
.signin-card .form-group { margin-bottom: 1.1rem; text-align: left; }
.signin-card .form-group label { margin-bottom: .4rem; display: block; }
.signin-status {
  margin-top: 1.5rem;
  font-size: .9rem;
  border-radius: var(--radius);
  padding: 1rem;
  display: none;
}
.signin-status.ok { background: rgba(2,185,242,.1); color: var(--accent); display: block; }
.signin-status.err { background: rgba(255,80,80,.1); color: #ff5252; display: block; }
.signin-disclaimer { margin-top: 1.8rem; font-size: .8rem; color: var(--muted); line-height: 1.6; }
.success-msg { color: var(--accent); margin-top: 1.5rem; font-weight: 600; line-height: 1.6; }

/* ── Unsubscribe / Refund CSS ──────────────────────────── */
.unsub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.unsub-card {
  background: var(--surface);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: border-color .3s;
}
.unsub-card:hover { border-color: var(--border); }
.unsub-card h3 { font-family: var(--font-display); font-size: 1.6rem; color: var(--accent); margin-bottom: 1.2rem; }
.unsub-card p { font-size: 1rem; color: rgba(255,255,255,.85); margin-bottom: .6rem; line-height: 1.6; }
.code {
  display: inline-block;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--accent);
  font-family: monospace;
  font-size: .95rem;
  padding: .2rem .6rem;
  border-radius: var(--radius);
  font-weight: 700;
}
.refund-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  max-width: 800px;
  margin: 3rem auto 0;
}
.refund-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-size: 1.05rem;
  color: rgba(255,255,255,.85);
  line-height: 1.7;
}
.refund-list .check { color: var(--accent); flex-shrink: 0; font-weight: 700; }

/* ── Carrier Billing CSS ───────────────────────────────── */
.cb-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.cb-card {
  background: var(--surface);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: all .3s;
}
.cb-card:hover { border-color: var(--border); transform: translateY(-3px); }
.cb-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--accent);
  opacity: .2;
  line-height: 1;
  margin-bottom: .8rem;
}
.cb-card h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: .8rem;
  color: #fff;
}
.cb-card p { color: var(--muted); font-size: .95rem; line-height: 1.7; }

/* ── Page Hero Layout ──────────────────────────────────── */
.page-hero {
  padding: calc(var(--header-h) + 6rem) 0 4rem;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 60% at 50% 0%, rgba(2,185,242,.15) 0%, transparent 70%),
    var(--bg);
  border-bottom: 1px solid var(--border-dim);
}
.page-hero .eyebrow { margin-bottom: .8rem; }
.page-hero h1 { font-size: clamp(2.8rem, 6vw, 5rem); margin-bottom: 1.2rem; color: #fff; }
.page-hero p { color: var(--muted); font-size: 1.15rem; max-width: 650px; margin: 0 auto; line-height: 1.7; }

/* ── 404 Page ──────────────────────────────────────────── */
.page-404 {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  gap: 1.8rem;
}
.page-404 .big-num {
  font-family: var(--font-display);
  font-size: clamp(6rem, 20vw, 15rem);
  color: var(--accent);
  opacity: .18;
  line-height: 1;
  text-shadow: 0 0 50px var(--accent-glow);
}
.page-404 h1 { font-size: clamp(2rem, 4vw, 3.2rem); color: #fff; }
.page-404 p { color: var(--muted); max-width: 460px; font-size: 1.1rem; }

/* ── Legal Content wrapper ─────────────────────────────── */
.legals-wrap {
  padding: 4rem 0;
}
.legal-content {
  width: 100%;
  margin: 0 auto;
  color: rgba(255,255,255,.85);
  line-height: 1.8;
  font-size: 1rem;
}
.legal-content h2, .legal-content h3, .legal-content h6 {
  letter-spacing: 0;
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--text);
  margin: 2.5rem 0 1rem;
}
.legal-content h6 { font-size: 1.1rem; }
.legal-content p { margin-bottom: 1.2rem; }
.legal-content a { color: var(--accent); text-decoration: underline; }

/* ── Footer ────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-mid);
  border-top: 1px solid var(--border-dim);
  padding: 5rem 0 3rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
.footer-brand .logo { margin-bottom: 1.5rem; display: inline-block; }
.footer-brand .logo img { height: 34px; }
.footer-brand p { font-size: .95rem; color: var(--muted); line-height: 1.8; max-width: 320px; margin-bottom: 1.5rem; }
.footer-entity { font-size: .85rem; color: var(--muted); line-height: 1.7; }
.footer-entity p { margin-bottom: .6rem; }
.footer-col h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 1.5rem;
}
.footer-col ul li { margin-bottom: .8rem; }
.footer-col ul li a { font-size: .95rem; 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: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: .85rem; color: var(--muted); }
.footer-bottom a { color: var(--accent); }
.footer-version { font-size: .8rem; color: rgba(255,255,255,.15); }

/* ── Responsive 960px ──────────────────────────────────── */
@media (max-width: 960px) {
  section { padding: 4.5rem 0; }
  .split-grid { grid-template-columns: 1fr; gap: 3rem; }
  .tailor-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .contact-cards { grid-template-columns: 1fr; gap: 1.5rem; }
  .cb-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .footer-grid > :first-child { grid-column: span 2; }
}

/* ── Responsive 700px ──────────────────────────────────── */
@media (max-width: 700px) {
  section { padding: 3.5rem 0; }
  .mobile-images-grid { gap: 1rem; }
  .mobile-images-grid img { max-width: 150px; }
  .tailor-grid { grid-template-columns: 1fr; }
  .tailor-card { padding: 2rem; }
  .steps-row { grid-template-columns: 1fr; gap: 2rem; }
  .steps-row::before { display: none; }
  .contact-form { padding: 2.5rem 1.5rem; }
  .signin-card { padding: 3rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid > :first-child { grid-column: span 1; }
  .logo img { height: 30px; }
  .form-grid { grid-template-columns: 1fr; }

  .site-nav {
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    flex-direction: column;
    background: rgba(8,12,18,.98);
    padding: 2.5rem;
    gap: 1.5rem;
    align-items: flex-start;
    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 Support ────────────────────────────────── */
[dir="rtl"] .header-inner { flex-direction: row-reverse; }
[dir="rtl"] .footer-grid { direction: rtl; }
[dir="rtl"] .footer-bottom { direction: rtl; }
[dir="rtl"] .plan-features li { padding-left: 0; padding-right: 1.8rem; }
[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"] .phone-row { direction: ltr; }
[dir="rtl"] .form-group label { text-align: right; }
[dir="rtl"] .form-group input,
[dir="rtl"] .form-group select,
[dir="rtl"] .form-group textarea { direction: rtl; text-align: right; }
[dir="rtl"] .form-group input[type="email"],
[dir="rtl"] .form-group input[type="tel"] { direction: ltr; text-align: right; }
[dir="rtl"] .form-section-head { text-align: right; }
[dir="rtl"] .signin-card .form-group { text-align: right; }
