/* ============================================
   voAIce - Apple-Inspired Design System
   ============================================ */

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

:root {
  /* Brand Colors */
  --voaice-black: #1d1d1f;
  --voaice-dark: #0a0a0a;
  --voaice-gray-900: #1d1d1f;
  --voaice-gray-800: #2d2d2f;
  --voaice-gray-600: #6e6e73;
  --voaice-gray-400: #86868b;
  --voaice-gray-200: #d2d2d7;
  --voaice-gray-100: #f5f5f7;
  --voaice-white: #fbfbfd;
  --voaice-blue: #0071e3;
  --voaice-blue-hover: #0077ed;
  --voaice-blue-dark: #06c;
  --voaice-gradient-start: #1d1d1f;
  --voaice-gradient-end: #2d2d2f;

  /* Typography */
  --font-display: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-text: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-mono: 'SF Mono', SFMono-Regular, ui-monospace, Menlo, monospace;

  /* Spacing */
  --section-padding: 120px 0;
  --container-max: 1120px;
  --container-wide: 1400px;

  /* Transitions */
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in-out: cubic-bezier(0.645, 0.045, 0.355, 1);
  --transition-fast: 0.2s var(--ease-out);
  --transition-medium: 0.4s var(--ease-out);
  --transition-slow: 0.8s var(--ease-in-out);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-text);
  color: var(--voaice-gray-900);
  background: var(--voaice-white);
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: var(--voaice-blue);
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--voaice-blue-hover);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.container-wide {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   Navigation
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(251, 251, 253, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  transition: background var(--transition-medium);
}

.nav.scrolled {
  background: rgba(251, 251, 253, 0.92);
}

.nav-inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 24px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  height: 24px;
}

.nav-logo img {
  height: 24px;
  width: auto;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  color: var(--voaice-blue);
  letter-spacing: -0.02em;
}

.nav-logo-text .ai-highlight {
  color: inherit;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--voaice-gray-600);
  transition: color var(--transition-fast);
  letter-spacing: -0.01em;
}

.nav-links a:hover {
  color: var(--voaice-gray-900);
}

.nav-cta {
  font-size: 14px;
  font-weight: 400;
  color: var(--voaice-white) !important;
  background: var(--voaice-blue);
  padding: 8px 20px;
  border-radius: 980px;
  transition: background var(--transition-fast);
}

.nav-cta:hover {
  background: var(--voaice-blue-hover) !important;
  color: var(--voaice-white) !important;
}

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-mobile-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--voaice-gray-900);
  margin: 4px 0;
  transition: var(--transition-fast);
}

/* Mobile Menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: 52px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(251, 251, 253, 0.98);
  backdrop-filter: blur(20px);
  padding: 20px 24px;
  z-index: 999;
}

.nav-mobile.active {
  display: block;
}

.nav-mobile a {
  display: block;
  font-size: 17px;
  color: var(--voaice-gray-900);
  padding: 12px 0;
  border-bottom: 1px solid var(--voaice-gray-200);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  padding: 160px 0 100px;
  text-align: center;
  background: var(--voaice-white);
  overflow: hidden;
}

.hero-eyebrow {
  font-size: 17px;
  font-weight: 600;
  color: var(--voaice-gray-600);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s var(--ease-out) 0.2s forwards;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--voaice-gray-900);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s var(--ease-out) 0.4s forwards;
}

.hero h1 .gradient-text {
  background: linear-gradient(135deg, #0071e3 0%, #6e45e2 50%, #c963d8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 28px;
  font-weight: 400;
  line-height: 1.35;
  color: var(--voaice-gray-600);
  max-width: 680px;
  margin: 0 auto 40px;
  letter-spacing: -0.015em;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s var(--ease-out) 0.6s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s var(--ease-out) 0.8s forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  font-weight: 400;
  color: var(--voaice-white);
  background: var(--voaice-blue);
  padding: 12px 28px;
  border-radius: 980px;
  border: none;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.btn-primary:hover {
  background: var(--voaice-blue-hover);
  color: var(--voaice-white);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 17px;
  font-weight: 400;
  color: var(--voaice-blue);
  padding: 12px 28px;
  border-radius: 980px;
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.btn-secondary:hover {
  color: var(--voaice-blue-hover);
}

.btn-secondary .arrow {
  font-size: 20px;
  transition: transform var(--transition-fast);
}

.btn-secondary:hover .arrow {
  transform: translateX(3px);
}

/* Hero Visual */
.hero-visual {
  margin-top: 80px;
  position: relative;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s var(--ease-out) 1s forwards;
}

.hero-visual-inner {
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(135deg, #1d1d1f 0%, #2d2d2f 100%);
  border-radius: 24px;
  padding: 48px;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
}

.hero-visual-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px;
  backdrop-filter: blur(10px);
  transition: transform var(--transition-medium), background var(--transition-medium);
}

.hero-visual-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.hero-visual-card h4 {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}

.hero-visual-card p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  line-height: 1.5;
}

.hero-visual-card .metric {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: white;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.hero-visual-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 113, 227, 0.15), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* ============================================
   Section Styles
   ============================================ */
.section {
  padding: var(--section-padding);
}

.section-dark {
  background: var(--voaice-dark);
  color: white;
}

