/* 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: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  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: 1248px;
  margin: 0 auto;
  padding: 0 24px;
  /* Ensure container never causes horizontal scroll */
  overflow-x: visible;
}

.section {
  padding: 96px 0;
  /* Prevent horizontal overflow but allow vertical for button shadows */
  overflow-x: visible;
  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.05; color: var(--white); }

/* Header - Auto-adjusts for WordPress navigation swaps! */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: saturate(180%) blur(20px);
  width: 100%;
  max-width: 100vw; /* Prevent header from causing horizontal scroll */
  transition: transform 0.3s ease-in-out, background 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.6);
  backdrop-filter: saturate(180%) blur(24px);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1248px;
  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: 24px; 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: 999px;
  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: linear-gradient(135deg, #2b5cff 0%, #5b7cff 100%);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(43, 92, 255, 0.3);
  animation: navyButtonGlow 2s ease-in-out infinite;
  isolation: isolate;
}
.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;
}
.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(43, 92, 255, 0.3);
  }
  50% {
    box-shadow: 0 6px 20px rgba(43, 92, 255, 0.4), 0 2px 6px rgba(43, 92, 255, 0.3);
  }
}
.btn.ghost { background: transparent; color: var(--navy-900); border-color: var(--border); }
.btn.outline { background: var(--white); border: none; color: var(--navy-900); outline: none; }
.btn.wfull { width: 100%; }
.btn.xl { padding: 18px 28px; border-radius: 999px; 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: 60px 0 60px;
  background: var(--white);
  overflow: visible;
  position: relative;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  width: 1200px;
  height: 1200px;
  top: -300px;
  right: -250px;
  background: radial-gradient(circle at top right, rgba(43, 92, 255, 0.55), rgba(43, 92, 255, 0) 60%);
  filter: blur(120px);
  z-index: -1;
  pointer-events: none;
  animation: floatGradient 25s ease-in-out infinite;
}

@keyframes floatGradient {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.9;
  }
  33% {
    transform: translate(-150px, 180px) scale(1.2);
    opacity: 1;
  }
  66% {
    transform: translate(180px, -150px) scale(0.85);
    opacity: 0.75;
  }
}

.hero::after {
  content: "";
  position: absolute;
  width: 900px;
  height: 900px;
  bottom: -200px;
  left: -150px;
  background: radial-gradient(circle at bottom left, rgba(43, 92, 255, 0.50), rgba(43, 92, 255, 0) 60%);
  filter: blur(120px);
  z-index: -1;
  pointer-events: none;
  animation: floatGradientBlue2 30s ease-in-out infinite;
}

@keyframes floatGradientBlue2 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.9;
  }
  40% {
    transform: translate(200px, -160px) scale(1.25);
    opacity: 0.7;
  }
  80% {
    transform: translate(-160px, 140px) scale(0.8);
    opacity: 1;
  }
}

.hero .container {
  overflow-x: visible;
  overflow-y: visible;
  max-width: 1340px;
}
.hero-grid {
  display: grid;
  gap: 40px;
  align-items: center;
  grid-template-columns: 1fr;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: visible;
}

/* Mobile: centered */
.hero-copy {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-copy h1 { text-align: center; margin-left: auto; margin-right: auto; }
.hero-copy .hero-subheadline { text-align: center; margin-left: auto; margin-right: auto; }
.hero-cta { justify-content: center; }
.hero-video {
  width: 100%;
  overflow: visible;
  padding: 20px 0;
  position: relative;
  margin: 0;
}

/* Desktop: left-aligned two-column */
@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: minmax(320px, 0.85fr) minmax(420px, 1.15fr);
    gap: 40px;
    align-items: center;
  }
  .hero-copy {
    align-items: flex-start;
    text-align: left;
    max-width: 520px;
  }
  .hero-video {
    padding: 0;
    align-self: center;
  }
  .hero-copy h1 {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }
  .hero-copy .hero-subheadline {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }
  .hero-cta {
    justify-content: flex-start;
  }
}
.hero-badge { display: inline-flex; flex-direction: row; align-items: center; padding: 0; border-radius: 0; background: transparent; border: none; color: var(--navy-900); font-size: 13px; font-weight: 700; letter-spacing: 0.02em; margin-bottom: 28px; position: relative; overflow: visible; box-shadow: none; gap: 7px; }
.hero-rating-stars { color: #FFA500; font-size: 10px; letter-spacing: 1px; line-height: 1; }
.hero-rating-source { font-size: 12px; font-weight: 500; opacity: 1; letter-spacing: 0.03em; line-height: 1; color: var(--navy-900); white-space: nowrap; }
.hero-rating-brand { font-weight: 700; letter-spacing: 0; }
@keyframes badgeShine { 0% { left: -200%; } 100% { left: 200%; } }

/* Reusable Section Badge */
.section-badge {
  display: inline-block;
  padding: 0;
  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;
  border: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  position: relative;
  animation: gradientShine 3s linear infinite;
}

.ai-demos .section-badge {
  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;
  border: none;
  animation: gradientShine 3s linear infinite;
}

.section-badge-center {
  text-align: center;
  margin-bottom: 0;
}
.hero-copy h1 {
  margin: 0 0 24px;
  font-size: 48px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  font-weight: 700;
  max-width: 100%;
}

.hero-subheadline {
  margin: 0 0 32px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--gray-600);
  max-width: 100%;
  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; max-width: 700px; }
.hero-cta { margin: 0 0 24px; display: flex; gap: 12px; flex-wrap: wrap; }
.hero-pricing-link {
  text-decoration: underline;
  text-decoration-thickness: 2px;
}
.hero-cta .btn {
  padding: 9px 22px;
  font-size: 15.3px;
}
.hero-cta .btn svg {
  width: 38px;
  height: 38px;
  stroke-width: 1;
}

/* Mobile: reduce hero button padding */
@media (max-width: 768px) {
  .hero-cta {
    margin-bottom: 16px;
  }

  .hero-cta .btn {
    padding: 10px 18px;
    font-size: 14px;
  }
}
.hero-cta .btn.outline {
  gap: 0;
}
.hero-cta .btn.outline svg {
  margin: 0 0 0 -8px;
  display: inline-block;
}
.hero-cta .btn.solid {
  position: relative;
  overflow: hidden;
}
.hero-cta .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;
}
.hero-cta .btn.solid::after {
  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);
  z-index: 1;
  pointer-events: none;
}
.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; }
.stars { display: inline-flex; gap: 1px; color: var(--navy-900); }
.star { width: 10px; height: 10px; fill: currentColor; }
.trust-icon { width: 16px; height: 16px; color: var(--navy-900); flex-shrink: 0; }
.score { color: var(--gray-700); font-size: 12px; font-weight: 600; line-height: 1.3; }
.trust-inline { display: none; }
.trust-item { display: flex; align-items: center; gap: 6px; }
.kpi { font-weight: 600; color: var(--navy-900); font-size: 12px; 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); }

