:root {
  --bg: #FFFFFF;
  --bg-soft: #F8FAFC;
  --bg-muted: #F1F5F9;
  --surface: #FFFFFF;
  --text: #0F172A;
  --text-soft: #475569;
  --text-muted: #64748B;
  --border: #E2E8F0;
  --border-soft: #F1F5F9;
  --accent: #0D9488;
  --accent-hover: #0F766E;
  --accent-soft: rgba(13, 148, 136, 0.08);
  --accent-border: rgba(13, 148, 136, 0.22);
  --yellow: #FDE047;
  --navy: #0F172A;
  --success: #10B981;
  --warning: #F59E0B;
  --shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.06), 0 2px 4px -1px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 10px 15px -3px rgba(15, 23, 42, 0.07), 0 4px 6px -2px rgba(15, 23, 42, 0.03);
  --shadow-lg: 0 20px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
  --radius-sm: 6px;
  --radius: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --container: 1140px;
  --font: "Rubik", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Utilities */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  margin: 0 0 0.75rem;
  line-height: 1.15;
}

.section-header p {
  color: var(--text-muted);
  margin: 0;
  font-size: 1.05rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 999px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s ease;
}

.btn.primary {
  background: var(--yellow);
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 0 rgba(15, 23, 42, 0.18);
}

.btn.primary:hover:not(:disabled) {
  background: #FACC15;
  transform: translateY(-2px);
  box-shadow: 0 6px 0 rgba(15, 23, 42, 0.18);
}

.btn.primary:active:not(:disabled) {
  transform: translateY(1px);
  box-shadow: 0 2px 0 rgba(15, 23, 42, 0.18);
}

.btn.secondary {
  background: var(--bg-soft);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn.secondary:hover:not(:disabled) {
  background: var(--bg-muted);
}

.btn.ghost {
  background: transparent;
  color: var(--text-soft);
}

.btn.ghost:hover:not(:disabled) {
  color: var(--text);
  background: var(--bg-soft);
}

.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.navbar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo img {
  height: 60px;
  max-height: 60px;
  max-width: 280px;
  width: auto;
  display: block;
}

.logo-accent {
  color: var(--accent);
  font-style: italic;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.logo:hover {
  text-decoration: none;
}

.nav-phone {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid var(--accent-border);
  cursor: pointer;
  padding: 0;
  font: inherit;
}

.nav-phone svg {
  width: 18px;
  height: 18px;
}

.nav-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  color: var(--accent);
  cursor: pointer;
  padding: 0;
}

.nav-menu-toggle svg {
  width: 18px;
  height: 18px;
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  flex-direction: column;
  padding: 0.5rem 1.5rem;
  z-index: 49;
}

.mobile-nav a {
  display: block;
  padding: 0.75rem 0;
  color: var(--text);
  font-weight: 500;
  border-bottom: 1px solid var(--border-soft);
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav.open {
  display: flex;
}

.nav-marquee {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-soft);
  font-weight: 600;
  font-size: 0.9rem;
}

.nav-links a:hover {
  color: var(--text);
  text-decoration: none;
}

.nav-cta {
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
}

/* Top strip */
.top-strip {
  background: var(--navy);
  overflow: hidden;
  padding: 0.55rem 0;
}

.top-strip-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  white-space: nowrap;
  animation: marquee 26s linear infinite;
}

.top-strip-track span {
  font-size: 0.78rem;
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
}

.top-strip-track span.highlight {
  color: var(--yellow);
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Hero */
.hero {
  padding: 0;
  background: var(--bg);
}

.hero-splash {
  position: relative;
  overflow: hidden;
  padding: 5rem 1.5rem 7rem;
  background:
    radial-gradient(640px 320px at 85% 15%, rgba(255, 255, 255, 0.10), transparent 60%),
    radial-gradient(560px 300px at 8% 95%, rgba(0, 0, 0, 0.10), transparent 60%),
    linear-gradient(180deg, #0F766E 0%, #0D9488 100%);
  color: #fff;
  text-align: center;
}

.hero-splash-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}

.hero-splash h1 {
  font-size: clamp(2.75rem, 6.5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
  color: #fff;
}

.hero-splash h1 em {
  color: var(--yellow);
}

.hero-splash p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 auto 2rem;
  max-width: 580px;
  line-height: 1.55;
}

.hero-splash-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.splash-cta {
  background: var(--yellow);
  color: var(--navy);
  border-radius: 999px;
  padding: 1.05rem 2.25rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.18);
}

