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

:root {
  --bg: #FFFFFF;
  --bg-page: #F7F7F8;
  --bg-card: #FFFFFF;
  --bg-card-alt: #F7F7F8;
  --text: #0A0A0A;
  --text-secondary: #555560;
  --text-muted: #8C8C96;
  --text-dim: #B0B0B8;
  --accent: #E8366D;
  --accent-hover: #c92d5b;
  --accent-light: rgba(232,54,109,0.06);
  --accent-light2: rgba(232,54,109,0.1);
  --green: #16a34a;
  --green-light: rgba(22,163,74,0.08);
  --yellow: #ca8a04;
  --yellow-light: rgba(202,138,4,0.08);
  --border: #E8E8EC;
  --border-light: #F0F0F4;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.08);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
}

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

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

/* Header CSS lives in /css/site-header.css */

/* ═══ HERO ═══ */
.hero {
  /* F-07: was min-height:100vh, which extends the hero past the visible
     area (the sticky site header overlays the top ~64px). align-items:center
     then centered the row's vertical axis relative to 100vh — meaning the
     text drifted ~30-40px below visible center while the page rendered
     ~150-200px of blank above the eyebrow. Subtract the header height so
     the hero fits the visible viewport and the text sits where the eye
     expects it. */
  min-height: calc(100vh - 64px);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: var(--bg);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 10% 90%, rgba(232,54,109,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 90% 20%, rgba(232,54,109,0.03) 0%, transparent 50%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto;
  /* F-07 follow-up: padding-top was 80px which pushed the eyebrow ~140px
     below the sticky header. Reduced to 48px for a natural reading
     position. */
  padding: 48px 24px 80px;
  display: grid; grid-template-columns: 1.4fr 0.85fr;
  /* F-07 follow-up: align-items:center on a row driven by the tall
     phone-mockup column pulled the shorter left text column down.
     align-items:start anchors text to the top of the row. */
  gap: 48px; align-items: start;
  width: 100%; position: relative; z-index: 2;
}
.hero-eyebrow {
  font-size: 11px; font-weight: 600;
  color: var(--accent);
  text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 28px;
}
.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(38px, 4.8vw, 58px);
  font-weight: 700; color: var(--text);
  letter-spacing: -0.03em; line-height: 1.08;
  margin-bottom: 24px;
}
.hero-subtitle {
  font-size: clamp(16px, 1.6vw, 18px);
  color: var(--text-secondary);
  line-height: 1.7; margin-bottom: 20px;
  max-width: 480px;
}
.hero-desc {
  font-size: 14px; color: var(--text-muted);
  line-height: 1.75; margin-bottom: 40px;
  max-width: 440px;
}
.hero-stats {
  display: flex; gap: 0; margin-bottom: 40px;
}
.hero-stat {
  padding: 0 28px;
  border-right: 1px solid var(--border);
}
.hero-stat:first-child { padding-left: 0; }
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 28px; font-weight: 700; color: var(--text);
  line-height: 1;
}
.hero-stat-label {
  font-size: 11px; color: var(--text-muted);
  margin-top: 6px; text-transform: uppercase; letter-spacing: 0.5px;
}
.hero-actions { display: flex; gap: 14px; align-items: center; }