/* Trust Pills - below video */
.trust-pills {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  flex-wrap: nowrap;
  justify-content: center;
  position: relative;
  z-index: 10;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  padding: 9px 14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--navy-900);
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.trust-pill .trust-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.trust-pill .kpi {
  font-size: 12px;
  font-weight: 500;
}

/* Hero Trust Strip */
/* Trusted By Section */
.trusted-by-section {
  padding: 80px 0 40px;
}

.trusted-by-title {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-500);
  margin: 0 0 48px;
}

.trust-strip-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 64px;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.trust-strip-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-strip-logo {
  height: 32px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  opacity: 1;
  transition: all 0.3s ease;
}

/* Special constraints for circular/square logos */
.trust-strip-logo[alt="G2"] {
  max-width: 40px !important;
  max-height: 40px !important;
  height: auto !important;
}

.trust-strip-logo[alt="Gartner"] {
  height: 24px;
  max-width: 120px;
}

.trust-strip-logo[alt="GetVoip"],
.trust-strip-logo[alt="GetVoIP"] {
  height: 30px;
  max-width: 130px;
}

.trust-strip-item:hover .trust-strip-logo {
  transform: scale(1.05);
}

.trust-strip-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-strip-rating .stars-small {
  color: #fbbf24;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.trust-strip-rating .rating-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-600);
}

/* 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: 19px !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: 48px 0 6px; }

  /* Scale down hero background gradients for mobile */
  .hero::before {
    width: 600px;
    height: 600px;
    top: -100px;
    right: -150px;
    filter: blur(80px);
  }

  .hero::after {
    width: 500px;
    height: 500px;
    bottom: -100px;
    left: -100px;
    filter: blur(80px);
  }
  .container { padding: 0 16px; }
  .hero .container {
    overflow-x: visible;
  }
  .hero-copy h1 { font-size: 44px; margin-bottom: 20px; }
  .hero-subheadline { font-size: 18px; margin-bottom: 28px; }
  .hero-badge { font-size: 12px; padding: 0; margin-bottom: 20px; gap: 6px; }
  .hero-rating-stars { font-size: 12px; letter-spacing: 1.3px; }
  .hero-rating-source { font-size: 12px; }
  .hero-rating-brand { font-weight: 700; letter-spacing: 0; }
  .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; }
  .trust-pills { margin-top: 20px; gap: 8px; justify-content: center; }
  .trust-pill { padding: 8px 12px; font-size: 12px; }
  .trust-pill .trust-icon { width: 14px; height: 14px; }
  .star { width: 12px; height: 12px; }
  .trust-icon { width: 14px; height: 14px; }

  /* Hero Trust Strip - Mobile */
  .hero-trust-strip {
    padding: 32px 0;
    margin: 0;
  }

  .trusted-by-section {
    padding: 48px 0 24px;
  }

  .trusted-by-title {
    font-size: 12px;
    margin-bottom: 32px;
    letter-spacing: 0.08em;
  }

  /* Reduce reliability section top padding on mobile */
  .reliability-section {
    padding: 48px 0 60px;
  }

  /* Reduce advantages section top padding on mobile */
  .ai-demos {
    padding: 48px 0 60px;
  }

  /* Reduce pricing section top padding on mobile */
  .simple-pricing {
    padding: 48px 0;
  }

  /* Reduce setup steps section top padding on mobile */
  .setup-steps-section {
    padding: 48px 0;
  }

  /* Reduce xbert action section top padding on mobile */
  .xbert-action-section {
    padding: 24px 0 48px;
  }

  .trust-strip-logos {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 48px;
  }

  .trust-strip-item {
    gap: 8px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  /* Force small logo sizes on mobile */
  .trusted-by-section .trust-strip-logo,
  img.trust-strip-logo {
    height: 32px !important;
    max-width: 120px !important;
    max-height: 32px !important;
    width: auto !important;
    object-fit: contain !important;
    display: block !important;
  }

  /* Special constraints for circular/square logos on mobile */
  .trusted-by-section .trust-strip-logo[alt="G2"],
  img.trust-strip-logo[alt="G2"] {
    max-width: 28px !important;
    max-height: 28px !important;
    height: 28px !important;
    width: auto !important;
  }

  .trusted-by-section .trust-strip-logo[alt="Trustpilot"],
  img.trust-strip-logo[alt="Trustpilot"] {
    height: 28px !important;
    max-width: 110px !important;
    max-height: 28px !important;
  }

  .trusted-by-section .trust-strip-logo[alt="Gartner"],
  img.trust-strip-logo[alt="Gartner"] {
    height: 24px !important;
    max-width: 100px !important;
    max-height: 24px !important;
  }

  .trusted-by-section .trust-strip-logo[alt="GetVoip"],
  .trusted-by-section .trust-strip-logo[alt="GetVoIP"],
  img.trust-strip-logo[alt="GetVoip"],
  img.trust-strip-logo[alt="GetVoIP"] {
    height: 26px !important;
    max-width: 105px !important;
    max-height: 26px !important;
  }

  .trust-strip-rating {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
  }

  .trust-strip-rating .stars-small {
    font-size: 12px;
  }

  .trust-strip-rating .rating-text {
    font-size: 12px;
    font-weight: 600;
  }
}

@media (max-width: 480px) {
  /* Extra small mobile adjustments */
  .brand-logo {
    height: 17px !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.05; }
  .hero-subheadline { font-size: 17px; margin-bottom: 24px; }
  .hero-benefits { flex-direction: column; gap: 16px; align-items: flex-start; }
  .hero-form { max-width: 100%; }
  .container { padding: 0 12px; }
  .hero .container {
    overflow-x: visible;
  }
}

@media (min-width: 1024px) {
  .hero-visual { display: block; }
}

/* Hero Video */
.hero-video-wrapper {
  padding: 40px 0 40px 0;
  overflow: visible;
  /* Extend beyond container padding to allow shadow to render fully */
  margin-left: -24px;
  margin-right: -24px;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
  z-index: 1;
}

