/* ========== 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 24px;
}

.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.4rem, 5.5vw, 3.8rem); 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: 60px;
  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__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;
}

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

/* ========== SECTION 1: HERO ========== */
.hero {
  padding: clamp(120px, 15vw, 180px) 0 var(--section-padding);
  padding-bottom: clamp(60px, 10vw, 100px);
  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__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 {
  color: var(--text-primary);
  font-style: normal;
}
.hero__subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.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;
}
.widget-mockup {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.widget-mockup__browser-bar {
  background: #f4f1ec;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.widget-mockup__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd6cc;
}
.widget-mockup__dot:first-child { background: #f5a89a; }
.widget-mockup__dot:nth-child(2) { background: #f5d88a; }
.widget-mockup__dot:nth-child(3) { background: #a0dba0; }
.widget-mockup__url {
  flex: 1;
  background: white;
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-left: 8px;
}
.widget-mockup__body {
  padding: 32px;
  min-height: 300px;
  background: linear-gradient(180deg, #fafafa 0%, white 100%);
  position: relative;
}
.widget-mockup__site-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.widget-mockup__site-tagline {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
}
.widget-mockup__fake-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.widget-mockup__line {
  height: 10px;
  background: #f0ece4;
  border-radius: 6px;
}
.widget-mockup__line:nth-child(1) { width: 90%; }
.widget-mockup__line:nth-child(2) { width: 75%; }
.widget-mockup__line:nth-child(3) { width: 85%; }
.widget-mockup__line:nth-child(4) { width: 60%; }

/* The floating widget */
.widget-bubble {
  position: absolute;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.widget-bubble__caption {
  max-width: 260px;
  background: white;
  color: var(--text-secondary);
  font-size: 0.8rem;
  line-height: 1.45;
  padding: 10px 12px;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0,131,143,0.12), 0 3px 8px rgba(0,0,0,0.05);
  position: relative;
}
.widget-bubble__caption::after {
  content: '';
  position: absolute;
  top: 100%;
  right: 18px;
  border: 6px solid transparent;
  border-top-color: white;
}
.widget-bubble__btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald) 0%, #16c79a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(16,185,129,0.4);
  position: relative;
}
.widget-bubble__btn::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(16,185,129,0.42);
  animation: widgetGlow 2.1s ease-in-out infinite;
}
@keyframes widgetGlow {
  0%, 100% {
    transform: scale(0.96);
    opacity: 0.35;
  }
  50% {
    transform: scale(1.04);
    opacity: 0.7;
  }
}
.widget-bubble__voice-bars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 20px;
  position: relative;
  z-index: 1;
}
.widget-bubble__voice-bars span {
  display: block;
  width: 4px;
  height: 12px;
  background: white;
  border-radius: 999px;
  animation: widgetSpeakBars 1.1s ease-in-out infinite;
}
.widget-bubble__voice-bars span:nth-child(1) { animation-delay: 0s; }
.widget-bubble__voice-bars span:nth-child(2) {
  height: 18px;
  animation-delay: 0.14s;
}
.widget-bubble__voice-bars span:nth-child(3) { animation-delay: 0.28s; }
@keyframes widgetSpeakBars {
  0%, 100% {
    transform: scaleY(0.58);
    opacity: 0.75;
  }
  50% {
    transform: scaleY(1.12);
    opacity: 1;
  }
}

/* ========== SECTION 2: TRUST BAR ========== */
.trust-bar {
  padding: 40px 0;
  background: var(--cream);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 5vw, 60px);
  flex-wrap: wrap;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  white-space: nowrap;
}
.trust-bar__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--teal-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-deep);
  font-size: 18px;
  flex-shrink: 0;
}
.trust-bar__stat {
  font-weight: 700;
  color: var(--teal-deep);
  font-size: 1.05rem;
}
.trust-bar__divider {
  width: 1px;
  height: 32px;
  background: var(--border-light);
}

