/*
  landing-page.css
  Page-scoped styles for the /landing-page landing page (Landing-Page Automation product).
  Cloned from e-commerce.css with a retuned violet → pink → cyan palette to fit
  the "conversion / craft" narrative. Proof block uses one big stat per card.
  Everything scoped under .lp-* prefixes to avoid bleeding into other pages.
*/

/* ============================================================
   1. PAGE ROOT
   ============================================================ */
.lp {
  position: relative;
  z-index: 1;
  overflow-x: clip;
}
.lp * { box-sizing: border-box; }

/* Reset the global h2 rule (styles.css applies border-bottom + display:inline-block
   to every h2 site-wide, which breaks our centered/gradient landing-page headings). */
.lp h2 {
  border-bottom: 0;
  display: block;
  padding-bottom: 0;
  text-transform: none;
  letter-spacing: -0.01em;
}

.lp-no-motion .lp [data-speed] {
  animation: none !important;
  transform: none !important;
}

/* ============================================================
   2. HERO
   ============================================================ */
.lp-hero {
  position: relative;
  min-height: 90vh;
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: center;
  padding: 6rem 1.5rem 4rem;
  overflow: visible;
}
.lp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(139, 92, 246, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 80%, rgba(236, 72, 153, 0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 50%, rgba(6, 182, 212, 0.05) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.lp-hero-text {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  padding-top: 2rem;
}

.lp-eyebrow {
  display: inline-block;
  letter-spacing: 0.32em;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-violet);
  padding: 0.45rem 1.1rem;
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 50px;
  margin-bottom: 1.8rem;
}

.lp-hero-h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--heading-color);
  margin: 0 0 1.2rem;
}
.lp-hero-h1 .lp-grad {
  background: linear-gradient(135deg, var(--accent-violet) 0%, var(--accent-pink) 50%, var(--accent-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(139, 92, 246, 0.25));
}

.lp-hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto 2.2rem;
}

.lp-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.05rem 2.4rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, var(--accent-violet), var(--accent-pink));
  border: 0;
  border-radius: 50px;
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.35), inset 0 1px 0 rgba(255,255,255,0.15);
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275),
              box-shadow 0.25s ease, filter 0.25s ease;
}
.lp-cta-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 40px rgba(139, 92, 246, 0.5), inset 0 1px 0 rgba(255,255,255,0.2);
  filter: brightness(1.05);
}
.lp-cta-primary:active {
  transform: translateY(-1px) scale(0.99);
}
.lp-cta-primary i {
  transition: transform 0.25s ease;
}
.lp-cta-primary:hover i {
  transform: translateX(4px);
}
html[dir="rtl"] .lp-cta-primary .fa-arrow-right {
  transform: scaleX(-1);
}
html[dir="rtl"] .lp-cta-primary:hover .fa-arrow-right {
  transform: scaleX(-1) translateX(4px);
}

/* ============================================================
   3. PHONE SECTION — pinned iPhone + narrative
   ============================================================ */
.lp-phone-section {
  position: relative;
  padding: 6rem 1.5rem 4rem;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(139, 92, 246, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 70%, rgba(236, 72, 153, 0.05) 0%, transparent 50%);
}
.lp-phone-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  max-width: 1240px;
  margin: 0 auto;
  align-items: center;
  min-height: 100vh;
}
.lp-phone-pin {
  display: flex;
  justify-content: center;
  align-items: center;
}
.lp-phone-narrative {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.lp-phone-narrative h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 1.1;
  color: var(--heading-color);
  margin: 0;
}
.lp-phone-narrative h2 span {
  background: linear-gradient(135deg, var(--accent-violet), var(--accent-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lp-phone-narrative p {
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}
.lp-phone-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.lp-phone-bullets li {
  position: relative;
  padding-inline-start: 2rem;
  font-size: 1.05rem;
  color: var(--text-color);
  line-height: 1.6;
}
.lp-phone-bullets li::before {
  content: '✓';
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, var(--accent-violet), var(--accent-pink));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
}

/* ── iPhone bezel ── */
.lp-iphone {
  position: relative;
  width: 320px;
  height: 660px;
  border-radius: 46px;
  background: #050505;
  padding: 12px;
  box-shadow:
    0 0 0 2px #1f1f1f,
    0 0 0 4px #050505,
    0 40px 80px rgba(0, 0, 0, 0.6),
    0 0 80px rgba(139, 92, 246, 0.12);
  isolation: isolate;
}
.lp-iphone::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 49px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.4), rgba(236, 72, 153, 0.4), rgba(6, 182, 212, 0.4));
  z-index: -1;
  filter: blur(14px);
  opacity: 0.7;
}
.lp-iphone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 28px;
  background: #050505;
  border-radius: 0 0 18px 18px;
  z-index: 2;
}
.lp-iphone-screen {
  width: 100%;
  height: 100%;
  background: #0b141a;
  border-radius: 34px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  font-family: var(--font-main);
}

