/* ============================================================
   AI Voice Canada — style.css
   Dark theme #282929 · Lime accent #DDFE4F
   ============================================================ */

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

:root {
  --bg:        #282929;
  --bg-2:      #1f2020;
  --bg-3:      #323333;
  --surface:   #333434;
  --accent:    #DDFE4F;
  --accent-dim:#b8d63a;
  --text:      #f0f0f0;
  --text-muted:#9a9a9a;
  --border:    rgba(255,255,255,0.08);
  --glass-bg:  rgba(255,255,255,0.04);
  --glass-border: rgba(255,255,255,0.1);
  --radius-sm: 0.5rem;
  --radius:    1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --shadow:    0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.5);
  --font: 'Inter', system-ui, sans-serif;
  --max-w: 75rem;
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Utility ── */
.accent { color: var(--accent); }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(221,254,79,0.12);
  border: 1px solid rgba(221,254,79,0.3);
  padding: 0.3rem 0.85rem;
  border-radius: 2rem;
  margin-bottom: 1rem;
}

.section-header {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 4rem;
}

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

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

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.5rem;
  border-radius: 2.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #1a1a1a;
  border-color: var(--accent);
}
.btn-primary:hover { background: var(--accent-dim); border-color: var(--accent-dim); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(221,254,79,0.3); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--glass-border);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); background: rgba(221,254,79,0.06); }

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border-color: transparent;
}
.btn-ghost:hover { color: var(--text); background: var(--glass-bg); }

.btn-lg { padding: 0.9rem 2rem; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── Industry Tiles Row (above stats strip) ── */
.industry-tiles-row {
  background: rgba(255,255,255,0.025);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 1.75rem 0;
}

.hero-industry-tiles {
  display: flex;
  gap: 0.75rem;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  scrollbar-width: none;
}
.hero-industry-tiles::-webkit-scrollbar { display: none; }

.industry-tiles-row .hero-industry-tiles {
  justify-content: space-between;
  overflow: visible;
}

.industry-tiles-row .industry-tile {
  flex: 1;
  min-width: 0;
  padding: 1.1rem 0.5rem;
}

.industry-tiles-row .tile-icon { font-size: 2rem; }
.industry-tiles-row .tile-name { font-size: 0.85rem; font-weight: 700; }

/* ── Stats Strip ── */
.stats-strip {
  width: 100%;
  background: var(--accent);
  padding: 1.25rem 1.5rem;
}

.stats-strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.strip-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  text-align: center;
}

.strip-num {
  font-size: 1.75rem;
  font-weight: 900;
  color: #1a1a1a;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.strip-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(0,0,0,0.6);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.strip-divider {
  width: 1px;
  height: 2.5rem;
  background: rgba(0,0,0,0.15);
  flex-shrink: 0;
}

/* ── Legacy tiles container (shared styles) ── */
.industry-tiles {
  display: flex;
  gap: 0.6rem;
  width: max-content;
  margin: 0 auto;
}

.industry-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 0.65rem 1.1rem;
  border-radius: var(--radius);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
  transition: all var(--transition);
  min-width: 5.5rem;
}
.industry-tile:hover {
  border-color: rgba(221,254,79,0.4);
  color: var(--text);
  background: rgba(221,254,79,0.06);
  transform: translateY(-2px);
}

.industry-tile.featured-tile {
  border-color: rgba(221,254,79,0.5);
  background: rgba(221,254,79,0.08);
  color: var(--text);
}

.tile-label {
  position: absolute;
  top: -0.6rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #1a1a1a;
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.15rem 0.55rem;
  border-radius: 1rem;
  white-space: nowrap;
}

.tile-icon { font-size: 1.4rem; }
.tile-name { font-size: 0.72rem; font-weight: 600; }

