/* ============================================================
   J-City Telecoms — Landing Page Stylesheet
   Theme: Purple/Violet gradient, Inter font, animated orbs
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

:root {
  --brand-from:   #a855f7;
  --brand-to:     #7c3aed;
  --brand-mid:    #9333ea;
  --brand-light:  #c4b5fd;

  --bg:           #f8fafc;
  --bg-dark:      #0f0a1e;
  --surface:      #ffffff;
  --surface-alt:  #faf5ff;
  --border:       #e9d5ff;
  --text:         #0f172a;
  --muted:        #64748b;

  --radius-sm:    8px;
  --radius-md:    14px;
  --radius-lg:    22px;
  --radius-xl:    32px;
  --shadow-sm:    0 2px 12px rgba(124,58,237,0.10);
  --shadow-md:    0 8px 32px rgba(124,58,237,0.15);
  --shadow-lg:    0 20px 60px rgba(124,58,237,0.20);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Scrollbar ────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: var(--brand-mid); border-radius: 99px; }

/* ── Utility ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.grad-text {
  background: linear-gradient(135deg, var(--brand-from), var(--brand-to));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-from), var(--brand-to));
  color: #fff;
  box-shadow: 0 6px 24px rgba(124,58,237,0.40);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(124,58,237,0.55);
}

.btn-outline {
  background: transparent;
  color: var(--brand-mid);
  border: 2px solid var(--brand-from);
}
.btn-outline:hover {
  background: rgba(168,85,247,0.08);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-2px);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 12.5px;
  font-weight: 600;
  background: rgba(168,85,247,0.10);
  color: var(--brand-mid);
  border: 1px solid rgba(168,85,247,0.25);
  letter-spacing: 0.3px;
}

/* ── Animated orbs (background) ───────────────────────────── */
.orb-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
  animation: orbFloat 16s ease-in-out infinite alternate;
}
.orb-1 {
  width: 600px; height: 600px;
  top: -200px; left: -150px;
  background: radial-gradient(circle, rgba(168,85,247,0.4), transparent 70%);
  animation-duration: 14s;
}
.orb-2 {
  width: 500px; height: 500px;
  bottom: -150px; right: -100px;
  background: radial-gradient(circle, rgba(124,58,237,0.35), transparent 70%);
  animation-duration: 18s;
  animation-direction: alternate-reverse;
}
.orb-3 {
  width: 300px; height: 300px;
  top: 50%; left: 50%;
  background: radial-gradient(circle, rgba(196,181,253,0.2), transparent 70%);
  animation-duration: 22s;
}
@keyframes orbFloat {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(40px, -30px) scale(1.08); }
  100% { transform: translate(-25px, 20px) scale(0.96); }
}

/* Grid overlay */
.grid-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.025) 1px, transparent 1px);
  background-size: 52px 52px;
}

/* ── NAVBAR ───────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  padding: 0 24px;
  transition: background 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08), var(--shadow-sm);
}
.navbar__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.navbar__logo-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand-from), var(--brand-to));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(124,58,237,0.4);
}
.navbar__logo-text {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.navbar__nav a {
  display: block;
  padding: 8px 16px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.navbar__nav a:hover {
  color: var(--brand-mid);
  background: rgba(168,85,247,0.08);
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar__actions .btn { padding: 9px 20px; font-size: 14px; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}
.hero__badge {
  margin-bottom: 20px;
}
.hero__title {
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 22px;
}
.hero__title span { display: block; }
.hero__desc {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 500px;
}
.hero__cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.hero__cta .btn { padding: 15px 32px; font-size: 16px; }

.hero__trust {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  color: var(--muted);
  font-weight: 500;
}
.hero__trust-item i { color: var(--brand-from); }

.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__img-wrap {
  position: relative;
  z-index: 1;
  animation: heroFloat 5s ease-in-out infinite;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}
.hero__img-wrap img {
  width: 100%;
  max-width: 500px;
  filter: drop-shadow(0 30px 60px rgba(124,58,237,0.25));
}
.hero__blob {
  position: absolute;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(168,85,247,0.15), rgba(124,58,237,0.10));
  filter: blur(40px);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

/* Floating stat cards on hero */
.hero__float-card {
  position: absolute;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(168,85,247,0.20);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
  animation: cardPop 0.6s cubic-bezier(0.16,1,0.3,1) both;
}
.hero__float-card--1 { top: 10%; left: -5%; animation-delay: 0.3s; }
.hero__float-card--2 { bottom: 15%; right: -5%; animation-delay: 0.5s; }
@keyframes cardPop {
  from { opacity: 0; transform: scale(0.85) translateY(10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.hero__float-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand-from), var(--brand-to));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  flex-shrink: 0;
}
.hero__float-label { font-size: 11px; color: var(--muted); font-weight: 500; }
.hero__float-value { font-size: 15px; font-weight: 800; color: var(--text); line-height: 1; }

