/* Holger landing page — production styles */

:root {
  --teal: #1f8a7a;
  --teal-dark: #146357;
  --teal-bright: #6fe0c3;
  --navy: #12202b;
  --bg: #f7f6f3;
  --white: #ffffff;
  --teal-tint: #eefaf6;
  --red: #e5484d;
  --red-soft: #ff8a8d;

  --font-heading: "Barlow Condensed", system-ui, sans-serif;
  --font-body: "Barlow", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--navy);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2 { font-family: var(--font-heading); font-weight: 600; margin: 0; }

a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-dark); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.wrap-narrow { max-width: 760px; }

.section-pad { margin-bottom: 64px; }

.section-heading {
  font-size: 30px;
  font-weight: 600;
  margin: 0 0 32px;
  max-width: 640px;
}
.section-heading.center { text-align: center; margin: 0 auto 40px; max-width: none; font-size: 34px; }

/* — buttons — */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}
.btn-nowrap { white-space: nowrap; }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: #1a2f3d; color: #fff; }
.btn-light { background: #fff; color: var(--teal-dark); font-weight: 600; }
.btn-light:hover { background: #f0f0f0; color: var(--teal-dark); }
.btn-teal { background: var(--teal); color: #fff; font-weight: 600; }
.btn-teal:hover { background: var(--teal-dark); color: #fff; }
.btn-sm { padding: 9px 18px; font-size: 13px; }

/* header CTA / hero CTA are smaller than the lg one */
.header-inner .btn { padding: 10px 20px; font-size: 14px; font-weight: 500; }
.btn-lg { padding: 14px 28px; font-size: 15px; margin-top: 24px; }

/* — header — */
.site-header { padding: 20px 0; }
.header-inner { display: flex; align-items: center; gap: 32px; }
.brand {
  font-family: var(--font-heading); font-weight: 600; font-size: 20px;
  display: flex; align-items: center; gap: 8px;
}
.brand-sm { font-size: 15px; }
.main-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; font-size: 15px; }
.main-nav a { color: var(--navy); }
.main-nav a:hover { color: var(--teal); }

/* — hero — */
.hero { padding: 24px 0 64px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.kicker-pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--teal-tint);
  border: 1px solid rgba(31,138,122,0.25);
  color: var(--teal-dark);
  font-weight: 600; font-size: 13px;
  padding: 6px 14px; border-radius: 999px;
  margin-bottom: 16px;
}
.kicker-pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); }
.hero-copy h1 { font-size: 52px; line-height: 1.05; max-width: 560px; margin: 0 0 20px; }
.hero-sub { font-size: 17px; max-width: 500px; opacity: 0.75; line-height: 1.5; margin: 0; }
.micro-trust { font-size: 13px; opacity: 0.6; margin: 14px 0 0; }