.section-gray {
  background: var(--voaice-gray-100);
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-eyebrow {
  font-size: 17px;
  font-weight: 600;
  color: var(--voaice-gray-600);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.section-dark .section-eyebrow {
  color: var(--voaice-gray-400);
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  line-height: 1.07;
  letter-spacing: -0.03em;
  color: var(--voaice-gray-900);
}

.section-dark .section-header h2 {
  color: white;
}

.section-header p {
  font-size: 21px;
  color: var(--voaice-gray-600);
  max-width: 600px;
  margin: 16px auto 0;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.section-dark .section-header p {
  color: var(--voaice-gray-400);
}

/* ============================================
   Platform Overview
   ============================================ */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

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

.platform-card {
  background: white;
  border-radius: 24px;
  padding: 48px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-medium);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.platform-card:hover {
  transform: scale(1.01);
}

.platform-card.featured {
  grid-column: span 2;
  background: linear-gradient(135deg, #1d1d1f, #2d2d2f);
  color: white;
}

.platform-card .card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--voaice-gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.platform-card.featured .card-icon {
  background: rgba(255, 255, 255, 0.1);
}

.platform-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}

.platform-card p {
  font-size: 17px;
  color: var(--voaice-gray-600);
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.platform-card.featured p {
  color: rgba(255, 255, 255, 0.6);
}

.platform-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  font-size: 17px;
  font-weight: 400;
  color: var(--voaice-blue);
}

.platform-card .card-link .arrow {
  transition: transform var(--transition-fast);
}

.platform-card .card-link:hover .arrow {
  transform: translateX(3px);
}

/* ============================================
   DealerCRM Section
   ============================================ */
.dealercrm-section {
  padding: 140px 0;
  background: linear-gradient(180deg, #0a1628 0%, #0d1f3c 50%, #0a1628 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.dealercrm-section::before {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 113, 227, 0.12), transparent 60%);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.dealercrm-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 113, 227, 0.08);
  border: 1px solid rgba(0, 113, 227, 0.2);
  border-radius: 980px;
  padding: 6px 16px 6px 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
}

.dealercrm-badge .dot-blue {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0071e3;
  animation: pulse 2s infinite;
}

.dealercrm-section h2 {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 20px;
}

.dealercrm-section h2 .gradient-text {
  background: linear-gradient(135deg, #0071e3 0%, #4da3ff 50%, #88c8ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.dealercrm-subtitle {
  font-size: 21px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 760px;
  margin: 0 auto 80px;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

/* DealerCRM Module Cards */
.dealercrm-modules-header {
  margin: 0 auto 40px;
  max-width: 700px;
}

.dealercrm-modules-header h3 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
  color: white;
}

.dealercrm-modules-header h3 .gradient-text {
  background: linear-gradient(135deg, #0071e3 0%, #4da3ff 50%, #88c8ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.dealercrm-modules-header p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
}

.dealercrm-modules {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto 100px;
}

.dealercrm-module {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: left;
  transition: background var(--transition-medium), transform var(--transition-medium);
}

.dealercrm-module:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.module-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(0, 113, 227, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.module-badges {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.module-badge {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 980px;
}

.module-badge.sales {
  background: rgba(0, 113, 227, 0.15);
  color: #4da3ff;
  border: 1px solid rgba(0, 113, 227, 0.25);
}

.module-badge.management {
  background: rgba(88, 86, 214, 0.15);
  color: #8b8aff;
  border: 1px solid rgba(88, 86, 214, 0.25);
}

.module-badge.fi {
  background: rgba(255, 149, 0, 0.15);
  color: #ffb340;
  border: 1px solid rgba(255, 149, 0, 0.25);
}

.module-badge.compliance {
  background: rgba(48, 209, 88, 0.15);
  color: #30d158;
  border: 1px solid rgba(48, 209, 88, 0.25);
}

.module-badge.bdc {
  background: rgba(191, 90, 242, 0.15);
  color: #bf5af2;
  border: 1px solid rgba(191, 90, 242, 0.25);
}

.module-badge.operations {
  background: rgba(255, 69, 58, 0.15);
  color: #ff6961;
  border: 1px solid rgba(255, 69, 58, 0.25);
}

.dealercrm-module h4 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.95);
}

.dealercrm-module p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
}

/* DealerCRM Narrative */
.dealercrm-data-section {
  max-width: 700px;
  margin: 0 auto 60px;
  text-align: left;
}

.dealercrm-data-header h3 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 32px;
  color: white;
}

.dealercrm-data-header h3 .gradient-text {
  background: linear-gradient(135deg, #0071e3 0%, #4da3ff 50%, #88c8ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.dealercrm-narrative p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 20px;
}

.dealercrm-narrative p:last-child {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  font-size: 21px;
  margin-bottom: 0;
}

/* DealerCRM Built-In Communications */
.dealercrm-comms-header {
  margin: 0 auto 40px;
  max-width: 700px;
}

.dealercrm-comms-header h3 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
  color: white;
}

.dealercrm-comms-header h3 .gradient-text {
  background: linear-gradient(135deg, #0071e3 0%, #4da3ff 50%, #88c8ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.dealercrm-comms-header p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
}

.dealercrm-comms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto 100px;
}

.dealercrm-comm-card {
  background: rgba(0, 113, 227, 0.06);
  border: 1px solid rgba(0, 113, 227, 0.15);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: left;
  transition: background var(--transition-medium), transform var(--transition-medium), border-color var(--transition-medium);
}

.dealercrm-comm-card:hover {
  background: rgba(0, 113, 227, 0.12);
  border-color: rgba(0, 113, 227, 0.3);
  transform: translateY(-4px);
}

.dc-comm-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(0, 113, 227, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.dc-comm-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #4da3ff;
  margin-bottom: 8px;
}

.dealercrm-comm-card h4 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.95);
}

.dealercrm-comm-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
}

/* DealerCRM Feature Cards */
.dealercrm-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto 60px;
}

.dealercrm-feature-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: left;
  transition: background var(--transition-medium), transform var(--transition-medium);
}

.dealercrm-feature-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.dc-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 113, 227, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.dealercrm-feature-card h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.95);
}

.dealercrm-feature-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
}

/* DealerCRM Closing */
.dealercrm-closing {
  max-width: 700px;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: left;
}

.dealercrm-closing p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
  font-style: italic;
}

/* ============================================
   Olivia AI Section
   ============================================ */
.olivia-section {
  padding: 140px 0;
  background: linear-gradient(180deg, var(--voaice-dark) 0%, #0a0a14 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.olivia-section::before {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(110, 69, 226, 0.12), transparent 60%);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.olivia-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 980px;
  padding: 6px 16px 6px 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
}

.olivia-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #30d158;
  animation: pulse 2s infinite;
}

.olivia-section h2 {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 20px;
}

.olivia-section h2 .gradient-text {
  background: linear-gradient(135deg, #6e45e2 0%, #c963d8 50%, #f5a0c0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.olivia-subtitle {
  font-size: 21px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 760px;
  margin: 0 auto 80px;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.olivia-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

.olivia-feature {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: left;
  transition: background var(--transition-medium), transform var(--transition-medium);
}

.olivia-feature:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.olivia-feature .feature-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.olivia-feature h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.95);
}

.olivia-feature p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
}

/* OliviaAI Communication Channels */
.olivia-channels-header {
  margin: 0 auto 40px;
  max-width: 700px;
}

.olivia-channels-header h3 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
  color: white;
}

.olivia-channels-header h3 .gradient-text,
.olivia-data-header h3 .gradient-text {
  background: linear-gradient(135deg, #6e45e2 0%, #c963d8 50%, #f5a0c0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.olivia-channels-header p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
}

.olivia-channels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto 100px;
}

.olivia-channel {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: left;
  transition: background var(--transition-medium), transform var(--transition-medium);
}

