/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --violet: #7C3AED;
  --violet-dark: #6D28D9;
  --violet-deep: #5B21B6;
  --violet-light: #EDE9FE;
  --violet-glow: rgba(124, 58, 237, 0.15);
  --pink: #EC4899;
  --pink-light: #FDF2F8;
  --black: #111827;
  --gray-900: #1F2937;
  --gray-700: #374151;
  --gray-500: #6B7280;
  --gray-300: #D1D5DB;
  --gray-100: #F3F4F6;
  --snow: #FAFAFA;
  --white: #FFFFFF;
  --green: #10B981;
  --green-light: #D1FAE5;
  --red: #EF4444;
  --red-light: #FEE2E2;
  --font-heading: 'Sora', sans-serif;
  --font-body: 'Nunito Sans', sans-serif;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--snow);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== UTILITY ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 16px;
  display: inline-block;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.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; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== STICKY DEMO BANNER ===== */
.demo-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--black);
  border-bottom: 2px solid var(--violet);
  padding: 0 24px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.demo-banner__label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--violet-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.demo-banner__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--violet);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(124,58,237,0.5); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(124,58,237,0); }
}

.demo-banner__cta {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--white);
  background: var(--violet);
  border: none;
  padding: 6px 16px;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.demo-banner__cta:hover {
  background: var(--violet-dark);
  transform: translateY(-1px);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 24px 60px;
  position: relative;
  background: var(--black);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -20%;
  width: 80%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(124,58,237,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -20%;
  width: 60%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(236,72,153,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero__eyebrow {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--white);
  max-width: 900px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.hero__title span {
  background: linear-gradient(135deg, var(--violet), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 300;
  line-height: 1.7;
  color: var(--gray-300);
  max-width: 640px;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

.hero__subtitle strong {
  color: var(--white);
  font-weight: 700;
}

.scroll-indicator {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray-500);
  font-size: 0.75rem;
  font-family: var(--font-heading);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: float-down 2.5s ease-in-out infinite;
}

.scroll-indicator__arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--violet);
  border-bottom: 2px solid var(--violet);
  transform: rotate(45deg);
  opacity: 0.6;
}

@keyframes float-down {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(12px); opacity: 0.5; }
}

/* ===== COMPARISON SECTION ===== */
.comparison {
  padding: 100px 0 120px;
  background: var(--snow);
  position: relative;
}

.comparison::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--violet), transparent);
}

.comparison__header {
  text-align: center;
  margin-bottom: 72px;
}

.comparison__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--black);
  line-height: 1.15;
  margin-bottom: 16px;
}

.comparison__desc {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 560px;
  margin: 0 auto;
}

.comparison__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

/* Phone wrapper with verdict */
.phone-frame-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.phone-verdict {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}

.phone-verdict--bad {
  background: var(--red-light);
  color: var(--red);
  border: 1.5px solid rgba(239,68,68,0.15);
}

.phone-verdict--good {
  background: var(--green-light);
  color: var(--green);
  border: 1.5px solid rgba(16,185,129,0.15);
}

.phone-verdict svg {
  flex-shrink: 0;
}

/* Phone mockup frame */
.phone-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.phone-frame {
  width: 280px;
  height: 580px;
  background: #1C1C1E;
  border-radius: 44px;
  padding: 10px;
  position: relative;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 20px 60px rgba(0,0,0,0.25),
    0 40px 100px rgba(0,0,0,0.15);
}

.phone-frame--bad {
  box-shadow:
    0 0 0 1px rgba(239,68,68,0.15),
    0 20px 60px rgba(239,68,68,0.08),
    0 40px 100px rgba(0,0,0,0.15);
}

.phone-frame--good {
  box-shadow:
    0 0 0 1px rgba(16,185,129,0.15),
    0 20px 60px rgba(16,185,129,0.08),
    0 40px 100px rgba(0,0,0,0.15);
}

/* Notch / Dynamic Island */
.phone-frame__notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 24px;
  background: #000;
  border-radius: 12px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.phone-frame__camera {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0A0A14;
  border: 1.5px solid #1A1A2E;
  box-shadow: inset 0 0 2px rgba(100,100,200,0.3);
}

.phone-frame__speaker {
  width: 32px;
  height: 3px;
  border-radius: 2px;
  background: #1A1A2E;
}

/* Home bar */
.phone-frame__homebar {
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.25);
  z-index: 10;
}

