/* ==============================================
   AI-Receptionist by Ineiz — Polished + Distinctive
   Crimson Pro (serif) + Space Grotesk (sans)
   Deep navy + warm orange accent
   ============================================== */

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

:root {
  --dark:       #111827;
  --dark-2:     #1F2937;
  --dark-3:     #374151;
  --surface:    #FFFFFF;
  --surface-alt:#F7F8FA;
  --accent:     #EA580C;
  --accent-h:   #DC4A04;
  --green:      #059669;
  --green-bg:   rgba(5,150,105,.08);
  --red:        #DC2626;
  --red-bg:     rgba(220,38,38,.07);
  --amber:      #D97706;
  --text:       #111827;
  --text-2:     #4B5563;
  --text-3:     #9CA3AF;
  --border:     #E5E7EB;
  --border-2:   #D1D5DB;

  --serif:  'Crimson Pro', Georgia, serif;
  --sans:   'Space Grotesk', system-ui, sans-serif;
  --ease:   cubic-bezier(.16,1,.3,1);
  --fast:   .2s ease;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ---------- Buttons ---------- */

.btn-fill {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 30px;
  background: var(--accent); color: #fff;
  font-family: var(--sans); font-size: .9rem; font-weight: 600;
  border-radius: 9px; border: none; cursor: pointer;
  transition: background var(--fast), transform var(--fast);
}
.btn-fill:hover { background: var(--accent-h); transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex; align-items: center;
  padding: 13px 30px;
  color: rgba(255,255,255,.7);
  font-size: .9rem; font-weight: 500;
  border: 1.5px solid rgba(255,255,255,.18);
  border-radius: 9px;
  transition: all var(--fast);
}
.btn-ghost:hover { color: #fff; border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.06); }

.btn-outline-dark {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 30px;
  color: var(--text); background: transparent;
  font-family: var(--sans); font-size: .9rem; font-weight: 600;
  border: 1.5px solid var(--border-2); border-radius: 9px; cursor: pointer;
  transition: all var(--fast);
}
.btn-outline-dark:hover { border-color: var(--text); background: var(--text); color: var(--surface); }

.btn-white {
  background: #fff; color: var(--accent);
}
.btn-white:hover { background: #fff; opacity: .92; }

/* ---------- Nav ---------- */

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0;
  transition: all .3s ease;
}
.nav.scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }

.logo {
  font-family: var(--serif); font-size: 1.45rem; font-weight: 800;
  color: #fff; letter-spacing: -.02em;
}
.nav.scrolled .logo { color: var(--text); }
.logo-light { color: #fff !important; }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: .87rem; font-weight: 500; color: rgba(255,255,255,.55);
  transition: color var(--fast);
}
.nav-links a:hover { color: #fff; }
.nav.scrolled .nav-links a { color: var(--text-2); }
.nav.scrolled .nav-links a:hover { color: var(--text); }

.nav-btn {
  padding: 8px 20px !important;
  background: var(--accent); color: #fff !important;
  border-radius: 8px; font-weight: 600 !important;
  transition: background var(--fast) !important;
}
.nav-btn:hover { background: var(--accent-h) !important; color: #fff !important; }
.nav.scrolled .nav-btn { color: #fff !important; }

.nav-toggle {
  display: none; flex-direction: column; gap: 6px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.nav-toggle span {
  width: 22px; height: 1.5px; background: #fff; border-radius: 1px;
  transition: all .3s ease;
}
.nav.scrolled .nav-toggle span { background: var(--text); }

/* ---------- Hero ---------- */

.hero {
  background: var(--dark);
  padding: 156px 0 0;
  position: relative; overflow: hidden;
}
/* subtle radial glow */
.hero::before {
  content:''; position: absolute;
  top: -20%; right: -10%; width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(234,88,12,.08) 0%, transparent 65%);
  border-radius: 50%; pointer-events: none;
}
.hero::after {
  content:''; position: absolute;
  bottom: -30%; left: -10%; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(5,150,105,.06) 0%, transparent 65%);
  border-radius: 50%; pointer-events: none;
}

.hero-grid {
  display: grid; grid-template-columns: 1fr .85fr;
  gap: 64px; align-items: center;
  position: relative; z-index: 1;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.5);
  margin-bottom: 24px;
}
.dot-live {
  width: 7px; height: 7px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 8px rgba(5,150,105,.5);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; } 50% { opacity:.45; }
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 3.8rem);
  font-weight: 800; line-height: 1.1; letter-spacing: -.03em;
  color: #fff;
}
.hero h1 em {
  font-style: italic; font-weight: 700;
  color: var(--accent);
  /* give it a subtle orange text-shadow for warmth */
  text-shadow: 0 0 40px rgba(234,88,12,.2);
}

