/* ═══════════════════════════════════════════════════════════
   Lead Relay — Dental Intake Systems
   Design System: Dark Clinical Professional
   Fonts: Libre Baskerville (headings) · Figtree (body)
   Accent: Dental Teal #0DB87A
   ═══════════════════════════════════════════════════════════ */

/* ─── Custom Properties ─────────────────────────────────── */
:root {
  --bg:          #080C12;
  --bg2:         #0D1520;
  --bg3:         #111D2C;
  --bg4:         #162539;
  --border:      rgba(255, 255, 255, 0.07);
  --border-med:  rgba(255, 255, 255, 0.12);
  --accent:      #0DB87A;
  --accent-dim:  rgba(13, 184, 122, 0.1);
  --accent-glow: rgba(13, 184, 122, 0.2);
  --accent-hover:#10D48D;
  --urgent:      #F4633A;
  --urgent-dim:  rgba(244, 99, 58, 0.1);
  --treatment:   #4F9CF9;
  --treatment-dim: rgba(79, 156, 249, 0.1);
  --text-1:      #E4EDF5;
  --text-2:      #8A9EBA;
  --text-3:      #4E6480;
  --font-head:   'Libre Baskerville', Georgia, serif;
  --font-body:   'Figtree', system-ui, sans-serif;
  --radius:      10px;
  --radius-lg:   16px;
  --shadow:      0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg:   0 12px 48px rgba(0, 0, 0, 0.5);
  --transition:  0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--text-1);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; background: none; border: none; font: inherit; }

/* ─── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.2;
  color: var(--text-1);
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 700; }
h2 { font-size: clamp(1.65rem, 3.5vw, 2.5rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }

p { color: var(--text-2); line-height: 1.75; }

/* ─── Container ─────────────────────────────────────────── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ─── Eyebrow ────────────────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.4rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: background var(--transition), border-color var(--transition),
              color var(--transition), transform var(--transition),
              box-shadow var(--transition);
  white-space: nowrap;
}

.btn:active { transform: scale(0.97); }

.btn--accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn--accent:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  box-shadow: 0 0 24px var(--accent-glow);
}

.btn--ghost {
  background: transparent;
  color: var(--text-1);
  border-color: var(--border-med);
}
.btn--ghost:hover {
  border-color: var(--text-2);
  background: rgba(255,255,255,0.04);
}

.btn--lg { padding: 0.9rem 1.8rem; font-size: 1rem; }
.btn--full { width: 100%; }

/* ─── Section Base ───────────────────────────────────────── */
.section {
  padding: 6rem 0;
}
.section--dark {
  background: var(--bg2);
}
.section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}
.section__header h2 { margin-bottom: 1rem; }
.section__sub {
  font-size: 1.05rem;
  color: var(--text-2);
}

