/* ========== SELF-HOSTED FONTS ========== */
@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/dm-sans-variable.woff2') format('woff2');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/dm-sans-italic-variable.woff2') format('woff2');
  font-weight: 400 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Fraunces';
  src: url('../fonts/fraunces-variable.woff2') format('woff2');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fraunces';
  src: url('../fonts/fraunces-italic-variable.woff2') format('woff2');
  font-weight: 300 700;
  font-style: italic;
  font-display: swap;
}

/* ========== RESET & VARIABLES ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal-deep: #00838F;
  --teal-mid: #0097A7;
  --teal-light: #1FB6CC;
  --teal-pale: #E0F7FA;
  --emerald: #10b981;
  --emerald-light: #d1fae5;
  --cream: #FDFBF7;
  --cream-dark: #F5F0E8;
  --warm-white: #FFFDF9;
  --text-primary: #1a2332;
  --text-secondary: #4a5568;
  --text-muted: #718096;
  --text-on-dark: #F0FAFA;
  --border-light: #e8e2d8;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.12), 0 8px 20px rgba(0,0,0,0.06);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --section-padding: clamp(60px, 10vw, 120px) 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--warm-white);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; font-family: inherit; }

/* ========== UTILITY ========== */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.container--narrow {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.2; }

h1 { font-size: clamp(2.2rem, 4.5vw, 3.2rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); }

.section-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-bottom: 16px;
  display: block;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 80px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.01em;
}

.btn--primary {
  background: var(--teal-deep);
  color: white;
  box-shadow: 0 4px 16px rgba(0,131,143,0.3);
}
.btn--primary:hover {
  background: #006d77;
  box-shadow: 0 6px 24px rgba(0,131,143,0.4);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--teal-deep);
  border: 2px solid var(--teal-deep);
}
.btn--outline:hover {
  background: var(--teal-pale);
}

.btn--large {
  padding: 20px 44px;
  font-size: 1.1rem;
}

.btn--white {
  background: white;
  color: var(--teal-deep);
  box-shadow: var(--shadow-md);
}
.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ========== SCROLL REVEAL ========== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ========== NAVIGATION ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all 0.35s ease;
  background: transparent;
}
.nav.scrolled {
  background: rgba(253, 251, 247, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
  padding: 12px 0;
}
.nav.menu-open {
  background: rgba(253, 251, 247, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo {
  display: flex;
  align-items: center;
  color: var(--teal-deep);
}
.nav__logo-image {
  display: block;
  width: auto;
  height: 56px;
  max-width: min(360px, 70vw);
}
.nav__menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 26px;
  margin-left: auto;
  margin-right: 20px;
}
.nav__link {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(26,35,50,0.86);
  transition: color 0.2s ease;
}
.nav__link:hover,
.nav__link:focus-visible {
  color: var(--teal-deep);
}
.nav__cta .btn {
  padding: 10px 28px;
  font-size: 0.9rem;
}
.nav__toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(0, 131, 143, 0.28);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--teal-deep);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.nav__toggle:hover,
.nav__toggle:focus-visible {
  border-color: var(--teal-deep);
  box-shadow: 0 4px 14px rgba(0, 131, 143, 0.16);
}
.nav__toggle-line {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.22s ease, opacity 0.2s ease;
}
.nav__toggle.is-open .nav__toggle-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav__toggle.is-open .nav__toggle-line:nth-child(2) {
  opacity: 0;
}
.nav__toggle.is-open .nav__toggle-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

#demo,
#pricing,
#faq {
  scroll-margin-top: 140px;
}
#hero-audio-demo {
  scroll-margin-top: 140px;
}
#demo-label,
#pricing-label,
#faq-label {
  scroll-margin-top: 128px;
}

/* ========== SECTION 1: HERO ========== */
.hero {
  padding: clamp(120px, 15vw, 140px) 0 var(--section-padding);
  position: relative;
  background: var(--warm-white);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 70%;
  height: 120%;
  background: radial-gradient(ellipse, rgba(31,182,204,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent 0%, var(--cream) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Landing page hero background art (front page). */
body.sitestaffr-landing-page .hero {
  background: #fffefc;
}
body.sitestaffr-landing-page .hero::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: url('../images/hero-background1.png') calc(100% + 16vw) center / clamp(1200px, 96vw, 2200px) auto no-repeat;
  opacity: 0.95;
  mix-blend-mode: multiply;
  -webkit-mask-image: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0.62) 54%, rgba(0,0,0,1) 68%, rgba(0,0,0,1) 100%);
  mask-image: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0.62) 54%, rgba(0,0,0,1) 68%, rgba(0,0,0,1) 100%);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}
body.sitestaffr-landing-page .hero > .container {
  position: relative;
  z-index: 1;
}
body.sitestaffr-landing-page .hero__visual {
  position: relative;
  isolation: isolate;
}
body.sitestaffr-landing-page .hero__visual::before { display: none; }
body.sitestaffr-landing-page .hero__visual > * {
  position: relative;
  z-index: 1;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero__content { position: relative; z-index: 2; }
.hero__tagline {
  display: inline-block;
  background: var(--teal-pale);
  color: var(--teal-deep);
  padding: 6px 16px;
  border-radius: 40px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero h1 {
  margin-bottom: 24px;
  color: var(--text-primary);
}
.hero__headline-prefix,
.hero__headline-focus {
  display: block;
}
.hero__headline-focus {
  background: linear-gradient(to right, var(--teal-deep), var(--teal-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
  display: block;
}
.hero__subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 480px;
  margin-bottom: 14px;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.hero__listen-link {
  color: var(--teal-deep);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}
.hero__listen-link:hover { gap: 14px; }
.hero__listen-link svg { transition: transform 0.3s ease; }
.hero__listen-link:hover svg { transform: translateX(3px); }
.hero__no-cc {
  display: block;
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Widget Mockup */
.hero__visual {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.hero-caller {
  position: static;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}
.hero-caller__image {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
}

/* ========== HOMEPAGE: DEMO SECTION ========== */
.demo-section {
  padding: var(--section-padding);
  background: var(--cream);
}
.demo-section__header {
  text-align: center;
  margin-bottom: 40px;
}
.demo-section__header h2 {
  color: var(--teal-deep);
}

/* ========== HOMEPAGE: PAIN SECTION ========== */
.pain-section {
  padding: var(--section-padding);
}
.pain-section__content {
  text-align: center;
}
.pain-section__content h2 {
  max-width: 700px;
  margin: 0 auto 48px;
  color: var(--teal-deep);
}
.pain-section__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.pain-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 28px 20px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pain-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.pain-card__icon {
  font-size: 1.8rem;
  margin-bottom: 4px;
}
.pain-card__label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
}
.pain-card__amount {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--teal-deep);
}
.pain-card__detail {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ========== HOMEPAGE: OUTCOMES SECTION ========== */
.outcomes-section {
  padding: var(--section-padding);
  background: var(--cream);
}
.outcomes-section__header {
  text-align: center;
  margin-bottom: 48px;
}
.outcomes-section__header h2 {
  max-width: 650px;
  margin: 0 auto;
  color: var(--teal-deep);
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.outcome-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.outcome-card__icon {
  margin-bottom: 16px;
}
.outcome-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.outcome-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ========== FEATURES PAGE ========== */

/* --- Hero --- */
.feat-hero {
  padding: clamp(140px, 18vw, 200px) 0 clamp(60px, 8vw, 100px);
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% -10%, rgba(31,182,204,0.10) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 30%, rgba(16,185,129,0.07) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 100%, rgba(0,131,143,0.04) 0%, transparent 60%),
    var(--warm-white);
}
.feat-hero__pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Ccircle cx='20' cy='20' r='1' fill='%2300838F' opacity='0.04'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.feat-hero__content {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}
.feat-hero h1 {
  color: var(--teal-deep);
  margin-bottom: 20px;
}
.feat-hero__subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto;
}

/* --- Sections (shared) --- */
.feat-section {
  padding: var(--section-padding);
  position: relative;
}
.feat-section--alt {
  background: var(--cream);
}
.feat-section--voice {
  background: var(--cream);
}
.feat-section__header {
  text-align: center;
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.feat-section__header h2 {
  color: var(--teal-deep);
  margin-bottom: 12px;
}
.feat-section__subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto;
}
.feat-section__centered {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.feat-section__centered h2 {
  color: var(--teal-deep);
  margin-bottom: 16px;
}

/* --- Split layout --- */
.feat-section__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.feat-section__split--reverse {
  direction: rtl;
}
.feat-section__split--reverse > * {
  direction: ltr;
}
.feat-section__text h2 {
  color: var(--teal-deep);
  margin-bottom: 12px;
}
.feat-section__text p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}
.feat-section__media {
  position: relative;
}
.feat-section__media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.feat-section__media:hover img {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

/* --- Checkmark list --- */
.feat-check-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}
.feat-check-list li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  padding-left: 30px;
  position: relative;
  line-height: 1.6;
}
.feat-check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--teal-pale);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2300838F' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

/* --- Sub-features (AI Knowledge) --- */
.feat-subfeatures {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 8px;
}
.feat-subfeature {
  padding: 20px 24px;
  border-radius: var(--radius-md);
  background: white;
  border: 1px solid var(--border-light);
  position: relative;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.feat-section--alt .feat-subfeature {
  background: var(--warm-white);
}
.feat-subfeature:hover {
  box-shadow: var(--shadow-sm);
  border-color: rgba(0,131,143,0.2);
}
.feat-subfeature::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--teal-light), var(--teal-deep));
}
.feat-subfeature__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--teal-deep);
  margin-bottom: 6px;
}
.feat-subfeature__desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 0;
}

/* --- Cards row (recaps section) --- */
.feat-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feat-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.feat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.feat-card__image {
  background: linear-gradient(135deg, var(--cream) 0%, var(--teal-pale) 100%);
  padding: 20px;
  overflow: hidden;
}
.feat-card__image img {
  border-radius: var(--radius-sm);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.feat-card:hover .feat-card__image img {
  transform: scale(1.03);
}
.feat-card h3 {
  font-size: 1.1rem;
  padding: 22px 24px 8px;
  color: var(--text-primary);
}
.feat-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
  padding: 0 24px 24px;
}

/* --- Languages section --- */
.feat-section--languages {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.feat-languages__accent {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 50%, rgba(31,182,204,0.06) 0%, transparent 40%),
    radial-gradient(circle at 85% 50%, rgba(0,131,143,0.05) 0%, transparent 40%);
  pointer-events: none;
}
.feat-section--languages .feat-section__centered {
  max-width: 640px;
  position: relative;
}

/* --- FAQ section --- */
.feat-faq {
  padding: var(--section-padding);
  background: var(--warm-white);
}
.feat-faq__header {
  text-align: center;
  margin-bottom: 40px;
}
.feat-faq__header h2 {
  color: var(--teal-deep);
}