.splash-cta:hover:not(:disabled) {
  background: #FACC15;
  transform: translateY(-2px);
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.18);
}

.splash-cta:active:not(:disabled) {
  transform: translateY(2px);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.18);
}

.splash-link {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: var(--accent);
  border-radius: 999px;
  padding: 1.05rem 2rem;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.12);
  transition: all 0.15s ease;
}

.splash-link:hover {
  background: var(--bg-soft);
  color: var(--accent-hover);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.12);
}

.hero-character {
  position: absolute;
  right: 6%;
  bottom: 48px;
  width: 190px;
  z-index: 1;
  animation: float 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-14px) rotate(2deg); }
}

.hero-trust {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.5rem 1.5rem 0;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 0.75rem;
}

.hero-stats .stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-audience {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
  text-align: center;
}

.hero-stats .stat-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent);
}

.hero-stats .stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.social-proof {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.avatar-stack {
  display: flex;
}

.avatar-stack span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-muted);
  border: 2px solid var(--surface);
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-left: -8px;
}

.avatar-stack span:first-child {
  margin-left: 0;
}

/* Hero visual */
.hero-visual {
  position: relative;
  min-height: 480px;
}

.visual-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.visual-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1rem;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
}

.visual-card-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.live-call-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 280px;
  z-index: 3;
}

.live-call-card .visual-card-body {
  padding: 1.25rem;
}

.call-timer {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.call-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.waveform {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 40px;
  margin-bottom: 1rem;
}

.waveform span {
  width: 4px;
  background: var(--accent);
  border-radius: 2px;
  animation: wave 1s ease-in-out infinite;
}

.waveform span:nth-child(1) { height: 12px; animation-delay: 0s; }
.waveform span:nth-child(2) { height: 24px; animation-delay: 0.1s; }
.waveform span:nth-child(3) { height: 32px; animation-delay: 0.2s; }
.waveform span:nth-child(4) { height: 18px; animation-delay: 0.3s; }
.waveform span:nth-child(5) { height: 36px; animation-delay: 0.4s; }
.waveform span:nth-child(6) { height: 22px; animation-delay: 0.5s; }
.waveform span:nth-child(7) { height: 30px; animation-delay: 0.6s; }
.waveform span:nth-child(8) { height: 16px; animation-delay: 0.7s; }

@keyframes wave {
  0%, 100% { transform: scaleY(0.6); }
  50% { transform: scaleY(1); }
}

.call-actions {
  display: flex;
  gap: 0.5rem;
}

.call-actions .pill {
  flex: 1;
  justify-content: center;
}

.dashboard-card {
  position: absolute;
  top: 80px;
  right: 0;
  width: 360px;
  z-index: 2;
}

.dashboard-card .visual-card-body {
  padding: 1.25rem;
}

.dashboard-metric {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.dashboard-metric .value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
}

.dashboard-metric .label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.metric-change {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
  font-size: 0.75rem;
  font-weight: 700;
}

.appointment-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem;
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
}

.appointment-row:last-child {
  margin-bottom: 0;
}

.appointment-info {
  display: flex;
  flex-direction: column;
}

.appointment-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.appointment-time {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.appointment-status {
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-hover);
  font-size: 0.7rem;
  font-weight: 700;
}

.activity-card {
  position: absolute;
  bottom: 0;
  left: 40px;
  width: 260px;
  z-index: 1;
}

.activity-card .visual-card-body {
  padding: 1rem;
}

.activity-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border-soft);
}

.activity-item:last-child {
  border-bottom: none;
}

.activity-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-muted);
  display: grid;
  place-items: center;
  color: var(--text-muted);
  font-size: 0.75rem;
}

.activity-text {
  font-size: 0.8rem;
  color: var(--text-soft);
}

.activity-text strong {
  color: var(--text);
}