/* ── WhatsApp status bar ── */
.lp-wa-statusbar {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px 6px;
  font-size: 13px;
  font-weight: 600;
  color: #e9edef;
}
.lp-wa-icons {
  display: flex;
  gap: 6px;
  font-size: 12px;
  color: #e9edef;
}

/* ── WhatsApp header ── */
.lp-wa-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #1f2c34;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  z-index: 2;
}
.lp-wa-back { font-size: 18px; color: #00a884; cursor: pointer; }
.lp-wa-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  background: #054640;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-wa-avatar img { width: 100%; height: 100%; object-fit: cover; }
.lp-wa-id { flex: 1; line-height: 1.2; }
.lp-wa-name { font-size: 15px; font-weight: 600; color: #e9edef; }
.lp-wa-status {
  font-size: 12px;
  color: #8696a0;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 1px;
}
.lp-online-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00a884;
  box-shadow: 0 0 6px rgba(0, 168, 132, 0.7);
  animation: lpPulseDot 1.8s ease-in-out infinite;
}
.lp-wa-header > i:not(.lp-wa-back) {
  font-size: 15px;
  color: #aebac1;
  margin-inline-start: 8px;
}

/* ── Messages ── */
.lp-wa-messages {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background:
    repeating-linear-gradient(45deg, transparent 0 14px, rgba(255,255,255,0.005) 14px 28px),
    #0b141a;
  position: relative;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: auto;
  overscroll-behavior: contain;
}
.lp-wa-messages::-webkit-scrollbar { display: none; }
.lp-wa-msg {
  display: flex;
  flex-direction: column;
  max-width: 82%;
  margin-bottom: 4px;
  will-change: transform, opacity;
}
.lp-wa-owner { align-self: flex-end; align-items: flex-end; }
.lp-wa-roby  { align-self: flex-start; align-items: flex-start; }

.lp-wa-bubble {
  display: inline-block;
  padding: 7px 10px 7px 12px;
  border-radius: 8px;
  font-size: 12.5px;
  line-height: 1.45;
  color: #e9edef;
  position: relative;
  word-wrap: break-word;
  white-space: pre-wrap;
}
.lp-wa-owner .lp-wa-bubble {
  background: #005c4b;
  border-bottom-right-radius: 0;
}
.lp-wa-roby .lp-wa-bubble {
  background: #1f2c34;
  border-bottom-left-radius: 0;
}
html[dir="rtl"] .lp-wa-owner .lp-wa-bubble {
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 0;
}
html[dir="rtl"] .lp-wa-roby .lp-wa-bubble {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 0;
}
.lp-wa-bubble[dir="rtl"] { text-align: right; }
.lp-wa-time-stamp {
  font-size: 10px;
  color: #8696a0;
  padding: 0 4px;
  margin-top: 2px;
}

/* ── Input bar ── */
.lp-wa-input {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: #1f2c34;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.lp-wa-input i { font-size: 18px; color: #8696a0; padding: 6px; }
.lp-wa-input-field {
  flex: 1;
  background: #2a3942;
  padding: 8px 12px;
  border-radius: 18px;
  font-size: 13px;
  color: #8696a0;
}

/* ============================================================
   4. FEATURES
   ============================================================ */
.lp-features {
  position: relative;
  padding: 6rem 1.5rem 4rem;
  max-width: 1280px;
  margin: 0 auto;
}

.lp-section-head {
  text-align: center;
  margin-bottom: 5rem;
}
.lp-section-label {
  display: inline-block;
  letter-spacing: 0.32em;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-violet);
  padding: 0.4rem 1rem;
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.22);
  border-radius: 50px;
  margin-bottom: 1.2rem;
}
.lp-section-h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.1;
  color: var(--heading-color);
  margin: 0;
  max-width: 920px;
  margin-inline: auto;
}