/* ── STATS BAND ───────────────────────────────────────────── */
.stats-band {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, var(--brand-from), var(--brand-to));
  padding: 52px 0;
}
.stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stats-band__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item {}
.stat-item__value {
  font-size: 42px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -1px;
}
.stat-item__label {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}

/* ── SECTION BASE ─────────────────────────────────────────── */
.section {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}
.section__header {
  text-align: center;
  margin-bottom: 64px;
}
.section__eyebrow {
  margin-bottom: 12px;
}
.section__title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section__desc {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* ── FEATURES ─────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid rgba(168,85,247,0.12);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-from), var(--brand-to));
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(168,85,247,0.3); }
.feature-card:hover::before { opacity: 1; }

.feature-card__icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(168,85,247,0.12), rgba(124,58,237,0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--brand-mid);
  margin-bottom: 22px;
  border: 1px solid rgba(168,85,247,0.15);
}
.feature-card__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}
.feature-card__desc {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.7;
}

/* ── HOW IT WORKS ─────────────────────────────────────────── */
.hiw-section { background: var(--surface-alt); }
.hiw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.hiw-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--brand-from), var(--brand-to));
  border-radius: 2px;
  z-index: 0;
}
.hiw-step {
  text-align: center;
  position: relative;
  z-index: 1;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 40px 28px 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}
