/* ─── Variables ─────────────────────────────────────────────────────── */
:root {
  --night-navy:    #12172e;
  --dawn-gold:     #f0c040;
  --dawn-gold-dim: rgba(240, 192, 64, 0.15);
  --soft-navy:     #262c59;
  --pure-white:    #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.55);
  --card-bg:       rgba(255, 255, 255, 0.05);
  --card-border:   rgba(255, 255, 255, 0.08);
  --font:          'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius:        20px;
  --radius-sm:     12px;
}

/* ─── Reset ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font);
  background: var(--night-navy);
  color: var(--pure-white);
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
em { font-style: italic; }
strong { font-weight: 700; }

/* ─── Utilities ──────────────────────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.gold { color: var(--dawn-gold); }
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dawn-gold);
  margin-bottom: 14px;
}
.gold-label { color: var(--dawn-gold); }
.section-sub {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.7;
  margin-top: 16px;
}

/* ─── Buttons ────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--dawn-gold);
  color: var(--night-navy);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 50px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
  box-shadow: 0 8px 32px rgba(240, 192, 64, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(240, 192, 64, 0.5);
  filter: brightness(1.05);
}
.btn-primary.btn-large {
  font-size: 17px;
  padding: 17px 36px;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 500;
  border: 1.5px solid rgba(255,255,255,0.15);
  padding: 13px 24px;
  border-radius: 50px;
  transition: color 0.18s, border-color 0.18s;
}
.btn-ghost:hover { color: #fff; border-color: rgba(255,255,255,0.35); }
.btn-secondary {
  display: block;
  text-align: center;
  background: rgba(255,255,255,0.08);
  color: var(--pure-white);
  font-weight: 600;
  font-size: 14px;
  padding: 13px 24px;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.12);
  transition: background 0.18s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.14); }
.btn-nav {
  background: var(--dawn-gold);
  color: var(--night-navy);
  font-weight: 700;
  font-size: 13px;
  padding: 9px 20px;
  border-radius: 50px;
  transition: filter 0.15s;
}
.btn-nav:hover { filter: brightness(1.08); }

/* ─── Navigation ─────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background 0.25s, backdrop-filter 0.25s, border-color 0.25s;
}
.nav.scrolled {
  background: rgba(18, 23, 46, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.3px;
}
.nav-logo-icon { font-size: 20px; }
.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.15s;
}
.nav-links a:hover { color: #fff; }

/* ─── Hero ───────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 24px 60px;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-bg-glow {
  position: fixed;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 700px;
  background: radial-gradient(ellipse at 50% 0%, rgba(240,192,64,0.12) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.hero-stars {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.star {
  position: absolute;
  width: 2px; height: 2px;
  background: #fff;
  border-radius: 50%;
  animation: twinkle var(--d, 3s) ease-in-out infinite var(--delay, 0s);
}
@keyframes twinkle {
  0%, 100% { opacity: var(--lo, 0.2); }
  50% { opacity: var(--hi, 0.8); }
}

.hero-content {
  flex: 1;
  max-width: 560px;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(240,192,64,0.1);
  border: 1px solid rgba(240,192,64,0.25);
  color: var(--dawn-gold);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}
.hero-title {
  font-size: clamp(42px, 6vw, 68px);
  font-weight: 900;
  line-height: 1.07;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 36px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 10px;
}
.proof-stars {
  color: var(--dawn-gold);
  font-size: 13px;
  letter-spacing: 2px;
}
.proof-text {
  font-size: 12px;
  color: var(--text-secondary);
}

/* ─── Phone mockups ──────────────────────────────────────────────────── */
.hero-phones {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  min-height: 560px;
}
.phone-stack {
  position: relative;
  width: 280px;
  height: 540px;
}
.phone-mockup {
  position: absolute;
  width: 250px;
  border-radius: 40px;
  border: 1.5px solid rgba(255,255,255,0.1);
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04);
  overflow: hidden;
  background: #12172e;
}
.phone-front {
  top: 0; left: 20px;
  height: 520px;
  z-index: 2;
}
.phone-back {
  top: 40px; left: -10px;
  height: 520px;
  z-index: 1;
  transform: rotate(-6deg) translateX(-20px);
  filter: brightness(0.6) blur(1px);
  opacity: 0.7;
}
.phone-screen {
  height: 100%;
  overflow: hidden;
}
.mock-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px 4px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}
.mock-pill {
  width: 72px; height: 22px;
  background: #000;
  border-radius: 20px;
}
.mock-content { overflow: hidden; }
.mock-option {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 10px 14px;
  margin-bottom: 8px;
  text-align: left;
}
.mock-option-selected {
  border: 1.5px solid rgba(240,192,64,0.5);
  background: rgba(240,192,64,0.08);
}
.mock-option-locked { opacity: 0.45; }
.mock-pro-badge {
  font-size: 9px;
  font-weight: 700;
  background: var(--dawn-gold);
  color: var(--night-navy);
  padding: 1px 5px;
  border-radius: 4px;
  margin-left: 4px;
  vertical-align: middle;
}