.hero-video-container {
  width: 100%;
  border-radius: 16px;
  /* Dramatic multi-layer floating shadow with subtle blue tint */
  box-shadow:
    0 40px 80px rgba(43, 92, 255, 0.15),
    0 20px 40px rgba(43, 92, 255, 0.10),
    0 10px 20px rgba(43, 92, 255, 0.08),
    0 0 0 1px rgba(0, 0, 0, 0.02);
  border: 1px solid var(--border);
  overflow: visible;
  transform: translateY(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-video-container .wistia_responsive_padding {
  border-radius: 16px;
  overflow: hidden;
}

/* Wistia Play Button - Blue Gradient (All Videos) */
.w-big-play-button,
.w-vulcan-v2-button,
.w-css-reset .w-vulcan-v2-button,
.w-vulcan-button,
.wistia_placebo_close_button,
button.w-vulcan-v2-button {
  background: linear-gradient(135deg, #2b5cff 0%, #5b7cff 100%) !important;
  background-color: #2b5cff !important;
  border: none !important;
}

.w-big-play-button svg,
.w-vulcan-v2-button svg,
.w-vulcan-button svg {
  fill: white !important;
  color: white !important;
}

/* Prevent custom styling on Wistia captions */
.w-css-reset [class*="captions"],
.w-css-reset [class*="caption"],
.w-captions-container,
.w-captions-layer,
[class*="w-captions"],
[class*="w-caption"] {
  background: none !important;
  background-color: transparent !important;
}

@media (max-width: 1023px) {
  .hero-video { padding: 0; }
  .hero-video-wrapper {
    padding: 30px 0 30px 0;
    margin-left: -24px;
    margin-right: -24px;
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 768px) {
  .hero-video {
    padding: 8px 0 20px 0;
    width: 100%;
    margin: 0;
  }

  .hero-video-wrapper {
    margin: 0;
    padding: 12px 0 20px 0;
    width: 100%;
  }

  .hero-video-container {
    width: 100%;
    margin: 0 auto;
    max-width: 100%;
  }

  .hero-grid {
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .hero-video {
    padding: 8px 0 16px 0;
    margin: 0;
  }

  .hero-video-wrapper {
    margin: 0;
    padding: 12px 0 16px 0;
  }

  .hero-video-container {
    width: 100%;
    max-width: 100%;
  }

  .hero-cta .btn {
    padding: 10px 16px;
  }
}


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

.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;
  width: 100%;
  max-width: none;
}

.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: 28px;
  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: 15px;
  line-height: 1.6;
  color: var(--white);
  font-weight: 400;
}

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

.hero-testimonial-author strong {
  font-weight: 500;
  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: 0 auto;
    padding: 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: 700;
  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: 600;
  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 CTA Card */
.industry-cta-card {
  background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
  border: 2px solid rgba(43, 92, 255, 0.2);
  position: relative;
  overflow: hidden;
}

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

.industry-cta-card:hover {
  border-color: rgba(43, 92, 255, 0.35);
  background: linear-gradient(135deg, #f0f5ff 0%, #ffffff 100%);
}

.industry-cta-btn {
  margin-top: auto;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.industry-cta-btn.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;
}
.industry-cta-btn.btn.solid::after {
  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);
  z-index: 1;
  pointer-events: none;
}

.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: 700;
  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: 600;
  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: 600;
  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;
}
.setup-steps-cta .btn.solid {
  position: relative;
  overflow: hidden;
}
.setup-steps-cta .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;
}
.setup-steps-cta .btn.solid::after {
  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);
  z-index: 1;
  pointer-events: none;
}

@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: 700;
  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: 600;
  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;
}
.capabilities-cta .btn.solid {
  position: relative;
  overflow: hidden;
}
.capabilities-cta .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;
}
.capabilities-cta .btn.solid::after {
  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);
  z-index: 1;
  pointer-events: none;
}

@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: 700;
  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 0 16px 0;
  font-size: 16px;
}

.faq-full-answer p:last-child {
  margin-bottom: 0;
}

@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: 600;
  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;
  }
}

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

.popular-uses-title {
  text-align: center;
  font-size: 52px;
  font-weight: 700;
  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;
}

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

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

.use-case-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.use-case-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border-color: rgba(43, 92, 255, 0.2);
}

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

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

.use-case-item h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 600;
  color: var(--navy-900);
  line-height: 1.3;
}

.use-case-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--gray-700);
}

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

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

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

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

  .popular-uses-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .use-case-item {
    padding: 24px;
  }

  .use-case-item h3 {
    font-size: 17px;
  }
}

/* XBert in Action Section */
.xbert-action-section {
  padding: 40px 0 96px;
  background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
}

.xbert-action-section .container {
  padding-left: 0;
  padding-right: 0;
}

.xbert-action-title {
  text-align: left;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #475569 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 24px;
  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;
}

/* Show All Button for Mobile Audio Cards */
.show-all-audio-btn {
  display: none;
  margin: 24px auto 0;
  padding: 12px 24px;
  background: linear-gradient(135deg, #2b5cff 0%, #5b7cff 100%);
  color: white;
  border: none;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(43, 92, 255, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
}

.show-all-audio-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(43, 92, 255, 0.4);
}

.show-all-audio-btn:active {
  transform: translateY(0);
}

@media (max-width: 899px) {
  .show-all-audio-btn {
    display: block;
  }

  .industry-samples-grid.show-all + .show-all-audio-btn {
    display: none;
  }
}

.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: 600;
  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;
  flex-direction: column;
  align-items: stretch;
  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-toolbar {
  width: 100%;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  padding: 0;
  margin-bottom: 2px;
}

.industry-audio-body {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  flex-wrap: wrap;
}

.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;
}
.xbert-action-cta .btn.solid {
  position: relative;
  overflow: hidden;
}
.xbert-action-cta .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;
}
.xbert-action-cta .btn.solid::after {
  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);
  z-index: 1;
  pointer-events: none;
}

/* Comparison Table Styles */
.comparison-subsection {
  margin-top: 80px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.comparison-subsection .section-badge-center {
  text-align: left;
  margin-bottom: 16px;
}

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

.comparison-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;
}

.comparison-title {
  text-align: left;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--navy-900);
  margin: 0 0 20px;
  max-width: 1000px;
  position: relative;
  z-index: 1;
}

