/* ============================================================
   RepGeo — Landing Page Styles (Redesign v2)
   ============================================================ */

/* ════════════════════════════════════════
   HERO
   ════════════════════════════════════════ */
.hero {
  position: relative;
  background: var(--paper);
  overflow: hidden;
  padding: 88px 0 120px;
}

/* Dot grid background */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--gray-faint) 1.5px, transparent 1.5px);
  background-size: 40px 40px;
  opacity: 0.45;
  pointer-events: none;
}

/* Amber glow orb */
.hero-glow {
  position: absolute;
  top: -200px;
  right: -180px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,200,66,0.20) 0%, transparent 65%);
  pointer-events: none;
}

/* Mint glow orb (bottom-left) */
.hero-glow-2 {
  position: absolute;
  bottom: -120px;
  left: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34,201,138,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 72px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ── Left column ── */
.hero-text { max-width: 600px; }

.hero-badge-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-full);
  padding: 6px 14px 6px 10px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--gray-text);
  box-shadow: var(--shadow-xs);
}
.hero-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--mint);
  animation: pulse 2s infinite;
}

.hero-stars {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--gray-text);
  box-shadow: var(--shadow-xs);
}
.hero-stars-icons { color: var(--amber); letter-spacing: -1px; font-size: 11px; }

.hero-headline {
  margin-bottom: 22px;
  line-height: 1;
}
.hero-headline .line1 {
  display: block;
  font-size: clamp(50px, 5.5vw, 74px);
  font-weight: 700;
  letter-spacing: -3px;
  color: var(--ink);
  line-height: 1.02;
}
.hero-headline .line2 {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(60px, 7.5vw, 96px);
  color: var(--ink);
  line-height: 0.95;
  margin-top: -2px;
}

.hero-sub {
  font-size: 17px;
  color: var(--gray-text);
  line-height: 1.65;
  max-width: 500px;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-cta-note {
  font-size: 12px;
  color: var(--gray-dim);
  display: flex;
  align-items: center;
  gap: 5px;
}
.hero-cta-note::before { content: "✓"; color: var(--mint); font-weight: 700; }

.hero-stats {
  display: flex;
  align-items: stretch;
  gap: 0;
  padding-top: 4px;
}
.hero-stat {
  padding: 0 28px;
  border-right: 1px solid var(--gray-line);
}
.hero-stat:first-child { padding-left: 0; }
.hero-stat:last-child  { border-right: none; }
.hero-stat-num {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label {
  font-size: 12px;
  color: var(--gray-dim);
  line-height: 1.3;
}

/* ── Right column — mockup ── */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.mockup-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 40px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.04);
  width: 360px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.mockup-header {
  background: var(--ink);
  padding: 13px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mockup-logo { display: flex; align-items: center; gap: 8px; }
.mockup-logo-text { font-size: 15px; font-weight: 700; color: var(--white); }
.mockup-logo-text .geo { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--amber); }

.mockup-search {
  padding: 10px 14px;
  border-bottom: 1px solid var(--paper-2);
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--paper);
  position: relative;
  z-index: 5;
  pointer-events: auto;
  touch-action: manipulation;
}
.mockup-search-input {
  flex: 1;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink);
  background: none;
  border: none;
  outline: none;
  pointer-events: auto;
}
.mockup-kbd {
  font-family: var(--font-mono);
  font-size: 11px;
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-xs);
  padding: 2px 6px;
  color: var(--gray-dim);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.15s, color 0.15s;
  pointer-events: auto;
  touch-action: manipulation;
}
.mockup-kbd:hover {
  background: var(--ink);
  color: var(--amber);
  border-color: var(--ink);
}
.mockup-kbd:disabled {
  opacity: 0.5;
  cursor: default;
}

