/*
Theme Name: VoiceGenx Theme
Theme URI: https://voicegenixai.com
Author: VoiceGenix AI
Author URI: https://voicegenixai.com
Description: A clean editorial-premium WordPress theme for VoiceGenix AI.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: voicegenx
Tags: custom-logo, custom-menu, featured-images, full-width-template, accessibility-ready
*/

/* =============================================================
   1. DESIGN TOKENS
============================================================= */
:root {
  --vx-navy:        #0A1628;
  --vx-navy-soft:   #1B2A42;
  --vx-cream:       #F5F1E8;
  --vx-cream-warm:  #EDE5D3;
  --vx-coral:       #E85A4F;
  --vx-gold:        #C9A06B;
  --vx-ink:         #0A1628;
  --vx-muted:       #5C6B82;
  --vx-line:        rgba(10, 22, 40, 0.10);
  --vx-line-light:  rgba(245, 241, 232, 0.12);
  --vx-font-display: 'Fraunces', Georgia, serif;
  --vx-font-body:    'DM Sans', system-ui, sans-serif;
  --vx-container:   1280px;
  --vx-px:          56px;
  --vx-px-mobile:   24px;
  --vx-radius-pill: 100px;
  --vx-radius-card: 18px;
  --vx-shadow-card: 0 4px 24px -6px rgba(10, 22, 40, 0.10);
  --vx-shadow-dark: 0 30px 80px -20px rgba(10, 22, 40, 0.40);
  --vx-transition:  0.22s ease;
}

/* =============================================================
   2. RESET
============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--vx-font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--vx-ink);
  background: var(--vx-cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
::selection { background: var(--vx-coral); color: var(--vx-cream); }

/* =============================================================
   3. TYPOGRAPHY
============================================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--vx-font-display);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--vx-ink);
}

h1 { font-size: clamp(44px, 6vw, 88px); }
h2 { font-size: clamp(32px, 4vw, 56px); margin-bottom: 20px; }
h3 { font-size: clamp(22px, 2.5vw, 32px); margin-bottom: 12px; }
h4 { font-size: 18px; font-weight: 400; }

h1 em, h2 em, h3 em { font-style: italic; color: var(--vx-coral); }

p { margin-bottom: 16px; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 19px;
  line-height: 1.55;
  color: var(--vx-muted);
  font-weight: 300;
  max-width: 600px;
}

.small { font-size: 13px; color: var(--vx-muted); line-height: 1.5; }

.kicker {
  display: inline-block;
  font-family: var(--vx-font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--vx-coral);
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}

.kicker::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--vx-coral);
  vertical-align: middle;
  margin-right: 10px;
}

strong { font-weight: 600; }

/* =============================================================
   4. LAYOUT
============================================================= */
.container {
  width: 100%;
  max-width: calc(var(--vx-container) + var(--vx-px) * 2);
  padding-left: var(--vx-px);
  padding-right: var(--vx-px);
  margin-left: auto;
  margin-right: auto;
}

.section { padding-top: 110px; padding-bottom: 110px; }
.section--alt { background: var(--vx-cream-warm); }
.section--dark { background: var(--vx-navy); color: var(--vx-cream); }

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--vx-cream); }
.section--dark .lead { color: var(--vx-cream-warm); }

.grid { display: grid; gap: 28px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* =============================================================
   5. BUTTONS
============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--vx-radius-pill);
  font-family: var(--vx-font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: background var(--vx-transition), color var(--vx-transition),
              transform var(--vx-transition), border-color var(--vx-transition);
  white-space: nowrap;
}

.btn--primary { background: var(--vx-ink); color: var(--vx-cream); }
.btn--primary:hover { background: var(--vx-coral); transform: translateY(-1px); }

.btn--outline {
  background: transparent;
  color: var(--vx-ink);
  border: 1px solid rgba(10, 22, 40, 0.25);
}
.btn--outline:hover { border-color: var(--vx-coral); color: var(--vx-coral); }

.section--dark .btn--outline { color: var(--vx-cream); border-color: rgba(245, 241, 232, 0.30); }
.section--dark .btn--outline:hover { border-color: var(--vx-coral); color: var(--vx-coral); }

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-top: 36px; }

/* =============================================================
   6. CARDS + BADGES
============================================================= */
.card {
  background: #fff;
  border-radius: var(--vx-radius-card);
  padding: 28px;
  border: 1px solid var(--vx-line);
}
.card--shadow { box-shadow: var(--vx-shadow-card); }
.card--dark { background: var(--vx-navy); color: var(--vx-cream); border-color: transparent; }

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: var(--vx-radius-pill);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  background: var(--vx-cream-warm);
  color: var(--vx-ink);
  border: 1px solid var(--vx-line);
}

