/* ==========================================================================
   RingCrew AI - Design System & Stylesheet
   Luxury Dark Industrial Aesthetic for Trade Services
   ========================================================================== */

:root {
  /* Color Palette */
  --bg-dark: #070a13;
  --bg-card: rgba(15, 23, 42, 0.75);
  --bg-card-hover: rgba(30, 41, 59, 0.85);
  --bg-surface: #0e1526;
  --bg-glass: rgba(15, 23, 42, 0.65);
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-glass-highlight: rgba(249, 115, 22, 0.35);

  --accent-orange: #f97316;
  --accent-orange-hover: #ea580c;
  --accent-orange-glow: rgba(249, 115, 22, 0.3);
  --accent-cyan: #38bdf8;
  --accent-cyan-glow: rgba(56, 189, 248, 0.25);
  --accent-green: #10b981;
  --accent-green-glow: rgba(16, 185, 129, 0.25);
  --accent-red: #ef4444;

  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --text-inverse: #020617;

  /* Typography */
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Space Grotesk', system-ui, sans-serif;

  /* Radius & Shadows */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --shadow-subtle: 0 4px 20px -2px rgba(0, 0, 0, 0.5);
  --shadow-glow-orange: 0 0 40px -10px rgba(249, 115, 22, 0.4);
  --shadow-glow-cyan: 0 0 40px -10px rgba(56, 189, 248, 0.3);

  /* Transitions */
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base Setup */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Ambient Glow Orbs */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
}

.orb-1 {
  top: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-orange) 0%, transparent 70%);
}

.orb-2 {
  top: 400px;
  right: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #0284c7 0%, transparent 70%);
}

.orb-3 {
  top: 1800px;
  left: 20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, #7c3aed 0%, transparent 70%);
  opacity: 0.25;
}

.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* Typography & Utility classes */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-main);
  line-height: 1.2;
  font-weight: 700;
}

p {
  color: var(--text-muted);
}

a {
  color: inherit;
  text-decoration: none;
}

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

.text-gradient-orange {
  background: linear-gradient(135deg, #fb923c 0%, #f97316 50%, #ea580c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-cyan {
  background: linear-gradient(135deg, #7dd3fc 0%, #38bdf8 50%, #0284c7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-green { color: var(--accent-green) !important; }
.text-red { color: var(--accent-red) !important; }
.text-accent { color: var(--accent-orange) !important; }

.glass-panel {
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-subtle);
  position: relative;
}

/* Announcement Bar */
.top-announcement {
  background: linear-gradient(90deg, #1e1b4b 0%, #0f172a 50%, #431407 100%);
  border-bottom: 1px solid rgba(249, 115, 22, 0.2);
  padding: 10px 0;
  font-size: 0.875rem;
}

.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.badge-pill {
  background: rgba(249, 115, 22, 0.2);
  color: #fdba74;
  border: 1px solid rgba(249, 115, 22, 0.4);
  padding: 2px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.announcement-link {
  color: var(--accent-orange);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: transform var(--transition-fast);
}

.announcement-link:hover {
  text-decoration: underline;
  transform: translateX(3px);
}

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 10, 19, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-glass);
  transition: padding var(--transition-normal);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.2) 0%, rgba(56, 189, 248, 0.2) 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
}

.logo-accent {
  color: var(--accent-orange);
  margin-left: 1px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  color: var(--text-muted);
  font-size: 0.925rem;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.nav-link:hover {
  color: var(--text-main);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn-demo-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.25);
  color: var(--accent-cyan);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--transition-fast);
  position: relative;
}

.btn-demo-phone:hover {
  background: rgba(56, 189, 248, 0.15);
  border-color: var(--accent-cyan);
  transform: translateY(-1px);
}

.phone-pulse {
  width: 7px;
  height: 7px;
  background-color: var(--accent-green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-green);
  animation: pulseGreen 1.8s infinite;
}

@keyframes pulseGreen {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1.2); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-decoration: none;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1.05rem;
}

.btn-xl {
  padding: 18px 36px;
  font-size: 1.15rem;
}

