/* Color system */
:root {
  --navy-900: #0a1020; /* deep navy */
  --navy-800: #0f1830;
  --navy-700: #152242;
  --navy-600: #1b2c54;
  --blue-500: #2b5cff;
  --blue-400: #5b7cff;
  --teal-400: #36c2b4;
  --gray-900: #0e0f12;
  --gray-800: #171922;
  --gray-700: #222533;
  --gray-600: #2e3347;
  --gray-500: #475069;
  --gray-400: #707993;
  --gray-300: #9aa3b2;
  --gray-200: #c7ced9;
  --gray-150: #d8dee6;
  --gray-100: #e9eef5;
  --white: #ffffff;
  --black: #000000;

  --bg: var(--white);
  --text: #0c1222;
  --muted: #f6f8fb;
  --card: var(--white);
  --border: #e7ebf3;
  --shadow: 0 10px 30px rgba(5, 16, 36, 0.08), 0 2px 12px rgba(5, 16, 36, 0.06);
  --radius: 16px;
}

/* Base */
* { box-sizing: border-box; }
html, body { height: 100%; }
html {
  /* Prevent horizontal scroll on all devices */
  overflow-x: hidden;
  width: 100%;
}
body {
  margin: 0;
  font-family: ui-sans-serif, -apple-system, Segoe UI, Roboto, Helvetica, Arial, Apple Color Emoji, Segoe UI Emoji;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  /* Prevent horizontal scroll */
  overflow-x: hidden;
  width: 100%;
  position: relative;
}
a {
  color: inherit;
  text-decoration: none;
  /* Improve touch responsiveness */
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(43, 92, 255, 0.1);
}
img { max-width: 100%; display: block; }

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Layout */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  /* Ensure container never causes horizontal scroll */
  overflow-x: hidden;
}

.section {
  padding: 96px 0;
  /* Prevent horizontal overflow but allow vertical for button shadows */
  overflow-x: clip;
  overflow-y: visible;
  width: 100%;
}
.section.muted { background: var(--muted); }
.section-head { margin-bottom: 32px; }
.section-head h2 { margin: 0 0 8px; font-size: 40px; letter-spacing: -0.02em; }
.section-head p { margin: 0; color: var(--gray-600); font-size: 18px; }
.capabilities .section-head { text-align: center; max-width: 760px; margin: 0 auto 44px; }
.capabilities .section-head h2 { line-height: 1.1; color: var(--white); }

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(231, 235, 243, 0.6);
  width: 100%;
  max-width: 100vw; /* Prevent header from causing horizontal scroll */
  transition: transform 0.3s ease-in-out, background 0.3s ease, border-color 0.3s ease;
  /* Improve stability on mobile zoom */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform;
}
.site-header.header-hidden {
  transform: translateY(-100%);
}
.site-header.header-scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(24px);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
}
.brand {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  /* Improve touch targets on mobile */
  min-height: 44px;
  touch-action: manipulation;
}
.brand-logo { height: 96px; width: auto; display: block; }
.brand-name { font-size: 18px; letter-spacing: 0.2px; color: var(--navy-900); }
.primary-nav { display: none; }
.nav-ctas { display: flex; align-items: center; gap: 12px; }
.nav-ctas .btn {
  padding: 10px 16px;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap; /* Prevent text wrapping */
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--navy-900);
  transition: opacity 0.2s ease;
  /* Improve touch targets */
  min-height: 44px;
  padding: 8px;
  margin: -8px; /* Negative margin to maintain visual spacing */
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(43, 92, 255, 0.1);
}
.nav-phone:hover { opacity: 0.7; }
.phone-icon { width: 16px; height: 16px; flex-shrink: 0; }
.phone-info { display: flex; flex-direction: column; gap: 1px; }
.phone-label { font-size: 9px; font-weight: 700; color: var(--gray-600); text-transform: uppercase; letter-spacing: 0.05em; line-height: 1; }
.phone-number { font-weight: 600; font-size: 14px; white-space: nowrap; line-height: 1; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 12px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.08s ease, box-shadow 0.2s ease, background 0.2s ease;
  /* Ensure touch targets are at least 44x44px on mobile */
  min-height: 44px;
  touch-action: manipulation; /* Improve touch responsiveness */
  -webkit-tap-highlight-color: rgba(43, 92, 255, 0.1); /* Better tap feedback */
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn.solid {
  position: relative;
  overflow: hidden;
  background: var(--navy-900);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(10, 16, 32, 0.15), 0 1px 3px rgba(10, 16, 32, 0.1);
  animation: navyButtonGlow 2s ease-in-out infinite;
  isolation: isolate;
}
.btn.solid::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy-900);
  z-index: -1;
}
.btn.solid::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #2b5cff 0%, #5b7cff 100%);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: -1;
}
.btn.solid:hover::after {
  width: 300px;
  height: 300px;
}

@keyframes navyButtonGlow {
  0%, 100% {
    box-shadow: 0 4px 12px rgba(10, 16, 32, 0.15), 0 1px 3px rgba(10, 16, 32, 0.1);
  }
  50% {
    box-shadow: 0 6px 20px rgba(10, 16, 32, 0.2), 0 2px 6px rgba(43, 92, 255, 0.2);
  }
}
.btn.ghost { background: transparent; color: var(--navy-900); border-color: var(--border); }
.btn.outline { background: var(--white); border-color: var(--navy-900); color: var(--navy-900); }
.btn.wfull { width: 100%; }
.btn.xl { padding: 18px 28px; border-radius: 16px; font-size: 18px; font-weight: 700; }
.btn-pill { display: inline-block; padding: 4px 10px; border-radius: 999px; background: rgba(255, 255, 255, 0.2); font-size: 13px; font-weight: 700; letter-spacing: 0.02em; }

/* Hero */
.hero { padding: 48px 0 80px; background: var(--white); overflow: visible; text-align: center; }
.hero-grid { display: grid; gap: 28px; align-items: center; justify-items: center; grid-template-columns: 1fr; width: 100%; max-width: 100%; margin: 0 auto; }
.hero-badge { display: inline-block; padding: 8px 16px; border-radius: 999px; background: linear-gradient(135deg, #2b5cff 0%, #5b7cff 100%); border: 1px solid rgba(255, 255, 255, 0.3); color: var(--white); font-size: 13px; font-weight: 700; letter-spacing: 0.02em; margin-bottom: 20px; position: relative; overflow: hidden; box-shadow: 0 4px 12px rgba(43, 92, 255, 0.3); }
.hero-badge::before { content: ''; position: absolute; top: -50%; left: -200%; width: 200%; height: 200%; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent); animation: badgeShine 3s linear infinite; transform: rotate(45deg); }
@keyframes badgeShine { 0% { left: -200%; } 100% { left: 200%; } }

/* Reusable Section Badge */
.section-badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2b5cff 0%, #5b7cff 100%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(43, 92, 255, 0.3);
}

.section-badge::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -200%;
  width: 200%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: badgeShine 3s linear infinite;
  transform: rotate(45deg);
}

.section-badge-center {
  text-align: center;
  margin-bottom: 0;
}
.hero-copy h1 { margin: 0 0 24px; font-size: 64px; line-height: 1.1; letter-spacing: -0.02em; font-weight: 800; max-width: 1000px; margin-left: auto; margin-right: auto; }