/* Small phone mockup for feature sections */
.phone-mockup-sm {
  width: 220px;
  height: 420px;
  border-radius: 34px;
  border: 1.5px solid rgba(255,255,255,0.1);
  overflow: hidden;
  background: #12172e;
  box-shadow: 0 30px 60px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.04);
  margin: 0 auto;
}
.phone-screen-sm { height: 100%; overflow: hidden; }
.mock-status-bar-sm {
  padding: 10px 14px 4px;
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}

/* ─── Stats bar ──────────────────────────────────────────────────────── */
.stats-bar {
  background: rgba(255,255,255,0.04);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 28px 24px;
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 48px;
}
.stat-num {
  font-size: 36px;
  font-weight: 900;
  color: var(--dawn-gold);
  letter-spacing: -1px;
}
.stat-label {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.08);
  align-self: stretch;
  margin: 8px 0;
}

/* ─── Problem section ────────────────────────────────────────────────── */
.problem {
  padding: 100px 0;
  text-align: center;
}
.problem h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  max-width: 640px;
  margin: 0 auto;
}
.problem .section-sub { margin: 0 auto 56px; }
.problem-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}
.problem-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.2s, border-color 0.2s;
}
.problem-card:hover {
  transform: translateY(-4px);
  border-color: rgba(240,192,64,0.2);
}
.problem-icon { font-size: 28px; margin-bottom: 14px; }
.problem-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}
.problem-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.problem-arrow {
  font-size: 20px;
  color: var(--dawn-gold);
  margin: 16px 0 10px;
  opacity: 0.7;
}
.problem-solution {
  font-size: 13px;
  color: rgba(240,192,64,0.85);
  font-weight: 500;
  line-height: 1.5;
  background: rgba(240,192,64,0.08);
  border-left: 2px solid rgba(240,192,64,0.4);
  padding: 10px 12px;
  border-radius: 0 8px 8px 0;
}