.comparison-subtitle {
  font-size: 20px;
  color: var(--gray-500);
  text-align: left;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

.comparison-table {
  border: none;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.comparison-table::before {
  display: none;
}

.comparison-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.comparison-col {
  padding: 0 0 12px 0;
  font-size: 13px;
  font-weight: 600;
  text-align: left;
  position: relative;
  z-index: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
  border-bottom: 1px solid var(--gray-200);
}

.comparison-col.ai-col {
  position: relative;
  overflow: visible;
  background: transparent;
  background-size: auto;
  animation: none;
  color: var(--blue-500);
}

.comparison-col.ai-col::before {
  display: none;
}

.comparison-col.ai-col > * {
  position: relative;
  z-index: 1;
}

@keyframes aiGradientFlow {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes aiShimmer {
  0% {
    left: -100%;
  }
  50%, 100% {
    left: 100%;
  }
}

.comparison-col.human-col {
  background: transparent;
  border-left: none;
  border-bottom: 1px solid var(--gray-200);
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  border-top: none;
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}

.comparison-cell {
  padding: 0;
  font-size: 17px;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 500;
  line-height: 1.5;
}

.comparison-cell:first-child {
  border-right: none;
}

.comparison-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  stroke-width: 2;
  margin-top: 2px;
}

.comparison-icon.positive {
  color: var(--blue-500);
  stroke: var(--blue-500);
}

.comparison-icon.negative {
  color: #cbd5e1;
  stroke: #cbd5e1;
}

.comparison-cta {
  text-align: center;
  margin-top: 40px;
}
.comparison-cta .btn.solid {
  position: relative;
  overflow: hidden;
}
.comparison-cta .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;
}
.comparison-cta .btn.solid::after {
  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);
  z-index: 1;
  pointer-events: none;
}

.comparison-footer {
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  text-align: center;
  margin-top: 32px;
  margin-bottom: 0;
}

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

  .xbert-action-section .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .xbert-action-title {
    font-size: 28px;
    margin-bottom: 24px;
    padding: 0 16px;
  }

  .industry-samples-grid {
    padding: 0 16px;
  }

  .industry-sample-card {
    margin: 0;
  }

  /* Hide audio cards beyond 3rd on mobile */
  .industry-sample-card:nth-child(n+4) {
    display: none;
  }

  .industry-samples-grid.show-all .industry-sample-card {
    display: block;
  }

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

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

  .comparison-subsection {
    margin-top: 60px;
  }

  .comparison-card {
    padding: 32px 24px;
  }

  .comparison-title {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .comparison-subtitle {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .comparison-header {
    gap: 24px;
  }

  .comparison-col {
    font-size: 12px;
    padding: 0 0 10px 0;
  }

  .comparison-row {
    gap: 24px;
    margin-bottom: 20px;
  }

  .comparison-cell {
    font-size: 15px;
    padding: 0;
    gap: 10px;
  }

  .comparison-icon {
    width: 20px;
    height: 20px;
  }

  .comparison-cta {
    margin-top: 32px;
  }

  .comparison-footer {
    font-size: 18px;
    padding: 0 20px;
  }
}

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

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

  .comparison-subsection {
    margin-top: 40px;
  }

  .comparison-card {
    padding: 24px 20px;
  }

  .comparison-title {
    font-size: 24px;
  }

  .comparison-subtitle {
    font-size: 14px;
  }

  .comparison-header {
    gap: 20px;
  }

  .comparison-col {
    font-size: 11px;
    padding: 0 0 8px 0;
  }

  .comparison-row {
    gap: 20px;
    margin-bottom: 18px;
  }

  .comparison-cell {
    font-size: 14px;
    padding: 0;
    gap: 8px;
  }

  .comparison-icon {
    width: 18px;
    height: 18px;
  }

  .comparison-cta {
    margin-top: 24px;
  }

  .comparison-footer {
    font-size: 16px;
  }
}

/* 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.2; letter-spacing: -0.02em; font-weight: 700; margin-bottom: 16px; }
.simple-pricing .section-head p { font-size: 18px; color: var(--gray-600); margin: 0; }
.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: var(--bg-secondary); color: var(--text); font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 20px; border: 1px solid var(--border); position: relative; }
.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; }

/* Tooltip Styles */
.tooltip-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: help;
  margin: 0 2px;
}

.info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gray-400);
  color: white;
  font-size: 11px;
  font-weight: 700;
  transition: background 0.2s ease;
}

.tooltip-wrapper:hover .info-icon {
  background: #2b5cff;
}

.tooltip-text {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  padding: 12px 16px;
  background: var(--navy-900);
  color: var(--white);
  font-size: 13px;
  line-height: 1.5;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  pointer-events: none;
  z-index: 1000;
  text-align: left;
  font-weight: 400;
}

.tooltip-text::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid var(--navy-900);
}

.tooltip-wrapper:hover .tooltip-text {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px) {
  .tooltip-text {
    width: 280px;
    font-size: 12px;
  }
}

.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 { border: none !important; outline: none; }
.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; border: none !important; outline: none; }
.pricing-main-card .btn.solid:focus { border: none !important; outline: none; }
.pricing-main-card .btn.solid:hover { border: none !important; }
.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: -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); z-index: 1; pointer-events: none; }

@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,
.promo-card h3.h4-style { margin: 0 0 12px; font-size: 28px; color: var(--white); font-weight: 600; }
.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; }
.promo-disclaimer { margin-top: 16px; }
.promo-disclaimer p { margin: 0; font-size: 12px; color: rgba(255, 255, 255, 0.7); line-height: 1.4; }

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

@media (max-width: 899px) {
  .simple-pricing { padding: 60px 0; }
  .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;
}

/* Special constraints for circular/square logos in pricing section */
.badge-logo-img[alt="G2"] {
  max-width: 45px !important;
  max-height: 45px !important;
  height: auto !important;
}

.badge-logo-img[alt="Gartner"] {
  height: 32px !important;
  max-width: 130px !important;
}

.badge-logo-img[alt="GetVoip"],
.badge-logo-img[alt="GetVoIP"] {
  height: 36px !important;
  max-width: 140px !important;
}

.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 */
  }

  /* Special constraints for circular/square logos in pricing section on mobile */
  .badge-logo-img[alt="G2"] {
    max-width: 32px !important;
    max-height: 32px !important;
    height: auto !important;
  }

  .badge-logo-img[alt="Gartner"] {
    height: 24px !important;
    max-width: 90px !important;
  }

  .badge-logo-img[alt="GetVoip"],
  .badge-logo-img[alt="GetVoIP"] {
    height: 28px !important;
    max-width: 100px !important;
  }

  .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, #0d1b3a 0%, #152a5c 50%, #1a3670 100%);
  background-size: 200% 200%;
  animation: gradient-shift 40s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  animation-play-state: paused;
  position: relative;
  overflow: hidden;
}

/* Performance optimization: Only animate when in view (controlled by Intersection Observer) */
.final-cta-hero.animate-blobs {
  animation-play-state: running;
}

.final-cta-hero.animate-blobs::before,
.final-cta-hero.animate-blobs::after,
.final-cta-hero.animate-blobs .gradient-blob {
  animation-play-state: running;
}