.olivia-channel:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.channel-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(110, 69, 226, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.channel-badges {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.channel-badge {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 980px;
}

.channel-badge.inbound {
  background: rgba(48, 209, 88, 0.15);
  color: #30d158;
  border: 1px solid rgba(48, 209, 88, 0.25);
}

.channel-badge.outbound {
  background: rgba(0, 113, 227, 0.15);
  color: #4da3ff;
  border: 1px solid rgba(0, 113, 227, 0.25);
}

.olivia-channel h4 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.95);
}

.olivia-channel p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
}

/* Unified Data Advantage */
.olivia-data-section {
  max-width: 700px;
  margin: 0 auto 60px;
  text-align: left;
}

.olivia-data-header h3 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 32px;
  color: white;
}

.olivia-data-narrative p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 20px;
}

.olivia-data-narrative p:last-child {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  font-size: 21px;
  margin-bottom: 0;
}

.olivia-data-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto 60px;
}

.olivia-data-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: left;
  transition: background var(--transition-medium), transform var(--transition-medium);
}

.olivia-data-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.data-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(110, 69, 226, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.olivia-data-card h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.95);
}

.olivia-data-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
}

.olivia-closing {
  max-width: 700px;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: left;
}

.olivia-closing p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
  font-style: italic;
}

/* ============================================
   DealerIdentify Section
   ============================================ */
.dealeridentify-section {
  padding: 140px 0;
  background: linear-gradient(180deg, #061a14 0%, #0a2e1f 50%, #061a14 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.dealeridentify-section::before {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 200, 120, 0.10), transparent 60%);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.di-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 200, 120, 0.08);
  border: 1px solid rgba(0, 200, 120, 0.2);
  border-radius: 980px;
  padding: 6px 16px 6px 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
}

.di-badge .dot-green {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00c878;
  animation: pulse 2s infinite;
}

.dealeridentify-section h2 {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 20px;
}

.dealeridentify-section h2 .gradient-text {
  background: linear-gradient(135deg, #00c878 0%, #34d399 50%, #6ee7b7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.di-subtitle {
  font-size: 21px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 760px;
  margin: 0 auto 80px;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

/* DealerIdentify Problem Stats */
.di-problem-header {
  margin: 0 auto 40px;
  max-width: 700px;
}

.di-problem-header h3,
.di-how-header h3,
.di-impact-header h3 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
  color: white;
}

.di-problem-header h3 .gradient-text,
.di-how-header h3 .gradient-text,
.di-impact-header h3 .gradient-text {
  background: linear-gradient(135deg, #00c878 0%, #34d399 50%, #6ee7b7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.di-problem-header p,
.di-how-header p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
}

.di-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto 100px;
}

.di-stat {
  background: rgba(0, 200, 120, 0.06);
  border: 1px solid rgba(0, 200, 120, 0.12);
  border-radius: 20px;
  padding: 36px 24px;
  text-align: center;
}

.di-stat-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, #00c878 0%, #34d399 50%, #6ee7b7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  line-height: 1;
}

.di-stat p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
}

/* DealerIdentify How It Works */
.di-how-header {
  margin: 0 auto 40px;
  max-width: 700px;
}

.di-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto 80px;
}

.di-feature-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: left;
  transition: background var(--transition-medium), transform var(--transition-medium);
}

.di-feature-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.di-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 200, 120, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.di-feature-card h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.95);
}

.di-feature-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
}

/* DealerIdentify Impact Narrative */
.di-impact-section {
  max-width: 700px;
  margin: 0 auto 60px;
  text-align: left;
}

.di-impact-header h3 {
  margin-bottom: 32px;
}

.di-impact-narrative p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 20px;
}

.di-impact-narrative p:last-child {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  font-size: 19px;
  margin-bottom: 0;
}

/* DealerIdentify Verticals */
.di-verticals {
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: left;
  padding: 28px 32px;
  background: rgba(0, 200, 120, 0.06);
  border: 1px solid rgba(0, 200, 120, 0.12);
  border-radius: 16px;
}

.di-verticals h4 {
  font-size: 17px;
  font-weight: 600;
  color: #34d399;
  margin-bottom: 8px;
}

.di-verticals p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
}

/* DealerIdentify Closing */
.di-closing {
  max-width: 700px;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: left;
}

.di-closing p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
  font-style: italic;
}

/* ============================================
   Stats Section
   ============================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item .stat-number {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--voaice-gray-900);
  line-height: 1;
}

.stat-item .stat-label {
  font-size: 14px;
  color: var(--voaice-gray-600);
  margin-top: 8px;
  letter-spacing: -0.01em;
}

/* ============================================
   Feature Showcase (Alternating)
   ============================================ */
.feature-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
}

.feature-showcase.reverse {
  direction: rtl;
}

.feature-showcase.reverse > * {
  direction: ltr;
}

.feature-showcase-content .feature-tag {
  font-size: 14px;
  font-weight: 600;
  color: var(--voaice-blue);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}

.feature-showcase-content h3 {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 16px;
}

.feature-showcase-content p {
  font-size: 17px;
  color: var(--voaice-gray-600);
  line-height: 1.5;
  margin-bottom: 24px;
}

.feature-showcase-visual {
  background: var(--voaice-gray-100);
  border-radius: 24px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.feature-showcase-visual.dark-visual {
  background: linear-gradient(135deg, #1d1d1f, #2d2d2f);
}

/* ============================================
   Security Section
   ============================================ */
.security-section {
  padding: 140px 0;
  background: linear-gradient(180deg, #0a0a14 0%, #0d1117 50%, #0a0a14 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.security-section::before {
  content: '';
  position: absolute;
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, rgba(0, 113, 227, 0.08), transparent 60%);
  top: -300px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.security-header {
  margin-bottom: 60px;
}

.security-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 113, 227, 0.12);
  border: 1px solid rgba(0, 113, 227, 0.25);
  border-radius: 980px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #4da3ff;
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}

.security-header h2 {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 700;
  line-height: 1.07;
  letter-spacing: -0.035em;
  margin-bottom: 20px;
}

.security-header h2 .gradient-text {
  background: linear-gradient(135deg, #0071e3 0%, #6e45e2 50%, #4da3ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.security-header p {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

/* Shield Graphic */
.security-visual {
  margin-bottom: 80px;
}

.security-shield {
  position: relative;
  width: 240px;
  height: 240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shield-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0, 113, 227, 0.15);
}

.shield-ring.ring-1 {
  width: 180px;
  height: 180px;
  animation: shieldPulse 3s ease-in-out infinite;
}

.shield-ring.ring-2 {
  width: 220px;
  height: 220px;
  border-color: rgba(0, 113, 227, 0.08);
  animation: shieldPulse 3s ease-in-out 0.5s infinite;
}

.shield-ring.ring-3 {
  width: 260px;
  height: 260px;
  border-color: rgba(0, 113, 227, 0.04);
  animation: shieldPulse 3s ease-in-out 1s infinite;
}

@keyframes shieldPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.6; }
}