.hero-sub {
  margin-top: 24px; font-size: 1.05rem; line-height: 1.75;
  color: rgba(255,255,255,.5); max-width: 460px;
}

.hero-btns { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }

/* Phone mockup - white bezel style */
.hero-phone { display: flex; justify-content: center; }

.phone { filter: drop-shadow(0 32px 64px rgba(0,0,0,.35)); }

.phone-bezel {
  width: 264px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 36px;
  padding: 10px;
  position: relative;
  backdrop-filter: blur(4px);
}

.phone-cam {
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 64px; height: 22px;
  background: var(--dark); border-radius: 20px;
  z-index: 3;
}

.phone-screen {
  background: #0C1117;
  border-radius: 28px;
  padding: 40px 14px 18px;
  min-height: 420px;
  display: flex; flex-direction: column;
}

.ph-head {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,.06);
  margin-bottom: 14px;
}
.ph-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; font-weight: 700; flex-shrink: 0;
}
.ph-name { color: #fff; font-weight: 600; font-size: .82rem; }
.ph-status { color: var(--green); font-size: .68rem; margin-top: 1px; }

.ph-chat { display: flex; flex-direction: column; gap: 8px; flex: 1; }

.bubble {
  padding: 9px 13px; border-radius: 14px;
  font-size: .7rem; line-height: 1.55; max-width: 88%;
  opacity: 0; transform: translateY(8px);
  animation: bubbleIn .4s var(--ease) forwards;
}
.bubble-ai {
  background: rgba(255,255,255,.06); color: rgba(255,255,255,.8);
  align-self: flex-start; border-bottom-left-radius: 4px;
}
.bubble-user {
  background: var(--accent); color: #fff;
  align-self: flex-end; border-bottom-right-radius: 4px;
}
.bubble:nth-child(1) { animation-delay: .7s; }
.bubble:nth-child(2) { animation-delay: 1.5s; }
.bubble:nth-child(3) { animation-delay: 2.3s; }
.bubble:nth-child(4) { animation-delay: 3.1s; }
.bubble:nth-child(5) { animation-delay: 3.9s; }

@keyframes bubbleIn { to { opacity:1; transform:translateY(0); } }

/* Stats row - sits at bottom of hero */
.stats-row {
  display: flex; justify-content: center; align-items: center; gap: 48px;
  padding: 44px 0;
  margin-top: 64px;
  border-top: 1px solid rgba(255,255,255,.07);
  position: relative; z-index: 1;
}
.stat { display: flex; align-items: baseline; gap: 10px; }
.stat-val {
  font-family: var(--serif); font-size: 2.2rem; font-weight: 800;
  color: #fff; letter-spacing: -.02em;
}
.stat-lbl { font-size: .85rem; color: rgba(255,255,255,.35); font-weight: 500; }
.stat-sep { width: 1px; height: 28px; background: rgba(255,255,255,.1); }

/* Hero load animation */
.anim {
  opacity: 0; transform: translateY(18px);
  animation: fadeUp .65s var(--ease) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes fadeUp { to { opacity:1; transform:translateY(0); } }

/* ---------- Trust ---------- */

.trust {
  padding: 44px 0;
  border-bottom: 1px solid var(--border);
}
.trust p {
  text-align: center; font-size: .85rem; font-weight: 500;
  color: var(--text-3); letter-spacing: .01em;
}

/* ---------- Section Intro ---------- */

.section-intro { max-width: 580px; margin-bottom: 52px; }
.section-intro h2 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.2vw, 2.5rem);
  font-weight: 800; line-height: 1.2; letter-spacing: -.025em;
  margin-bottom: 10px;
}
.section-intro p { font-size: 1.05rem; color: var(--text-2); line-height: 1.7; }

.section-intro-light h2 { color: #fff; }
.section-intro-light p { color: rgba(255,255,255,.5); }

/* ---------- How It Works ---------- */

.how { padding: 104px 0; }

.steps-row {
  display: flex; align-items: flex-start; gap: 0;
}

.step-card {
  flex: 1;
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  transition: transform .25s ease, box-shadow .25s ease;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(17,24,39,.06);
}

.step-num {
  display: block;
  font-family: var(--serif); font-size: 2.4rem; font-weight: 800;
  color: var(--accent); opacity: .35; letter-spacing: -.03em;
  margin-bottom: 16px; line-height: 1;
}

.step-card h3 {
  font-family: var(--serif); font-size: 1.15rem; font-weight: 700;
  line-height: 1.3; letter-spacing: -.01em; margin-bottom: 8px;
}
.step-card p { font-size: .9rem; color: var(--text-2); line-height: 1.7; }

.step-line {
  width: 48px; min-width: 48px; height: 2px;
  background: var(--border); margin-top: 56px;
}

/* ---------- Features (Bento) ---------- */

.features { padding: 104px 0; background: var(--surface-alt); }

.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.bento-wide { grid-column: span 2; }

.bento-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px 26px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.bento-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(17,24,39,.05);
}