.floating-pill {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text);
  z-index: 4;
}

.floating-pill.top-right {
  top: -12px;
  right: -12px;
}

.floating-pill.bottom-left {
  bottom: 40px;
  left: -20px;
}

.floating-pill svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--bg-muted);
  color: var(--text-soft);
  font-size: 0.8rem;
  font-weight: 600;
}

.pill.accent {
  background: var(--accent-soft);
  color: var(--accent-hover);
}

/* Why choose */
.why-section {
  padding: 4.5rem 0 5rem;
  background: var(--bg);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto 2.75rem;
}

.why-card {
  text-align: center;
}

.why-illustration {
  width: 150px;
  height: 150px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  display: grid;
  place-items: center;
  transition: transform 0.2s ease;
}

.why-card:hover .why-illustration {
  transform: scale(1.06) rotate(-2deg);
}

.why-illustration svg {
  width: 84px;
  height: 84px;
}

.why-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 0 0.6rem;
}

.why-card p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.98rem;
}

.why-cta {
  text-align: center;
}

/* Social proof */
.social-proof-section {
  padding: 2rem 0;
  background: linear-gradient(135deg, #0F172A 0%, #134E4A 100%);
}

.social-proof-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  color: #94A3B8;
  font-size: 0.9rem;
}

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
}

.industry-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.9rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-weight: 600;
  color: #E2E8F0;
  font-size: 0.85rem;
}

.industry-icon {
  display: inline-flex;
  line-height: 0;
  color: var(--yellow);
}

.industry-icon svg {
  width: 16px;
  height: 16px;
}

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.step-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.step-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.step-card p {
  color: var(--text-muted);
  margin: 0 0 1rem;
  font-size: 0.95rem;
}

.step-visual {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  font-size: 0.8rem;
  color: var(--text-soft);
}

/* Use cases section tint */
.use-cases-section {
  background: linear-gradient(180deg, #F8FAFC 0%, #F0FDFA 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Use cases tabs */
.tabs {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-muted);
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
}

.tab-btn:hover {
  background: var(--bg-soft);
  color: var(--text);
}

.tab-btn.active {
  background: var(--accent);
  color: #FFFFFF;
  border-color: var(--accent);
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.25);
}

.tab-panel {
  display: none;
  animation: fadeIn 0.3s ease;
}

.tab-panel.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.tab-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.tab-text h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 1rem;
}

.tab-text p {
  color: var(--text-muted);
  margin: 0 0 1.25rem;
}

.tab-text ul {
  color: var(--text-soft);
  padding-left: 1.25rem;
  margin: 0 0 1.5rem;
}

.tab-text li {
  margin: 0.5rem 0;
}

.tab-visual {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

/* Feature grid — dark navy section */
.features-section {
  background:
    radial-gradient(720px 360px at 90% 0%, rgba(13, 148, 136, 0.18), transparent 60%),
    linear-gradient(180deg, #0B1220 0%, #0F172A 100%);
  color: #CBD5E1;
}

.features-section .section-header h2 {
  color: #FFFFFF;
}

.features-section .section-header p {
  color: #94A3B8;
}

.features-section .eyebrow {
  color: var(--yellow);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.features-section .feature-card {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: none;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.features-section .feature-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(45, 212, 191, 0.35);
  transform: translateY(-2px);
}

.features-section .feature-icon {
  background: rgba(13, 148, 136, 0.16);
  color: #2DD4BF;
  border-color: rgba(45, 212, 191, 0.30);
}

.features-section .feature-card h4 {
  color: #FFFFFF;
}

.features-section .feature-card p {
  color: #94A3B8;
}

.features-section .feature-mini {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.10);
  color: #CBD5E1;
}

.features-section .feature-mini strong {
  color: #FFFFFF;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border: 1px solid var(--accent-border);
}

.feature-icon svg {
  width: 22px;
  height: 22px;
}

.feature-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.feature-card p {
  color: var(--text-muted);
  margin: 0 0 1rem;
  font-size: 0.95rem;
}

.feature-mini {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
}

/* Pricing */
.pricing-section {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1040px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.pricing-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(13, 148, 136, 0.1);
  border-color: var(--accent-border);
}

.pricing-card:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.2), var(--shadow);
}