/* Security Cards */
.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto 60px;
}

.security-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: left;
  transition: background var(--transition-medium), transform var(--transition-medium);
}

.security-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.security-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 113, 227, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.security-card h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.95);
}

.security-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
}

.security-bottom p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.4);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  font-style: italic;
}

/* ============================================
   Testimonials
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 36px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform var(--transition-medium);
}

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

.testimonial-stars {
  color: #ff9500;
  font-size: 14px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-size: 17px;
  line-height: 1.5;
  color: var(--voaice-gray-900);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--voaice-gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  color: var(--voaice-gray-600);
}

.testimonial-info .name {
  font-size: 14px;
  font-weight: 600;
  color: var(--voaice-gray-900);
}

.testimonial-info .role {
  font-size: 13px;
  color: var(--voaice-gray-600);
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
  padding: 140px 0;
  text-align: center;
  background: var(--voaice-white);
}

.cta-section h2 {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.07;
  color: var(--voaice-gray-900);
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 21px;
  color: var(--voaice-gray-600);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.4;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--voaice-gray-100);
  padding: 48px 0 24px;
  border-top: 1px solid var(--voaice-gray-200);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--voaice-gray-600);
  line-height: 1.6;
  margin-top: 12px;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--voaice-gray-900);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 8px;
}

.footer-col a {
  font-size: 14px;
  color: var(--voaice-gray-600);
}

.footer-col a:hover {
  color: var(--voaice-gray-900);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--voaice-gray-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--voaice-gray-600);
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  color: var(--voaice-gray-600);
  font-size: 14px;
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger-children .fade-in:nth-child(1) { transition-delay: 0.1s; }
.stagger-children .fade-in:nth-child(2) { transition-delay: 0.2s; }
.stagger-children .fade-in:nth-child(3) { transition-delay: 0.3s; }
.stagger-children .fade-in:nth-child(4) { transition-delay: 0.4s; }
.stagger-children .fade-in:nth-child(5) { transition-delay: 0.5s; }
.stagger-children .fade-in:nth-child(6) { transition-delay: 0.6s; }

/* ============================================
   DealerCRM Dashboard Visual
   ============================================ */
.dc-visual {
  position: relative;
  max-width: 900px;
  margin: 0 auto 80px;
}

.dc-visual-glow {
  position: absolute;
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(0, 113, 227, 0.15), transparent 65%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

.dc-window {
  position: relative;
  z-index: 1;
  background: rgba(12, 20, 36, 0.98);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 25px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 120px rgba(0, 113, 227, 0.06);
  overflow: hidden;
}

.dc-window-chrome {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.dc-window-dots {
  display: flex;
  gap: 7px;
}

.dc-window-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.dc-window-title {
  flex: 1;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.02em;
  padding-right: 40px;
}

.dc-window-body {
  padding: 20px;
}

.dc-window-tabs {
  display: flex;
  gap: 2px;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  padding: 3px;
}

.dc-window-tabs span {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.3);
  padding: 7px 16px;
  border-radius: 6px;
  cursor: default;
  transition: all 0.2s;
}

.dc-window-tabs span.active {
  background: rgba(0, 113, 227, 0.25);
  color: #4da3ff;
}

.dc-window-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.dc-wm {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 18px 16px;
}

.dc-wm-value {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: white;
  letter-spacing: -0.02em;
  margin-bottom: 2px;
}

.dc-wm-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}

.dc-wm-bar {
  height: 3px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 2px;
  overflow: hidden;
}

.dc-wm-bar div {
  height: 100%;
  background: linear-gradient(90deg, #0071e3, #4da3ff);
  border-radius: 2px;
}

.dc-wm-olivia .dc-wm-bar div {
  background: linear-gradient(90deg, #6e45e2, #c963d8);
}

.dc-wm-olivia .dc-wm-value {
  background: linear-gradient(135deg, #6e45e2, #c963d8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.dc-window-feed {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 16px;
}

.dc-wf-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 12px;
}

.dc-wf-live {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  animation: dcLivePulse 2s ease-in-out infinite;
}

@keyframes dcLivePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
  50% { opacity: 0.6; box-shadow: 0 0 0 4px rgba(34, 197, 94, 0); }
}

.dc-wf-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.025);
}

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

.dc-wf-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dc-wf-text {
  flex: 1;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.dc-wf-time {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

/* ============================================
   OliviaAI Communication Hub Visual
   ============================================ */
.olivia-visual {
  position: relative;
  max-width: 480px;
  margin: 0 auto 80px;
  aspect-ratio: 1;
}

.olivia-visual-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(110, 69, 226, 0.18), transparent 60%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.olivia-hub {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Orbital rings */
.olivia-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  transform: translate(-50%, -50%);
  border: 1px dashed rgba(110, 69, 226, 0.2);
  border-radius: 50%;
  animation: oliviaOrbitSpin 60s linear infinite;
}

.olivia-orbit.orbit-2 {
  width: 220px;
  height: 220px;
  border-color: rgba(110, 69, 226, 0.12);
  animation-duration: 45s;
  animation-direction: reverse;
}

@keyframes oliviaOrbitSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Central core */
.olivia-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.olivia-core-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 120px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1.5px solid rgba(110, 69, 226, 0.25);
  animation: oliviaCoreGlow 3s ease-in-out infinite;
}

@keyframes oliviaCoreGlow {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%, -50%) scale(1.35); opacity: 0; }
}

.olivia-core-label {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #6e45e2 0%, #c963d8 100%);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  box-shadow:
    0 0 50px rgba(110, 69, 226, 0.35),
    0 0 100px rgba(110, 69, 226, 0.12);
}

.olivia-core-label span {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: white;
  letter-spacing: -0.02em;
}

/* Channel nodes */
.olivia-node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 3;
}

.olivia-node-icon {
  width: 56px;
  height: 56px;
  background: rgba(110, 69, 226, 0.12);
  border: 1px solid rgba(110, 69, 226, 0.25);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, background 0.3s ease;
}

.olivia-node:hover .olivia-node-icon {
  background: rgba(110, 69, 226, 0.2);
  transform: scale(1.08);
}

.olivia-node-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: -0.01em;
}

.olivia-node-badge {
  font-size: 10px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.01em;
}

.olivia-node.node-email {
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
}

.olivia-node.node-text {
  right: 2%;
  top: 50%;
  transform: translateY(-50%);
}