.bento-label {
  display: inline-block;
  font-size: .68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--accent); margin-bottom: 12px;
}

.bento-item h3 {
  font-family: var(--serif); font-size: 1.15rem; font-weight: 700;
  line-height: 1.35; letter-spacing: -.01em; margin-bottom: 8px;
}
.bento-item p { font-size: .9rem; color: var(--text-2); line-height: 1.7; }

/* ---------- ROI Calculator ---------- */

.calculator { padding: 104px 0; }

.calc-card {
  max-width: 660px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(17,24,39,.06);
}

.calc-body { padding: 36px 32px 8px; }

/* Input groups */
.calc-input-group {
  margin-bottom: 28px;
}

.calc-input-header {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 10px;
}

.calc-label {
  font-size: .8rem; font-weight: 600;
  color: var(--text); letter-spacing: .01em;
}

.calc-input-val {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 800;
  color: var(--accent); letter-spacing: -.02em;
  min-width: 60px; text-align: right;
}

.calc-helper {
  margin-top: 6px;
  font-size: .76rem; color: var(--text-3); line-height: 1.5;
}

/* Slider */
.calc-slider-wrap { padding: 0 2px; }

.calc-slider {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 6px;
  background: var(--border);
  border-radius: 3px;
  outline: none;
  cursor: pointer;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px;
  background: var(--accent);
  border-radius: 50%;
  border: 3px solid var(--surface);
  box-shadow: 0 2px 8px rgba(234,88,12,.3);
  cursor: grab;
  transition: transform .15s ease, box-shadow .15s ease;
}
.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 3px 12px rgba(234,88,12,.4);
}
.calc-slider::-webkit-slider-thumb:active { cursor: grabbing; }

.calc-slider::-moz-range-thumb {
  width: 22px; height: 22px;
  background: var(--accent);
  border-radius: 50%;
  border: 3px solid var(--surface);
  box-shadow: 0 2px 8px rgba(234,88,12,.3);
  cursor: grab;
}

.calc-ticks {
  display: flex; justify-content: space-between;
  padding: 6px 2px 0;
  font-size: .7rem; color: var(--text-3); font-weight: 500;
}

/* Formula bar */
.calc-formula {
  display: flex; align-items: center; gap: 12px;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
  margin: 8px 0 28px;
  font-size: .82rem; color: var(--text-2); line-height: 1.6;
}

.calc-formula-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: var(--dark);
  color: rgba(255,255,255,.6);
  font-size: .7rem; font-weight: 700; font-style: italic;
  border-radius: 8px;
}

.calc-formula strong { color: var(--text); font-weight: 700; }
.calc-formula-result { color: var(--green) !important; font-size: .92rem; }

/* Results cards */
.calc-results {
  padding: 0 32px 28px;
}

.calc-results-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}

.calc-result-card {
  border-radius: 14px;
  padding: 20px;
  display: flex; flex-direction: column; gap: 4px;
}

.calc-result-loss {
  background: var(--red-bg);
  border: 1px solid rgba(220,38,38,.12);
}
.calc-result-gain {
  background: var(--green-bg);
  border: 1px solid rgba(5,150,105,.12);
}

.calc-result-label {
  font-size: .72rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .06em; color: var(--text-2);
}

.calc-result-val {
  font-family: var(--serif); font-size: 1.65rem; font-weight: 800;
  letter-spacing: -.02em;
}
.calc-result-loss .calc-result-val { color: var(--red); }
.calc-result-gain .calc-result-val { color: var(--green); }

.calc-result-sub {
  font-size: .75rem; color: var(--text-3);
}

/* ROI breakdown */
.calc-roi-section {
  background: var(--dark);
  padding: 28px 32px 32px;
}

.calc-roi-title {
  font-family: var(--serif); font-size: 1rem; font-weight: 700;
  color: #fff; margin-bottom: 18px;
}

.calc-roi-rows {
  display: flex; flex-direction: column; gap: 0;
  margin-bottom: 16px;
}

.calc-roi-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: .85rem; color: rgba(255,255,255,.5);
}
.calc-roi-row:last-child { border-bottom: none; }