/* Performance notes:
   - Animations paused by default, activated via Intersection Observer
   - Uses GPU-accelerated properties: transform, opacity
   - will-change: transform hints browser for optimization
   - Blur and blend modes are heavy but only active when visible
*/

@keyframes gradient-shift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Animated gradient blob 1 - moves diagonally with yellow accent */
.final-cta-hero::before {
  content: '';
  position: absolute;
  top: -15%;
  left: -15%;
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, rgba(255, 230, 80, 0.4) 0%, rgba(43, 92, 255, 0.28) 30%, rgba(91, 124, 255, 0.18) 50%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  animation: float-blob-1 18s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite paused;
  animation-delay: -2s;
  will-change: transform;
}

/* Animated gradient blob 2 - moves opposite direction with teal */
.final-cta-hero::after {
  content: '';
  position: absolute;
  bottom: -25%;
  right: -15%;
  width: 1100px;
  height: 1100px;
  background: radial-gradient(circle, rgba(54, 194, 180, 0.3) 0%, rgba(43, 92, 255, 0.2) 40%, transparent 70%);
  filter: blur(45px);
  pointer-events: none;
  animation: float-blob-2 22s cubic-bezier(0.42, 0, 0.58, 1) infinite paused;
  animation-delay: -5s;
  will-change: transform;
}

/* Keyframe animations for underwater floating effect - organic flowing movement */
@keyframes float-blob-1 {
  0% {
    transform: translate(0, 0) scale(1) rotate(0deg);
    opacity: 0.85;
  }
  15% {
    transform: translate(200px, -150px) scale(1.15) rotate(3deg);
    opacity: 0.95;
  }
  35% {
    transform: translate(420px, -320px) scale(1.45) rotate(-5deg);
    opacity: 1;
  }
  55% {
    transform: translate(250px, -280px) scale(1.1) rotate(8deg);
    opacity: 0.8;
  }
  70% {
    transform: translate(-80px, -400px) scale(0.75) rotate(-10deg);
    opacity: 0.7;
  }
  85% {
    transform: translate(-250px, -250px) scale(1.3) rotate(6deg);
    opacity: 0.95;
  }
  100% {
    transform: translate(0, 0) scale(1) rotate(0deg);
    opacity: 0.85;
  }
}

@keyframes float-blob-2 {
  0% {
    transform: translate(0, 0) scale(1) rotate(0deg);
    opacity: 0.8;
  }
  20% {
    transform: translate(-200px, 150px) scale(1.2) rotate(8deg);
    opacity: 0.9;
  }
  40% {
    transform: translate(-480px, 320px) scale(1.5) rotate(18deg);
    opacity: 1;
  }
  60% {
    transform: translate(-300px, 100px) scale(0.9) rotate(-6deg);
    opacity: 0.75;
  }
  75% {
    transform: translate(-150px, -200px) scale(0.7) rotate(-15deg);
    opacity: 0.65;
  }
  90% {
    transform: translate(100px, -100px) scale(1.25) rotate(5deg);
    opacity: 0.85;
  }
  100% {
    transform: translate(0, 0) scale(1) rotate(0deg);
    opacity: 0.8;
  }
}

@keyframes float-blob-3 {
  0% {
    transform: translate(0, 0) scale(1) rotate(0deg);
    opacity: 0.7;
  }
  18% {
    transform: translate(-150px, -180px) scale(1.25) rotate(-7deg);
    opacity: 0.85;
  }
  38% {
    transform: translate(-380px, -420px) scale(1.55) rotate(12deg);
    opacity: 0.98;
  }
  58% {
    transform: translate(100px, -300px) scale(0.85) rotate(-5deg);
    opacity: 0.75;
  }
  72% {
    transform: translate(340px, -220px) scale(0.7) rotate(15deg);
    opacity: 0.8;
  }
  88% {
    transform: translate(180px, 80px) scale(1.35) rotate(-8deg);
    opacity: 0.9;
  }
  100% {
    transform: translate(0, 0) scale(1) rotate(0deg);
    opacity: 0.7;
  }
}

@keyframes float-blob-4 {
  0% {
    transform: translate(0, 0) scale(1) rotate(0deg);
    opacity: 0.75;
  }
  22% {
    transform: translate(180px, 180px) scale(1.15) rotate(-12deg);
    opacity: 0.88;
  }
  45% {
    transform: translate(400px, 380px) scale(1.45) rotate(-28deg);
    opacity: 0.98;
  }
  65% {
    transform: translate(200px, 150px) scale(0.8) rotate(10deg);
    opacity: 0.7;
  }
  82% {
    transform: translate(-100px, 250px) scale(1.25) rotate(-15deg);
    opacity: 0.85;
  }
  100% {
    transform: translate(0, 0) scale(1) rotate(0deg);
    opacity: 0.75;
  }
}


/* Additional floating gradient blobs for enhanced underwater effect */
.gradient-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(50px);
  will-change: transform;
  mix-blend-mode: screen;
}

.gradient-blob-3 {
  top: 40%;
  left: 10%;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(255, 240, 100, 0.38) 0%, rgba(91, 124, 255, 0.24) 40%, transparent 70%);
  animation: float-blob-3 24s cubic-bezier(0.4, 0.1, 0.6, 0.9) infinite paused;
  animation-delay: -8s;
}

.gradient-blob-4 {
  top: -15%;
  right: -15%;
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, rgba(255, 240, 100, 0.4) 0%, rgba(255, 230, 80, 0.32) 20%, rgba(91, 124, 255, 0.26) 45%, rgba(43, 92, 255, 0.18) 60%, transparent 75%);
  animation: float-blob-4 20s cubic-bezier(0.38, 0.02, 0.62, 0.98) infinite paused;
  animation-delay: -3s;
}


.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: 700;
  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;
}

.final-cta-form-container {
  margin-top: 48px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta-form {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  padding: 48px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(43, 92, 255, 0.1);
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 0;
}

.form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.form-field label {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.form-field input,
.form-field select {
  padding: 16px 20px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 17px;
  color: var(--navy-900);
  background: white;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.form-field input:hover,
.form-field select:hover {
  border-color: #cbd5e1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.form-field input::placeholder {
  color: #9ca3af;
}

.form-field input:focus,
.form-field select:focus {
  outline: none;
  border-color: #2b5cff;
  box-shadow: 0 0 0 4px rgba(43, 92, 255, 0.12), 0 4px 16px rgba(43, 92, 255, 0.15);
  transform: translateY(-1px);
}

.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 20px;
  padding-right: 48px;
  cursor: pointer;
}

.form-submit-btn {
  width: 100%;
  margin-top: 12px;
  margin-bottom: 16px;
  font-size: 19px;
  font-weight: 800;
  padding: 18px 32px;
  background: linear-gradient(135deg, #2b5cff 0%, #5b7cff 100%) !important;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(43, 92, 255, 0.3);
}

.form-submit-btn::after {
  display: none !important;
}

.form-submit-btn::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);
  z-index: 1;
  pointer-events: none;
}

.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(43, 92, 255, 0.4), 0 4px 12px rgba(43, 92, 255, 0.2);
}