.btn-block {
  width: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: #ffffff;
  box-shadow: 0 4px 20px var(--accent-orange-glow);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #fb923c 0%, #f97316 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(249, 115, 22, 0.45);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(8px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--border-glass);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Section Commons */
section {
  padding: 90px 0;
  position: relative;
  z-index: 1;
}

.section-header {
  margin-bottom: 56px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.3);
  color: var(--accent-orange);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.section-title {
  font-size: 2.5rem;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
}

/* Hero Section */
.hero-section {
  padding: 70px 0 100px;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.dot-live {
  width: 8px;
  height: 8px;
  background-color: var(--accent-green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-green);
}

.hero-title {
  font-size: 3.5rem;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  line-height: 1.12;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.55;
}

.hero-subtitle strong {
  color: var(--text-main);
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-trust-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 20px;
  border-top: 1px solid var(--border-glass);
  padding-top: 28px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* Hero Visual: Dispatch Card Stack */
.hero-visual {
  position: relative;
}

.hero-card-stack {
  position: relative;
}

.dispatch-card {
  padding: 28px;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7), var(--shadow-glow-orange);
  animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
}

.dispatch-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-glass);
}

.dispatch-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-dim);
}

.status-indicator.live {
  width: 8px;
  height: 8px;
  background-color: var(--accent-orange);
  border-radius: 50%;
  animation: pulseOrange 1.5s infinite;
}

@keyframes pulseOrange {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.7); }
  70% { transform: scale(1.2); box-shadow: 0 0 0 6px rgba(249, 115, 22, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(249, 115, 22, 0); }
}

.tag-urgent {
  background: rgba(239, 68, 68, 0.15);
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, 0.4);
  padding: 3px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.caller-profile {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.avatar-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: white;
}

.caller-name {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.caller-location {
  font-size: 0.85rem;
  color: var(--text-dim);
}

.highlight-text {
  color: var(--text-muted);
}

.ticket-estimate {
  margin-left: auto;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-green);
  background: rgba(16, 185, 129, 0.1);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.issue-box {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(249, 115, 22, 0.25);
  border-radius: var(--radius-md);
  padding: 14px;
  margin-bottom: 20px;
}

.issue-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.925rem;
  color: #fdba74;
  margin-bottom: 6px;
}

.issue-notes {
  font-size: 0.825rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.action-status-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.action-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.825rem;
  color: var(--text-muted);
}

.action-icon.check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.2);
  color: var(--accent-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
}

.dispatch-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border-glass);
}

.audio-snippet-bar {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-play-sm {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--accent-orange);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-fast);
}

.btn-play-sm:hover {
  transform: scale(1.1);
}

.waveform-mini {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 20px;
}

.waveform-mini .bar {
  width: 3px;
  background-color: var(--accent-cyan);
  border-radius: 3px;
  animation: waveBar 1.2s ease-in-out infinite alternate;
}

.bar-1 { height: 6px; animation-delay: 0.1s; }
.bar-2 { height: 14px; animation-delay: 0.3s; }
.bar-3 { height: 10px; animation-delay: 0.2s; }
.bar-4 { height: 18px; animation-delay: 0.4s; }
.bar-5 { height: 8px; animation-delay: 0.15s; }
.bar-6 { height: 16px; animation-delay: 0.35s; }
.bar-7 { height: 12px; animation-delay: 0.25s; }
.bar-8 { height: 15px; animation-delay: 0.45s; }
.bar-9 { height: 7px; animation-delay: 0.05s; }

@keyframes waveBar {
  0% { transform: scaleY(0.4); opacity: 0.5; }
  100% { transform: scaleY(1); opacity: 1; }
}

.audio-time {
  font-size: 0.75rem;
  color: var(--text-dim);
  font-family: monospace;
}

.audio-caption {
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* Floating Pills */
.floating-sms-pill {
  position: absolute;
  bottom: -24px;
  left: -28px;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  border-color: rgba(56, 189, 248, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  max-width: 320px;
}

.sms-icon {
  font-size: 1.25rem;
}

.floating-metric-pill {
  position: absolute;
  top: -20px;
  right: -24px;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  text-align: center;
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.metric-num {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent-green);
  line-height: 1;
}

.metric-desc {
  font-size: 0.725rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Problem Stats Banner */
.problem-banner {
  padding: 40px 0;
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  background: rgba(15, 23, 42, 0.4);
}

.stat-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.stat-card {
  padding: 16px;
}

.stat-big {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: var(--accent-orange);
  margin-bottom: 12px;
}

.stat-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
}

.stat-desc {
  font-size: 0.875rem;
  line-height: 1.5;
}

/* Interactive Simulator Section */
.simulator-section {
  padding: 100px 0;
}

.simulator-wrapper {
  padding: 36px;
  border-color: rgba(56, 189, 248, 0.2);
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.7);
}

.scenario-tabs {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border-glass);
  padding-bottom: 20px;
}