/* --- CTA section --- */
.feat-cta {
  padding: clamp(80px, 12vw, 140px) 0;
  background:
    linear-gradient(135deg, rgba(0, 131, 143, 0.92) 0%, rgba(0, 77, 64, 0.95) 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.feat-cta__pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Ccircle cx='30' cy='30' r='1.5' fill='%23ffffff' opacity='0.05'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.feat-cta__content {
  position: relative;
  z-index: 1;
}
.feat-cta__content h2 {
  color: white;
  margin-bottom: 32px;
}
.feat-cta__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.feat-cta .btn--outline {
  color: white;
  border-color: rgba(255,255,255,0.5);
}
.feat-cta .btn--outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: white;
}
.feat-cta .btn--primary {
  background: white;
  color: var(--teal-deep);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.feat-cta .btn--primary:hover {
  background: var(--teal-pale);
  box-shadow: 0 6px 28px rgba(0,0,0,0.2);
}

/* --- Features page responsive --- */
@media (max-width: 900px) {
  .feat-section__split {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .feat-section__split--reverse {
    direction: ltr;
  }
  .feat-section__media {
    order: -1;
    max-width: 480px;
    margin: 0 auto;
  }
  .feat-section__split--reverse .feat-section__media {
    order: -1;
  }
}
@media (max-width: 768px) {
  .feat-cards-row {
    grid-template-columns: 1fr;
  }
  .feat-cta__buttons {
    flex-direction: column;
    align-items: center;
  }
  .feat-cta__buttons .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

/* ========== PRICING PAGE ========== */

/* -- Hero -- */
.price-hero {
  padding: clamp(140px, 18vw, 200px) 0 clamp(40px, 6vw, 60px);
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 50% at 50% 10%, rgba(31,182,204,0.07) 0%, transparent 60%),
    var(--warm-white);
}
.price-hero__content {
  max-width: 620px;
  margin: 0 auto;
}
.price-hero h1 {
  color: var(--teal-deep);
  margin-bottom: 12px;
}
.price-hero__subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* -- Every Plan Includes -- */
.price-includes {
  padding: clamp(40px, 6vw, 80px) 0 clamp(20px, 4vw, 40px);
}
.price-includes__header {
  text-align: center;
  margin-bottom: 36px;
}
.price-includes__header h2 {
  color: var(--teal-deep);
  margin-top: 10px;
}
.price-includes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 820px;
  margin: 0 auto;
}
.price-includes__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.price-includes__item:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.price-includes__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--teal-pale);
  color: var(--teal-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.price-includes__label {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.35;
}

/* -- Pricing Tiers -- */
.price-tiers {
  padding: clamp(40px, 6vw, 80px) 0 var(--section-padding);
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
}
.price-tier {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 24px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  text-align: center;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.price-tier:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.price-tier--popular {
  border: 2px solid var(--teal-light);
  box-shadow: var(--shadow-md);
  transform: scale(1.03);
  background: linear-gradient(180deg, rgba(224,247,250,0.25) 0%, white 30%);
}
.price-tier--popular:hover {
  box-shadow: var(--shadow-lg);
  transform: scale(1.03) translateY(-4px);
}
.price-tier__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--teal-light), var(--teal-deep));
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 18px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,131,143,0.25);
}
.price-tier__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--teal-deep);
  margin-bottom: 8px;
}
.price-tier__price {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1;
}
.price-tier__period {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.price-tier__divider {
  height: 1px;
  background: var(--border-light);
  margin: 0 0 16px;
}
.price-tier__minutes {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--teal-deep);
  margin-bottom: 16px;
  padding: 8px 0;
  background: var(--teal-pale);
  border-radius: var(--radius-sm);
}
.price-tier__features {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-bottom: 24px;
  flex-grow: 1;
}
.price-tier__features li {
  font-size: 0.88rem;
  color: var(--text-secondary);
  padding: 6px 0 6px 24px;
  position: relative;
  line-height: 1.45;
}
.price-tier__features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--emerald);
  font-weight: 700;
  font-size: 0.85rem;
}
.price-tier__best-for {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.4;
}
.price-tier .btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

/* -- Add-On Minutes -- */
.price-addon-section {
  padding: 0 0 clamp(60px, 10vw, 120px);
}
.price-addon-card {
  max-width: 660px;
  margin: 0 auto;
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 36px 40px;
  text-align: center;
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}
.price-addon-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal-light), var(--emerald));
}
.price-addon-card h3 {
  font-family: var(--font-display);
  color: var(--teal-deep);
  margin-bottom: 10px;
}
.price-addon-card p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* -- FAQ -- */
.price-faq {
  padding: var(--section-padding);
  background: var(--cream);
}
.price-faq__header {
  text-align: center;
  margin-bottom: 40px;
}
.price-faq__header h2 {
  color: var(--teal-deep);
}

/* -- Final CTA -- */
.price-final-cta {
  padding: clamp(80px, 12vw, 140px) 0;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 50% at 50% 80%, rgba(31,182,204,0.05) 0%, transparent 60%),
    var(--warm-white);
}
.price-final-cta__content {
  max-width: 500px;
  margin: 0 auto;
}
.price-final-cta h2 {
  color: var(--teal-deep);
  margin-bottom: 8px;
}
.price-final-cta__subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 32px;
}

/* -- Pricing Page Responsive -- */
@media (max-width: 960px) {
  .price-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .price-tier--popular {
    transform: none;
  }
  .price-tier--popular:hover {
    transform: translateY(-4px);
  }
  .price-includes__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .price-grid {
    grid-template-columns: 1fr;
  }
  .price-includes__grid {
    grid-template-columns: 1fr;
  }
  .price-includes--homepage .price-includes__grid {
    padding: 28px 20px 20px;
    grid-template-columns: 1fr 1fr;
  }
  .price-addon-card {
    padding: 28px 24px;
  }
}