.form-submit-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 12px rgba(43, 92, 255, 0.3);
}

.form-privacy {
  text-align: center;
  font-size: 12px;
  color: var(--gray-600);
  margin: 0;
  line-height: 1.4;
}

.form-privacy a {
  color: #2b5cff;
  text-decoration: underline;
}

/* Final CTA social proof - inherits all styling from pricing section, just override text color for dark bg */
.final-cta-hero .trust-intro {
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
  .final-cta-form {
    padding: 32px 24px;
  }

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

  .form-field {
    margin-bottom: 16px;
  }

  .form-field input,
  .form-field select {
    padding: 14px 18px;
    font-size: 16px;
  }

  .form-submit-btn {
    font-size: 18px;
    padding: 16px 28px;
  }
}

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

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

  /* Reduce gradient blob sizes and movement for better mobile performance */
  .final-cta-hero::before {
    width: 400px;
    height: 400px;
    filter: blur(30px);
  }

  .final-cta-hero::after {
    width: 450px;
    height: 450px;
    filter: blur(32px);
  }

  .gradient-blob-3 {
    width: 350px;
    height: 350px;
    filter: blur(35px);
  }

  .gradient-blob-4 {
    width: 300px;
    height: 300px;
    filter: blur(32px);
  }

  /* Reduce animation intensity on mobile for performance */
  @keyframes float-blob-1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(100px, -80px) scale(1.1); }
    50% { transform: translate(50px, -50px) scale(0.95); }
    75% { transform: translate(-50px, -90px) scale(1.05); }
  }

  @keyframes float-blob-2 {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
    33% { transform: translate(-110px, 70px) scale(1.15) rotate(5deg); }
    66% { transform: translate(-60px, -40px) scale(0.9) rotate(-3deg); }
  }

  @keyframes float-blob-3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    40% { transform: translate(-80px, -100px) scale(1.15); }
    80% { transform: translate(80px, -50px) scale(0.9); }
  }

  @keyframes float-blob-4 {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
    50% { transform: translate(90px, 90px) scale(1.1) rotate(-8deg); }
  }

  .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.05; 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):not(.trust-strip-logo), video, iframe, embed, object {
    max-width: 100% !important;
    height: auto !important;
  }

  /* Ensure brand logo respects its height settings */
  .brand-logo {
    height: 19px !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); transform: rotate(45deg); }
.video-headline h2 { font-size: 44px; line-height: 1.05; letter-spacing: -0.02em; color: var(--white); margin: 0; font-weight: 700; }

/* 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; }

/* Advantages Cards */
.advantages-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 80px;
  margin-top: 48px;
}

.advantage-card {
  background: linear-gradient(135deg, rgba(91, 124, 255, 0.1) 0%, rgba(43, 92, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 24px;
}

.card-icon {
  width: 40px;
  height: 40px;
  background: rgba(43, 92, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #5b7cff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(91, 124, 255, 0.2);
}

.card-icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  animation: iconShine 6s infinite;
}

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

.card-icon svg {
  width: 20px;
  height: 20px;
  z-index: 1;
  filter: drop-shadow(0 0 5px rgba(91, 124, 255, 0.4));
}

.advantage-card h3 {
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.advantage-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 992px) {
  .advantages-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .advantages-cards {
    grid-template-columns: 1fr;
  }
}

/* Demo CTA Button */
.demo-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: #2b5cff;
  color: white;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  margin-top: 20px;
  position: relative;
  overflow: hidden;
}

.demo-cta-btn::after {
  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);
  z-index: 1;
  pointer-events: none;
}

.demo-cta-btn:hover {
  background: #1e4fd9;
  transform: translateX(4px);
}

.demo-cta-btn span,
.demo-cta-btn svg {
  position: relative;
  z-index: 2;
}

.demo-cta-btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.demo-cta-btn:hover svg {
  transform: translateX(4px);
}

/* Demo flow - Z-pattern */
.features-main-title {
  text-align: center;
  font-size: 52px;
  font-weight: 700;
  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: 600;
  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); 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 20px; margin-top: 4px; font-size: 36px; color: var(--white); line-height: 1.1; }
.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; }

/* Status Dashboard Mockup - Matches other mockup styles */
.status-dashboard-mockup {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Header */
.availability-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.availability-status {
  display: flex;
  align-items: center;
  gap: 10px;
}

.status-dot-available {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
  animation: availablePulse 2s ease-in-out infinite;
}

@keyframes availablePulse {
  0%, 100% {
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
  }
}

.status-text-available {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy-900);
}

.uptime-badge {
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #10b981, #34d399);
  color: white;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

/* Stats Row */
.availability-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.stat-box {
  padding: 10px 12px;
  border-radius: 10px;
  background: #f9fafb;
  border: 1px solid var(--border);
  text-align: center;
}

.stat-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.stat-value {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy-900);
  line-height: 1;
}

/* Full Width Summary Button */
.stat-button-full {
  width: 100%;
  background: white;
  color: var(--navy-900);
  border: 2px solid #e7ebf3;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s ease;
  padding: 8px 12px;
  border-radius: 10px;
  margin-top: -8px;
}

.stat-button-full:hover {
  border-color: #d0d5dd;
  background: #f9fafb;
}

.stat-button-text {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.stat-button-icon {
  width: 14px;
  height: 14px;
  stroke-width: 2.5;
}

/* Recent Calls Section */
.recent-calls-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.call-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.call-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #f9fafb;
  border: 1px solid var(--border);
  opacity: 0;
  transition: background 0.2s ease;
  flex-wrap: wrap;
}

.call-row:hover {
  background: #f3f4f6;
}

.call-row-1 {
  animation: callRowAppear1 10s ease-in-out infinite;
}

.call-row-2 {
  animation: callRowAppear2 10s ease-in-out infinite;
}

.call-row-3 {
  animation: callRowAppear3 10s ease-in-out infinite;
}

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

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

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