.hero-subheadline {
  margin: 0 0 32px;
  font-size: 20px;
  line-height: 1.6;
  color: var(--gray-600);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

.hero-benefits { display: flex; align-items: center; justify-content: center; gap: 40px; margin: 0 0 32px; flex-wrap: wrap; }
.benefit { display: flex; align-items: center; gap: 8px; color: var(--navy-900); font-size: 15px; font-weight: 600; }
.benefit-icon { width: 20px; height: 20px; color: var(--blue-500); flex-shrink: 0; }
.hero-form { display: flex; gap: 12px; margin: 0 0 24px; justify-content: center; max-width: 700px; margin-left: auto; margin-right: auto; }
.hero-cta { margin: 0 0 24px; text-align: center; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.input-wrapper { flex: 1; position: relative; border-radius: 16px; padding: 2px; background: linear-gradient(135deg, #1e3a8a 0%, #2b5cff 50%, #5b7cff 100%); overflow: hidden; box-shadow: 0 4px 16px rgba(43, 92, 255, 0.25); }
.input-wrapper::before { content: ''; position: absolute; top: -50%; left: -200%; width: 200%; height: 200%; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent); animation: inputShine 4s linear infinite; transform: rotate(45deg); pointer-events: none; }
@keyframes inputShine { 0% { left: -200%; } 100% { left: 200%; } }
.email-input { width: 100%; padding: 18px 24px; border-radius: 14px; border: none; font-size: 18px; background: var(--white); box-shadow: none; }
.email-input:focus { outline: none; box-shadow: 0 0 0 4px rgba(43, 92, 255, 0.2); }
.email-input::placeholder { color: var(--gray-400); }
.ratings { display: none; }
.mini-card .stars { margin: 0; flex-shrink: 0; }
.mini-card .trust-item { display: flex; align-items: center; justify-content: center; gap: 6px; flex: 1; }
.stars { display: inline-flex; gap: 2px; color: var(--navy-900); }
.star { width: 13px; height: 13px; fill: currentColor; }
.trust-icon { width: 16px; height: 16px; color: var(--navy-900); flex-shrink: 0; }
.score { font-weight: 600; color: var(--navy-900); font-size: 15px; line-height: 1.3; white-space: nowrap; }
.trust-inline { display: none; }
.trust-item { display: flex; align-items: center; gap: 6px; }
.kpi { font-weight: 600; color: var(--navy-900); font-size: 15px; line-height: 1.3; white-space: nowrap; }
.kpi-label { font-size: 13px; color: var(--gray-700); font-weight: 600; line-height: 1.3; }
.divider { width: 1px; height: 24px; background: var(--border); }

/* Center hero copy and supporting elements */
.hero-copy { text-align: center; width: 100%; max-width: 1100px; margin: 0 auto; }
.hero-actions { justify-content: center; width: 100%; }
.mini-cards { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 0 auto 32px; max-width: 1000px; width: 100%; }
.mini-card { display: flex; flex-direction: row; align-items: center; justify-content: center; gap: 6px; padding: 8px 14px; text-align: center; min-height: 32px; background: transparent !important; border: none !important; box-shadow: none !important; border-radius: 12px !important; }

/* Hero gallery - full width below social proof cards */
.hero-visual { display: block; width: 100%; overflow: hidden; }
.hero-gallery {
  position: relative;
  height: 320px;
  display: flex;
  overflow: hidden;
  width: 100%;
  max-width: 100vw; /* Prevent overflow beyond viewport */
  padding: 40px 0;
  mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
}

/* Toast notification overlay layer - sequential animation */
.toast-overlay-layer { position: absolute; inset: 0; pointer-events: none; z-index: 20; display: flex; align-items: center; justify-content: center; }
.toast { position: absolute; background: rgba(255, 255, 255, 0.98); border: 1px solid var(--border); border-radius: 12px; padding: 12px 14px; box-shadow: 0 8px 24px rgba(5, 16, 36, 0.15), 0 2px 8px rgba(5, 16, 36, 0.08); backdrop-filter: blur(8px); max-width: 450px; pointer-events: auto; opacity: 0; transform: scale(0.9) translateY(10px); }
.toast-body { display: flex; flex-direction: column; gap: 8px; width: 100%; }
.ai-badge { display: inline-block; align-self: flex-start; padding: 2px 6px; border-radius: 3px; background: linear-gradient(135deg, #2b5cff, #5b7cff); color: var(--white); font-size: 9px; font-weight: 700; letter-spacing: 0.02em; text-transform: uppercase; }
.toast-main { display: flex; align-items: center; gap: 12px; }
.toast-icon { width: 24px; height: 24px; flex-shrink: 0; color: var(--blue-500); }
.toast-icon svg { width: 100%; height: 100%; }
.toast-content { flex: 1; min-width: 0; text-align: left; }
.toast-title { font-weight: 700; font-size: 14px; color: var(--navy-900); line-height: 1.3; margin-bottom: 2px; white-space: nowrap; }
.toast-meta { font-size: 12px; color: var(--gray-600); line-height: 1.3; }
.toast-btn { padding: 6px 12px; border-radius: 8px; background: var(--navy-900); color: var(--white); font-size: 12px; font-weight: 600; border: none; cursor: pointer; white-space: nowrap; flex-shrink: 0; }

/* Sequential toast animations - 10s total cycle (4 toasts × 2.5s each) */
.toast-1 { animation: toastSequence 10s ease-in-out infinite; animation-delay: 0s; }
.toast-2 { animation: toastSequence 10s ease-in-out infinite; animation-delay: 2.5s; }
.toast-3 { animation: toastSequence 10s ease-in-out infinite; animation-delay: 5s; }
.toast-4 { animation: toastSequence 10s ease-in-out infinite; animation-delay: 7.5s; }

@keyframes toastSequence {
  0% { opacity: 0; transform: scale(0.9) translateY(10px); }
  5% { opacity: 1; transform: scale(1) translateY(0); }
  20% { opacity: 1; transform: scale(1) translateY(0); }
  25% { opacity: 0; transform: scale(0.9) translateY(-10px); }
  100% { opacity: 0; transform: scale(0.9) translateY(-10px); }
}
.gallery-col { position: relative; overflow: visible; flex: 1; }
.gallery-col .track { position: relative; display: inline-flex; gap: 16px; will-change: transform; align-items: center; }
.gallery-col.up .track { animation: scrollRight 40s linear infinite; transform: translateX(0); }
.tile { width: 180px; height: 240px; border-radius: 12px; background: linear-gradient(180deg, #eef3ff, #ffffff); border: 1px solid var(--border); display: grid; place-items: center; font-weight: 700; color: var(--gray-500); box-shadow: var(--shadow); flex-shrink: 0; font-size: 13px; overflow: hidden; }
.tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tile:nth-child(14n+1), .tile:nth-child(14n+8) { transform: translateY(-16px); }
.tile:nth-child(14n+2), .tile:nth-child(14n+9) { transform: translateY(16px); }
.tile:nth-child(14n+3), .tile:nth-child(14n+10) { transform: translateY(-16px); }
.tile:nth-child(14n+4), .tile:nth-child(14n+11) { transform: translateY(16px); }
.tile:nth-child(14n+5), .tile:nth-child(14n+12) { transform: translateY(-16px); }
.tile:nth-child(14n+6), .tile:nth-child(14n+13) { transform: translateY(16px); }
.tile:nth-child(14n+7), .tile:nth-child(14n+14) { transform: translateY(-16px); }

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

@media (max-width: 768px) {
  /* Mobile Navigation Fixes */
  .nav {
    height: 60px;
    padding: 0 16px;
    gap: 8px; /* Add gap for better spacing */
  }
  .brand-logo {
    height: 63px !important; /* Optimized logo size on mobile */
  }
  .nav-ctas {
    gap: 8px; /* Reduce gap between nav items */
  }
  .nav-ctas .btn {
    padding: 8px 12px;
    font-size: 13px;
  }
  /* Hide phone label "Call us" text on mobile to save space */
  .phone-label {
    display: none;
  }
  .phone-number {
    font-size: 13px; /* Slightly smaller */
  }

  /* Hero Section */
  .hero { padding: 32px 0; }
  .container { padding: 0 16px; }
  .hero-copy h1 { font-size: 44px; margin-bottom: 20px; }
  .hero-subheadline { font-size: 18px; margin-bottom: 28px; }
  .hero-badge { font-size: 12px; padding: 6px 14px; margin-bottom: 16px; }
  .hero-benefits { gap: 24px; margin-bottom: 24px; font-size: 14px; }
  .benefit-icon { width: 18px; height: 18px; }
  .hero-form { flex-direction: column; gap: 12px; margin-bottom: 20px; max-width: 400px; }
  .email-input { padding: 20px 20px; font-size: 16px; }
  .btn.xl { padding: 20px 24px; font-size: 16px; }
  .mini-cards { max-width: 400px; gap: 8px; }
  .mini-card { padding: 10px 12px; gap: 8px; }
  .mini-card .score, .mini-card .kpi { font-size: 11px; }
  .star { width: 12px; height: 12px; }
  .trust-icon { width: 14px; height: 14px; }
}

@media (max-width: 480px) {
  /* Extra small mobile adjustments */
  .brand-logo {
    height: 53px !important; /* Slightly smaller for very small screens */
  }
  .nav-ctas .btn {
    padding: 8px 10px;
    font-size: 12px;
  }
  .phone-icon {
    width: 14px;
    height: 14px;
  }
  .phone-number {
    font-size: 12px;
  }

  /* Stack hero CTAs vertically on very small screens */
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  .hero-cta .btn {
    width: 100%;
  }

  .hero-copy h1 { font-size: 38px; line-height: 1.15; }
  .hero-subheadline { font-size: 17px; margin-bottom: 24px; }
  .hero-benefits { flex-direction: column; gap: 16px; align-items: flex-start; }
  .hero-form { max-width: 100%; }
  .mini-cards { max-width: 100%; }
  .container { padding: 0 12px; }
}

@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: block; }
}

/* Hero Video */
.hero-video-container {
  max-width: 1200px;
  margin: 32px auto 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--border);
}

@media (max-width: 768px) {
  .hero-video-container { margin: 24px auto 0; }
}

/* Hero Testimonials */
.hero-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 48px auto 0;
  max-width: 1200px;
}

.hero-testimonial-card {
  position: relative;
  border-radius: 16px;
  min-height: 380px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.hero-testimonial-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.85) 100%
  );
  z-index: 1;
}

.hero-testimonial-content {
  position: relative;
  z-index: 2;
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: left;
}

.hero-testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.hero-testimonial-stars .star {
  width: 16px;
  height: 16px;
  fill: #FDB241;
}

.hero-testimonial-text {
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--white);
  font-weight: 500;
}

.hero-testimonial-author {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
}

.hero-testimonial-author strong {
  font-weight: 600;
  color: var(--white);
}

.hero-testimonial-author span {
  color: rgba(255, 255, 255, 0.75);
}

.hero-testimonial-author span::before {
  content: "•";
  margin-right: 6px;
}

@media (max-width: 900px) {
  .hero-testimonials {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 32px auto 0;
  }

  .hero-testimonial-card {
    min-height: 320px;
  }

  .hero-testimonial-content {
    padding: 24px;
  }
}

/* Industry-Specific Section */
.industry-specific-section {
  padding: 96px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
}

.industry-specific-title {
  text-align: center;
  font-size: 52px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--navy-900);
  margin: 0 0 20px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.industry-specific-subtitle {
  text-align: center;
  font-size: 18px;
  line-height: 1.6;
  color: var(--gray-700);
  margin: 0 0 56px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
}

.industry-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto 48px;
}

.industry-specific-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.industry-specific-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.industry-specific-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, #2b5cff 0%, #5b7cff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.industry-specific-icon svg {
  width: 28px;
  height: 28px;
  color: var(--white);
}

.industry-specific-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.3;
}

.industry-types {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 12px;
  margin-top: auto;
  padding-top: 16px;
}

.industry-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: linear-gradient(135deg, rgba(43, 92, 255, 0.08) 0%, rgba(91, 124, 255, 0.12) 100%);
  border: 1px solid rgba(43, 92, 255, 0.2);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: #2b5cff;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.industry-tag:hover {
  background: linear-gradient(135deg, rgba(43, 92, 255, 0.15) 0%, rgba(91, 124, 255, 0.18) 100%);
  border-color: rgba(43, 92, 255, 0.35);
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(43, 92, 255, 0.15);
}

.industry-benefits {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--gray-700);
}

.industry-quote {
  position: relative;
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(43, 92, 255, 0.06) 0%, rgba(91, 124, 255, 0.08) 100%);
  border-radius: 12px;
  margin-top: auto;
  box-shadow:
    0 2px 8px rgba(43, 92, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(43, 92, 255, 0.15);
  overflow: hidden;
}

.industry-quote::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(43, 92, 255, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.quote-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  color: rgba(43, 92, 255, 0.15);
  z-index: 0;
}

.industry-quote p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--navy-900);
  font-weight: 600;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.industry-specific-cta {
  text-align: center;
  margin-top: 48px;
  padding-bottom: 20px;
}

@media (max-width: 1024px) {
  .industry-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .industry-specific-section {
    padding: 60px 0;
  }

  .industry-specific-title {
    font-size: 32px;
    margin-bottom: 16px;
  }

  .industry-specific-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .industry-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .industry-specific-card {
    padding: 28px;
  }
}

/* Setup Steps Section */
.setup-steps-section {
  padding: 96px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
}

.setup-steps-title {
  text-align: center;
  font-size: 52px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--navy-900);
  margin: 0 0 20px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.setup-steps-subtitle {
  text-align: center;
  font-size: 18px;
  line-height: 1.6;
  color: var(--gray-700);
  margin: 0 0 56px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
}

.setup-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto 80px;
}

.setup-step-card {
  background: linear-gradient(135deg, #ffffff 0%, #f0f6ff 100%);
  border: 2px solid #d6e4ff;
  border-radius: 20px;
  padding: 40px 32px;
  box-shadow: 0 4px 16px rgba(43, 92, 255, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  text-align: center;
}

.setup-step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(43, 92, 255, 0.15);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2b5cff 0%, #5b7cff 100%);
  color: var(--white);
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(43, 92, 255, 0.3);
}

.setup-step-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(43, 92, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.setup-step-icon svg {
  width: 32px;
  height: 32px;
  color: #2b5cff;
}

.setup-step-card h3 {
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.3;
}

.setup-step-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-700);
}

/* Integrations Section */
.integrations-section {
  max-width: 1200px;
  margin: -48px auto 56px;
  text-align: center;
  padding: 40px 32px;
  background: linear-gradient(135deg, #ffffff 0%, #f0f6ff 100%);
  border: 2px solid #d6e4ff;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(43, 92, 255, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.integrations-section:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(43, 92, 255, 0.15);
}

.integrations-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(43, 92, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.integrations-icon svg {
  width: 32px;
  height: 32px;
  color: #2b5cff;
}

.integrations-section h3 {
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.3;
}

.integrations-section p {
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-700);
}

.integrations-section p:last-child {
  margin-bottom: 0;
}

.setup-steps-cta {
  text-align: center;
  margin-top: 56px;
  padding-bottom: 20px;
}

@media (max-width: 1024px) {
  .setup-steps-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 64px;
  }
}

@media (max-width: 768px) {
  .setup-steps-section {
    padding: 60px 0;
  }

  .setup-steps-title {
    font-size: 32px;
    margin-bottom: 16px;
  }

  .setup-steps-subtitle {
    font-size: 16px;
    margin-bottom: 48px;
  }

  .setup-steps-grid {
    gap: 40px;
    margin-bottom: 56px;
  }

  .setup-step-card {
    padding: 36px 28px;
  }

  .integrations-section {
    padding: 36px 24px;
    margin-bottom: 48px;
  }

  .integrations-section h3 {
    font-size: 20px;
  }

  .integrations-section p {
    font-size: 15px;
  }
}

/* Capabilities Section */
.capabilities-section {
  padding: 96px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
}

.capabilities-title {
  text-align: center;
  font-size: 52px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--navy-900);
  margin: 0 0 20px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.capabilities-subtitle {
  text-align: center;
  font-size: 18px;
  line-height: 1.6;
  color: var(--gray-700);
  margin: 0 0 56px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto 48px;
}