.section--dark .badge {
  background: rgba(245, 241, 232, 0.08);
  color: var(--vx-cream-warm);
  border-color: rgba(245, 241, 232, 0.15);
}

.card-icon { font-size: 24px; margin-bottom: 10px; }

/* =============================================================
   7. HEADER + NAV
============================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: var(--vx-cream);
  border-bottom: 1px solid var(--vx-line);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  height: 72px;
}

.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.brand-mark {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--vx-coral);
  position: relative;
  animation: vx-pulse 2s ease-in-out infinite;
}

.brand-mark::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--vx-coral);
  opacity: 0.35;
}

@keyframes vx-pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.25); }
}

.site-title {
  font-family: var(--vx-font-display);
  font-weight: 400;
  font-style: italic;
  font-size: 24px;
  letter-spacing: -0.04em;
  color: var(--vx-ink);
}

.site-logo img { height: 40px; width: auto; }

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-nav ul li a {
  font-size: 14px;
  font-weight: 400;
  color: var(--vx-ink);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color var(--vx-transition);
}

.primary-nav ul li a:hover,
.primary-nav ul li.current-menu-item > a { color: var(--vx-coral); }

.nav-cta { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }

.nav-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-decoration: none;
  line-height: 1.2;
  margin-right: 6px;
}

.nav-phone__label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--vx-muted); }
.nav-phone__number {
  font-family: var(--vx-font-display);
  font-style: italic;
  font-size: 15px;
  color: var(--vx-ink);
  letter-spacing: -0.02em;
  transition: color var(--vx-transition);
}
.nav-phone:hover .nav-phone__number { color: var(--vx-coral); }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: transparent;
  border: 1px solid var(--vx-line);
  border-radius: 8px;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--vx-ink);
  border-radius: 2px;
  transition: transform var(--vx-transition), opacity var(--vx-transition);
}

/* Mobile drawer */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--vx-cream);
  border-bottom: 1px solid var(--vx-line);
  padding: 28px var(--vx-px-mobile) 36px;
  z-index: 9998;
  box-shadow: var(--vx-shadow-card);
}

.mobile-menu.nav-open { display: block; }

.mobile-menu ul { list-style: none; margin: 0 0 24px; padding: 0; }
.mobile-menu ul li { border-bottom: 1px solid var(--vx-line); }
.mobile-menu ul li a {
  display: block;
  padding: 14px 0;
  font-size: 18px;
  font-family: var(--vx-font-display);
  font-style: italic;
  font-weight: 300;
  color: var(--vx-ink);
  text-decoration: none;
  transition: color var(--vx-transition);
}
.mobile-menu ul li a:hover { color: var(--vx-coral); }

.mobile-menu__phones { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.mobile-menu__phones a { font-size: 14px; color: var(--vx-muted); text-decoration: none; transition: color var(--vx-transition); }
.mobile-menu__phones a:hover { color: var(--vx-coral); }

/* =============================================================
   8. ANIMATIONS
============================================================= */
@keyframes vx-fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes vx-wave {
  0%, 100% { height: 4px; }
  50%       { height: var(--h, 28px); }
}

/* =============================================================
   9. HERO
============================================================= */
.hero-section { padding-top: 80px; padding-bottom: 100px; }

.hero-wrap {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: start;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: var(--vx-radius-pill);
  border: 1px solid var(--vx-line);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--vx-muted);
  margin-bottom: 28px;
  background: #fff;
}

.hero-badge__sep { color: rgba(10,22,40,0.2); }
.hero-copy h1 { margin-bottom: 28px; }

.hero-phones {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--vx-line);
}

.hero-phone-item { display: flex; flex-direction: column; gap: 4px; }
.hero-phone__label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--vx-muted); }
.hero-phone__number {
  font-family: var(--vx-font-display);
  font-style: italic;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--vx-ink);
  text-decoration: none;
  transition: color var(--vx-transition);
}
.hero-phone__number:hover { color: var(--vx-coral); }

.hero-trust { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }

/* Transcript card */
.transcript-frame {
  background: var(--vx-navy);
  border-radius: 24px;
  padding: 28px;
  color: var(--vx-cream);
  box-shadow: var(--vx-shadow-dark);
  overflow: hidden;
}

.transcript-frame__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--vx-line-light);
  margin-bottom: 20px;
}