/* ─── Reveal Animations ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal--delay { transition-delay: 0.15s; }
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── NAV ────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background var(--transition), border-color var(--transition),
              box-shadow var(--transition);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(8, 12, 18, 0.94);
  backdrop-filter: blur(16px);
  border-color: var(--border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav__inner {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 2rem;
}
.nav__logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-1);
  flex-shrink: 0;
}
.nav__logo span { color: var(--accent); }

.nav__links {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}
.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-2);
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--text-1); }

.nav__cta { margin-left: 0.5rem; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 0.5rem;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-2);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 1rem 1.5rem 1.5rem;
}
.nav__mobile a {
  padding: 0.8rem 0;
  font-size: 1rem;
  color: var(--text-2);
  border-bottom: 1px solid var(--border);
  font-weight: 500;
}
.nav__mobile a:last-child { border-bottom: none; margin-top: 0.5rem; }
.nav__mobile.is-open { display: flex; }

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 8rem 0 5rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(13, 184, 122, 0.07) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 20% 60%, rgba(13, 184, 122, 0.04) 0%, transparent 60%);
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero__copy { max-width: 560px; }
.hero__headline {
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.hero__headline em {
  font-style: italic;
  color: var(--accent);
}
.hero__sub {
  font-size: 1.1rem;
  color: var(--text-2);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.hero__note {
  font-size: 0.8rem;
  color: var(--text-3);
}

/* ─── Chat Frame (Hero Visual) ───────────────────────────── */
.hero__visual {
  display: flex;
  justify-content: center;
}
.chat-frame {
  width: 100%;
  max-width: 420px;
  background: var(--bg3);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-med);
  box-shadow: var(--shadow-lg), 0 0 60px rgba(13, 184, 122, 0.06);
  overflow: hidden;
}
.chat-frame__bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--bg4);
  border-bottom: 1px solid var(--border);
}
.chat-frame__dots {
  display: flex;
  gap: 5px;
}
.chat-frame__dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-med);
}
.chat-frame__dots span:nth-child(1) { background: #FF5F57; }
.chat-frame__dots span:nth-child(2) { background: #FEBC2E; }
.chat-frame__dots span:nth-child(3) { background: #28C840; }

.chat-frame__label {
  font-size: 0.78rem;
  color: var(--text-3);
  font-family: 'Courier New', monospace;
}
.chat-frame__body { padding: 0; }
.chat-frame__disclaimer {
  padding: 0.5rem 1rem;
  font-size: 0.7rem;
  color: var(--text-3);
  text-align: center;
  background: var(--bg4);
  border-top: 1px solid var(--border);
}

/* ─── Chat Widget ─────────────────────────────────────────── */
.chat-widget {
  display: flex;
  flex-direction: column;
  height: 380px;
}
.chat-widget__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
}
.chat-widget__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.chat-widget__name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-1);
}
.chat-widget__status {
  font-size: 0.72rem;
  color: var(--text-3);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.chat-widget__messages {
  flex: 1;
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  overflow-y: auto;
  scrollbar-width: none;
}
.chat-widget__messages::-webkit-scrollbar { display: none; }

.chat-msg {
  padding: 0.55rem 0.8rem;
  border-radius: 10px;
  font-size: 0.8rem;
  line-height: 1.45;
  max-width: 88%;
}
.chat-msg--bot {
  background: var(--bg4);
  color: var(--text-1);
  border-bottom-left-radius: 3px;
  align-self: flex-start;
}
.chat-msg--user {
  background: var(--accent);
  color: #fff;
  border-bottom-right-radius: 3px;
  align-self: flex-end;
}

.chat-opts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem;
  align-self: flex-start;
  width: 100%;
  max-width: 95%;
}
.chat-opt {
  padding: 0.45rem 0.6rem;
  border: 1px solid var(--border-med);
  border-radius: 8px;
  font-size: 0.72rem;
  color: var(--text-2);
  text-align: left;
  transition: border-color var(--transition), color var(--transition);
  line-height: 1.3;
}
.chat-opt:hover { border-color: var(--accent); color: var(--accent); }
.chat-opt--active {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}

.chat-typing {
  display: flex;
  gap: 4px;
  padding: 0.5rem 0.75rem;
  background: var(--bg4);
  border-radius: 10px;
  border-bottom-left-radius: 3px;
  align-self: flex-start;
}
.chat-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-3);
  animation: typing-dot 1.4s ease-in-out infinite;
}
.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing-dot {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-5px); opacity: 1; }
}

.chat-widget__input {
  padding: 0.6rem 0.75rem;
  background: var(--bg4);
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--text-3);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

/* ─── TRUST STRIP ─────────────────────────────────────────── */
.trust-strip {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}
.trust-strip .container {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--text-3);
}
.trust-strip__icon {
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
}
.trust-strip__stack {
  margin-left: auto;
  color: var(--text-3);
  font-size: 0.78rem;
  white-space: nowrap;
}