/* ─── Features ───────────────────────────────────────────────────────── */
.features {
  padding: 80px 0 100px;
}
.features h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  max-width: 560px;
  margin-bottom: 72px;
}
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 100px;
}
.feature-row-reverse { direction: rtl; }
.feature-row-reverse > * { direction: ltr; }
.feature-number {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--dawn-gold);
  margin-bottom: 12px;
}
.feature-text h3 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  line-height: 1.2;
}
.feature-text p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 20px;
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.feature-list li {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}
.feature-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ─── How it works ───────────────────────────────────────────────────── */
.how-it-works {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.02) 50%, transparent 100%);
}
.how-it-works h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.how-it-works .section-sub { margin-bottom: 60px; }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 28px; left: 28px; right: 28px;
  height: 1px;
  background: linear-gradient(to right, rgba(240,192,64,0.4), rgba(240,192,64,0.15));
  z-index: 0;
}
.step {
  position: relative;
  z-index: 1;
}
.step-line { display: none; }
.step-icon {
  width: 56px; height: 56px;
  background: rgba(240,192,64,0.12);
  border: 1.5px solid rgba(240,192,64,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}
.step-time {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dawn-gold);
  margin-bottom: 6px;
}
.step h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.step p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ─── Pro section ────────────────────────────────────────────────────── */
.pro-section {
  padding: 100px 0;
  position: relative;
  text-align: center;
  overflow: hidden;
}
.pro-glow {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse at 50% 0%, rgba(240,192,64,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.pro-section h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -1px;
  position: relative;
  z-index: 1;
}
.pro-section .section-sub {
  margin: 0 auto 52px;
  position: relative;
  z-index: 1;
}
.pro-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 720px;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}
.pro-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: left;
  position: relative;
}
.pro-card.premium {
  border-color: rgba(240,192,64,0.35);
  background: linear-gradient(160deg, rgba(240,192,64,0.07) 0%, rgba(240,192,64,0.02) 100%);
}
.pro-badge-popular {
  position: absolute;
  top: -12px; right: 24px;
  background: var(--dawn-gold);
  color: var(--night-navy);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}
.pro-card-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 10px;
}
.pro-card-label.gold { color: var(--dawn-gold); }
.pro-card-price {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 4px;
}
.pro-card-price.gold { color: var(--dawn-gold); }
.pro-card-price span { font-size: 16px; font-weight: 500; }
.pro-card-desc {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}
.pro-features-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.pro-features-list li {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}
.pro-legal {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  position: relative;
  z-index: 1;
}
.pro-legal a {
  color: rgba(255,255,255,0.45);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ─── Quote section ──────────────────────────────────────────────────── */
.quote-section {
  padding: 80px 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.hadith {
  max-width: 640px;
  margin: 0 auto;
}
.hadith p {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  line-height: 1.45;
  color: rgba(255,255,255,0.9);
  margin-bottom: 16px;
}
.hadith cite {
  font-size: 14px;
  color: var(--dawn-gold);
  font-style: normal;
  font-weight: 500;
}

/* ─── Download section ───────────────────────────────────────────────── */
.download-section {
  padding: 120px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.download-glow {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse at 50% 100%, rgba(240,192,64,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.download-moon {
  font-size: 56px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 30px rgba(240,192,64,0.5));
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.download-section h2 {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 900;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}

/* ─── Footer ─────────────────────────────────────────────────────────── */
.footer {
  padding: 40px 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 18px;
}
.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  font-size: 13px;
  color: var(--text-secondary);
  transition: color 0.15s;
}
.footer-links a:hover { color: #fff; }
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  line-height: 1.7;
}

/* ─── Legal pages shared styles ────────────────────────────────────── */
.legal-page {
  max-width: 740px;
  margin: 100px auto 80px;
  padding: 0 24px;
}
.legal-page h1 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.8px;
  margin-bottom: 8px;
}
.legal-date {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 48px;
}
.legal-page h2 {
  font-size: 19px;
  font-weight: 700;
  margin: 40px 0 10px;
  color: var(--dawn-gold);
}
.legal-page p, .legal-page li {
  font-size: 15px;
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  margin-bottom: 12px;
}
.legal-page ul { padding-left: 20px; }
.legal-page ul li { list-style: disc; margin-bottom: 6px; }
.legal-page a { color: var(--dawn-gold); text-decoration: underline; text-underline-offset: 2px; }

/* ─── Invite page ────────────────────────────────────────────────────── */
.invite-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  text-align: center;
}
.invite-card {
  max-width: 500px;
  width: 100%;
}
.invite-icon { font-size: 64px; margin-bottom: 24px; filter: drop-shadow(0 0 20px rgba(240,192,64,0.4)); }
.invite-card h1 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.8px;
  margin-bottom: 12px;
}
.invite-card p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}
.invite-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 36px;
}
.invite-feature {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: left;
}
.invite-feature-icon { font-size: 20px; margin-bottom: 8px; }
.invite-feature-title { font-size: 13px; font-weight: 700; margin-bottom: 4px; }
.invite-feature-desc { font-size: 12px; color: var(--text-secondary); }