.olivia-node.node-chat {
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
}

.olivia-node.node-phone {
  left: 2%;
  top: 50%;
  transform: translateY(-50%);
}

/* Data flow particles */
.olivia-particle {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #c963d8;
  box-shadow: 0 0 8px rgba(201, 99, 216, 0.6);
  z-index: 4;
  opacity: 0;
}

.olivia-particle.p1 {
  animation: oliviaFlow1 3s ease-in-out infinite;
}
.olivia-particle.p2 {
  animation: oliviaFlow2 3.5s ease-in-out infinite 0.8s;
}
.olivia-particle.p3 {
  animation: oliviaFlow3 4s ease-in-out infinite 1.6s;
}
.olivia-particle.p4 {
  animation: oliviaFlow4 3.2s ease-in-out infinite 2.4s;
}

@keyframes oliviaFlow1 {
  0% { top: 50%; left: 50%; opacity: 0; transform: translate(-50%, -50%); }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { top: 10%; left: 50%; opacity: 0; transform: translate(-50%, -50%); }
}

@keyframes oliviaFlow2 {
  0% { top: 50%; left: 50%; opacity: 0; transform: translate(-50%, -50%); }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { top: 50%; left: 92%; opacity: 0; transform: translate(-50%, -50%); }
}

@keyframes oliviaFlow3 {
  0% { top: 50%; left: 50%; opacity: 0; transform: translate(-50%, -50%); }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { top: 90%; left: 50%; opacity: 0; transform: translate(-50%, -50%); }
}

@keyframes oliviaFlow4 {
  0% { top: 50%; left: 50%; opacity: 0; transform: translate(-50%, -50%); }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { top: 50%; left: 8%; opacity: 0; transform: translate(-50%, -50%); }
}

/* ============================================
   DealerIdentify Phone Visual
   ============================================ */
.di-visual {
  max-width: 680px;
  margin: 0 auto 80px;
}

.di-visual-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.di-phone {
  text-align: center;
  flex-shrink: 0;
}

.di-phone-frame {
  width: 220px;
  height: 440px;
  border-radius: 36px;
  padding: 12px;
  position: relative;
  overflow: hidden;
}

.di-phone-before .di-phone-frame {
  background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
  border: 2px solid rgba(239, 68, 68, 0.15);
  box-shadow:
    0 25px 80px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 0 60px rgba(239, 68, 68, 0.08);
}

.di-phone-after .di-phone-frame {
  background: linear-gradient(180deg, #0a2e1f 0%, #061a14 100%);
  border: 2px solid rgba(0, 200, 120, 0.2);
  box-shadow:
    0 25px 80px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 0 60px rgba(0, 200, 120, 0.1);
  animation: diPhoneGlow 3s ease-in-out infinite;
}

@keyframes diPhoneGlow {
  0%, 100% { box-shadow: 0 25px 80px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 0 60px rgba(0, 200, 120, 0.1); }
  50% { box-shadow: 0 25px 80px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 0 80px rgba(0, 200, 120, 0.18); }
}

.di-phone-speaker {
  width: 56px;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  margin: 10px auto 0;
}

.di-phone-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 8px;
}

.di-phone-time {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  margin: 16px 0 36px;
  letter-spacing: 0.02em;
}

.di-phone-caller-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.di-phone-caller-icon.before {
  background: rgba(239, 68, 68, 0.1);
  border: 1.5px solid rgba(239, 68, 68, 0.25);
}

.di-phone-caller-icon.after {
  background: rgba(0, 200, 120, 0.1);
  border: 1.5px solid rgba(0, 200, 120, 0.3);
}

.di-phone-caller-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.di-phone-caller-name.before {
  color: rgba(255, 255, 255, 0.4);
}

.di-phone-caller-name.after {
  color: white;
}

.di-phone-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 980px;
  margin-bottom: 44px;
}

.di-phone-badge.spam {
  background: rgba(239, 68, 68, 0.12);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.di-phone-badge.verified {
  background: rgba(0, 200, 120, 0.12);
  color: #34d399;
  border: 1px solid rgba(0, 200, 120, 0.2);
}

.di-phone-btns {
  display: flex;
  gap: 24px;
  width: 100%;
  justify-content: center;
}

.di-phone-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  cursor: default;
}

.di-btn-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.decline-circle {
  background: rgba(239, 68, 68, 0.25);
}

.remind-circle {
  background: rgba(255, 255, 255, 0.06);
}

.answer-circle {
  background: rgba(0, 200, 120, 0.35);
  box-shadow: 0 0 20px rgba(0, 200, 120, 0.2);
}

.di-phone-btn.answer {
  color: rgba(255, 255, 255, 0.7);
}

.di-phone-btn.decline-sm {
  color: rgba(255, 255, 255, 0.3);
}

.di-visual-arrow {
  flex-shrink: 0;
  opacity: 0.7;
}

.di-phone-label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-top: 20px;
}

.di-phone-label.before-label {
  color: rgba(255, 255, 255, 0.35);
}

.di-phone-label.after-label {
  color: #34d399;
}

/* ============================================
   Stats Ring Gauges
   ============================================ */
.stat-ring-container {
  position: relative;
  width: 130px;
  height: 130px;
  margin: 0 auto 16px;
}

.stat-ring {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.stat-ring-bg {
  fill: none;
  stroke: rgba(0, 0, 0, 0.06);
  stroke-width: 6;
}

.stat-ring-fill {
  fill: none;
  stroke-width: 6;
  stroke-linecap: round;
  transition: stroke-dashoffset 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stat-ring-fill.stat-ring-blue {
  stroke: var(--voaice-blue);
}

.stat-ring-fill.stat-ring-purple {
  stroke: #6e45e2;
}

.stat-ring-fill.stat-ring-green {
  stroke: #34d399;
}

.stat-ring-value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.stat-ring-value .stat-number {
  font-size: 36px !important;
  line-height: 1 !important;
}

.stat-ring-unit {
  font-family: var(--font-text);
  font-size: 14px;
  font-weight: 500;
  color: var(--voaice-gray-400);
}

@keyframes statRingFillOne {
  from { stroke-dashoffset: 327; }
  to { stroke-dashoffset: 294; }
}

/* ============================================
   Platform Interconnection Visual
   ============================================ */
.platform-visual {
  position: relative;
  max-width: 420px;
  margin: 0 auto 80px;
}

.platform-visual-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 113, 227, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.pv-hub {
  position: relative;
  width: 400px;
  height: 400px;
  margin: 0 auto;
}

.pv-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--voaice-gray-900), var(--voaice-gray-800));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.pv-center-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 1px solid rgba(0, 113, 227, 0.2);
  animation: pvCenterPulse 3s ease-in-out infinite;
  z-index: 2;
}