.btn-primary {
  font-family: 'Inter', sans-serif;
  font-size: 14px; font-weight: 600;
  padding: 14px 32px; border-radius: 12px;
  background: var(--accent); color: #fff;
  border: none; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232,54,109,0.25);
}
.btn-secondary {
  font-family: 'Inter', sans-serif;
  font-size: 14px; font-weight: 600;
  padding: 14px 32px; border-radius: 12px;
  background: transparent; color: var(--text-secondary);
  border: 1px solid var(--border); cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-secondary:hover {
  border-color: var(--text-muted);
  color: var(--text);
}

/* ═══ PHONE MOCKUPS (hero visual) ═══ */
.hero-visual {
  display: flex; justify-content: center; align-items: flex-end;
  gap: 20px; position: relative;
  padding: 20px 0;
}
.hero-visual-tagline {
  grid-column: 1 / -1;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 13px; font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}
.phone {
  flex-shrink: 0;
  border-radius: 28px;
  background: #000;
  padding: 5px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
}
.phone--front {
  width: 170px;
  z-index: 2;
}
.phone--back {
  width: 150px;
  transform: translateY(14px) scale(0.94);
  z-index: 1;
}
.phone-notch {
  width: 60px; height: 16px;
  background: #000;
  border-radius: 0 0 10px 10px;
  position: absolute; top: 5px; left: 50%; transform: translateX(-50%);
  z-index: 5;
}
.phone-screen {
  border-radius: 23px;
  overflow: hidden;
  position: relative;
}

/* ═══ FEED SCREEN (TikTok-style full-bleed — wfram2.png) ═══ */
.screen-feed {
  background: #0e1117;
  aspect-ratio: 9/19.2;
  position: relative;
  display: flex;
  flex-direction: column;
}
.screen-feed-bg {
  position: absolute; inset: 0;
  background: url('../assets/images/phone-feed.jpg') center/cover no-repeat;
}
.screen-feed-gradient {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 55%;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
}
.screen-feed-status {
  position: relative; z-index: 3;
  display: flex; justify-content: space-between; align-items: center;
  padding: 6px 12px 0;
  font-size: 7px; font-weight: 600; color: #fff;
}
.screen-feed-actions {
  position: absolute; right: 6px; bottom: 50px; z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.feed-action-item {
  display: flex; flex-direction: column; align-items: center; gap: 1px;
}
.feed-action-item svg { width: 14px; height: 14px; color: #fff; }
.feed-action-item span { font-size: 6px; color: rgba(255,255,255,0.8); font-weight: 600; }
.feed-trip-thumb {
  width: 22px; height: 22px; border-radius: 4px;
  border: 1px solid #fff;
  background: url('../assets/images/phone-trip-icon.jpg') center/cover no-repeat;
  overflow: hidden;
}
.feed-trip-label { font-size: 5px; color: rgba(255,255,255,0.8); font-weight: 600; margin-top: 1px; }
.screen-feed-info {
  position: relative; z-index: 3;
  margin-top: auto;
  padding: 0 8px 4px;
}
.feed-creator-row { display: flex; align-items: center; gap: 4px; margin-bottom: 3px; }
.feed-creator-avatar {
  width: 15px; height: 15px; border-radius: 50%;
  background: rgba(255,255,255,0.25); border: 1px solid #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 5px; font-weight: 700; color: #fff;
}
.feed-creator-name { font-size: 7px; font-weight: 600; color: #fff; }
.feed-follow-btn {
  font-size: 6px; font-weight: 700; color: #fff;
  background: rgba(255,255,255,0.2); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 2px 6px; border-radius: 8px;
}
.feed-day-label { font-size: 6px; color: rgba(255,255,255,0.7); font-weight: 500; margin-bottom: 1px; }
.feed-desc {
  font-size: 6px; color: rgba(255,255,255,0.55); line-height: 1.3;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
/* Bottom nav (dark feed) */
.phone-nav-dark {
  position: relative; z-index: 3;
  display: flex; justify-content: space-around; align-items: center;
  padding: 4px 0 3px;
  background: rgba(0,0,0,0.5); backdrop-filter: blur(8px);
  border-radius: 0 0 23px 23px;
}
.phone-nav-dark .pn-item { display: flex; flex-direction: column; align-items: center; gap: 1px; }
.phone-nav-dark .pn-item svg { width: 11px; height: 11px; color: rgba(255,255,255,0.45); }
.phone-nav-dark .pn-item span { font-size: 5px; color: rgba(255,255,255,0.4); }
.phone-nav-dark .pn-item--active svg { color: #fff; }
.phone-nav-dark .pn-item--active span { color: #fff; font-weight: 600; }
.phone-nav-dark .pn-item--plus svg { width: 14px; height: 14px; color: rgba(255,255,255,0.6); }

/* ═══ TRIP DETAIL SCREEN (w2.png) ═══ */
.screen-trip {
  background: #fff;
  aspect-ratio: 9/19.2;
  display: flex;
  flex-direction: column;
}
.screen-trip-status {
  display: flex; justify-content: space-between; align-items: center;
  padding: 6px 10px 0;
  font-size: 7px; font-weight: 600; color: #111;
}
/* Hero image area */
.trip-hero {
  height: 25%;
  position: relative;
  background: url('../assets/images/phone-hero.jpg') center/cover no-repeat;
  overflow: hidden;
}
.trip-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 0%, transparent 70%, rgba(0,0,0,0.1) 100%);
}
.trip-hero-back {
  position: absolute; top: 6px; left: 6px;
  width: 16px; height: 16px; border-radius: 50%;
  background: rgba(255,255,255,0.2); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center; z-index: 2;
}
.trip-hero-back svg { width: 8px; height: 8px; color: #fff; }
.trip-hero-info {
  position: absolute; top: 6px; right: 6px;
  width: 16px; height: 16px; border-radius: 50%;
  background: rgba(255,255,255,0.2); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center; z-index: 2;
}
.trip-hero-info svg { width: 8px; height: 8px; color: #fff; }
.trip-hero-tag {
  position: absolute; bottom: 4px; left: 4px;
  display: flex; align-items: center; gap: 2px;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(6px);
  padding: 2px 5px; border-radius: 5px;
  font-size: 6px; color: #fff; font-weight: 500;
}
.trip-hero-tag-flag { font-size: 7px; }
.trip-hero-count {
  position: absolute; bottom: 4px; right: 4px;
  font-size: 6px; color: rgba(255,255,255,0.7); font-weight: 500;
  background: rgba(0,0,0,0.3); padding: 1px 4px; border-radius: 4px;
}
.trip-creator {
  display: flex; align-items: center; justify-content: space-between;
  padding: 6px 8px;
}
.trip-creator-left { display: flex; align-items: center; gap: 5px; }
.trip-creator-avatar {
  width: 18px; height: 18px; border-radius: 50%;
  background: linear-gradient(135deg, #5a4a3a, #3a3a4a);
  display: flex; align-items: center; justify-content: center;
  font-size: 6px; font-weight: 700; color: #fff;
  position: relative;
}
.trip-creator-avatar::after {
  content: '✓'; position: absolute; bottom: -1px; right: -1px;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent); color: #fff; font-size: 4px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid #fff;
}
.trip-creator-label { font-size: 5px; color: var(--text-muted); }
.trip-creator-name { font-size: 7px; font-weight: 600; color: var(--text); }
.trip-follow-btn {
  font-size: 6px; font-weight: 600; color: var(--text-secondary);
  border: 1px solid var(--border); padding: 2px 6px; border-radius: 5px;
  background: #fff;
}
.trip-content { padding: 0 8px; flex: 1; overflow: hidden; }
.trip-title {
  font-family: 'Poppins', sans-serif;
  font-size: 9px; font-weight: 700; color: var(--text);
  line-height: 1.3; margin-bottom: 2px;
}
.trip-desc {
  font-size: 6px; color: var(--text-muted); line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  margin-bottom: 5px;
}
.trip-desc-more { font-weight: 600; color: var(--text); }
.trip-buttons { display: flex; gap: 3px; margin-bottom: 6px; }
.trip-btn-map {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 2px;
  padding: 3px; border-radius: 5px;
  border: 1px solid var(--border); background: #fff;
  font-size: 6px; font-weight: 600; color: var(--text); white-space: nowrap;
}
.trip-btn-map svg { width: 7px; height: 7px; flex-shrink: 0; }
.trip-btn-add {
  flex: 1.3; display: flex; align-items: center; justify-content: center; gap: 2px;
  padding: 3px; border-radius: 5px;
  background: var(--accent); border: none;
  font-size: 6px; font-weight: 700; color: #fff; white-space: nowrap;
}
.trip-btn-add svg { width: 7px; height: 7px; color: #fff; flex-shrink: 0; }
.trip-day-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 3px; }
.trip-day-title { font-size: 6px; color: var(--text); }
.trip-day-title strong { font-weight: 700; }
.trip-day-arrows { display: flex; gap: 2px; }
.trip-day-arrows svg { width: 8px; height: 8px; color: var(--text-muted); }
.trip-stops { display: flex; gap: 4px; overflow: hidden; }
.trip-stop {
  width: 55%; flex-shrink: 0;
  border-radius: 6px; overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
}
.trip-stop--highlight { border: 1px solid rgba(232,54,109,0.55); }
.trip-stop-img {
  height: 32px; position: relative;
  background: url('../assets/images/phone-stop1.jpg') center/cover no-repeat;
}
.trip-stop-img--b {
  background: url('../assets/images/phone-stop2.jpg') center/cover no-repeat;
}
.trip-stop-tag {
  position: absolute; top: 2px; left: 2px;
  font-size: 4px; font-weight: 700; color: #fff;
  background: rgba(0,0,0,0.5); padding: 1px 3px; border-radius: 3px;
}
.trip-stop-tapped {
  position: absolute; top: 2px; right: 2px;
  font-size: 4px; font-weight: 800; color: #fff;
  background: var(--accent); padding: 1px 3px; border-radius: 2px;
  text-transform: uppercase; letter-spacing: 0.3px;
}
.trip-stop-body { padding: 3px 4px; }
.trip-stop-name { font-size: 6px; font-weight: 600; color: var(--text); line-height: 1.2; }
.trip-stop-desc { font-size: 5px; color: var(--text-muted); margin-top: 1px; }
.phone-nav-light {
  display: flex; justify-content: space-around; align-items: center;
  padding: 3px 0 2px;
  border-top: 1px solid var(--border-light);
  background: #fff;
  border-radius: 0 0 23px 23px;
}
.phone-nav-light .pn-item { display: flex; flex-direction: column; align-items: center; gap: 1px; }
.phone-nav-light .pn-item svg { width: 10px; height: 10px; color: var(--text-muted); }
.phone-nav-light .pn-item span { font-size: 5px; color: var(--text-muted); }
.phone-nav-light .pn-item--active svg { color: var(--accent); }
.phone-nav-light .pn-item--active span { color: var(--accent); font-weight: 600; }

/* Operator callout floating */
.phone-callout {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: var(--shadow-lg);
  z-index: 10;
  opacity: 0;
  animation: calloutPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.phone-callout--top {
  top: 30px; right: -30px;
  animation-delay: 1.2s;
}
.phone-callout--bottom {
  bottom: 90px; left: -40px;
  animation-delay: 2.0s;
}
@keyframes calloutPop {
  from { opacity: 0; transform: scale(0.85) translateY(8px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.callout-label {
  font-size: 8px; font-weight: 600; color: var(--accent);
  text-transform: uppercase; letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.callout-val {
  font-family: 'Poppins', sans-serif;
  font-size: 18px; font-weight: 700; color: var(--text); line-height: 1;
}
.callout-sub { font-size: 9px; color: var(--text-muted); margin-top: 2px; }
.callout-row { display: flex; align-items: center; gap: 6px; margin-top: 5px; }
.callout-avatar {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--text-muted); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 6px; font-weight: 700;
}
.callout-name { font-size: 9px; color: var(--text-secondary); font-weight: 500; }
.callout-badge {
  font-size: 7px; font-weight: 700; padding: 1px 5px;
  border-radius: 4px; background: var(--green-light); color: var(--green);
}

/* ═══ HOW-IT-WORKS QUICK (4-step banner) ═══ */
.hiw-section {
  background: var(--bg-page);
  padding: 80px 48px;
}
.hiw-inner {
  max-width: 900px;
  margin: 0 auto;
}
.hiw-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  text-align: center;
}
.hiw-title {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  letter-spacing: -0.5px;
  margin-bottom: 56px;
}
.hiw-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.hiw-step {
  text-align: center;
}
.hiw-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.hiw-step-title {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
}
.hiw-step-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ═══ HOW IT WORKS — DETAILED ═══ */
.how-steps { display: flex; flex-direction: column; gap: 100px; }
.how-step {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.how-step--reverse { direction: rtl; }
.how-step--reverse > * { direction: ltr; }
.how-step-num {
  font-family: 'Poppins', sans-serif;
  font-size: 64px; font-weight: 700;
  color: var(--accent); line-height: 1; opacity: 0.45;
  margin-bottom: 12px;
}
.how-step-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700; color: var(--text);
  letter-spacing: -0.02em; line-height: 1.15;
  margin-bottom: 14px;
}
.how-step-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.7; max-width: 420px; }
.how-features { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.how-feat { display: flex; align-items: flex-start; gap: 10px; }
.how-feat svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--green); }
.how-feat p { font-size: 13px; line-height: 1.5; color: var(--text-secondary); }
.how-feat p strong { font-weight: 600; color: var(--text); }

.how-visual {
  background: var(--bg-card);
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  padding: 20px;
}

/* ═══ SECTION SHARED ═══ */
.section { padding: 120px 24px; }
.section--border { border-top: 1px solid var(--border); }
.section--alt { background: var(--bg-page); }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-eyebrow {
  font-size: 11px; font-weight: 600;
  color: var(--accent);
  text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700; color: var(--text);
  letter-spacing: -0.02em; line-height: 1.15;
  margin-bottom: 20px;
}
.section-desc {
  font-size: 15px; color: var(--text-secondary);
  line-height: 1.7; max-width: 600px;
}
.section-header { text-align: center; margin-bottom: 72px; }
.section-header .section-desc { margin: 0 auto; }

/* ═══ PROBLEM CARDS ═══ */
.problem-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 60px;
}
.problem-card {
  padding: 32px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.problem-card:hover {
  border-color: var(--text-dim);
  box-shadow: var(--shadow-md);
}
.problem-card-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--accent-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.problem-card-icon svg { width: 20px; height: 20px; color: var(--accent); }
.problem-card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 17px; font-weight: 600; color: var(--text);
  margin-bottom: 8px;
}
.problem-card-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }
.problem-card-stat {
  font-family: 'Poppins', sans-serif;
  font-size: 28px; font-weight: 700;
  color: var(--accent); margin-top: 16px;
}
.problem-card-stat-label { font-size: 10px; color: var(--text-muted); }

/* ═══ COMPARE TABLE ═══ */
.compare-table {
  width: 100%; border-collapse: separate;
  border-spacing: 0; overflow: hidden;
  border-radius: 16px; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.compare-table thead th {
  padding: 18px 20px; text-align: left;
  font-size: 12px; font-weight: 600; color: var(--text-muted);
  background: var(--bg-page); border-bottom: 1px solid var(--border);
}
.compare-table thead th:first-child { width: 38%; }
.compare-table thead th.th-highlight { background: var(--accent-light); color: var(--text); }
.compare-table tbody td {
  padding: 16px 20px; font-size: 13px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-light);
  background: var(--bg-card);
}
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody td.td-highlight { background: rgba(232,54,109,0.02); color: var(--text); font-weight: 600; }
.compare-table tbody td.td-bad { color: var(--text-dim); }
.td-check {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--green); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
}
.td-check svg { width: 11px; height: 11px; }
.td-x {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--border-light); color: var(--text-dim);
  display: inline-flex; align-items: center; justify-content: center;
}
.td-x svg { width: 11px; height: 11px; }

/* ═══ TESTIMONIALS ═══ */
.proof-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.proof-card {
  background: var(--bg-card);
  border-radius: 16px; padding: 28px;
  border: 1px solid var(--border);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.proof-card:hover {
  border-color: var(--text-dim);
  box-shadow: var(--shadow-md);
}
.proof-card-quote { font-size: 14px; color: var(--text-secondary); line-height: 1.65; margin-bottom: 24px; font-style: italic; }
.proof-card-author { display: flex; align-items: center; gap: 10px; }
.proof-card-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: #fff; flex-shrink: 0;
  background: var(--text-muted);
}
.proof-card-name { font-size: 13px; font-weight: 600; color: var(--text); }
.proof-card-role { font-size: 11px; color: var(--text-muted); margin-top: 1px; }

/* ═══ CTA ═══ */
.cta-section {
  padding: 120px 24px;
  text-align: center;
  position: relative; overflow: hidden;
  background: var(--bg-page);
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(232,54,109,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 2; max-width: 560px; margin: 0 auto; }
.cta-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700; color: var(--text);
  letter-spacing: -0.02em; line-height: 1.15;
  margin-bottom: 16px;
}
.cta-desc { font-size: 15px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 36px; }
.cta-form { display: flex; gap: 10px; max-width: 440px; margin: 0 auto; }
.cta-input {
  flex: 1; padding: 14px 18px;
  border-radius: 12px; border: 1px solid var(--border);
  background: var(--bg-card); color: var(--text);
  font-family: 'Inter', sans-serif; font-size: 14px;
  outline: none; transition: border-color 0.2s;
}
.cta-input::placeholder { color: var(--text-dim); }
.cta-input:focus { border-color: var(--accent); }
.cta-submit {
  padding: 14px 28px; border-radius: 12px;
  background: var(--accent); color: #fff;
  font-family: 'Inter', sans-serif; font-size: 14px;
  font-weight: 600; border: none; cursor: pointer;
  white-space: nowrap; transition: transform 0.2s, box-shadow 0.2s;
}
.cta-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(232,54,109,0.25); }
.cta-note { font-size: 12px; color: var(--text-muted); margin-top: 14px; }

/* ═══ FAQ ═══ */
.faq-section {
  padding: 96px 24px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.faq-wrap { max-width: 780px; margin: 0 auto; }
.faq-header { text-align: center; margin-bottom: 40px; }
.faq-header .section-eyebrow { margin-bottom: 10px; }
.faq-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--text);
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
  background: var(--bg-card);
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--text-dim); }
.faq-question {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
}
.faq-question:hover { background: var(--bg-card-alt); }
.faq-question .chevron {
  color: var(--text-muted);
  font-size: 18px;
  transition: transform 0.25s;
  flex-shrink: 0;
}
.faq-item.open .chevron { transform: rotate(180deg); color: var(--accent); }
.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
}
.faq-item.open .faq-answer {
  max-height: 600px;
  padding: 0 24px 22px;
}
@media (max-width: 720px) {
  .faq-section { padding: 64px 20px; }
  .faq-header h2 { font-size: 28px; }
  .faq-question { padding: 18px 20px; font-size: 14px; }
  .faq-answer { padding: 0 20px; }
  .faq-item.open .faq-answer { padding: 0 20px 18px; }
}