/* ========== SECTION 3: COST OF MISSED CALLS ========== */
.cost-section {
  padding: var(--section-padding);
  background: var(--warm-white);
}
.cost-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.cost-section h2 {
  margin-bottom: 24px;
}
.cost-section__text {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.75;
}
.cost-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.cost-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cost-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.cost-card__icon {
  font-size: 28px;
  margin-bottom: 12px;
}
.cost-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 6px;
}
.cost-card__amount {
  font-weight: 700;
  color: #c53030;
  font-size: 1.4rem;
  margin-bottom: 4px;
}
.cost-card__detail {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ========== LANGUAGE SECTION ========== */
.language-section {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--warm-white);
  border-top: 1px double #e8e2d8;
  border-bottom: 1px double #e8e2d8;
  position: relative;
  overflow: hidden;
  color: var(--text-primary);
}
.language-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140%;
  height: 100%;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(0,131,143,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(31,182,204,0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(16,185,129,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.language-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.38;
}

/* Floating language words */
.language-section__floaters {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.language-float {
  position: absolute;
  font-family: var(--font-body);
  font-weight: 500;
  opacity: 0;
  animation: langFloat linear infinite;
  white-space: nowrap;
  will-change: transform, opacity;
}
@keyframes langFloat {
  0% {
    transform: translateY(20px) rotate(var(--rot, 0deg));
    opacity: 0;
  }
  8% {
    opacity: var(--peak-opacity, 0.12);
  }
  50% {
    opacity: var(--peak-opacity, 0.12);
  }
  92% {
    opacity: var(--peak-opacity, 0.12);
  }
  100% {
    transform: translateY(-30px) rotate(var(--rot, 0deg));
    opacity: 0;
  }
}

/* Floating word instances — positioned and timed via inline styles */
.language-float:nth-child(1)  { left: 3%;  top: 12%; font-size: 1.4rem; --peak-opacity: 0.18; --rot: -3deg; animation-duration: 18s; animation-delay: 0s; color: rgba(0, 86, 96, 0.88); }
.language-float:nth-child(2)  { left: 88%; top: 8%;  font-size: 1.1rem; --peak-opacity: 0.14; --rot: 2deg;  animation-duration: 22s; animation-delay: -4s; color: rgba(0, 123, 136, 0.82); }
.language-float:nth-child(3)  { left: 15%; top: 75%; font-size: 1.6rem; --peak-opacity: 0.16; --rot: -1deg; animation-duration: 20s; animation-delay: -2s; color: rgba(0, 101, 112, 0.86); }
.language-float:nth-child(4)  { left: 72%; top: 82%; font-size: 1.0rem; --peak-opacity: 0.13; --rot: 4deg;  animation-duration: 24s; animation-delay: -8s; color: rgba(11, 139, 97, 0.72); }
.language-float:nth-child(5)  { left: 45%; top: 5%;  font-size: 1.3rem; --peak-opacity: 0.15; --rot: -2deg; animation-duration: 19s; animation-delay: -6s; color: rgba(0, 94, 104, 0.84); }
.language-float:nth-child(6)  { left: 92%; top: 45%; font-size: 1.5rem; --peak-opacity: 0.17; --rot: 1deg;  animation-duration: 21s; animation-delay: -10s; color: rgba(0, 127, 141, 0.84); }
.language-float:nth-child(7)  { left: 5%;  top: 42%; font-size: 1.2rem; --peak-opacity: 0.14; --rot: 3deg;  animation-duration: 23s; animation-delay: -3s; color: rgba(0, 86, 96, 0.8); }
.language-float:nth-child(8)  { left: 60%; top: 18%; font-size: 0.95rem;--peak-opacity: 0.12; --rot: -4deg; animation-duration: 26s; animation-delay: -12s; color: rgba(11, 139, 97, 0.66); }
.language-float:nth-child(9)  { left: 30%; top: 88%; font-size: 1.1rem; --peak-opacity: 0.14; --rot: 2deg;  animation-duration: 17s; animation-delay: -1s; color: rgba(0, 123, 136, 0.8); }
.language-float:nth-child(10) { left: 78%; top: 55%; font-size: 1.35rem;--peak-opacity: 0.15; --rot: -2deg; animation-duration: 20s; animation-delay: -7s; color: rgba(0, 101, 112, 0.82); }
.language-float:nth-child(11) { left: 22%; top: 30%; font-size: 1.0rem; --peak-opacity: 0.13; --rot: 3deg;  animation-duration: 25s; animation-delay: -14s; color: rgba(11, 139, 97, 0.68); }
.language-float:nth-child(12) { left: 55%; top: 68%; font-size: 1.5rem; --peak-opacity: 0.16; --rot: -1deg; animation-duration: 19s; animation-delay: -5s; color: rgba(0, 94, 104, 0.82); }
.language-float:nth-child(13) { left: 82%; top: 30%; font-size: 1.15rem;--peak-opacity: 0.14; --rot: 2deg;  animation-duration: 22s; animation-delay: -9s; color: rgba(0, 123, 136, 0.78); }
.language-float:nth-child(14) { left: 40%; top: 40%; font-size: 0.9rem; --peak-opacity: 0.11; --rot: -3deg; animation-duration: 28s; animation-delay: -16s; color: rgba(0, 86, 96, 0.7); }
.language-float:nth-child(15) { left: 10%; top: 60%; font-size: 1.25rem;--peak-opacity: 0.15; --rot: 1deg;  animation-duration: 21s; animation-delay: -11s; color: rgba(0, 127, 141, 0.8); }
.language-float:nth-child(16) { left: 67%; top: 92%; font-size: 1.0rem; --peak-opacity: 0.12; --rot: -2deg; animation-duration: 24s; animation-delay: -13s; color: rgba(11, 139, 97, 0.62); }

/* Center content */
.language-section .container {
  position: relative;
  z-index: 2;
}
.language-section__inner {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.language-section .section-label {
  color: var(--teal-deep);
}
.language-section h2 {
  margin-bottom: 20px;
  color: var(--text-primary);
  white-space: nowrap;
}
.language-section h2 em {
  font-style: italic;
  color: var(--teal);
}
.language-heading__phrase {
  white-space: nowrap;
}
.language-section__desc {
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(60, 72, 96, 0.86);
  margin-bottom: 40px;
}
.language-section__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.language-card {
  background: rgba(255,255,255,0.62);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0,131,143,0.18);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: left;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.language-card:hover {
  background: rgba(255,255,255,0.82);
  border-color: rgba(0,131,143,0.24);
}
.language-card__icon {
  font-size: 28px;
  margin-bottom: 14px;
  display: block;
  color: var(--teal-deep);
  line-height: 1;
}
.language-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.language-card__text {
  font-size: 0.88rem;
  color: rgba(60, 72, 96, 0.8);
  line-height: 1.6;
}
.language-section__stat {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(56, 76, 96, 0.82);
  width: fit-content;
  max-width: min(92%, 980px);
  margin-left: auto;
  margin-right: auto;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(0,131,143,0.2);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  position: relative;
  z-index: 3;
}
.language-section__stat-globe {
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  flex: 0 0 36px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: rgba(31,182,204,0.16);
  border: 1px solid rgba(31,182,204,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-deep);
}
.language-section__stat strong {
  color: var(--teal-deep);
  font-weight: 700;
}

@media (max-width: 1366px) {
  .language-section {
    padding-bottom: clamp(64px, 8vw, 96px);
  }
}

@media (max-width: 768px) {
  .language-section__cards { grid-template-columns: 1fr; }
  .language-section {
    padding-bottom: clamp(56px, 10vw, 80px);
  }
  .language-section__stat {
    max-width: 92%;
    font-size: 0.84rem;
    line-height: 1.4;
    text-align: center;
    border-radius: 22px;
    padding: 10px 14px;
  }
  .language-section__stat-globe {
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    flex: 0 0 32px;
  }
  .language-section h2 {
    white-space: normal;
  }
  .language-float { font-size: 0.9rem !important; }
  .language-float:nth-child(n+10) { display: none; }
}
@media (max-width: 480px) {
  .language-float:nth-child(n+7) { display: none; }
}

/* ========== WHAT YOU GET SECTION ========== */
.what-you-get {
  padding: var(--section-padding);
  background: var(--cream);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.what-you-get__header {
  text-align: center;
  margin-bottom: 56px;
}
.what-you-get h2 { margin-bottom: 16px; }
.what-you-get__subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.what-you-get__showcase {
  text-align: center;
}

/* Three-column layout: callouts | document | callouts */
.what-you-get__layout {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Callout columns */
.what-you-get__callouts {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.what-you-get__callouts--left {
  text-align: right;
}
.what-you-get__callouts--right {
  text-align: left;
}
.what-you-get__callout {
  max-width: 220px;
}
.what-you-get__callouts--left .what-you-get__callout {
  margin-left: auto;
}
.what-you-get__callouts--right .what-you-get__callout {
  margin-right: auto;
}
.what-you-get__callout-icon {
  margin-bottom: 8px;
}
.what-you-get__callout-icon svg {
  color: var(--teal-light);
}
.what-you-get__callouts--left .what-you-get__callout-icon {
  display: flex;
  justify-content: flex-end;
}
.what-you-get__callouts--right .what-you-get__callout-icon {
  display: flex;
  justify-content: flex-start;
}
.what-you-get__callout-title {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text-primary);
}
.what-you-get__callout-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Document wrapper — holds perspective context */
.what-you-get__doc-wrapper {
  perspective: 1200px;
}

/* The document itself */
.what-you-get__doc {
  position: relative;
  width: 440px;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: rotateX(4deg) rotateY(6deg) rotateZ(-1deg);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  font-size: 0.72rem;
  line-height: 1.5;
  text-align: left;
}
.what-you-get__doc:hover {
  transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1.05);
  box-shadow: var(--shadow-xl);
}

/* Document header bar */
.what-you-get__doc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  border-bottom: 1px solid var(--border-light);
}
.what-you-get__doc-logo-img {
  height: 28px;
  width: auto;
}
.what-you-get__doc-print-btn {
  display: inline-block;
  padding: 4px 12px;
  background: var(--teal-light);
  color: white;
  border-radius: 6px;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* Business name heading */
.what-you-get__doc-business {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-primary);
  padding: 16px 20px 4px;
}

/* Phone link in recap */
.what-you-get__doc-link {
  color: var(--teal-light);
  text-decoration: underline;
  pointer-events: none;
}

/* Document sections (recap, transcript) */
.what-you-get__doc-section {
  margin: 16px 20px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}
.what-you-get__doc-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 0.8rem;
}
.what-you-get__doc-section-header span {
  color: var(--text-muted);
  font-size: 0.65rem;
}
.what-you-get__doc-recap p {
  margin: 0 0 8px;
  color: var(--text-secondary);
}
.what-you-get__doc-recap ul {
  margin: 0 0 10px 16px;
  color: var(--text-secondary);
}
.what-you-get__doc-followup {
  padding-top: 10px;
  border-top: 1px solid var(--border-light);
}

/* Chat messages */
.what-you-get__doc-messages {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.what-you-get__doc-msg {
  padding: 10px 12px;
  border-radius: var(--radius-sm);
}
.what-you-get__doc-msg--ai {
  background: #f7f7f8;
  border: 1px solid #ececec;
}
.what-you-get__doc-msg--visitor {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.what-you-get__doc-msg-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--teal-light);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.what-you-get__doc-msg-body {
  flex: 1;
  padding: 10px 12px;
  border: 1px solid #b2dfdb;
  border-left: 3px solid var(--teal-light);
  border-radius: var(--radius-sm);
  background: white;
}
.what-you-get__doc-msg-meta {
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-bottom: 3px;
}
.what-you-get__doc-msg-meta strong {
  color: var(--text-primary);
}
.what-you-get__doc-msg--visitor .what-you-get__doc-msg-meta strong {
  color: var(--teal-light);
}
.what-you-get__doc-msg p {
  margin: 0;
  color: var(--text-secondary);
}

/* Bottom fade */
.what-you-get__doc-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to bottom, transparent, white);
  pointer-events: none;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}

/* ---- Mobile: stack callouts above/below ---- */
@media (max-width: 900px) {
  .what-you-get__layout {
    grid-template-columns: 1fr;
    gap: 32px;
    justify-items: center;
  }
  .what-you-get__callouts {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
  }
  .what-you-get__callouts--left {
    order: 1;
    text-align: center;
  }
  .what-you-get__callouts--right {
    order: 2;
    text-align: center;
  }
  .what-you-get__doc-wrapper {
    order: 3;
    perspective: none;
  }
  .what-you-get__callouts--left .what-you-get__callout,
  .what-you-get__callouts--right .what-you-get__callout {
    margin: 0;
    text-align: center;
  }
  .what-you-get__callouts--left .what-you-get__callout-icon,
  .what-you-get__callouts--right .what-you-get__callout-icon {
    justify-content: center;
  }
  .what-you-get__doc {
    transform: none;
    width: 100%;
    max-width: 420px;
  }
  .what-you-get__doc:hover {
    transform: none;
    box-shadow: var(--shadow-lg);
  }
}

/* ========== SECTION 4: AUDIO DEMO ========== */
.demo-section {
  padding: var(--section-padding);
  background: linear-gradient(160deg, #007f8c 0%, #008997 42%, #00717d 100%);
  color: var(--text-on-dark);
  position: relative;
  overflow: hidden;
}
.demo-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(255,255,255,0.08) 0%, transparent 48%),
    radial-gradient(circle at 82% 78%, rgba(255,255,255,0.06) 0%, transparent 44%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1.5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
  opacity: 0.9;
  pointer-events: none;
}
.demo-section::after {
  content: '';
  position: absolute;
  inset: -8% -4%;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1600 900' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='2' stroke-opacity='0.14'%3E%3Cpath d='M-40 600 C170 470 340 700 560 560 C760 430 980 700 1210 550 C1370 450 1510 530 1660 480'/%3E%3Cpath d='M-40 510 C180 390 340 620 560 480 C760 360 980 620 1220 470 C1380 380 1520 460 1660 410'/%3E%3Cpath d='M-40 690 C170 570 340 790 560 650 C780 530 980 770 1200 630 C1380 530 1510 630 1660 580'/%3E%3C/g%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Crect x='130' y='220' width='8' height='130' rx='4'/%3E%3Crect x='148' y='188' width='8' height='162' rx='4'/%3E%3Crect x='166' y='238' width='8' height='112' rx='4'/%3E%3Crect x='1418' y='228' width='8' height='122' rx='4'/%3E%3Crect x='1436' y='194' width='8' height='156' rx='4'/%3E%3Crect x='1454' y='246' width='8' height='104' rx='4'/%3E%3C/g%3E%3C/svg%3E") center/cover no-repeat;
  opacity: 0.28;
  z-index: 0;
  pointer-events: none;
}
.demo-section .container { position: relative; z-index: 1; text-align: center; }
.demo-section .section-label { color: var(--teal-pale); }
.demo-section h2 { margin-bottom: 16px; }
.demo-section__subtitle {
  font-size: 1.1rem;
  color: rgba(240,250,250,0.75);
  max-width: 540px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

/* Audio Demo Layout */
.demo-layout {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  min-height: 0;
}
.demo-layout__left {
  width: min(760px, 100%);
  display: block;
  transition: width 0.45s ease, transform 0.45s ease;
}
.demo-layout__right {
  width: 0;
  max-height: none;
  margin-left: 0;
  opacity: 0;
  transform: translateX(26px);
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.95);
  box-shadow: 0 14px 34px rgba(0,0,0,0.28);
  display: block;
  transition: width 0.45s ease, max-height 0.45s ease, margin-left 0.45s ease, opacity 0.35s ease, transform 0.45s ease, box-shadow 0.35s ease;
  pointer-events: none;
}
.demo-layout__right img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.demo-layout--show-recap .demo-layout__left {
  width: 60%;
  display: flex;
  transform: none;
}
.demo-layout--show-recap .demo-layout__right {
  width: 40%;
  margin-left: 0;
  display: flex;
  align-items: stretch;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.demo-layout--show-recap .demo-layout__right:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.demo-layout--show-recap {
  align-items: stretch;
  gap: 16px;
}
.demo-layout--show-recap .audio-player {
  height: 100%;
}

.demo-layout--stacked {
  max-width: min(620px, 100%);
  display: block;
}
.demo-layout--stacked .demo-layout__left,
.demo-layout--stacked.demo-layout--show-recap .demo-layout__left {
  width: 100%;
  display: block;
}
.demo-layout--stacked .demo-layout__right {
  width: 100%;
  max-height: 0;
  margin-top: 0;
  margin-left: 0;
  opacity: 0;
  transform: translateY(12px);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: max-height 0.32s ease-out, margin-top 0.32s ease-out, opacity 0.3s ease-out, transform 0.3s ease-out;
}
.demo-layout--stacked.demo-layout--show-recap .demo-layout__right {
  width: 100%;
  max-height: 520px;
  margin-top: 16px;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.demo-layout--stacked.demo-layout--show-recap .demo-layout__right:hover {
  transform: translateY(0);
  box-shadow: var(--shadow-md);
}

/* Audio Player */
.audio-player {
  width: 100%;
  margin: 0;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 32px;
  min-height: 0;
}
.audio-player__demo-kicker {
  display: inline-flex;
  align-items: center;
  margin: 0 auto 14px;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(230,248,250,0.36);
  background: rgba(228,247,250,0.13);
  color: rgba(240,250,250,0.9);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
}
.hero-audio-demo .audio-player {
  background: linear-gradient(148deg, #0d4f5a 0%, #073d46 100%);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: var(--shadow-lg);
}
.hero-audio-demo--preview {
  position: relative;
  isolation: isolate;
  overflow: visible;
  padding: 0;
}
.hero-audio-demo--preview .demo-layout__left,
.hero-audio-demo--preview .demo-layout__right {
  position: relative;
  z-index: 1;
}
.hero-audio-demo--preview .audio-player {
  position: relative;
  border-radius: 24px;
  background: linear-gradient(158deg, #06424f 0%, #0b5d69 58%, #084854 100%);
  border: 1px solid rgba(211,246,251,0.34);
  box-shadow: 0 16px 34px rgba(6,33,39,0.24), inset 0 1px 0 rgba(255,255,255,0.18);
}
.hero-audio-demo--preview .audio-player::before {
  content: '';
  position: absolute;
  left: 20px;
  right: 20px;
  top: 14px;
  height: 104px;
  border-radius: 16px;
  background:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 900 260' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23dbfbff' stroke-width='2'%3E%3Cpath d='M-40 150 C120 88 250 210 430 136 C570 84 700 166 940 108' stroke-opacity='0.36'/%3E%3Cpath d='M-40 198 C120 138 252 246 430 178 C586 128 710 206 940 150' stroke-opacity='0.22'/%3E%3C/g%3E%3C/svg%3E") center/138% 100% no-repeat;
  opacity: 0.22;
  pointer-events: none;
}
.hero-audio-demo--preview .audio-player::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), transparent 38%);
  pointer-events: none;
}
.hero-audio-demo--preview .audio-player > * {
  position: relative;
  z-index: 1;
}
.hero-audio-demo--preview .demo-layout__right--card {
  border-radius: 16px;
}
.hero-audio-demo--preview .audio-player__play-btn {
  width: 68px;
  height: 68px;
  border: 1px solid rgba(5,62,73,0.18);
  background: radial-gradient(circle at 30% 30%, #ffffff 0%, #f0fdff 45%, #cff5fa 100%);
  box-shadow: 0 12px 24px rgba(4,24,30,0.34), inset 0 2px 0 rgba(255,255,255,0.9);
}
.hero-audio-demo--preview .audio-player__play-btn:hover {
  transform: translateY(-1px) scale(1.04);
  box-shadow: 0 14px 28px rgba(4,24,30,0.38), inset 0 2px 0 rgba(255,255,255,0.92);
}
.hero-audio-demo--preview .audio-player__progress-bar {
  height: 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(2,22,27,0.34);
}
.hero-audio-demo--preview .audio-player__progress-fill {
  background: linear-gradient(90deg, #6ce4ff 0%, #33d3e8 50%, #43e7b4 100%);
  box-shadow: 0 0 16px rgba(56,222,206,0.42);
}
.hero-audio-demo--preview .audio-player__time {
  color: rgba(240,250,250,0.68);
}
.hero-audio-demo--preview .audio-player__transcript-hint {
  border-top-color: rgba(255,255,255,0.18);
}
.hero-audio-demo--preview .transcript-line {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.16);
}
.hero-audio-demo--preview .transcript-line--active {
  border-color: rgba(93,235,247,0.85);
  background: rgba(54,210,227,0.22);
  box-shadow: 0 0 0 1px rgba(54,210,227,0.24), 0 10px 20px rgba(2,20,24,0.34);
}
.audio-player__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
  font-size: 0.9rem;
  color: rgba(240,250,250,0.7);
}
.audio-player__label-dot {
  width: 8px;
  height: 8px;
  background: var(--emerald);
  border-radius: 50%;
}
.audio-player__controls {
  display: flex;
  align-items: center;
  gap: 20px;
}
.audio-player__play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: white;
  color: var(--teal-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.audio-player__play-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(0,0,0,0.2);
}
.audio-player__play-btn:focus-visible {
  outline: 3px solid rgba(31,182,204,0.45);
  outline-offset: 3px;
}
.audio-player__play-btn svg {
  width: 24px;
  height: 24px;
  margin-left: 3px;
}
.audio-player__play-btn.playing svg { margin-left: 0; }
.audio-player__track { flex: 1; }
.audio-player__progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,0.15);
  border-radius: 3px;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.audio-player__progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--teal-light), var(--emerald));
  border-radius: 3px;
  transition: width 0.1s linear;
}
.audio-player__time {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(240,250,250,0.5);
  font-variant-numeric: tabular-nums;
}
.audio-player__transcript-hint {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  max-height: 320px;
  overflow: hidden;
  opacity: 1;
  /* Transcript collapse/expand animation. */
  transition: max-height 0.24s ease-out, opacity 0.24s ease-out, margin-top 0.24s ease-out, padding-top 0.24s ease-out, border-color 0.24s ease-out;
}
.demo-layout--stacked.demo-layout--transcript-collapsed .audio-player__transcript-hint {
  max-height: 0;
  opacity: 0;
  margin-top: 0;
  padding-top: 0;
  border-top-color: transparent;
}
.audio-player__transcript-window {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 96px;
}
.audio-player__transcript-source {
  display: none;
}
.transcript-line {
  display: flex;
  gap: 10px;
  font-size: 0.9rem;
  text-align: left;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease, border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  padding: 10px 12px;
}
.transcript-line__speaker {
  font-weight: 600;
  flex-shrink: 0;
  min-width: 56px;
}
.transcript-line--ai .transcript-line__speaker { color: var(--teal-light); }
.transcript-line--caller .transcript-line__speaker { color: rgba(240,250,250,0.72); }
.transcript-line__text {
  color: rgba(240,250,250,0.7);
  line-height: 1.5;
}
.transcript-line--active {
  border-color: rgba(31,182,204,0.62);
  background: rgba(31,182,204,0.2);
  box-shadow: 0 0 0 1px rgba(31,182,204,0.22), 0 8px 18px rgba(0,0,0,0.18);
}
.transcript-line--active .transcript-line__speaker {
  font-weight: 700;
}
.transcript-line--active .transcript-line__text {
  color: rgba(240,250,250,0.98);
}
.hero-audio-demo .demo-layout__right--card {
  border: 1px solid #e8e2d8;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  background: #fdfbf7;
  overflow: hidden;
}
.hero-audio-demo .conversation-recap {
  padding: 0;
  text-align: left;
  background: #fdfbf7;
}
.hero-audio-demo .conversation-recap__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  height: 60px;
  padding: 0 18px;
  border-bottom: 1px solid #f0ebe0;
  background: #faf8f4;
}
.hero-audio-demo .conversation-recap__header-main {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.hero-audio-demo .conversation-recap__header-icon {
  width: 16px;
  height: 16px;
  color: #00838f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 16px;
}
.hero-audio-demo .conversation-recap__header-icon svg {
  width: 16px;
  height: 16px;
}
.hero-audio-demo .conversation-recap__title {
  margin: 0;
  color: #1d2327;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
}
.hero-audio-demo .conversation-recap__date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  white-space: nowrap;
  color: #646970;
  font-size: 12px;
  font-weight: 500;
}
.hero-audio-demo .conversation-recap__date svg {
  width: 16px;
  height: 16px;
  color: #646970;
}
.hero-audio-demo .conversation-recap__body {
  padding: 20px 24px;
  margin: 0;
  background: #fff;
  font-size: 14px;
  color: #1d2327;
  line-height: 1.65;
}
.hero-audio-demo .conversation-recap__lead {
  margin: 0 0 10px;
}
.hero-audio-demo .conversation-recap__list {
  margin: 10px 0 14px 22px;
  padding: 0;
  list-style: disc;
}
.hero-audio-demo .conversation-recap__list li {
  margin: 0 0 6px;
  padding: 0;
}
.hero-audio-demo .conversation-recap__list a {
  color: #2271b1;
  text-decoration: underline;
}
.hero-audio-demo .conversation-recap__followup {
  margin: 14px 0 0;
}
@media (max-width: 640px) {
  .hero-audio-demo .conversation-recap__header {
    height: auto;
    padding: 14px 16px;
    flex-wrap: wrap;
  }
  .hero-audio-demo .conversation-recap__date {
    margin-left: 0;
  }
  .hero-audio-demo .conversation-recap__body {
    padding: 16px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .demo-layout__left,
  .demo-layout__right,
  .audio-player__play-btn,
  .audio-player__progress-fill,
  .audio-player__transcript-hint,
  .transcript-line {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* ========== VOICE PREVIEW MODAL ========== */
/* ========== VOICE AGENT SHOWCASE ========== */
.voice-showcase {
  margin-top: 0;
  background: white;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 48px 40px 36px;
  box-shadow: var(--shadow-sm);
  width: 100%;
  max-width: 720px;
  min-width: 0;
  position: relative;
  z-index: 1;
}
.voice-showcase__header {
  text-align: center;
  margin-bottom: 40px;
}
.voice-showcase__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.voice-showcase__subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.voice-showcase__subtitle span {
  display: block;
}
@media (min-width: 1200px) {
  .voice-showcase__subtitle span:first-child {
    white-space: nowrap;
  }
}
.voice-showcase__display {
  display: grid;
  grid-template-columns: 1fr 160px;
  gap: 40px;
  align-items: center;
  margin-bottom: 36px;
  min-width: 0;
}
.voice-showcase__portrait-area {
  display: flex;
  align-items: center;
  gap: 12px;
}
.voice-showcase__portrait {
  width: 220px;
  height: 330px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  flex-shrink: 0;
}
.voice-showcase__portrait img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: opacity 0.3s ease;
}
.voice-showcase__arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.voice-showcase__arrow:hover {
  background: var(--teal-pale);
  color: var(--teal-deep);
}
.voice-showcase__name-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 8px;
  min-width: 0;
}
.voice-showcase__name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  margin: 0;
}
.voice-showcase__plan-pill {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.voice-showcase__plan-pill[data-plan="Starter"] {
  background: var(--teal-pale);
  color: var(--teal-deep);
}
.voice-showcase__plan-pill[data-plan="Business"] {
  background: var(--emerald-light);
  color: #047857;
}
.voice-showcase__plan-pill[data-plan="Pro"] {
  background: #ede9fe;
  color: #6d28d9;
}
.voice-showcase__recommended-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: #fef3c7;
  color: #92400e;
}
.voice-showcase__recommended-icon {
  font-size: 0.75rem;
  line-height: 1;
}
.voice-showcase__recommended-pill[hidden] { display: none; }
.voice-showcase__personality {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
  font-style: italic;
}
.voice-showcase__description {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
  overflow-wrap: anywhere;
}
.voice-showcase__best-for {
  display: inline-block;
  background: var(--cream);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.voice-showcase__best-for::before {
  content: 'Best for: ';
  font-weight: 600;
  color: var(--text-primary);
}
.voice-showcase__play-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 140px;
  min-width: 140px;
  flex-shrink: 0;
}
.voice-showcase__play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--teal-deep);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(0,131,143,0.3);
  transition: all 0.3s ease;
}
.voice-showcase__play-btn:hover {
  background: #006d77;
  transform: scale(1.06);
  box-shadow: 0 8px 32px rgba(0,131,143,0.4);
}
.voice-showcase__play-btn.playing {
  background: var(--emerald);
  box-shadow: 0 6px 24px rgba(16,185,129,0.4);
}
.voice-showcase__play-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  width: 100%;
  min-height: 20px;
}
.voice-showcase__thumbs {
  display: flex;
  justify-content: center;
  gap: 14px;
  padding: 12px 8px;
  overflow: hidden;
}
.voice-showcase__thumb {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  transition: transform 0.2s ease;
  flex-shrink: 0;
  background: none;
  padding: 0;
  border: none;
}
.voice-showcase__thumb:hover { transform: scale(1.1); }
.voice-showcase__thumb.active { transform: scale(1.18); }
.voice-showcase__thumb-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 2.5px solid transparent;
  transition: border-color 0.2s ease;
  background: var(--cream);
}
.voice-showcase__thumb.active .voice-showcase__thumb-img {
  border-color: var(--teal-deep);
}
.voice-showcase__thumb-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.voice-showcase__thumb-name {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  white-space: nowrap;
}
.voice-showcase__thumb.active .voice-showcase__thumb-name {
  color: var(--teal-deep);
}
.voice-showcase__thumb-plan {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 1px 5px;
  border-radius: 8px;
}
.voice-showcase__thumb-plan[data-plan="Starter"] {
  background: var(--teal-pale);
  color: var(--teal-deep);
}
.voice-showcase__thumb-plan[data-plan="Business"] {
  background: var(--emerald-light);
  color: #047857;
}
.voice-showcase__thumb-plan[data-plan="Pro"] {
  background: #ede9fe;
  color: #6d28d9;
}
/* Card-level carousel arrows */
.voice-showcase__card-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  padding: 0;
  z-index: 2;
}
.voice-showcase__card-arrow:hover {
  background: var(--teal-pale);
  color: var(--teal-deep);
}
.voice-showcase__card-arrow--prev { left: -20px; }
.voice-showcase__card-arrow--next { right: -20px; }
@media (max-width: 1140px) {
  .voice-showcase {
    max-width: 100%;
  }
  .voice-showcase__display {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
  .voice-showcase__portrait-area {
    justify-content: center;
  }
  .voice-showcase__name-row {
    justify-content: center;
  }
  .voice-showcase__best-for {
    margin: 0 auto;
  }
  .voice-showcase__play-area {
    width: 100%;
    min-width: 0;
  }
  .voice-showcase__card-arrow {
    display: none;
  }
}
@media (max-width: 640px) {
  .voice-showcase {
    padding: 32px 20px 24px;
  }
  .voice-showcase__subtitle {
    max-width: 100%;
  }
  .voice-showcase__subtitle span:first-child {
    white-space: normal !important;
  }
  .voice-showcase__info {
    min-width: 0;
  }
  .voice-showcase__name-row {
    row-gap: 8px;
    column-gap: 8px;
  }
  .voice-showcase__plan-pill,
  .voice-showcase__recommended-pill {
    max-width: 100%;
  }
  .voice-showcase__name {
    font-size: 1.5rem;
    line-height: 1.15;
  }
  .voice-showcase__description {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
  .voice-showcase__best-for {
    display: block;
    width: 100%;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
    text-wrap: pretty;
    padding: 10px 12px;
  }
  .voice-showcase__portrait {
    width: 180px;
    height: 270px;
  }
  .voice-showcase__thumbs {
    gap: 10px;
    padding: 12px 8px;
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
  }
  .voice-showcase__thumb-img {
    width: 38px;
    height: 38px;
  }
}

/* ========== SECTION 5: HOW IT WORKS ========== */
.how-section {
  padding: var(--section-padding);
  background:
    radial-gradient(circle at 84% 18%, rgba(16,185,129,0.08) 0%, rgba(16,185,129,0) 32%),
    linear-gradient(180deg, #fcfaf4 0%, #f8f5ec 100%);
}
.how-section .container--narrow { text-align: center; margin-bottom: 60px; }
.how-section__title { margin-bottom: 16px; }
.how-section__subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .how-section__title {
    white-space: nowrap;
  }
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 16.66%;
  right: 16.66%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal-pale), var(--teal-light), var(--teal-pale));
  z-index: 0;
}
.step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step__number {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--teal-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: var(--shadow-sm);
}
.step__number-icon {
  font-size: 36px;
}
.step__badge {
  position: absolute;
  top: -4px;
  right: calc(50% - 56px);
  background: var(--teal-deep);
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}
.step__desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 280px;
  margin: 0 auto;
}
.step__time {
  display: inline-block;
  margin-top: 14px;
  background: var(--emerald-light);
  color: #065f46;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
}