.mockup-result {
  padding: 14px 14px 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--paper-2);
}
.mockup-area-box {
  width: 52px; height: 52px;
  background: var(--ink);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 700;
  color: var(--amber);
  flex-shrink: 0;
}
.mockup-loc-city { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.mockup-loc-tz   { font-size: 12px; color: var(--gray-dim); }

.mockup-callwindow {
  margin: 10px 14px;
  padding: 10px 12px;
  background: var(--mint-soft);
  border: 1px solid rgba(34,201,138,0.22);
  border-radius: var(--radius-sm);
}
.mockup-callwindow-top { font-size: 12px; font-weight: 700; color: var(--mint); margin-bottom: 2px; }
.mockup-callwindow-sub { font-size: 12px; color: var(--gray-text); }

.mockup-opener { padding: 12px 14px; border-top: 1px solid var(--paper-2); }
.mockup-section-label {
  font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: var(--gray-faint); margin-bottom: 6px;
}
.mockup-opener-text { font-size: 13px; color: var(--gray-text); font-style: italic; line-height: 1.55; }

.mockup-tabs {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--paper-2);
  padding: 0 14px;
}
.mockup-tab {
  flex: 1;
  padding: 8px 0;
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-dim);
  text-align: center;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.mockup-tab.active { color: var(--ink); border-color: var(--ink); }

.mockup-actions {
  padding: 10px 14px 14px;
  display: flex;
  gap: 8px;
}
.mockup-btn-dark {
  flex: 1; padding: 9px 14px;
  background: var(--ink); color: var(--paper);
  font-size: 12px; font-weight: 600;
  border: none; border-radius: var(--radius-sm);
  cursor: pointer; text-align: center;
}
.mockup-btn-outline {
  flex: 1; padding: 9px 14px;
  background: transparent; color: var(--ink);
  font-size: 12px; font-weight: 600;
  border: 1.5px solid var(--gray-line);
  border-radius: var(--radius-sm);
  cursor: pointer; text-align: center;
}

/* Detection pill — floating */
.detection-pill {
  position: absolute;
  bottom: -32px;
  left: -56px;
  z-index: 3;
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  box-shadow: var(--shadow-lg);
  animation: float 6s ease-in-out infinite;
  max-width: 220px;
}
.detection-pill-phone { font-family: var(--font-mono); font-size: 12px; color: var(--ink); margin-bottom: 4px; font-weight: 600; }
.detection-pill-badge { display: inline-block; background: var(--amber); color: var(--ink); font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: var(--radius-full); margin-bottom: 4px; }
.detection-pill-sub { font-size: 11px; color: var(--gray-dim); line-height: 1.3; }

/* CRM context pill — floating top-right */
.context-pill {
  position: absolute;
  top: -20px;
  right: -40px;
  z-index: 3;
  background: var(--ink);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  box-shadow: var(--shadow-lg);
  animation: float 7s ease-in-out infinite 1s;
  max-width: 200px;
}
.context-pill-label { font-size: 10px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 5px; }
.context-pill-value { font-size: 13px; font-weight: 600; color: var(--amber); }

/* ════════════════════════════════════════
   LOGO MARQUEE / TRUST BAR
   ════════════════════════════════════════ */
.trust-bar {
  background: var(--paper-2);
  border-top: 1px solid var(--gray-line);
  border-bottom: 1px solid var(--gray-line);
  padding: 20px 0;
  overflow: hidden;
}
.trust-bar-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.trust-bar-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gray-faint);
  white-space: nowrap;
  flex-shrink: 0;
}
.trust-bar-divider {
  width: 1px;
  height: 20px;
  background: var(--gray-line);
  flex-shrink: 0;
}
.trust-bar-items {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}
.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-dim);
  white-space: nowrap;
}
.trust-bar-item svg { opacity: 0.5; }

/* ════════════════════════════════════════
   QUOTE BAR
   ════════════════════════════════════════ */
.quote-bar {
  background: var(--ink);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.quote-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}
.quote-bar-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 48px 0 100px;
}
.quote-mark {
  position: absolute;
  left: 48px;
  top: -10px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 100px;
  line-height: 1;
  color: var(--amber);
  opacity: 0.65;
  user-select: none;
}
.quote-text {
  font-size: 20px;
  font-weight: 500;
  color: var(--paper);
  line-height: 1.6;
  margin-bottom: 18px;
}
.quote-attr { font-size: 13px; color: var(--gray-dim); }
.quote-attr strong { color: var(--amber); font-weight: 600; }

/* ════════════════════════════════════════
   PROBLEM SECTION
   ════════════════════════════════════════ */
.problem-section {
  background: var(--paper);
  padding: 100px 0;
}
.problem-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 48px;
}
.problem-header {
  text-align: center;
  margin-bottom: 60px;
}
.problem-headline { margin-bottom: 16px; line-height: 1.1; }
.problem-headline .line1 {
  display: block;
  font-size: clamp(30px, 3.8vw, 44px);
  font-weight: 700;
  letter-spacing: -1.5px;
}
.problem-headline .line2 {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1;
}
.problem-sub {
  font-size: 16px;
  color: var(--gray-text);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}
