/* ── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --deep-indigo: #08080e;
  --dark-blue: #10101a;
  --surface: #141420;
  --card-bg: rgba(255, 255, 255, 0.04);
  --card-border: rgba(255, 255, 255, 0.06);
  --card-bg-hover: rgba(255, 255, 255, 0.07);
  --teal: #00C78C;
  --teal-dim: #00A674;
  --teal-glow: rgba(0, 199, 140, 0.15);
  --teal-subtle: rgba(0, 199, 140, 0.08);
  --gold: #D4A54A;
  --gold-dim: #B8933E;
  --gold-glow: rgba(212, 165, 74, 0.15);
  --gold-subtle: rgba(212, 165, 74, 0.08);
  --purple: #8B5CF6;
  --purple-subtle: rgba(139, 92, 246, 0.1);
  --soft-white: rgba(255, 255, 255, 0.93);
  --muted: rgba(255, 255, 255, 0.55);
  --muted-dim: rgba(255, 255, 255, 0.35);
  --max-width: 1100px;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: linear-gradient(180deg, var(--deep-indigo) 0%, var(--dark-blue) 100%);
  background-attachment: fixed;
  color: var(--soft-white);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--teal);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: var(--gold);
}

img {
  max-width: 100%;
  height: auto;
}

/* ── Layout ──────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 100px 0;
}

/* ── Navigation ──────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(8, 8, 14, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s;
}

nav.nav-scrolled {
  background: rgba(8, 8, 14, 0.95);
  border-bottom-color: var(--card-border);
}

nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--soft-white);
  letter-spacing: -0.03em;
}

.nav-logo span {
  color: var(--teal);
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--soft-white);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--teal);
  color: var(--deep-indigo) !important;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 50px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 20px var(--teal-glow);
  color: var(--deep-indigo) !important;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--soft-white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Mobile nav overlay */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(8, 8, 14, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

body.nav-open .mobile-nav-overlay {
  opacity: 1;
  pointer-events: auto;
}

body.nav-open .nav-hamburger span:first-child {
  transform: rotate(45deg) translate(2.5px, 2.5px);
}

body.nav-open .nav-hamburger span:last-child {
  transform: rotate(-45deg) translate(2.5px, -2.5px);
}

.mobile-nav-links {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.mobile-nav-links a {
  color: var(--soft-white);
  font-size: 1.5rem;
  font-weight: 600;
}

.mobile-nav-download {
  display: inline-block;
  background: var(--teal);
  color: var(--deep-indigo) !important;
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 1.1rem !important;
  font-weight: 700;
}

/* ── Hero ────────────────────────────────────────────── */
.hero {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.hero-orb--teal {
  top: -10%;
  left: 20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 199, 140, 0.1) 0%, transparent 70%);
  animation: orb-float 8s ease-in-out infinite alternate;
}

.hero-orb--gold {
  top: 20%;
  right: 5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 165, 74, 0.06) 0%, transparent 70%);
  animation: orb-float 10s ease-in-out infinite alternate-reverse;
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.5'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

@keyframes orb-float {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -20px) scale(1.05); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 540px;
}

.hero-bismillah {
  margin-bottom: 28px;
}

.bismillah-arabic {
  display: block;
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 4px;
}

.bismillah-en {
  display: block;
  font-size: 0.8rem;
  color: var(--muted-dim);
  font-style: italic;
  font-weight: 400;
}

.hero-headline {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-headline-accent {
  background: linear-gradient(135deg, var(--gold) 0%, #E8C872 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 460px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--teal);
  color: var(--deep-indigo) !important;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 50px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 40px var(--teal-glow);
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 60px rgba(0, 199, 140, 0.25);
  color: var(--deep-indigo) !important;
}

.hero-subtitle {
  font-size: 0.85rem;
  color: var(--muted-dim);
}

/* ── Hero Visual / Phone Mockup ──────────────────────── */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-mockup {
  width: 280px;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 44px;
  padding: 10px;
  position: relative;
  box-shadow:
    0 30px 60px rgba(0,0,0,0.4),
    0 0 0 1px rgba(255,255,255,0.04),
    inset 0 1px 0 rgba(255,255,255,0.08);
  animation: phone-float 6s ease-in-out infinite;
}

.phone-notch {
  width: 100px;
  height: 24px;
  background: var(--deep-indigo);
  border-radius: 0 0 16px 16px;
  margin: 0 auto;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.phone-screen {
  background: #000;
  border-radius: 34px;
  overflow: hidden;
}

.phone-screen-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 34px;
}

@keyframes phone-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}


/* Floating badges */
.phone-badge {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  animation: badge-float 5s ease-in-out infinite;
  white-space: nowrap;
}

.phone-badge--streak {
  top: 20%;
  right: -40px;
  color: var(--gold);
  animation-delay: -1s;
}

.phone-badge--blocked {
  bottom: 25%;
  left: -40px;
  color: var(--teal);
  animation-delay: -3s;
}

@keyframes badge-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ── Section Headers ─────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal);
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.section-header p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ── Social Proof ────────────────────────────────────── */
#social-proof {
  padding: 40px 0 60px;
}