/* ========== SECTION 6: AFTER EVERY CALL ========== */
.after-section {
  padding: var(--section-padding);
  background: var(--warm-white);
}
.after-section__header {
  text-align: center;
  margin-bottom: 60px;
}
.after-section h2 { margin-bottom: 16px; }
.after-section__subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
.dashboard-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(0, 1.08fr);
  gap: 0;
  align-items: center;
}
.dashboard-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.dashboard-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.dashboard-showcase .dashboard-card:first-child {
  position: relative;
  z-index: 2;
  margin-right: -88px;
  margin-top: 36px;
}
.dashboard-showcase .dashboard-card:last-child {
  position: relative;
  z-index: 1;
  min-height: 500px;
}
.dashboard-card.reveal.reveal-delay-1.visible {
  height: 100%;
}
.dashboard-showcase .dashboard-card:last-child:hover {
  transform: none;
  box-shadow: none;
}
.dashboard-card--wide {
  grid-column: 1 / -1;
}
.dashboard-card__header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 10px;
}
.dashboard-card__header-icon {
  color: var(--teal-deep);
  font-size: 18px;
}
.dashboard-card__header-title {
  font-weight: 600;
  font-size: 0.9rem;
}
.dashboard-card__placeholder {
  padding: 40px;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8f6f1 0%, #f0ece4 100%);
  position: relative;
}
.dashboard-card__placeholder-text {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-style: italic;
  background: white;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  border: 2px dashed var(--border-light);
}
.dashboard-card__media {
  flex: 1;
  min-height: 500px;
  background: #f4f1ec;
  overflow: hidden;
}
.dashboard-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* Email notification preview card */
.email-preview {
  padding: 28px;
}
.email-preview__from {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}
.email-preview__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-deep), var(--teal-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  flex-shrink: 0;
}
.email-preview__meta { flex: 1; }
.email-preview__sender { font-weight: 600; font-size: 0.9rem; }
.email-preview__subject { font-size: 0.8rem; color: var(--text-muted); }
.email-preview__body { font-size: 0.88rem; line-height: 1.65; color: var(--text-secondary); }
.email-preview__body strong { color: var(--text-primary); }
.email-preview__body p { margin-bottom: 10px; }
.email-preview__body ul {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}
.email-preview__body ul li {
  padding: 4px 0 4px 20px;
  position: relative;
  font-size: 0.85rem;
}
.email-preview__body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal-pale);
  border: 2px solid var(--teal-light);
}