.hiw-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.hiw-step__num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-from), var(--brand-to));
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  box-shadow: 0 6px 20px rgba(124,58,237,0.4);
  position: relative;
  z-index: 1;
}
.hiw-step__img { width: 120px; height: 120px; object-fit: contain; margin: 0 auto 20px; display: block; }
.hiw-step__title { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.hiw-step__desc { font-size: 14.5px; color: var(--muted); line-height: 1.65; }

/* ── NETWORKS ─────────────────────────────────────────────── */
.networks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.network-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.network-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.network-card__color-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.network-card__icon {
  width: 72px; height: 72px;
  border-radius: var(--radius-md);
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
  color: #fff;
}
.network-card__name { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.network-card__desc { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* Network specific colors */
.network-mtn .network-card__color-bar { background: #FFCC00; }
.network-mtn .network-card__icon { background: #FFCC00; color: #000; }
.network-orange .network-card__color-bar { background: #FF6600; }
.network-orange .network-card__icon { background: #FF6600; }
.network-wave .network-card__color-bar { background: #00A8E0; }
.network-wave .network-card__icon { background: #00A8E0; }

/* ── SPLIT SECTION ────────────────────────────────────────── */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-section--reverse { direction: rtl; }
.split-section--reverse > * { direction: ltr; }

.split-content__eyebrow { margin-bottom: 14px; }
.split-content__title {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 900;
  letter-spacing: -0.8px;
  line-height: 1.12;
  margin-bottom: 18px;
}
.split-content__desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 28px;
}
.split-content__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.split-content__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
}
.split-content__list li i {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-from), var(--brand-to));
  color: #fff;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.split-visual img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  transition: transform 0.4s;
}
.split-visual img:hover { transform: scale(1.02) rotate(-1deg); }

/* ── CTA SECTION ──────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, #0f0a1e 0%, #1e0845 50%, #0f0a1e 100%);
  position: relative;
  z-index: 1;
  padding: 100px 0;
  overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 800px; height: 800px;
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(168,85,247,0.15) 0%, transparent 65%);
  pointer-events: none;
}
.cta-section .badge { background: rgba(168,85,247,0.2); color: var(--brand-light); border-color: rgba(168,85,247,0.35); margin-bottom: 20px; }
.cta-section h2 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 18px;
}
.cta-section p {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.cta-section__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cta-section__btns .btn { padding: 16px 36px; font-size: 16px; }

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: #0a0618;
  color: rgba(255,255,255,0.65);
  padding: 64px 0 32px;
  position: relative;
  z-index: 1;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand {}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  text-decoration: none;
}
.footer__logo-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--brand-from), var(--brand-to));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
}
.footer__logo-text { font-size: 18px; font-weight: 800; color: #fff; }
.footer__brand-desc { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.footer__socials {
  display: flex;
  gap: 10px;
}
.footer__social {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 14px;
  transition: background 0.2s, color 0.2s;
}
.footer__social:hover { background: var(--brand-mid); color: #fff; }

.footer__col-title {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--brand-light); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom a { color: var(--brand-light); text-decoration: none; }

/* ── REGISTER MODAL ───────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,10,30,0.85);
  backdrop-filter: blur(12px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.modal {
  background: var(--surface);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5), 0 0 0 1px rgba(168,85,247,0.15);
  transform: translateY(30px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
}
.modal-overlay.is-open .modal {
  transform: translateY(0) scale(1);
}
.modal__header {
  padding: 36px 36px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.modal__header-text {}
.modal__title { font-size: 24px; font-weight: 800; margin-bottom: 6px; }
.modal__sub { font-size: 14px; color: var(--muted); }
.modal__close {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: none;
  background: #f1f5f9;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 15px;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}
.modal__close:hover { background: #fee2e2; color: #ef4444; }

.modal__body { padding: 28px 36px 36px; }

/* Form inside modal */
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 7px;
}
.form-label .req { color: var(--brand-from); }

.input-wrap { position: relative; }
.input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 14px;
  pointer-events: none;
  transition: color 0.2s;
}
.form-control {
  width: 100%;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 12px 14px 12px 42px;
  font-family: inherit;
  font-size: 14.5px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  -webkit-appearance: none;
}
.form-control:focus {
  border-color: var(--brand-from);
  background: rgba(168,85,247,0.04);
  box-shadow: 0 0 0 3px rgba(168,85,247,0.15);
}
.form-control:focus ~ .input-icon { color: var(--brand-from); }
.input-wrap:focus-within .input-icon { color: var(--brand-from); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

textarea.form-control {
  padding-top: 12px;
  resize: vertical;
  min-height: 90px;
}

.form-submit {
  margin-top: 24px;
}
.form-submit .btn { width: 100%; justify-content: center; padding: 15px; font-size: 15.5px; }

/* Alert messages */
.alert {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.5;
  animation: slideDown 0.3s ease;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.alert-error { background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.2); color: #dc2626; }
.alert-success { background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.2); color: #16a34a; }
.alert i { flex-shrink: 0; margin-top: 1px; }

/* ── SUCCESS STATE ────────────────────────────────────────── */
.success-state {
  text-align: center;
  padding: 20px 0 10px;
}
.success-state img {
  width: 200px;
  margin-bottom: 20px;
}
.success-state h3 { font-size: 22px; font-weight: 800; margin-bottom: 10px; }
.success-state p { font-size: 14.5px; color: var(--muted); line-height: 1.7; }

/* ── SCROLL ANIMATIONS ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__desc { margin: 0 auto 36px; }
  .hero__cta { justify-content: center; }
  .hero__trust { justify-content: center; }
  .hero__visual { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .split-section { grid-template-columns: 1fr; gap: 40px; }
  .split-section--reverse { direction: ltr; }
}

@media (max-width: 768px) {
  .navbar__nav { display: none; }
  .nav-hamburger { display: flex; }
  .stats-band__grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .hiw-grid { grid-template-columns: 1fr; }
  .hiw-grid::before { display: none; }
  .networks-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .form-row { grid-template-columns: 1fr; }
  .modal__header, .modal__body { padding-left: 24px; padding-right: 24px; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .cta-section__btns { flex-direction: column; align-items: stretch; }
}

@media (max-width: 480px) {
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { justify-content: center; }
  .stat-item__value { font-size: 32px; }
}