/* — hero phone mockups — */
.phone-stack {
  position: relative;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.phone-card {
  position: relative;
  background: #fff;
  border-radius: 28px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.phone-side {
  width: 175px; height: 335px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  margin-top: 60px;
}
.phone-main {
  z-index: 2;
  width: 185px; height: 415px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.16);
  border: 2px solid var(--teal);
  flex: none;
}
.phone-label { font-size: 11px; font-weight: 600; opacity: 0.5; white-space: nowrap; }
.phone-label-brand { color: var(--teal); opacity: 1; }
.phone-screen {
  flex: 1;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* 1 · lock screen with missed calls */
.phone-screen-dark { background: #101820; color: #fff; padding: 12px 10px; }
.lock-time {
  text-align: center; font-family: var(--font-heading);
  font-size: 26px; font-weight: 500; letter-spacing: 0.5px; line-height: 1;
}
.lock-date { text-align: center; font-size: 9px; opacity: 0.5; margin-top: 3px; }
.missed-list { margin-top: auto; display: flex; flex-direction: column; gap: 5px; }
.missed-item {
  background: rgba(255,255,255,0.09);
  border-radius: 10px;
  padding: 9px 12px;
  display: flex; flex-direction: column; gap: 4px;
}
.missed-top { display: flex; align-items: center; gap: 5px; }
.missed-top svg { flex: none; }
.missed-label { font-size: 9.5px; font-weight: 600; color: var(--red-soft); line-height: 1.2; white-space: nowrap; }
.missed-time { margin-left: auto; font-size: 8.5px; opacity: 0.45; }
.missed-number { font-size: 9.5px; opacity: 0.8; line-height: 1.3; white-space: nowrap; }

/* 2 · chat thread */
.chat-screen { background: var(--teal-tint); padding: 10px; gap: 6px; }
.chat-head {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  border-bottom: 1px solid rgba(18,32,43,0.08);
  padding-bottom: 7px; margin-bottom: 2px;
}
.chat-avatar {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--teal); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 8px; font-weight: 700;
}
.chat-name { font-size: 9px; font-weight: 600; }
.chat-meta { font-size: 7.5px; opacity: 0.45; }
.bubble { border-radius: 10px; padding: 7px 9px; font-size: 10px; line-height: 1.35; max-width: 88%; }
.bubble-in { background: #fff; align-self: flex-start; }
.bubble-out { background: var(--teal); color: #fff; align-self: flex-end; }
.bubble-photo { display: flex; align-items: center; gap: 5px; }
.bubble-photo svg { flex: none; }

/* 3 · job card */
.job-screen {
  background: #fff;
  border: 1px solid rgba(18,32,43,0.12);
  padding: 10px;
  gap: 7px;
}
.job-head { display: flex; align-items: center; justify-content: space-between; gap: 6px; }
.job-name { font-family: var(--font-heading); font-size: 13px; font-weight: 600; }
.job-badge {
  background: #fdeaea; color: #b3272c;
  font-size: 8px; font-weight: 600;
  padding: 2px 6px; border-radius: 999px; white-space: nowrap;
}
.job-fields { display: flex; flex-direction: column; gap: 10px; }
.job-key { font-size: 8px; text-transform: uppercase; letter-spacing: 0.06em; opacity: 0.45; }
.job-val { font-size: 10px; line-height: 1.3; }
.job-foot { margin-top: auto; display: flex; flex-direction: column; gap: 6px; }
.job-photo {
  display: flex; align-items: center; gap: 5px;
  background: var(--teal-tint); color: var(--teal-dark);
  border-radius: 8px; padding: 5px 7px;
  font-size: 9px; font-weight: 600;
}
.job-cta {
  background: var(--navy); color: #fff;
  border-radius: 8px; padding: 6px;
  text-align: center; font-size: 9.5px; font-weight: 600;
}

/* — dark panels (problem / trust) — */
.panel {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}
.panel-dark { background: var(--navy); color: #fff; }

/* — problem panel — */
.problem-panel {
  min-height: 460px;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.problem-copy { padding: 48px; max-width: 640px; flex: 1 1 380px; }
.eyebrow-heading { font-family: var(--font-heading); font-size: 22px; font-weight: 500; margin: 0 0 4px; opacity: 0.85; }
.stat-number { font-family: var(--font-heading); font-size: 44px; font-weight: 600; margin-bottom: 16px; }
.panel-caption { font-size: 15px; opacity: 0.85; max-width: 460px; margin: 0 0 20px; }
.bullet-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.bullet-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; }
.bullet-list li::before { content: "—"; color: var(--teal); font-weight: 700; }

.problem-aside {
  flex: 0 1 320px;
  min-width: 260px;
  padding: 40px 48px 0 0;
  display: flex;
  align-items: center;
}
.google-card {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 16px;
  display: flex; flex-direction: column; gap: 10px;
}
.google-label {
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
}
.google-search {
  display: flex; align-items: center; gap: 8px;
  background: #fff; border-radius: 999px; padding: 8px 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.google-search svg { flex: none; }
.google-query { font-size: 12.5px; color: var(--navy); font-weight: 500; }
.caret { width: 1.5px; height: 14px; background: #1a73e8; animation: caretblink 1.1s step-end infinite; }
@keyframes caretblink { 50% { opacity: 0; } }
.google-results { font-size: 10px; color: rgba(255,255,255,0.4); }
.google-row {
  display: flex; justify-content: space-between; gap: 8px; align-items: center;
  padding: 10px 12px;
  background: rgba(255,255,255,0.09);
  border-radius: 10px;
}
.google-row-dim { background: rgba(255,255,255,0.04); opacity: 0.65; }
.google-row-title { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.95); }
.google-row-dim .google-row-title { color: rgba(255,255,255,0.85); }
.google-row-sub { font-size: 10px; color: rgba(255,255,255,0.5); }
.google-row-dim .google-row-sub { color: rgba(255,255,255,0.45); }
.tag {
  font-size: 9px; font-weight: 700;
  padding: 3px 8px; border-radius: 999px; white-space: nowrap;
}
.tag-red { color: var(--red-soft); background: rgba(229,72,77,0.18); }
.tag-green { color: var(--teal-bright); background: rgba(31,138,122,0.3); }

/* — call timeline — */
.timeline-block { flex: 1 1 100%; padding: 0 48px 44px; }
.timeline-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; margin-bottom: 20px; flex-wrap: wrap;
}
.timeline-title {
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
}
.timeline-legend { display: flex; gap: 16px; align-items: center; }
.legend-item { display: flex; gap: 6px; align-items: center; font-size: 11px; color: rgba(255,255,255,0.6); }
.legend-dot { width: 8px; height: 8px; border-radius: 50%; }
.legend-missed { background: var(--red); }
.legend-answered { background: var(--teal); }
.timeline-track { position: relative; height: 44px; margin: 0 10px; }
.timeline-track::before {
  content: "";
  position: absolute; left: 0; right: 0; top: 26px;
  height: 2px; border-radius: 2px;
  background: rgba(255,255,255,0.15);
}
.timeline-point {
  position: absolute; top: 0;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.timeline-time {
  font-size: 10.5px; color: rgba(255,255,255,0.55);
  font-variant-numeric: tabular-nums; white-space: nowrap;
}
.timeline-dot { width: 12px; height: 12px; border-radius: 50%; border: 2px solid var(--navy); }
.timeline-hours {
  display: flex; justify-content: space-between;
  margin: 12px 10px 0;
  font-size: 10px; color: rgba(255,255,255,0.35);
  font-variant-numeric: tabular-nums;
}

/* — trust panel — */
.trust-panel {
  padding: 44px 48px;
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  align-items: stretch;
}
.trust-main {
  flex: 1 1 380px;
  display: flex; flex-direction: column; justify-content: space-between; gap: 32px;
}
.trust-intro { display: flex; flex-direction: column; gap: 14px; }
.trust-heading { font-size: 28px; font-weight: 600; margin: 0; max-width: 480px; }
.trust-body { font-size: 15px; line-height: 1.55; opacity: 0.75; max-width: 440px; margin: 0; }
.stat-row {
  display: flex; gap: 40px; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 20px;
}
.stat-value { font-family: var(--font-heading); font-size: 22px; font-weight: 700; }
.stat-label { font-size: 12px; opacity: 0.7; }

.trust-callout {
  flex: 1 1 320px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 28px;
  display: flex; flex-direction: column; gap: 16px; justify-content: center;
}
.callout-title { font-family: var(--font-heading); font-size: 19px; font-weight: 600; }
.callout-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.callout-list li { display: flex; gap: 9px; align-items: flex-start; font-size: 14px; line-height: 1.45; }
.callout-list svg { flex: none; margin-top: 2px; }
.trust-callout .btn { align-self: flex-start; margin-top: 4px; }

/* — grids of cards (how / benefits) — */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.card {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}
.card-num {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--teal-tint); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 700;
  margin-bottom: 16px;
}
.card-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--teal-tint);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.card-title { font-family: var(--font-heading); font-weight: 600; font-size: 17px; margin-bottom: 6px; }
.card-body { font-size: 13px; opacity: 0.7; line-height: 1.5; margin: 0; }
#benefit-cards .card { min-height: 160px; }
#benefit-cards .card-title { font-size: 16px; }

/* — FAQ — */
.faq-section .section-heading.center { font-size: 28px; margin-bottom: 24px; }
.faq-item {
  background: #fff;
  border-radius: 16px;
  padding: 18px 22px;
  margin-bottom: 12px;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .chev { flex: none; transition: transform 0.2s; }
.faq-item[open] .chev { transform: rotate(180deg); }
.faq-answer { margin: 12px 0 0; opacity: 0.7; font-size: 14px; line-height: 1.5; }

/* — final CTA — */
.cta-panel {
  background: var(--teal);
  border-radius: 24px;
  padding: 56px;
  text-align: center;
  color: #fff;
}
.cta-panel h2 { font-size: 32px; max-width: 600px; margin: 0 auto 12px; line-height: 1.2; }
.cta-line { display: block; }
.cta-panel p { max-width: 460px; margin: 0 auto 24px; opacity: 0.9; font-size: 15px; }

.waitlist-form { max-width: 440px; margin: 0 auto; }
.waitlist-row { display: flex; gap: 10px; }
.waitlist-input {
  flex: 1;
  min-width: 0;
  padding: 13px 18px;
  border-radius: 999px;
  border: none;
  font: inherit;
  font-size: 15px;
  color: var(--navy);
  background: #fff;
}
.waitlist-input:focus-visible { outline: 2px solid var(--navy); outline-offset: 2px; }
.waitlist-input.invalid { outline: 2px solid #ffdada; }
.form-status {
  margin: 12px 0 0;
  font-size: 13px;
  min-height: 18px;
}
.form-status.is-error { color: #ffe1e1; }
.form-status.is-success { color: #ecfff9; font-weight: 600; }
.form-consent { margin: 4px 0 0; font-size: 12px; line-height: 1.45; opacity: 0.75; }

/* honeypot — off-screen rather than display:none, which bots skip */
.hp-field {
  position: absolute; left: -9999px; top: auto;
  width: 1px; height: 1px; overflow: hidden;
}

/* — footer — */
.site-footer { padding: 0 0 48px; }
.footer-definition { max-width: 680px; font-size: 13px; opacity: 0.55; margin: 0; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  margin-top: 24px; padding-top: 20px;
  border-top: 1px solid rgba(18,32,43,0.1);
}
.footer-nav { display: flex; gap: 20px; }
.footer-nav a { font-size: 13px; color: var(--navy); opacity: 0.6; text-decoration: none; }
.footer-nav a:hover { opacity: 1; }
.copyright { font-size: 12px; opacity: 0.5; }

/* — responsive — */
@media (max-width: 1080px) {
  .phone-stack { transform: scale(0.9); transform-origin: center; }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .phone-stack { height: auto; padding: 24px 0; transform: none; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .problem-copy { padding: 40px 32px 0; flex-basis: 100%; }
  .problem-aside { padding: 24px 32px 0; flex-basis: 100%; }
  .timeline-block { padding: 24px 32px 40px; }
  .trust-panel { padding: 32px; }
}

@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
  .header-inner { flex-wrap: wrap; gap: 12px; }
  .main-nav { order: 3; width: 100%; margin-left: 0; justify-content: center; }
  .hero-copy h1 { font-size: 38px; }
  .phone-stack { flex-wrap: wrap; gap: 16px; }
  .phone-side { margin-top: 0; }
  .grid-4 { grid-template-columns: 1fr; }
  .section-heading, .section-heading.center { font-size: 26px; }
  .problem-copy, .problem-aside { padding-left: 24px; padding-right: 24px; }
  .timeline-block { padding: 24px 24px 32px; }
  /* the per-call times collide at this width — the hour axis carries the story */
  .timeline-time { display: none; }
  .timeline-point { top: 20px; }
  .timeline-hours span:nth-child(even) { display: none; }
  .trust-panel { padding: 28px 24px; }
  .cta-panel { padding: 36px 24px; }
  .cta-panel h2 { font-size: 26px; }
  .waitlist-row { flex-direction: column; }
}