.social-posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.social-post {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 0.3s, transform 0.3s var(--ease-out-expo);
}

.social-post:hover {
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.social-post-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.social-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--teal-subtle);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
}

.social-name {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--soft-white);
}

.social-handle {
  display: block;
  font-size: 0.75rem;
  color: var(--muted-dim);
}

.social-post p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.social-proof-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--muted-dim);
  font-weight: 500;
}

.proof-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--muted-dim);
}

/* ── Features (editorial split) ──────────────────────── */
.features-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.features-list {
  display: flex;
  flex-direction: column;
}

.feature-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--card-border);
}

.feature-row:first-child {
  padding-top: 0;
}

.feature-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.feature-row--highlight .feature-text h3 {
  color: var(--teal);
}

.feature-icon-wrapper {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon-wrapper.teal {
  background: var(--teal-subtle);
  color: var(--teal);
}

.feature-icon-wrapper.gold {
  background: var(--gold-subtle);
  color: var(--gold);
}

.feature-icon-wrapper.purple {
  background: var(--purple-subtle);
  color: var(--purple);
}

.feature-text h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.feature-text p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.feature-tag {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal);
  background: var(--teal-subtle);
  padding: 3px 8px;
  border-radius: 50px;
  margin-left: 8px;
  vertical-align: middle;
}

.features-visual {
  display: flex;
  justify-content: center;
}

.features-screenshot {
  width: 100%;
  max-width: 280px;
  border-radius: 32px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
}


/* ── Timeline / How It Works ─────────────────────────── */
#how-it-works {
  background: rgba(255, 255, 255, 0.01);
}

.timeline {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  padding-left: 72px;
}

.timeline-line {
  position: absolute;
  left: 23px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--teal), var(--gold), var(--teal));
  opacity: 0.2;
  border-radius: 2px;
}

.timeline-step {
  position: relative;
  padding-bottom: 56px;
}

.timeline-step:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -72px;
  top: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  z-index: 1;
}

.timeline-number {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
  display: block;
}

.timeline-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.timeline-content p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ── Pricing ─────────────────────────────────────────── */
#pricing {
  background: rgba(255, 255, 255, 0.01);
}

.pricing-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
  align-items: start;
}

.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s var(--ease-out-expo);
}

.pricing-card:hover {
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.pricing-card--featured {
  border-color: var(--teal);
  box-shadow: 0 0 60px rgba(0, 199, 140, 0.06);
  padding: 40px 28px;
  background: linear-gradient(180deg, rgba(0, 199, 140, 0.04), var(--card-bg));
}

.pricing-card--featured:hover {
  border-color: var(--teal);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: var(--deep-indigo);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.pricing-card-header {
  text-align: center;
  margin-bottom: 24px;
}

.pricing-card-header h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--muted);
}

.pricing-amount {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}

.pricing-period {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 4px;
}

.pricing-savings {
  font-size: 0.8rem;
  color: var(--teal);
  font-weight: 600;
  margin-top: 8px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 24px;
  padding: 0;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.88rem;
  color: var(--soft-white);
}

.pricing-feature.included svg {
  color: var(--teal);
  flex-shrink: 0;
}

.pricing-feature.excluded {
  color: var(--muted-dim);
}

.pricing-feature.excluded svg {
  color: var(--muted-dim);
  flex-shrink: 0;
}

.pricing-feature.highlight {
  color: var(--teal);
  font-weight: 600;
}

.pricing-cta {
  display: block;
  width: 100%;
  padding: 14px;
  border-radius: 50px;
  font-size: 0.92rem;
  font-weight: 700;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  border: none;
}