/* ========== 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-section__side-images {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.language-section__side-image {
  position: absolute;
  bottom: 0;
  width: clamp(340px, 26vw, 520px);
  height: auto;
  --language-side-opacity: 0.92;
  opacity: var(--language-side-opacity);
  filter: drop-shadow(0 14px 22px rgba(10, 46, 51, 0.2));
}
.language-section__side-image.reveal {
  opacity: 0;
  transform: none;
  transition: opacity 0.65s ease;
}
.language-section__side-image.reveal.visible {
  opacity: var(--language-side-opacity);
}
.language-section__side-image--left {
  left: 0;
}
.language-section__side-image--right {
  right: 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(220px, 24vw, 320px);
  }
}

@media (max-width: 768px) {
  .language-section__cards { grid-template-columns: 1fr; }
  .language-section {
    padding-bottom: clamp(300px, 56vw, 420px);
  }
  .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__side-image--right { display: none; }
  .language-section__side-image--left {
    left: 0;
    right: auto;
    bottom: 0;
    transform: none;
    width: min(520px, 108vw);
    --language-side-opacity: 0.9;
  }
  .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; }
}

/* ========== 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%;
}
/* 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__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 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);
}
.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);
}

/* ========== SECTION 5: HOW IT WORKS ========== */
.how-section {
  padding: var(--section-padding);
  background: var(--cream);
}
.how-section .container--narrow { text-align: center; margin-bottom: 60px; }
.how-section h2 { margin-bottom: 16px; }
.how-section__subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
}
.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: var(--cream);
  position: relative;
}
.pricing-section__header {
  text-align: center;
  margin-bottom: 16px;
}
.pricing-section h2 { margin-bottom: 16px; }
.pricing-section__subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 12px;
}
.pricing-section__compare {
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 48px;
}
.pricing-section__compare strong {
  color: var(--text-secondary);
}

.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-addon {
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
}
.pricing-addon strong { color: var(--text-primary); }

/* ========== SECTION 8: TESTIMONIALS ========== */
.testimonials-section {
  padding: var(--section-padding);
  background: var(--warm-white);
}
.testimonials-section__header {
  text-align: center;
  margin-bottom: 56px;
}
.testimonials-section h2 { margin-bottom: 16px; }
.testimonials-section__subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.testimonial {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.testimonial__stars {
  color: #f5a623;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial__quote {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: white;
  flex-shrink: 0;
}
.testimonial__avatar--blue { background: linear-gradient(135deg, #3b82f6, #60a5fa); }
.testimonial__avatar--rose { background: linear-gradient(135deg, #e11d48, #fb7185); }
.testimonial__avatar--amber { background: linear-gradient(135deg, #d97706, #fbbf24); }
.testimonial__avatar--violet { background: linear-gradient(135deg, #7c3aed, #a78bfa); }
.testimonial__name { font-weight: 600; font-size: 0.95rem; }
.testimonial__role { font-size: 0.82rem; color: var(--text-muted); }

/* ========== 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, var(--teal-deep) 0%, #005f6b 100%);
  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");
  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 .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);
}

/* ========== 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); }
  .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 {
    color: var(--teal-deep);
    font-style: italic;
    letter-spacing: -0.01em;
  }
}

@media (max-width: 768px) {
  .hero-caller { display: none; }
  body { font-size: 16px; }
  .nav { padding: 12px 0; }
  .nav__inner { gap: 12px; }
  .nav__logo-image {
    height: 40px;
    max-width: 180px;
  }
  .nav__menu {
    flex: 1;
    justify-content: center;
    gap: 14px;
    margin-left: 0;
    margin-right: 0;
  }
  .nav__link { font-size: 0.8rem; }
  .nav__cta { display: none; }
  #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; }
  .trust-bar__divider { display: none; }
  .trust-bar__inner { gap: 20px; }
  .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-grid { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .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 16px; }
  .nav__menu { gap: 10px; }
  .nav__link { font-size: 0.76rem; }
  .cost-cards { grid-template-columns: 1fr; }
  .trust-bar__item { font-size: 0.85rem; }
  .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;
  }
}

/* ========== MAINTENANCE PAGE ========== */
body.phoneease-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.phoneease-legal-page .legal-page {
  padding: clamp(100px, 12vw, 140px) 0 clamp(60px, 10vw, 100px);
}

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

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

body.phoneease-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.phoneease-legal-page .legal-section {
  margin-bottom: 36px;
}

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

body.phoneease-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.phoneease-legal-page .legal-section p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

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

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

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

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

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

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

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

body.phoneease-legal-page .legal-section th,
body.phoneease-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.phoneease-legal-page .legal-section th {
  font-weight: 600;
  color: var(--text-primary);
  background: var(--cream);
}

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