.scenario-btn {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  color: var(--text-muted);
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--transition-normal);
  text-align: left;
}

.scenario-btn:hover {
  background: rgba(30, 41, 59, 0.6);
  color: var(--text-main);
  border-color: rgba(255, 255, 255, 0.15);
}

.scenario-btn.active {
  background: rgba(30, 41, 59, 0.9);
  border-color: var(--accent-cyan);
  color: var(--text-main);
  box-shadow: 0 0 25px rgba(56, 189, 248, 0.2);
}

.tab-badge {
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
}

.tab-badge.urgent {
  background: rgba(239, 68, 68, 0.2);
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, 0.4);
}

.tab-badge.routine {
  background: rgba(56, 189, 248, 0.2);
  color: #7dd3fc;
  border: 1px solid rgba(56, 189, 248, 0.4);
}

.simulator-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 36px;
  align-items: flex-start;
}

/* Phone Mockup */
.phone-mockup {
  background: #090e1a;
  border: 3px solid #334155;
  border-radius: 40px;
  padding: 20px 16px 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), inset 0 0 10px rgba(255, 255, 255, 0.05);
  position: relative;
}

.phone-notch {
  width: 100px;
  height: 18px;
  background: #1e293b;
  border-radius: 0 0 12px 12px;
  margin: -20px auto 16px;
}

.call-top-bar {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-dim);
  font-family: monospace;
  margin-bottom: 24px;
  padding: 0 6px;
}

.call-contact-card {
  text-align: center;
  margin-bottom: 28px;
}

.contact-avatar-ring {
  position: relative;
  width: 76px;
  height: 76px;
  margin: 0 auto 14px;
}

.contact-avatar {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border: 2px solid var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  position: relative;
  z-index: 2;
}

.pulse-ring {
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border-radius: 50%;
  border: 2px solid var(--accent-cyan);
  opacity: 0;
  pointer-events: none;
}

.pulse-ring.active {
  animation: ripple 1.6s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

@keyframes ripple {
  0% { transform: scale(0.9); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

.contact-name {
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.contact-role {
  font-size: 0.8rem;
  color: var(--accent-cyan);
  font-weight: 500;
  margin-bottom: 12px;
}

.compliance-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #6ee7b7;
  padding: 2px 10px;
  border-radius: var(--radius-full);
  font-size: 0.68rem;
  font-weight: 600;
}

/* Animated Soundwaves inside phone */
.soundwave-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 48px;
  margin-bottom: 28px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: var(--radius-md);
  padding: 0 14px;
}

.wave-bar {
  width: 4px;
  height: 6px;
  background: var(--text-dim);
  border-radius: 4px;
  transition: all 0.2s;
}

.soundwave-container.playing .wave-bar {
  background: var(--accent-cyan);
  animation: phoneWave 0.8s ease-in-out infinite alternate;
}

.soundwave-container.playing .wave-bar:nth-child(1) { animation-delay: 0.1s; height: 12px; }
.soundwave-container.playing .wave-bar:nth-child(2) { animation-delay: 0.3s; height: 28px; }
.soundwave-container.playing .wave-bar:nth-child(3) { animation-delay: 0.2s; height: 18px; }
.soundwave-container.playing .wave-bar:nth-child(4) { animation-delay: 0.5s; height: 36px; }
.soundwave-container.playing .wave-bar:nth-child(5) { animation-delay: 0.15s; height: 24px; }
.soundwave-container.playing .wave-bar:nth-child(6) { animation-delay: 0.4s; height: 32px; }
.soundwave-container.playing .wave-bar:nth-child(7) { animation-delay: 0.25s; height: 20px; }
.soundwave-container.playing .wave-bar:nth-child(8) { animation-delay: 0.6s; height: 38px; }
.soundwave-container.playing .wave-bar:nth-child(9) { animation-delay: 0.35s; height: 16px; }
.soundwave-container.playing .wave-bar:nth-child(10) { animation-delay: 0.45s; height: 30px; }
.soundwave-container.playing .wave-bar:nth-child(11) { animation-delay: 0.2s; height: 22px; }
.soundwave-container.playing .wave-bar:nth-child(12) { animation-delay: 0.1s; height: 10px; }

@keyframes phoneWave {
  0% { transform: scaleY(0.3); }
  100% { transform: scaleY(1); }
}

.phone-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.btn-call-action {
  background: #1e293b;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-main);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.btn-mute, .btn-speaker {
  width: 44px;
  height: 44px;
}

.btn-mute:hover, .btn-speaker:hover {
  background: #334155;
}

.btn-start-call {
  flex: 1;
  border-radius: var(--radius-full);
  height: 48px;
  padding: 0 16px;
  gap: 8px;
  font-weight: 700;
  font-size: 0.875rem;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  border: none;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.btn-start-call:hover {
  background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
  transform: translateY(-1px);
}

.btn-start-call.in-call {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
}

/* Transcript Feed */
.transcript-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.transcript-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-glass);
}

.transcript-title-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.indicator-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-green);
}