/* ─── PROBLEM ─────────────────────────────────────────────── */
.problem__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.problem-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  transition: border-color var(--transition);
}
.problem-card:hover { border-color: var(--border-med); }
.problem-card__icon {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}
.problem-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.problem-card p { font-size: 0.88rem; }

/* ─── DEMO ────────────────────────────────────────────────── */
.demo__layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.demo__embed-placeholder {
  background: var(--bg3);
  border: 2px dashed var(--border-med);
  border-radius: var(--radius-lg);
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.demo__embed-inner {
  text-align: center;
  padding: 2rem;
}
.demo__embed-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.demo__embed-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 0.5rem;
}
.demo__embed-note { font-size: 0.88rem; margin-bottom: 0.75rem; }
.demo__embed-instructions {
  font-size: 0.78rem;
  color: var(--text-3);
}
.demo__embed-instructions code {
  background: var(--bg4);
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  font-size: 0.75rem;
  color: var(--accent);
}
.demo__disclaimer {
  font-size: 0.75rem;
  color: var(--text-3);
  text-align: center;
  margin-top: 0.75rem;
}

.demo__info-title {
  margin-bottom: 1.25rem;
}
.demo__steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.demo__steps li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.demo__steps strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-1);
  margin-bottom: 0.2rem;
}
.demo__steps span {
  font-size: 0.82rem;
  color: var(--text-2);
}

/* ─── LEAD LOG ────────────────────────────────────────────── */
.leadlog {
  background: var(--bg2);
  border: 1px solid var(--border-med);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2rem;
}
.leadlog__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: var(--bg3);
  border-bottom: 1px solid var(--border);
}
.leadlog__title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-1);
}
.leadlog__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}
.leadlog__meta {
  font-size: 0.72rem;
  color: var(--text-3);
}
.leadlog__scroll {
  overflow-x: auto;
}
.leadlog__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
  min-width: 900px;
}
.leadlog__table thead tr {
  background: var(--bg3);
  border-bottom: 1px solid var(--border);
}
.leadlog__table th {
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-3);
  white-space: nowrap;
}
.leadlog__table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.leadlog__table tbody tr:last-child { border-bottom: none; }
.leadlog__table tbody tr:hover { background: rgba(255,255,255,0.02); }
.leadlog__table td {
  padding: 0.85rem 1rem;
  color: var(--text-2);
  vertical-align: top;
}
.td--time { color: var(--text-3); white-space: nowrap; font-size: 0.78rem; }
.td--name { color: var(--text-1); font-weight: 600; white-space: nowrap; }
.td--notes { max-width: 220px; font-size: 0.8rem; line-height: 1.4; }

/* Tags & Status */
.tag {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
}
.tag--urgent { background: var(--urgent-dim); color: var(--urgent); }
.tag--routine { background: var(--accent-dim); color: var(--accent); }
.tag--treatment { background: var(--treatment-dim); color: var(--treatment); }

.urgency {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
}
.urgency--high { background: var(--urgent-dim); color: var(--urgent); }
.urgency--med { background: rgba(250, 204, 21, 0.1); color: #FACC15; }
.urgency--low { background: rgba(100, 116, 139, 0.15); color: var(--text-3); }

.status {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
}
.status--pending { background: rgba(250, 204, 21, 0.1); color: #FACC15; }
.status--done { background: var(--accent-dim); color: var(--accent); }

.leadlog__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: var(--bg3);
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--text-3);
}
.leadlog__disclaimer { color: var(--text-3); }