.problem-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.problem-card { border-radius: var(--radius-xl); padding: 36px 32px; }
.problem-card-light { background: var(--white); border: 1px solid var(--gray-line); box-shadow: var(--shadow-sm); }
.problem-card-dark  { background: var(--ink); color: var(--paper); box-shadow: var(--shadow-pro); }
.problem-card-label {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 24px;
}
.problem-card-light .problem-card-label { color: var(--red); }
.problem-card-dark  .problem-card-label { color: var(--mint); }
.problem-field {
  padding: 11px 0;
  border-bottom: 1px solid;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}
.problem-card-light .problem-field { border-color: var(--paper-2); }
.problem-card-dark  .problem-field { border-color: rgba(255,255,255,0.07); }
.problem-field:last-child { border-bottom: none; }
.problem-field-key { font-size: 12px; font-weight: 600; letter-spacing: 0.3px; flex-shrink: 0; }
.problem-card-light .problem-field-key { color: var(--gray-dim); }
.problem-card-dark  .problem-field-key { color: rgba(255,255,255,0.4); }
.problem-field-val { font-size: 13px; text-align: right; }
.problem-card-light .problem-field-val { color: var(--gray-faint); font-style: italic; }
.problem-card-dark  .problem-field-val { font-family: var(--font-mono); color: var(--amber); font-weight: 600; }

/* ════════════════════════════════════════
   HOW IT WORKS
   ════════════════════════════════════════ */