.pricing-card .btn {
  width: 100%;
  pointer-events: none;
}

.pricing-card .btn:focus {
  outline: none;
}

/* Desktop: let the head's children participate in the card flex as before */
.pricing-head {
  display: contents;
}

.pricing-compact {
  display: none;
}

.pricing-card.featured {
  border-color: var(--accent-border);
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--surface) 100%);
  box-shadow: 0 8px 24px rgba(13, 148, 136, 0.08), 0 0 0 1px var(--accent-border);
}

.pricing-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-hover);
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.pricing-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
}

.pricing-card .price {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--text);
}

.pricing-card .price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-compare {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.pricing-card ul {
  flex: 1;
  color: var(--text-soft);
  margin: 0 0 1.5rem;
  padding-left: 1.25rem;
}

.pricing-card li {
  margin: 0.5rem 0;
}

.pricing-card .btn {
  width: 100%;
}

/* Testimonials */
.testimonials-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, #F0FDFA 0%, #FFFFFF 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1040px;
  margin: 0 auto 1.5rem;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.testimonial-stars {
  color: var(--warning);
  letter-spacing: 0.05em;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.testimonial-card blockquote {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.6;
  margin: 0 0 1rem;
  flex: 1;
}

.testimonial-card cite {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.testimonial-card cite strong {
  color: var(--text);
  font-weight: 700;
}

.testimonial-disclaimer {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0;
}

/* FAQ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-item summary {
  padding: 1.25rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--text-muted);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding: 0 1.25rem 1.25rem;
  margin: 0;
  color: var(--text-muted);
}

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, #0D9488 0%, #0F766E 100%);
  color: #FFFFFF;
  padding: 4rem 1.5rem;
  text-align: center;
}

.cta-banner h2 {
  color: #FFFFFF;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin: 0 0 1rem;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
}

.cta-banner .btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.2);
}

.cta-banner .btn.secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.pricing-setup {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: -0.5rem 0 0.75rem;
}

.pricing-cancel {
  font-size: 0.8rem;
  color: var(--success);
  font-weight: 600;
  margin: 0.75rem 0 0;
  text-align: center;
}

/* Footer */
.contact-section {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
}

.contact-form {
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form .field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact-form .field-pair .field {
  margin-bottom: 0;
}

.contact-form label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--surface);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.12);
}

.contact-form button {
  align-self: flex-start;
}

@media (max-width: 480px) {
  .contact-form button {
    align-self: stretch;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2rem;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-brand {
  max-width: 280px;
}

.footer-brand .logo {
  margin-bottom: 0.75rem;
  display: inline-block;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text);
  margin: 0 0 1rem;
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0.5rem 0;
}

.footer-col a:hover {
  color: var(--text);
}

.footer-bottom {
  max-width: var(--container);
  margin: 3rem auto 0;
  padding: 1.5rem 1.5rem 0;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.85rem;
  text-align: center;
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal[hidden] {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(4px);
}

.modal-panel {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  max-width: 520px;
  width: 100%;
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
}

.modal-close:hover {
  color: var(--text);
  background: var(--bg-soft);
}

.modal-panel h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
}

.modal-subtitle {
  color: var(--text-muted);
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
}

.modal-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.modal-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 0.75rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

.modal-option:hover,
.modal-option:focus {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  outline: none;
}

.modal-option:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.option-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
}

.option-icon svg {
  width: 22px;
  height: 22px;
}

.option-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

/* Demo page */
.demo-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg-soft);
}

.demo-hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 1.25rem 1.5rem 1rem;
  background: linear-gradient(180deg, #0F766E 0%, #0D9488 100%);
  color: #fff;
}

.demo-hero-content {
  position: relative;
  z-index: 2;
  max-width: 520px;
  margin: 0 auto;
}

.demo-hero-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 0.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: grid;
  place-items: center;
  color: #fff;
}

.demo-hero-icon svg {
  width: 22px;
  height: 22px;
}

.demo-hero h1 {
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 0 0.2rem;
  color: #fff;
}