.latency-badge {
  font-size: 0.8rem;
  color: var(--text-dim);
  background: rgba(0, 0, 0, 0.4);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-glass);
}

.latency-badge strong {
  color: var(--accent-cyan);
}

.transcript-feed {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 20px;
  height: 270px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.transcript-placeholder {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-dim);
  gap: 12px;
  padding: 0 30px;
}

.dialogue-bubble {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 85%;
  animation: fadeInBubble 0.4s ease-out;
}

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

.dialogue-bubble.ai {
  align-self: flex-start;
}

.dialogue-bubble.caller {
  align-self: flex-end;
}

.bubble-speaker {
  font-size: 0.725rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.dialogue-bubble.ai .bubble-speaker {
  color: var(--accent-cyan);
}

.dialogue-bubble.caller .bubble-speaker {
  color: #fdba74;
  text-align: right;
}

.bubble-text {
  padding: 10px 14px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  line-height: 1.45;
}

.dialogue-bubble.ai .bubble-text {
  background: rgba(30, 41, 59, 0.8);
  border: 1px solid rgba(56, 189, 248, 0.2);
  color: var(--text-main);
}

.dialogue-bubble.caller .bubble-text {
  background: rgba(249, 115, 22, 0.15);
  border: 1px solid rgba(249, 115, 22, 0.3);
  color: #ffedd5;
}

/* Dispatched SMS Box */
.dispatched-sms-box {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-md);
  padding: 16px 20px;
}

.sms-preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 0.8rem;
}

.sms-app-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--accent-green);
}

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

.sms-preview-body {
  font-size: 0.875rem;
  color: var(--text-main);
  background: rgba(0, 0, 0, 0.3);
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--accent-green);
  margin-bottom: 12px;
  font-family: monospace;
}

.sms-preview-footer {
  display: flex;
  gap: 16px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.badge-verified {
  color: #6ee7b7;
}

/* ROI Calculator Section */
.roi-section {
  padding: 90px 0;
  background: radial-gradient(circle at center, rgba(15, 23, 42, 0.6) 0%, transparent 80%);
}

.roi-calculator-card {
  padding: 40px;
}

.calculator-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.sliders-pane {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.slider-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.slider-header label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
}

.slider-value-display {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent-orange);
  background: rgba(249, 115, 22, 0.1);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(249, 115, 22, 0.3);
}

.custom-range {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: #1e293b;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}

.custom-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-orange);
  border: 2px solid #ffffff;
  box-shadow: 0 0 10px var(--accent-orange);
  cursor: pointer;
  transition: transform var(--transition-fast);
}

.custom-range::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.slider-scale {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* Results Pane */
.result-highlight-card {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.result-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.result-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.result-number {
  font-family: var(--font-display);
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1.1;
}

.result-subtext {
  font-size: 0.775rem;
  color: var(--text-muted);
}

.divider-line {
  height: 1px;
  background: var(--border-glass);
}

.roi-stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  background: rgba(15, 23, 42, 0.6);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
}

.mini-stat {
  display: flex;
  flex-direction: column;
}

.mini-label {
  font-size: 0.725rem;
  color: var(--text-dim);
}

.mini-val {
  font-weight: 700;
  font-size: 1.1rem;
}

/* How It Works Section */
.how-it-works-section {
  padding: 90px 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step-card {
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: transform var(--transition-normal);
}

.step-card:hover {
  transform: translateY(-5px);
  border-color: rgba(249, 115, 22, 0.3);
}

.step-num-badge {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dim);
  opacity: 0.4;
}

.step-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-orange);
}