/* ========== SECTION 7: PRICING ========== */
.pricing-section {
  padding: var(--section-padding);
  background:
    radial-gradient(circle at 15% 12%, rgba(31,182,204,0.08) 0%, rgba(31,182,204,0) 32%),
    radial-gradient(circle at 85% 88%, rgba(16,185,129,0.1) 0%, rgba(16,185,129,0) 42%),
    linear-gradient(180deg, #f9f7f1 0%, #f6f3ea 100%);
  position: relative;
}
.pricing-section__header {
  text-align: center;
  margin-bottom: 56px;
}
.pricing-section h2 { margin-bottom: 0; }
.pricing-section__subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 12px;
}
/* Homepage includes — fieldset style with border label */
.price-includes--homepage {
  padding: 0;
  margin-bottom: 48px;
}
.price-includes--homepage .price-includes__grid {
  position: relative;
  background: var(--teal-deep);
  border: none;
  border-radius: var(--radius-lg);
  padding: 36px 32px 28px;
  max-width: 100%;
  gap: 16px 32px;
}
.price-includes--homepage .price-includes__grid::before {
  content: attr(data-label);
  position: absolute;
  top: -14px;
  left: 28px;
  padding: 5px 18px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: white;
  background: var(--teal-deep);
  border-radius: 20px;
}
.price-includes--homepage .price-includes__item {
  background: none;
  border: none;
  padding: 10px 8px;
}
.price-includes--homepage .price-includes__item:hover {
  box-shadow: none;
  transform: none;
}
.price-includes--homepage .price-includes__icon {
  width: auto;
  height: auto;
  background: none;
  border-radius: 0;
  color: rgba(224,247,250,0.85);
}
.price-includes--homepage .price-includes__label {
  color: white;
}
.pricing-section .price-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 100%;
  margin: 0 auto 48px;
  align-items: stretch;
}
.pricing-section .price-tier--popular {
  transform: none;
}
.pricing-section .price-tier--popular:hover {
  transform: translateY(-4px);
}
/* Horizontal plan cards — bold layout */
.pricing-section .price-tier {
  flex-direction: row;
  padding: 0;
  overflow: hidden;
  border: 1.5px solid rgba(31,182,204,0.15);
  box-shadow: 0 2px 12px rgba(0,77,64,0.06);
}
.pricing-section .price-tier:hover {
  box-shadow: 0 8px 32px rgba(0,77,64,0.12);
}
.pricing-section .price-tier__identity {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 36px 32px;
  min-width: 200px;
  flex: 0 0 38%;
  background: linear-gradient(160deg, #f0fbfc 0%, #f7fafa 100%);
  border-right: 1.5px solid rgba(31,182,204,0.12);
  text-align: center;
}
.pricing-section .price-tier__identity .price-tier__name {
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}
.pricing-section .price-tier__identity .price-tier__price {
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 4px 0 2px;
}
.pricing-section .price-tier__identity .price-tier__period {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.pricing-section .price-tier__details {
  display: flex;
  flex-direction: column;
  padding: 32px 36px;
  flex: 1;
}
.pricing-section .price-tier__details .price-tier__minutes {
  margin-bottom: 16px;
  padding: 0 0 12px;
  text-align: left;
  background: none;
  border-bottom: 1px solid var(--border-light);
  border-radius: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--teal-deep);
  letter-spacing: -0.01em;
}
.pricing-section .price-tier__details .price-tier__features {
  flex-grow: 1;
  margin-bottom: 16px;
}
.pricing-section .price-tier__details .price-tier__features li {
  font-size: 0.92rem;
  padding: 7px 0 7px 26px;
  color: var(--text-secondary);
}
.pricing-section .price-tier__details .price-tier__best-for {
  text-align: left;
  margin-bottom: 16px;
}
.pricing-section .price-tier__details .btn {
  width: auto;
  align-self: flex-start;
  padding: 12px 32px;
}
/* Popular card — teal accent */
.pricing-section .price-tier--popular {
  border-color: var(--teal-deep);
  box-shadow: 0 4px 20px rgba(0,131,143,0.15);
}
.pricing-section .price-tier--popular:hover {
  box-shadow: 0 8px 36px rgba(0,131,143,0.22);
}
.pricing-section .price-tier--popular .price-tier__identity {
  background: linear-gradient(160deg, #e0f7fa 0%, #f0fbfc 100%);
}
.pricing-section .price-tier--popular .price-tier__identity .price-tier__price {
  color: var(--teal-deep);
}
/* Badge inline inside identity */
.pricing-section .price-tier__badge {
  position: static;
  transform: none;
  background: var(--emerald);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(16,185,129,0.3);
}
.pricing-includes {
  background: white;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin: 0 auto 36px;
  max-width: 920px;
  box-shadow: var(--shadow-sm);
}
.pricing-includes__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.pricing-includes__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 22px;
}
.pricing-includes__list li {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
  padding-left: 24px;
  position: relative;
}
.pricing-includes__list li::before {
  content: '✓';
  color: var(--emerald);
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 0;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}
.pricing-card {
  background: white;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.pricing-card--popular {
  border-color: var(--teal-deep);
  box-shadow: var(--shadow-md);
}
.pricing-card__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal-deep);
  color: white;
  padding: 4px 18px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.pricing-card__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.pricing-card__price {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--teal-deep);
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-card__price-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.pricing-card__divider {
  height: 1px;
  background: var(--border-light);
  margin: 0 -24px 20px;
}
.pricing-card__features {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
  flex: 1;
}
.pricing-card__features li {
  padding: 6px 0;
  font-size: 0.88rem;
  color: var(--text-secondary);
  display: flex;
  align-items: start;
  gap: 10px;
}
.pricing-card__features li::before {
  content: '✓';
  color: var(--emerald);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing-card .btn {
  width: 100%;
  justify-content: center;
  padding: 14px 24px;
}
.pricing-card__inherited {
  color: var(--text-muted) !important;
  font-weight: 500;
  font-style: italic;
}
.pricing-card__inherited::before {
  content: none !important;
}
.pricing-card__minutes {
  font-size: 0.85rem;
  color: var(--teal-deep);
  font-weight: 600;
  margin: 0 0 12px;
  text-align: left;
  padding-left: 6px;
}
.pricing-card__best-for {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.4;
}
.pricing-addon {
  max-width: 920px;
  margin: 0 auto;
  padding: 24px 28px;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}
.pricing-addon__title {
  margin: 0 0 8px;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
}
.pricing-addon__text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}
.pricing-addon strong { color: var(--text-primary); }

/* ============================
   FORMS (shared)
   ============================ */

.form-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: clamp(32px, 6vw, 48px);
  box-shadow: var(--shadow-md);
  max-width: 560px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
}

.form-label {
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.form-input {
  padding: 14px 16px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-primary);
  background: white;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-input:focus {
  outline: none;
  border-color: var(--teal-deep);
  box-shadow: 0 0 0 3px rgba(0, 131, 143, 0.12);
}
.form-input::placeholder {
  color: var(--text-muted);
}

.form-group--error .form-input {
  border-color: #dc2626;
  background: rgba(220, 38, 38, 0.03);
}

.form-error {
  color: #dc2626;
  font-size: 0.85rem;
  margin-top: 6px;
  display: none;
}
.form-group--error .form-error {
  display: block;
}

.form-submit {
  margin-top: 8px;
}
.form-submit .btn {
  width: 100%;
  justify-content: center;
}
.form-submit .btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-success {
  text-align: center;
  padding: 32px 16px;
}
.form-success__icon {
  width: 56px;
  height: 56px;
  background: var(--emerald-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--emerald);
}
.form-success__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--teal-deep);
  margin-bottom: 8px;
}
.form-success__text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.form-message {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  margin-bottom: 20px;
  display: none;
}
.form-message--error {
  background: rgba(220, 38, 38, 0.06);
  color: #dc2626;
  border: 1px solid rgba(220, 38, 38, 0.15);
  display: block;
}
.form-message--info {
  background: rgba(0, 131, 143, 0.06);
  color: var(--teal-deep);
  border: 1px solid rgba(0, 131, 143, 0.15);
  display: block;
}

/* ============================
   GET STARTED (intake form)
   ============================ */

.intake {
  padding: clamp(120px, 15vw, 180px) 0 var(--section-padding);
  min-height: 100vh;
  background: var(--cream);
}

.intake__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}
.intake__header h1 {
  color: var(--teal-deep);
  margin-bottom: 12px;
  text-wrap: balance;
}
.intake__subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.6;
}
.intake__next-steps {
  max-width: 980px;
  margin: 0 auto 32px;
}
.intake__next-steps-card {
  background: linear-gradient(135deg, #ffffff 0%, #f3fbfc 100%);
  border: 1.5px solid #b6e2e8;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: clamp(24px, 4vw, 32px);
}
.intake__next-steps-header {
  text-align: center;
  margin-bottom: 20px;
}
.intake__next-steps-header h2 {
  color: var(--teal-deep);
  font-size: clamp(1.35rem, 2.8vw, 1.8rem);
  margin-bottom: 0;
}
.intake__next-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.intake__next-step {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(31, 182, 204, 0.18);
  border-radius: var(--radius-md);
  padding: 18px;
}
.intake__next-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--teal-deep);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.intake__next-step p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.6;
}
.intake__prep-note {
  margin: 18px 0 0;
  color: var(--text-secondary);
  text-align: center;
  font-size: 0.95rem;
}

@media (max-width: 640px) {
  .intake__header h1 {
    white-space: normal;
    overflow-wrap: anywhere;
    font-size: clamp(1.9rem, 9vw, 2.3rem);
    line-height: 1.12;
  }
  .intake__next-steps-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================
   BILLING HUB (/manage)
   ============================ */

.hub {
  padding: clamp(120px, 15vw, 180px) 0 var(--section-padding);
  min-height: 100vh;
  background: var(--cream);
}

.hub__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
}
.hub__header h1 {
  color: var(--teal-deep);
  margin-bottom: 8px;
}
.hub__header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

/* View switching via data attribute */
.hub__view { display: none; }
.hub[data-view="loading"]         .hub__view--loading,
.hub[data-view="site-picker"]     .hub__view--site-picker,
.hub[data-view="unauthenticated"] .hub__view--unauthenticated,
.hub[data-view="authenticated"]   .hub__view--authenticated,
.hub[data-view="error"]           .hub__view--error { display: block; }