.demo-hero-subtitle {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

.demo-hero-graphic {
  position: absolute;
  right: 2%;
  bottom: -18px;
  width: 110px;
  z-index: 1;
  opacity: 0.85;
  pointer-events: none;
}

.demo-hero-graphic svg {
  width: 100%;
  height: auto;
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-10px) rotate(2deg); }
}

.demo-container {
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
  padding: 1.25rem 1.5rem 4rem;
  flex: 1;
}

.disclaimer {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 1.25rem 0 0;
  text-align: center;
}

.status {
  display: none;
  text-align: center;
  padding: 1rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text);
}

.status.has-status {
  display: block;
}

.visualizer {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  height: 56px;
  margin-bottom: 0.5rem;
  opacity: 0.25;
  transition: opacity 0.2s;
}

.visualizer.active {
  opacity: 1;
}

.visualizer .bar {
  width: 7px;
  background: var(--accent);
  border-radius: 4px;
  height: 4px;
  transition: height 0.06s ease;
}

.mic-hint {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.controls {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.controls .btn {
  flex: 1;
  max-width: 260px;
}

.voice-picker {
  margin-bottom: 1.25rem;
}

.voice-label {
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-soft);
  margin: 0 0 0.75rem;
}

.voice-options {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.voice-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  min-width: 120px;
  padding: 0.85rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}

.voice-option:hover:not(:disabled) {
  border-color: var(--accent-border);
}

.voice-option.active {
  border-color: var(--accent);
  background: var(--accent-soft);
  box-shadow: 0 0 0 1px var(--accent);
}

.voice-option:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.voice-icon {
  font-size: 1.4rem;
  line-height: 1;
  color: var(--accent);
}

.voice-name {
  font-weight: 700;
  color: var(--text);
}

.voice-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hint {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 1rem;
}

.hint p {
  margin: 0 0 0.6rem;
  font-weight: 700;
  color: var(--text);
}

.hint ul,
.hint ol {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--text-muted);
}

.hint li {
  margin: 0.4rem 0;
}

.hint h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 1.5rem 0 0.5rem;
}

.hint h3:first-child {
  margin-top: 0;
}

.script-hint {
  background: var(--accent-soft);
  border-color: var(--accent-border);
}

.mobile-sticky-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--bg);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 12px rgba(15, 23, 42, 0.08);
}

.mobile-sticky-cta.is-visible {
  display: block;
}

.mobile-sticky-cta .btn {
  width: 100%;
  justify-content: center;
}

/* Hide sticky CTA when industry modal is open */
body:has(#demo-modal:not([hidden])) .mobile-sticky-cta {
  display: none !important;
}