.calc-roi-row-total {
  border-bottom: 1px solid rgba(255,255,255,.12);
  padding: 12px 0;
}
.calc-roi-row-total span { color: #fff; font-weight: 600; }

.calc-roi-num {
  font-family: var(--serif); font-weight: 700;
  color: rgba(255,255,255,.8); letter-spacing: -.01em;
}

.calc-roi-cost { color: rgba(255,255,255,.4); }
.calc-roi-net { color: var(--green) !important; font-size: 1.05rem; font-weight: 800; }
.calc-roi-highlight { color: var(--accent) !important; font-size: 1.1rem; font-weight: 800; }

.calc-roi-note {
  font-size: .74rem; color: rgba(255,255,255,.3);
  margin-bottom: 20px; line-height: 1.6;
}

.calc-cta {
  width: 100%; text-align: center;
}

@media (max-width:768px) {
  .calc-body { padding: 28px 20px 8px; }
  .calc-results { padding: 0 20px 20px; }
  .calc-results-grid { grid-template-columns: 1fr; }
  .calc-roi-section { padding: 24px 20px 28px; }
  .calc-formula { flex-direction: column; text-align: center; gap: 8px; }
  .calc-formula-icon { margin: 0 auto; }
}

/* ---------- Before / After ---------- */

.compare { padding: 104px 0; background: var(--dark); color: #fff; }

.compare-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}

.compare-col {
  border-radius: 18px; padding: 36px 30px;
}

.compare-before {
  background: linear-gradient(160deg, rgba(220,38,38,.04), rgba(31,41,55,.9));
  border: 1px solid rgba(220,38,38,.12);
}
.compare-after {
  background: linear-gradient(160deg, rgba(5,150,105,.04), rgba(31,41,55,.9));
  border: 1px solid rgba(5,150,105,.12);
}

.compare-col h3 {
  font-family: var(--serif); font-size: 1.2rem; font-weight: 700;
  margin-bottom: 24px; padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.compare-before h3 { color: #FCA5A5; }
.compare-after h3 { color: #6EE7B7; }

.compare-col ul { display: flex; flex-direction: column; gap: 18px; }
.compare-col li { display: flex; gap: 12px; align-items: flex-start; }

.x-mark, .check-mark {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem; font-weight: 700; margin-top: 1px;
}
.x-mark { background: var(--red-bg); color: var(--red); }
.check-mark { background: var(--green-bg); color: var(--green); }

.compare-col li strong {
  display: block; font-size: .92rem; font-weight: 600; color: #fff; margin-bottom: 2px;
}
.compare-col li div { font-size: .85rem; color: rgba(255,255,255,.4); line-height: 1.6; }

/* ---------- Pricing ---------- */

.pricing { padding: 104px 0; }

.price-cards {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 18px; max-width: 760px;
}
.price-cards--single {
  grid-template-columns: 1fr;
  max-width: 420px; margin: 0 auto;
}

.price-card {
  border: 1px solid var(--border);
  border-radius: 18px; padding: 40px 30px;
  display: flex; flex-direction: column;
  background: var(--surface); position: relative;
}
.price-featured {
  background: var(--dark); color: #fff;
  border-color: var(--dark);
}

.price-tag {
  position: absolute; top: -10px; left: 24px;
  background: var(--accent); color: #fff;
  font-size: .67rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .07em; padding: 3px 14px; border-radius: 6px;
}

.price-card h3 {
  font-family: var(--serif); font-size: 1.15rem; font-weight: 700;
  margin-bottom: 6px;
}
.price-amt {
  font-family: var(--serif); font-size: 3rem; font-weight: 800;
  letter-spacing: -.04em; line-height: 1.1; margin-bottom: 4px;
}
.price-amt span { font-size: .95rem; font-weight: 400; opacity: .45; }
.price-desc { font-size: .88rem; color: var(--text-2); margin-bottom: 26px; }
.price-featured .price-desc { color: rgba(255,255,255,.45); }

.price-card ul { margin-bottom: 30px; flex: 1; }
.price-card li {
  padding: 6px 0; font-size: .88rem; color: var(--text-2);
  display: flex; align-items: flex-start; gap: 8px;
}
.price-card li::before {
  content: '—'; flex-shrink: 0; color: var(--text-3); margin-top: 0;
}
.price-featured li { color: rgba(255,255,255,.55); }
.price-featured li::before { color: rgba(255,255,255,.25); }

.price-card .btn-fill,
.price-card .btn-outline-dark { width: 100%; }

.price-featured .btn-fill { background: #fff; color: var(--dark); }
.price-featured .btn-fill:hover { opacity: .9; background: #fff; }

/* ---------- Testimonials ---------- */

.reviews { padding: 104px 0; background: var(--surface-alt); }

.reviews-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 16px;
}

.review-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 30px 24px;
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(17,24,39,.05);
}

.review-stars { color: var(--amber); font-size: .8rem; letter-spacing: 2px; margin-bottom: 14px; }

.review-card > p {
  font-size: .92rem; color: var(--text-2); line-height: 1.7;
  margin-bottom: 22px; flex: 1; font-style: italic;
}

.review-author { display: flex; align-items: center; gap: 10px; }
.review-av {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 700; color: #fff; flex-shrink: 0;
}
.rv1 { background: var(--accent); }
.rv2 { background: var(--amber); }
.rv3 { background: var(--green); }

.review-author strong { font-size: .85rem; display: block; }
.review-author span { font-size: .78rem; color: var(--text-3); }

/* ---------- FAQ ---------- */

.faq { padding: 104px 0; }

.faq-grid {
  display: grid; grid-template-columns: .85fr 1.15fr;
  gap: 72px; align-items: start;
}

.faq-left h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 800; letter-spacing: -.025em; margin-bottom: 12px;
  position: sticky; top: 110px;
}
.faq-left p {
  font-size: .95rem; color: var(--text-2); line-height: 1.7;
  position: sticky; top: 160px;
}
.faq-left a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

.faq-item { border-top: 1px solid var(--border); }
.faq-item:last-child { border-bottom: 1px solid var(--border); }

.faq-q {
  width: 100%; background: none; border: none;
  padding: 20px 0; display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  cursor: pointer;
  font-family: var(--sans); font-size: .92rem; font-weight: 600;
  color: var(--text); text-align: left;
  transition: color var(--fast);
}
.faq-q:hover { color: var(--accent); }
.faq-q svg {
  width: 16px; height: 16px; flex-shrink: 0;
  color: var(--text-3); transition: transform .3s var(--ease), color .2s ease;
}
.faq-item.active .faq-q svg { transform: rotate(45deg); color: var(--accent); }

.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-in {
  padding-bottom: 20px; font-size: .9rem;
  color: var(--text-2); line-height: 1.75; max-width: 500px;
}

/* ---------- CTA ---------- */

.cta {
  padding: 96px 0; background: var(--accent);
  color: #fff; position: relative; overflow: hidden;
}
.cta::before {
  content:''; position: absolute;
  top: -40%; right: -15%; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,.08), transparent 65%);
  border-radius: 50%;
}

.cta-inner { text-align: center; position: relative; z-index: 1; }

.cta h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800; letter-spacing: -.03em; margin-bottom: 10px;
}
.cta p { font-size: 1.05rem; opacity: .85; margin-bottom: 32px; }