.lp-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 48vh;
  padding: 2.5rem 0;
  position: relative;
}
.lp-feature + .lp-feature {
  border-top: 1px solid rgba(255,255,255,0.05);
}
.lp-feature-right .lp-feature-media { order: 2; }

.lp-feature-media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 360px;
}
.lp-feature-media img {
  max-width: 100%;
  width: clamp(260px, 32vw, 460px);
  height: auto;
  display: block;
  will-change: transform;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.4));
}
.lp-feature-media::before {
  content: '';
  position: absolute;
  width: 60%;
  height: 60%;
  border-radius: 50%;
  background: var(--lp-feat-glow, rgba(139, 92, 246, 0.20));
  filter: blur(80px);
  z-index: -1;
}

.lp-feature-copy { position: relative; }
.lp-feature-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(5rem, 9vw, 9rem);
  line-height: 1;
  background: var(--lp-feat-grad, linear-gradient(135deg, var(--accent-violet), var(--accent-pink)));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.22;
  margin-bottom: -1.4rem;
  letter-spacing: -0.04em;
}
.lp-feature-copy h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 2.8vw, 2.6rem);
  line-height: 1.15;
  color: var(--heading-color);
  margin: 0 0 1.2rem;
}
.lp-feature-copy p {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.75;
  color: var(--text-secondary);
  margin: 0;
  max-width: 540px;
}

/* Per-feature color accent (cycles through brand palette — 4 features) */
.lp-feature:nth-child(2) { --lp-feat-grad: linear-gradient(135deg, var(--accent-violet),  var(--accent-pink));     --lp-feat-glow: rgba(139, 92, 246, 0.22); }
.lp-feature:nth-child(3) { --lp-feat-grad: linear-gradient(135deg, var(--accent-pink),    var(--accent-orange));   --lp-feat-glow: rgba(236, 72, 153, 0.22); }
.lp-feature:nth-child(4) { --lp-feat-grad: linear-gradient(135deg, var(--accent-cyan),    var(--secondary-color)); --lp-feat-glow: rgba(6, 182, 212, 0.22); }
.lp-feature:nth-child(5) { --lp-feat-grad: linear-gradient(135deg, var(--accent-amber),   var(--accent-orange));   --lp-feat-glow: rgba(245, 158, 11, 0.20); }

/* ============================================================
   5. PROOF BLOCK — simplified to one big stat per card
   ============================================================ */
.lp-proof {
  position: relative;
  padding: 6rem 1.5rem 5rem;
  max-width: 1240px;
  margin: 0 auto;
}
.lp-proof::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(139, 92, 246, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(236, 72, 153, 0.04) 0%, transparent 60%);
  pointer-events: none;
  z-index: -1;
}
.lp-proof-intro {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.lp-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.lp-proof-card {
  position: relative;
  padding: 2.4rem 2rem 2.2rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  text-align: start;
}
.lp-proof-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--lp-proof-accent, var(--accent-violet));
  opacity: 0.85;
}
.lp-proof-card:hover {
  transform: translateY(-4px);
  border-color: var(--lp-proof-accent, var(--accent-violet));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3), 0 0 30px var(--lp-proof-glow, rgba(139, 92, 246, 0.15));
}
.lp-proof-card:nth-child(1) { --lp-proof-accent: var(--accent-violet); --lp-proof-glow: rgba(139, 92, 246, 0.18); }
.lp-proof-card:nth-child(2) { --lp-proof-accent: var(--accent-pink);   --lp-proof-glow: rgba(236, 72, 153, 0.18); }
.lp-proof-card:nth-child(3) { --lp-proof-accent: var(--accent-cyan);   --lp-proof-glow: rgba(6, 182, 212, 0.18); }