/* Screen area */
.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 34px;
  overflow: hidden;
  position: relative;
  background: var(--white);
}

/* ===== BAD PHONE CONTENT ===== */
.bad-site {
  padding: 26px 4px 8px;
  background: #F5F5F5;
  min-height: 100%;
  overflow: hidden;
  position: relative;
  /* Simulate a desktop site viewed zoomed-out on mobile */
  transform-origin: top left;
  transform: scale(0.52);
  width: 192%; /* 100% / 0.52 ≈ 192% to fill the screen width */
  min-height: 192%;
}

/* Browser address bar */
.bad-site__browser-bar {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px 8px;
  background: #FFFFFF;
  border-bottom: 1px solid #E0E0E0;
  margin: 0 -4px 4px;
}

.bad-site__browser-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #CCC;
  flex-shrink: 0;
}

.bad-site__browser-url {
  flex: 1;
  background: #F0F0F0;
  border: 1px solid #DDD;
  border-radius: 4px;
  padding: 3px 8px;
  font-size: 8px;
  font-family: -apple-system, Arial, sans-serif;
  color: #555;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bad-site__nav {
  display: flex;
  gap: 0;
  white-space: nowrap;
  overflow: visible;
  margin-bottom: 8px;
  padding: 0;
  background: #2C3E6B;
}

.bad-site__nav-item {
  font-size: 9px;
  padding: 6px 8px;
  color: rgba(255,255,255,0.9);
  font-family: Arial, sans-serif;
  flex-shrink: 0;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.bad-site__header {
  font-size: 12px;
  font-family: 'Times New Roman', serif;
  font-weight: bold;
  color: #222;
  margin-bottom: 8px;
  line-height: 1.3;
  padding: 4px 4px 0;
}

.bad-site__image {
  width: 100%;
  height: 100px;
  background: linear-gradient(135deg, #B0C4DE 0%, #7B9CC2 50%, #4A6F8F 100%);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.bad-site__image::after {
  content: 'Practice Photo';
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  font-weight: 600;
  letter-spacing: 1px;
}

.bad-site__text {
  font-size: 9.5px;
  line-height: 1.4;
  color: #444;
  margin-bottom: 10px;
  font-family: 'Times New Roman', serif;
  padding: 0 4px;
}

.bad-site__btn {
  display: inline-block;
  padding: 4px 8px;
  font-size: 8px;
  background: #2C3E6B;
  color: white;
  border: none;
  margin: 2px;
  font-family: Arial, sans-serif;
  border-radius: 2px;
}

.bad-site__btns {
  display: flex;
  gap: 3px;
  margin-top: 8px;
  flex-wrap: wrap;
  padding: 0 4px;
}

.bad-site__table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
  font-size: 8px;
  font-family: Arial, sans-serif;
}

.bad-site__table td {
  border: 1px solid #C4C4C4;
  padding: 4px 6px;
  white-space: nowrap;
  background: #FAFAFA;
}

.bad-site__table tr:nth-child(odd) td {
  background: #EFEFEF;
}

.bad-site__footer {
  margin-top: 16px;
  padding: 8px 4px 0;
  border-top: 1px solid #CCC;
  font-size: 7px;
  color: #888;
  line-height: 1.4;
}

/* ===== GOOD PHONE CONTENT ===== */
.good-site {
  min-height: 100%;
  height: 100%;
  background: #FFFFFF;
  position: relative;
  padding-top: 32px;
  display: flex;
  flex-direction: column;
}

.good-site__status-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 32px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 16px 3px;
  font-size: 8px;
  font-weight: 600;
  color: #111827;
  z-index: 5;
}

.good-site__status-icons {
  display: flex;
  gap: 3px;
  align-items: center;
}

.good-site__signal {
  display: flex;
  gap: 1px;
  align-items: flex-end;
}

.good-site__signal-bar {
  width: 2px;
  background: #111827;
  border-radius: 0.5px;
}

.good-site__battery {
  width: 14px;
  height: 7px;
  border: 1px solid #111827;
  border-radius: 1.5px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 1px;
}

.good-site__battery::after {
  content: '';
  position: absolute;
  right: -3px;
  top: 50%;
  transform: translateY(-50%);
  width: 1.5px;
  height: 3px;
  background: #111827;
  border-radius: 0 0.5px 0.5px 0;
}