/* Loading spinner */
.hub__loading {
  text-align: center;
  padding: 60px 0;
  color: var(--text-muted);
}
.hub__spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border-light);
  border-top-color: var(--teal-deep);
  border-radius: 50%;
  animation: hub-spin 0.8s linear infinite;
  margin: 0 auto 16px;
}
@keyframes hub-spin {
  to { transform: rotate(360deg); }
}

/* Status card */
.hub__status-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: clamp(24px, 5vw, 36px);
  box-shadow: var(--shadow-md);
  max-width: 700px;
  margin: 0 auto 32px;
}
.hub__status-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}
.hub__status-badge--trial {
  background: var(--teal-pale);
  color: var(--teal-deep);
}
.hub__status-badge--active {
  background: var(--emerald-light);
  color: #065f46;
}
.hub__status-badge--warning {
  background: #fef3c7;
  color: #92400e;
}
.hub__status-badge--cancelled {
  background: #fee2e2;
  color: #991b1b;
}
.hub__status-plan {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.hub__status-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}
.hub__status-detail {
  padding: 12px 0;
}
.hub__status-detail-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.hub__status-detail-value {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
}
.hub__status-warning {
  margin-top: 16px;
  padding: 12px 16px;
  background: #fef3c7;
  border: 1px solid #fde68a;
  border-radius: var(--radius-sm);
  color: #92400e;
  font-size: 0.9rem;
}

/* Actions row */
.hub__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

/* Plan cards — reuse existing .pricing-card styles with hub grid modifier */
.pricing-grid--hub {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  max-width: 900px;
  margin: 0 auto;
}

.hub__plans-header {
  text-align: center;
  margin-bottom: 24px;
}
.hub__plans-header h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  color: var(--teal-deep);
}

/* --- Authorized emails card --- */
.hub__auth-emails {
  max-width: 700px;
  margin: 48px auto 0;
  padding: 24px;
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}
.hub__auth-emails-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 16px;
}
.hub__auth-emails-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}
.hub__auth-emails-subtitle {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.hub__auth-emails-add-btn {
  font-size: 0.85rem;
  color: var(--teal-deep);
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  margin-top: 8px;
  padding: 0;
}
.hub__auth-emails-add-btn:disabled {
  opacity: 0.5;
  cursor: default;
}
.hub__auth-emails-list {
  display: flex;
  flex-direction: column;
}
.hub__auth-email-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  gap: 12px;
  flex-wrap: wrap;
}
.hub__auth-email-row:last-child {
  border-bottom: none;
}
.hub__auth-email-info {
  flex: 1;
  min-width: 0;
}
.hub__auth-email-address {
  font-weight: 600;
  color: var(--text-primary);
  word-break: break-all;
}
.hub__auth-email-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 2px;
}
.hub__auth-email-badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--teal-pale);
  color: var(--teal-deep);
}
.hub__auth-email-invoice {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.hub__auth-email-action {
  font-size: 0.85rem;
  color: var(--teal-deep);
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  white-space: nowrap;
}
.hub__auth-email-action:disabled {
  opacity: 0.5;
  cursor: default;
}
.hub__auth-email-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}
/* Inline remove confirmation */
.hub__auth-email-confirm {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  gap: 12px;
  flex-wrap: wrap;
}
.hub__auth-email-confirm-text {
  font-size: 0.9rem;
  color: var(--text-primary);
}
.hub__auth-email-confirm-actions {
  display: flex;
  gap: 8px;
}
.hub__auth-email-confirm-btn {
  font-size: 0.85rem;
  padding: 4px 14px;
  border-radius: 6px;
  border: 1px solid var(--border-light);
  cursor: pointer;
  font-family: inherit;
  background: white;
  color: var(--text-primary);
}
.hub__auth-email-confirm-btn--danger {
  background: #fee2e2;
  color: #991b1b;
  border-color: #fca5a5;
}
.hub__auth-email-confirm-btn:disabled {
  opacity: 0.5;
  cursor: default;
}
/* Inline add form */
.hub__auth-email-add {
  align-items: center;
  gap: 8px;
  padding: 12px 0;
}
.hub__auth-email-add:not([hidden]) {
  display: flex;
}
.hub__auth-email-add input {
  flex: 1;
  min-width: 0;
  padding: 8px 12px;
  font-size: 0.9rem;
  border-radius: 6px;
  border: 1px solid var(--border-light);
  font-family: inherit;
}
.hub__auth-email-add input:focus {
  outline: none;
  border-color: var(--teal-light);
  box-shadow: 0 0 0 2px var(--teal-pale);
}
.hub__auth-email-add-submit {
  flex-shrink: 0;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  background: var(--teal-deep);
  color: white;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
}
.hub__auth-email-add-submit:disabled {
  opacity: 0.5;
  cursor: default;
}
.hub__auth-email-add-cancel {
  flex-shrink: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}
/* Messages */
.hub__auth-email-error {
  font-size: 0.85rem;
  color: #991b1b;
  padding: 8px 0;
}
.hub__auth-email-success {
  font-size: 0.85rem;
  color: #065f46;
  padding: 8px 0;
  transition: opacity 0.5s ease;
}

/* Site picker */
.hub__sites-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto;
}
.hub__site-card {
  width: 100%;
  padding: 20px 24px;
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}
.hub__site-card:hover,
.hub__site-card:focus-visible {
  border-color: rgba(0, 131, 143, 0.35);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}
.hub__site-card-url {
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--text-primary);
  word-break: break-word;
}
.hub__site-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.hub__site-card-plan {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--teal-pale);
  color: var(--teal-deep);
}
.hub__site-card-arrow {
  color: var(--text-muted);
  font-size: 1.15rem;
  line-height: 1;
}

/* Site switcher */
.hub__site-switcher {
  position: relative;
  max-width: 700px;
  margin: 0 auto 16px;
  text-align: center;
}
.hub__site-switcher-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(0, 131, 143, 0.14);
  border-radius: 999px;
  color: var(--text-secondary);
  box-shadow: var(--shadow-sm);
}
.hub__site-switcher-btn:hover,
.hub__site-switcher-btn:focus-visible {
  border-color: rgba(0, 131, 143, 0.35);
}
.hub__site-switcher-url {
  max-width: min(58vw, 360px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hub__site-switcher-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 260px;
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  z-index: 20;
}
.hub__site-switcher-item {
  width: 100%;
  padding: 12px 16px;
  background: transparent;
  text-align: left;
  color: var(--text-primary);
  border: none;
  border-bottom: 1px solid rgba(232, 226, 216, 0.7);
}
.hub__site-switcher-item:last-child {
  border-bottom: none;
}
.hub__site-switcher-item:hover,
.hub__site-switcher-item:focus-visible {
  background: var(--teal-pale);
}
.hub__site-switcher-item--active {
  font-weight: 700;
  color: var(--teal-deep);
}

/* Checkout success/cancel banner */
.hub__banner {
  max-width: 700px;
  margin: 0 auto 24px;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  text-align: center;
}
.hub__banner--success {
  background: var(--emerald-light);
  color: #065f46;
  border: 1px solid #a7f3d0;
}
.hub__banner--cancelled {
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fde68a;
}
.hub__banner--expired {
  background: rgba(0, 131, 143, 0.06);
  color: var(--teal-deep);
  border: 1px solid rgba(0, 131, 143, 0.15);
}

/* Email update modal actions */
.hub__email-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  justify-content: flex-end;
}

.hub__modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.hub__modal-backdrop[hidden] { display: none; }
.hub__modal {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 440px;
  width: 100%;
  box-shadow: var(--shadow-xl);
}
.hub__modal h3 {
  margin-bottom: 16px;
  color: var(--teal-deep);
}

/* Buy More Minutes modal */
.hub__buy-modal {
  max-width: 480px;
  padding: 0;
  overflow: hidden;
}
.hub__buy-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border-light);
  background: var(--cream);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.hub__buy-header h3 {
  margin: 0;
  font-size: 1.05rem;
  color: var(--teal-deep);
}
.hub__buy-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  transition: color 0.15s ease, background 0.15s ease;
}
.hub__buy-close:hover {
  color: #c53030;
  background: rgba(197, 48, 48, 0.08);
}
.hub__buy-body {
  padding: 24px;
}
.hub__buy-product {
  margin-bottom: 24px;
}
.hub__buy-product-name {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.hub__buy-product-detail {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.hub__buy-stepper-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.hub__buy-stepper-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}
.hub__buy-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.hub__buy-stepper-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--text-primary);
  transition: background 0.15s ease, color 0.15s ease;
}
.hub__buy-stepper-btn:hover:not(:disabled) {
  background: var(--teal-pale);
  color: var(--teal-deep);
}
.hub__buy-stepper-btn:disabled {
  cursor: not-allowed;
  color: var(--border-light);
}
.hub__buy-stepper-value {
  width: 48px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  border-left: 1px solid var(--border-light);
  border-right: 1px solid var(--border-light);
  background: white;
}
.hub__buy-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--teal-deep) 0%, #005f6b 100%);
}
.hub__buy-summary-minutes {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
}
.hub__buy-summary-price {
  font-size: 1.35rem;
  font-weight: 800;
  color: white;
}
.hub__buy-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding: 16px 24px;
  border-top: 1px solid var(--border-light);
  background: #fafafa;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