.proof__note {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.proof__note p { font-size: 0.88rem; }

/* ─── HOW IT WORKS ─────────────────────────────────────────── */
.hiw__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.hiw__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hiw-step {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.hiw-step:last-child { border-bottom: none; }
.hiw-step__num {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
  width: 32px;
  padding-top: 0.1rem;
}
.hiw-step h4 { margin-bottom: 0.35rem; }
.hiw-step p { font-size: 0.88rem; }

.hiw__timeline-title { margin-bottom: 1.25rem; }
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.timeline-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.timeline-item--last { border-bottom: none; }
.timeline-day {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
  min-width: 62px;
  padding-top: 0.05rem;
}
.timeline-task {
  font-size: 0.85rem;
  color: var(--text-2);
  line-height: 1.5;
}
.timeline__guarantee {
  margin-top: 1.25rem;
  padding: 1.1rem 1.25rem;
  background: var(--accent-dim);
  border: 1px solid rgba(13, 184, 122, 0.2);
  border-radius: var(--radius);
  font-size: 0.85rem;
  color: var(--text-2);
  line-height: 1.6;
}
.timeline__guarantee strong { color: var(--accent); }

/* ─── CAPTURES ────────────────────────────────────────────── */
.captures__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.captures__col {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
}
.captures__col h3 {
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.captures__list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.captures__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.5;
}
.captures__icon { flex-shrink: 0; }
.captures__note {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: var(--bg3);
  border-radius: var(--radius);
  font-size: 0.78rem;
  color: var(--text-3);
  line-height: 1.5;
}

/* ─── OFFER ───────────────────────────────────────────────── */
.offer__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.offer__includes {
  background: var(--bg3);
  border: 1px solid var(--border-med);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.offer__includes h3 { margin-bottom: 1.25rem; }
.offer__list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.offer__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-2);
}
.offer__list li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.offer__fit {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.fit-block {
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--border);
}
.fit-block--yes {
  background: rgba(13, 184, 122, 0.05);
  border-color: rgba(13, 184, 122, 0.2);
}
.fit-block--no {
  background: rgba(244, 99, 58, 0.04);
  border-color: rgba(244, 99, 58, 0.15);
}
.fit-block h3 {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.fit-block--yes h3 { color: var(--accent); }
.fit-block--no h3 { color: var(--urgent); }
.fit-block ul {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.fit-block li {
  font-size: 0.85rem;
  color: var(--text-2);
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}
.fit-block--yes li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; }
.fit-block--no li::before { content: '✕'; color: var(--urgent); font-weight: 700; flex-shrink: 0; }

/* ─── PRICING ─────────────────────────────────────────────── */
.pricing__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 860px;
  margin: 0 auto 2rem;
}
.pricing-card {
  background: var(--bg2);
  border: 1px solid var(--border-med);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.pricing-card--featured {
  border-color: var(--accent);
  background: linear-gradient(160deg, rgba(13, 184, 122, 0.06) 0%, var(--bg2) 50%);
  box-shadow: 0 0 40px rgba(13, 184, 122, 0.08);
}
.pricing-card__badge {
  position: absolute;
  top: -1px;
  right: 1.5rem;
  background: var(--accent);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 0 0 8px 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.pricing-card__name {
  font-size: 1.2rem;
  padding-top: 0.5rem;
}
.pricing-card__sub {
  font-size: 0.85rem;
  line-height: 1.6;
}
.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}
.price-amount {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-1);
}
.price-label {
  font-size: 0.82rem;
  color: var(--text-3);
}
.pricing-card__monthly {
  font-size: 0.88rem;
  color: var(--accent);
  font-weight: 600;
  margin-top: -0.25rem;
}
.pricing-card__monthly span { color: var(--text-3); font-weight: 400; }
.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}
.pricing-card__features li {
  font-size: 0.85rem;
  color: var(--text-2);
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
}
.pricing-card__features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing__note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-3);
  max-width: 500px;
  margin: 0 auto;
}

/* ─── FAQ ─────────────────────────────────────────────────── */
.faq__list {
  max-width: 740px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-item__q {
  width: 100%;
  text-align: left;
  padding: 1.2rem 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item__q::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--text-3);
  flex-shrink: 0;
  transition: transform var(--transition), color var(--transition);
}
.faq-item.is-open .faq-item__q::after {
  transform: rotate(45deg);
  color: var(--accent);
}
.faq-item__q:hover { color: var(--accent); }
.faq-item__a {
  display: none;
  padding: 0 0 1.25rem;
}
.faq-item.is-open .faq-item__a { display: block; }
.faq-item__a p { font-size: 0.9rem; line-height: 1.75; }