.capability-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.capability-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.capability-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(43, 92, 255, 0.1) 0%, rgba(91, 124, 255, 0.08) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.capability-icon svg {
  width: 24px;
  height: 24px;
  color: #2b5cff;
}

.capability-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.3;
}

.capability-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--gray-700);
}

.capabilities-cta {
  text-align: center;
  margin-top: 48px;
  padding-bottom: 20px;
}

@media (max-width: 1024px) {
  .capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .capabilities-section {
    padding: 60px 0;
  }

  .capabilities-title {
    font-size: 32px;
    margin-bottom: 16px;
  }

  .capabilities-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }

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

  .capability-card {
    padding: 28px;
  }
}

/* FAQ Full Section */
.faq-full-section {
  padding: 96px 0;
  background: var(--white);
}

.faq-full-title {
  text-align: center;
  font-size: 52px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--navy-900);
  margin: 0 0 56px;
}

.faq-full-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.faq-full-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.faq-full-item:hover {
  box-shadow: 0 4px 12px rgba(5, 16, 36, 0.08);
}

.faq-full-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy-900);
  transition: background 0.2s ease;
}

.faq-full-question:hover {
  background: var(--muted);
}

.faq-full-question[aria-expanded="true"] {
  background: var(--muted);
}

.faq-full-icon {
  width: 24px;
  height: 24px;
  color: var(--gray-600);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-full-question[aria-expanded="true"] .faq-full-icon {
  transform: rotate(180deg);
}

.faq-full-answer {
  padding: 0 28px;
  color: var(--gray-700);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-full-answer:not([hidden]) {
  max-height: 600px;
  padding: 20px 28px 24px 28px;
}

.faq-full-answer p {
  margin: 0;
  font-size: 16px;
}

@media (max-width: 768px) {
  .faq-full-section {
    padding: 60px 0;
  }

  .faq-full-title {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .faq-full-question {
    font-size: 16px;
    padding: 20px 24px;
  }

  .faq-full-answer {
    padding: 0 24px;
  }

  .faq-full-answer:not([hidden]) {
    padding: 16px 24px 20px 24px;
  }
}

/* Benefits Section */
.benefits-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
}

.benefits-title {
  text-align: center;
  font-size: 52px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--navy-900);
  margin: 0 0 56px;
  margin-top: 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto 48px;
}

.benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.benefit-icon-large {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, #2b5cff 0%, #5b7cff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.benefit-icon-large svg {
  width: 28px;
  height: 28px;
  color: var(--white);
}

.benefit-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.3;
}

.benefit-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-700);
}

.benefits-cta {
  text-align: center;
  margin-top: 48px;
  padding-bottom: 20px;
}

@media (max-width: 900px) {
  .benefits-section {
    padding: 60px 0;
  }

  .benefits-title {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .benefit-card {
    padding: 32px;
  }
}

/* XBert in Action Section */
.xbert-action-section {
  padding: 120px 0;
  background: #f8f9fb;
}

.xbert-action-title {
  text-align: center;
  font-size: 52px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--navy-900);
  margin: 0 0 56px;
  margin-top: 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.xbert-action-subtitle {
  text-align: center;
  font-size: 18px;
  line-height: 1.6;
  color: var(--gray-700);
  margin: 0 0 56px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.industry-samples-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto 48px;
}

.industry-sample-card {
  background: linear-gradient(135deg, #ffffff 0%, #f0f6ff 100%);
  border: 2px solid #d6e4ff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 16px rgba(43, 92, 255, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
}

.industry-sample-card::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(43, 92, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.industry-sample-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(43, 92, 255, 0.15);
}

.industry-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.industry-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.industry-icon svg {
  width: 28px;
  height: 28px;
  color: #2b5cff;
}

.industry-header h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy-900);
}

.industry-description {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--gray-700);
  position: relative;
  z-index: 1;
}

.industry-audio-player {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--white);
  border: 1px solid #e0e7ff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(43, 92, 255, 0.06);
  position: relative;
  z-index: 1;
}

.industry-audio-wave {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 32px;
}

.industry-audio-wave .wave-bar {
  width: 3px;
  background: linear-gradient(180deg, #2b5cff, #5b7cff);
  border-radius: 2px;
  animation: waveAnimation 1.2s ease-in-out infinite;
}

.industry-audio-wave .wave-bar:nth-child(1) { height: 20%; animation-delay: 0s; }
.industry-audio-wave .wave-bar:nth-child(2) { height: 40%; animation-delay: 0.1s; }
.industry-audio-wave .wave-bar:nth-child(3) { height: 60%; animation-delay: 0.2s; }
.industry-audio-wave .wave-bar:nth-child(4) { height: 80%; animation-delay: 0.3s; }
.industry-audio-wave .wave-bar:nth-child(5) { height: 100%; animation-delay: 0.4s; }
.industry-audio-wave .wave-bar:nth-child(6) { height: 80%; animation-delay: 0.5s; }
.industry-audio-wave .wave-bar:nth-child(7) { height: 60%; animation-delay: 0.6s; }
.industry-audio-wave .wave-bar:nth-child(8) { height: 40%; animation-delay: 0.7s; }
.industry-audio-wave .wave-bar:nth-child(9) { height: 60%; animation-delay: 0.8s; }
.industry-audio-wave .wave-bar:nth-child(10) { height: 30%; animation-delay: 0.9s; }

.industry-play-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2b5cff 0%, #5b7cff 100%);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(43, 92, 255, 0.25);
}

.industry-play-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(43, 92, 255, 0.4);
}

.industry-play-btn:active {
  transform: scale(0.98);
}

.industry-play-btn svg {
  width: 20px;
  height: 20px;
  color: var(--white);
}

.industry-audio-bar {
  flex: 1;
  height: 4px;
  background: #e0e7ff;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.industry-progress {
  height: 100%;
  background: linear-gradient(135deg, #2b5cff 0%, #5b7cff 100%);
  width: 0%;
  transition: width 0.1s linear;
}

.industry-time {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  min-width: 40px;
  text-align: right;
}

.xbert-action-cta {
  text-align: center;
  margin-top: 48px;
  padding-bottom: 20px;
}

@media (max-width: 900px) {
  .xbert-action-section {
    padding: 80px 0;
  }

  .xbert-action-title {
    font-size: 32px;
    margin-bottom: 12px;
  }

  .xbert-action-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .industry-samples-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .industry-samples-grid {
    grid-template-columns: 1fr;
  }

  .industry-sample-card {
    padding: 24px;
  }
}

/* Cards */
.card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); padding: 20px; }
.card-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.feature .feature-icon { width: 40px; height: 40px; color: var(--navy-900); }
.feature h3 { margin: 12px 0 8px; }
.feature-list { margin: 0; padding-left: 18px; color: var(--gray-700); }