.cta-form {
  display: flex; gap: 10px; max-width: 400px; margin: 0 auto;
}
.cta-form input {
  flex: 1; padding: 13px 18px; border-radius: 9px;
  border: 1.5px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.12);
  color: #fff; font-family: var(--sans); font-size: .9rem;
  outline: none; transition: all var(--fast);
}
.cta-form input::placeholder { color: rgba(255,255,255,.4); }
.cta-form input:focus { border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.18); }

/* ---------- Footer ---------- */

.footer { background: var(--dark); padding: 52px 0 32px; color: rgba(255,255,255,.35); }

.footer-top {
  display: grid; grid-template-columns: 1.5fr 2fr;
  gap: 56px; margin-bottom: 44px;
}
.footer-brand p { margin-top: 12px; font-size: .85rem; line-height: 1.7; max-width: 280px; }

.footer-cols { display: flex; gap: 52px; }
.footer-cols h4 {
  font-size: .75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: rgba(255,255,255,.55); margin-bottom: 14px;
}
.footer-cols a {
  display: block; font-size: .85rem; margin-bottom: 8px;
  transition: color var(--fast);
}
.footer-cols a:hover { color: rgba(255,255,255,.75); }

.footer-bottom {
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,.06);
  font-size: .78rem;
}

/* ---------- Scroll Reveal ---------- */