@keyframes pvCenterPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%, -50%) scale(1.15); opacity: 0.2; }
}

.pv-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.pv-node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
}

.pv-node span {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.pv-node-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0071e3, #0077ed);
  box-shadow: 0 4px 20px rgba(0, 113, 227, 0.3);
}

.pv-node-dot.olivia {
  background: linear-gradient(135deg, #6e45e2, #88a0f7);
  box-shadow: 0 4px 20px rgba(110, 69, 226, 0.3);
}

.pv-node-dot.identify {
  background: linear-gradient(135deg, #22c55e, #34d399);
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.3);
}

.pv-node-dot.appraisals {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
}

.pv-node-crm {
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
}

.pv-node-crm span { color: #0071e3; }

.pv-node-olivia {
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
}

.pv-node-olivia span { color: #6e45e2; }

.pv-node-identify {
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}

.pv-node-identify span { color: #22c55e; }

.pv-node-datasafe {
  top: 50%;
  left: -10px;
  transform: translateY(-50%);
}

.pv-node-datasafe span { color: #f59e0b; }

.pv-node-dot.datasafe {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.4);
}

/* Data pulse particles */
.pv-pulse {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  z-index: 4;
}

.pv-pulse-1 {
  background: #0071e3;
  box-shadow: 0 0 8px #0071e3;
  top: 50%;
  left: 50%;
  animation: pvPulseUp 3s ease-in-out infinite;
}

.pv-pulse-2 {
  background: #6e45e2;
  box-shadow: 0 0 8px #6e45e2;
  top: 50%;
  left: 50%;
  animation: pvPulseRight 3s ease-in-out 0.75s infinite;
}

.pv-pulse-3 {
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  top: 50%;
  left: 50%;
  animation: pvPulseDown 3s ease-in-out 1.5s infinite;
}

.pv-pulse-4 {
  background: #f59e0b;
  box-shadow: 0 0 8px #f59e0b;
  top: 50%;
  left: 50%;
  animation: pvPulseLeft 3s ease-in-out 2.25s infinite;
}

@keyframes pvPulseUp {
  0% { transform: translate(-50%, -50%); opacity: 0; }
  10% { opacity: 1; }
  50% { transform: translate(-50%, calc(-150px - 50%)); opacity: 1; }
  60% { opacity: 0; }
  100% { opacity: 0; transform: translate(-50%, -50%); }
}

@keyframes pvPulseRight {
  0% { transform: translate(-50%, -50%); opacity: 0; }
  10% { opacity: 1; }
  50% { transform: translate(calc(150px - 50%), -50%); opacity: 1; }
  60% { opacity: 0; }
  100% { opacity: 0; transform: translate(-50%, -50%); }
}

@keyframes pvPulseDown {
  0% { transform: translate(-50%, -50%); opacity: 0; }
  10% { opacity: 1; }
  50% { transform: translate(-50%, calc(150px - 50%)); opacity: 1; }
  60% { opacity: 0; }
  100% { opacity: 0; transform: translate(-50%, -50%); }
}

@keyframes pvPulseLeft {
  0% { transform: translate(-50%, -50%); opacity: 0; }
  10% { opacity: 1; }
  50% { transform: translate(calc(-150px - 50%), -50%); opacity: 1; }
  60% { opacity: 0; }
  100% { opacity: 0; transform: translate(-50%, -50%); }
}

/* ============================================
   Enhanced Security Shield
   ============================================ */
.security-shield svg {
  filter: drop-shadow(0 4px 24px rgba(0, 113, 227, 0.3));
}

.security-visual {
  position: relative;
}

.security-visual::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0, 113, 227, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Floating security data nodes */
.security-visual::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  border: 1px dashed rgba(0, 113, 227, 0.08);
  border-radius: 50%;
  animation: secOrbitSlow 30s linear infinite;
  pointer-events: none;
}

@keyframes secOrbitSlow {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ============================================
   CTA Ambient Orbs
   ============================================ */
.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}

.cta-orb-1 {
  width: 400px;
  height: 400px;
  background: #0071e3;
  top: -100px;
  left: -100px;
  animation: ctaFloat 8s ease-in-out infinite;
}

.cta-orb-2 {
  width: 350px;
  height: 350px;
  background: #6e45e2;
  bottom: -80px;
  right: -80px;
  animation: ctaFloat 8s ease-in-out 2.5s infinite;
}

.cta-orb-3 {
  width: 250px;
  height: 250px;
  background: #22c55e;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ctaFloat 8s ease-in-out 5s infinite;
}

@keyframes ctaFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -15px) scale(1.05); }
  66% { transform: translate(-15px, 10px) scale(0.95); }
}

.cta-orb-3 {
  animation: ctaFloatCenter 8s ease-in-out 5s infinite;
}

@keyframes ctaFloatCenter {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  33% { transform: translate(calc(-50% + 20px), calc(-50% - 15px)) scale(1.05); }
  66% { transform: translate(calc(-50% - 15px), calc(-50% + 10px)) scale(0.95); }
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

/* ============================================
   DataSafe API Section
   ============================================ */
.datasafe-section {
  padding: 140px 0;
  background: linear-gradient(180deg, #1a1408 0%, #2e2210 50%, #1a1408 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.datasafe-section::before {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.12), transparent 60%);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.datasafe-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 980px;
  padding: 6px 16px 6px 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
}

.datasafe-badge .dot-orange {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f59e0b;
  animation: pulse 2s infinite;
}

.datasafe-section h2 {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 20px;
}

.datasafe-section h2 .gradient-text {
  background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 50%, #fcd34d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.datasafe-subtitle {
  font-size: 21px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 760px;
  margin: 0 auto 80px;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

/* DataSafe Terminal Visual */
.ds-visual {
  position: relative;
  max-width: 700px;
  margin: 0 auto 100px;
}

.ds-visual-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(245, 158, 11, 0.15), transparent 70%);
  top: -20%;
  pointer-events: none;
}

.ds-terminal {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4), 0 0 60px rgba(245, 158, 11, 0.06);
}

.ds-terminal-chrome {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ds-terminal-dots {
  display: flex;
  gap: 7px;
}

.ds-terminal-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.ds-terminal-title {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  flex: 1;
  text-align: center;
}

.ds-terminal-body {
  padding: 24px;
  text-align: left;
}

.ds-terminal-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.ds-term-method {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.1);
  padding: 4px 10px;
  border-radius: 6px;
}