.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--vx-coral);
  animation: vx-pulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

.transcript-frame__status { font-size: 13px; color: var(--vx-cream-warm); flex: 1; }
.transcript-frame__time { font-family: var(--vx-font-display); font-style: italic; font-size: 15px; color: var(--vx-gold); }

.waveform { display: flex; align-items: center; gap: 3px; height: 44px; margin-bottom: 20px; }
.wave-bar { flex: 1; background: var(--vx-coral); border-radius: 2px; min-height: 4px; animation: vx-wave 1.4s ease-in-out infinite; }

.transcript-line { margin-bottom: 14px; opacity: 0; animation: vx-fadeUp 0.5s ease forwards; }
.transcript-line:nth-child(3) { animation-delay: 0.3s; }
.transcript-line:nth-child(4) { animation-delay: 1s; }
.transcript-line:nth-child(5) { animation-delay: 1.7s; }
.transcript-line:nth-child(6) { animation-delay: 2.4s; }

.transcript-speaker { font-family: var(--vx-font-display); font-style: italic; font-size: 11px; color: var(--vx-gold); margin-bottom: 4px; letter-spacing: 0.04em; }
.transcript-speaker--ai { color: var(--vx-coral); }
.transcript-text { font-size: 13px; line-height: 1.5; color: var(--vx-cream); }

.transcript-meta { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--vx-line-light); }
.transcript-meta__cell { padding-right: 14px; }
.transcript-meta__cell:not(:last-child) { border-right: 1px solid var(--vx-line-light); margin-right: 14px; }
.transcript-meta__label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--vx-cream-warm); opacity: 0.6; margin-bottom: 4px; }
.transcript-meta__value { font-family: var(--vx-font-display); font-style: italic; font-size: 15px; color: var(--vx-cream); }
.transcript-meta__value--success { color: #90D5B0; }

/* =============================================================
   10. DEMO AUDIO
============================================================= */
.demo-audio-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 36px; }
.demo-audio-card__label { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; margin-bottom: 16px; }
.demo-audio-player { width: 100%; border-radius: 8px; }

/* =============================================================
   11. COMPLIANCE SHIELD
============================================================= */
.shield-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 56px; }

.shield-card {
  display: flex;
  gap: 20px;
  padding: 28px;
  border-radius: var(--vx-radius-card);
  border: 1px solid rgba(245,241,232,0.10);
  background: rgba(245,241,232,0.04);
  transition: border-color var(--vx-transition);
}
.shield-card:hover { border-color: rgba(232,90,79,0.30); }
.shield-card__num { font-family: var(--vx-font-display); font-style: italic; font-size: 28px; color: var(--vx-coral); line-height: 1; flex-shrink: 0; width: 28px; }
.shield-card__title { font-size: 15px; font-weight: 600; color: var(--vx-cream); margin-bottom: 8px; }
.shield-card__body { font-size: 13px; line-height: 1.6; color: var(--vx-cream-warm); opacity: 0.85; }

/* =============================================================
   12. STATS
============================================================= */
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 60px; border-top: 1px solid var(--vx-line); }
.stat-cell { padding: 36px 28px 36px 0; border-right: 1px solid var(--vx-line); }
.stat-cell:nth-child(3n) { border-right: none; }
.stat-num { font-family: var(--vx-font-display); font-weight: 300; font-size: clamp(36px, 4.5vw, 68px); letter-spacing: -0.04em; line-height: 1; margin-bottom: 10px; }
.stat-num em { font-style: italic; color: var(--vx-coral); font-size: 0.65em; }
.stat-label { font-family: var(--vx-font-display); font-style: italic; font-size: 15px; margin-bottom: 8px; }
.stat-desc { font-size: 13px; color: var(--vx-muted); line-height: 1.5; }

/* =============================================================
   13. FAQ
============================================================= */
.faq-list { border-top: 1px solid var(--vx-line); }

.faq-item {
  border-bottom: 1px solid var(--vx-line);
  padding: 24px 0;
}

.faq-question {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--vx-ink);
  margin-bottom: 8px;
}

.faq-answer {
  color: var(--vx-muted);
  line-height: 1.6;
  max-width: 680px;
  margin: 0;
}

/* =============================================================
   14. PRICING PAGE
============================================================= */
.pricing-hero { padding-bottom: 60px; }
.pricing-hero h1 { margin-top: 16px; margin-bottom: 20px; }

.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: start; }