.call-badge {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.time-badge {
  background: #e0f2fe;
  color: #0284c7;
}

.afterhours-badge {
  background: #fef3c7;
  color: #d97706;
}

.success-badge {
  background: #dcfce7;
  color: #16a34a;
  margin-left: auto;
}

.call-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--navy-900);
  flex: 1;
}

/* Call Summary Card Mockup */
.summary-card-mockup {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  animation: summarySlideIn 1s ease-out;
}

@keyframes summarySlideIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.summary-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.summary-header {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.summary-status {
  display: flex;
  align-items: center;
  gap: 12px;
}

.summary-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981, #34d399);
  display: grid;
  place-items: center;
  color: white;
  flex-shrink: 0;
}

.summary-icon svg {
  width: 22px;
  height: 22px;
}

.summary-title-group {
  flex: 1;
}

.summary-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 2px;
}

.summary-timestamp {
  font-size: 12px;
  color: var(--gray-600);
}

.summary-caller-info {
  display: flex;
  gap: 24px;
  padding: 12px 16px;
  background: #f9fafb;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.caller-detail {
  display: flex;
  align-items: center;
  gap: 8px;
}

.detail-icon-svg {
  width: 16px;
  height: 16px;
  color: var(--gray-600);
  flex-shrink: 0;
}

.caller-name,
.call-duration {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-900);
}

.summary-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.summary-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.summary-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray-700);
  margin: 0;
}

.summary-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.action-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.action-tag {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  background: #e0f2fe;
  color: #0284c7;
  border: 1px solid #bae6fd;
}

.action-tag.priority {
  background: #fef3c7;
  color: #d97706;
  border: 1px solid #fde68a;
}

/* Multi-Call Queue Dashboard Mockup */
.queue-dashboard-mockup {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.queue-header {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.queue-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.queue-stat-value {
  font-size: 28px;
  font-weight: 800;
  color: var(--navy-900);
  line-height: 1;
}

.active-calls-counter {
  color: #2b5cff;
}

.waiting-counter {
  color: #10b981;
}

.queue-stat-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.active-calls-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.call-card {
  padding: 12px 14px;
  border-radius: 12px;
  background: #f9fafb;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: scale(0.9);
}

.call-card-1 {
  animation: callCardAppear 10s ease-in-out infinite;
}

.call-card-2 {
  animation: callCardAppear 10s ease-in-out infinite 0.5s;
}

.call-card-3 {
  animation: callCardAppear 10s ease-in-out infinite 1s;
}

.call-card-4 {
  animation: callCardAppear 10s ease-in-out infinite 1.5s;
}

.call-card-5 {
  animation: callCardAppear 10s ease-in-out infinite 2s;
}

.call-card-6 {
  animation: callCardAppear 10s ease-in-out infinite 2.5s;
}

@keyframes callCardAppear {
  0% {
    opacity: 0;
    transform: scale(0.9) translateY(10px);
  }
  5% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
  85% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
  90% {
    opacity: 0;
    transform: scale(0.9) translateY(-10px);
  }
  100% {
    opacity: 0;
    transform: scale(0.9) translateY(-10px);
  }
}

.call-card-header {
  display: flex;
  align-items: center;
  gap: 6px;
}

.call-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  animation: callStatusPulse 2s ease-in-out infinite;
}

@keyframes callStatusPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  50% {
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0);
  }
}

.call-status-text {
  font-size: 11px;
  font-weight: 700;
  color: #10b981;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.call-card-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-900);
}

.call-card-time {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-600);
}