.good-site__battery-fill {
  width: 75%;
  height: 100%;
  background: #10B981;
  border-radius: 0.5px;
}

.good-site__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 14px;
  border-bottom: 1px solid #F3F4F6;
}

.good-site__logo {
  font-size: 9px;
  font-weight: 700;
  color: #7C3AED;
  font-family: var(--font-heading);
}

.good-site__hamburger {
  display: flex;
  flex-direction: column;
  gap: 2.5px;
  cursor: pointer;
}

.good-site__hamburger span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: #111827;
  border-radius: 1px;
}

.good-site__hero {
  padding: 22px 14px 16px;
  background: linear-gradient(160deg, #EDE9FE 0%, #F5F3FF 40%, #FFFFFF 100%);
}

.good-site__hero-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  color: #111827;
  margin-bottom: 6px;
}

.good-site__hero-sub {
  font-size: 7.5px;
  color: #6B7280;
  line-height: 1.5;
  margin-bottom: 12px;
}

.good-site__cta-btn {
  display: block;
  width: 100%;
  padding: 9px;
  background: linear-gradient(135deg, #7C3AED, #6D28D9);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 8.5px;
  font-weight: 700;
  text-align: center;
  font-family: var(--font-heading);
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px rgba(124,58,237,0.3);
}

.good-site__services {
  padding: 14px 14px;
  flex: 1;
}

.good-site__services-title {
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
}

.good-site__service-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.good-site__service-card {
  background: #F9FAFB;
  border-radius: 8px;
  padding: 10px 6px;
  text-align: center;
  border: 1px solid #F3F4F6;
}

.good-site__service-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #EDE9FE;
  margin: 0 auto 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

.good-site__service-name {
  font-size: 7px;
  font-weight: 600;
  color: #111827;
}

/* Trust strip */
.good-site__trust {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: #FFFBEB;
  border-top: 1px solid rgba(245,158,11,0.1);
}

.good-site__trust-stars {
  font-size: 8px;
  color: #F59E0B;
  letter-spacing: 0.5px;
  line-height: 1;
}

.good-site__trust-text {
  font-size: 7px;
  font-weight: 600;
  color: #92400E;
}

/* Hours bar */
.good-site__hours {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  background: #ECFDF5;
  font-size: 7px;
  font-weight: 600;
  color: #065F46;
  border-top: 1px solid rgba(16,185,129,0.1);
}

.good-site__hours-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #10B981;
  flex-shrink: 0;
  animation: pulse-green 2s ease-in-out infinite;
}

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.4); }
  50% { box-shadow: 0 0 0 3px rgba(16,185,129,0); }
}

/* Click to call FAB */
.good-site__fab {
  position: absolute;
  bottom: 18px;
  right: 12px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10B981, #059669);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(16,185,129,0.4);
  z-index: 5;
}

.good-site__fab-icon {
  font-size: 13px;
  color: white;
  line-height: 1;
}

/* ===== PHONE LABELS & BULLETS ===== */
.phone-label {
  margin-top: 32px;
  text-align: center;
}

.phone-label__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
}

.phone-label__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 20px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.phone-label__badge svg {
  flex-shrink: 0;
}

.phone-label__badge--red {
  background: var(--red-light);
  color: var(--red);
  border: 1px solid rgba(239,68,68,0.12);
}

.phone-label__badge--green {
  background: var(--green-light);
  color: var(--green);
  border: 1px solid rgba(16,185,129,0.12);
}

.phone-bullets {
  list-style: none;
  text-align: left;
  max-width: 280px;
  margin: 0 auto;
}

.phone-bullets li {
  font-size: 0.88rem;
  color: var(--gray-700);
  padding: 7px 0;
  padding-left: 26px;
  position: relative;
  line-height: 1.5;
}

.phone-bullets li::before {
  position: absolute;
  left: 0;
  top: 8px;
  font-size: 0.9rem;
  font-weight: 700;
}

.phone-bullets--bad li::before {
  content: '\2717';
  color: var(--red);
}

.phone-bullets--good li::before {
  content: '\2713';
  color: var(--green);
}

/* ===== VS DIVIDER (between phones on desktop) ===== */
.comparison__grid::after {
  content: 'VS';
  position: absolute;
  top: 300px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--violet);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(124,58,237,0.3);
  z-index: 2;
  line-height: 44px;
  text-align: center;
}