/* ═══ FOOTER ═══ */
.footer {
  border-top: 1px solid var(--border);
  padding: 72px 24px 36px;
  background: var(--bg);
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 60px; padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.footer-logo { font-family: 'Poppins', sans-serif; font-size: 20px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 8px; color: var(--text); }
.footer-tagline { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title { font-size: 11px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px; }
.footer-col a { font-size: 13px; color: var(--text-secondary); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; font-size: 12px; color: var(--text-muted);
}
.footer-social { display: flex; gap: 14px; }
.footer-social a { color: var(--text-muted); transition: color 0.2s; }
.footer-social a:hover { color: var(--text); }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 760px) {
  /* Hero — stack vertically, tighten spacing */
  .hero { min-height: auto; }
  .hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
    padding: 48px 24px 60px;
  }
  .hero-copy { display: contents; }
  .hero-eyebrow { margin-bottom: 20px; }
  .hero-title { font-size: 32px; line-height: 1.12; }
  .hero-title br { display: none; }
  .hero-subtitle { font-size: 16px; max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-desc { font-size: 14px; max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-stats { display: none; }
  .hero-actions {
    order: 6;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .hero-actions + p { order: 7; }
  .btn-primary, .btn-secondary {
    width: 100%; max-width: 300px;
    justify-content: center; text-align: center;
  }

  /* Phones — both phones, above button */
  .hero-visual {
    order: 5;
    justify-content: center;
    gap: 12px;
    margin: 32px 0;
    width: 100%;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }
  .phone--back { display: block; width: 42%; transform: scale(0.94) translateY(10px); }
  .phone--front { width: 48%; }
  .phone-callout { display: none; }

  /* Sections — tighter padding */
  .section { padding: 80px 24px; }
  .section-title { font-size: 26px; }
  .section-desc { font-size: 14px; }
  .section-header { margin-bottom: 48px; }

  /* How it works — detailed steps */
  .how-step, .how-step--reverse { grid-template-columns: 1fr; direction: ltr; gap: 32px; }
  .how-steps { gap: 64px; }
  .how-step-num { font-size: 48px; }
  .how-visual .phone--back { width: 42% !important; }
  .how-visual .phone--front { width: 48% !important; }

  /* Problem cards — single column */
  .problem-grid { grid-template-columns: 1fr; gap: 14px; margin-top: 40px; }
  .problem-card { padding: 24px 20px; }
  .problem-card-stat { font-size: 24px; }

  /* Compare table — horizontal scroll wrapper */
  .compare-table { font-size: 12px; }
  .compare-table thead th { padding: 14px 12px; font-size: 10px; }
  .compare-table tbody td { padding: 12px; font-size: 11px; }

  /* Testimonials — single column */
  .proof-cards { grid-template-columns: 1fr; gap: 14px; }
  .proof-card { padding: 24px 20px; }
  .proof-card-quote { font-size: 13px; }

  /* CTA — tighter */
  .cta-section { padding: 80px 24px; }
  .cta-title { font-size: 26px; }
  .cta-desc { font-size: 14px; }
  .cta-form { flex-direction: column; gap: 8px; }
  .cta-input { padding: 14px 16px; }
  .cta-submit { padding: 14px; }

  /* Footer — stack */
  .hiw-section { padding: 60px 24px; }
  .hiw-steps { grid-template-columns: repeat(2, 1fr); }

  .footer { padding: 48px 24px 28px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .footer-links { grid-template-columns: repeat(3, 1fr); gap: 20px; text-align: left; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer-social { justify-content: center; }
}

/* Small phones */
@media (max-width: 420px) {
  .hero-inner { padding: 40px 24px 48px; }
  .hero-title { font-size: 28px; }
  .hero-visual { max-width: 320px; }
  .phone--back { width: 42%; }
  .phone--front { width: 48%; }
  .section { padding: 64px 24px; }
  .section-title { font-size: 24px; }
  .hiw-steps { grid-template-columns: 1fr; gap: 24px; }
  .hiw-section { padding: 48px 24px; }
  .hiw-title { font-size: 24px; margin-bottom: 36px; }
  .how-steps { gap: 48px; }
  .how-step, .how-step--reverse { gap: 24px; }
  .how-step-num { font-size: 40px; margin-bottom: 8px; }
  .how-step-title { font-size: 22px; }
  .how-step-desc { font-size: 13px; }
  .how-visual { padding: 16px; }
  .hero-actions { gap: 8px; }
  .btn-primary, .btn-secondary {
    font-size: 13px;
    padding: 12px 24px;
    max-width: 280px;
  }
  .compare-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -24px;
    padding: 0 24px;
  }
  .compare-table thead th:first-child { min-width: 100px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .cta-section { padding: 64px 24px; }
  .cta-title { font-size: 24px; }
  .mobile-nav-menu { padding: 24px 20px; }
}

@media (max-width: 375px) {
  .hero-inner { padding: 32px 20px 40px; }
  .hero-title { font-size: 24px; }
  .hero-subtitle { font-size: 14px; }
  .hero-desc { font-size: 13px; }
  .hero-visual { max-width: 300px; }
  .phone--back { width: 42%; }
  .phone--front { width: 48%; }
  .section { padding: 56px 20px; }
  .section-title { font-size: 22px; }
  .section-desc { font-size: 13px; }
  .hiw-section { padding: 40px 20px; }
  .hiw-title { font-size: 22px; }
  .hiw-step-title { font-size: 14px; }
  .hiw-step-desc { font-size: 12px; }
  .cta-section { padding: 56px 20px; }
  .cta-title { font-size: 22px; }
  .cta-desc { font-size: 13px; }
  .problem-card { padding: 20px 16px; }
  .problem-card-title { font-size: 15px; }
  .problem-card-desc { font-size: 12px; }
  .problem-card-stat { font-size: 22px; }
  .proof-card { padding: 20px 16px; }
  .proof-card-quote { font-size: 12px; }
  .btn-primary, .btn-secondary {
    font-size: 12px;
    padding: 11px 20px;
    max-width: 260px;
  }
  .footer { padding: 40px 12px 24px; }
  .footer-links { grid-template-columns: 1fr; gap: 20px; }
  .mobile-nav-menu { padding: 24px 16px; }
}

/* ═══ ANIMATIONS ═══ */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.is-visible { opacity: 1; transform: translateY(0); }

@keyframes pinDrop {
  0% { transform: translateY(-60px); opacity: 0; }
  60% { transform: translateY(4px); opacity: 1; }
  80% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}


/* ═══ WAITLIST MODAL ═══ */
.wl-modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
}
.wl-modal-backdrop.open { display: flex; }
.wl-modal {
  background: #fff;
  border-radius: 20px;
  padding: 2.25rem 2rem;
  max-width: 420px;
  width: 92%;
  position: relative;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  font-family: 'Inter', sans-serif;
}
.wl-modal-close {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: none; font-size: 1.5rem;
  cursor: pointer; color: #999; line-height: 1; padding: 0;
}
.wl-modal-close:hover { color: #0A0A0A; }
.wl-modal h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem; font-weight: 700; color: #0A0A0A;
  margin-bottom: 0.35rem; letter-spacing: -0.02em;
}
.wl-modal p { font-size: 0.875rem; color: #6B6B70; margin-bottom: 1.25rem; line-height: 1.5; }
.wl-modal form { display: flex; flex-direction: column; gap: 0.6rem; }
.wl-modal input {
  width: 100%; padding: 0.7rem 0.9rem;
  border: 1.5px solid #E5E5EA; border-radius: 10px;
  font-family: 'Inter', sans-serif; font-size: 0.9rem;
  color: #0A0A0A; outline: none; transition: border-color 0.2s; background: #F9F9FA;
}
.wl-modal input::placeholder { color: #aaa; }
.wl-modal input:focus { border-color: #0A0A0A; background: #fff; }
.wl-modal-btn {
  width: 100%; padding: 0.85rem; border-radius: 10px; border: none;
  background: #0A0A0A; color: #fff; font-family: 'Inter', sans-serif;
  font-size: 0.95rem; font-weight: 600; cursor: pointer;
  transition: opacity 0.2s; margin-top: 0.3rem;
}
.wl-modal-btn:hover { opacity: 0.85; }
.wl-modal-btn:disabled { opacity: 0.55; cursor: not-allowed; }
.wl-modal-success { display: none; text-align: center; padding: 1.5rem 0; }
.wl-modal-success.show { display: block; }
.wl-modal-success h4 { font-size: 1.1rem; font-weight: 700; color: #0A0A0A; margin-bottom: 0.4rem; }
.wl-modal-success p { color: #6B6B70; font-size: 0.875rem; }