.pricing-cta--primary {
  background: var(--teal);
  color: var(--deep-indigo) !important;
}

.pricing-cta--primary:hover {
  color: var(--deep-indigo) !important;
  transform: translateY(-1px);
  box-shadow: 0 0 30px var(--teal-glow);
}

.pricing-cta--secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--soft-white) !important;
  border: 1px solid var(--card-border);
}

.pricing-cta--secondary:hover {
  color: var(--soft-white) !important;
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.08);
}

.pricing-trial-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted-dim);
  margin-top: 12px;
}

/* ── Gaza Banner ─────────────────────────────────────── */
.gaza-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 24px;
  background: rgba(0, 199, 140, 0.04);
  border: 1px solid rgba(0, 199, 140, 0.1);
  border-radius: var(--radius-sm);
  max-width: 500px;
  margin: 40px auto 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.gaza-banner svg {
  color: var(--teal);
  flex-shrink: 0;
}

.gaza-banner strong {
  color: var(--teal);
}

.gaza-banner p {
  margin: 0;
}

/* ── Footer ──────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--card-border);
  padding: 48px 0 32px;
}

.footer-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--card-border);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-tagline {
  color: var(--muted-dim);
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-links a:hover {
  color: var(--soft-white);
}

.footer-copy {
  color: var(--muted-dim);
  font-size: 0.8rem;
}

/* ── Scroll Reveal Animations ────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out-expo),
              transform 0.7s var(--ease-out-expo);
}

.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for feature rows */
.features-list .reveal:nth-child(2) { transition-delay: 0.05s; }
.features-list .reveal:nth-child(3) { transition-delay: 0.1s; }
.features-list .reveal:nth-child(4) { transition-delay: 0.15s; }
.features-list .reveal:nth-child(5) { transition-delay: 0.2s; }
.features-list .reveal:nth-child(6) { transition-delay: 0.25s; }

.social-posts .reveal:nth-child(2) { transition-delay: 0.08s; }
.social-posts .reveal:nth-child(3) { transition-delay: 0.16s; }

.pricing-layout .reveal:nth-child(2) { transition-delay: 0.08s; }
.pricing-layout .reveal:nth-child(3) { transition-delay: 0.16s; }

.timeline-step.reveal:nth-child(3) { transition-delay: 0.1s; }
.timeline-step.reveal:nth-child(4) { transition-delay: 0.2s; }

/* ── Legal Pages ─────────────────────────────────────── */
.legal {
  padding: 120px 0 80px;
  max-width: 720px;
  margin: 0 auto;
}

.legal h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.legal .legal-date {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 40px;
}

.legal h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 36px;
  margin-bottom: 12px;
  color: var(--teal);
}

.legal p,
.legal li {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.legal ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal li {
  margin-bottom: 6px;
}

.legal strong {
  color: var(--soft-white);
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .pricing-layout {
    grid-template-columns: repeat(2, 1fr);
    max-width: 600px;
  }

  .pricing-card--featured {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  section {
    padding: 72px 0;
  }

  .hero {
    padding: 120px 0 60px;
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-tagline {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    align-items: center;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .social-posts {
    grid-template-columns: 1fr;
  }

  .features-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .features-visual {
    order: -1;
  }

  .features-screenshot {
    max-width: 220px;
  }

  .timeline {
    padding-left: 64px;
  }

  .timeline-dot {
    left: -64px;
    width: 40px;
    height: 40px;
  }

  .timeline-dot svg {
    width: 16px;
    height: 16px;
  }

  .timeline-line {
    left: 19px;
  }

  .pricing-layout {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .pricing-card--featured {
    grid-column: span 1;
  }

  .social-proof-bar {
    flex-direction: column;
    gap: 8px;
  }

  .proof-dot {
    display: none;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-brand {
    align-items: center;
  }

  .footer-bottom {
    text-align: center;
  }

  /* Phone badges on mobile */
  .phone-badge--streak {
    right: -10px;
  }

  .phone-badge--blocked {
    left: -10px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-headline {
    font-size: clamp(2rem, 8vw, 2.75rem);
  }

  .phone-mockup {
    width: 240px;
  }

  .phone-badge {
    font-size: 0.7rem;
    padding: 8px 12px;
  }

}