.reveal {
  opacity: 0; transform: translateY(18px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */

@media (max-width:1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  .faq-grid { grid-template-columns: 1fr; gap: 36px; }
  .faq-left h2, .faq-left p { position: static; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .compare-grid { grid-template-columns: 1fr; }
}

@media (max-width:768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(255,255,255,.97); backdrop-filter: blur(14px);
    padding: 20px 24px; gap: 12px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open a { color: var(--text) !important; }
  .nav-toggle { display: flex; }

  .hero { padding: 120px 0 0; }
  .hero h1 { font-size: 2.3rem; }

  .stats-row { flex-direction: column; gap: 20px; margin-top: 40px; padding: 32px 0; }
  .stat-sep { width: 40px; height: 1px; }

  .steps-row { flex-direction: column; gap: 14px; }
  .step-line { width: 2px; height: 24px; margin: 0 auto; }

  .bento { grid-template-columns: 1fr; }
  .bento-wide { grid-column: span 1; }

  .price-cards { grid-template-columns: 1fr; max-width: 380px; }
  .reviews-grid { grid-template-columns: 1fr; }

  .cta-form { flex-direction: column; }
  .footer-cols { flex-direction: column; gap: 24px; }
}

@media (max-width:480px) {
  .phone-bezel { width: 230px; }
  .phone-screen { min-height: 370px; }
}

/* ---------- More Services (cross-link section) ---------- */
.more-services { padding: 104px 0; background: var(--surface-alt); }
.more-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.more-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 36px 30px;
  color: var(--text);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.more-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(17,24,39,.08);
  border-color: var(--accent);
}
.more-label {
  display: inline-block;
  font-size: .68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--accent); margin-bottom: 14px;
}
.more-card h3 {
  font-family: var(--serif); font-size: 1.55rem; font-weight: 800;
  letter-spacing: -.02em; margin-bottom: 8px; line-height: 1.2;
}
.more-card p { font-size: .92rem; color: var(--text-2); line-height: 1.7; margin-bottom: 20px; }
.more-link { font-weight: 600; color: var(--accent); font-size: .92rem; display: inline-block; transition: transform .25s ease; }
.more-card:hover .more-link { transform: translateX(4px); }
.more-back { margin-top: 28px; text-align: center; }

@media (max-width:768px) {
  .more-grid { grid-template-columns: 1fr; }
}

/* Nav back link */
.nav-home {
  position: relative;
  padding-right: 18px !important;
  margin-right: 4px;
}
.nav-home::after {
  content: '';
  position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 14px;
  background: rgba(255,255,255,.14);
}
.nav.scrolled .nav-home::after { background: var(--border); }

/* ---------- Mobile refinements (additive — desktop unchanged) ---------- */
@media (max-width: 768px) {
  .wrap { padding: 0 20px; }

  /* Tighter mobile menu */
  .nav-links.open { padding: 18px 20px; gap: 4px; }
  .nav-links.open a { padding: 12px 4px; font-size: .98rem; }
  .nav-links.open .nav-home::after { display: none; }
  .nav-links.open .nav-btn {
    text-align: center; padding: 13px 20px !important;
    margin-top: 6px;
  }

  /* Tighter section rhythm */
  .how, .features, .calculator, .compare,
  .pricing, .reviews, .faq, .more-services { padding: 72px 0; }
  .cta { padding: 72px 0; }
  .section-intro { margin-bottom: 40px; }

  /* Card padding */
  .step-card { padding: 24px 22px; }
  .bento-item { padding: 24px 22px; }
  .compare-col { padding: 28px 22px; }
  .price-card { padding: 32px 24px; }
  .review-card { padding: 26px 22px; }
  .more-card { padding: 28px 24px; }
  .more-card h3 { font-size: 1.4rem; }

  /* Hero buttons */
  .hero-btns { gap: 10px; width: 100%; }
  .hero-btns .btn-fill,
  .hero-btns .btn-ghost { flex: 1 1 auto; justify-content: center; padding: 13px 18px; }
}

@media (max-width: 480px) {
  .wrap { padding: 0 16px; }
  .logo { font-size: 1.3rem; }

  .hero { padding: 100px 0 0; }
  .hero h1 { font-size: 1.95rem; }
  .hero-sub { font-size: .92rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn-fill,
  .hero-btns .btn-ghost { width: 100%; flex: none; }

  .stat-val { font-size: 1.75rem; }
  .section-intro h2 { font-size: 1.65rem; line-height: 1.18; }
  .section-intro p { font-size: .98rem; }

  .how, .features, .calculator, .compare,
  .pricing, .reviews, .faq, .more-services { padding: 60px 0; }
  .cta { padding: 64px 0; }
}

/* =========================================================
   Voices section — premium dark feature block
   ========================================================= */
.voices {
  position: relative;
  padding: 140px 0 132px;
  background: #0B0F1A;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

/* Layered background: dot grid + two soft color glows */
.voices-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.voices-bg-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.045) 1px, transparent 0);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse at center, #000 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 40%, transparent 80%);
  opacity: .9;
}
.voices-bg-glow {
  position: absolute;
  width: 720px;
  height: 720px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .55;
}
.voices-bg-glow--warm {
  top: -260px;
  right: -200px;
  background: radial-gradient(circle, rgba(234,88,12,.45) 0%, rgba(236,72,153,.18) 45%, transparent 70%);
}
.voices-bg-glow--cool {
  bottom: -300px;
  left: -220px;
  background: radial-gradient(circle, rgba(79,70,229,.38) 0%, rgba(14,165,233,.16) 45%, transparent 70%);
}