@media (min-width: 900px) {
  .card-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Compare card */
.compare { margin-top: 24px; }
.compare-card h4 { margin: 0 0 10px; }
.checklist { margin: 0; padding-left: 18px; color: var(--gray-700); }
.checklist li { margin: 8px 0; }

/* Capabilities (Tabs) */
.capabilities { background: var(--navy-900); padding-top: 128px; padding-bottom: 128px; }
.tabs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 48px auto 56px; max-width: 980px; }
.tab { appearance: none; border: 1px solid var(--border); background: var(--white); color: var(--navy-900); padding: 16px 18px; border-radius: 16px; font-weight: 700; text-align: left; cursor: pointer; transition: box-shadow .2s ease, transform .05s ease, background .2s ease; letter-spacing: 0.2px; display: grid; grid-template-columns: 22px 1fr; align-items: center; gap: 10px; }
.tab .tab-icon svg { width: 20px; height: 20px; }
.tab .tab-label { white-space: nowrap; }
.tab:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.tab.active { border-color: #d6e4ff; box-shadow: var(--shadow); background: linear-gradient(180deg, #ffffff 0, #eef4ff 100%); }
.tab-panels { margin-top: 36px; }
.panel-grid { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: start; }
.panel-copy { max-width: 360px; }
.panel-copy h3 { margin: 0 0 10px; font-size: 24px; }
.capabilities .panel-copy h3 { color: var(--white); }
.panel-copy p { margin: 0 0 14px; color: var(--gray-150); font-size: 16px; }
.panel-copy .feature-list { padding-left: 0; list-style: none; display: grid; gap: 8px; }
.panel-copy .feature-list li { position: relative; padding-left: 22px; color: var(--gray-100); }
.panel-copy .feature-list li::before { content: ""; position: absolute; left: 0; top: 8px; width: 10px; height: 10px; border-radius: 3px; background: var(--blue-400); box-shadow: 0 0 0 2px rgba(255,255,255,0.08); }
.convo { display: grid; gap: 10px; }
.convo-head { display: flex; align-items: center; gap: 8px; font-weight: 700; color: var(--gray-150); border-bottom: 1px dashed rgba(255,255,255,0.14); padding-bottom: 8px; margin-bottom: 4px; }
.convo-head .dot { width: 8px; height: 8px; border-radius: 50%; background: #69f; box-shadow: 0 0 0 3px rgba(255,255,255,0.08); }
.msg { border-radius: 14px; padding: 12px 14px; font-size: 14px; border: 1px solid rgba(255,255,255,0.14); background: rgba(255,255,255,0.06); color: var(--white); }
.msg.ai { background: rgba(43, 92, 255, 0.12); border-color: rgba(43,92,255,0.35); }
.msg.success { background: rgba(54, 194, 180, 0.18); border-color: rgba(54,194,180,0.45); color: #b8fff2; font-weight: 700; }

@media (min-width: 980px) {
  .tabs { grid-template-columns: repeat(4, 1fr); margin: 56px auto 80px; }
  .panel-grid { grid-template-columns: 1.2fr 1fr; gap: 34px; }
}

/* Keep conversation mockup in light style even on dark section */
.capabilities .convo { color: var(--text); }
.capabilities .convo .convo-head { color: var(--gray-600); border-bottom-color: var(--border); }
.capabilities .convo .convo-head .dot { background: #69f; box-shadow: 0 0 0 3px #eef4ff; }
.capabilities .convo .msg { background: var(--white); border-color: var(--border); color: var(--text); }
.capabilities .convo .msg.ai { background: #f1f5ff; border-color: #d6e4ff; color: inherit; }
.capabilities .convo .msg.success { background: #edf9f3; border-color: #c5f0df; color: #0f6b4d; }

/* Audio card mockup */
.audio-card { background: var(--white); border-color: var(--border); display: grid; gap: 16px; padding: 24px; min-height: 280px; }
.audio-head { font-weight: 700; color: var(--navy-900); }
.audio-controls { display: grid; grid-template-columns: 40px 1fr auto; align-items: center; gap: 12px; }
.audio-play { width: 40px; height: 40px; border-radius: 12px; background: #e9f2ff; color: #2b5cff; border: 1px solid #d6e4ff; display: grid; place-items: center; cursor: pointer; }
.audio-play .icon { width: 18px; height: 18px; }
.audio-progress { -webkit-appearance: none; appearance: none; height: 8px; border-radius: 999px; background: #e5e7eb; outline: none; }
.audio-progress::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 16px; height: 16px; border-radius: 999px; background: #2b5cff; box-shadow: 0 0 0 3px #e9f2ff; cursor: pointer; }
.audio-progress::-moz-range-thumb { width: 16px; height: 16px; border: none; border-radius: 999px; background: #2b5cff; box-shadow: 0 0 0 3px #e9f2ff; cursor: pointer; }
.audio-timer { font-weight: 700; color: var(--navy-900); }
.audio-transcript { font-size: 18px; line-height: 1.5; color: #125; min-height: 120px; }

/* Simple Pricing Section */
.simple-pricing { background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%); padding: 96px 0; }
.simple-pricing .section-head { text-align: center; margin-bottom: 48px; }
.simple-pricing .section-head h2 { font-size: 52px; line-height: 1.1; letter-spacing: -0.02em; }
.simple-pricing .section-head p { font-size: 20px; color: var(--gray-600); }
.pricing-cards-grid { display: grid; grid-template-columns: 1fr; gap: 32px; max-width: 1100px; margin: 0 auto; }

/* Pricing Main Card */
.pricing-main-card { padding: 40px; position: relative; border: 2px solid #d6e4ff; background: linear-gradient(180deg, #ffffff 0%, #fafcff 100%); box-shadow: 0 20px 60px rgba(43, 92, 255, 0.15); }
.pricing-popular-badge { position: absolute; top: -16px; left: 50%; transform: translateX(-50%); padding: 8px 20px; border-radius: 999px; background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%); color: var(--white); font-size: 14px; font-weight: 800; letter-spacing: 0.02em; box-shadow: 0 4px 16px rgba(255, 107, 53, 0.4); white-space: nowrap; }
.pricing-header { text-align: center; padding-bottom: 32px; border-bottom: 1px solid var(--border); margin-bottom: 32px; }
.pricing-plan-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 999px; background: linear-gradient(135deg, #2b5cff 0%, #5b7cff 100%); color: var(--white); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 20px; box-shadow: 0 4px 12px rgba(43, 92, 255, 0.3); position: relative; overflow: hidden; animation: badgePulse 3s ease-in-out infinite; }
.pricing-plan-badge::before { content: ''; position: absolute; top: -50%; left: -200%; width: 200%; height: 200%; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent); animation: badgeShine 3s linear infinite; transform: rotate(45deg); }
.pricing-plan-badge svg { width: 18px; height: 18px; position: relative; z-index: 1; }
.pricing-plan-badge span { position: relative; z-index: 1; }

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 4px 12px rgba(43, 92, 255, 0.3); }
  50% { box-shadow: 0 4px 20px rgba(43, 92, 255, 0.6), 0 0 30px rgba(43, 92, 255, 0.3); }
}
.pricing-header h3 { margin: 0 0 16px; font-size: 24px; color: var(--navy-900); }
.pricing-amount { display: flex; align-items: flex-start; justify-content: center; gap: 2px; margin-bottom: 8px; }
.price-symbol { font-size: 32px; font-weight: 800; color: var(--navy-900); margin-top: 8px; }
.price-value { font-size: 72px; font-weight: 900; letter-spacing: -0.03em; color: var(--navy-900); line-height: 1; }
.price-period { font-size: 20px; color: var(--gray-600); margin-top: 24px; }
.pricing-subtext { margin: 0 0 16px; color: var(--gray-600); font-size: 15px; }
.pricing-value-badges { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.value-badge { display: inline-flex; align-items: center; padding: 6px 12px; border-radius: 999px; background: rgba(43, 92, 255, 0.1); color: #2b5cff; font-size: 13px; font-weight: 700; border: 1px solid rgba(43, 92, 255, 0.2); }
.pricing-features { list-style: none; margin: 0 0 32px; padding: 0; display: grid; gap: 16px; }
.pricing-features li { display: flex; align-items: center; gap: 12px; font-size: 16px; color: var(--text); }
.pricing-features svg { width: 20px; height: 20px; color: #2b5cff; flex-shrink: 0; }

/* Animated Get Started Button in Pricing Card */
.pricing-main-card .btn.solid { position: relative; overflow: hidden; background: linear-gradient(135deg, #2b5cff 0%, #5b7cff 100%); animation: buttonGlow 2s ease-in-out infinite; padding: 20px 28px; font-size: 18px; isolation: isolate; }
.pricing-main-card .btn.solid::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(135deg, #2b5cff 0%, #5b7cff 100%); z-index: -1; }
.pricing-main-card .btn.solid::after { content: ''; position: absolute; top: 50%; left: 50%; width: 0; height: 0; border-radius: 50%; background: rgba(255, 255, 255, 0.3); transform: translate(-50%, -50%); transition: width 0.6s ease, height 0.6s ease; z-index: -1; }
.pricing-main-card .btn.solid:hover::after { width: 300px; height: 300px; }

@keyframes buttonGlow {
  0%, 100% { box-shadow: 0 10px 30px rgba(43, 92, 255, 0.2), 0 2px 12px rgba(43, 92, 255, 0.15); }
  50% { box-shadow: 0 10px 40px rgba(43, 92, 255, 0.5), 0 4px 20px rgba(43, 92, 255, 0.4); }
}

/* Promo Card */
.promo-card { background: linear-gradient(135deg, #2b5cff 0%, #5b7cff 100%); border-radius: var(--radius); padding: 40px; color: var(--white); position: relative; overflow: hidden; box-shadow: 0 20px 60px rgba(43, 92, 255, 0.3); }
.promo-card::before { content: ''; position: absolute; top: -50%; right: -30%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%); pointer-events: none; }
.promo-badge { display: inline-block; padding: 6px 12px; border-radius: 999px; background: var(--black); color: var(--white); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 16px; }
.promo-card h4 { margin: 0 0 12px; font-size: 28px; color: var(--white); font-weight: 800; }
.promo-card p { margin: 0 0 24px; color: rgba(255, 255, 255, 0.95); font-size: 16px; line-height: 1.5; }
.promo-value { display: grid; gap: 12px; margin-bottom: 24px; }
.promo-value-item { display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; background: rgba(255, 255, 255, 0.1); border-radius: 12px; }
.promo-value-item.highlight { background: rgba(255, 255, 255, 0.2); border: 2px solid rgba(255, 255, 255, 0.4); }
.promo-label { font-size: 14px; color: rgba(255, 255, 255, 0.9); }
.promo-strike { font-size: 20px; text-decoration: line-through; color: rgba(255, 255, 255, 0.7); font-weight: 600; }
.promo-free { font-size: 32px; font-weight: 900; color: var(--white); }
.promo-included { margin-bottom: 24px; }
.promo-included-title { font-weight: 700; margin-bottom: 12px; font-size: 16px; }
.promo-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.promo-list li { position: relative; padding-left: 24px; color: rgba(255, 255, 255, 0.95); font-size: 15px; line-height: 1.5; }
.promo-list li::before { content: "✓"; position: absolute; left: 0; font-weight: 900; color: var(--white); }
.promo-urgency { display: flex; align-items: center; gap: 10px; padding: 16px; background: rgba(0, 0, 0, 0.2); border-radius: 12px; font-size: 14px; }
.promo-urgency svg { width: 20px; height: 20px; flex-shrink: 0; }
.promo-urgency strong { font-weight: 800; }

@media (min-width: 900px) {
  .pricing-cards-grid { grid-template-columns: 1.2fr 1fr; align-items: stretch; }
}

@media (max-width: 899px) {
  .simple-pricing .section-head h2 { font-size: 36px; }
  .simple-pricing .section-head p { font-size: 18px; }
  .pricing-main-card { padding: 32px 24px; }
  .pricing-popular-badge { font-size: 12px; padding: 6px 16px; }
  .promo-card { padding: 32px 24px; }
  .price-value { font-size: 56px; }
}

/* Trust Badges Section */
.pricing-trust-section { max-width: 1100px; margin: 64px auto 0; text-align: center; }
.trust-intro { font-size: 18px; font-weight: 600; color: var(--navy-900); margin: 0 0 32px; }
.trust-badges-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.trust-badge-item { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 32px 24px; box-shadow: 0 4px 12px rgba(5, 16, 36, 0.06); display: flex; flex-direction: column; align-items: center; gap: 16px; min-height: 140px; justify-content: center; }
.badge-logo { font-size: 16px; font-weight: 800; color: var(--navy-900); }
.badge-logo-img {
  height: 40px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}
.badge-rating { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.stars-small { color: #fbbf24; font-size: 16px; letter-spacing: 2px; }
.rating-score { font-size: 14px; font-weight: 700; color: var(--gray-700); }

/* Testimonials Grid */
.testimonials-grid { max-width: 1100px; margin: 48px auto 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.testimonial-card { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 32px; box-shadow: 0 4px 12px rgba(5, 16, 36, 0.06); display: flex; flex-direction: column; gap: 16px; }
.stars-testimonial { color: #fbbf24; font-size: 18px; letter-spacing: 3px; }
.testimonial-text { font-size: 16px; line-height: 1.6; color: var(--navy-900); margin: 0; font-weight: 500; flex: 1; }
.testimonial-author-small { display: flex; flex-direction: column; gap: 4px; padding-top: 16px; border-top: 1px solid var(--border); }
.testimonial-author-small strong { font-size: 15px; font-weight: 700; color: var(--navy-900); }
.testimonial-author-small span { font-size: 13px; color: var(--gray-600); }

@media (max-width: 768px) {
  .trust-badges-row { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .trust-badge-item { padding: 20px 16px; min-height: 100px; }
  .badge-logo-img {
    height: 32px !important; /* Constrained height on mobile */
    max-width: 120px !important; /* Constrained width on mobile */
    width: auto !important; /* Maintain aspect ratio */
    object-fit: contain !important; /* Prevent stretching */
  }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card { padding: 24px; }
}

/* FAQ Section */
.faq-section { max-width: 900px; margin: 64px auto 0; }
.faq-title { text-align: center; font-size: 32px; font-weight: 800; color: var(--navy-900); margin: 0 0 40px; }
.faq-list { display: grid; gap: 16px; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: box-shadow 0.2s ease; }
.faq-item:hover { box-shadow: 0 4px 12px rgba(5, 16, 36, 0.08); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 24px; background: transparent; border: none; text-align: left; cursor: pointer; font-size: 18px; font-weight: 700; color: var(--navy-900); transition: background 0.2s ease; }
.faq-question:hover { background: var(--muted); }
.faq-question[aria-expanded="true"] { background: var(--muted); }
.faq-icon { width: 24px; height: 24px; color: var(--gray-600); flex-shrink: 0; transition: transform 0.3s ease; }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }
.faq-answer { padding: 0 24px; color: var(--gray-700); line-height: 1.6; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq-answer:not([hidden]) { max-height: 600px; padding: 0 24px 20px 24px; }
.faq-answer p { margin: 0; font-size: 16px; padding-top: 4px; }

@media (max-width: 768px) {
  .faq-title { font-size: 28px; }
  .faq-question { font-size: 16px; padding: 16px 20px; }
  .faq-answer { padding: 0 20px; }
  .faq-answer:not([hidden]) { padding: 0 20px 16px 20px; }
}

/* Steps */
.steps-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.step { position: relative; padding-top: 18px; }
.step-num { position: absolute; top: -16px; left: 16px; width: 32px; height: 32px; border-radius: 999px; background: var(--navy-900); color: var(--white); display: grid; place-items: center; font-weight: 800; box-shadow: var(--shadow); }

@media (min-width: 980px) {
  .steps-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Trust */
.trust-grid { display: grid; grid-template-columns: 1fr; gap: 16px; align-items: stretch; }
.trust-card .kpi-xl { font-size: 40px; font-weight: 800; margin: 6px 0 8px; color: var(--navy-900); }
.logos { display: grid; gap: 12px; }
.logo-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.logo-pill { background: var(--white); border: 1px solid var(--border); border-radius: 999px; padding: 10px 12px; text-align: center; box-shadow: var(--shadow); }

@media (min-width: 980px) {
  .trust-grid { grid-template-columns: 1fr 1.3fr; }
}

/* Badges */
.badge-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.badge { display: grid; place-items: center; height: 120px; font-weight: 700; color: var(--navy-900); background: linear-gradient(180deg, #ffffff 0, #f4f7ff 100%); }

@media (min-width: 900px) {
  .badge-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Pricing */
.pricing .price-grid { display: grid; grid-template-columns: 1fr; gap: 16px; align-items: stretch; }
.price-row { display: flex; align-items: baseline; gap: 8px; margin: 6px 0 6px; }
.price-now { font-size: 40px; font-weight: 900; letter-spacing: -0.02em; }
.price-unit { color: var(--gray-600); }
.price-was { color: var(--gray-400); text-decoration: line-through; margin-bottom: 8px; }
.countdown { display: grid; gap: 6px; text-align: center; margin-bottom: 18px; }
.countdown-label { color: var(--gray-600); font-weight: 600; }
.countdown-time { font-size: 32px; font-weight: 900; letter-spacing: 0.08em; }
.countdown-sub { color: var(--gray-600); font-size: 13px; }

@media (min-width: 900px) {
  .pricing .price-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ROI */
.roi-grid { display: grid; grid-template-columns: 1fr; gap: 18px; align-items: start; }
.roi-card { display: grid; grid-template-columns: 1fr; gap: 12px; }
.roi-form { display: grid; gap: 12px; }
.field { display: grid; gap: 6px; }
.field.two { grid-template-columns: 1fr; gap: 10px; }
.field label { font-weight: 600; color: var(--gray-700); }
.field input { padding: 10px 12px; border-radius: 12px; border: 1px solid var(--border); font-size: 14px; }
.roi-results { display: grid; grid-template-columns: 1fr; gap: 10px; }
.result { display: flex; align-items: center; justify-content: space-between; padding: 12px 14px; border-radius: 12px; background: var(--white); border: 1px solid var(--border); }
.result.highlight { background: #f0f6ff; border-color: #d6e4ff; }
.result-label { color: var(--gray-600); font-weight: 600; }
.result-value { font-weight: 800; color: var(--navy-900); }

@media (min-width: 980px) {
  .roi-grid { grid-template-columns: 1fr 1fr; }
  .field.two { grid-template-columns: 1fr 1fr; }
  .roi-card { grid-template-columns: 1fr 1fr; }
}

/* Final CTA Hero */
.final-cta-hero {
  padding: 120px 0;
  background: linear-gradient(135deg, #0a1020 0%, #152242 50%, #1b2c54 100%);
  position: relative;
  overflow: hidden;
}

.final-cta-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -25%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(43, 92, 255, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(91, 124, 255, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.final-cta-title {
  text-align: center;
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0 0 20px;
}

.final-cta-subtitle {
  text-align: center;
  font-size: 20px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 64px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
}

.final-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto 56px;
}

.final-cta-features,
.final-cta-trust {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px;
}

.final-cta-features h3,
.final-cta-trust h3 {
  margin: 0 0 28px;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
}

.final-cta-list,
.final-cta-trust-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.final-cta-list li,
.final-cta-trust-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.5;
}

.final-cta-list svg {
  width: 22px;
  height: 22px;
  color: #5b7cff;
  flex-shrink: 0;
  margin-top: 2px;
}

.final-cta-trust-list svg {
  width: 22px;
  height: 22px;
  color: #fbbf24;
  flex-shrink: 0;
  margin-top: 2px;
}

.final-cta-action {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.final-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.final-cta-button.btn.solid {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #2b5cff 0%, #5b7cff 100%) !important;
  color: var(--white) !important;
  box-shadow: 0 12px 40px rgba(43, 92, 255, 0.4), 0 4px 16px rgba(43, 92, 255, 0.3);
  padding: 24px 48px;
  font-size: 20px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 2px solid transparent;
  isolation: isolate;
  animation: finalCtaGlow 2s ease-in-out infinite;
}

.final-cta-button.btn.solid::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #2b5cff 0%, #5b7cff 100%) !important;
  z-index: -1;
}

.final-cta-button.btn.solid::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: -1;
}

.final-cta-button.btn.solid:hover::after {
  width: 300px;
  height: 300px;
}

.final-cta-button.btn.solid:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 50px rgba(43, 92, 255, 0.6), 0 6px 20px rgba(43, 92, 255, 0.4);
}

@keyframes finalCtaGlow {
  0%, 100% {
    box-shadow: 0 12px 40px rgba(43, 92, 255, 0.4), 0 4px 16px rgba(43, 92, 255, 0.3);
  }
  50% {
    box-shadow: 0 16px 50px rgba(43, 92, 255, 0.6), 0 6px 24px rgba(43, 92, 255, 0.5);
  }
}

.final-cta-button-secondary {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1) !important;
  color: var(--white) !important;
  border: 2px solid rgba(255, 255, 255, 0.4) !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  isolation: isolate;
}

.final-cta-button-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.1);
  z-index: -1;
}

.final-cta-button-secondary::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: -1;
}

.final-cta-button-secondary:hover::after {
  width: 300px;
  height: 300px;
}

.final-cta-button-secondary:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: rgba(255, 255, 255, 0.6) !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.final-cta-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  font-weight: 500;
}

.final-cta-guarantee svg {
  width: 18px;
  height: 18px;
  color: #10b981;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .final-cta-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .final-cta-hero {
    padding: 80px 0;
  }

  .final-cta-title {
    font-size: 36px;
    margin-bottom: 16px;
  }

  .final-cta-subtitle {
    font-size: 18px;
    margin-bottom: 48px;
  }

  .final-cta-features,
  .final-cta-trust {
    padding: 32px 28px;
  }

  .final-cta-features h3,
  .final-cta-trust h3 {
    font-size: 22px;
    margin-bottom: 24px;
  }

  .final-cta-list li,
  .final-cta-trust-list li {
    font-size: 15px;
  }

  .final-cta-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .final-cta-button,
  .final-cta-button-secondary {
    padding: 20px 40px;
    font-size: 18px;
    width: 100%;
  }

  .final-cta-guarantee {
    font-size: 14px;
    flex-direction: column;
    gap: 4px;
  }
}

/* CTA band */
.cta-band { padding: 80px 0; background: linear-gradient(180deg, #f0f6ff 0%, #ffffff 100%); border-top: 1px solid var(--border); }
.cta-grid { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; text-align: center; }
.cta-text-content h2 { margin: 0 0 12px; font-size: 48px; line-height: 1.2; letter-spacing: -0.02em; color: var(--navy-900); }
.cta-text-content p { margin: 0; font-size: 20px; color: var(--gray-600); }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-band .btn.solid { background: linear-gradient(135deg, #2b5cff 0%, #5b7cff 100%); }
.cta-band .btn.outline { background: var(--white); border: 2px solid var(--navy-900); color: var(--navy-900); }

@media (min-width: 980px) {
  .cta-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .cta-band { padding: 60px 0; }
  .cta-text-content h2 { font-size: 32px; }
  .cta-text-content p { font-size: 18px; }
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions .btn { width: 100%; }
}

/* Footer */
.site-footer { padding: 40px 0; border-top: 1px solid var(--border); background: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 24px; align-items: center; }
.footer-left { display: flex; flex-direction: column; gap: 4px; }
.footer-tagline { margin: 0; font-size: 16px; font-weight: 700; color: var(--navy-900); }
.footer-copyright { margin: 0; font-size: 14px; color: var(--gray-600); }
.footer-links { display: flex; flex-wrap: wrap; gap: 24px; color: var(--gray-700); font-size: 14px; justify-content: center; }
.footer-links a { transition: color 0.2s ease; }
.footer-links a:hover { color: var(--navy-900); }

@media (min-width: 900px) {
  .footer-grid { grid-template-columns: auto 1fr; justify-content: space-between; align-items: center; }
  .footer-links { justify-content: flex-end; }
}

@media (max-width: 899px) {
  .footer-grid { text-align: center; }
  .footer-left { align-items: center; }
}

/* Typography tweaks */
h1, h2, h3, h4 { color: var(--navy-900); }
p { color: var(--text); }

/* ============================================================
   MOBILE OPTIMIZATION & FIX SUMMARY
   ============================================================
   This section addresses critical mobile issues:

   ✅ FIXED: Horizontal scrolling (overflow-x on all containers)
   ✅ FIXED: Pinch zoom stability (transform: translateZ(0))
   ✅ FIXED: Nav button text wrapping (white-space: nowrap)
   ✅ FIXED: Logo too large on mobile (96px → 40px on tablet, 36px on phone)
   ✅ FIXED: Touch targets too small (min-height: 44px on all interactive elements)
   ✅ FIXED: Header clutter (reduced padding, hid "Call us" label, smaller font sizes)
   ✅ ADDED: Proper viewport meta tag with zoom support
   ✅ ADDED: Touch-action: manipulation for better responsiveness
   ✅ ADDED: Tap highlight colors for visual feedback
   ✅ ADDED: Reduced motion support for accessibility

   Professional mobile behavior implemented:
   - No horizontal scroll whatsoever
   - Pinch zoom works without breaking layout
   - All touch targets meet 44x44px minimum (Apple HIG)
   - Text readable without zooming (16px minimum)
   - Smooth fixed header behavior
   ============================================================ */

@media (max-width: 768px) {
  /* Ensure all elements stay within viewport */
  * {
    max-width: 100%;
  }

  /* Prevent specific elements from causing overflow */
  img:not(.brand-logo):not(.badge-logo-img), video, iframe, embed, object {
    max-width: 100% !important;
    height: auto !important;
  }

  /* Ensure brand logo respects its height settings */
  .brand-logo {
    height: 63px !important; /* Force the mobile logo size */
  }

  /* Ensure no element creates horizontal scroll */
  .hero-gallery,
  .gallery-col,
  .track,
  section,
  main {
    max-width: 100vw;
    overflow-x: hidden;
  }

  /* Adjust animations that might cause overflow */
  .tile {
    transform: none !important; /* Remove vertical offsets that might cause issues */
  }

  /* Ensure toasts and overlays don't overflow */
  .toast {
    max-width: calc(100vw - 32px);
    left: 16px;
    right: 16px;
  }

  /* Fix for demo mockups */
  .demo-ui-mockup,
  .demo-visual {
    max-width: 100%;
    overflow: hidden;
  }
}


/* AI demos section (dark) - Z-formation layout */
.ai-demos {
  background: var(--navy-900);
  background-image:
    radial-gradient(circle at 20% 30%, rgba(43, 92, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 60%, rgba(91, 124, 255, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 50% 90%, rgba(43, 92, 255, 0.1) 0%, transparent 40%);
  color: var(--white);
  padding-top: 96px;
  padding-bottom: 96px;
  position: relative;
}

/* Video Headline */
.video-headline { text-align: center; max-width: 900px; margin: 0 auto 32px; }
.video-badge { display: inline-block; padding: 8px 16px; border-radius: 999px; background: linear-gradient(135deg, #2b5cff 0%, #5b7cff 100%); border: 1px solid rgba(255, 255, 255, 0.3); color: var(--white); font-size: 13px; font-weight: 700; letter-spacing: 0.02em; margin-bottom: 20px; position: relative; overflow: hidden; box-shadow: 0 4px 12px rgba(43, 92, 255, 0.3); }
.video-badge::before { content: ''; position: absolute; top: -50%; left: -200%; width: 200%; height: 200%; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent); animation: badgeShine 3s linear infinite; transform: rotate(45deg); }
.video-headline h2 { font-size: 44px; line-height: 1.2; letter-spacing: -0.02em; color: var(--white); margin: 0; font-weight: 800; }

/* Wistia Video Container */
.demo-video-container { max-width: 1200px; margin: 0 auto 120px; border-radius: 16px; overflow: hidden; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4); border: 1px solid rgba(255, 255, 255, 0.1); }

@media (max-width: 768px) {
  .video-headline h2 { font-size: 28px; }
}

.ai-demos .section-head { text-align: center; max-width: 800px; margin: 0 auto 64px; }
.ai-demos .section-head h2 { color: var(--white); letter-spacing: -0.01em; font-size: 40px; }

/* Demo flow - Z-pattern */
.features-main-title {
  text-align: center;
  font-size: 52px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0 0 56px;
  margin-top: 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto 80px;
}

.feature-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  transition: transform 0.2s ease, background 0.2s ease;
}

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

.feature-item h3 {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.feature-item p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.demo-flow { display: grid; gap: 120px; max-width: 1200px; margin: 120px auto 0; }
.demo-item { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }

/* Demo Section Badge */
.demo-section-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 999px; background: linear-gradient(135deg, #2b5cff 0%, #5b7cff 100%); color: var(--white); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 16px; box-shadow: 0 4px 12px rgba(43, 92, 255, 0.4); position: relative; overflow: hidden; }
.demo-section-badge::before { content: ''; position: absolute; top: -50%; left: -200%; width: 200%; height: 200%; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent); animation: badgeShineDemo 3s linear infinite; transform: rotate(45deg); }
.demo-section-badge svg { width: 16px; height: 16px; position: relative; z-index: 1; }
.demo-section-badge span { position: relative; z-index: 1; }

@keyframes badgeShineDemo {
  0% { left: -200%; }
  100% { left: 200%; }
}

.demo-content h3 { margin: 0 0 12px; margin-top: 0; font-size: 28px; color: var(--white); line-height: 1.2; }
.demo-content .section-badge { margin-bottom: 16px; }
.demo-content p { margin: 0 0 20px; font-size: 17px; color: var(--gray-150); line-height: 1.6; }
.demo-features { margin: 0; padding-left: 0; list-style: none; display: grid; gap: 10px; }
.demo-features li { position: relative; padding-left: 28px; color: var(--gray-100); font-size: 15px; line-height: 1.5; }
.demo-features li::before { content: ""; position: absolute; left: 0; top: 7px; width: 12px; height: 12px; border-radius: 4px; background: linear-gradient(135deg, #2b5cff, #5b7cff); box-shadow: 0 0 0 3px rgba(43, 92, 255, 0.2); }

/* Demo visual placeholder */
.demo-visual { display: grid; place-items: center; }
.demo-placeholder { width: 100%; aspect-ratio: 16 / 10; border-radius: 16px; background: linear-gradient(135deg, rgba(43, 92, 255, 0.15), rgba(91, 124, 255, 0.1)); border: 1px solid rgba(255, 255, 255, 0.12); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; backdrop-filter: blur(10px); }
.demo-placeholder svg { width: 64px; height: 64px; color: #5b7cff; opacity: 0.8; }
.demo-placeholder span { font-size: 18px; font-weight: 700; color: var(--gray-150); }

/* Demo images */
.demo-image { width: 100%; max-width: 450px; height: auto; border-radius: 24px; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4); border: 1px solid rgba(255, 255, 255, 0.1); object-fit: cover; }

/* Demo UI Mockups */
.demo-ui-mockup { width: 100%; max-width: 450px; min-height: 300px; display: flex; flex-direction: column; justify-content: center; }

/* Call Notifications Mockup */
.mockup-notification { background: rgba(255, 255, 255, 0.98); border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 16px; padding: 16px; margin-bottom: 16px; box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3); opacity: 0; }
.mockup-notification:last-child { margin-bottom: 0; }
.notification-1 { animation: notifSequence 8s ease-in-out infinite; }
.notification-2 { animation: notifSequence 8s ease-in-out infinite 2s; }

@keyframes notifSequence {
  0% { opacity: 0; transform: translateY(20px); }
  8% { opacity: 1; transform: translateY(0); }
  75% { opacity: 1; transform: translateY(0); }
  82%, 100% { opacity: 0; transform: translateY(-10px); }
}

.notification-header { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.notif-icon { width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; flex-shrink: 0; }
.notif-icon svg { width: 20px; height: 20px; }
.phone-icon-mini { background: #e0f2fe; color: #0284c7; }
.message-icon-mini { background: #f3e8ff; color: #9333ea; }
.calendar-icon-mini { background: #dcfce7; color: #16a34a; }
.notif-details { flex: 1; }
.notif-title { font-weight: 700; font-size: 15px; color: var(--navy-900); }
.notif-time { font-size: 13px; color: var(--gray-600); }
.notif-badge { padding: 4px 10px; border-radius: 999px; background: linear-gradient(135deg, #2b5cff, #5b7cff); color: white; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; }
.notif-badge.success { background: linear-gradient(135deg, #10b981, #34d399); }
.notif-body { font-size: 14px; color: var(--gray-700); line-height: 1.4; }

/* Calendar Mockup */
.calendar-mockup { background: rgba(255, 255, 255, 0.98); border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 20px; padding: 20px; box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35); }
.calendar-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 2px solid rgba(0, 0, 0, 0.08); }
.calendar-date { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 16px; color: var(--navy-900); }
.calendar-date svg { width: 20px; height: 20px; color: #2b5cff; }
.calendar-legend { display: flex; gap: 16px; }
.legend-item { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--gray-600); font-weight: 500; }
.legend-dot { width: 8px; height: 8px; border-radius: 50%; }
.hvac-dot { background: #3b82f6; }
.plumbing-dot { background: #8b5cf6; }
.electrical-dot { background: #f59e0b; }

.calendar-grid { display: flex; flex-direction: column; gap: 8px; }
.time-slot { display: flex; align-items: center; gap: 12px; }
.time-label { width: 80px; font-size: 13px; font-weight: 600; color: var(--gray-600); flex-shrink: 0; }
.slot-content { flex: 1; min-height: 50px; border-radius: 10px; padding: 10px 12px; display: flex; flex-direction: column; justify-content: center; transition: all 0.3s ease; position: relative; }
.slot-content.available { background: rgba(0, 0, 0, 0.03); border: 2px dashed rgba(0, 0, 0, 0.12); }
.slot-content.booked { border: 2px solid; }
.slot-content.hvac-service { background: rgba(59, 130, 246, 0.1); border-color: rgba(59, 130, 246, 0.4); }
.slot-content.plumbing-service { background: rgba(139, 92, 246, 0.1); border-color: rgba(139, 92, 246, 0.4); }
.slot-content.electrical-service { background: rgba(245, 158, 11, 0.1); border-color: rgba(245, 158, 11, 0.4); }
.appointment-name { font-weight: 700; font-size: 14px; color: var(--navy-900); margin-bottom: 2px; }
.appointment-type { font-size: 12px; color: var(--gray-600); }

/* Booking animation - Sequential bookings */
.slot-content.booking-1 { animation: bookingSlideIn1 8s ease-in-out infinite; }
.slot-content.booking-2 { animation: bookingSlideIn2 8s ease-in-out infinite; }
.booking-1 .booking-badge { animation: badgePulse1 8s ease-in-out infinite; }
.booking-2 .booking-badge { animation: badgePulse2 8s ease-in-out infinite; }
.booking-badge { position: absolute; top: -8px; right: 8px; padding: 4px 8px; border-radius: 999px; background: linear-gradient(135deg, #2b5cff, #5b7cff); color: white; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; box-shadow: 0 4px 12px rgba(43, 92, 255, 0.4); overflow: hidden; }

/* Shine effect on booking badges */
.booking-badge::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -200%;
  width: 200%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  transform: rotate(45deg);
  pointer-events: none;
  z-index: 1;
}

.booking-1 .booking-badge::before { animation: badgeShine1 8s linear infinite; }
.booking-2 .booking-badge::before { animation: badgeShine2 8s linear infinite; }

/* First booking animation - starts immediately */
@keyframes bookingSlideIn1 {
  0%, 10% { transform: translateX(30px); opacity: 0; }
  15%, 40% { transform: translateX(0); opacity: 1; }
  45%, 100% { transform: translateX(0); opacity: 1; }
}

@keyframes badgePulse1 {
  0%, 10% { opacity: 0; transform: scale(0.8); }
  15% { opacity: 1; transform: scale(1.15); }
  18%, 40% { opacity: 1; transform: scale(1); }
  45%, 100% { opacity: 0.5; transform: scale(1); }
}

/* Second booking animation - starts after first completes */
@keyframes bookingSlideIn2 {
  0%, 45% { transform: translateX(30px); opacity: 0; }
  50%, 85% { transform: translateX(0); opacity: 1; }
  90%, 100% { transform: translateX(0); opacity: 1; }
}

@keyframes badgePulse2 {
  0%, 45% { opacity: 0; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.15); }
  53%, 85% { opacity: 1; transform: scale(1); }
  90%, 100% { opacity: 0.5; transform: scale(1); }
}

/* Badge shine animations - shine right after pulse */
@keyframes badgeShine1 {
  0%, 17% { left: -200%; }
  21%, 100% { left: 200%; }
}

@keyframes badgeShine2 {
  0%, 52% { left: -200%; }
  56%, 100% { left: 200%; }
}

/* SMS Mockup */
.phone-frame { background: rgba(255, 255, 255, 0.98); border-radius: 24px; padding: 20px 16px; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4); border: 1px solid rgba(255, 255, 255, 0.15); }
.phone-header { font-weight: 700; font-size: 16px; color: var(--navy-900); margin-bottom: 16px; text-align: center; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.sms-conversation { display: flex; flex-direction: column; gap: 12px; min-height: 280px; }
.sms-bubble { max-width: 85%; padding: 12px 14px; border-radius: 18px; opacity: 0; }

/* Each message has different start time, but ALL disappear at 75% */
.sms-1 { animation: smsMessage1 10s ease-in-out infinite; }
.sms-2 { animation: smsMessage2 10s ease-in-out infinite; }
.sms-3 { animation: smsMessage3 10s ease-in-out infinite; }
.sms-4 { animation: smsMessage4 10s ease-in-out infinite; }

@keyframes smsMessage1 {
  0% { opacity: 0; transform: scale(0.95); }
  3% { opacity: 1; transform: scale(1); }
  87% { opacity: 1; transform: scale(1); }
  90%, 100% { opacity: 0; transform: scale(0.95); }
}

@keyframes smsMessage2 {
  0%, 17% { opacity: 0; transform: scale(0.95); }
  20% { opacity: 1; transform: scale(1); }
  87% { opacity: 1; transform: scale(1); }
  90%, 100% { opacity: 0; transform: scale(0.95); }
}

@keyframes smsMessage3 {
  0%, 42% { opacity: 0; transform: scale(0.95); }
  45% { opacity: 1; transform: scale(1); }
  87% { opacity: 1; transform: scale(1); }
  90%, 100% { opacity: 0; transform: scale(0.95); }
}

@keyframes smsMessage4 {
  0%, 57% { opacity: 0; transform: scale(0.95); }
  60% { opacity: 1; transform: scale(1); }
  87% { opacity: 1; transform: scale(1); }
  90%, 100% { opacity: 0; transform: scale(0.95); }
}

.sms-bubble.customer { align-self: flex-end; background: #e5e7eb; }
.sms-bubble.ai { align-self: flex-start; background: linear-gradient(135deg, #2b5cff, #5b7cff); color: white; }
.bubble-text { font-size: 14px; line-height: 1.4; margin-bottom: 4px; }
.bubble-time { font-size: 11px; opacity: 0.7; }
.sms-bubble.customer .bubble-text { color: var(--navy-900); }
.sms-bubble.customer .bubble-time { color: var(--gray-600); }

/* Chat Mockup */
.chat-window { background: rgba(255, 255, 255, 0.98); border-radius: 20px; padding: 20px; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4); border: 1px solid rgba(255, 255, 255, 0.15); min-height: 320px; }
.chat-header { padding-bottom: 16px; border-bottom: 1px solid var(--border); margin-bottom: 20px; }
.chat-status { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14px; color: var(--navy-900); }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: #10b981; box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2); animation: pulse 2s infinite; }

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

.chat-messages { display: flex; flex-direction: column; gap: 16px; }
.chat-msg { display: flex; gap: 10px; opacity: 0; }
.chat-1 { animation: chatMessage1 9s ease-in-out infinite; }
.chat-2 { animation: chatMessage2 9s ease-in-out infinite; }
.chat-3 { animation: chatMessage3 9s ease-in-out infinite; }

@keyframes chatMessage1 {
  0% { opacity: 0; transform: translateY(10px); }
  5% { opacity: 1; transform: translateY(0); }
  75% { opacity: 1; transform: translateY(0); }
  80%, 100% { opacity: 0; transform: translateY(-10px); }
}

@keyframes chatMessage2 {
  0%, 20% { opacity: 0; transform: translateY(10px); }
  25% { opacity: 1; transform: translateY(0); }
  75% { opacity: 1; transform: translateY(0); }
  80%, 100% { opacity: 0; transform: translateY(-10px); }
}

@keyframes chatMessage3 {
  0%, 42% { opacity: 0; transform: translateY(10px); }
  47% { opacity: 1; transform: translateY(0); }
  75% { opacity: 1; transform: translateY(0); }
  80%, 100% { opacity: 0; transform: translateY(-10px); }
}

.chat-msg.ai-msg { align-items: flex-start; }
.chat-msg.user-msg { align-items: flex-end; flex-direction: row-reverse; }
.msg-avatar { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg, #2b5cff, #5b7cff); color: white; display: grid; place-items: center; font-size: 11px; font-weight: 700; flex-shrink: 0; }
.msg-content { flex: 1; max-width: 75%; }
.user-msg .msg-content { text-align: right; }
.msg-text { background: #f3f4f6; padding: 10px 14px; border-radius: 14px; font-size: 14px; line-height: 1.4; color: var(--navy-900); margin-bottom: 4px; }
.ai-msg .msg-text { background: #e0f2fe; }
.msg-timestamp { font-size: 11px; color: var(--gray-600); padding: 0 4px; }

/* Unified Inbox Mockup */
.unified-inbox-mockup { background: rgba(255, 255, 255, 0.98); border-radius: 20px; padding: 24px; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4); border: 1px solid rgba(255, 255, 255, 0.15); }
.inbox-header { margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.inbox-header h4 { margin: 0 0 4px; font-size: 18px; font-weight: 700; color: var(--navy-900); }
.inbox-subtitle { font-size: 13px; color: var(--gray-600); }
.inbox-messages { display: flex; flex-direction: column; gap: 12px; }
.inbox-item { display: flex; align-items: center; gap: 12px; padding: 14px; border-radius: 12px; background: #f9fafb; border: 1px solid var(--border); opacity: 0; transition: background 0.2s ease; }
.inbox-item:hover { background: #f3f4f6; }
.inbox-1 { animation: inboxFadeIn1 10s ease-in-out infinite; }
.inbox-2 { animation: inboxFadeIn2 10s ease-in-out infinite; }
.inbox-3 { animation: inboxFadeIn3 10s ease-in-out infinite; }
.inbox-4 { animation: inboxFadeIn4 10s ease-in-out infinite; }

@keyframes inboxFadeIn1 {
  0% { opacity: 0; transform: translateY(10px); }
  5% { opacity: 1; transform: translateY(0); }
  87% { opacity: 1; transform: translateY(0); }
  90%, 100% { opacity: 0; transform: translateY(-5px); }
}

@keyframes inboxFadeIn2 {
  0%, 15% { opacity: 0; transform: translateY(10px); }
  20% { opacity: 1; transform: translateY(0); }
  87% { opacity: 1; transform: translateY(0); }
  90%, 100% { opacity: 0; transform: translateY(-5px); }
}

@keyframes inboxFadeIn3 {
  0%, 30% { opacity: 0; transform: translateY(10px); }
  35% { opacity: 1; transform: translateY(0); }
  87% { opacity: 1; transform: translateY(0); }
  90%, 100% { opacity: 0; transform: translateY(-5px); }
}

@keyframes inboxFadeIn4 {
  0%, 45% { opacity: 0; transform: translateY(10px); }
  50% { opacity: 1; transform: translateY(0); }
  87% { opacity: 1; transform: translateY(0); }
  90%, 100% { opacity: 0; transform: translateY(-5px); }
}

.channel-badge { padding: 4px 10px; border-radius: 6px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; white-space: nowrap; flex-shrink: 0; }
.phone-badge { background: #dbeafe; color: #1e40af; }
.sms-badge { background: #f3e8ff; color: #7e22ce; }
.webchat-badge { background: #dcfce7; color: #15803d; }
.email-badge { background: #fed7aa; color: #c2410c; }
.inbox-content { flex: 1; min-width: 0; }
.inbox-name { font-weight: 700; font-size: 14px; color: var(--navy-900); margin-bottom: 4px; }
.inbox-preview { font-size: 13px; color: var(--gray-600); line-height: 1.4; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.inbox-time { font-size: 12px; color: var(--gray-500); font-weight: 600; white-space: nowrap; flex-shrink: 0; }

/* Calendar Mockup */
.calendar-mockup { background: rgba(255, 255, 255, 0.98); border-radius: 20px; padding: 24px; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4); border: 1px solid rgba(255, 255, 255, 0.15); }
.calendar-header { margin-bottom: 20px; }
.calendar-header h4 { margin: 0 0 4px; font-size: 18px; font-weight: 700; color: var(--navy-900); }
.calendar-week { font-size: 13px; color: var(--gray-600); }
.calendar-appointments { display: flex; flex-direction: column; gap: 12px; }
.appointment-slot { display: flex; align-items: center; gap: 12px; padding: 14px; border-radius: 12px; border: 1px solid var(--border); background: #f9fafb; opacity: 0; }
.appointment-slot.booked { background: #e0f2fe; border-color: #bae6fd; animation: slotFadeIn 8s ease-in-out infinite; }
.appointment-slot.booking { background: #fef3c7; border-color: #fde68a; animation: slotBooking 8s ease-in-out infinite; }
.appointment-slot.available { background: #f9fafb; animation: slotAvailable 8s ease-in-out infinite; }
.slot-time { font-size: 13px; font-weight: 700; color: var(--navy-900); min-width: 100px; }
.slot-info { flex: 1; }
.slot-customer { font-size: 14px; font-weight: 600; color: var(--navy-900); margin-bottom: 2px; }
.slot-type { font-size: 12px; color: var(--gray-600); }
.slot-available { font-size: 14px; color: var(--gray-500); font-style: italic; }
.slot-badge { font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 999px; white-space: nowrap; }
.slot-badge.confirmed { background: #dcfce7; color: #166534; }
.slot-badge.booking-now { background: #fef3c7; color: #854d0e; }

@keyframes slotFadeIn {
  0% { opacity: 0; transform: translateX(-10px); }
  5% { opacity: 1; transform: translateX(0); }
  75% { opacity: 1; }
  80%, 100% { opacity: 0; }
}

@keyframes slotBooking {
  0%, 20% { opacity: 0; transform: translateX(-10px); }
  25% { opacity: 1; transform: translateX(0); }
  75% { opacity: 1; }
  80%, 100% { opacity: 0; }
}

@keyframes slotAvailable {
  0%, 45% { opacity: 0; transform: translateX(-10px); }
  50% { opacity: 1; transform: translateX(0); }
  75% { opacity: 1; }
  80%, 100% { opacity: 0; }
}

/* Routing Mockup */
.routing-mockup { background: rgba(255, 255, 255, 0.98); border-radius: 20px; padding: 24px; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4); border: 1px solid rgba(255, 255, 255, 0.15); }
.routing-card { opacity: 1; }
.routing-header { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.routing-icon { width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(135deg, #2b5cff, #5b7cff); display: flex; align-items: center; justify-content: center; }
.routing-icon svg { width: 24px; height: 24px; color: white; }
.routing-status { flex: 1; }
.routing-title { font-size: 16px; font-weight: 700; color: var(--navy-900); margin-bottom: 4px; }
.routing-customer { font-size: 14px; color: var(--gray-600); }
.routing-details { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }
.routing-detail-item { display: flex; gap: 8px; font-size: 14px; align-items: center; }
.detail-label { font-weight: 600; color: var(--navy-900); min-width: 110px; }
.detail-value { color: var(--gray-700); flex: 1; }

/* Pill-style badges for routing details */
.detail-value-pill {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.reason-pill {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.12), rgba(248, 113, 113, 0.12));
  color: #dc2626;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.transfer-pill {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.12), rgba(74, 222, 128, 0.12));
  color: #16a34a;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.context-pill {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(96, 165, 250, 0.12));
  color: #2563eb;
  border: 1px solid rgba(59, 130, 246, 0.3);
}
.routing-progress { height: 4px; background: #e5e7eb; border-radius: 2px; overflow: hidden; }
.progress-bar { height: 100%; background: linear-gradient(135deg, #2b5cff, #5b7cff); width: 0%; animation: progressGrow 3s ease-in-out infinite; }

@keyframes progressGrow {
  0% { width: 0%; }
  100% { width: 100%; }
}

/* Insights Mockup */
.insights-mockup { background: rgba(255, 255, 255, 0.98); border-radius: 20px; padding: 24px; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4); border: 1px solid rgba(255, 255, 255, 0.15); }
.insights-header { margin-bottom: 20px; }
.insights-header h4 { margin: 0 0 4px; font-size: 18px; font-weight: 700; color: var(--navy-900); }
.insights-date { font-size: 13px; color: var(--gray-600); }
.insights-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 20px; }
.stat-card { background: #f9fafb; border: 1px solid var(--border); border-radius: 12px; padding: 16px; text-align: center; opacity: 0; }
.stat-card:nth-child(1) { animation: statFadeIn1 8s ease-in-out infinite; }
.stat-card:nth-child(2) { animation: statFadeIn2 8s ease-in-out infinite; }
.stat-card:nth-child(3) { animation: statFadeIn3 8s ease-in-out infinite; }
.stat-value { font-size: 28px; font-weight: 800; color: var(--navy-900); margin-bottom: 4px; }
.stat-label { font-size: 12px; color: var(--gray-600); margin-bottom: 8px; }
.stat-change { font-size: 12px; font-weight: 600; }
.stat-change.positive { color: #16a34a; }
.insights-activity { padding-top: 16px; border-top: 1px solid var(--border); }
.activity-item { display: flex; gap: 12px; font-size: 13px; align-items: center; opacity: 0; animation: activityFadeIn 8s ease-in-out infinite; }
.activity-time { color: var(--gray-600); min-width: 65px; }
.activity-desc { color: var(--navy-900); flex: 1; }
.activity-value { font-weight: 700; color: #16a34a; }

@keyframes statFadeIn1 {
  0% { opacity: 0; transform: translateY(10px); }
  5% { opacity: 1; transform: translateY(0); }
  87% { opacity: 1; }
  90%, 100% { opacity: 0; }
}

@keyframes statFadeIn2 {
  0%, 10% { opacity: 0; transform: translateY(10px); }
  15% { opacity: 1; transform: translateY(0); }
  87% { opacity: 1; }
  90%, 100% { opacity: 0; }
}

@keyframes statFadeIn3 {
  0%, 20% { opacity: 0; transform: translateY(10px); }
  25% { opacity: 1; transform: translateY(0); }
  87% { opacity: 1; }
  90%, 100% { opacity: 0; }
}

@keyframes activityFadeIn {
  0%, 35% { opacity: 0; transform: translateX(-10px); }
  40% { opacity: 1; transform: translateX(0); }
  87% { opacity: 1; }
  90%, 100% { opacity: 0; }
}

/* Desktop: Z-pattern (left-right alternating) */
@media (min-width: 900px) {
  .demo-item { grid-template-columns: 1fr 1fr; gap: 64px; }
  .demo-item.reverse { direction: rtl; }
  .demo-item.reverse > * { direction: ltr; }
}

/* Mobile: Stack vertically */
@media (max-width: 899px) {
  .features-main-title {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .feature-item {
    padding: 28px;
  }

  .demo-flow { gap: 80px; margin-top: 80px; }
  .demo-content h3 { font-size: 24px; }
  .demo-placeholder { aspect-ratio: 4 / 3; }

  /* Calendar Mockup Mobile */
  .calendar-mockup { padding: 16px; }
  .calendar-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .calendar-legend { gap: 12px; }
  .time-label { width: 70px; font-size: 12px; }
  .slot-content { min-height: 45px; padding: 8px 10px; }
  .appointment-name { font-size: 13px; }
  .appointment-type { font-size: 11px; }
}

/* Industries Section */
.industries-section { max-width: 1200px; margin: 96px auto 0; padding: 80px 0 0; border-top: 1px solid rgba(255, 255, 255, 0.12); }
.industries-title {
  text-align: left;
  font-size: 36px;
  font-weight: 800;
  margin: 0 0 56px;
  line-height: 1.2;
  background: linear-gradient(135deg, #ffffff 0%, #5b7cff 50%, #ffffff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShine 3s linear infinite;
}

@keyframes gradientShine {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.industries-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 48px 40px; justify-items: start; }
.industry-col h4 { margin: 0 0 16px; font-size: 13px; font-weight: 700; color: rgba(91, 124, 255, 0.8); text-transform: uppercase; letter-spacing: 0.08em; }
.industry-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.industry-list li { color: var(--gray-150); font-size: 16px; line-height: 1.4; display: flex; align-items: center; gap: 10px; }
.industry-check { width: 18px; height: 18px; color: #5b7cff; flex-shrink: 0; }

@media (max-width: 1024px) {
  .industries-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 32px; }
}

@media (max-width: 768px) {
  .industries-section { margin: 64px auto 0; padding: 60px 0 0; }
  .industries-title { font-size: 28px; margin-bottom: 40px; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .industry-col h4 { font-size: 12px; }
  .industry-list li { font-size: 15px; }
}

@media (max-width: 500px) {
  .industries-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
  .industry-col { min-width: 0; }
  .industry-col h4 { font-size: 11px; }
  .industry-list li { font-size: 13px; gap: 8px; }
  .industry-list li span { word-break: break-word; overflow-wrap: break-word; }
  .industry-check { width: 14px; height: 14px; }
}

/* Demo CTA Banner */
.demo-cta-banner { max-width: 1200px; margin: 80px auto 0; padding: 48px; background: linear-gradient(135deg, rgba(43, 92, 255, 0.2) 0%, rgba(91, 124, 255, 0.15) 100%); border: 2px solid rgba(43, 92, 255, 0.3); border-radius: 24px; backdrop-filter: blur(10px); box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3); }
.demo-cta-content { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.demo-cta-text { flex: 1; min-width: 300px; }
.demo-cta-text h3 { margin: 0 0 16px; font-size: 32px; color: var(--white); font-weight: 800; line-height: 1.2; }
.demo-cta-offer { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; padding: 12px 20px; background: rgba(43, 92, 255, 0.3); border: 1px solid rgba(43, 92, 255, 0.5); border-radius: 12px; }
.demo-cta-offer svg { width: 24px; height: 24px; color: #5b7cff; flex-shrink: 0; }
.demo-cta-offer span { color: var(--white); font-size: 16px; line-height: 1.4; }
.demo-cta-offer strong { font-weight: 800; }
.demo-countdown { display: flex; align-items: center; gap: 12px; }
.demo-countdown-label { color: var(--gray-150); font-size: 14px; font-weight: 600; }
.demo-countdown-time { font-size: 28px; font-weight: 900; color: #5b7cff; letter-spacing: 0.05em; font-variant-numeric: tabular-nums; }
.demo-cta-btn { white-space: nowrap; flex-shrink: 0; }

@media (max-width: 768px) {
  .demo-cta-banner { padding: 32px 24px; margin: 60px auto 0; }
  .demo-cta-content { flex-direction: column; align-items: stretch; gap: 24px; text-align: center; }
  .demo-cta-text { min-width: 0; }
  .demo-cta-text h3 { font-size: 24px; }
  .demo-cta-offer { flex-direction: column; text-align: center; gap: 8px; }
  .demo-countdown { flex-direction: column; gap: 6px; }
  .demo-countdown-time { font-size: 24px; }
  .demo-cta-btn { width: 100%; }
}

/* Sample Audio Card Section */
.sample-audio-section { padding: 64px 0; background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%); }
.sample-audio-card { max-width: 900px; margin: 0 auto; padding: 40px; position: relative; overflow: hidden; background: linear-gradient(135deg, #ffffff 0%, #f0f6ff 100%); border: 2px solid #d6e4ff; }
.sample-audio-card::before { content: ''; position: absolute; top: -50%; right: -20%; width: 300px; height: 300px; background: radial-gradient(circle, rgba(43, 92, 255, 0.08) 0%, transparent 70%); pointer-events: none; }
.sample-audio-content { position: relative; z-index: 1; }
.sample-audio-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 999px; background: linear-gradient(135deg, #2b5cff 0%, #5b7cff 100%); color: var(--white); font-size: 13px; font-weight: 700; margin-bottom: 20px; box-shadow: 0 4px 12px rgba(43, 92, 255, 0.3); }
.sample-audio-badge svg { width: 18px; height: 18px; }
.sample-audio-card h3 { margin: 0 0 12px; font-size: 32px; line-height: 1.2; letter-spacing: -0.01em; color: var(--navy-900); }
.sample-audio-card p { margin: 0 0 28px; font-size: 17px; color: var(--gray-600); line-height: 1.6; max-width: 700px; }

/* Audio Player */
.sample-audio-player { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 24px; box-shadow: 0 4px 12px rgba(5, 16, 36, 0.06); margin-bottom: 24px; }
.sample-play-btn { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, #2b5cff 0%, #5b7cff 100%); color: var(--white); border: none; display: grid; place-items: center; cursor: pointer; transition: transform 0.2s ease, box-shadow 0.2s ease; box-shadow: 0 4px 16px rgba(43, 92, 255, 0.3); flex-shrink: 0; }
.sample-play-btn:hover { transform: scale(1.05); box-shadow: 0 6px 20px rgba(43, 92, 255, 0.4); }
.sample-play-btn:active { transform: scale(0.98); }
.sample-play-btn svg { width: 24px; height: 24px; }
.sample-play-btn[data-state="playing"] .play-icon { display: none; }
.sample-play-btn[data-state="playing"] .pause-icon { display: block !important; }
.sample-audio-player { display: flex; gap: 20px; align-items: center; }
.sample-audio-info { flex: 1; display: grid; gap: 12px; }
.sample-audio-wave { display: flex; align-items: center; gap: 4px; height: 40px; }
.wave-bar { width: 4px; background: linear-gradient(180deg, #2b5cff, #5b7cff); border-radius: 2px; animation: waveAnimation 1.2s ease-in-out infinite; }
.wave-bar:nth-child(1) { height: 20%; animation-delay: 0s; }
.wave-bar:nth-child(2) { height: 40%; animation-delay: 0.1s; }
.wave-bar:nth-child(3) { height: 60%; animation-delay: 0.2s; }
.wave-bar:nth-child(4) { height: 80%; animation-delay: 0.3s; }
.wave-bar:nth-child(5) { height: 100%; animation-delay: 0.4s; }
.wave-bar:nth-child(6) { height: 80%; animation-delay: 0.5s; }
.wave-bar:nth-child(7) { height: 60%; animation-delay: 0.6s; }
.wave-bar:nth-child(8) { height: 40%; animation-delay: 0.7s; }
.wave-bar:nth-child(9) { height: 60%; animation-delay: 0.8s; }
.wave-bar:nth-child(10) { height: 30%; animation-delay: 0.9s; }

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

.sample-audio-controls { display: flex; align-items: center; gap: 12px; }
.sample-progress { -webkit-appearance: none; appearance: none; flex: 1; height: 8px; border-radius: 999px; background: #e5e7eb; outline: none; cursor: pointer; }
.sample-progress::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 18px; height: 18px; border-radius: 999px; background: #2b5cff; box-shadow: 0 0 0 4px rgba(43, 92, 255, 0.2); cursor: pointer; transition: box-shadow 0.2s ease; }
.sample-progress::-webkit-slider-thumb:hover { box-shadow: 0 0 0 6px rgba(43, 92, 255, 0.3); }
.sample-progress::-moz-range-thumb { width: 18px; height: 18px; border: none; border-radius: 999px; background: #2b5cff; box-shadow: 0 0 0 4px rgba(43, 92, 255, 0.2); cursor: pointer; transition: box-shadow 0.2s ease; }
.sample-progress::-moz-range-thumb:hover { box-shadow: 0 0 0 6px rgba(43, 92, 255, 0.3); }
.sample-timer { font-weight: 700; color: var(--navy-900); font-size: 14px; white-space: nowrap; min-width: 90px; text-align: right; }

/* Sample Features */
.sample-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.sample-feature { display: flex; align-items: center; gap: 10px; padding: 12px 16px; background: rgba(43, 92, 255, 0.06); border: 1px solid rgba(43, 92, 255, 0.15); border-radius: 12px; font-weight: 600; color: var(--navy-900); }
.sample-feature svg { width: 20px; height: 20px; color: #2b5cff; flex-shrink: 0; }

@media (max-width: 768px) {
  .sample-audio-section { padding: 48px 0; }
  .sample-audio-card { padding: 28px 20px; }
  .sample-audio-card h3 { font-size: 24px; }
  .sample-audio-card p { font-size: 16px; }
  .sample-audio-player { flex-direction: column; align-items: stretch; padding: 20px; }
  .sample-play-btn { width: 64px; height: 64px; align-self: center; }
  .sample-features { grid-template-columns: 1fr; }
}

/* Try it yourself banner */
.try-it-banner { max-width: 900px; margin: 32px auto 0; padding: 20px 28px; background: linear-gradient(135deg, #2b5cff 0%, #5b7cff 100%); border-radius: 16px; box-shadow: 0 8px 24px rgba(43, 92, 255, 0.25); }
.try-it-content { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.try-it-text { display: flex; flex-direction: column; gap: 4px; color: var(--white); }
.try-it-text strong { font-size: 18px; font-weight: 700; }
.try-it-text span { font-size: 14px; opacity: 0.95; }
.try-it-phone { display: inline-flex; align-items: center; gap: 10px; padding: 12px 24px; background: rgba(255, 255, 255, 0.95); border-radius: 12px; color: var(--navy-900); font-weight: 700; font-size: 18px; text-decoration: none; transition: transform 0.2s ease, background 0.2s ease; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); }
.try-it-phone:hover { transform: translateY(-2px); background: var(--white); box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15); }
.try-it-phone:active { transform: translateY(0); }
.try-it-phone svg { width: 20px; height: 20px; color: #2b5cff; flex-shrink: 0; }
.phone-display { white-space: nowrap; }

@media (max-width: 768px) {
  .try-it-banner { padding: 20px; margin: 24px auto 0; }
  .try-it-content { flex-direction: column; align-items: stretch; gap: 16px; text-align: center; }
  .try-it-phone { justify-content: center; }
}

body button {line-height: normal;cursor: pointer;}
body h3, body h2 {font-weight: bold;}

p.leading-relaxed a {
	color: #0c1222;
}

p.leading-relaxed {
	padding-top: 15px;
}