/* Responsive adjustments for hub */
@media (max-width: 600px) {
  .hub__status-details {
    grid-template-columns: 1fr;
  }
  .hub__actions {
    flex-direction: column;
  }
  .hub__actions .btn {
    width: 100%;
    justify-content: center;
  }
  .hub__auth-email-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .hub__auth-email-add {
    flex-direction: column;
  }
  .hub__auth-email-add input {
    width: 100%;
  }
  .hub__site-card {
    padding: 18px 18px;
    flex-direction: column;
    align-items: flex-start;
  }
  .hub__site-card-url {
    word-break: break-all;
    overflow-wrap: anywhere;
  }
  .hub__site-card-meta {
    width: 100%;
    justify-content: space-between;
  }
  .hub__site-switcher {
    margin-bottom: 20px;
  }
  .hub__site-switcher-btn {
    width: 100%;
    justify-content: center;
  }
  .hub__site-switcher-dropdown {
    left: 0;
    right: 0;
    transform: none;
    min-width: 0;
  }
  .hub__buy-footer {
    flex-direction: column-reverse;
  }
  .hub__buy-footer .btn {
    width: 100%;
    justify-content: center;
  }
  .hub__email-modal-actions {
    flex-direction: column-reverse;
  }
  .hub__email-modal-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ========== SECTION 9: FAQ ========== */
.faq-section {
  padding: var(--section-padding);
  background: var(--cream);
}
.faq-section__header {
  text-align: center;
  margin-bottom: 56px;
}
.faq-section h2 { margin-bottom: 16px; }
.faq-section__subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
}
.faq-list {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: transparent;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  gap: 16px;
}
.faq-item__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--teal-pale);
  display: block;
  position: relative;
  flex-shrink: 0;
  color: var(--teal-deep);
  font-size: 0;
  line-height: 0;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: translate(-50%, -50%);
}
.faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq-item.open .faq-item__icon {
  transform: rotate(45deg);
  background: var(--teal-deep);
  color: white;
}
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.open .faq-item__answer {
  max-height: 300px;
}
.faq-item__answer-inner {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ========== SECTION 10: FINAL CTA ========== */
.final-cta {
  padding: clamp(80px, 12vw, 140px) 0;
  background:
    linear-gradient(135deg, rgba(0, 131, 143, 0.9) 0%, rgba(0, 95, 107, 0.92) 100%),
    url('../images/hero-background1.png') center center / cover no-repeat;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='1.5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.55;
  pointer-events: none;
}
.final-cta .container { position: relative; z-index: 1; }
.final-cta h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
}
.final-cta__subtitle {
  font-size: 1.15rem;
  color: rgba(240,250,250,0.75);
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.final-cta__setup {
  display: inline-block;
  margin-top: 4px;
  font-weight: 300;
  font-size: 0.95rem;
  opacity: 0.65;
}
.final-cta .btn--white { font-size: 1.1rem; padding: 20px 48px; }
.final-cta__note {
  margin-top: 16px;
  font-size: 0.85rem;
  color: rgba(240,250,250,0.5);
}

/* ========== DEFAULT PAGE TEMPLATE LAYOUT ========== */
.sitestaffr-page--default {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.sitestaffr-page--default .nav {
  background: rgba(253, 251, 247, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

.admin-bar.sitestaffr-page--default .nav {
  top: 32px;
}

.sitestaffr-page--default .page-content {
  flex: 1 0 auto;
  padding-top: clamp(108px, 12vw, 140px);
  padding-bottom: clamp(60px, 10vw, 100px);
  background: #fffefc;
}

.admin-bar.sitestaffr-page--default .page-content {
  padding-top: clamp(140px, 16vw, 176px);
}

.sitestaffr-page--default .page-content > .container {
  max-width: 1120px;
}

.sitestaffr-page--default .page-content__article {
  width: min(1068px, 100%);
  margin: 0 auto;
  padding: 0;
}

.sitestaffr-page--default .page-content__title {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--teal-deep);
  margin-bottom: 18px;
}

.sitestaffr-page--default .page-content__body {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.75;
}

.sitestaffr-page--default .page-content__body > * + * {
  margin-top: 16px;
}

.sitestaffr-page--default .page-content__body ul,
.sitestaffr-page--default .page-content__body ol {
  margin: 10px 0 18px 24px;
}

.sitestaffr-page--default .page-content__body img {
  display: block;
  max-width: 100%;
  height: auto;
}

.sitestaffr-page--default .footer {
  margin-top: auto;
}

/* ========== FOOTER ========== */
.footer {
  padding: 40px 0;
  background: #0a2e33;
  color: rgba(240,250,250,0.4);
  text-align: center;
  font-size: 0.85rem;
}
.footer a {
  color: rgba(240,250,250,0.6);
  transition: color 0.2s;
}
.footer a:hover { color: white; }
.footer__links {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 16px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .nav__menu {
    gap: 16px;
    margin-right: 12px;
  }
  .nav__link {
    font-size: 0.84rem;
  }
  .nav__cta .btn {
    padding: 9px 20px;
    font-size: 0.84rem;
  }
  .dashboard-showcase {
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: stretch;
  }
  .dashboard-showcase .dashboard-card:first-child {
    margin-right: 0;
    margin-top: 0;
    z-index: 1;
  }
  .dashboard-showcase .dashboard-card:last-child {
    min-height: 0;
    z-index: 1;
  }
  .dashboard-card__media {
    min-height: 0;
  }
  .dashboard-card__media img {
    height: auto;
    object-fit: contain;
  }
  .hero-caller {
    width: 100%;
  }
  .hero__grid { gap: 40px; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-section .price-grid {
    grid-template-columns: 1fr;
  }
  .cost-section__grid { gap: 48px; }
  .steps::before { display: none; }
  .demo-layout {
    max-width: 760px;
    flex-direction: column;
    min-height: 0;
  }
  .demo-layout__left,
  .demo-layout--show-recap .demo-layout__left {
    width: 100%;
    display: block;
    transform: none;
  }
  .demo-layout__right {
    width: 100%;
    max-height: 0;
    margin-left: 0;
    margin-top: 0;
    opacity: 0;
    transform: translateY(14px);
  }
  .demo-layout__right img {
    height: auto;
    object-fit: contain;
  }
  .demo-layout--show-recap .demo-layout__right {
    width: 100%;
    max-height: 1200px;
    margin-left: 0;
    margin-top: 18px;
    display: block;
    opacity: 1;
    transform: translateY(0);
  }
  .demo-layout--show-recap {
    align-items: stretch;
    gap: 0;
  }
}

@media (min-width: 1025px) {
  .hero__headline-prefix {
    color: var(--text-primary);
  }
  .hero__headline-focus {
    letter-spacing: -0.01em;
  }
}

@media (max-width: 768px) {
  body.sitestaffr-landing-page .hero {
    background: #fffefc;
  }

  body.sitestaffr-landing-page .hero::after {
    display: none;
  }

  body.sitestaffr-landing-page .hero::before {
    background-size: 180vw auto;
    background-position: 80% 72%;
    opacity: 0.58;
    -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.2) 34%, rgba(0,0,0,0.82) 62%, rgba(0,0,0,1) 100%);
    mask-image: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.2) 34%, rgba(0,0,0,0.82) 62%, rgba(0,0,0,1) 100%);
  }

  body.sitestaffr-landing-page .hero__visual::before { display: none; }

  .hero-caller { display: none; }
  body { font-size: 16px; }
  .nav { padding: 12px 0; }
  .nav__inner {
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
  }
  .nav__logo {
    flex: 1;
    min-width: 0;
  }
  .nav__logo-image {
    height: 40px;
    max-width: 180px;
  }
  .nav__menu {
    display: none;
    order: 4;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    margin: 8px 0 0;
    padding: 10px;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    background: rgba(253, 251, 247, 0.98);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
  }
  .nav__menu.is-open {
    display: flex;
  }
  .nav__link {
    display: block;
    font-size: 0.9rem;
    padding: 8px 10px;
    border-radius: 8px;
  }
  .nav__cta {
    display: flex;
    margin-left: auto;
  }
  .nav__cta .btn {
    padding: 10px 14px;
    font-size: 0.78rem;
    white-space: nowrap;
  }
  .nav__toggle {
    display: inline-flex;
    flex: 0 0 auto;
  }
  .nav__link:hover,
  .nav__link:focus-visible {
    background: var(--teal-pale);
  }
  #demo,
  #pricing,
  #faq {
    scroll-margin-top: 120px;
  }
  #demo-label,
  #pricing-label,
  #faq-label {
    scroll-margin-top: 108px;
  }
  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__subtitle { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__visual { max-width: 480px; margin: 0 auto; }
  .cost-section__grid { grid-template-columns: 1fr; gap: 40px; }
  .cost-cards { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .dashboard-showcase { grid-template-columns: 1fr; }
  .pricing-includes {
    padding: 20px;
    margin-bottom: 28px;
  }
  .pricing-includes__list {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .pricing-section .price-grid {
    grid-template-columns: 1fr;
  }
  .pricing-section .price-tier {
    flex-direction: column;
  }
  .pricing-section .price-tier__identity {
    flex: none;
    min-width: 0;
    border-right: none;
    border-bottom: 1.5px solid rgba(31,182,204,0.12);
    padding: 28px 24px;
  }
  .pricing-section .price-tier__details {
    padding: 24px;
  }
  .pricing-section .price-tier__details .btn {
    width: 100%;
    justify-content: center;
    align-self: stretch;
  }
  .price-includes--homepage .price-includes__grid {
    padding: 28px 16px 20px;
    gap: 10px 16px;
  }
  .pricing-addon {
    padding: 16px 20px;
  }
  .widget-bubble { right: 18px; bottom: 18px; gap: 8px; }
  .widget-bubble__caption { max-width: 220px; font-size: 0.75rem; padding: 8px 10px; }
  .widget-bubble__btn { width: 54px; height: 54px; }
  .widget-bubble__voice-bars { gap: 4px; height: 18px; }
  .widget-bubble__voice-bars span { width: 3px; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .nav__logo-image {
    height: 36px;
    max-width: 152px;
  }
  .nav__cta .btn {
    padding: 9px 12px;
    font-size: 0.72rem;
  }
  .nav__toggle {
    width: 40px;
    height: 40px;
  }
  .nav__menu { padding: 8px; }
  .nav__link { font-size: 0.86rem; }
  .cost-cards { grid-template-columns: 1fr; }
  .btn { padding: 14px 28px; font-size: 0.95rem; }
  .btn--large { padding: 18px 36px; font-size: 1rem; }
  .audio-player { padding: 24px 16px; }
  .audio-player__controls { gap: 12px; }
  .audio-player__play-btn {
    width: 56px;
    height: 56px;
  }
  .widget-bubble { right: 14px; bottom: 14px; }
  .widget-bubble__caption {
    max-width: 190px;
    font-size: 0.72rem;
    line-height: 1.4;
  }
  .widget-bubble__btn { width: 50px; height: 50px; }
  .transcript-line {
    font-size: 0.8rem;
    gap: 8px;
  }
  .transcript-line__speaker {
    min-width: 48px;
  }
}

@media (max-width: 782px) {
  .admin-bar.sitestaffr-page--default .nav {
    top: 46px;
  }

  .sitestaffr-page--default .page-content {
    padding-top: 104px;
  }

  .admin-bar.sitestaffr-page--default .page-content {
    padding-top: 150px;
  }

  .sitestaffr-page--default .page-content__article {
    padding: 0;
  }
}

/* ========== MAINTENANCE PAGE ========== */
body.sitestaffr-maintenance-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 15% 20%, rgba(31,182,204,0.12) 0%, transparent 40%),
    radial-gradient(circle at 85% 10%, rgba(16,185,129,0.1) 0%, transparent 35%),
    linear-gradient(180deg, #fffdf9 0%, #f7f4ee 100%);
}
.maintenance {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
}
.maintenance__card {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 48px);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(8px);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.maintenance__logo {
  display: block;
  width: auto;
  height: clamp(48px, 8vw, 74px);
  margin: 0 auto 24px;
  max-width: min(420px, 90%);
}
.maintenance__badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--teal-pale);
  color: var(--teal-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.maintenance h1 {
  margin-bottom: 14px;
  color: var(--text-primary);
}
.maintenance p {
  margin: 0 auto;
  max-width: 540px;
  color: var(--text-secondary);
  font-size: 1.05rem;
}
.maintenance__subtext {
  margin-top: 10px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ========== LEGAL PAGES (Privacy Policy, Terms of Service) ========== */
body.sitestaffr-legal-page .legal-page {
  padding: clamp(100px, 12vw, 140px) 0 clamp(60px, 10vw, 100px);
}

body.sitestaffr-legal-page .legal-page__article {
  max-width: 1068px;
  margin: 0 auto;
}

body.sitestaffr-legal-page .legal-page__title {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--teal-deep);
  margin-bottom: 8px;
}

body.sitestaffr-legal-page .legal-page__meta {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-light);
}

body.sitestaffr-legal-page .legal-section {
  margin-bottom: 36px;
}

body.sitestaffr-legal-page .legal-section h2 {
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  color: var(--teal-deep);
  margin-bottom: 16px;
}

body.sitestaffr-legal-page .legal-section h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 20px;
  margin-bottom: 10px;
}

body.sitestaffr-legal-page .legal-section p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

body.sitestaffr-legal-page .legal-section ul,
body.sitestaffr-legal-page .legal-section ol {
  margin: 10px 0 18px 24px;
  list-style-type: disc;
}

body.sitestaffr-legal-page .legal-section ol {
  list-style-type: decimal;
}

body.sitestaffr-legal-page .legal-section li {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

body.sitestaffr-legal-page .legal-section a {
  color: var(--teal-light);
  text-decoration: underline;
}

body.sitestaffr-legal-page .legal-section a:hover {
  color: var(--teal-deep);
}

body.sitestaffr-legal-page .legal-section strong {
  color: var(--text-primary);
  font-weight: 600;
}

body.sitestaffr-legal-page .legal-section table {
  width: 100%;
  border-collapse: collapse;
  margin: 14px 0 22px;
  font-size: 0.9rem;
}

body.sitestaffr-legal-page .legal-section th,
body.sitestaffr-legal-page .legal-section td {
  text-align: left;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-secondary);
  line-height: 1.6;
}

body.sitestaffr-legal-page .legal-section th {
  font-weight: 600;
  color: var(--text-primary);
  background: var(--cream);
}

body.sitestaffr-legal-page .legal-caps {
  font-size: 0.85rem;
  line-height: 1.7;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

/* ========== HOMEPAGE V2: HERO GRID LAYOUT ========== */
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero__tagline {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal-light);
  margin-bottom: 16px;
}
.hero__headline-prefix,
.hero__headline-focus {
  display: block;
}
.hero__no-cc {
  display: block;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  letter-spacing: 0.01em;
}
.hero__visual {
  position: relative;
}
body.sitestaffr-landing-page .hero {
  text-align: left;
}
body.sitestaffr-landing-page .hero__content {
  max-width: none;
}
body.sitestaffr-landing-page .hero__subtitle {
  margin-left: 0;
  margin-right: 0;
}
body.sitestaffr-landing-page .hero__actions {
  justify-content: flex-start;
}

/* ========== SECTION 3: VOICE & TEXT ========== */
.voice-text-section {
  padding: var(--section-padding);
  background: var(--cream);
  position: relative;
}
.voice-text-section__header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 64px);
}
.voice-text-section__header h2 {
  max-width: 600px;
  margin: 0 auto;
}
.voice-text-section__desc {
  max-width: 740px;
  margin: 16px auto 0;
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---------- Interactive panel ---------- */
.voice-text-section__panel {
  max-width: 640px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0,131,143,0.04);
  overflow: hidden;
}