.lp-proof-stat-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--lp-proof-accent, var(--accent-violet));
  font-weight: 700;
  opacity: 0.9;
}
.lp-proof-stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 5vw, 4.6rem);
  line-height: 1;
  color: var(--heading-color);
  letter-spacing: -0.03em;
  background: var(--lp-proof-grad, linear-gradient(135deg, var(--accent-violet), var(--accent-pink)));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lp-proof-card:nth-child(1) { --lp-proof-grad: linear-gradient(135deg, var(--accent-violet), var(--accent-pink)); }
.lp-proof-card:nth-child(2) { --lp-proof-grad: linear-gradient(135deg, var(--accent-pink),   var(--accent-orange)); }
.lp-proof-card:nth-child(3) { --lp-proof-grad: linear-gradient(135deg, var(--accent-cyan),   var(--secondary-color)); }
.lp-proof-stat-sub {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ============================================================
   6. SECONDARY CTA BAND
   ============================================================ */
.lp-secondary {
  position: relative;
  padding: 4rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.lp-secondary-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 2.4rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  flex-wrap: wrap;
}
.lp-secondary-text { flex: 1 1 auto; min-width: 240px; }
.lp-secondary-text h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--heading-color);
  margin: 0 0 0.4rem;
}
.lp-secondary-text p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}
.lp-secondary-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.4rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  color: var(--accent-cyan);
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: 50px;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}
.lp-secondary-link:hover {
  background: rgba(6, 182, 212, 0.18);
  border-color: var(--accent-cyan);
  color: #fff;
  transform: translateY(-2px);
}
.lp-secondary-link i { transition: transform 0.2s ease; }
.lp-secondary-link:hover i { transform: translateX(4px); }
html[dir="rtl"] .lp-secondary-link .fa-arrow-right { transform: scaleX(-1); }
html[dir="rtl"] .lp-secondary-link:hover .fa-arrow-right { transform: scaleX(-1) translateX(4px); }

/* ============================================================
   7. FINAL CTA
   ============================================================ */
.lp-final-cta {
  position: relative;
  padding: 8rem 1.5rem;
  text-align: center;
  overflow: hidden;
}
.lp-final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(139, 92, 246, 0.10) 0%, rgba(236, 72, 153, 0.08) 50%, rgba(6, 182, 212, 0.08) 100%);
  pointer-events: none;
}
.lp-final-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  max-width: 760px;
  margin: 0 auto;
}
.lp-final-cta h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.1;
  color: var(--heading-color);
  margin: 0 0 1.5rem;
}
.lp-final-cta h2 span {
  background: linear-gradient(135deg, var(--accent-violet) 0%, var(--accent-pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lp-final-cta p {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.lp-cta-xl {
  position: relative;
  font-size: 1.2rem;
  padding: 1.2rem 2.8rem;
}
.lp-final-cta p.lp-final-microcopy {
  position: relative;
  z-index: 5;
  margin: 3rem 0 0;
  max-width: none;
  font-size: 0.85rem;
  color: var(--text-secondary);
  opacity: 0.9;
}

/* ============================================================
   8. KEYFRAMES
   ============================================================ */
@keyframes lpFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-18px); }
}
@keyframes lpPulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.6; transform: scale(1.15); }
}

/* ============================================================
   9. RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .lp-feature {
    grid-template-columns: 1fr;
    gap: 2rem;
    min-height: auto;
    padding: 3rem 0;
  }
  .lp-feature-right .lp-feature-media { order: 0; }
  .lp-phone-wrap {
    grid-template-columns: 1fr;
    gap: 3rem;
    min-height: auto;
  }
  .lp-phone-narrative { order: 0; }
  .lp-phone-pin { order: 1; }
  .lp-proof-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .lp-secondary-band { flex-direction: column; align-items: flex-start; text-align: start; }
  .lp-secondary-link { align-self: stretch; justify-content: center; }
}

@media (max-width: 600px) {
  .lp-hero { padding-top: 4rem; min-height: auto; }
  .lp-iphone {
    width: 280px;
    height: 580px;
  }
  .lp-features { padding: 4rem 1rem 2rem; }
  .lp-proof { padding: 4rem 1rem 3rem; }
  .lp-secondary { padding: 3rem 1rem; }
  .lp-final-cta { padding: 5rem 1rem; }
}

/* ============================================================
   10. REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .lp-online-dot {
    animation: none !important;
  }
}