/* ===== WHY MOBILE IS NON-NEGOTIABLE ===== */
.why-mobile {
  padding: 100px 0 120px;
  background: var(--white);
  position: relative;
}

.why-mobile::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: 0.4;
}

.why-mobile__header {
  text-align: center;
  margin-bottom: 64px;
}

.why-mobile__header .section-label {
  color: var(--red);
}

.why-mobile__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--black);
  line-height: 1.15;
  margin-bottom: 20px;
}

.why-mobile__subtitle {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

.why-mobile__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto 64px;
}

.why-card {
  background: var(--snow);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  padding: 32px 28px;
  transition: border-color 0.3s, transform 0.3s;
}

.why-card:hover {
  border-color: var(--red);
  transform: translateY(-3px);
}

.why-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.why-card__icon--red {
  background: var(--red-light);
  color: var(--red);
  border: 1px solid rgba(239,68,68,0.15);
}

.why-card__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
  line-height: 1.3;
}

.why-card__desc {
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.7;
}

.why-mobile__bottom {
  text-align: center;
}

.why-mobile__quote {
  max-width: 680px;
  margin: 0 auto;
  padding: 32px 40px;
  background: var(--snow);
  border-radius: 16px;
  border: 1px solid var(--gray-100);
  border-left: 4px solid var(--violet);
  text-align: left;
}

.why-mobile__quote-icon {
  display: block;
  color: var(--violet);
  opacity: 0.25;
  margin-bottom: 12px;
}

.why-mobile__quote p {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--gray-700);
  line-height: 1.75;
}

/* ===== FEATURE CARDS ===== */
.features {
  padding: 100px 0;
  background: var(--black);
  position: relative;
}