/* ─── FOUNDER ─────────────────────────────────────────────── */
.founder {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.founder__tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.founder__quote {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-1);
  line-height: 1.65;
  margin-bottom: 2rem;
  position: relative;
}
.founder__quote::before {
  content: '"';
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.3;
  position: absolute;
  top: -1.5rem;
  left: -0.5rem;
  font-style: normal;
  line-height: 1;
}
.founder__sig {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.founder__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.founder__name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-1);
}
.founder__role {
  font-size: 0.78rem;
  color: var(--text-3);
}

/* ─── CONTACT ─────────────────────────────────────────────── */
.contact__layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}
.contact__copy h2 { margin-bottom: 1rem; }
.contact__copy p { font-size: 0.95rem; margin-bottom: 1.5rem; }
.contact__bullets {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.contact__bullets li {
  font-size: 0.88rem;
  color: var(--text-2);
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}
.contact__bullets li::before {
  content: '→';
  color: var(--accent);
  flex-shrink: 0;
}

.contact__form-wrap {
  background: var(--bg3);
  border: 1px solid var(--border-med);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-2);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg2);
  border: 1px solid var(--border-med);
  border-radius: var(--radius);
  padding: 0.7rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-1);
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-3); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}
.form-group textarea { resize: vertical; }

.form__note {
  font-size: 0.78rem;
  color: var(--text-3);
  text-align: center;
}
.form__note p { font-size: 0.78rem; }

.form__success {
  text-align: center;
  padding: 2rem;
}
.form__success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 2px solid var(--accent);
  color: var(--accent);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.form__success h3 {
  margin-bottom: 0.5rem;
  font-family: var(--font-head);
}
.form__success p { font-size: 0.9rem; }

/* ─── FOOTER ──────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding-top: 3rem;
  padding-bottom: 1.5rem;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.footer__brand p {
  font-size: 0.85rem;
  margin-top: 0.5rem;
}
.footer__contact {
  color: var(--accent) !important;
  font-size: 0.85rem !important;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  text-align: right;
}
.footer__links a {
  font-size: 0.85rem;
  color: var(--text-3);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--accent); }
.footer__bottom {
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer__bottom p {
  font-size: 0.78rem;
  color: var(--text-3);
}
.footer__disclaimer {
  max-width: 500px;
  text-align: right;
  line-height: 1.6 !important;
}

/* ─── STICKY CTA (mobile) ─────────────────────────────────── */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem 1rem;
  background: rgba(8, 12, 18, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  z-index: 99;
}

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero__visual { display: none; }
  .hiw__layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .captures__grid { grid-template-columns: 1fr 1fr; }
  .problem__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 4rem 0; }
  .hero { padding: 6rem 0 4rem; min-height: auto; }
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }

  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  .problem__grid { grid-template-columns: 1fr; }
  .demo__layout { grid-template-columns: 1fr; }
  .demo__embed-placeholder { min-height: 320px; }
  .captures__grid { grid-template-columns: 1fr; }
  .offer__layout { grid-template-columns: 1fr; }
  .pricing__grid { grid-template-columns: 1fr; max-width: 440px; }
  .contact__layout { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; gap: 1.5rem; }
  .footer__links { text-align: left; }
  .footer__bottom { flex-direction: column; }
  .footer__disclaimer { text-align: left; }
  .trust-strip__stack { display: none; }
  .sticky-cta { display: block; }

  .hiw__steps { gap: 0; }
}

@media (max-width: 480px) {
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; text-align: center; }
  .chat-frame { max-width: 100%; }
}