/* Modal compact overrides */
@media (max-width: 560px) {
  .modal-panel {
    padding: 1.25rem;
    max-width: calc(100vw - 1.5rem);
  }

  .modal-panel h2 {
    font-size: 1.25rem;
  }

  .modal-subtitle {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }

  .modal-options {
    gap: 0.5rem;
  }

  .modal-option {
    padding: 0.85rem 0.5rem;
    gap: 0.35rem;
  }

  .option-icon {
    width: 34px;
    height: 34px;
  }

  .option-icon svg {
    width: 18px;
    height: 18px;
  }

  .option-title {
    font-size: 0.85rem;
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .tab-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-visual {
    min-height: 420px;
    max-width: 500px;
    margin: 0 auto;
  }

  .live-call-card,
  .dashboard-card,
  .activity-card {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-bottom: 1rem;
  }

  .floating-pill {
    display: none;
  }

  .demo-hero-graphic {
    width: 90px;
    right: -2%;
    bottom: -14px;
  }

  .tab-content {
    text-align: center;
  }

  .tab-text ul {
    text-align: left;
  }

  .nav-links {
    display: none;
  }

  .nav-phone {
    display: inline-flex;
  }

  .nav-cta {
    display: none;
  }

  .nav-menu-toggle {
    display: inline-flex;
  }

  .navbar-inner {
    justify-content: space-between;
    gap: 0.75rem;
  }

  .nav-marquee {
    display: block;
    flex: 1;
    overflow: hidden;
    margin: 0 0.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }

  .marquee-track {
    display: flex;
    gap: 0.5rem;
    white-space: nowrap;
    animation: marquee 14s linear infinite;
  }

  @keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  .logo img {
    height: 46px;
    max-height: 46px;
    max-width: 210px;
  }

  .hero-splash {
    padding: 3rem 1.25rem 4rem;
  }

  /* Horizontal compact pricing rows on mobile */
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .pricing-card {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.25rem 1rem;
    padding: 1.1rem 1.25rem;
  }

  .pricing-head {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    flex: 1 1 auto;
    min-width: 0;
  }

  .pricing-card .pricing-badge {
    margin-bottom: 0.15rem;
    align-self: flex-start;
  }

  .pricing-card h3 {
    font-size: 1.05rem;
    margin: 0;
  }

  .pricing-card .price {
    font-size: 1.5rem;
    margin: 0;
  }

  .pricing-card .pricing-compare {
    display: none;
  }

  .pricing-card ul {
    display: none;
  }

  .pricing-compact {
    display: block;
    order: 3;
    flex: 0 0 100%;
    margin: 0.25rem 0 0;
    font-size: 0.78rem;
    color: var(--text-muted);
  }

  .pricing-card .btn {
    width: auto;
    flex: 0 0 auto;
    padding: 0.65rem 1.1rem;
    font-size: 0.8rem;
  }

  .hero-character {
    display: none;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .hero-splash h1 {
    font-size: 2.5rem;
  }

  .hero-trust {
    text-align: center;
  }

  .hero-stats {
    justify-content: center;
    gap: 1.5rem;
  }

  .hero-stats .stat {
    align-items: center;
  }

  .hero-audience {
    text-align: center;
  }

  .hero-visual {
    min-height: 360px;
    max-width: 420px;
    margin: 0 auto;
  }

  .mobile-sticky-cta.is-visible {
    display: block;
  }

  body:has(.mobile-sticky-cta.is-visible) {
    padding-bottom: 70px;
  }
}

@media (max-width: 480px) {
  .hero-splash h1 {
    font-size: 2.1rem;
  }

  .hero-splash p {
    font-size: 1rem;
  }

  .splash-cta {
    width: 100%;
  }

  .hero-stats {
    gap: 1.25rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .controls {
    flex-direction: column;
    align-items: center;
  }

  .modal-options {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .modal-panel {
    padding: 1.25rem;
  }

  .modal-panel h2 {
    font-size: 1.25rem;
  }

  .modal-subtitle {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }

  .modal-option {
    padding: 0.85rem 0.5rem;
    gap: 0.35rem;
  }

  .option-icon {
    width: 34px;
    height: 34px;
  }

  .option-icon svg {
    width: 18px;
    height: 18px;
  }

  .option-title {
    font-size: 0.85rem;
  }

  .demo-hero {
    padding: 1rem 1.25rem 0.875rem;
  }

  .demo-hero h1 {
    font-size: 1.25rem;
  }

  .demo-hero-subtitle {
    font-size: 0.85rem;
  }

  .demo-hero-icon {
    width: 38px;
    height: 38px;
  }

  .demo-hero-icon svg {
    width: 20px;
    height: 20px;
  }

  .demo-hero-graphic {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pricing-grid,
  .features-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Onboarding wizard
   ========================================================================== */

.onboarding-page {
  background: var(--bg-soft);
  min-height: 100vh;
}

.wizard-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2.5rem;
  padding-top: 2.5rem;
  padding-bottom: 4rem;
  align-items: start;
}

/* Step rail */
.wizard-rail {
  position: sticky;
  top: 5rem;
}

.wizard-rail ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.rail-step {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius);
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.rail-step.active {
  background: var(--surface);
  color: var(--text);
  font-weight: 600;
  box-shadow: var(--shadow);
}

.rail-step.done {
  color: var(--accent);
}

.rail-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--bg-muted);
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  flex-shrink: 0;
}

.rail-step.active .rail-num {
  background: var(--accent);
  color: #fff;
}

.rail-step.done .rail-num {
  background: var(--accent-soft);
  color: var(--accent);
}

.wizard-rail-note {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
  padding: 0 0.75rem;
}

/* Main column */
.wizard-main {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.wizard-progress {
  display: none;
  height: 4px;
  background: var(--bg-muted);
  border-radius: 999px;
  margin-bottom: 1.75rem;
  overflow: hidden;
}

.wizard-progress-bar {
  height: 100%;
  background: var(--accent);
  border-radius: 999px;
  transition: width 0.3s ease;
}

.wizard-step {
  display: none;
}

.wizard-step.active {
  display: block;
  animation: stepIn 0.25s ease;
}

@keyframes stepIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.wizard-step h1,
.wizard-step h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 0.4rem;
  letter-spacing: -0.01em;
}

.step-sub {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0 0 1.75rem;
  line-height: 1.5;
}

/* Choice cards */
.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.choice-grid.four {
  grid-template-columns: repeat(2, 1fr);
}

.choice-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.choice-card {
  background: var(--bg-soft);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem 1.1rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-family: inherit;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.choice-card:hover {
  border-color: var(--accent-border);
}

.choice-card.selected {
  border-color: var(--accent);
  background: var(--accent-soft);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.12);
}

.choice-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
}

.choice-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Fields */
.field {
  margin-bottom: 1.25rem;
}

.field label,
.field-label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.optional {
  font-weight: 500;
  color: var(--text-muted);
  font-size: 0.78rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--text);
  background: var(--surface);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.12);
}

