:root {
  --ink: #101b1a;
  --ink-2: #172624;
  --paper: #f7f5ef;
  --surface: #ffffff;
  --mist: #e8efec;
  --line: #d7dfdb;
  --muted: #52615e;
  --coral: #f05a3c;
  --coral-dark: #b9331f;
  --lime: #c6f36b;
  --teal: #0e6f68;
  --focus: #ffd35c;
  --shadow-sm: 0 10px 30px rgba(16, 27, 26, .08);
  --shadow-lg: 0 26px 70px rgba(16, 27, 26, .16);
  --radius-sm: .75rem;
  --radius: 1.25rem;
  --radius-lg: 2rem;
  --container: 1200px;
  --space-section: clamp(4rem, 9vw, 8rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 4px; }
.skip-link { position: fixed; top: .75rem; left: .75rem; z-index: 999; padding: .7rem 1rem; color: var(--ink); background: var(--focus); transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 2.5rem), var(--container)); margin-inline: auto; }
.grid-12 { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: clamp(1rem, 2vw, 1.75rem); }
.eyebrow { margin: 0 0 .9rem; color: var(--coral-dark); font-size: .75rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow.light { color: var(--lime); }
h1, h2, h3 { margin: 0; font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif; font-weight: 800; line-height: .98; letter-spacing: -.035em; text-wrap: balance; }
h1 { max-width: 900px; font-size: clamp(3rem, 7.4vw, 6.9rem); }
h2 { font-size: clamp(2.25rem, 5vw, 4.7rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 2rem); line-height: 1.08; }
p { margin: 0; }
.lead { max-width: 720px; color: var(--muted); font-size: clamp(1.08rem, 1.7vw, 1.35rem); }
.lead.light { color: rgba(255,255,255,.76); }
.section { padding-block: var(--space-section); }
.mist-section { background: linear-gradient(135deg,#e8efec 0%,#f1f5f2 55%,#e5eeeb 100%); border-block: 1px solid var(--line); }
.section-head { grid-column: 1 / span 8; margin-bottom: clamp(2rem, 5vw, 4rem); }
.section-head .lead { margin-top: 1.25rem; }
.kicker { display: inline-flex; align-items: center; gap: .6rem; margin-bottom: 1.2rem; color: var(--muted); font-size: .85rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.kicker::before { content: ""; width: 2.5rem; height: 2px; background: var(--coral); }
.tag { display: inline-flex; width: max-content; padding: .35rem .65rem; border-radius: 999px; color: var(--teal); background: var(--mist); font-size: .76rem; font-weight: 800; }

.site-header { position: sticky; top: 0; z-index: 100; color: #fff; background: rgba(16,27,26,.94); border-bottom: 1px solid rgba(255,255,255,.12); backdrop-filter: blur(16px); }
.nav-wrap { min-height: 78px; display: flex; align-items: center; gap: 2rem; }
.brand { flex: 0 0 auto; }
.brand img { width: 205px; }
.nav-toggle { display: none; margin-left: auto; min-width: 48px; min-height: 48px; border: 1px solid rgba(255,255,255,.3); border-radius: 999px; color: #fff; background: transparent; }
.nav-links { display: flex; align-items: center; gap: clamp(.65rem, 1.25vw, 1.25rem); margin-left: auto; }
.nav-links a { position: relative; padding: 1.55rem 0; color: rgba(255,255,255,.78); font-size: .88rem; font-weight: 700; text-decoration: none; white-space: nowrap; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: #fff; }
.nav-links a[aria-current="page"]::after { content: ""; position: absolute; right: 0; bottom: 1rem; left: 0; height: 2px; background: var(--lime); }
.nav-cta { display: inline-flex; flex: 0 0 auto; align-items: center; justify-content: center; min-height: 46px; padding: .65rem 1.1rem; border-radius: 999px; color: var(--ink); background: var(--lime); font-size: .9rem; font-weight: 850; text-decoration: none; white-space: nowrap; }

.hero { position: relative; min-height: min(860px, calc(100svh - 78px)); display: flex; align-items: center; padding-block: clamp(5rem, 9vw, 8rem); color: #fff; background: var(--ink); overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(16,27,26,.98) 0%, rgba(16,27,26,.88) 43%, rgba(16,27,26,.18) 76%), url("assets/hero-ai-receptionist-v2.jpg") center / cover no-repeat; }
.hero::after { content: ""; position: absolute; width: 40rem; aspect-ratio: 1; right: -18rem; top: -22rem; border: 1px solid rgba(198,243,107,.4); border-radius: 50%; box-shadow: 0 0 0 70px rgba(198,243,107,.04), 0 0 0 140px rgba(198,243,107,.03); }
.hero .container { position: relative; z-index: 1; }
.hero-copy { grid-column: 1 / span 8; }
.hero h1 em { color: var(--lime); font-style: normal; }
.hero .lead { margin-top: 1.5rem; }
.actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; min-height: 52px; padding: .8rem 1.35rem; border: 1px solid transparent; border-radius: 999px; font-weight: 850; line-height: 1.1; text-decoration: none; transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.button.primary { color: var(--ink); background: var(--lime); }
.button.dark { color: #fff; background: var(--ink); }
.button.coral { color: #fff; background: var(--coral-dark); }
.button.ghost { color: #fff; border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.06); }
.button.outline { color: var(--ink); border-color: var(--ink); background: transparent; }
.signal-card { grid-column: 9 / -1; align-self: end; padding: 1.4rem; border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius); background: rgba(16,27,26,.72); backdrop-filter: blur(14px); box-shadow: var(--shadow-lg); }
.signal-top { display: flex; justify-content: space-between; align-items: center; color: rgba(255,255,255,.7); font-size: .8rem; }
.live-dot { display: inline-flex; align-items: center; gap: .5rem; color: var(--lime); }
.live-dot::before { content: ""; width: .6rem; aspect-ratio: 1; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 .35rem rgba(198,243,107,.12); animation: pulse 2s ease-in-out infinite; }
.wave { height: 80px; display: flex; align-items: center; justify-content: center; gap: 5px; margin: 1.3rem 0; }
.wave i { width: 4px; height: var(--h, 30%); border-radius: 99px; background: var(--coral); animation: wave 1.2s ease-in-out infinite alternate; animation-delay: var(--d, 0s); }
.signal-card strong { display: block; font-size: 1.05rem; }
.signal-card p { margin-top: .35rem; color: rgba(255,255,255,.65); font-size: .9rem; }

.answer-strip { padding-block: 1.5rem; color: #fff; background: var(--teal); }
.answer-strip .grid-12 { align-items: center; }
.answer-label { grid-column: span 2; color: var(--lime); font-size: .75rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.answer-strip p { grid-column: span 10; max-width: 930px; color: rgba(255,255,255,.9); }

.journey-section { overflow: hidden; background: linear-gradient(180deg, var(--paper) 0%, #f0f6f3 100%); }
.journey-intro { max-width: 820px; }
.journey-intro h2 { max-width: 760px; }
.journey-intro .lead { max-width: 720px; margin-top: 1.25rem; }
.journey-map { position: relative; margin-top: clamp(3.5rem, 7vw, 6rem); }
.journey-line { position: absolute; z-index: 0; top: -1rem; left: 2%; width: 96%; height: 250px; overflow: visible; }
.journey-steps { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(1.5rem, 3vw, 3.5rem); margin: 0; padding: 0; list-style: none; }
.journey-step { min-width: 0; }
.journey-step:nth-child(even) { padding-top: 5.5rem; }
.journey-marker { width: 78px; height: 78px; display: grid; place-items: center; margin-bottom: 1.5rem; color: var(--lime); border: 8px solid #f2f6f3; border-radius: 50%; background: var(--ink); box-shadow: 0 10px 30px rgba(16,27,26,.18); }
.journey-marker.final { color: var(--ink); background: var(--lime); }
.journey-marker svg { width: 32px; height: 32px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.journey-label { display: block; margin-bottom: .55rem; color: var(--coral); font-size: .73rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.journey-step h3 { max-width: 12ch; font-size: clamp(1.55rem, 2.5vw, 2.25rem); line-height: 1.05; }
.journey-step p { max-width: 30ch; margin-top: 1rem; color: var(--muted); }
.journey-step .text-link { font-size: .92rem; }
.journey-guardrails { display: flex; align-items: center; justify-content: space-between; gap: 2rem; margin-top: clamp(4rem, 8vw, 7rem); padding: 1.5rem 0; border-top: 1px solid rgba(14,111,104,.28); border-bottom: 1px solid rgba(14,111,104,.28); }
.journey-guardrails strong { color: var(--ink); font-size: 1.05rem; }
.journey-guardrails ul { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 1rem 2rem; margin: 0; padding: 0; list-style: none; }
.journey-guardrails li { position: relative; padding-left: 1.4rem; color: var(--muted); }
.journey-guardrails li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 900; }
.text-link { display: inline-flex; align-items: center; gap: .45rem; margin-top: 1.2rem; color: var(--teal); font-weight: 800; text-decoration-thickness: 1px; text-underline-offset: .3rem; }

.dark-section { color: #fff; background: var(--ink); }
.dark-section .lead { color: rgba(255,255,255,.68); }
.process { grid-column: 1 / -1; counter-reset: step; }
.process article { display: grid; grid-template-columns: 1fr 3fr 6fr; gap: 1rem; align-items: start; padding: 1.7rem 0; border-top: 1px solid rgba(255,255,255,.16); }
.process article::before { counter-increment: step; content: "0" counter(step); color: var(--lime); font-weight: 800; }
.process p { color: rgba(255,255,255,.64); }

.page-hero { position: relative; padding-block: clamp(5rem, 10vw, 9rem); color: #fff; background: var(--ink); overflow: hidden; }
.page-hero::after { content: ""; position: absolute; inset: auto -10% -45% 42%; height: 80%; border: 1px solid rgba(198,243,107,.2); border-radius: 50%; transform: rotate(-10deg); }
.page-hero-copy { position: relative; z-index: 1; grid-column: 1 / span 9; }
.page-hero h1 { font-size: clamp(3.1rem, 7vw, 6.5rem); }
.demo-hero h1 em,
.automation-hero h1 em,
.ai-receptionist-hero h1 em,
.contact-hero h1 em,
.faq-hero h1 em,
.industries-hero h1 em,
.savings-hero h1 em { color: var(--lime); font-style: normal; }
.faq-hero h1 span { display: block; }
.page-hero .lead { margin-top: 1.5rem; }
.feature-grid { grid-column: 1/-1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.feature-card { min-height: 280px; padding: 2rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.feature-card h3 { margin-top: 2.7rem; }
.feature-card p { margin-top: 1rem; color: var(--muted); }
.media-split { align-items: center; }
.media-split .copy { grid-column: 1 / span 5; }
.media-split .media { grid-column: 7 / -1; position: relative; }
.media img { min-height: 440px; width: 100%; object-fit: cover; border-radius: var(--radius-lg); }
.media-note { position: absolute; right: -1rem; bottom: 1.25rem; max-width: 280px; padding: 1.2rem; border-radius: var(--radius); color: #fff; background: var(--teal); box-shadow: var(--shadow-lg); }
.checks { display: grid; gap: .8rem; margin: 1.5rem 0 0; padding: 0; list-style: none; }
.checks li { display: flex; gap: .75rem; }
.checks li::before { content: "✓"; color: var(--coral-dark); font-weight: 900; }

.industry-signal { grid-column: 1/-1; display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; gap: 1rem; margin-bottom: 1.25rem; padding: 1.1rem 1.25rem; border: 1px solid rgba(14,111,104,.22); border-radius: var(--radius); background: linear-gradient(120deg,rgba(198,243,107,.25),rgba(255,255,255,.8) 48%,rgba(240,90,60,.12)); box-shadow: var(--shadow-sm); }
.industry-signal div { display: grid; grid-template-columns: auto 1fr; gap: 0 .7rem; align-items: center; }
.industry-signal span { grid-row: span 2; display: grid; place-items: center; width: 2.35rem; aspect-ratio: 1; border-radius: 50%; color: #fff; background: var(--teal); font-size: .72rem; font-weight: 900; }
.industry-signal strong { line-height: 1.1; }
.industry-signal small { color: var(--muted); }
.industry-signal i { width: 2.2rem; height: 2px; background: var(--coral); position: relative; }
.industry-signal i::after { content: ""; position: absolute; right: 0; top: -3px; width: 7px; height: 7px; border-top: 2px solid var(--coral); border-right: 2px solid var(--coral); transform: rotate(45deg); }
.industry-grid { grid-column: 1/-1; display: grid; grid-template-columns: repeat(12,minmax(0,1fr)); gap: 1.25rem; }
.industry-card { --position: center; position: relative; isolation: isolate; min-height: 470px; display: flex; align-items: flex-end; grid-column: span 6; padding: clamp(1.5rem,3vw,2.5rem); border-radius: var(--radius-lg); color: #fff; background: var(--ink); box-shadow: var(--shadow-sm); overflow: hidden; }
.industry-card:nth-child(1), .industry-card:nth-child(4) { grid-column: span 7; }
.industry-card:nth-child(2), .industry-card:nth-child(3) { grid-column: span 5; }
.industry-card::before { content: ""; position: absolute; z-index: -2; inset: 0; background-image: linear-gradient(180deg,rgba(16,27,26,.05) 15%,rgba(16,27,26,.42) 48%,rgba(16,27,26,.96) 100%),url("assets/industries-ai-receptionist.jpg"); background-position: center,var(--position); background-size: cover,auto 210%; background-repeat: no-repeat; transition: transform .55s cubic-bezier(.2,.7,.2,1); }
.industry-card::after { content: ""; position: absolute; z-index: -1; inset: 0; border: 1px solid rgba(255,255,255,.2); border-radius: inherit; box-shadow: inset 0 -1px rgba(255,255,255,.12); pointer-events: none; }
.industry-card:hover::before { transform: scale(1.045); }
.industry-trades { --position: left top; }
.industry-property { --position: 84% top; }
.industry-hospitality { --position: left bottom; }
.industry-health { --position: right bottom; }
.industry-card-copy { max-width: 610px; }
.industry-kicker { display: inline-flex; margin-bottom: 1rem; padding: .38rem .7rem; border: 1px solid rgba(255,255,255,.26); border-radius: 999px; color: var(--lime); background: rgba(16,27,26,.54); backdrop-filter: blur(8px); font-size: .72rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.industry-card h3 { max-width: 14ch; font-size: clamp(2rem,3.8vw,3.3rem); text-shadow: 0 2px 22px rgba(0,0,0,.32); }
.industry-card p:not(.industry-kicker) { max-width: 52ch; margin-top: 1rem; color: rgba(255,255,255,.78); }
.industry-points { display: flex; flex-wrap: wrap; gap: .55rem; margin: 1.35rem 0 0; padding: 0; list-style: none; }
.industry-points li { padding: .45rem .7rem; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; background: rgba(16,27,26,.62); backdrop-filter: blur(8px); font-size: .78rem; font-weight: 800; }

.demo-grid { grid-column: 1/-1; display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.demo-card { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; overflow: hidden; box-shadow: var(--shadow-sm); }
.demo-card img, .demo-placeholder { width: 100%; height: 230px; object-fit: cover; }
.demo-placeholder { display: grid; place-items: center; color: #fff; background: linear-gradient(135deg,var(--teal),var(--ink)); }
.demo-placeholder .wave { width: 80%; }
.demo-body { flex: 1; display: flex; flex-direction: column; padding: 1.6rem; }
.demo-body p { margin: .8rem 0 1.4rem; color: var(--muted); }
.demo-body .button { margin-top: auto; }

.voice-modal {
  width: min(1040px, calc(100% - 2rem));
  max-width: none;
  height: min(850px, calc(100dvh - 2rem));
  max-height: none;
  padding: 0;
  border: 0;
  border-radius: var(--radius-lg);
  color: var(--ink);
  background: var(--surface);
  box-shadow: 0 35px 100px rgba(0,0,0,.42);
  overflow: hidden;
}
.voice-modal::backdrop { background: rgba(9,17,16,.82); backdrop-filter: blur(8px); }
.voice-modal[open] { animation: modal-in .22s ease both; }
.voice-modal-shell { height: 100%; display: grid; grid-template-rows: auto minmax(360px,1fr) auto; }
.voice-modal-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 2rem; padding: 1.35rem 1.5rem; color: #fff; background: var(--ink); }
.voice-modal-header h2 { font-size: clamp(1.7rem,3vw,2.6rem); }
.voice-modal-header p:last-child { margin-top: .5rem; color: rgba(255,255,255,.68); font-size: .9rem; }
.voice-modal-close { flex: 0 0 auto; min-height: 46px; padding: .65rem 1rem; border: 1px solid rgba(255,255,255,.35); border-radius: 999px; color: #fff; background: rgba(255,255,255,.08); font-weight: 850; }
.voice-modal-close:hover { border-color: var(--lime); color: var(--lime); }
.voice-modal-frame-wrap { min-height: 0; background: var(--mist); }
.voice-modal-frame-wrap iframe { display: block; width: 100%; height: 100%; min-height: 500px; border: 0; background: #fff; }
.voice-modal-footer { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 1.5rem; border-top: 1px solid var(--line); background: var(--paper); }
.voice-modal-footer p { color: var(--muted); font-size: .82rem; }
.voice-modal-footer a { flex: 0 0 auto; color: var(--teal); font-size: .85rem; font-weight: 850; }
@keyframes modal-in { from { opacity: 0; transform: translateY(16px) scale(.985); } to { opacity: 1; transform: none; } }

.calculator { grid-column: 1/-1; display: grid; grid-template-columns: 5fr 7fr; border-radius: var(--radius-lg); background: var(--ink); overflow: hidden; box-shadow: var(--shadow-lg); }
.calculator-form { padding: clamp(1.6rem,4vw,3.5rem); color: #fff; }
.field { display: grid; gap: .55rem; margin-top: 1.3rem; }
.field label, .field-label { font-size: .86rem; font-weight: 800; }
.field small { color: rgba(255,255,255,.6); }
.field input, .field select, .field textarea { width: 100%; min-height: 50px; padding: .75rem .9rem; border: 1px solid rgba(255,255,255,.25); border-radius: var(--radius-sm); color: #fff; background: rgba(255,255,255,.08); }
.field textarea { min-height: 150px; resize: vertical; }
.calculator-results { padding: clamp(1.6rem,4vw,3.5rem); color: var(--ink); background: var(--lime); }
.result-big { margin: 1.2rem 0 0; font-family: "Arial Narrow", sans-serif; font-size: clamp(3.2rem,7vw,6.5rem); font-weight: 900; letter-spacing: -.06em; line-height: .9; }
.result-caption { max-width: 42ch; margin-top: .8rem; }
.result-list { display: grid; grid-template-columns: repeat(2,1fr); gap: .7rem; margin-top: 2rem; }
.result-list div { padding: 1rem; border: 1px solid rgba(16,27,26,.2); border-radius: var(--radius-sm); background: rgba(255,255,255,.3); }
.result-list span { display: block; font-size: .8rem; font-weight: 700; }
.result-list strong { display: block; margin-top: .25rem; font-size: 1.25rem; }
.fine-print { margin-top: 1rem; color: inherit; opacity: .72; font-size: .8rem; }

.faq-layout { align-items: start; }
.faq-aside { grid-column: 1/span 4; position: sticky; top: 110px; }
.faq-list { grid-column: 6/-1; display: grid; gap: .8rem; }
.faq-list details { border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; overflow: hidden; }
.faq-list summary { min-height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 1.25rem; font-weight: 850; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; color: var(--coral-dark); font-size: 1.5rem; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { padding: 0 1.25rem 1.3rem; color: var(--muted); }
.faq-list details p > .text-link { display: flex; width: max-content; max-width: 100%; margin-top: .75rem; }
.faq-content { grid-column: 6/-1; display: grid; gap: clamp(3.5rem, 7vw, 6rem); }
.faq-group { scroll-margin-top: 110px; }
.faq-group-head { margin-bottom: 1.5rem; }
.faq-group-head h2 { font-size: clamp(2.2rem, 4vw, 3.7rem); }
.faq-group-head p { max-width: 62ch; margin-top: .85rem; color: var(--muted); }
.faq-index { display: grid; gap: .65rem; margin-top: 1.5rem; }
.faq-index a { display: flex; align-items: center; justify-content: space-between; min-height: 48px; padding: .75rem 1rem; border: 1px solid var(--line); border-radius: var(--radius-sm); color: var(--teal); background: var(--surface); font-weight: 850; text-decoration: none; }
.faq-index a:hover { border-color: var(--teal); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.reviewed-note { margin-top: 1.4rem; color: var(--muted); font-size: .82rem; }
.faq-list + .faq-list { margin-top: .8rem; }

.mobile-sandra-launcher {
  position: fixed;
  z-index: 220;
  left: 1rem;
  bottom: max(1rem, env(safe-area-inset-bottom));
  min-height: 52px;
  padding: .8rem 1.2rem;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  background: var(--lime);
  box-shadow: var(--shadow-lg);
  font: inherit;
  font-weight: 900;
}
.mobile-sandra-overlay { position: fixed; z-index: 300; inset: 0; padding: .5rem; background: rgba(9,17,16,.88); }
.mobile-sandra-overlay[hidden] { display: none; }
.mobile-sandra-dialog { width: 100%; height: 100%; display: grid; grid-template-rows: auto 1fr; border-radius: var(--radius); background: var(--teal); overflow: hidden; }
.mobile-sandra-dialog > header { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .8rem 1rem; color: #fff; background: var(--ink); }
.mobile-sandra-dialog > header p { margin: 0; color: var(--lime); font-size: .68rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.mobile-sandra-dialog > header h2 { margin: .15rem 0 0; font-size: 1.55rem; }
.mobile-sandra-close { min-height: 44px; padding: .6rem .9rem; border: 1px solid rgba(255,255,255,.38); border-radius: 999px; color: #fff; background: transparent; font: inherit; font-weight: 850; }
.mobile-sandra-frame { min-height: 0; }
.mobile-sandra-frame iframe { display: block; width: 100%; height: 100%; border: 0; background: var(--teal); }
body.mobile-sandra-open { overflow: hidden; }

.contact-layout { align-items: start; }
#enquiry { scroll-margin-top: 78px; }
.contact-copy { grid-column: 1/span 4; }
.contact-form { grid-column: 6/-1; display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; padding: clamp(1.5rem,4vw,3rem); border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-sm); }
.contact-form .field { margin: 0; }
.contact-form .field.full { grid-column: 1/-1; }
.contact-form input, .contact-form select, .contact-form textarea { color: var(--ink); border-color: var(--line); background: var(--paper); }
.contact-form button { justify-self: start; }
.turnstile-wrap { grid-column: 1/-1; min-height: 65px; }
.contact-method { display: block; margin-top: 1rem; color: var(--teal); font-weight: 850; overflow-wrap: anywhere; }
.phone-link, .contact-link { display: inline-flex; align-items: center; gap: .45rem; }
.phone-icon, .contact-icon { width: 1rem; height: 1rem; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.form-status { grid-column: 1/-1; min-height: 1.6rem; color: var(--teal); font-weight: 700; }
.honeypot { position: absolute !important; left: -9999px !important; }

.cta-band { padding-block: clamp(3rem,6vw,5rem); color: #fff; background: var(--coral-dark); }
.cta-band .copy { grid-column: 1/span 8; }
.cta-band .actions { grid-column: 10/-1; justify-content: flex-end; align-self: center; margin: 0; }
.site-footer { padding-block: 3.5rem 2rem; color: #fff; background: #091110; }
.footer-grid > div:first-child { grid-column: 1/span 5; }
.footer-grid nav { grid-column: 7/-1; display: grid; grid-template-columns: repeat(2,1fr); gap: .7rem 2rem; }
.footer-grid a { color: rgba(255,255,255,.72); text-decoration: none; }
.footer-grid a:hover { color: var(--lime); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; margin-top: 3rem; padding-top: 1.3rem; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.5); font-size: .82rem; }

@keyframes pulse { 50% { opacity: .5; transform: scale(.85); } }
@keyframes wave { to { height: calc(var(--h, 30%) * .45); opacity: .5; } }
@keyframes reveal { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.hero-copy, .page-hero-copy { animation: reveal .65s ease both; }

@media (max-width: 1220px) {
  .nav-toggle { display: inline-grid; place-items: center; }
  .nav-cta { display: none; }
  .nav-links { position: absolute; top: 100%; right: 0; left: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: .7rem 1.25rem 1.25rem; background: var(--ink); border-bottom: 1px solid rgba(255,255,255,.12); }
  .nav-links.open { display: flex; }
  .nav-links a { min-height: 48px; display: flex; align-items: center; padding: .7rem 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav-links a[aria-current="page"]::after { display: none; }
}

@media (max-width: 980px) {
  .nav-toggle { display: inline-grid; place-items: center; }
  .nav-cta { display: none; }
  .nav-links { position: absolute; top: 100%; right: 0; left: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: .7rem 1.25rem 1.25rem; background: var(--ink); border-bottom: 1px solid rgba(255,255,255,.12); }
  .nav-links.open { display: flex; }
  .nav-links a { min-height: 48px; display: flex; align-items: center; padding: .7rem 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav-links a[aria-current="page"]::after { display: none; }
  .hero-copy { grid-column: 1/span 9; }
  .signal-card { grid-column: 8/-1; }
  .journey-line { display: none; }
  .journey-map { max-width: 720px; }
  .journey-steps { grid-template-columns: 1fr; gap: 2.75rem; padding-left: 6rem; }
  .journey-map::before { content: ""; position: absolute; top: 2.5rem; bottom: 2.5rem; left: 2.35rem; width: 3px; border-radius: 3px; background: linear-gradient(var(--lime), var(--teal) 55%, var(--coral)); }
  .journey-step, .journey-step:nth-child(even) { position: relative; padding-top: 0; }
  .journey-marker { position: absolute; top: -.5rem; left: -6rem; width: 76px; height: 76px; margin: 0; }
  .journey-step h3, .journey-step p { max-width: 520px; }
  .journey-guardrails { align-items: flex-start; flex-direction: column; }
  .journey-guardrails ul { justify-content: flex-start; }
  .feature-grid, .demo-grid { grid-template-columns: repeat(2,1fr); }
  .feature-card:last-child, .demo-card:last-child { grid-column: 1/-1; }
  .industry-card:nth-child(n) { grid-column: span 6; }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 1.5rem), var(--container)); }
  .grid-12 { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero::before { background: linear-gradient(180deg,rgba(16,27,26,.98),rgba(16,27,26,.72)), url("assets/hero-ai-receptionist-v2.jpg") 70% center / cover; }
  .hero-copy, .signal-card, .page-hero-copy, .section-head, .answer-label, .answer-strip p, .media-split .copy, .media-split .media, .cta-band .copy, .cta-band .actions, .footer-grid>div:first-child, .footer-grid nav, .faq-aside, .faq-list, .faq-content, .contact-copy, .contact-form { grid-column: 1; }
  .signal-card { margin-top: 2rem; }
  .answer-strip p { margin-top: .3rem; }
  .feature-grid, .industry-grid, .demo-grid, .calculator, .contact-form { grid-template-columns: 1fr; }
  .feature-card:last-child, .demo-card:last-child { grid-column: 1; }
  .journey-steps { gap: 3rem; padding-left: 4.25rem; }
  .journey-map::before { left: 1.55rem; }
  .journey-marker { left: -4.25rem; width: 52px; height: 52px; border-width: 5px; }
  .journey-marker svg { width: 23px; height: 23px; }
  .journey-step h3 { font-size: 1.7rem; }
  .journey-guardrails ul { display: grid; gap: .8rem; }
  .industry-signal { grid-template-columns: 1fr; gap: .75rem; }
  .industry-signal i { width: 2px; height: 1.3rem; margin-left: 1.15rem; }
  .industry-signal i::after { right: -3px; top: auto; bottom: 0; transform: rotate(135deg); }
  .industry-card:nth-child(n) { grid-column: 1; min-height: 450px; }
  .process article { grid-template-columns: 50px 1fr; }
  .process article p { grid-column: 2; }
  .media-split .media { margin-top: 2rem; }
  .media-note { right: .75rem; left: .75rem; }
  .calculator-results { min-height: 420px; }
  .faq-aside { position: static; margin-bottom: 2rem; }
  .contact-form .field.full, .form-status { grid-column: 1; }
  .cta-band .actions { justify-content: flex-start; margin-top: 1rem; }
  .footer-grid nav { margin-top: 2rem; }
  .footer-bottom { flex-direction: column; }
  .voice-modal { width: calc(100% - 1rem); height: calc(100dvh - 1rem); border-radius: var(--radius); }
  .voice-modal-header { gap: 1rem; padding: 1rem; }
  .voice-modal-header { flex-direction: column; }
  .voice-modal-close { width: 100%; }
  .voice-modal-frame-wrap iframe { min-height: 430px; }
  .voice-modal-footer { align-items: flex-start; flex-direction: column; padding: .85rem 1rem; }
}

@media (min-width: 721px) {
  .faq-hero h1 span { white-space: nowrap; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