/* Section header */
.voices-intro {
  position: relative;
  z-index: 1;
  max-width: 660px;
  margin: 0 auto 72px;
  text-align: center;
}
.voices-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 12px;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  margin-bottom: 22px;
}
.voices-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #EA580C;
  box-shadow: 0 0 12px rgba(234,88,12,.8);
  animation: voices-dot 2.4s ease-in-out infinite;
}
@keyframes voices-dot {
  0%, 100% { opacity: .55; transform: scale(.85); }
  50%      { opacity: 1;   transform: scale(1.1);  }
}
.voices-intro h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.01em;
  color: #fff;
  margin: 0 0 16px;
}
.voices-intro p {
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255,255,255,.6);
  margin: 0;
}

/* Grid */
.voices-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

/* Per-voice color tokens */
.voice-card[data-voice="marin"] { --vc1: #FB7C4B; --vc2: #F43F8A; }
.voice-card[data-voice="cedar"] { --vc1: #6366F1; --vc2: #22D3EE; }
.voice-card[data-voice="verse"] { --vc1: #A855F7; --vc2: #EC4899; }
.voice-card[data-voice="sage"]  { --vc1: #34D399; --vc2: #60A5FA; }

/* Card */
.voice-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 44px 26px 36px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.045) 0%, rgba(255,255,255,.015) 100%),
    rgba(15,21,34,.55);
  border: 1px solid rgba(255,255,255,.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    0 1px 0 rgba(255,255,255,.04) inset,
    0 24px 48px -28px rgba(0,0,0,.6);
  transition:
    transform .35s var(--ease),
    border-color .35s var(--ease),
    box-shadow .35s var(--ease);
  overflow: hidden;
}

/* Soft per-voice tint wash inside the card */
.voice-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(120% 80% at 50% 0%, color-mix(in srgb, var(--vc1) 14%, transparent) 0%, transparent 60%);
  opacity: .8;
  pointer-events: none;
  z-index: 0;
  transition: opacity .35s var(--ease);
}

/* Gradient border that appears on hover / active */
.voice-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, var(--vc1), var(--vc2));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity .35s var(--ease);
  pointer-events: none;
  z-index: 1;
}

.voice-card > * { position: relative; z-index: 2; }

.voice-card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow:
    0 1px 0 rgba(255,255,255,.06) inset,
    0 30px 60px -28px rgba(0,0,0,.7),
    0 0 60px -20px color-mix(in srgb, var(--vc1) 60%, transparent);
}
.voice-card:hover::before,
.voice-card.is-playing::before { opacity: 1; }
.voice-card:hover::after { opacity: 1; }
.voice-card.is-playing {
  border-color: transparent;
  box-shadow:
    0 1px 0 rgba(255,255,255,.08) inset,
    0 30px 60px -24px rgba(0,0,0,.75),
    0 0 80px -16px color-mix(in srgb, var(--vc1) 70%, transparent);
}

/* Avatar — layered orb */
.voice-avatar {
  position: relative;
  width: 104px;
  height: 104px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: voice-float 5.5s ease-in-out infinite;
}
.voice-card[data-voice="cedar"] .voice-avatar { animation-delay: -1.2s; }
.voice-card[data-voice="verse"] .voice-avatar { animation-delay: -2.4s; }
.voice-card[data-voice="sage"]  .voice-avatar { animation-delay: -3.6s; }
@keyframes voice-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

.voice-avatar-glow {
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--vc1) 55%, transparent) 0%, transparent 65%);
  filter: blur(14px);
  opacity: .85;
  transition: opacity .35s var(--ease), inset .35s var(--ease);
  pointer-events: none;
}
.voice-card:hover .voice-avatar-glow,
.voice-card.is-playing .voice-avatar-glow {
  opacity: 1;
  inset: -26px;
}