.features::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(124,58,237,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.features__header {
  text-align: center;
  margin-bottom: 64px;
}

.features__header .section-label {
  color: var(--pink);
}

.features__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.feature-card {
  background: var(--gray-900);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.feature-card:hover {
  border-color: var(--violet);
  transform: translateY(-4px);
}

.feature-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--violet-glow);
  border: 1px solid rgba(124,58,237,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.feature-card__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}

.feature-card__desc {
  font-size: 0.92rem;
  color: var(--gray-300);
  line-height: 1.65;
}

/* ===== STATS ===== */
.stats {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--violet-deep) 0%, var(--violet-dark) 50%, #4C1D95 100%);
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 50%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(236,72,153,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.stats__header {
  text-align: center;
  margin-bottom: 64px;
}

.stats__header .section-label {
  color: var(--pink);
}

.stats__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.stat-card {
  text-align: center;
  padding: 32px 16px;
  background: rgba(255,255,255,0.06);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
}

.stat-card__number {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 12px;
}

.stat-card__label {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

/* ===== QR CODE SECTION ===== */
.qr-section {
  padding: 100px 0;
  background: var(--snow);
  text-align: center;
}

.qr-section__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--black);
  margin-bottom: 16px;
}

.qr-section__desc {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 500px;
  margin: 0 auto 48px;
}

.qr-wrapper {
  display: inline-block;
  background: var(--white);
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
  border: 1px solid var(--gray-100);
  margin-bottom: 24px;
}

/* QR code canvas */
.qr-code {
  width: 160px;
  height: 160px;
  display: block;
  margin: 0 auto;
  border-radius: 4px;
}

.qr-url {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-top: 20px;
}

.qr-url a {
  color: var(--violet);
  text-decoration: none;
  transition: color 0.2s;
}

.qr-url a:hover {
  color: var(--violet-dark);
  text-decoration: underline;
}

/* ===== BOTTOM CTA ===== */
.bottom-cta {
  padding: 120px 0;
  background: var(--black);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bottom-cta::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(124,58,237,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.bottom-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  max-width: 700px;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

.bottom-cta__title span {
  background: linear-gradient(135deg, var(--violet), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bottom-cta__sub {
  font-size: 1.1rem;
  color: var(--gray-300);
  max-width: 500px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 1;
}

.bottom-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(135deg, var(--violet), var(--violet-dark));
  padding: 16px 40px;
  border-radius: 14px;
  text-decoration: none;
  position: relative;
  z-index: 1;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 8px 30px rgba(124,58,237,0.3);
}

.bottom-cta__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(124,58,237,0.45);
}

.bottom-cta__btn-arrow {
  transition: transform 0.3s;
}

.bottom-cta__btn:hover .bottom-cta__btn-arrow {
  transform: translateX(4px);
}

/* ===== FOOTER ===== */
.footer {
  padding: 32px 0;
  background: var(--gray-900);
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
}

.footer__text {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.footer__link {
  color: var(--violet);
  text-decoration: none;
}
.footer__link:hover { text-decoration: underline; }

/* ===== RESPONSIVE ===== */

/* -- Tablet / small desktop -- */
@media (max-width: 1024px) {
  .comparison__grid {
    gap: 40px;
    max-width: 680px;
  }

  .why-mobile__grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
    margin: 0 auto 48px;
  }

  .features__grid {
    max-width: 700px;
  }
}

/* -- Tablets / portrait -- */
@media (max-width: 900px) {
  .comparison__grid {
    grid-template-columns: 1fr;
    gap: 56px;
    max-width: 340px;
  }

  .comparison__grid::after {
    display: none;
  }

  .features__grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }

  .stats__grid {
    grid-template-columns: 1fr;
    max-width: 340px;
    margin: 0 auto;
  }

  .why-mobile__grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 540px;
    margin: 0 auto 48px;
  }

  .why-card {
    padding: 24px 20px;
  }
}

/* -- Large phones / small tablets -- */
@media (max-width: 768px) {
  .hero__title {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .comparison__header {
    margin-bottom: 48px;
  }

  .demo-banner {
    height: auto;
    min-height: 40px;
    padding: 6px 12px;
    flex-wrap: wrap;
    gap: 6px;
  }

  .demo-banner__right {
    gap: 6px;
  }

  .demo-banner__cta {
    font-size: 0.6rem;
    padding: 5px 10px;
  }

  .demo-banner__label {
    font-size: 0.6rem;
    gap: 6px;
  }

  .lang-trigger {
    font-size: 11px;
    padding: 4px 8px;
    margin-left: 4px;
  }

  .theme-toggle {
    width: 28px;
    height: 28px;
    margin-left: 4px;
    font-size: 12px;
  }

  .hero {
    padding-top: 100px;
  }
}

/* -- Phones -- */
@media (max-width: 600px) {
  .demo-banner__label span.hide-mobile {
    display: none;
  }

  .phone-frame {
    width: 260px;
    height: 540px;
  }

  .hero {
    padding: 100px 20px 50px;
  }

  .hero__subtitle {
    font-size: 1rem;
  }

  .comparison {
    padding: 72px 0 80px;
  }

  .comparison__grid {
    max-width: 300px;
  }

  .features {
    padding: 72px 0;
  }

  .stats {
    padding: 72px 0;
  }

  .bottom-cta {
    padding: 80px 0;
  }

  .bottom-cta__btn {
    padding: 14px 28px;
    font-size: 0.95rem;
  }

  .qr-section {
    padding: 72px 0;
  }

  .why-mobile {
    padding: 72px 0 80px;
  }

  .why-mobile__grid {
    grid-template-columns: 1fr;
    max-width: 450px;
  }

  .why-mobile__quote {
    padding: 24px 20px;
  }

  .stat-card {
    padding: 24px 16px;
  }

  .stat-card__number {
    font-size: 2.5rem;
  }
}

/* -- Small phones -- */
@media (max-width: 400px) {
  .phone-frame {
    width: 230px;
    height: 480px;
  }

  .hero__title {
    font-size: 1.8rem;
  }

  .hero__subtitle {
    font-size: 0.9rem;
  }

  .comparison__title,
  .why-mobile__title,
  .features__title,
  .stats__title,
  .qr-section__title {
    font-size: 1.5rem;
  }

  .bottom-cta__title {
    font-size: 1.6rem;
  }

  .demo-banner {
    padding: 4px 8px;
  }

  .container {
    padding: 0 16px;
  }

  .demo-banner__cta {
    display: none;
  }

  .demo-banner__label {
    font-size: 0.55rem;
  }
}

/* ===== DARK THEME ===== */
[data-theme="dark"] {
  --snow: #0F0F0F;
  --white: #1A1A1A;
  --black: #F3F4F6;
  --gray-900: #E5E7EB;
  --gray-700: #D1D5DB;
  --gray-500: #9CA3AF;
  --gray-300: #374151;
  --gray-100: #1F1F1F;
}

/* Keep hero, features, bottom-cta, stats, footer dark backgrounds in both themes */
[data-theme="dark"] .hero {
  background: #0A0A0A;
}

[data-theme="dark"] .hero__title {
  color: #F3F4F6;
}

[data-theme="dark"] .hero__subtitle {
  color: #9CA3AF;
}

[data-theme="dark"] .hero__subtitle strong {
  color: #F3F4F6;
}

[data-theme="dark"] .hero__eyebrow {
  color: var(--pink);
}

[data-theme="dark"] .scroll-indicator {
  color: #9CA3AF;
}

/* Why Mobile section */
[data-theme="dark"] .why-mobile {
  background: #111111;
}

[data-theme="dark"] .why-mobile__title {
  color: #F3F4F6;
}

[data-theme="dark"] .why-mobile__subtitle {
  color: #9CA3AF;
}

[data-theme="dark"] .why-card {
  background: #1A1A1A;
  border-color: #2A2A2A;
}

[data-theme="dark"] .why-card:hover {
  border-color: var(--red);
}

[data-theme="dark"] .why-card__icon--red {
  background: rgba(239,68,68,0.12);
  border-color: rgba(239,68,68,0.2);
}

[data-theme="dark"] .why-card__title {
  color: #F3F4F6;
}

[data-theme="dark"] .why-card__desc {
  color: #9CA3AF;
}

[data-theme="dark"] .why-mobile__quote {
  background: #1A1A1A;
  border-color: #2A2A2A;
  border-left-color: var(--violet);
}

[data-theme="dark"] .why-mobile__quote p {
  color: #D1D5DB;
}

/* Comparison section */
[data-theme="dark"] .comparison {
  background: #0F0F0F;
}

[data-theme="dark"] .comparison::before {
  background: linear-gradient(90deg, transparent, var(--violet), transparent);
}

[data-theme="dark"] .comparison__title {
  color: #F3F4F6;
}

[data-theme="dark"] .comparison__desc {
  color: #9CA3AF;
}

[data-theme="dark"] .phone-verdict--bad {
  background: rgba(239,68,68,0.12);
  border-color: rgba(239,68,68,0.25);
}

[data-theme="dark"] .phone-verdict--good {
  background: rgba(16,185,129,0.12);
  border-color: rgba(16,185,129,0.25);
}

[data-theme="dark"] .phone-label__badge--red {
  background: rgba(239,68,68,0.12);
  border-color: rgba(239,68,68,0.2);
}

[data-theme="dark"] .phone-label__badge--green {
  background: rgba(16,185,129,0.12);
  border-color: rgba(16,185,129,0.2);
}

[data-theme="dark"] .phone-label__title {
  color: #F3F4F6;
}

[data-theme="dark"] .phone-bullets li {
  color: #D1D5DB;
}

/* Phone frames — dark chrome stays dark in both themes */
[data-theme="dark"] .phone-frame {
  background: #1C1C1E;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06),
    0 20px 60px rgba(0,0,0,0.5),
    0 40px 100px rgba(0,0,0,0.3);
}

[data-theme="dark"] .phone-frame--bad {
  box-shadow:
    0 0 0 1px rgba(239,68,68,0.2),
    0 20px 60px rgba(239,68,68,0.1),
    0 40px 100px rgba(0,0,0,0.3);
}

[data-theme="dark"] .phone-frame--good {
  box-shadow:
    0 0 0 1px rgba(16,185,129,0.2),
    0 20px 60px rgba(16,185,129,0.1),
    0 40px 100px rgba(0,0,0,0.3);
}

[data-theme="dark"] .phone-frame__notch {
  background: #000;
}

[data-theme="dark"] .phone-frame__homebar {
  background: rgba(255,255,255,0.25);
}

/* Phone screen interiors stay light — they are isolated mockups */
[data-theme="dark"] .phone-screen {
  background: #FFFFFF;
}

[data-theme="dark"] .bad-site {
  background: #F5F5F5;
}

/* Features section (already dark, stays dark) */
[data-theme="dark"] .features {
  background: #0A0A0A;
}

[data-theme="dark"] .features__title {
  color: #F3F4F6;
}

[data-theme="dark"] .feature-card {
  background: #141414;
  border-color: rgba(255,255,255,0.08);
}

[data-theme="dark"] .feature-card:hover {
  border-color: var(--violet);
}

[data-theme="dark"] .feature-card__title {
  color: #F3F4F6;
}

[data-theme="dark"] .feature-card__desc {
  color: #9CA3AF;
}

/* Stats section (keeps violet gradient) */
[data-theme="dark"] .stats {
  background: linear-gradient(135deg, #5B21B6 0%, #6D28D9 50%, #4C1D95 100%);
}

/* QR section */
[data-theme="dark"] .qr-section {
  background: #0F0F0F;
}

[data-theme="dark"] .qr-section__title {
  color: #F3F4F6;
}

[data-theme="dark"] .qr-section__desc {
  color: #9CA3AF;
}

[data-theme="dark"] .qr-wrapper {
  background: #1A1A1A;
  border-color: #2A2A2A;
  box-shadow: 0 8px 40px rgba(0,0,0,0.2);
}

/* Bottom CTA (already dark, stays dark) */
[data-theme="dark"] .bottom-cta {
  background: #0A0A0A;
}

[data-theme="dark"] .bottom-cta__title {
  color: #F3F4F6;
}

[data-theme="dark"] .bottom-cta__sub {
  color: #9CA3AF;
}

/* Footer (already dark, stays dark) */
[data-theme="dark"] .footer {
  background: #0A0A0A;
  border-top-color: rgba(255,255,255,0.05);
}

[data-theme="dark"] .footer__text {
  color: #9CA3AF;
}

/* Demo banner stays dark in both themes */
[data-theme="dark"] .demo-banner {
  background: #111827;
  border-bottom-color: var(--violet);
}

[data-theme="dark"] .demo-banner__label {
  color: #EDE9FE;
}

[data-theme="dark"] .demo-banner__cta {
  color: #FFFFFF;
  background: var(--violet);
}

/* Section label keeps violet accent */
[data-theme="dark"] .section-label {
  color: var(--violet);
}

[data-theme="dark"] .features__header .section-label,
[data-theme="dark"] .stats__header .section-label {
  color: var(--pink);
}

/* Theme toggle button */
.theme-toggle {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: #EDE9FE;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  margin-left: 12px;
  flex-shrink: 0;
  line-height: 1;
  padding: 0;
}

.theme-toggle:hover {
  background: rgba(255,255,255,0.14);
  border-color: var(--violet);
}

.demo-banner__right {
  display: flex;
  align-items: center;
  gap: 0;
}

/* ===== LANGUAGE SWITCHER ===== */
.lang-switcher{position:relative;flex-shrink:0}
.lang-trigger{display:flex;align-items:center;gap:5px;padding:6px 10px;border-radius:6px;background:transparent;border:1.5px solid rgba(255,255,255,.15);font-size:13px;font-weight:600;cursor:pointer;transition:all .2s;color:#EDE9FE;font-family:var(--font-heading);margin-left:8px}
.lang-trigger:hover{border-color:var(--violet)}
.lang-chevron{width:10px;height:10px;transition:transform .2s}
.lang-dropdown{position:absolute;top:calc(100% + 6px);right:0;background:#fff;border:1.5px solid rgba(0,0,0,.08);border-radius:8px;box-shadow:0 8px 24px rgba(0,0,0,.12);min-width:150px;z-index:200;opacity:0;visibility:hidden;transform:translateY(-4px);transition:all .2s}
.lang-dropdown.show{opacity:1;visibility:visible;transform:translateY(0)}
.lang-option{display:block;width:100%;padding:8px 14px;text-align:left;font-size:13px;font-weight:500;color:#666;background:none;border:none;cursor:pointer;transition:all .15s;font-family:var(--font-body)}
.lang-option:first-child{border-radius:7px 7px 0 0}
.lang-option:last-child{border-radius:0 0 7px 7px}
.lang-option:hover{background:#f8f8f8}
.lang-option.active{font-weight:700;background:rgba(0,0,0,.03)}

/* Dark theme overrides for language switcher */
[data-theme="dark"] .lang-trigger{border-color:rgba(255,255,255,.15);color:#EDE9FE}
[data-theme="dark"] .lang-trigger:hover{border-color:var(--violet)}
[data-theme="dark"] .lang-dropdown{background:#1A1A1A;border-color:rgba(255,255,255,.1);box-shadow:0 8px 24px rgba(0,0,0,.4)}
[data-theme="dark"] .lang-option{color:#9CA3AF}
[data-theme="dark"] .lang-option:hover{background:rgba(255,255,255,.06)}
[data-theme="dark"] .lang-option.active{color:#F3F4F6;background:rgba(255,255,255,.04)}