.step-title {
  font-size: 1.2rem;
}

.step-desc {
  font-size: 0.875rem;
  line-height: 1.5;
}

/* Comparison Table */
.comparison-section {
  padding: 90px 0;
}

.comparison-table-wrapper {
  overflow-x: auto;
  padding: 24px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.925rem;
}

.comparison-table th, .comparison-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-glass);
}

.comparison-table th {
  font-weight: 700;
  color: var(--text-muted);
  vertical-align: bottom;
}

.feature-col {
  width: 32%;
}

.highlight-col {
  width: 28%;
  background: rgba(249, 115, 22, 0.06);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  border-left: 1px solid rgba(249, 115, 22, 0.3);
  border-right: 1px solid rgba(249, 115, 22, 0.3);
  position: relative;
}

.col-head-badge {
  display: inline-block;
  background: var(--accent-orange);
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.col-head-title {
  font-size: 1.25rem;
  color: var(--text-main);
  font-weight: 800;
}

.highlight-cell {
  background: rgba(249, 115, 22, 0.04);
  border-left: 1px solid rgba(249, 115, 22, 0.3);
  border-right: 1px solid rgba(249, 115, 22, 0.3);
}

.feature-name {
  font-weight: 600;
  color: var(--text-main);
}

/* Pricing Section */
.pricing-section {
  padding: 90px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
  align-items: stretch;
}

.pricing-card {
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--transition-normal);
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.pricing-card.featured {
  border-color: var(--accent-orange);
  box-shadow: 0 0 40px -10px rgba(249, 115, 22, 0.3);
  background: rgba(20, 27, 47, 0.85);
}

.featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: white;
  font-size: 0.725rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.tier-header {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-glass);
}

.tier-name {
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.tier-tagline {
  font-size: 0.85rem;
  min-height: 42px;
  margin-bottom: 16px;
}

.price-box {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}

.currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-main);
}

.amount {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--text-main);
}

.period {
  font-size: 0.9rem;
  color: var(--text-dim);
}

.setup-note {
  font-size: 0.78rem;
  color: var(--accent-orange);
  font-weight: 600;
}

.tier-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex: 1;
  font-size: 0.875rem;
}

.feature-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: var(--text-main);
}

.feature-row.muted {
  color: var(--text-dim);
}

/* Guarantee Card */
.pilot-guarantee-card {
  padding: 32px 40px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  border-color: rgba(249, 115, 22, 0.4);
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.08) 0%, rgba(15, 23, 42, 0.8) 100%);
}

.guarantee-badge {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.15);
  border: 1px solid rgba(249, 115, 22, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.guarantee-content h3 {
  font-size: 1.35rem;
  margin-bottom: 6px;
}

.guarantee-content p {
  font-size: 0.925rem;
}

/* Testimonials */
.testimonials-section {
  padding: 90px 0;
}

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

.testimonial-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stars {
  color: #fbbf24;
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-quote {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-main);
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border-glass);
  padding-top: 16px;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #334155;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.author-name {
  font-size: 0.95rem;
}

.author-role {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* FAQ Accordion */
.faq-section {
  padding: 90px 0;
}

.faq-accordion-wrapper {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-question {
  width: 100%;
  padding: 22px 24px;
  background: transparent;
  border: none;
  color: var(--text-main);
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--accent-orange);
  transition: transform var(--transition-normal);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out, padding 0.35s ease-out;
  padding: 0 24px;
}

.faq-item.open .faq-answer {
  max-height: 250px;
  padding: 0 24px 22px;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer p {
  font-size: 0.925rem;
  line-height: 1.6;
}

/* Final CTA Section */
.final-cta-section {
  padding: 80px 0 100px;
}

.final-cta-card {
  padding: 64px 32px;
  border-color: rgba(249, 115, 22, 0.4);
  box-shadow: 0 0 60px -10px rgba(249, 115, 22, 0.25);
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.95) 100%);
}

.cta-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  background: rgba(249, 115, 22, 0.15);
  border: 1px solid rgba(249, 115, 22, 0.4);
  color: #fdba74;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.final-title {
  font-size: 2.8rem;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.final-subtitle {
  font-size: 1.15rem;
  max-width: 650px;
  margin: 0 auto 36px;
}

