/* FONTS */
@font-face {
  font-family: "Public Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/public-sans-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Public Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/public-sans-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Young Serif";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/young-serif-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Young Serif";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/young-serif-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* TOKENS */
:root {
  --forest: #24402f;
  --forest-deep: #1b3225;
  --brick: #b55d3a;
  --brick-ink: #a3522f;
  --cream: #f3eee3;
  --paper: #fbf8f1;
  --ink: #1f211c;
  --ink-soft: #2c2e28;
  --line: #ddd5c4;
  --text-2: #4a4b44;
  --text-3: #6d6a5f;
  --sage: #8fa596;
  --sage-light: #b9c8bd;
  --on-forest: #d4dccd;
  --serif: "Young Serif", Georgia, "Times New Roman", serif;
  --sans: "Public Sans", "Helvetica Neue", Arial, sans-serif;
  --gutter: clamp(16px, 3.4vw, 48px);
  --radius-xl: clamp(20px, 2vw, 28px);
  --space-section: clamp(72px, 6vw, 88px);
  --space-half: calc(var(--space-section) / 2);
  --space-head: clamp(32px, 3.4vw, 48px);
  --space-stack: 24px;
  --card-pad: clamp(20px, 3.9vw, 56px);
  --card-pad-top: clamp(32px, 3.9vw, 56px);
  --card-gap: 56px;
  --panel-pad: 24px;
}

/* BASE */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-bottom: 120px; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
h1, h2, h3, p { margin: 0; text-wrap: pretty; }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; letter-spacing: -0.02em; }
h1, h2 { line-height: 1.1; }
h3 { line-height: 1.25; }
img, svg { display: block; max-width: 100%; }
[hidden] { display: none !important; }
.nowrap { white-space: nowrap; }
a { color: var(--forest); }
a:hover { color: var(--brick-ink); }
:focus-visible { outline: 2px solid var(--brick); outline-offset: 3px; border-radius: 4px; }
.hero-card :focus-visible, .problem-card :focus-visible, .check-cta-card :focus-visible, .demo-hero-card :focus-visible, .site-footer :focus-visible { outline-color: var(--cream); }
.check-inline :focus-visible { outline-color: var(--brick-ink); }
main > section:last-child > .wrap { padding-bottom: var(--space-section); }
.wrap { max-width: 1440px; margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.eyebrow { font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.skip { position: absolute; left: -9999px; top: 8px; background: var(--forest); color: var(--cream); padding: 8px 14px; border-radius: 999px; z-index: 100; }
.skip:focus { left: 8px; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-forest { background: var(--forest); color: var(--cream); }
.btn-forest:hover { background: var(--brick-ink); color: var(--paper); }
.btn-cream { background: var(--cream); color: var(--forest); }
.btn-cream:hover { background: var(--paper); color: var(--brick-ink); }
.btn-ghost { border: 1.5px solid var(--sage); color: var(--cream); font-weight: 500; padding: 0 24px; }
.btn-ghost:hover { border-color: var(--cream); color: var(--cream); background: rgba(243, 238, 227, 0.08); }
.btn-sm { min-height: 46px; padding: 0 22px; font-size: 15px; }

/* SAMPLE TAG */
.sample { font-size: 11px; font-weight: 600; letter-spacing: 0.06em; color: var(--brick-ink); border: 1px solid var(--brick-ink); border-radius: 999px; padding: 3px 8px; line-height: 1.2; }

.hero-panel .sample, .phone-screen .sample { color: #e8b9a5; border-color: #9c6f5c; }

/* HEADER */
.site-header .wrap { height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.site-header .logo { display: flex; align-items: center; min-height: 44px; }
.site-header .logo img { height: 38px; width: auto; }

/* HERO */
.hero .wrap { padding-top: 16px; padding-bottom: var(--space-half); }
.hero-card {
  border-radius: var(--radius-xl);
  background: var(--forest);
  color: var(--cream);
  padding: var(--card-pad-top) var(--card-pad) var(--card-pad);
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: var(--card-gap);
  align-items: center;
}
.hero-copy { display: flex; flex-direction: column; gap: var(--space-stack); }
.hero-copy .eyebrow { color: var(--sage-light); }
.hero-copy h1 { font-size: clamp(40px, 4.2vw, 60px); line-height: 1.05; }
.hero-copy p { font-size: clamp(17px, 1.35vw, 19px); color: var(--on-forest); max-width: 560px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-visual { position: relative; min-height: 460px; }
.hero-panel {
  position: absolute;
  inset: 0 0 80px 0;
  border-radius: 20px;
  background: var(--forest-deep);
  overflow: hidden;
  padding: var(--panel-pad);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.call-log { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.call-log li { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 14px; border-radius: 12px; background: rgba(243, 238, 227, 0.05); font-size: 14px; color: var(--on-forest); }
.call-log li span { white-space: nowrap; }
.call-log li span:nth-child(2) { flex: 1; overflow: hidden; text-overflow: ellipsis; }
.call-log .time { color: var(--sage); font-variant-numeric: tabular-nums; }
.call-log .tag { font-size: 12px; font-weight: 600; padding: 2px 8px; border-radius: 999px; }
.call-log .tag-booked { color: var(--cream); background: rgba(143, 165, 150, 0.3); }
.panel-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; color: var(--sage); font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.booking-card {
  position: absolute;
  left: -40px;
  bottom: 0;
  width: min(380px, 100%);
  background: var(--paper);
  color: var(--ink);
  border-radius: 16px;
  padding: var(--panel-pad);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transform: rotate(-2deg);
  box-shadow: 0 18px 40px rgba(15, 30, 20, 0.28);
}
.booking-top { display: flex; justify-content: space-between; align-items: center; }
.booking-brand { display: flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--forest); }
.booking-brand img { width: 30px; height: 30px; border-radius: 8px; box-shadow: 0 0 0 1px var(--line); }
.booking-title { font-family: var(--serif); font-size: 26px; line-height: 1.15; }
.booking-rule { height: 1px; background: var(--line); }
.booking-rows { display: flex; flex-direction: column; gap: 8px; font-size: 14px; color: var(--text-2); }
.booking-rows div { display: flex; justify-content: space-between; gap: 12px; }
.booking-rows span:last-child { color: var(--ink); font-weight: 500; }

/* SETUP */
.setup .wrap { padding-block: var(--space-half); display: flex; flex-direction: column; align-items: center; gap: var(--space-stack); text-align: center; }
.setup h2 { font-size: clamp(34px, 3.6vw, 52px); }
.setup-list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 18px; font-size: clamp(18px, 1.4vw, 20px); font-weight: 600; color: var(--forest); }
.setup-list li { display: flex; align-items: center; gap: 18px; }
.setup-list li + li::before { content: ""; width: 6px; height: 6px; border-radius: 999px; background: var(--brick); }

/* PROBLEM */
.problem .wrap { padding-block: var(--space-half); }
.problem-card {
  border-radius: var(--radius-xl);
  background: var(--forest);
  color: var(--cream);
  padding: var(--card-pad-top) var(--card-pad) var(--card-pad);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--card-gap);
}
.problem-copy { display: flex; flex-direction: column; justify-content: space-between; gap: 40px; }
.problem-copy .eyebrow { color: #b9c8bd; }
.pain-words { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; font-family: var(--serif); font-size: clamp(31px, 3.75vw, 54px); line-height: 1.12; letter-spacing: -0.02em; }
.pain-words li { color: #6e8a77; transition: color 0.35s ease; cursor: default; }
.pain-words li.is-on { color: var(--cream); }
.pain-words button { padding: 5px 0; margin: -5px 0; border: 0; background: none; font: inherit; letter-spacing: inherit; color: inherit; text-align: left; cursor: pointer; }
.pain-detail { font-size: 18px; color: var(--on-forest); max-width: 480px; min-height: 6.6em; }
.problem-visual { border-radius: 20px; background: #1b3225; display: flex; min-height: 528px; }
.phone-screen { flex: 1; display: flex; flex-direction: column; padding: 32px 36px 20px; }
.phone-screen .panel-head { margin: 0; padding-bottom: 14px; font-size: 13px; color: #8fa596; }
.missed { flex: 1; display: flex; align-items: center; gap: 14px; border-top: 1px solid rgba(243, 238, 227, 0.1); }
.missed-icon { width: 44px; height: 44px; border-radius: 999px; background: rgba(181, 93, 58, 0.22); display: flex; align-items: center; justify-content: center; flex: none; }
.missed-icon svg { width: 20px; height: 20px; }
.missed-body { display: flex; flex-direction: column; font-size: 16px; line-height: 1.4; }
.missed-body strong { font-weight: 600; color: var(--cream); }
.missed-body span { color: #8fa596; }

/* STEPS */
.steps .wrap { padding-block: var(--space-half); display: flex; flex-direction: column; gap: var(--space-head); }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px 48px; flex-wrap: wrap; }
.section-head h2 { font-size: clamp(36px, 3.6vw, 52px); line-height: 1.08; }
.section-head p { font-size: 16px; color: var(--text-2); max-width: 440px; }

/* PROMISES */
.promises { margin-block: var(--space-half); background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.promises .wrap { padding-block: var(--space-section); display: grid; grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr); gap: var(--space-head) 96px; align-items: start; }

/* DEMO */
.demo-line { display: flex; flex-direction: column; gap: 6px; }
.demo-line .eyebrow { color: var(--text-3); letter-spacing: 0.06em; }
.demo-line a { font-family: var(--serif); font-size: clamp(30px, 2.8vw, 40px); text-decoration: none; }
.chat { background: var(--cream); border-radius: 20px; padding: var(--panel-pad); display: flex; flex-direction: column; gap: 14px; }
.chat-head { display: flex; justify-content: space-between; align-items: center; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.chat-head div { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 600; }
.chat-head img { width: 34px; height: 34px; border-radius: 9px; box-shadow: 0 0 0 1px var(--line); }
.bubble { max-width: 85%; padding: 12px 16px; font-size: 15px; line-height: 1.5; }
.bubble-in { align-self: flex-end; max-width: 80%; background: var(--forest); color: var(--cream); border-radius: 14px 14px 4px 14px; }
.bubble-out { align-self: flex-start; background: var(--paper); border-radius: 14px 14px 14px 4px; }
.chat-input { min-height: 48px; border-radius: 999px; background: var(--paper); border: 1px solid var(--line); display: flex; align-items: center; padding: 0 18px; font-size: 15px; color: var(--text-3); }

/* CLOSING */
.closing .wrap { padding-block: var(--space-half); display: flex; flex-direction: column; align-items: center; gap: var(--space-stack); text-align: center; }
.closing img { width: 56px; height: 56px; border-radius: 14px; box-shadow: 0 0 0 1px var(--line); }
.closing h2 { font-size: clamp(38px, 4.2vw, 60px); line-height: 1.05; max-width: 900px; }

/* FOOTER */
.site-footer { background: var(--forest); color: var(--on-forest); }
.site-footer .wrap { padding-top: 64px; padding-bottom: 32px; display: flex; flex-direction: column; gap: 48px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-brand img { width: 190px; height: auto; }
.footer-brand p { font-size: 15px; max-width: 280px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; font-size: 15px; font-style: normal; }
.footer-col .eyebrow { font-size: 12px; color: var(--sage-light); }
.footer-col a { color: var(--on-forest); text-decoration: none; }
.footer-col a:hover { color: var(--cream); text-decoration: underline; text-underline-offset: 3px; }
.footer-legal { font-size: 13px; color: var(--sage-light); border-top: 1px solid #3a5a47; padding-top: 20px; }

/* LEGAL PAGES */
.legal .wrap { max-width: 820px; padding-top: var(--space-half); padding-bottom: var(--space-section); }
.legal h1 { font-size: clamp(38px, 4vw, 54px); line-height: 1.08; margin-bottom: 12px; }
.legal .updated { color: var(--text-3); font-size: 15px; margin-bottom: 40px; }
.legal h2 { font-size: 28px; margin: 44px 0 14px; letter-spacing: -0.01em; }
.legal p, .legal li { font-size: 17px; color: var(--text-2); }
.legal p + p { margin-top: 14px; }
.legal ul { padding-left: 22px; margin: 14px 0; display: flex; flex-direction: column; gap: 8px; }
.legal strong { color: var(--ink); }
.legal .callout { background: var(--paper); border: 1px solid var(--line); border-radius: 16px; padding: var(--panel-pad); margin: 20px 0; }

/* PAGE HEAD */
.page-head .wrap { padding-block: var(--space-half); display: flex; flex-direction: column; gap: var(--space-stack); }
.page-head .eyebrow { color: var(--brick-ink); }
.page-head h1 { font-size: clamp(40px, 4.4vw, 64px); line-height: 1.05; max-width: 900px; }
.page-head p { font-size: clamp(17px, 1.35vw, 19px); color: var(--text-2); max-width: 640px; }

/* FAQ */
.faq .wrap { padding-block: var(--space-half); display: flex; flex-direction: column; gap: var(--space-head); }
.faq h2 { font-size: clamp(36px, 3.4vw, 48px); }
.faq { interpolate-size: allow-keywords; }
.faq-cols { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 64px; align-items: start; }
.faq-col { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid var(--line); }
.faq-col .faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary { list-style: none; display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; padding: 24px 0; cursor: pointer; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item h3 { font-size: 24px; line-height: 1.25; letter-spacing: -0.01em; }
.faq-icon { position: relative; flex: none; width: 30px; height: 30px; border-radius: 999px; box-shadow: inset 0 0 0 1px var(--line); transition: background-color 0.2s ease; }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 1.5px; border-radius: 1px; background: var(--forest); translate: -50% -50%; transition: rotate 0.25s ease; }
.faq-icon::after { rotate: 90deg; }
.faq-item[open] .faq-icon::after { rotate: 0deg; }
.faq-item summary:hover .faq-icon { background: var(--paper); }
.faq-item::details-content { block-size: 0; overflow: hidden; transition: block-size 0.3s ease, content-visibility 0.3s allow-discrete; }
.faq-item[open]::details-content { block-size: auto; }
.faq-answer { display: flex; flex-direction: column; gap: 10px; padding: 0 50px 24px 0; }
.faq-answer p { font-size: 16px; color: var(--text-2); }

/* DEMO PAGE */
.demo-hero .wrap { padding-block: var(--space-half); }
.demo-hero-card { border-radius: var(--radius-xl); background: var(--forest); color: var(--cream); padding: var(--card-pad-top) var(--card-pad) var(--card-pad); display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--card-gap); align-items: center; }
.demo-hero-copy { display: flex; flex-direction: column; gap: var(--space-stack); }
.demo-hero-copy .eyebrow { color: var(--sage-light); }
.demo-hero-copy .demo-line .eyebrow { letter-spacing: 0.06em; }
.demo-hero-copy h1, .demo-hero-copy h2 { font-size: clamp(40px, 4.2vw, 60px); line-height: 1.05; }
.demo-hero-copy > p { font-size: clamp(17px, 1.35vw, 19px); color: var(--on-forest); max-width: 520px; }
.demo-line { display: flex; flex-direction: column; gap: 8px; }
.demo-number { font-family: var(--serif); font-size: clamp(34px, 3vw, 44px); color: var(--cream); text-decoration: none; }
.demo-number:hover { color: var(--cream); text-decoration: underline; text-underline-offset: 6px; text-decoration-thickness: 2px; }
.try-list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.try-list li { min-height: 44px; padding: 0 16px; border-radius: 999px; border: 1px solid #5e7a67; display: flex; align-items: center; font-size: 15px; }
.demo-hero .chat { background: var(--paper); color: var(--ink); }
.demo-hero .bubble-out, .demo-hero .chat-input { background: var(--cream); }
.numbered { list-style: none; margin: 0; padding: 8px 0 0; display: flex; flex-direction: column; gap: 16px; }
.numbered li { display: flex; gap: 14px; }
.numbered span { width: 32px; height: 32px; border-radius: 999px; background: var(--brick-ink); color: var(--paper); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 600; flex: none; }
.numbered p { font-size: 16px; padding-top: 4px; }
.btn-outline { border: 1.5px solid var(--forest); color: var(--forest); }
.btn-outline:hover { background: var(--forest); color: var(--cream); }

/* STEP LINE */
.step-line { list-style: none; margin: 0; padding: 0; position: relative; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.step-line::before { content: ""; position: absolute; top: 19px; left: 20px; right: 0; height: 1px; background: #cfc6b3; }
.step-line::after { content: ""; position: absolute; top: 15px; right: 0; width: 9px; height: 9px; border-radius: 999px; background: var(--brick); }
.step-line li { position: relative; display: flex; flex-direction: column; gap: 10px; padding-right: 24px; }
.step-dot { width: 40px; height: 40px; border-radius: 999px; background: var(--cream); border: 1px solid var(--forest); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 16px; color: var(--forest); margin-bottom: 10px; flex: none; }
.step-line h3 { font-size: 24px; letter-spacing: -0.01em; }
.step-line p { font-size: 15px; color: var(--text-2); }

/* PROMISE LIST */
.promises-head { display: flex; flex-direction: column; gap: var(--space-stack); }
.promises-head h2 { font-size: clamp(36px, 3.6vw, 52px); line-height: 1.08; }
.promises-head p { font-size: 17px; color: var(--text-2); }
.promise-list { border-bottom: 1px solid var(--line); }
.promise-row { display: grid; grid-template-columns: minmax(0, 360px) minmax(0, 1fr); gap: 8px 32px; padding: 22px 0; border-top: 1px solid var(--line); align-items: baseline; }
.promise-title { display: flex; align-items: center; gap: 14px; }
.promise-title svg { width: 22px; height: 22px; flex: none; }
.promise-title h3 { font-size: 24px; letter-spacing: -0.01em; }
.promise-row p { font-size: 16px; color: var(--text-2); }

/* CHECK CTA */
.check-cta .wrap { padding-block: var(--space-half); }
.check-cta-card { border-radius: var(--radius-xl); background: var(--ink); color: var(--cream); padding: var(--card-pad-top) var(--card-pad) var(--card-pad); display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--card-gap); align-items: center; }
.check-cta-copy { display: flex; flex-direction: column; gap: var(--space-stack); }
.check-cta-copy h2 { font-size: clamp(36px, 3.6vw, 52px); line-height: 1.08; }
.check-cta-copy p { font-size: 17px; color: #cfcbbf; max-width: 480px; }
.check-cta-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; }
.link-light { padding: 10px 0; margin: -10px 0; font-size: 15px; color: var(--on-forest); text-decoration: underline; text-underline-offset: 4px; }
.link-light:hover { color: var(--cream); }
.check-cta .link-light { color: #cfcbbf; }
.btn { font-family: inherit; cursor: pointer; }
button.btn:not(.btn-ghost):not(.btn-outline) { border: 0; }

/* CHECK INLINE */
.check-inline { background: #fffdf8; color: var(--ink); border-radius: 20px; padding: clamp(24px, 3vw, 36px); min-height: 520px; display: flex; flex-direction: column; }
.check-inline h3 { font-size: clamp(24px, 2.2vw, 28px); line-height: 1.2; letter-spacing: -0.01em; margin-top: 22px; }
.check-inline .check-done h3 { margin-top: 0; }
.check-inline .check-done { margin-block: auto; }
.check-inline .check-opts { margin-top: 18px; }
.check-book-link { align-self: flex-end; margin-top: 6px; }

/* CHECK MODAL */
html.check-open { overflow: hidden; }
.check-modal { position: fixed; inset: 0; z-index: 50; display: flex; align-items: center; justify-content: center; padding: 24px; }
.check-backdrop { position: absolute; inset: 0; background: rgba(31, 33, 28, 0.58); }
.check-dialog { position: relative; width: min(1040px, 100%); }
.check-panel { position: relative; width: 100%; max-height: calc(100vh - 48px); overflow-y: auto; border-radius: 28px; background: var(--cream); padding: 20px; display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 20px; box-shadow: 0 30px 80px rgba(15, 20, 15, 0.35); }
.check-intro { padding: 36px 20px 28px 32px; display: flex; flex-direction: column; gap: 22px; }
.check-wordmark { height: 34px; width: auto; align-self: flex-start; }
.check-chip { align-self: flex-start; display: flex; align-items: center; height: 30px; padding: 0 12px; border-radius: 999px; background: #e6ebe3; color: var(--forest); font-size: 13px; font-weight: 600; }
.check-intro h2 { font-size: clamp(32px, 3vw, 42px); line-height: 1.08; }
.check-intro h2 em { font-style: normal; color: var(--brick); }
.check-sub { display: none; font-size: 15px; color: var(--text-2); }
.check-points { list-style: none; margin: 0; padding: 4px 0 0; display: flex; flex-direction: column; gap: 14px; }
.check-points li { display: flex; gap: 12px; font-size: 16px; line-height: 1.45; }
.tick { width: 24px; height: 24px; border-radius: 999px; background: var(--forest); display: flex; align-items: center; justify-content: center; flex: none; }
.tick svg { width: 13px; height: 13px; }
.check-foot { margin-top: auto; display: flex; align-items: center; gap: 12px; padding-top: 12px; font-size: 14px; color: var(--text-2); }
.check-foot img { width: 36px; height: 36px; border-radius: 10px; box-shadow: 0 0 0 1px var(--line); }
.check-card { position: relative; background: #fffdf8; border: 1px solid #e4dccb; border-radius: 20px; padding: 40px 36px 32px; min-height: 560px; display: flex; flex-direction: column; }
.check-body { flex-grow: 1; display: flex; flex-direction: column; outline: none; }
.check-step { font-size: 14px; color: var(--text-3); }
.check-bar { height: 6px; margin-top: 12px; border-radius: 999px; background: #ece6d9; overflow: hidden; }
.check-bar span { display: block; height: 6px; border-radius: 999px; background: var(--brick); transition: width 0.25s ease; }
.check-card h3 { font-size: 30px; line-height: 1.18; letter-spacing: -0.01em; margin-top: 30px; }
.check-helper { font-size: 16px; line-height: 1.55; color: var(--text-2); margin-top: 10px; }
.check-opts { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.check-opt { width: 100%; min-height: 56px; border-radius: 14px; border: 1px solid var(--line); background: #fffdf8; padding: 0 18px; display: flex; align-items: center; justify-content: space-between; gap: 12px; font: 500 16px/1.3 var(--sans); color: var(--ink); text-align: left; cursor: pointer; }
.check-opt:hover { border-color: #b9ae98; }
.check-opt[aria-checked="true"] { border: 1.5px solid var(--forest); background: #eef1ea; }
.check-ring { width: 22px; height: 22px; border-radius: 999px; border: 1.5px solid #cfc6b3; display: flex; align-items: center; justify-content: center; flex: none; }
.check-opt[aria-checked="true"] .check-ring { border-color: var(--forest); }
.check-opt[aria-checked="true"] .check-ring::after { content: ""; width: 10px; height: 10px; border-radius: 999px; background: var(--forest); }
.check-nav { margin-top: auto; padding-top: 28px; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.check-back { min-height: 44px; display: inline-flex; align-items: center; gap: 6px; padding: 0; border: 0; background: none; font: 600 15px var(--sans); color: var(--forest); cursor: pointer; }
.check-back:not(:disabled):hover { color: var(--brick-ink); }
.check-back:disabled { color: #c9c2b3; cursor: default; }
.check-next { min-height: 52px; padding: 0 26px; border: 0; border-radius: 999px; background: var(--forest); color: var(--cream); display: inline-flex; align-items: center; gap: 8px; font: 600 15px var(--sans); cursor: pointer; transition: background-color 0.2s ease; }
.check-next:not(:disabled):hover { background: var(--brick-ink); }
.check-next:disabled { background: #b9b3a6; cursor: default; }
.check-back svg, .check-next svg { width: 16px; height: 16px; }
.check-fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 22px; }
.check-field.full { grid-column: 1 / -1; }
.check-field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.check-field input { width: 100%; height: 52px; border-radius: 12px; border: 1px solid var(--line); background: #ffffff; padding: 0 14px; font: 15px var(--sans); color: var(--ink); }
.check-field input:focus { outline: 2px solid var(--brick); outline-offset: 1px; }
.check-consent { display: flex; align-items: flex-start; gap: 10px; margin-top: 16px; font-size: 13px; line-height: 1.55; color: var(--text-3); cursor: pointer; }
.check-consent input { width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--forest); flex: none; }
.check-consent a { color: var(--text-3); text-decoration: underline; }
.check-error { margin-top: 12px; font-size: 14px; color: #a63244; }
.check-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.check-done { display: flex; flex-direction: column; gap: 14px; }
.check-done img { width: 56px; height: 56px; border-radius: 14px; box-shadow: 0 0 0 1px var(--line); }
.check-done h3 { margin-top: 0; font-size: clamp(26px, 2.4vw, 34px); line-height: 1.15; }
.check-done p { font-size: 17px; color: var(--text-2); }
.check-calendar { margin-top: 4px; border-radius: 14px; border: 1px solid var(--line); background: #ffffff; overflow: hidden; }
.check-calendar iframe { display: block; width: 100%; min-height: 640px; border: 0; }
.check-modal.is-done .check-dialog { width: min(1180px, 100%); }
.check-modal.is-done .check-panel { grid-template-columns: minmax(0, 1fr); }
.check-modal.is-done .check-intro { display: none; }
.check-modal.is-done { padding: 16px; }
.check-modal.is-done .check-panel { max-height: calc(100vh - 32px); padding: 12px; }
.check-modal.is-done .check-card { min-height: 0; padding: 20px 24px 12px; }
.check-modal.is-done .check-done { gap: 12px; }
.check-modal.is-done .check-done-head img { width: 48px; height: 48px; border-radius: 12px; }
.check-modal.is-done .check-done h3 { font-size: clamp(24px, 2vw, 28px); }
.check-modal.is-done .check-done p { font-size: 15px; }
.check-done-head { display: flex; align-items: flex-start; gap: 20px; }
.check-done-head > div { display: flex; flex-direction: column; gap: 8px; }
.check-done-head img { flex: none; }
.check-close { position: absolute; top: -16px; right: -16px; z-index: 2; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 999px; background: var(--cream); box-shadow: 0 6px 16px rgba(15, 20, 15, 0.18); display: flex; align-items: center; justify-content: center; cursor: pointer; }
.check-close:hover { background: var(--paper); }
.check-close svg { width: 18px; height: 18px; }

/* CONTACT BAR */
.contact-bar { position: fixed; right: 32px; bottom: 32px; z-index: 40; display: flex; align-items: center; gap: 8px; padding: 8px 8px 8px 24px; border-radius: 999px; background: #fffdf8; border: 1px solid #e4dccb; box-shadow: 0 16px 40px rgba(15, 20, 15, 0.16); }
.contact-bar-text { display: flex; flex-direction: column; gap: 1px; padding-right: 8px; line-height: 1.3; }
.contact-bar-text strong { font-size: 15px; font-weight: 600; color: var(--ink); }
.contact-bar-text span { font-size: 13px; color: var(--text-3); }
.contact-bar-icon { width: 48px; height: 48px; flex: none; border-radius: 999px; border: 1px solid var(--line); background: #fffdf8; color: var(--forest); display: flex; align-items: center; justify-content: center; cursor: pointer; }
.contact-bar-icon { transition: border-color 0.2s ease, background-color 0.2s ease; }
.contact-bar-icon:hover { border-color: var(--forest); background: var(--cream); }
.contact-bar-icon svg { width: 18px; height: 18px; }
.contact-bar-cta { height: 48px; margin-left: 4px; padding: 0 22px; border: 0; border-radius: 999px; background: var(--forest); color: var(--cream); display: inline-flex; align-items: center; justify-content: center; gap: 8px; font: 600 15px var(--sans); white-space: nowrap; cursor: pointer; transition: background-color 0.2s ease; }
.contact-bar-cta:hover { background: var(--brick-ink); }
.contact-bar-cta svg { width: 16px; height: 16px; }
.cta-short { display: none; }
html.check-open .contact-bar { display: none; }
.check-optional { font-weight: 400; color: var(--text-3); }
.contact-bar { opacity: 0; visibility: hidden; translate: 0 calc(100% + 40px); transition: opacity 0.3s ease, translate 0.7s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0.7s; }
.contact-bar.is-shown { opacity: 1; visibility: visible; translate: 0 0; transition: opacity 0.45s ease, translate 0.7s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s; }
@media (prefers-reduced-motion: reduce) {
  .contact-bar, .contact-bar.is-shown { translate: none; transition: none; }
}
chat-widget { visibility: hidden; }
chat-widget.is-ready { visibility: visible; }
@media (max-width: 767px), (max-height: 819px) {
  html.chat-open .contact-bar { display: none; }
}

/* BOOK PAGE */
.book .wrap { padding-block: var(--space-half); display: grid; grid-template-columns: minmax(0, 2fr) minmax(0, 3fr); gap: 72px; align-items: start; }
.book-copy { display: flex; flex-direction: column; gap: var(--space-stack); padding-top: 24px; }
.book-copy .eyebrow { color: var(--brick-ink); }
.book-copy h1, .book-copy h2 { font-size: clamp(38px, 3.9vw, 56px); line-height: 1.06; color: var(--forest); }
.book-copy > p { font-size: clamp(16px, 1.35vw, 19px); color: var(--text-2); }
.book-copy .numbered { margin-top: 6px; padding-top: 26px; border-top: 1px solid var(--line); }
.book-side { display: flex; flex-direction: column; gap: 18px; }
.book-calendar { background: var(--paper); border: 1px solid var(--line); border-radius: 24px; padding: 12px; scroll-margin-top: 24px; }
.book-calendar iframe { display: block; width: 100%; min-height: 640px; border: 0; }
.book-note { font-size: 15px; color: var(--text-2); }
.book-note a { font-weight: 600; white-space: nowrap; }

/* RESPONSIVE */
@media (max-width: 1280px) {
  .call-log li:nth-child(n+3) { display: none; }
}
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  :root { --card-gap: 40px; }
  .hero-card, .problem-card { grid-template-columns: minmax(0, 1fr); }
  .hero-visual { min-height: 420px; }
  .booking-card { left: 12px; }
  .problem-visual { min-height: 0; }
  .missed { flex: none; padding: 12px 0; }
}
@media (max-width: 600px) {
  :root { --card-gap: 20px; --space-stack: 20px; --panel-pad: 20px; }
  .site-header .wrap { height: 72px; }
  .site-header .logo img { height: 30px; }
  .site-header .btn-sm { min-height: 44px; padding: 0 16px; font-size: 14px; }
  .hero-actions .btn { width: 100%; }
  .booking-title { font-size: 22px; }
  .footer-grid { grid-template-columns: minmax(0, 1fr); }
  .problem-copy { gap: 20px; }
  .pain-words { gap: 4px; line-height: 1.15; }
  .pain-detail { min-height: 0; font-size: 16px; }
  .problem-visual { border-radius: 16px; }
  .phone-screen { padding: 20px 20px 8px; }
  .phone-screen .panel-head { font-size: 12px; }
  .missed-extra { display: none; }
  .missed-icon { width: 36px; height: 36px; }
  .missed-icon svg { width: 18px; height: 18px; }
  .missed-body { font-size: 14px; }
  .hero-copy h1 { font-size: 38px; line-height: 1.08; }
  .hero-copy p { font-size: 16px; }
  .hero-actions { gap: 10px; }
  .hero-visual { min-height: 0; margin-top: 8px; }
  .hero-panel { display: none; }
  .booking-card { position: static; width: auto; gap: 12px; transform: none; box-shadow: none; }
  .booking-brand img { width: 28px; height: 28px; border-radius: 7px; }
  .check-cta-copy h2 { font-size: 32px; line-height: 1.1; }
  .check-cta-copy p { font-size: 16px; }
  .check-cta-actions { flex-direction: column; align-items: stretch; gap: 8px; }
  .check-cta-actions .link-light { align-self: center; }
  .step-line::after { display: none; }
  .closing img { width: 48px; height: 48px; border-radius: 12px; }
  .closing h2 { font-size: 34px; line-height: 1.1; }
  .closing .btn { align-self: stretch; }
}
@media (max-width: 900px) {
  .demo-hero-card { grid-template-columns: minmax(0, 1fr); }
  .book .wrap { grid-template-columns: minmax(0, 1fr); gap: 36px; }
  .book-copy { padding-top: 0; }
  .faq-cols { grid-template-columns: minmax(0, 1fr); }
  .faq-col { display: contents; }
  .faq-col .faq-item:last-child { border-bottom: 0; }
  .faq-item[data-order="1"] { order: 1; }
  .faq-item[data-order="2"] { order: 2; }
  .faq-item[data-order="3"] { order: 3; }
  .faq-item[data-order="4"] { order: 4; }
  .faq-col .faq-item[data-order="5"] { order: 5; border-bottom: 1px solid var(--line); }
  .faq-item h3 { font-size: 21px; }
  .faq-answer { padding-right: 0; }
}
@media (max-width: 600px) {
  .check-inline { padding: 20px; min-height: 0; }
  .check-inline h3 { font-size: 22px; margin-top: 16px; }
  .check-book-link { align-self: stretch; }
  .setup-list { flex-direction: column; gap: 10px; }
  .setup-list li { flex-direction: column; gap: 10px; }
  .setup-list li + li::before { width: 5px; height: 5px; }
  .book-calendar { border-radius: 18px; padding: 14px 10px; }
}
@media (max-width: 1100px) {
  .promises .wrap { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 900px) {
  .step-line { grid-template-columns: minmax(0, 1fr); }
  .step-line::before { top: 0; bottom: 0; left: 19px; right: auto; width: 1px; height: auto; }
  .step-line::after { top: auto; bottom: 0; left: 15px; right: auto; }
  .step-line li { padding: 0 0 32px 64px; gap: 6px; }
  .step-line li:last-child { padding-bottom: 0; }
  .step-line .step-dot { position: absolute; left: 0; top: 0; margin: 0; }
}
@media (max-width: 700px) {
  .promise-row { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 900px) {
  .check-cta-card { grid-template-columns: minmax(0, 1fr); }
  .check-modal { padding: 0; align-items: stretch; }
  .check-panel { width: 100%; max-height: none; height: 100%; border-radius: 0; padding: 0; gap: 0; grid-template-columns: minmax(0, 1fr); align-content: start; }
  .check-intro { padding: 20px 20px 4px; gap: 12px; }
  .check-wordmark, .check-points, .check-foot { display: none; }
  .check-sub { display: block; }
  .check-intro h2 { font-size: 30px; padding-right: 48px; }
  .check-card { border: 0; border-radius: 0; background: transparent; padding: 16px 20px 24px; min-height: 0; }
  .check-card h3 { font-size: 24px; margin-top: 20px; }
  .check-dialog { width: 100%; height: 100%; }
  .check-modal.is-done { padding: 0; }
  .check-modal.is-done .check-panel { max-height: none; padding: 0; }
  .check-modal.is-done .check-card { padding: 20px 16px 24px; }
  .check-done-head { gap: 14px; padding-right: 48px; }
  .check-done-head img { width: 44px; height: 44px; }
  .check-calendar { margin: 4px -4px 0; }
  .check-close { top: 12px; right: 12px; border: 0; box-shadow: none; background: #e7e0d2; }
  .check-opts { gap: 6px; margin-top: 14px; }
  .check-opt { min-height: 48px; }
  .check-card h3 { margin-top: 16px; }
}
@media (max-width: 600px) {
  .check-fields { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 700px) {
  html { scroll-padding-bottom: 104px; }
  .site-footer .wrap { padding-bottom: 116px; }
  body:not(:has(.contact-bar)) .site-footer .wrap { padding-bottom: 32px; }
  .footer-col { gap: 0; }
  .footer-col a { display: flex; align-items: center; min-height: 44px; }
  .contact-bar { left: 12px; right: 12px; bottom: 16px; padding: 8px; box-shadow: 0 16px 40px rgba(15, 20, 15, 0.18); }
  .contact-bar-text { display: none; }
  .contact-bar-cta { flex-grow: 1; margin-left: 0; padding: 0 16px; }
  .cta-long { display: none; }
  .cta-short { display: inline; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