.pricing-card {
  background: #fff;
  border: 1px solid var(--vx-line);
  border-radius: var(--vx-radius-card);
  padding: 28px;
  position: relative;
  transition: box-shadow var(--vx-transition), transform var(--vx-transition);
}
.pricing-card:hover { box-shadow: var(--vx-shadow-card); transform: translateY(-2px); }
.pricing-card--featured { border-color: var(--vx-coral); box-shadow: 0 0 0 1px var(--vx-coral), var(--vx-shadow-card); }

.pricing-card__badge {
  display: inline-block;
  background: var(--vx-coral);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--vx-radius-pill);
  margin-bottom: 18px;
}

.pricing-card__head h2 { font-size: 22px; margin-bottom: 14px; letter-spacing: -0.02em; }
.pricing-card__price { font-family: var(--vx-font-display); font-weight: 300; font-size: 48px; letter-spacing: -0.04em; line-height: 1; color: var(--vx-ink); margin-bottom: 6px; }
.pricing-card__price span { font-size: 18px; color: var(--vx-muted); letter-spacing: 0; }
.pricing-card__fees { font-size: 12px; color: var(--vx-muted); margin-bottom: 14px; }
.pricing-card__sub { font-size: 13px; color: var(--vx-muted); line-height: 1.5; margin-bottom: 20px; }
.pricing-card__divider { height: 1px; background: var(--vx-line); margin: 20px 0; }

.pricing-card__features { list-style: none; margin: 0 0 20px; padding: 0; display: grid; gap: 10px; }
.pricing-card__features li { font-size: 13px; color: var(--vx-ink); padding-left: 20px; position: relative; line-height: 1.4; }
.pricing-card__features li::before { content: '✓'; position: absolute; left: 0; color: var(--vx-coral); font-size: 12px; font-weight: 700; }
.pricing-card__feature--no { color: var(--vx-muted) !important; opacity: 0.5; }
.pricing-card__feature--no::before { content: '–' !important; color: var(--vx-muted) !important; }
.pricing-card__bestfor { font-size: 12px; color: var(--vx-muted); border-top: 1px solid var(--vx-line); padding-top: 16px; margin-top: 4px; }

.addons-grid { margin-top: 36px; border-top: 1px solid var(--vx-line); }
.addon-item { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--vx-line); }
.addon-item__name { font-size: 15px; color: var(--vx-ink); }
.addon-item__name span { font-size: 13px; color: var(--vx-muted); }
.addon-item__price { font-family: var(--vx-font-display); font-style: italic; font-size: 17px; color: var(--vx-coral); white-space: nowrap; flex-shrink: 0; }

.pricing-shield-inner { display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; }
.pricing-shield-cta__btn { display: flex; flex-direction: column; align-items: flex-start; flex-shrink: 0; }

/* =============================================================
   15. BOOK A DEMO PAGE
============================================================= */
.demo-hero-wrap { display: grid; grid-template-columns: 1.1fr 1fr; gap: 72px; align-items: start; }

.demo-bullets { list-style: none; margin: 24px 0 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.demo-bullets li { font-size: 15px; color: var(--vx-ink); padding-left: 22px; position: relative; line-height: 1.4; }
.demo-bullets li::before { content: '→'; position: absolute; left: 0; color: var(--vx-coral); font-size: 13px; }

.demo-hero-phones { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--vx-line); }
.demo-hero-phones__label { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--vx-muted); margin-bottom: 4px; }
.demo-hero-phones__number { font-family: var(--vx-font-display); font-style: italic; font-size: 22px; letter-spacing: -0.02em; color: var(--vx-ink); text-decoration: none; transition: color var(--vx-transition); }
.demo-hero-phones__number:hover { color: var(--vx-coral); }

.demo-flow { list-style: none; margin: 16px 0 0; padding: 0; display: flex; flex-direction: column; gap: 10px; counter-reset: demo-step; }
.demo-flow li { font-size: 14px; color: var(--vx-muted); padding-left: 28px; position: relative; counter-increment: demo-step; line-height: 1.4; }
.demo-flow li::before { content: counter(demo-step); position: absolute; left: 0; width: 18px; height: 18px; border-radius: 50%; background: var(--vx-navy); color: var(--vx-cream); font-size: 10px; font-weight: 600; display: flex; align-items: center; justify-content: center; top: 1px; }

.demo-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--vx-line); }