.final-btn-group {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.final-trust-notes {
  display: flex;
  justify-content: center;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--text-dim);
  flex-wrap: wrap;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border-glass);
  background: #04070f;
  padding: 64px 0 40px;
  font-size: 0.875rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-tagline {
  font-size: 0.875rem;
  max-width: 320px;
}

.footer-legal-copy {
  font-size: 0.775rem;
  color: var(--text-dim);
  margin-top: 12px;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-heading {
  font-size: 0.925rem;
  color: var(--text-main);
  margin-bottom: 6px;
}

.footer-links-col a, .footer-links-col span {
  color: var(--text-dim);
  transition: color var(--transition-fast);
}

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

/* Modal Overlay & Form */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(2, 6, 23, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  width: 100%;
  max-width: 560px;
  padding: 36px;
  background: rgba(15, 23, 42, 0.95);
  border-color: rgba(249, 115, 22, 0.3);
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.9);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: var(--text-dim);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition-fast);
}

.modal-close-btn:hover {
  color: var(--text-main);
}

.modal-header {
  text-align: center;
  margin-bottom: 24px;
}

.modal-badge {
  display: inline-block;
  background: rgba(249, 115, 22, 0.15);
  border: 1px solid rgba(249, 115, 22, 0.4);
  color: var(--accent-orange);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
}

.modal-title {
  font-size: 1.5rem;
  margin-bottom: 6px;
}

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

/* Step Indicator */
.step-indicator {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding: 0 10px;
}

.step-dot {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dim);
}

.step-dot span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #1e293b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.step-dot.active {
  color: var(--accent-orange);
}

.step-dot.active span {
  background: var(--accent-orange);
  color: white;
}

.step-line {
  flex: 1;
  height: 2px;
  background: #1e293b;
  margin: 0 10px;
}

/* Form Controls */
.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeIn 0.3s ease-out;
}

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

.form-group {
  margin-bottom: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: block;
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
}

input, select {
  width: 100%;
  padding: 12px 14px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition-fast);
}

input:focus, select:focus {
  border-color: var(--accent-orange);
}

.modal-btn-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 24px;
}

/* Summary Review Card in Modal */
.summary-review-card {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 18px;
}

.summary-review-card h4 {
  font-size: 0.95rem;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-glass);
}

.review-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.review-row span {
  color: var(--text-dim);
}

.guarantee-box-small {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: var(--radius-sm);
  padding: 12px;
  font-size: 0.8rem;
  color: #6ee7b7;
}

/* Success Modal State */
.success-icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.2);
  border: 2px solid var(--accent-green);
  color: var(--accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 18px;
}

.success-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.success-content p {
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.test-number-box {
  background: rgba(0, 0, 0, 0.4);
  border: 1px dashed var(--border-glass-highlight);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.85rem;
}

.demo-phone-link {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent-orange);
}

/* Toast Notification */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid var(--accent-orange);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  color: var(--text-main);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: slideToast 0.3s ease-out;
}

@keyframes slideToast {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .simulator-layout {
    grid-template-columns: 1fr;
  }

  .phone-mockup {
    max-width: 360px;
    margin: 0 auto;
  }

  .calculator-grid {
    grid-template-columns: 1fr;
  }

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

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .pilot-guarantee-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .guarantee-badge {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .stat-highlight-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .section-title {
    font-size: 2rem;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-trust-row {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .scenario-tabs {
    flex-direction: column;
  }
}

/* ==========================================================================
   Pilot form honeypot, consent note, founding-shops CTA
   ========================================================================== */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-consent-note {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin: 0 0 12px;
  line-height: 1.5;
}

.form-consent-note a {
  color: var(--accent-cyan);
}

.founding-cta {
  margin-top: 40px;
}

#founding-shops .stars {
  font-family: var(--font-display);
  color: var(--accent-orange);
  letter-spacing: 0.08em;
}

#founding-shops .author-name {
  margin-bottom: 10px;
}

/* Legal pages */
.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 120px 20px 80px;
}

.legal-page h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-bottom: 8px;
}

.legal-page h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 32px 0 10px;
}

.legal-page p,
.legal-page li {
  color: var(--text-muted);
  margin-bottom: 10px;
}

.legal-page ul {
  padding-left: 20px;
}

.legal-page a {
  color: var(--accent-cyan);
}