.how-section {
  background: var(--ink);
  padding: 100px 0;
}
.how-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 48px;
}
.how-header { text-align: center; margin-bottom: 64px; }
.how-headline {
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 700;
  color: var(--paper);
  letter-spacing: -1.5px;
  line-height: 1.1;
}
.how-headline .accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--amber);
}
.how-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
}
/* Connector line between cards */
.how-cards::before {
  content: "";
  position: absolute;
  top: 52px;
  left: calc(33.33% + 10px);
  right: calc(33.33% + 10px);
  height: 1px;
  background: linear-gradient(90deg, rgba(245,200,66,0.3), rgba(245,200,66,0.3));
  pointer-events: none;
}
.how-card {
  background: var(--ink-2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  transition: border-color 0.2s, transform 0.2s var(--ease-out);
}
.how-card:hover { border-color: rgba(245,200,66,0.25); transform: translateY(-3px); }
.how-number {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.how-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
}
.how-card:nth-child(1) .how-icon { background: var(--amber-soft); }
.how-card:nth-child(2) .how-icon { background: var(--mint-soft); }
.how-card:nth-child(3) .how-icon { background: var(--violet-soft); }
.how-card-title { font-size: 20px; font-weight: 700; color: var(--paper); margin-bottom: 12px; letter-spacing: -0.3px; }
.how-card-body  { font-size: 14px; color: var(--gray-dim); line-height: 1.7; }

/* ════════════════════════════════════════
   FEATURES SECTION (NEW)
   ════════════════════════════════════════ */
.crm-screenshot {
  margin-top: 40px;
}
.crm-screenshot-frame {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  background: #f6f8fb;
  box-shadow: 0 34px 90px rgba(0,0,0,0.28);
}
.crm-browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #111827;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.crm-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.28);
}
.crm-address {
  min-width: 0;
  margin-left: 8px;
  color: rgba(255,255,255,0.62);
  font-family: var(--font-mono);
  font-size: 11px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.crm-body {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) 310px;
  gap: 18px;
  min-height: 360px;
  padding: 22px;
}
.crm-sidebar {
  display: grid;
  align-content: start;
  gap: 13px;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid #e5e7eb;
}
.crm-sidebar span {
  color: #ff5c35;
  font-size: 12px;
  font-weight: 800;
}
.crm-sidebar strong {
  color: #111827;
  font-size: 14px;
}
.crm-sidebar em {
  color: #6b7280;
  font-size: 13px;
  font-style: normal;
}
.crm-record {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid #e5e7eb;
}
.crm-record-top {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 22px;
  border-bottom: 1px solid #edf0f4;
}
.crm-avatar {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #111827;
  color: var(--amber);
  font-weight: 800;
}
.crm-record h3 {
  margin: 0 0 4px;
  color: #111827;
  font-size: 22px;
  letter-spacing: -0.5px;
}
.crm-record p {
  margin: 0;
  color: #6b7280;
  font-size: 13px;
}
.crm-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}
.crm-fields div {
  padding: 14px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #eef2f7;
}
.crm-fields span {
  display: block;
  margin-bottom: 6px;
  color: #8a94a6;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}
.crm-fields strong {
  color: #111827;
  font-size: 13px;
}
.crm-repgeo-panel {
  align-self: start;
  padding: 18px;
  border-radius: 18px;
  background: #111827;
  color: var(--paper);
  box-shadow: 0 24px 60px rgba(8,11,24,0.24);
}
.crm-repgeo-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.crm-repgeo-logo {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: var(--amber);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}
.crm-repgeo-number {
  color: rgba(255,255,255,0.48);
  font-family: var(--font-mono);
  font-size: 11px;
}
.crm-repgeo-location {
  margin-top: 4px;
  color: var(--paper);
  font-size: 18px;
  font-weight: 800;
}
.crm-repgeo-time {
  margin-top: 4px;
  color: var(--amber);
  font-family: var(--font-mono);
  font-size: 12px;
}
.crm-repgeo-badge {
  display: inline-flex;
  margin-top: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(34,201,138,0.14);
  color: var(--mint);
  font-size: 12px;
  font-weight: 700;
}
.crm-repgeo-panel p {
  margin: 16px 0;
  color: rgba(255,255,255,0.70);
  font-size: 13px;
  line-height: 1.6;
}
.crm-repgeo-panel button {
  width: 100%;
  border: 0;
  border-radius: 10px;
  background: var(--amber);
  color: var(--ink);
  cursor: default;
  font-weight: 800;
  padding: 11px 12px;
}
.crm-screenshot-caption {
  margin: 14px 0 0;
  color: rgba(255,255,255,0.48);
  font-size: 13px;
  text-align: center;
}

.features-section {
  background: var(--paper-2);
  padding: 100px 0;
}
.features-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 48px;
}
.features-header { text-align: center; margin-bottom: 64px; }
.features-headline {
  font-size: clamp(30px, 3.8vw, 46px);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 14px;
}
.features-headline .accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}
.features-sub {
  font-size: 16px;
  color: var(--gray-text);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.65;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  transition: box-shadow 0.2s var(--ease-out), transform 0.2s var(--ease-out), border-color 0.2s;
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--gray-faint); }
.feature-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 18px;
}
.feature-icon.amber  { background: var(--amber-soft); }
.feature-icon.mint   { background: var(--mint-soft); }
.feature-icon.violet { background: var(--violet-soft); }
.feature-icon.red    { background: rgba(226,76,76,0.08); }
.feature-icon.ink    { background: rgba(8,11,24,0.07); }
.feature-icon.blue   { background: rgba(59,130,246,0.08); }
.feature-title { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 8px; letter-spacing: -0.2px; }
.feature-body  { font-size: 14px; color: var(--gray-text); line-height: 1.65; }