.demo-trust { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.demo-trust__item { font-size: 12px; color: var(--vx-muted); padding-left: 16px; position: relative; }
.demo-trust__item::before { content: '✓'; position: absolute; left: 0; color: var(--vx-coral); font-size: 11px; }

.calendly-wrap { margin-top: 28px; border-radius: var(--vx-radius-card); overflow: hidden; border: 1px solid var(--vx-line); }
.calendly-iframe { width: 100%; height: 700px; border: none; display: block; }
.demo-form-wrap { max-width: 720px; margin-top: 36px; }

/* =============================================================
   16. FOOTER
============================================================= */
.site-footer { background: var(--vx-navy); color: var(--vx-cream); padding-top: 80px; padding-bottom: 0; }

.footer-top { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; padding-bottom: 60px; border-bottom: 1px solid var(--vx-line-light); }

.footer-logo { height: 36px; width: auto; margin-bottom: 20px; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-tagline { color: var(--vx-cream-warm); opacity: 0.7; line-height: 1.6; margin-bottom: 24px; max-width: 300px; }

.footer-contact { display: flex; flex-direction: column; gap: 5px; }
.footer-contact p { margin: 0; }
.footer-contact .small { color: var(--vx-cream-warm); opacity: 0.7; }
.footer-contact a { color: var(--vx-cream-warm); opacity: 0.7; text-decoration: none; transition: opacity var(--vx-transition), color var(--vx-transition); }
.footer-contact a:hover { opacity: 1; color: var(--vx-coral); }

.footer-cols { display: grid; grid-template-columns: 1fr 1fr 1.4fr; gap: 40px; }

.footer-heading { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--vx-cream); opacity: 0.4; margin-bottom: 16px; }

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: var(--vx-cream-warm); opacity: 0.75; text-decoration: none; transition: opacity var(--vx-transition), color var(--vx-transition); }
.footer-links a:hover { opacity: 1; color: var(--vx-coral); }

.footer-cta-col .small { color: var(--vx-cream-warm); opacity: 0.7; }

.footer-demo-phones { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--vx-line-light); }
.footer-demo-phone { display: flex; flex-direction: column; gap: 2px; text-decoration: none; font-family: var(--vx-font-display); font-style: italic; font-size: 16px; color: var(--vx-cream); letter-spacing: -0.02em; transition: color var(--vx-transition); }
.footer-demo-phone span { font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--vx-cream-warm); opacity: 0.5; font-style: normal; font-family: var(--vx-font-body); }
.footer-demo-phone:hover { color: var(--vx-coral); }

.footer-bottom { padding: 24px 0; display: flex; flex-direction: column; gap: 8px; }
.footer-copyright { color: var(--vx-cream-warm); opacity: 0.45; margin: 0; }
.footer-trademark { color: var(--vx-cream-warm); opacity: 0.3; margin: 0; font-size: 11px; line-height: 1.5; }

/* =============================================================
   17. RESPONSIVE
============================================================= */
@media (max-width: 1100px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .nav-phone { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-cell:nth-child(3n) { border-right: 1px solid var(--vx-line); }
  .stat-cell:nth-child(2n) { border-right: none; }
}

@media (max-width: 960px) {
  .footer-top  { grid-template-columns: 1fr; gap: 48px; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  :root { --vx-px: var(--vx-px-mobile); }
  .primary-nav  { display: none; }
  .nav-cta .btn { display: none; }
  .hamburger    { display: flex; }
  .navbar       { height: 62px; }
  .hero-wrap    { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual  { display: none; }
  .demo-audio-grid  { grid-template-columns: 1fr; }
  .shield-grid      { grid-template-columns: 1fr; }
  .grid--2          { grid-template-columns: 1fr; }
  .grid--3          { grid-template-columns: 1fr; }
  .grid--4          { grid-template-columns: 1fr 1fr; }
  .stats-grid       { grid-template-columns: 1fr; }
  .stat-cell        { border-right: none !important; border-bottom: 1px solid var(--vx-line); }
  .section          { padding-top: 70px; padding-bottom: 70px; }
  h1                { font-size: clamp(36px, 8vw, 56px); }
  h2                { font-size: clamp(28px, 6vw, 40px); }
  .demo-hero-wrap   { grid-template-columns: 1fr; gap: 40px; }
  .calendly-iframe  { height: 580px; }
  .pricing-shield-inner { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 680px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .addon-item   { flex-direction: column; align-items: flex-start; gap: 6px; }
}

@media (max-width: 560px) {
  .grid--4      { grid-template-columns: 1fr; }
  .hero-trust   { flex-direction: column; }
  .hero-phones  { flex-direction: column; gap: 20px; }
  .footer-cols  { grid-template-columns: 1fr; }
}