.field textarea {
  resize: vertical;
  min-height: 56px;
}

.field-row {
  display: flex;
  gap: 0.6rem;
}

.field-row input {
  flex: 1;
}

.field-row .btn {
  flex-shrink: 0;
  width: auto;
}

.field-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.field-hint {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0.35rem 0 0;
}

.field-hint.ok { color: var(--success); }
.field-hint.warn { color: var(--warning); }

/* Chips input */
.chips-input {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 0.5rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  cursor: text;
}

.chips-input:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.12);
}

.chips-input input {
  border: none;
  outline: none;
  flex: 1;
  min-width: 140px;
  font-family: inherit;
  font-size: 0.88rem;
  padding: 0.3rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  color: var(--accent-hover);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.5rem 0.3rem 0.7rem;
  border-radius: 999px;
}

.chip button {
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  padding: 0 0.15rem;
}

/* Service rows removed — services step no longer in wizard */

.btn-small {
  width: auto;
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
}

/* Capability toggles */
.toggle-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  text-align: left;
  background: var(--bg-soft);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.1rem;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.toggle-row.on {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.toggle-copy {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.toggle-copy strong {
  font-size: 0.92rem;
  color: var(--text);
}

.toggle-copy span {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.toggle-switch {
  width: 44px;
  height: 24px;
  border-radius: 999px;
  background: var(--bg-muted);
  position: relative;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.toggle-switch::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.toggle-row.on .toggle-switch {
  background: var(--accent);
}

.toggle-row.on .toggle-switch::after {
  transform: translateX(20px);
}

.toggle-row.disabled {
  opacity: 0.55;
  cursor: not-allowed;
  background: var(--bg-muted);
}

.toggle-row.disabled .toggle-switch {
  background: var(--border);
}

/* Segmented control */
.segmented {
  display: flex;
  background: var(--bg-muted);
  border-radius: var(--radius);
  padding: 4px;
  gap: 4px;
}

.segmented button {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0.55rem;
  border-radius: calc(var(--radius) - 3px);
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.segmented button.selected {
  background: var(--surface);
  color: var(--text);
  box-shadow: var(--shadow);
}

/* Locked compliance block */
.locked-compliance {
  background: linear-gradient(135deg, #0F172A 0%, #134E4A 100%);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.25rem;
  margin: 1.5rem 0;
  color: #CBD5E1;
}

.locked-compliance-head {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--yellow);
  margin-bottom: 0.5rem;
}

.locked-compliance p {
  margin: 0;
  font-size: 0.92rem;
  color: #fff;
  line-height: 1.5;
}

.locked-compliance-note {
  margin-top: 0.5rem !important;
  font-size: 0.75rem !important;
  color: #94A3B8 !important;
}

/* Greeting builder */
.greeting-builder {
  display: block;
  padding: 1.1rem 1.25rem;
  background: var(--bg-soft);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  line-height: 1.75;
  font-size: 0.98rem;
  color: var(--accent);
}

.greeting-builder .greeting-locked {
  display: inline;
  color: inherit;
  font-weight: 500;
}

.greeting-builder .greeting-phrase {
  display: inline;
}

.greeting-builder .greeting-phrase.nowrap {
  white-space: nowrap;
}

.greeting-builder .greeting-blank {
  display: inline-block;
  appearance: none;
  -webkit-appearance: none;
  background: rgba(13, 148, 136, 0.10);
  border: 1.5px solid rgba(13, 148, 136, 0.25);
  border-radius: var(--radius-sm);
  padding: 0.25rem 0.55rem;
  margin: 0 0.1rem;
  font-family: inherit;
  font-size: 0.98rem;
  font-weight: 600;
  color: inherit;
  min-width: 120px;
  max-width: 260px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  vertical-align: baseline;
}

.greeting-builder .greeting-blank::placeholder {
  color: var(--accent);
  opacity: 0.65;
  font-weight: 400;
}

.greeting-builder .greeting-blank:focus {
  outline: none;
  background: #fff;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.12);
}

/* Review */
.review-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.review-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1rem;
  padding: 0.7rem 1.1rem;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--border-soft);
}

.review-row:last-child { border-bottom: none; }

.review-row:nth-child(odd) { background: var(--bg-soft); }

.review-row span {
  color: var(--text-muted);
  font-weight: 500;
}

.review-row strong {
  color: var(--text);
  font-weight: 600;
}

/* Test call box */
.test-call-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.25rem;
}

.test-call-copy {
  flex: 1;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.test-call-copy strong {
  font-size: 0.95rem;
  color: var(--text);
}

.test-call-copy span {
  font-size: 0.8rem;
  color: var(--text-soft);
}

.test-call-box .btn {
  width: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.test-call-live {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.test-call-status {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent-hover);
}

.test-call-status::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  margin-right: 0.45rem;
  animation: pulse 1.4s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.test-call-box .field-hint {
  flex-basis: 100%;
  margin: 0;
}

/* Go live */
.golive-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.4rem;
  margin-bottom: 1.5rem;
  background: var(--bg-soft);
}

.golive-plan-head {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 0.35rem;
}

.golive-plan-head .eyebrow {
  font-size: 0.72rem;
}

.golive-plan-head strong {
  font-size: 1.15rem;
  color: var(--text);
}

.golive-card p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.golive-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.golive-actions .btn {
  width: auto;
}

.golive-success {
  text-align: center;
  padding: 2rem 1rem 1rem;
}

.golive-success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 2px solid var(--accent);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.golive-success h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 0.5rem;
}

.golive-success p {
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 420px;
  margin: 0 auto 1.5rem;
}

.golive-success .btn {
  width: auto;
  display: inline-flex;
}

/* Wizard nav */
.wizard-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 2.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-soft);
}

.wizard-nav .btn {
  width: auto;
  min-width: 120px;
}

.wizard-error {
  color: #DC2626;
  font-size: 0.85rem;
  font-weight: 500;
  margin: 0.75rem 0 0;
  min-height: 1.2em;
}

/* Wizard mobile */
@media (max-width: 900px) {
  .wizard-layout {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-top: 1.25rem;
  }

  .wizard-rail {
    display: none;
  }

  .wizard-progress {
    display: block;
  }

  .wizard-main {
    padding: 1.5rem 1.25rem;
    border-radius: var(--radius-md);
  }

  .wizard-step h1,
  .wizard-step h2 {
    font-size: 1.3rem;
  }

  .choice-grid,
  .choice-grid.three {
    grid-template-columns: 1fr;
  }

  .field-pair {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .greeting-builder {
    padding: 0.9rem 1rem;
  }

  .greeting-builder .greeting-blank {
    max-width: none;
    width: auto;
    min-width: 100px;
  }

  .review-row {
    grid-template-columns: 1fr;
    gap: 0.15rem;
  }

  .golive-actions .btn,
  .wizard-nav .btn {
    width: 100%;
  }

  .wizard-nav {
    flex-direction: column-reverse;
    gap: 0.6rem;
  }
}