/* Call Memory */
.call-memory-section {
  background: var(--ink);
  padding: 100px 0;
}
.call-memory-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 72px;
  align-items: center;
}
.call-memory-headline {
  max-width: 560px;
  margin: 0 0 18px;
  color: var(--paper);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.04;
  letter-spacing: -1.8px;
}
.call-memory-sub {
  max-width: 560px;
  margin: 0 0 28px;
  color: rgba(255,255,255,0.62);
  font-size: 17px;
  line-height: 1.7;
}
.call-memory-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.call-memory-list li {
  display: flex;
  gap: 10px;
  color: rgba(255,255,255,0.76);
  font-size: 15px;
  line-height: 1.5;
}
.call-memory-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 0 5px rgba(124,111,247,0.14);
  flex-shrink: 0;
}
.call-memory-mockup {
  display: flex;
  justify-content: center;
}
.memory-phone-card {
  width: min(100%, 520px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  background: #12172a;
  box-shadow: 0 28px 80px rgba(0,0,0,0.34);
  padding: 24px;
}
.memory-phone-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.memory-phone-top span {
  color: rgba(255,255,255,0.42);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.memory-phone-top strong {
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 14px;
}
.memory-alert {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  display: grid;
  gap: 4px;
}
.memory-alert strong {
  color: var(--paper);
  font-size: 14px;
}
.memory-alert span {
  color: rgba(255,255,255,0.58);
  font-size: 13px;
  line-height: 1.5;
}
.memory-alert-callback {
  background: rgba(245,200,66,0.10);
  border: 1px solid rgba(245,200,66,0.20);
}
.memory-alert-dnc {
  background: rgba(226,76,76,0.10);
  border: 1px solid rgba(226,76,76,0.24);
}
.memory-entry {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.memory-dot {
  width: 10px;
  height: 10px;
  margin-top: 6px;
  border-radius: 50%;
}
.memory-dot.connected { background: var(--mint); }
.memory-dot.voicemail { background: var(--amber); }
.memory-entry strong {
  color: var(--paper);
  font-size: 14px;
}
.memory-entry p {
  margin: 4px 0 0;
  color: rgba(255,255,255,0.50);
  font-size: 13px;
  line-height: 1.5;
}
.memory-entry em {
  color: rgba(255,255,255,0.34);
  font-family: var(--font-mono);
  font-size: 11px;
  font-style: normal;
}

/* ════════════════════════════════════════
   TESTIMONIALS (NEW)
   ════════════════════════════════════════ */
.testimonials-section {
  background: var(--paper);
  padding: 100px 0;
}
.testimonials-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 48px;
}
.testimonials-header { text-align: center; margin-bottom: 56px; }
.testimonials-headline {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  letter-spacing: -1.2px;
  line-height: 1.1;
  margin-bottom: 12px;
}
.testimonials-headline .accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-xl);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.testimonial-stars { color: var(--amber); font-size: 13px; letter-spacing: 1px; }
.testimonial-text {
  font-size: 14.5px;
  color: var(--gray-text);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--gray-line);
}
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--amber);
  flex-shrink: 0;
  overflow: hidden;
}
.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
.testimonial-name  { font-size: 13px; font-weight: 700; color: var(--ink); }
.testimonial-role  { font-size: 12px; color: var(--gray-dim); }

/* ════════════════════════════════════════
   LANDING PRICING SECTION
   ════════════════════════════════════════ */
/* Chrome Web Store proof */
.chrome-proof-section {
  background: var(--paper);
  padding: 100px 0;
}

.public-proof-section {
  background: #080b18;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 88px 24px;
}

.public-proof-inner {
  align-items: center;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  margin: 0 auto;
  max-width: 1120px;
}

.public-proof-headline {
  color: var(--white);
  font-size: clamp(34px, 5vw, 58px);
  letter-spacing: 0;
  line-height: 0.95;
  margin: 16px 0;
  max-width: 720px;
}

.public-proof-section p {
  color: rgba(255,255,255,0.58);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  max-width: 620px;
}

.public-proof-card {
  background: #121827;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 28px;
}

.public-proof-count {
  color: var(--amber);
  font-family: var(--font-mono);
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
}

.public-proof-label {
  color: rgba(255,255,255,0.48);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-top: 8px;
  text-transform: uppercase;
}

.public-logo-wall {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.public-logo-pill {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  color: rgba(255,255,255,0.72);
  font-size: 12px;
  font-weight: 800;
  padding: 7px 10px;
}
.chrome-proof-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 48px;
}
.chrome-proof-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 32px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  padding: 42px;
}
.chrome-proof-copy {
  max-width: 660px;
}
.chrome-proof-headline {
  color: var(--ink);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -1.4px;
  line-height: 1.08;
  margin: 14px 0 14px;
}
.chrome-proof-copy p {
  color: var(--gray-text);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 24px;
}
.chrome-proof-rating {
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-lg);
  background: var(--paper-2);
  padding: 34px 24px;
}
.chrome-proof-stars {
  color: var(--amber);
  font-size: 26px;
  letter-spacing: 3px;
}
.chrome-proof-rating strong {
  color: var(--ink);
  font-size: 20px;
  letter-spacing: -0.4px;
}
.chrome-proof-rating span {
  color: var(--gray-dim);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.landing-pricing {
  background: var(--paper-2);
  padding: 100px 0;
}
.landing-pricing-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 48px;
}
.pricing-header { text-align: center; margin-bottom: 60px; }
.pricing-headline { line-height: 1.1; }
.pricing-headline .line1 {
  display: block;
  font-size: clamp(30px, 3.8vw, 44px);
  font-weight: 700;
  letter-spacing: -1.5px;
  color: var(--ink);
}
.pricing-headline .line2 {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(36px, 5vw, 54px);
  color: var(--ink);
}