/* ── Navbar ── */
.navbar {
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(32,33,33,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0.65rem 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon { font-size: 1.4rem; }
.logo-text { font-size: 1.25rem; font-weight: 800; color: var(--text); letter-spacing: -0.02em; }

.nav-links {
  display: flex;
  gap: 0.25rem;
  margin-left: auto;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover { color: var(--text); background: var(--glass-bg); }

.nav-actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── Hero ── */
.hero {
  position: relative;
  padding: 4rem 0 2.5rem;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg-glow {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 80vw;
  height: 60vh;
  background: radial-gradient(ellipse at center, rgba(221,254,79,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  width: fit-content;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

.hero-headline-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 0;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0;
  max-width: 36rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  flex-shrink: 0;
  margin-bottom: 0;
}

.play-icon { font-size: 0.75rem; }

.hero-stats {
  display: flex;
  gap: 0;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  padding: 0 1.25rem;
}
.stat-item:first-child { padding-left: 0; }

.stat-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.2;
}

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

.stat-divider {
  width: 1px;
  height: 2.5rem;
  background: var(--border);
}

/* Phone Card */
.hero-visual {
  display: flex;
  justify-content: center;
}

.phone-card {
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  width: 100%;
  max-width: 22rem;
  box-shadow: var(--shadow-lg);
}

.phone-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.phone-avatar {
  font-size: 1.75rem;
  background: var(--surface);
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.caller-name { display: block; font-weight: 600; font-size: 0.9rem; }
.caller-status { font-size: 0.75rem; color: var(--text-muted); }
.caller-status.active { color: #4ade80; }

.phone-timer {
  margin-left: auto;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
}

.phone-wave {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  height: 3rem;
  margin-bottom: 1.25rem;
}

.wave-bar {
  width: 4px;
  background: var(--accent);
  border-radius: 2px;
  animation: wave 1.2s ease-in-out infinite;
  opacity: 0.8;
}
.wave-bar:nth-child(1) { height: 40%; animation-delay: 0s; }
.wave-bar:nth-child(2) { height: 65%; animation-delay: 0.1s; }
.wave-bar:nth-child(3) { height: 90%; animation-delay: 0.2s; }
.wave-bar:nth-child(4) { height: 100%; animation-delay: 0.3s; }
.wave-bar:nth-child(5) { height: 80%; animation-delay: 0.4s; }
.wave-bar:nth-child(6) { height: 100%; animation-delay: 0.5s; }
.wave-bar:nth-child(7) { height: 75%; animation-delay: 0.6s; }
.wave-bar:nth-child(8) { height: 55%; animation-delay: 0.7s; }
.wave-bar:nth-child(9) { height: 30%; animation-delay: 0.8s; }

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

.phone-transcript {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.transcript-line {
  font-size: 0.78rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  line-height: 1.4;
}
.transcript-line.agent {
  background: rgba(221,254,79,0.1);
  border-left: 2px solid var(--accent);
  color: var(--text);
}
.transcript-line.user {
  background: var(--surface);
  color: var(--text-muted);
  margin-left: 1rem;
}

/* ── Trust Bar ── */
.trust-bar {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
  overflow: hidden;
}

.trust-label {
  text-align: center;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.logos-track {
  display: flex;
  gap: 1rem;
  animation: scroll-logos 30s linear infinite;
  width: max-content;
}

.logo-pill {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 0.5rem 1.25rem;
  border-radius: 2rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
}

@keyframes scroll-logos {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Duplicate logos for seamless loop */
.logos-track::after {
  content: '🏥 MedCare Clinics  🦷 Maple Dental  🏠 HomeBase Realty  🚗 AutoNorth  📦 CanShip Logistics  🍕 NorthBite Foods  💼 Summit Law  🔧 FixIt Pro';
}

/* ── Features ── */
.features {
  padding: 6rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.feature-card {
  position: relative;
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(221,254,79,0.2);
}

.feature-card.featured {
  border-color: rgba(221,254,79,0.3);
  background: rgba(221,254,79,0.04);
}

.feature-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #1a1a1a;
  background: var(--accent);
  padding: 0.2rem 0.6rem;
  border-radius: 1rem;
  margin-bottom: 0.75rem;
}

.feature-icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── How It Works ── */
.how-it-works {
  padding: 6rem 0;
  background: var(--bg-2);
}

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

.step-card {
  flex: 1;
  padding: 2rem 1.5rem;
  text-align: center;
}

.step-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 1.25rem;
  font-variant-numeric: tabular-nums;
}

.step-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.step-content p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.step-connector {
  flex-shrink: 0;
  width: 2rem;
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, transparent 100%);
  opacity: 0.3;
  margin-top: 3.5rem;
}

/* ── Use Cases ── */
.use-cases {
  padding: 6rem 0;
}

.tab-buttons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.tab-btn {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  padding: 0.6rem 1.25rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #1a1a1a;
}

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

.tab-panel-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.tab-text h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.tab-text p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.benefit-list {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.benefit-list li {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.tab-visual {
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
}

.mock-screen { font-size: 0.8rem; }

.mock-header {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.mock-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.mock-dot.red { background: #ff5f57; }
.mock-dot.yellow { background: #febc2e; }
.mock-dot.green { background: #28c840; }

.mock-title {
  margin-left: 0.5rem;
  color: var(--text-muted);
  font-size: 0.75rem;
}

.mock-stats {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.mock-stat {
  display: flex;
  flex-direction: column;
  flex: 1;
  background: var(--surface);
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  gap: 0.25rem;
}

.mock-num {
  font-size: 1.25rem;
  font-weight: 800;
}

.mock-stat span:last-child {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.mock-call-log {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.mock-call {
  background: var(--surface);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  color: var(--text-muted);
  border-left: 2px solid var(--accent);
}

/* ── Demo Section ── */
.demo-section {
  padding: 6rem 0;
  background: var(--bg-2);
}

.demo-card {
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.demo-left h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.demo-left p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.audio-tracks {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.audio-track {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--surface);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
}

.play-btn {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--accent);
  color: #1a1a1a;
  border: none;
  cursor: pointer;
  font-size: 0.7rem;
  flex-shrink: 0;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-btn:hover { transform: scale(1.1); background: var(--accent-dim); }

.track-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.track-name { font-size: 0.85rem; font-weight: 500; }
.track-duration { font-size: 0.75rem; color: var(--text-muted); }

.track-bar {
  width: 6rem;
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.track-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.1s linear;
}

/* Voice wave animation */
.demo-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  min-width: 14rem;
}

.voice-wave-demo {
  position: relative;
  width: 10rem;
  height: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vw-circle {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(221,254,79,0.2);
  animation: expand 3s ease-out infinite;
}
.vw-circle.outer { width: 100%; height: 100%; animation-delay: 0s; }
.vw-circle.mid   { width: 70%;  height: 70%;  animation-delay: 0.5s; }
.vw-circle.inner { width: 40%;  height: 40%;  animation-delay: 1s; border-color: rgba(221,254,79,0.5); }

@keyframes expand {
  0%, 100% { transform: scale(0.95); opacity: 0.3; }
  50% { transform: scale(1.05); opacity: 1; }
}

.vw-center {
  font-size: 2rem;
  z-index: 1;
}

.demo-cta-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
}

/* ── Pricing ── */
.pricing {
  padding: 6rem 0;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}

.switch input { opacity: 0; width: 0; height: 0; }

.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--surface);
  border-radius: 24px;
  transition: var(--transition);
  border: 1px solid var(--border);
}

.slider::before {
  position: absolute;
  content: '';
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background: var(--text-muted);
  border-radius: 50%;
  transition: var(--transition);
}

input:checked + .slider { background: rgba(221,254,79,0.2); border-color: var(--accent); }
input:checked + .slider::before { transform: translateX(20px); background: var(--accent); }

.save-badge {
  background: rgba(221,254,79,0.15);
  color: var(--accent);
  padding: 0.15rem 0.5rem;
  border-radius: 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  margin-left: 0.25rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.pricing-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 52rem;
  margin: 0 auto;
}

.plan-minutes {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding: 0.35rem 0.75rem;
  background: rgba(221,254,79,0.08);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(221,254,79,0.2);
}

.plan-trial {
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

.pricing-card {
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.pricing-card.featured-plan {
  border-color: rgba(221,254,79,0.4);
  background: rgba(221,254,79,0.03);
  transform: scale(1.02);
}

.popular-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #1a1a1a;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.85rem;
  border-radius: 1rem;
  white-space: nowrap;
}

.plan-name {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.plan-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
  margin-bottom: 1.75rem;
}

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

.amount {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
}

.amount.hidden { display: none; }

.period {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-left: 0.1rem;
}

.custom-price {
  font-size: 2.5rem;
  font-weight: 900;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.plan-features li {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ── Testimonials ── */
.testimonials {
  padding: 6rem 0;
  background: var(--bg-2);
}

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

.testimonial-card {
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.testimonial-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.stars {
  color: var(--accent);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.testimonial-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.author-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dim));
  color: #1a1a1a;
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.author-name { display: block; font-size: 0.85rem; font-weight: 700; }
.author-role { font-size: 0.75rem; color: var(--text-muted); }

/* ── CTA Band ── */
.cta-band {
  padding: 6rem 0;
}

.cta-card {
  border-radius: var(--radius-xl);
  padding: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-color: rgba(221,254,79,0.2);
}

.cta-glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(221,254,79,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content { position: relative; }

.cta-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 900;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

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

/* ── Contact ── */
.contact {
  padding: 6rem 0;
  background: var(--bg-2);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.contact-left h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.contact-left > p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-icon { font-size: 1.2rem; }

.contact-form {
  border-radius: var(--radius-lg);
  padding: 2rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.85rem;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.9rem;
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}

.form-group select option { background: var(--bg); }
.form-group textarea { resize: vertical; min-height: 100px; }

.required { color: var(--accent); font-size: 0.85rem; }

.contact-method-options {
  display: flex;
  gap: 1rem;
  margin-top: 0.35rem;
}

.radio-option {
  cursor: pointer;
  flex: 1;
}

.radio-option input[type="radio"] {
  display: none;
}

.radio-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition);
  width: 100%;
}

.radio-option input[type="radio"]:checked + .radio-box {
  border-color: var(--accent);
  background: rgba(221,254,79,0.08);
  color: var(--accent);
}

/* ── Footer ── */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 1rem 0 1.25rem;
  max-width: 18rem;
}

.social-links {
  display: flex;
  gap: 0.5rem;
}

.social-btn {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  transition: all var(--transition);
}
.social-btn:hover { background: var(--accent); color: #1a1a1a; border-color: var(--accent); }

.footer-links-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links-group h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.footer-links-group a {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-links-group a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero-headline-row { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .industry-tiles-row .hero-industry-tiles { flex-wrap: wrap; justify-content: flex-start; overflow: visible; }
  .steps-grid { flex-direction: column; align-items: center; }
  .step-connector { width: 2px; height: 2rem; background: linear-gradient(180deg, var(--accent) 0%, transparent 100%); margin-top: 0; }
  .tab-panel-inner { grid-template-columns: 1fr; }
  .demo-card { grid-template-columns: 1fr; }
  .demo-right { flex-direction: row; justify-content: center; flex-wrap: wrap; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 24rem; margin: 0 auto; }
  .pricing-card.featured-plan { transform: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--bg);
    padding: 5rem 2rem 2rem;
    z-index: 999;
    gap: 0.5rem;
  }
  .nav-links.open a {
    font-size: 1.25rem;
    padding: 0.75rem 1rem;
  }
  .hero { padding: 7rem 0 4rem; min-height: auto; }
  .hero-stats { gap: 0.75rem; }
  .stat-divider { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-card { padding: 2.5rem 1.5rem; }
}