.voice-avatar-orb {
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,.55) 0%, rgba(255,255,255,0) 38%),
    linear-gradient(135deg, var(--vc1) 0%, var(--vc2) 100%);
  box-shadow:
    0 14px 36px -10px color-mix(in srgb, var(--vc1) 70%, transparent),
    0 0 0 1px rgba(255,255,255,.10) inset,
    0 -10px 30px -10px color-mix(in srgb, var(--vc2) 50%, transparent) inset;
}

.voice-bars {
  position: relative;
  width: 54px;
  height: 38px;
  z-index: 1;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.25));
}
.voice-bars .vb {
  fill: #fff;
  transform-box: fill-box;
  transform-origin: center;
  transition: transform .25s var(--ease);
}

/* Animated waveform while playing */
.voice-card.is-playing .voice-bars .vb-1 { animation: vb-pulse 1.05s ease-in-out infinite; }
.voice-card.is-playing .voice-bars .vb-2 { animation: vb-pulse 1.20s ease-in-out infinite -0.15s; }
.voice-card.is-playing .voice-bars .vb-3 { animation: vb-pulse 0.95s ease-in-out infinite -0.30s; }
.voice-card.is-playing .voice-bars .vb-4 { animation: vb-pulse 1.15s ease-in-out infinite -0.45s; }
.voice-card.is-playing .voice-bars .vb-5 { animation: vb-pulse 1.00s ease-in-out infinite -0.60s; }
@keyframes vb-pulse {
  0%, 100% { transform: scaleY(0.55); }
  50%      { transform: scaleY(1.25); }
}

/* Meta */
.voice-meta { margin-bottom: 28px; }
.voice-label {
  display: inline-block;
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--vc1) 75%, white);
  margin-bottom: 8px;
}
.voice-name {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -.01em;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.15;
}
.voice-desc {
  font-family: var(--sans);
  font-size: .92rem;
  line-height: 1.55;
  color: rgba(255,255,255,.62);
  margin: 0;
  max-width: 230px;
  margin-left: auto;
  margin-right: auto;
}

/* Play button */
.voice-play {
  position: relative;
  width: 60px;
  height: 60px;
  margin-top: auto;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition:
    transform .25s var(--ease),
    background .25s var(--ease),
    border-color .25s var(--ease),
    box-shadow .25s var(--ease);
}
.voice-play:hover {
  transform: scale(1.06);
  border-color: transparent;
  background: linear-gradient(135deg, var(--vc1), var(--vc2));
  box-shadow:
    0 12px 30px -8px color-mix(in srgb, var(--vc1) 65%, transparent),
    0 0 0 1px rgba(255,255,255,.12) inset;
}
.voice-play:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}
.voice-card.is-playing .voice-play {
  background: linear-gradient(135deg, var(--vc1), var(--vc2));
  border-color: transparent;
  box-shadow:
    0 12px 30px -8px color-mix(in srgb, var(--vc1) 70%, transparent),
    0 0 0 1px rgba(255,255,255,.14) inset;
}

/* Pulse ring on the play button */
.voice-play-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
  box-shadow: 0 0 0 0 rgba(255,255,255,0);
}
.voice-card.is-playing .voice-play-ring {
  animation: voice-pulse 1.8s var(--ease) infinite;
}
@keyframes voice-pulse {
  0%   { box-shadow: 0 0 0 0   color-mix(in srgb, var(--vc1) 60%, transparent); }
  70%  { box-shadow: 0 0 0 18px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0   rgba(255,255,255,0); }
}

.voice-icon {
  width: 22px;
  height: 22px;
  fill: currentColor;
}
.voice-icon--play  { display: block; transform: translateX(1px); }
.voice-icon--pause { display: none; }
.voice-card.is-playing .voice-icon--play  { display: none; }
.voice-card.is-playing .voice-icon--pause { display: block; transform: none; }

/* Responsive */
@media (max-width: 1100px) {
  .voices-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 768px) {
  .voices { padding: 96px 0 88px; }
  .voices-intro { margin-bottom: 56px; }
  .voice-card { padding: 38px 22px 30px; }
  .voice-avatar { width: 92px; height: 92px; margin-bottom: 24px; }
  .voice-bars { width: 46px; height: 32px; }
  .voice-name { font-size: 1.4rem; }
}
@media (max-width: 560px) {
  .voices { padding: 80px 0 72px; }
  .voices-grid { grid-template-columns: 1fr; gap: 16px; max-width: 420px; margin: 0 auto; }
  .voice-card { padding: 36px 22px 28px; }
}

@media (prefers-reduced-motion: reduce) {
  .voice-avatar,
  .voices-eyebrow-dot,
  .voice-card.is-playing .voice-bars .vb,
  .voice-card.is-playing .voice-play-ring { animation: none !important; }
}