/* ─── Invite page extended ───────────────────────────────────────────── */
.invite-body { background: var(--night-navy); }
.invite-hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, #1a2060 0%, var(--night-navy) 100%);
  padding: 100px 24px 60px;
  min-height: 100vh;
}
.invite-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.invite-page {
  position: relative;
  z-index: 1;
  min-height: unset;
  padding: 0;
}
.invite-card {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.invite-badge {
  display: inline-block;
  background: rgba(240,192,64,0.12);
  border: 1px solid rgba(240,192,64,0.35);
  color: var(--dawn-gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 6px 18px;
  border-radius: 999px;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.invite-moon { font-size: 72px; margin-bottom: 20px; filter: drop-shadow(0 0 24px rgba(240,192,64,0.4)); }
.invite-headline {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.15;
  margin-bottom: 16px;
  color: #fff;
}
.invite-sub {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}
.invite-hadith {
  background: rgba(240,192,64,0.07);
  border-left: 3px solid var(--dawn-gold);
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin-bottom: 32px;
  text-align: left;
  font-style: italic;
  font-size: 15px;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
}
.invite-hadith-mark { font-size: 28px; color: var(--dawn-gold); line-height: 0; vertical-align: -8px; }
.invite-hadith-src { margin-top: 10px; margin-bottom: 0; font-size: 13px; color: var(--text-secondary); font-style: normal; font-weight: 500; }
.invite-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 36px;
  text-align: left;
}
.invite-feature {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.invite-feature-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.invite-feature strong { display: block; font-size: 14px; font-weight: 700; margin-bottom: 4px; color: #fff; }
.invite-feature p { font-size: 12px; color: var(--text-secondary); line-height: 1.5; margin: 0; }
.invite-cta { margin-bottom: 14px; }
.btn-large { font-size: 17px; padding: 18px 40px; }
.invite-store-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.store-icon { display: flex; align-items: center; justify-content: center; }
.invite-store-note { margin-top: 10px; font-size: 13px; color: var(--text-secondary); }
.invite-footer-note { margin-top: 16px; font-size: 13px; color: var(--text-secondary); padding: 14px 20px; background: rgba(255,255,255,0.04); border-radius: 10px; }
.invite-footer-note p { margin: 0; }
.invite-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.invite-stat { text-align: center; }
.invite-stat-num { display: block; font-size: 28px; font-weight: 900; color: var(--dawn-gold); line-height: 1; }
.invite-stat-label { font-size: 12px; color: var(--text-secondary); margin-top: 4px; display: block; }
.invite-stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.1); }

/* ─── Responsive ─────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero { flex-direction: column; text-align: center; min-height: auto; padding-top: 120px; gap: 40px; }
  .hero-content { max-width: 100%; }
  .hero-sub { margin: 0 auto 36px; }
  .hero-ctas { justify-content: center; }
  .hero-social-proof { justify-content: center; }
  .problem-cards { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .feature-row { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .feature-row-reverse { direction: ltr; }
  .feature-list { align-items: center; }
  .steps { grid-template-columns: 1fr 1fr; }
  .steps::before { display: none; }
  .pro-cards { grid-template-columns: 1fr; max-width: 400px; }
  .stats-bar { gap: 0; }
  .stat-item { padding: 0 20px; }
  .hero-phones { min-height: 400px; }
  .phone-stack { width: 220px; height: 420px; }
  .phone-mockup { width: 200px; height: 400px; }
}
@media (max-width: 600px) {
  .nav-links { display: none; }
  .hero-title { font-size: 38px; }
  .stats-bar { gap: 12px; }
  .stat-divider { display: none; }
  .stat-item { padding: 0 16px; }
  .steps { grid-template-columns: 1fr; }
  .invite-features { grid-template-columns: 1fr; }
}