.ds-term-url {
  font-family: var(--font-mono);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.ds-term-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  color: #22c55e;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: auto;
}

.ds-terminal-code {
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.ds-code-line {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ds-code-indent {
  padding-left: 24px;
}

.ds-code-key {
  color: #fbbf24;
}

.ds-code-value {
  color: rgba(255, 255, 255, 0.5);
}

.ds-code-string {
  color: #34d399;
}

.ds-code-array {
  color: #60a5fa;
}

.ds-code-bracket {
  color: rgba(255, 255, 255, 0.3);
}

.ds-code-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 12px 0;
}

.ds-terminal-response {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 16px;
}

.ds-response-status {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.ds-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse 2s infinite;
}

.ds-status-code {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  color: #22c55e;
}

.ds-status-time {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.ds-status-enc {
  font-family: var(--font-mono);
  font-size: 11px;
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: auto;
}

/* DataSafe Section Headers */
.datasafe-modules-header {
  margin: 0 auto 40px;
  max-width: 700px;
}

.datasafe-modules-header h3 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
  color: white;
}

.datasafe-modules-header h3 .gradient-text {
  background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 50%, #fcd34d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.datasafe-modules-header p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
}

/* DataSafe Module Cards */
.datasafe-modules {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto 100px;
}

.datasafe-module {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: left;
  transition: background var(--transition-medium), transform var(--transition-medium);
}

.datasafe-module:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.ds-module-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(251, 191, 36, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.datasafe-module h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: white;
}

.datasafe-module p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
}

/* DataSafe Narrative Sections */
.datasafe-data-section {
  margin: 100px auto;
  max-width: 800px;
}

.datasafe-data-header {
  margin-bottom: 32px;
}

.datasafe-data-header h3 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: white;
}

.datasafe-data-header h3 .gradient-text {
  background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 50%, #fcd34d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.datasafe-narrative {
  text-align: left;
}

.datasafe-narrative p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 20px;
}

.datasafe-narrative strong {
  color: rgba(255, 255, 255, 0.85);
}

/* DataSafe Security Grid */
.datasafe-security-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto 100px;
}

.datasafe-security-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: left;
  transition: background var(--transition-medium), transform var(--transition-medium);
}

.datasafe-security-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.ds-security-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(251, 191, 36, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.datasafe-security-card h4 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: white;
}

.datasafe-security-card p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
}

/* DataSafe Closing */
.datasafe-closing {
  max-width: 760px;
  margin: 0 auto;
  padding-top: 20px;
}