/* ════════════════════════════════════════
   FAQ SECTION (NEW)
   ════════════════════════════════════════ */
.faq-section {
  background: var(--paper);
  padding: 100px 0;
}
.faq-section-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 48px;
}
.faq-header { text-align: center; margin-bottom: 56px; }
.faq-headline {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  letter-spacing: -1.2px;
  line-height: 1.1;
  margin-bottom: 12px;
}

/* ════════════════════════════════════════
   INSTALL / FINAL CTA SECTION
   ════════════════════════════════════════ */
.cta-section {
  background: var(--ink);
  padding: 112px 0;
  position: relative;
  overflow: hidden;
}
.cta-grid-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}
.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(245,200,66,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 48px;
  text-align: center;
}
.cta-headline {
  line-height: 1.1;
  margin-bottom: 16px;
}
.cta-headline .line1 {
  display: block;
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 700;
  color: var(--paper);
  letter-spacing: -1.5px;
}
.cta-headline .line2 {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(36px, 5vw, 64px);
  color: var(--amber);
}
.cta-sub {
  font-size: 16px;
  color: var(--gray-dim);
  line-height: 1.65;
  margin-bottom: 40px;
}
.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.cta-note {
  font-size: 12.5px;
  color: rgba(255,255,255,0.28);
}
.cta-note strong { color: rgba(255,255,255,0.5); }

/* ════════════════════════════════════════
   RESPONSIVE — Landing
   ════════════════════════════════════════ */
@media (max-width: 1080px) {
  .hero-inner { grid-template-columns: 1fr 420px; gap: 48px; }
  .mockup-card { width: 340px; }
  .crm-body { grid-template-columns: 140px minmax(0, 1fr) 280px; }
}

@media (max-width: 900px) {
  .crm-body { grid-template-columns: 1fr; }
  .crm-sidebar { display: none; }
  .crm-repgeo-panel { max-width: 360px; }
  .call-memory-inner { grid-template-columns: 1fr; gap: 44px; }
  .chrome-proof-card { grid-template-columns: 1fr; }
  .public-proof-inner { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid .testimonial-card:last-child { display: none; }
}

@media (max-width: 768px) {
  .hero { padding: 64px 0 96px; }
  .hero-inner { grid-template-columns: 1fr; padding: 0 20px; gap: 48px; }
  .hero-visual { order: -1; justify-content: center; }
  .mockup-card { width: 320px; }
  .detection-pill { display: none; }
  .context-pill { display: none; }
  .hero-stats { flex-wrap: wrap; }
  .hero-stat { padding: 8px 16px; }

  .trust-bar-inner { padding: 0 20px; flex-wrap: wrap; gap: 16px; }

  .quote-bar-inner { padding: 0 20px 0 72px; }
  .quote-mark { left: 20px; font-size: 72px; }

  .problem-inner, .how-inner, .features-inner, .call-memory-inner, .testimonials-inner,
  .chrome-proof-inner,
  .public-proof-inner,
  .landing-pricing-inner, .faq-section-inner, .cta-inner { padding: 0 20px; }

  .problem-cards { grid-template-columns: 1fr; max-width: 480px; }
  .how-cards { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .how-cards::before { display: none; }
  .crm-screenshot { margin-top: 32px; }
  .crm-body { padding: 16px; }
  .features-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .call-memory-section { padding: 72px 0; }
  .call-memory-mockup { justify-content: flex-start; }
  .memory-entry { grid-template-columns: auto minmax(0, 1fr); }
  .memory-entry em { grid-column: 2; }
  .chrome-proof-section { padding: 72px 0; }
  .chrome-proof-card { padding: 28px; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .testimonials-grid .testimonial-card:last-child { display: flex; }
}

@media (max-width: 480px) {
  .hero-headline .line1 { font-size: 42px; letter-spacing: -2px; }
  .hero-headline .line2 { font-size: 52px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-stats { flex-direction: column; }
  .hero-stat { border-right: none; border-bottom: 1px solid var(--gray-line); padding: 12px 0; }
  .hero-stat:last-child { border-bottom: none; }
  .crm-record { padding: 18px; }
  .crm-fields { grid-template-columns: 1fr; }
  .crm-repgeo-panel { max-width: none; }
  .cta-buttons { flex-direction: column; align-items: center; }
}