/* Mode selector cards */
.voice-text-section__selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 28px 28px 0;
}
.voice-text-section__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 28px 20px;
  background: var(--cream);
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.voice-text-section__card:hover {
  background: var(--teal-pale);
  border-color: rgba(0,131,143,0.15);
}
.voice-text-section__card--active {
  background: var(--teal-pale);
  border-color: var(--teal-mid);
  box-shadow: 0 0 0 3px rgba(0,151,167,0.12);
}
.voice-text-section__card-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: white;
  color: var(--teal-deep);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.voice-text-section__card--active .voice-text-section__card-badge {
  background: var(--teal-deep);
  color: white;
  box-shadow: 0 4px 14px rgba(0,131,143,0.3);
  transform: scale(1.05);
}
.voice-text-section__card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
}
.voice-text-section__card-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ---------- Preview area ---------- */
.voice-text-section__preview {
  position: relative;
  min-height: 340px;
  margin: 20px 28px 0;
  border-top: 1px solid var(--border-light);
}
.voice-text-section__mode {
  position: absolute;
  inset: 0;
  padding: 28px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
}
.voice-text-section__mode--active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ---------- Voice preview ---------- */
.voice-text-section__voice-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.voice-text-section__mic-ring {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-deep), var(--teal-light));
  color: white;
}
.voice-text-section__mic-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--teal-light);
  animation: vtMicPulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.voice-text-section__mic-pulse--delayed {
  animation-delay: 0.6s;
}
@keyframes vtMicPulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.8); opacity: 0; }
}
.voice-text-section__mic-svg {
  position: relative;
  z-index: 1;
}

/* Waveform bars */
.voice-text-section__waveform {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 32px;
}
.voice-text-section__waveform span {
  width: 4px;
  border-radius: 4px;
  background: var(--teal-mid);
  animation: vtWave 1.2s ease-in-out infinite;
}
.voice-text-section__waveform span:nth-child(1) { height: 10px; animation-delay: 0s; }
.voice-text-section__waveform span:nth-child(2) { height: 18px; animation-delay: 0.1s; }
.voice-text-section__waveform span:nth-child(3) { height: 26px; animation-delay: 0.2s; }
.voice-text-section__waveform span:nth-child(4) { height: 32px; animation-delay: 0.3s; }
.voice-text-section__waveform span:nth-child(5) { height: 26px; animation-delay: 0.2s; }
.voice-text-section__waveform span:nth-child(6) { height: 18px; animation-delay: 0.1s; }
.voice-text-section__waveform span:nth-child(7) { height: 10px; animation-delay: 0s; }
@keyframes vtWave {
  0%, 100% { transform: scaleY(0.4); opacity: 0.5; }
  50% { transform: scaleY(1); opacity: 1; }
}

.voice-text-section__listening {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal-mid);
  animation: vtPulseText 2s ease-in-out infinite;
}
@keyframes vtPulseText {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* Transcript messages */
.voice-text-section__transcript {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.voice-text-section__msg {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  animation: vtMsgIn 0.5s ease-out both;
}
.voice-text-section__msg:nth-child(1) { animation-delay: 0.2s; }
.voice-text-section__msg:nth-child(2) { animation-delay: 0.8s; }
@keyframes vtMsgIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.voice-text-section__msg-dot {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 6px;
}
.voice-text-section__msg--visitor .voice-text-section__msg-dot {
  background: var(--emerald);
}
.voice-text-section__msg--ai .voice-text-section__msg-dot {
  background: var(--teal-mid);
}
.voice-text-section__msg-content {
  flex: 1;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-secondary);
}
.voice-text-section__msg-who {
  display: block;
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  margin-bottom: 2px;
}

/* ---------- Text chat preview ---------- */
.voice-text-section__chat {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}
.voice-text-section__chat-row {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  animation: vtMsgIn 0.4s ease-out both;
}
.voice-text-section__chat-row:nth-child(1) { animation-delay: 0.1s; }
.voice-text-section__chat-row:nth-child(2) { animation-delay: 0.5s; }
.voice-text-section__chat-row:nth-child(3) { animation-delay: 0.9s; }
.voice-text-section__chat-row:nth-child(4) { animation-delay: 1.4s; }
.voice-text-section__chat-row--visitor {
  flex-direction: row-reverse;
}
.voice-text-section__chat-avatar {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--teal-pale);
  color: var(--teal-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}
.voice-text-section__chat-bubble {
  max-width: 75%;
  padding: 10px 16px;
  border-radius: 16px;
  font-size: 0.9rem;
  line-height: 1.5;
}
.voice-text-section__chat-row--ai .voice-text-section__chat-bubble {
  background: var(--cream);
  color: var(--text-primary);
  border-bottom-left-radius: 4px;
}
.voice-text-section__chat-row--visitor .voice-text-section__chat-bubble {
  background: var(--teal-deep);
  color: white;
  border-bottom-right-radius: 4px;
}

/* Typing dots */
.voice-text-section__dots {
  display: flex;
  gap: 4px;
  padding: 2px 0;
}
.voice-text-section__dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--text-muted);
  animation: vtDot 1.4s ease-in-out infinite;
}
.voice-text-section__dots span:nth-child(2) { animation-delay: 0.15s; }
.voice-text-section__dots span:nth-child(3) { animation-delay: 0.3s; }
@keyframes vtDot {
  0%, 80%, 100% { opacity: 0.25; transform: scale(0.8); }
  40% { opacity: 1; transform: scale(1); }
}

/* Chat input bar */
.voice-text-section__input-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--cream);
  border: 1px solid var(--border-light);
}
.voice-text-section__input-text {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.voice-text-section__send-icon {
  color: var(--teal-mid);
  opacity: 0.5;
}

/* ---------- Tagline ---------- */
.voice-text-section__tagline {
  text-align: center;
  padding: 20px 28px 28px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* ---------- Mobile ---------- */
@media (max-width: 768px) {
  .voice-text-section__panel {
    margin: 0;
    border-radius: var(--radius-lg);
  }
  .voice-text-section__selector {
    gap: 10px;
    padding: 20px 16px 0;
  }
  .voice-text-section__card {
    padding: 20px 12px;
    gap: 8px;
  }
  .voice-text-section__card-badge {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }
  .voice-text-section__card-desc {
    display: none;
  }
  .voice-text-section__preview {
    margin: 16px 16px 0;
    min-height: 300px;
  }
  .voice-text-section__tagline {
    padding: 16px 16px 20px;
  }
}

/* ========== SECTION 6: VOICE SHOWCASE WRAPPER ========== */
.voice-section {
  padding: var(--section-padding);
  background: var(--cream);
  position: relative;
  overflow: hidden;
}


/* Background portrait — fills entire section */
.voice-section__bg-portrait {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 38%;
  pointer-events: none;
}
.voice-section__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.voice-section__bg-img--active {
  opacity: 1;
}
@media (max-width: 1140px) {
  .voice-section__bg-portrait { display: none; }
}

/* Hide small portrait area on desktop — large background portrait replaces it */
@media (min-width: 1141px) {
  .voice-showcase__portrait-area {
    display: none !important;
  }
}

.voice-section__header {
  text-align: left;
  margin-bottom: 40px;
}
.voice-section__header h2 {
  max-width: 600px;
}
@media (max-width: 1140px) {
  .voice-section__header {
    text-align: center;
  }
  .voice-section__header h2 {
    margin: 0 auto;
  }
}
.voice-section__subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.voice-section__subtitle span {
  display: block;
}
@media (min-width: 1200px) {
  .voice-section__subtitle span:first-child {
    white-space: nowrap;
  }
}

/* ========== SECTION 7: ONBOARDING (WHITE-GLOVE SETUP) ========== */
.onboarding-section {
  padding: clamp(80px, 12vw, 140px) 0;
  background:
    linear-gradient(160deg, #004D40 0%, #00695C 40%, #00838F 100%);
  position: relative;
  overflow: hidden;
}
.onboarding-section::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 60%;
  height: 140%;
  background: radial-gradient(ellipse, rgba(31,182,204,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.onboarding-section::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -6%;
  transform: translateY(-50%);
  width: 700px;
  height: 700px;
  background: url('../images/sitestaffr-icon.svg') no-repeat center / contain;
  opacity: 0.06;
  pointer-events: none;
}
.onboarding-section__inner {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.onboarding-section .section-label {
  color: rgba(224,247,250,0.8);
}
.onboarding-section__headline {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: white;
  margin-bottom: 16px;
  line-height: 1.15;
}
.onboarding-section__subtitle {
  font-size: 1.1rem;
  color: rgba(240,250,250,0.85);
  line-height: 1.65;
  margin-bottom: 36px;
}
.onboarding-section__cta {
  margin-bottom: 20px;
}
.onboarding-section__cta .sitestaffr-button-widget {
  display: inline-flex;
}
.onboarding-section__privacy {
  font-size: 0.82rem;
  color: rgba(240,250,250,0.5);
  margin-bottom: 12px;
}
.onboarding-section__privacy a {
  color: rgba(240,250,250,0.7);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.onboarding-section__privacy a:hover {
  color: white;
}
.onboarding-section__fallback {
  font-size: 0.9rem;
  color: rgba(240,250,250,0.65);
}
.onboarding-section__fallback a {
  color: var(--teal-pale);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 500;
}
.onboarding-section__fallback a:hover {
  color: white;
}

/* -- DIY timeline (inside onboarding section) -- */
.onboarding-section__diy {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(224,247,250,0.15);
}
.onboarding-section__diy-label {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(224,247,250,0.55);
  margin-bottom: 28px;
}
.onboarding-section__timeline {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 700px;
  margin: 0 auto;
}
.onboarding-diy-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  max-width: 200px;
}
.onboarding-diy-step__circle {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(224,247,250,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--teal-pale);
  flex-shrink: 0;
}
.onboarding-diy-step__title {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(240,250,250,0.9);
  margin-bottom: 4px;
}
.onboarding-diy-step__desc {
  font-size: 0.82rem;
  color: rgba(240,250,250,0.5);
}
.onboarding-diy-step__connector {
  flex: 0 0 48px;
  height: 2px;
  background: rgba(224,247,250,0.25);
  margin-top: 34px;
  border-radius: 2px;
}
.onboarding-section__diy-btn {
  margin-top: 28px;
}

@media (max-width: 600px) {
  .onboarding-section__timeline {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .onboarding-diy-step {
    max-width: 260px;
  }
  .onboarding-diy-step__connector {
    width: 2px;
    height: 24px;
    flex: 0 0 24px;
    margin-top: 0;
  }
  .onboarding-section::after {
    display: none;
  }
}

/* ========== SECTION 8: PRICING TEASER ========== */
.pricing-teaser {
  padding: var(--section-padding);
  background: var(--cream);
}
.pricing-teaser__header {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 56px);
}
.pricing-teaser__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 880px;
  margin: 0 auto;
}
.pricing-teaser__card {
  position: relative;
  background: white;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pricing-teaser__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* -- Popular card highlight -- */
.pricing-teaser__card--popular {
  border-color: var(--teal-light);
  border-width: 2px;
  box-shadow: 0 4px 20px rgba(0, 131, 143, 0.12);
}
.pricing-teaser__popular-tag {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: white;
  background: var(--teal-deep);
  padding: 4px 14px;
  border-radius: 12px;
  white-space: nowrap;
}
.pricing-teaser__plan {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.pricing-teaser__price {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--teal-deep);
  line-height: 1;
}
.pricing-teaser__term {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.pricing-teaser__minutes {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
}
.pricing-teaser__best-for {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
}

/* Pricing teaser footer */
.pricing-teaser__footer {
  text-align: center;
  margin-top: clamp(28px, 4vw, 44px);
}
.pricing-teaser__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--teal-deep);
  transition: color 0.2s ease;
}
.pricing-teaser__link:hover {
  color: var(--teal-light);
}
.pricing-teaser__link svg {
  transition: transform 0.2s ease;
}
.pricing-teaser__link:hover svg {
  transform: translateX(3px);
}

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

/* ========== FINAL CTA: DECORATION + CONTENT WRAPPER ========== */
.final-cta__decoration {
  display: none;
}
.final-cta__content {
  position: relative;
  z-index: 1;
}
.final-cta__highlight {
  color: #b9e991;
}

/* ========== HOMEPAGE V2: RESPONSIVE HERO GRID ========== */
@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  body.sitestaffr-landing-page .hero {
    text-align: center;
  }
  body.sitestaffr-landing-page .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  body.sitestaffr-landing-page .hero__actions {
    justify-content: center;
  }
  .hero__visual {
    max-width: 520px;
    margin: 0 auto;
  }
}