.datasafe-closing p {
  font-size: 19px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1068px) {
  .hero h1 {
    font-size: 64px;
  }

  .hero-subtitle {
    font-size: 24px;
  }

  .section-header h2 {
    font-size: 48px;
  }

  .olivia-section h2 {
    font-size: 64px;
  }

  .feature-showcase-content h3 {
    font-size: 40px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }

  .stat-item .stat-number {
    font-size: 48px;
  }

  .cta-section h2 {
    font-size: 48px;
  }

  .security-header h2 {
    font-size: 48px;
  }

  .dealercrm-section h2 {
    font-size: 64px;
  }

  .dealercrm-modules-header h3,
  .dealercrm-data-header h3,
  .dealercrm-comms-header h3 {
    font-size: 32px;
  }

  .olivia-channels-header h3,
  .olivia-data-header h3 {
    font-size: 32px;
  }

  .dealeridentify-section h2 {
    font-size: 64px;
  }

  .datasafe-section h2 {
    font-size: 64px;
  }

  .datasafe-modules-header h3,
  .datasafe-data-header h3 {
    font-size: 32px;
  }

  .di-problem-header h3,
  .di-how-header h3,
  .di-impact-header h3 {
    font-size: 32px;
  }

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

  .di-stat-number {
    font-size: 40px;
  }

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

  .olivia-visual {
    max-width: 400px;
  }

  .olivia-orbit {
    width: 260px;
    height: 260px;
  }

  .olivia-orbit.orbit-2 {
    width: 190px;
    height: 190px;
  }

  .pv-hub {
    width: 340px;
    height: 340px;
  }

  .stat-ring-container {
    width: 110px;
    height: 110px;
  }

  .stat-ring-value .stat-number {
    font-size: 30px !important;
  }
}

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

  .nav-links.active {
    display: block;
    position: fixed;
    top: 52px;
    left: 0;
    width: 100%;
    height: calc(100vh - 52px);
    height: calc(100dvh - 52px);
    background: #fbfbfd;
    padding: 20px 24px;
    z-index: 999;
    list-style: none;
    overflow-y: auto;
    box-sizing: border-box;
  }

  .nav-links.active li {
    border-bottom: 1px solid var(--voaice-gray-200);
  }

  .nav-links.active a {
    display: block;
    font-size: 17px;
    color: var(--voaice-gray-900);
    padding: 14px 0;
    font-weight: 500;
  }

  .nav-links.active .nav-cta {
    background: none !important;
    color: var(--voaice-blue) !important;
    padding: 14px 0;
    border-radius: 0;
    font-size: 17px;
  }

  .nav-mobile-toggle {
    display: block;
  }

  .nav-mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }

  .nav-mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
  }

  .hero {
    padding: 120px 0 80px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-subtitle {
    font-size: 19px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .section {
    padding: 80px 0;
  }

  .section-header {
    margin-bottom: 48px;
  }

  .section-header h2 {
    font-size: 40px;
  }

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

  .platform-card.featured {
    grid-column: span 1;
  }

  .olivia-section {
    padding: 100px 0;
  }

  .olivia-section h2 {
    font-size: 48px;
  }

  .olivia-features {
    grid-template-columns: 1fr;
  }

  .feature-showcase {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 0;
  }

  .feature-showcase.reverse {
    direction: ltr;
  }

  .feature-showcase-content h3 {
    font-size: 32px;
  }

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

  .dealercrm-section {
    padding: 100px 0;
  }

  .dealercrm-section h2 {
    font-size: 48px;
  }

  .dealercrm-modules {
    grid-template-columns: 1fr;
  }

  .dealercrm-feature-grid {
    grid-template-columns: 1fr;
  }

  .dealercrm-comms-grid {
    grid-template-columns: 1fr;
  }

  .dealercrm-modules-header h3,
  .dealercrm-data-header h3,
  .dealercrm-comms-header h3 {
    font-size: 28px;
  }

  .olivia-channels {
    grid-template-columns: 1fr;
  }

  .olivia-data-grid {
    grid-template-columns: 1fr;
  }

  .olivia-channels-header h3,
  .olivia-data-header h3 {
    font-size: 28px;
  }

  .datasafe-section {
    padding: 100px 0;
  }

  .datasafe-section h2 {
    font-size: 48px;
  }

  .datasafe-modules {
    grid-template-columns: 1fr;
  }

  .datasafe-security-grid {
    grid-template-columns: 1fr;
  }

  .datasafe-modules-header h3,
  .datasafe-data-header h3 {
    font-size: 28px;
  }

  .ds-terminal-title {
    display: none;
  }

  .dealeridentify-section {
    padding: 100px 0;
  }

  .dealeridentify-section h2 {
    font-size: 48px;
  }

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

  .di-features-grid {
    grid-template-columns: 1fr;
  }

  .di-problem-header h3,
  .di-how-header h3,
  .di-impact-header h3 {
    font-size: 28px;
  }

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

  .dc-window-tabs {
    flex-wrap: wrap;
  }

  .olivia-visual {
    max-width: 340px;
  }

  .olivia-orbit {
    width: 220px;
    height: 220px;
  }

  .olivia-orbit.orbit-2 {
    width: 160px;
    height: 160px;
  }

  .olivia-core-label {
    width: 74px;
    height: 74px;
  }

  .olivia-core-label span {
    font-size: 11px;
  }

  .olivia-core-label svg {
    width: 16px;
    height: 16px;
  }

  .olivia-node-icon {
    width: 48px;
    height: 48px;
  }

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

  .olivia-core-pulse {
    width: 100px;
    height: 100px;
  }

  .di-visual-container {
    flex-direction: column;
    gap: 20px;
  }

  .di-visual-arrow {
    transform: rotate(90deg);
  }

  .di-phone-frame {
    width: 240px;
    height: 460px;
  }

  .security-section {
    padding: 100px 0;
  }

  .security-header h2 {
    font-size: 40px;
  }

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

  .cta-section {
    padding: 100px 0;
  }

  .cta-section h2 {
    font-size: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .hero-visual-inner {
    aspect-ratio: auto;
    padding: 32px 24px;
  }

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

  .pv-hub {
    width: 300px;
    height: 300px;
  }

  .pv-center {
    width: 64px;
    height: 64px;
  }

  .pv-center .nav-logo-text {
    font-size: 14px !important;
  }

  .pv-node-dot {
    width: 32px;
    height: 32px;
  }

  .pv-node span {
    font-size: 11px;
  }

  .platform-visual {
    margin-bottom: 48px;
  }

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

  .stat-ring-container {
    width: 100px;
    height: 100px;
  }

  .stat-ring-value .stat-number {
    font-size: 26px !important;
  }

  .cta-orb-1 {
    width: 250px;
    height: 250px;
  }

  .cta-orb-2 {
    width: 200px;
    height: 200px;
  }

  .cta-orb-3 {
    width: 150px;
    height: 150px;
  }
}

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

  .section-header h2 {
    font-size: 32px;
  }

  .olivia-section h2 {
    font-size: 36px;
  }

  .platform-card {
    padding: 32px;
  }

  .cta-section h2 {
    font-size: 32px;
  }

  .security-header h2 {
    font-size: 32px;
  }

  .dealercrm-section h2 {
    font-size: 36px;
  }

  .dealercrm-modules-header h3,
  .dealercrm-data-header h3,
  .dealercrm-comms-header h3 {
    font-size: 24px;
  }

  .olivia-channels-header h3,
  .olivia-data-header h3 {
    font-size: 24px;
  }

  .dealeridentify-section h2 {
    font-size: 36px;
  }

  .datasafe-section h2 {
    font-size: 36px;
  }

  .datasafe-modules-header h3,
  .datasafe-data-header h3 {
    font-size: 24px;
  }

  .ds-terminal-body {
    padding: 16px;
  }

  .ds-terminal-code {
    font-size: 11px;
  }

  .ds-term-method {
    font-size: 12px;
  }

  .ds-term-url {
    font-size: 12px;
  }

  .di-stats-grid {
    grid-template-columns: 1fr;
  }

  .di-problem-header h3,
  .di-how-header h3,
  .di-impact-header h3 {
    font-size: 24px;
  }

  .di-stat-number {
    font-size: 36px;
  }

  .dc-window-title {
    display: none;
  }

  .dc-window-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .dc-wm-value {
    font-size: 22px;
  }

  .dc-wf-text {
    font-size: 12px;
  }

  .dc-wf-time {
    display: none;
  }

  .olivia-visual {
    max-width: 300px;
  }

  .olivia-orbit {
    width: 190px;
    height: 190px;
  }

  .olivia-orbit.orbit-2 {
    width: 140px;
    height: 140px;
  }

  .olivia-node-badge {
    display: none;
  }

  .di-phone-frame {
    width: 200px;
    height: 400px;
  }

  .di-phone-caller-name {
    font-size: 16px;
  }

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

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

  .pv-hub {
    width: 260px;
    height: 260px;
  }

  .pv-center {
    width: 56px;
    height: 56px;
  }

  .pv-center .nav-logo-text {
    font-size: 12px !important;
  }

  .pv-node-dot {
    width: 28px;
    height: 28px;
  }

  .pv-node span {
    font-size: 10px;
  }

  .pv-center-ring {
    width: 76px;
    height: 76px;
  }

  .stat-ring-container {
    width: 90px;
    height: 90px;
    margin-bottom: 10px;
  }

  .stat-ring-value .stat-number {
    font-size: 22px !important;
  }

  .stat-ring-unit {
    font-size: 11px;
  }
}

/* ============================================
   Product Page Standalone (extra nav clearance)
   ============================================ */
.product-page-section {
  padding-top: 180px;
}

@media (max-width: 834px) {
  .product-page-section {
    padding-top: 140px;
  }
}

/* ============================================
   Product Teasers (Homepage)
   ============================================ */
.product-teaser-text {
  font-size: 21px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto 48px;
}

.product-teaser-cta {
  text-align: center;
  margin-top: 48px;
}

.btn-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 21px;
  font-weight: 400;
  color: #2997ff;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.btn-learn-more:hover {
  color: #6cb6ff;
}

.btn-learn-more .arrow {
  font-size: 28px;
  line-height: 1;
  transition: transform var(--transition-fast);
}

.btn-learn-more:hover .arrow {
  transform: translateX(4px);
}

@media (max-width: 834px) {
  .product-teaser-text {
    font-size: 19px;
  }

  .btn-learn-more {
    font-size: 19px;
  }
}

@media (max-width: 480px) {
  .product-teaser-text {
    font-size: 17px;
  }

  .btn-learn-more {
    font-size: 17px;
  }

  .product-teaser-cta {
    margin-top: 32px;
  }
}