/* Performance Dashboard Mockup */
.performance-dashboard-mockup {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.performance-header {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.performance-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 4px;
}

.performance-period {
  font-size: 13px;
  color: var(--gray-600);
}

.line-charts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.chart-container {
  padding: 16px;
  border-radius: 12px;
  background: #f9fafb;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.chart-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-700);
}

.chart-trend {
  display: flex;
  align-items: center;
  gap: 4px;
}

.trend-arrow {
  font-size: 16px;
  font-weight: 700;
}

.trend-value {
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

.positive-trend {
  color: #10b981;
}

.negative-trend {
  color: #ef4444;
}

.line-chart {
  width: 100%;
  height: 60px;
  margin: 8px 0;
}

.chart-line {
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: drawLine 2s ease-out forwards;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

.green-line {
  filter: drop-shadow(0 2px 4px rgba(16, 185, 129, 0.3));
}

.red-line {
  filter: drop-shadow(0 2px 4px rgba(239, 68, 68, 0.3));
}

.chart-sublabel {
  font-size: 11px;
  color: var(--gray-600);
  text-align: center;
}

.chart-dot {
  animation: dotPulse 2s ease-in-out infinite;
  transform-origin: center;
  transform-box: fill-box;
}

@keyframes dotPulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

.green-dot {
  filter: drop-shadow(0 0 4px rgba(16, 185, 129, 0.6));
}

.red-dot {
  filter: drop-shadow(0 0 4px rgba(239, 68, 68, 0.6));
}

.revenue-impact {
  padding: 20px;
  border-radius: 12px;
  background: #f9fafb;
  border: 1px solid var(--border);
  text-align: center;
}

.impact-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.impact-value {
  font-size: 36px;
  font-weight: 900;
  color: var(--navy-900);
  line-height: 1;
  margin-bottom: 6px;
}

.impact-description {
  font-size: 13px;
  color: var(--gray-700);
}

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

.stat-item {
  padding: 14px;
  border-radius: 10px;
  background: #f9fafb;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
}

.stat-number {
  font-size: 28px;
  font-weight: 800;
  color: var(--navy-900);
  line-height: 1;
}

.stat-text {
  font-size: 12px;
  color: var(--gray-600);
  line-height: 1.3;
}

/* 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-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; cursor: pointer; }
.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; }

  /* Center demo CTA buttons on mobile */
  .demo-cta-btn {
    justify-content: center;
  }

  /* 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: 700;
  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.1; }
.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%;
    justify-content: center;
  }
}

/* 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.1; 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; }
}


/* Conversation Mockup */
.conversation-mockup {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 0;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: 100%; /* Ensure it takes full width of container */
}

.conversation-header {
  background: #f8fafc;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.caller-profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.profile-avatar {
  width: 40px;
  height: 40px;
  background: #e2e8f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
}

.profile-avatar svg {
  width: 20px;
  height: 20px;
}

.profile-name {
  font-weight: 600;
  color: var(--navy-900);
  font-size: 15px;
}

.profile-status {
  font-size: 13px;
  color: #10b981;
  display: flex;
  align-items: center;
  gap: 4px;
}

.ai-indicator {
  font-size: 12px;
  font-weight: 600;
  color: #2b5cff;
  background: rgba(43, 92, 255, 0.1);
  padding: 4px 10px;
  border-radius: 99px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.ai-dot {
  width: 6px;
  height: 6px;
  background: #2b5cff;
  border-radius: 50%;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(43, 92, 255, 0.4); }
  70% { box-shadow: 0 0 0 6px rgba(43, 92, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(43, 92, 255, 0); }
}

.message-list {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  background: white;
}

.message-left {
  justify-content: flex-start;
}

.message-right {
  justify-content: flex-end;
}

/* AI Message Wrapper */
.message-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  max-width: 80%;
}

/* AI Label */
.ai-label {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  color: #64748b;
  padding: 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ai-label svg {
  width: 14px;
  height: 14px;
  stroke: #2b5cff;
  stroke-width: 2.5;
}

.message-left .message-bubble {
  background: #f1f5f9;
  color: var(--navy-900);
  border-bottom-left-radius: 4px;
}

.message-right .message-bubble {
  background: #2b5cff;
  color: white;
  border-bottom-right-radius: 4px;
  width: 100%;
}

.message-right .message-bubble span {
  color: white;
}

/* Animation Sequence */
.msg-1 { animation: fadeUpIn 0.5s forwards 0.5s; }
.msg-2 { animation: fadeUpIn 0.5s forwards 2s; }
.msg-3 { animation: fadeUpIn 0.5s forwards 4s; }
.msg-4 { animation: fadeUpIn 0.5s forwards 6s; }

@keyframes fadeUpIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.message-bubble {
  max-width: 80%;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.5;
  position: relative;
  display: block; /* Ensure it's block level for width calculation */
}

/* Fix for overlapping text in bubbles */
.message-bubble span.msg-text {
  display: inline-block;
}

/* Ensure message row has enough height */
.message-row {
  display: flex;
  opacity: 0;
  transform: translateY(10px);
  min-width: 0; /* Allow flex items to shrink */
}

/* Remove typing indicator styles if they are causing layout issues or ensure they are hidden properly */
.typing-indicator {
  display: none;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px; /* Add spacing if it were visible */
}

.typing-indicator span {
  width: 4px;
  height: 4px;
  background: white;
  border-radius: 50%;
  animation: typingBounce 1.4s infinite ease-in-out both;
}

.typing-indicator span:nth-child(1) { animation-delay: -0.32s; }
/* Message Grouping for Timestamps */
.message-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}

.message-timestamp-label {
  font-size: 11px;
  color: var(--gray-500);
  text-align: center;
  margin-bottom: 8px;
  font-weight: 600;
  opacity: 0.8;
}

/* Message Grouping for Timestamps */
.message-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}

.message-timestamp-label {
  font-size: 11px;
  color: var(--gray-500);
  text-align: center;
  margin-bottom: 8px;
  font-weight: 600;
  opacity: 0.8;
}


/*
===============================================
RELIABILITY / OBJECTION HANDLING SECTION
===============================================
*/
.reliability-section {
  background: linear-gradient(180deg, #fafbff 0%, #f0f4ff 100%);
  border-top: 1px solid #e5eaf5;
  position: relative;
  padding: 120px 0;
}

.reliability-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(43, 92, 255, 0.1) 50%, transparent 100%);
}

.reliability-grid {
  text-align: left;
}

.reliability-section .section-badge-center {
  text-align: left;
  margin-bottom: 16px;
}

.reliability-section .section-badge {
  display: inline-block;
  padding: 0;
  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;
  border: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  animation: gradientShine 3s linear infinite;
}

.reliability-main-heading {
  text-align: left;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--navy-900);
  margin: 0 0 48px;
  max-width: 100%;
}

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

  .reliability-main-heading {
    font-size: 32px;
    margin-bottom: 32px;
  }
}

.reliability-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

@media (max-width: 900px) {
  .reliability-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

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

.reliability-feature {
  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);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.reliability-feature::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;
}

/* Ensure the icon inside aligns with this new card style */
.reliability-feature .feature-icon {
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(43, 92, 255, 0.06);
  color: var(--blue-500);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.feature-icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(200, 210, 230, 0.4) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  animation: iconShine 6s infinite;
}

@keyframes iconShine {
  0% {
    left: -100%;
  }
  20% {
    left: 150%;
  }
  100% {
    left: 150%;
  }
}

.feature-icon svg {
  width: 26px;
  height: 26px;
  z-index: 1;
  position: relative;
}

.feature-text {
  width: 100%;
  position: relative;
  z-index: 1;
}

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

.feature-text p {
  font-size: 16px;
  color: var(--gray-600);
  margin: 0 0 16px;
  line-height: 1.6;
}

.feature-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto;
  position: relative;
  z-index: 1;
}

.feature-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(43, 92, 255, 0.08);
  color: var(--navy-900);
  font-size: 12px;
  font-weight: 700;
  border: 1px solid rgba(43, 92, 255, 0.15);
}

/* Integrations Card - Full Width */
.integrations-card {
  grid-column: 1 / -1;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 32px 40px;
  margin-top: 24px;
  text-align: left;
}

.integrations-card .feature-icon {
  margin-bottom: 8px;
}

.integrations-card .feature-text {
  width: 100%;
  margin-bottom: 16px;
}

.integrations-card .feature-text h3 {
  margin: 0 0 8px;
}

.integrations-card .feature-text p {
  margin: 0;
}

.integrations-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(43, 92, 255, 0.15) 0%, rgba(43, 92, 255, 0.05) 50%, rgba(43, 92, 255, 0.15) 100%);
  margin: 8px 0;
}

.integrations-badge {
  width: 100%;
  justify-content: center;
}

.integrations-logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px 32px;
  width: 100%;
  align-items: center;
  justify-items: center;
  position: relative;
  z-index: 1;
}

.integration-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  padding: 12px;
}

.integration-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Make Salesforce logo larger to compensate for extra whitespace in image */
.integration-logo img[alt="Salesforce"] {
  max-width: 180%;
  max-height: 180%;
}

/* Make Google Calendar logo larger */
.integration-logo img[alt="Google Calendar"] {
  max-width: 150%;
  max-height: 150%;
}

/* Make ServiceTitan logo grayscale */
.integration-logo img[alt="ServiceTitan"] {
  filter: grayscale(100%);
}

@media (max-width: 900px) {
  .integrations-card {
    padding: 28px;
    gap: 28px;
  }

  .integrations-card .feature-text {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .integrations-logos {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .integration-logo {
    height: 70px;
  }
}

@media (max-width: 600px) {
  .integrations-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .integration-logo {
    height: 60px;
  }
}
