:root {
  --c-primary: #d4421f;
  --c-primary-dark: #c7392a;
  --c-dark: #0f3444;
  --c-muted: #5a6573;
  --c-bg: #f7f9fa;
  --c-light: #ffffff;
  --c-accent: #00b4dc;
  --slider-track: #e2e8f0;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  overflow-x: hidden;
}

/* Dark mode CSS variables */
@media (prefers-color-scheme: dark) {
  :root {
    --c-primary: #d4421f;
    --c-primary-dark: #c7392a;
    --c-dark: #e1e1e1;
    --c-muted: #b3b3b3;
    --c-bg: #121212;
    --c-light: #2a2a2a;
    --c-accent: #00b4dc;

    /* Dark mode surfaces */
    --dm-bg-deep: #0a0a0a;
    --dm-bg-card: #1a1a2e;
    --dm-bg-input: #1e1e1e;
    --dm-bg-input-focus: #262626;

    /* Dark mode borders */
    --dm-border: #2d2d44;
    --dm-border-light: #404040;

    /* Dark mode text */
    --dm-text: #ffffff;
    --dm-text-light: #f0f0f0;
    --dm-text-muted: #a0aec0;
    --dm-text-subtle: #cbd5e0;
    --dm-text-caption: #cccccc;
    --dm-placeholder: #999999;

    --slider-track: #404040;

    /* Text on sections that stay light in dark mode */
    --dm-on-light: #000000;
    --dm-on-light-dark: #1a1a1a;
    --dm-on-light-muted: #333333;
  }
}
*,
*:before,
*:after {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--c-bg);
  color: var(--c-dark);
  line-height: 1.55;
  touch-action: manipulation;
  overflow-x: hidden;
}

/* Anchor target offset for fixed nav */
#inside,
#pricing,
#demo {
  scroll-margin-top: 80px;
}

/* Screen reader only content */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-to-content {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--c-primary);
  color: white;
  padding: 8px 16px;
  z-index: 10000;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border-radius: 0 0 8px 0;
  transition: top 0.2s ease;
}

.skip-to-content:focus {
  top: 0;
}

/* STANDARDIZED HEADING SYSTEM */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: var(--c-dark);
  line-height: 1.2;
}

/* H1 - Main Page Title */
h1 {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 20px;
  text-wrap: balance;
}

/* H2 - Section Headers */
h2 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
  text-wrap: balance;
}

/* H3 - Subsection Headers */
h3 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 12px;
}

/* H4 - Component Titles */
h4 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-bottom: 8px;
}

/* H5 - Small Headings */
h5 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.35;
  margin-bottom: 6px;
}

/* H6 - Micro Headings */
h6 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.4;
  margin-bottom: 4px;
  text-transform: uppercase;
}
a {
  color: var(--c-primary);
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px;
}
.btn {
  display: inline-block;
  background: var(--c-primary);
  color: #fff;
  font-weight: 700;
  padding: 20px 44px;
  border-radius: 12px;
  font-size: 18px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
  position: relative;
  overflow: hidden;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 66, 31, 0.35);
  background: linear-gradient(135deg, var(--c-primary) 0%, #ff8a5b 100%);
}
.btn:active {
  transform: translateY(-1px);
}
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}
.btn:hover::before {
  left: 100%;
}
.badge {
  display: inline-block;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 20px;
  background: var(--c-primary-dark);
  color: #fff;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
section {
  padding: 32px 0;
  position: relative;
}
section:nth-child(even) {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}
section:nth-child(odd) {
  background: #ffffff;
}
.flex {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.col {
  flex: 1 1 260px;
}

/* OPTIMIZED SECTION PADDING */
.stats-section {
  padding: 8px 0 16px 0;
}
.testimonial-section {
  padding: 25px 0;
}
.features-section {
  padding: 40px 0;
}

/* Header logo removed - now handled by navigation */

/* HERO LAYOUT */
.hero-section {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 40px;
  align-items: center;
  min-height: 520px;
  padding: 8px 0 16px 0;
}
.hero-content {
  text-align: left;
  max-width: 100%;
}
.hero-content h1,
.hero-content p,
.hero-content div[style*='margin-bottom:8px'] {
  max-width: 480px;
}
/* Hero Carousel Container */
.hero-carousel-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 32px;
  padding: 20px 0;
}

/* Sleek Header */
.carousel-header {
  margin-bottom: 24px;
  text-align: center;
}

.carousel-title {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  color: var(--c-dark);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.8) 100%);
  padding: 12px 24px;
  border-radius: 20px;
  border: 2px solid rgba(212, 66, 31, 0.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  transition: opacity 0.3s ease;
  position: relative;
  overflow: hidden;
}

.carousel-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 66, 31, 0.1), transparent);
  transition: left 0.6s ease;
}

.carousel-title:hover::before {
  left: 100%;
}

.carousel-title:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: rgba(212, 66, 31, 0.2);
}

.hero-phone {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Clean Phone Carousel - Base Mobile-First Size */
.hero-phone-carousel {
  position: relative;
  width: 320px;
  overflow: hidden;
  transition: height 0.3s ease;
}

.hero-phone-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.hero-phone-slide {
  min-width: 100%;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.hero-phone-slide img {
  width: 320px;
  height: auto;
  max-height: 480px;
  display: block;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.12));
  transition: transform 0.3s ease;
  object-fit: contain;
}

.hero-phone-slide img:hover {
  transform: translateY(-2px);
}

/* Device slide specific styling */
.hero-device-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}

.hero-device-slide img {
  width: 320px !important;
  height: auto !important;
  object-fit: contain;
}

/* Hero Phone Brand Label */
.hero-phone-label {
  position: absolute;
  bottom: -45px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: 8px 16px;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  font-size: 13px;
  font-weight: 600;
  color: var(--c-dark);
  border: 2px solid rgba(0, 180, 220, 0.1);
}

.brand-name {
  font-weight: 600;
  margin-right: 4px;
}

.brand-type {
  font-size: 11px;
  color: var(--c-muted);
  font-weight: 400;
}

/* Caption below carousel — normal flow, no absolute positioning */
.hero-carousel-caption {
  text-align: center;
  font-size: 14px;
  color: var(--c-dark);
  font-weight: 500;
  background: rgba(255, 255, 255, 0.9);
  padding: 8px 16px;
  border-radius: 8px;
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 10;
  margin-top: 12px;
}

.caption-brand-name {
  color: var(--c-dark);
  font-weight: 600;
  margin-right: 4px;
}

.caption-brand-type {
  color: var(--c-muted);
  font-weight: 400;
}

/* Logo link styling */
.desktop-nav-logo a,
.mobile-nav-logo a {
  display: inline-block;
  transition: transform 0.2s ease;
}

.desktop-nav-logo a:hover,
.mobile-nav-logo a:hover {
  transform: scale(1.05);
}

.desktop-nav-logo a:focus,
.mobile-nav-logo a:focus {
  outline: 2px solid var(--c-primary);
  outline-offset: 4px;
  border-radius: 4px;
}

/* Large screen optimizations */
/* SMALL TABLET: 769px-899px - Proportional scaling starts */
@media (min-width: 769px) and (max-width: 899px) {
  .hero-section {
    grid-template-columns: 1fr 0.6fr;
    gap: 20px;
    min-height: 400px;
    padding: 20px 0 32px 0;
  }
  .hero-phone {
    display: flex;
    justify-content: center;
    align-items: center;
    background: none !important;
  }
  /* Smooth proportional scaling for 770px-899px */
  .hero-phone-carousel {
    width: calc(280px + (320 - 280) * ((100vw - 770px) / (899 - 770)));
    max-width: 320px;
    min-width: 280px;
  }
  .hero-phone-slide img {
    width: calc(260px + (300 - 260) * ((100vw - 770px) / (899 - 770)));
    height: auto;
    max-width: 300px;
    max-height: 450px;
    min-width: 260px;
    object-fit: contain;
  }
  .hero-device-slide img {
    width: calc(240px + (280 - 240) * ((100vw - 770px) / (899 - 770)));
    height: auto;
    max-width: 280px;
    min-width: 240px;
    object-fit: contain;
  }
}

/* LARGE TABLET: 900px-1199px - Medium scaling */
@media (min-width: 900px) and (max-width: 1199px) {
  .hero-section {
    grid-template-columns: 1fr 0.75fr;
    gap: 32px;
    min-height: 450px;
    padding: 20px 0 36px 0;
  }
  .hero-phone {
    display: flex;
    justify-content: center;
    align-items: center;
    background: none !important;
  }
  .hero-carousel-container {
    margin-top: 36px;
  }
  /* Smooth proportional scaling for 900px-1199px */
  .hero-phone-carousel {
    width: calc(320px + (380 - 320) * ((100vw - 900px) / (1199 - 900)));
    max-width: 380px;
    min-width: 320px;
  }
  .hero-phone-slide img {
    width: calc(300px + (360 - 300) * ((100vw - 900px) / (1199 - 900)));
    height: auto;
    max-width: 360px;
    max-height: 540px;
    min-width: 300px;
    object-fit: contain;
  }
  .hero-device-slide img {
    width: calc(280px + (340 - 280) * ((100vw - 900px) / (1199 - 900)));
    height: auto;
    max-width: 340px;
    min-width: 280px;
    object-fit: contain;
  }
}

/* DESKTOP: 1200px-1599px - Large scaling */
@media (min-width: 1200px) and (max-width: 1599px) {
  .hero-section {
    grid-template-columns: 1fr 0.8fr;
    gap: 40px;
    min-height: 520px;
    padding: 24px 0 48px 0;
  }
  .hero-phone {
    display: flex;
    justify-content: center;
    align-items: center;
    background: none !important;
  }
  .hero-carousel-container {
    margin-top: 40px;
  }
  /* Smooth proportional scaling for 1200px-1599px */
  .hero-phone-carousel {
    width: calc(380px + (440 - 380) * ((100vw - 1200px) / (1599 - 1200)));
    max-width: 440px;
    min-width: 380px;
  }
  .hero-phone-slide img {
    width: calc(360px + (420 - 360) * ((100vw - 1200px) / (1599 - 1200)));
    height: auto;
    max-width: 420px;
    max-height: 630px;
    min-width: 360px;
    object-fit: contain;
  }
  .hero-device-slide img {
    width: calc(340px + (400 - 340) * ((100vw - 1200px) / (1599 - 1200)));
    height: auto;
    max-width: 400px;
    min-width: 340px;
    object-fit: contain;
  }
}

/* LARGE DESKTOP: 1600px+ - Maximum scaling */
@media (min-width: 1600px) {
  .hero-section {
    grid-template-columns: 1fr 0.85fr;
    gap: 48px;
    min-height: 600px;
    padding: 32px 0 56px 0;
  }
  .hero-phone {
    display: flex;
    justify-content: center;
    align-items: center;
    background: none !important;
  }
  .hero-carousel-container {
    margin-top: 48px;
  }
  /* Smooth proportional scaling for 1600px+ */
  .hero-phone-carousel {
    width: calc(440px + (500 - 440) * ((100vw - 1600px) / (2000 - 1600)));
    max-width: 500px;
    min-width: 440px;
  }
  .hero-phone-slide img {
    width: calc(420px + (480 - 420) * ((100vw - 1600px) / (2000 - 1600)));
    height: auto;
    max-width: 480px;
    max-height: 720px;
    min-width: 420px;
    object-fit: contain;
  }
  .hero-device-slide img {
    width: calc(400px + (460 - 400) * ((100vw - 1600px) / (2000 - 1600)));
    height: auto;
    max-width: 460px;
    min-width: 400px;
    object-fit: contain;
  }
}

/* ENHANCED LOGOS */
.logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: clamp(6px, 1.2vw, 12px);
  max-width: min(100%, 500px);
}
.logo-img {
  height: clamp(20px, 1.8vw, 24px);
  width: auto;
  max-width: 100%;
  opacity: 0.8;
  filter: grayscale(100%);
  transition:
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    filter 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  flex-shrink: 0;
  margin: clamp(2px, 0.4vw, 4px);
  cursor: pointer;
  object-fit: contain;
}
.logo-img:hover {
  transform: translateY(-2px) scale(1.05);
  opacity: 1;
  filter: grayscale(0%);
}
.logos img {
  height: clamp(32px, 3.5vw, 44px);
  opacity: 1;
  filter: none;
  transition:
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: clamp(6px, 0.8vw, 10px);
  background: rgba(248, 250, 252, 0.98);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(226, 232, 240, 0.8);
  flex-shrink: 0;
  width: auto;
  min-width: 38px;
  cursor: pointer;
}
.logos img:hover {
  transform: translateY(-4px) scale(1.08) rotate(2deg);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
  border-color: var(--c-primary);
  background: rgba(255, 255, 255, 1);
}

/* HERO SOCIAL PROOF */
.hero-social-proof {
  margin-top: 16px;
  max-width: 480px;
}
.endpoints-text {
  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}

/* MOBILE NAVIGATION - 2025 UX Standards */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  z-index: 1000;
  padding: 16px 24px;
  display: none;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.12);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transform: translateY(-100%);
  transition:
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-nav.visible {
  transform: translateY(0);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
}
.mobile-nav-logo img {
  height: 36px;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}
.mobile-nav-logo:hover img {
  transform: scale(1.05);
}
.mobile-nav-cta {
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
  color: white;
  border-radius: 12px;
  text-decoration: none;
  transition:
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(212, 66, 31, 0.3);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.3px;
  user-select: none !important;
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
}

.mobile-nav-cta:focus {
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-dark) 100%) !important;
  color: white !important;
  outline: 2px solid var(--c-primary) !important;
  outline-offset: 2px !important;
  box-shadow: 0 4px 16px rgba(212, 66, 31, 0.3) !important;
}

.mobile-nav-cta:focus:not(:focus-visible) {
  outline: none !important;
}
.mobile-nav-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}
.mobile-nav-cta:hover::before {
  left: 100%;
}
.mobile-nav-cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(212, 66, 31, 0.4);
  background: linear-gradient(135deg, var(--c-primary-dark) 0%, var(--c-primary) 100%);
}
.mobile-nav-cta:active {
  transform: translateY(0) scale(0.98);
}

.mobile-nav-cta.clicked {
  background: #888888 !important;
  color: #cccccc !important;
  cursor: not-allowed !important;
  transform: none !important;
  box-shadow: none !important;
}

.mobile-nav-cta.clicked:hover {
  background: #888888 !important;
  color: #cccccc !important;
  transform: none !important;
  box-shadow: none !important;
}

.mobile-nav-cta.clicked::before {
  display: none !important;
}

/* Progress Indicator */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--c-primary), var(--c-accent));
  z-index: 1001;
  transition: width 0.3s ease;
}

/* ENHANCED STATS */
.stats-section {
  background: linear-gradient(135deg, var(--c-primary-dark) 0%, var(--c-primary) 100%) !important;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
  pointer-events: none;
}
.stat-item {
  text-align: center;
  padding: 20px;
  transition:
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border-radius: 12px;
}
.stat-item:hover {
  transform: translateY(-8px) scale(1.03);
  background: rgba(212, 66, 31, 0.25);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}
.stat-item svg {
  transition:
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    filter 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}
.stat-item:hover svg {
  transform: scale(1.15) rotate(5deg);
  color: rgba(255, 255, 255, 1);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}
.stat-number {
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    text-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}
.stat-item:hover .stat-number {
  transform: scale(1.08) translateY(-2px);
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
.stat-label {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ENHANCED FEATURES */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}
.feature-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%);
  padding: 28px;
  border-radius: 16px;
  border-left: 4px solid var(--c-primary);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    border-left-width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(212, 66, 31, 0.08) 0%, rgba(0, 180, 220, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  border-left-width: 6px;
}
.feature-card:hover::before {
  opacity: 1;
}
.feature-card svg {
  transition:
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    filter 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.feature-card:hover svg {
  transform: scale(1.15) rotate(8deg);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}
.feature-card:nth-child(even) {
  border-left-color: var(--c-accent);
}
.feature-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--c-dark);
  margin-bottom: 12px;
  cursor: default;
  display: flex;
  align-items: center;
  justify-content: space-between;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.feature-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--c-muted);
}
/* FORM */
.form-card {
  max-width: 560px;
  margin: 0 auto;
  padding: 48px 32px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}
.field {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.field input {
  padding: 16px 20px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 16px;
  min-height: 56px;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}
.field input:focus {
  border-color: var(--c-primary);
  outline: 2px solid transparent;
  box-shadow: 0 0 0 3px rgba(212, 66, 31, 0.1);
  transform: translateY(-1px);
}
.error {
  display: none;
  font-size: 13px;
  color: #d4421f;
}
.btn-form {
  width: 100%;
  background: #94a3b8;
  cursor: not-allowed;
}
.btn-form.active {
  background: var(--c-primary);
  cursor: pointer;
}
.micro {
  margin-top: 16px;
  font-size: 13px;
  color: var(--c-muted);
  text-align: center;
}
.micro a {
  color: #c43a24;
  text-decoration: underline;
  font-weight: 600;
}

/* ===== CONSOLIDATED DARK MODE ===== */
@media (prefers-color-scheme: dark) {
  /* ---------- Section Backgrounds ---------- */
  section:nth-child(even),
  section:nth-child(odd) {
    background: var(--c-bg) !important;
    background-image: none !important;
  }

  /* ---------- Hero Section ---------- */
  .section-white,
  section[aria-label*='Hero'],
  section[aria-label*='hero'],
  section:first-of-type {
    background: var(--dm-on-light) !important;
    background-image: none !important;
    color: var(--dm-text);
  }

  .section-white .container,
  .section-white .hero-section {
    background: transparent !important;
  }

  .hero-content h1 {
    color: var(--dm-text) !important;
  }

  .hero-content p,
  .hero-subtitle {
    color: var(--dm-text) !important;
  }

  .hero-audience {
    color: var(--dm-text-muted) !important;
  }

  .hero-strong,
  .hero-strong-nowrap {
    color: var(--c-primary) !important;
  }

  .hero-list-item {
    color: var(--dm-text) !important;
  }

  .hero-checkmark {
    color: var(--c-primary) !important;
  }

  .hero-footer-text,
  .hero-disclaimer,
  .hero-social-proof-text {
    color: var(--dm-text) !important;
  }

  .logos-caption {
    color: var(--dm-text) !important;
  }

  .hero-social-proof p:first-child {
    color: var(--dm-placeholder);
  }

  .badge {
    background: rgba(212, 66, 31, 0.1) !important;
    color: var(--c-primary) !important;
    border: 1px solid rgba(212, 66, 31, 0.3) !important;
  }

  .hero-carousel-caption {
    color: var(--dm-text) !important;
    background: rgba(0, 0, 0, 0.7) !important;
    padding: 8px 16px !important;
    border-radius: 8px !important;
    backdrop-filter: blur(10px) !important;
  }

  .caption-brand-name {
    color: var(--dm-text) !important;
  }

  .caption-brand-type {
    color: var(--dm-text-caption) !important;
  }

  /* ---------- Navigation ---------- */
  .desktop-nav {
    background: rgba(31, 52, 68, 0.95) !important;
    border-bottom: 1px solid rgba(212, 66, 31, 0.2) !important;
  }

  .mobile-nav {
    background: rgba(31, 52, 68, 0.95) !important;
    border-bottom: 1px solid rgba(212, 66, 31, 0.2) !important;
  }

  .nav-link {
    color: var(--dm-text) !important;
  }

  .nav-cta,
  .mobile-nav-cta {
    background: var(--c-primary) !important;
    color: var(--dm-text) !important;
  }

  /* ---------- Social Proof Logos ---------- */
  .hero-social-proof {
    background: rgba(248, 250, 252, 0.95) !important;
    border-radius: 16px !important;
    padding: 16px !important;
    border: 1px solid rgba(226, 232, 240, 0.5) !important;
  }

  .hero-social-proof p:first-child {
    color: var(--dm-on-light-dark) !important;
  }

  .hero-social-proof .logos-caption {
    color: var(--dm-on-light-muted) !important;
  }

  /* ---------- Stats Section ---------- */
  .stat-item:hover {
    background: rgba(212, 66, 31, 0.15) !important;
  }

  .stat-item:hover .stat-number {
    color: var(--c-primary) !important;
  }

  .stat-item:hover svg {
    color: var(--c-primary) !important;
  }

  .stats-section::before {
    background: radial-gradient(circle at 30% 50%, rgba(0, 0, 0, 0.2) 0%, transparent 60%);
  }

  .stats-section svg {
    color: rgba(255, 255, 255, 0.9) !important;
  }

  /* ---------- Container Headings ---------- */
  .container h2,
  .container h3 {
    color: var(--dm-text);
  }

  .container p {
    color: var(--c-muted);
  }

  /* ---------- What's Inside / Features Section ---------- */
  .section-dark-blue,
  .section-dark-blue *,
  .features-section,
  .features-section * {
    color: var(--dm-text) !important;
  }

  .features-title,
  #features-heading,
  .section-dark-blue h2,
  .features-section h2 {
    color: var(--dm-text) !important;
  }

  .feature-card {
    color: var(--dm-on-light-dark) !important;
    background: rgba(255, 255, 255, 0.95) !important;
    border: 1px solid var(--dm-border-light);
  }

  .feature-card .feature-title {
    color: var(--dm-on-light-dark) !important;
  }

  .feature-card .feature-desc {
    color: var(--dm-on-light-muted) !important;
  }

  /* ---------- Demo Form ---------- */
  .form-card {
    background: var(--c-light);
    color: var(--c-dark);
    border: 1px solid var(--dm-border-light);
  }

  .field input {
    background: var(--dm-bg-input);
    border-color: var(--dm-border-light);
    color: var(--c-dark);
  }

  .field input:focus {
    border-color: var(--c-primary);
    background: var(--dm-bg-input-focus);
  }

  .field input::placeholder {
    color: var(--dm-placeholder);
  }

  /* ---------- Logos ---------- */
  .logos img {
    background: transparent;
    border: none;
    box-shadow: none;
  }

  /* ---------- Testimonial Section ---------- */
  .testimonial-section {
    background: linear-gradient(135deg, #0a1a1a 0%, #1a2a2a 100%) !important;
  }

  .testimonial-section svg path {
    fill: rgba(212, 66, 31, 0.6) !important;
  }

  /* ---------- Who It's For / Integrators ---------- */
  .section-gray-gradient {
    background: var(--c-bg) !important;
    color: var(--dm-text) !important;
  }

  .integrators-title,
  .integrator-card h3,
  .integrator-text {
    color: var(--dm-text) !important;
  }

  .integrator-card {
    background: var(--dm-bg-card) !important;
    color: var(--dm-text) !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3) !important;
    border-color: var(--dm-border) !important;
  }

  .integrator-card:hover {
    border-color: rgba(212, 66, 31, 0.35) !important;
    box-shadow:
      0 4px 14px rgba(0, 0, 0, 0.3),
      0 0 0 1px rgba(212, 66, 31, 0.15),
      inset 0 1px 0 rgba(212, 66, 31, 0.08) !important;
  }

  .integrator-card:nth-child(2):hover {
    border-color: rgba(0, 180, 220, 0.4) !important;
    box-shadow:
      0 4px 14px rgba(0, 0, 0, 0.3),
      0 0 0 1px rgba(0, 180, 220, 0.18),
      inset 0 1px 0 rgba(0, 180, 220, 0.1) !important;
  }

  /* ---------- Pricing Calculator ---------- */
  .pricing-calculator-compact {
    background: var(--dm-bg-card) !important;
    border-color: var(--dm-border) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
    color: var(--dm-text) !important;
  }

  .calc-title {
    color: var(--dm-text) !important;
  }

  .calc-subtitle,
  .input-label,
  .result-label,
  .feature-item {
    color: var(--dm-text-subtle) !important;
  }

  .location-input-compact {
    background: var(--dm-bg-input) !important;
    border-color: var(--dm-border-light) !important;
    color: var(--dm-text) !important;
  }

  .location-input-compact:focus {
    background: var(--dm-bg-input-focus) !important;
  }

  .location-slider-compact {
    background: var(--dm-border-light) !important;
  }

  .calc-results {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: var(--dm-border) !important;
  }

  .result-divider {
    background: var(--dm-border) !important;
  }

  .result-price {
    color: var(--c-primary) !important;
  }

  /* ---------- Hero Overlays ---------- */
  .hero-content::before {
    background: linear-gradient(
      90deg,
      rgba(18, 18, 18, 0.9) 0%,
      rgba(18, 18, 18, 0.3) 100%
    ) !important;
  }

  .hero-section::before {
    background: rgba(18, 18, 18, 0.97) !important;
  }

  /* ---------- Carousel Title ---------- */
  .carousel-title {
    background: linear-gradient(
      135deg,
      rgba(42, 42, 42, 0.9) 0%,
      rgba(30, 30, 30, 0.8) 100%
    ) !important;
    border-color: rgba(212, 66, 31, 0.2) !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3) !important;
  }

  /* ---------- Hero Phone Label ---------- */
  .hero-phone-label {
    background: var(--dm-bg-card) !important;
    border-color: rgba(0, 180, 220, 0.2) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
  }

  /* ---------- Logo Hover ---------- */
  .logos img:hover {
    background: rgba(42, 42, 42, 1) !important;
  }

  /* ---------- Form Error / Disabled ---------- */
  .error {
    color: #ff6b6b !important;
  }

  .btn-form {
    background: #4a5568 !important;
  }

  /* ---------- Proof Bar Quotes ---------- */
  .proof-quote {
    background: var(--dm-bg-card) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
  }

  .proof-quote:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4) !important;
  }

  /* ---------- Challenge / Solution Cards ---------- */
  .challenge-card {
    background: linear-gradient(
      135deg,
      rgba(239, 68, 68, 0.1) 0%,
      rgba(220, 38, 38, 0.05) 100%
    ) !important;
    border-color: rgba(239, 68, 68, 0.2) !important;
  }

  .solution-card-right {
    background: linear-gradient(
      135deg,
      rgba(16, 185, 129, 0.1) 0%,
      rgba(5, 150, 105, 0.05) 100%
    ) !important;
    border-color: rgba(16, 185, 129, 0.2) !important;
  }

  .challenge-title {
    color: #fca5a5 !important;
  }

  .challenge-text {
    color: #fca5a5 !important;
  }

  .solution-title {
    color: #6ee7b7 !important;
  }

  .solution-text {
    color: #6ee7b7 !important;
  }

  /* ---------- CTA Section ---------- */
  .section-dark,
  .section-dark *,
  .section-dark h1,
  .section-dark h2,
  .section-dark h3,
  .section-dark h4,
  .section-dark h5,
  .section-dark h6,
  .section-dark p,
  .section-dark span,
  .section-dark div,
  .section-dark a:not(.btn) {
    color: var(--dm-text) !important;
  }

  .section-dark .cta-email,
  .section-dark .cta-accent-strong {
    color: var(--c-accent) !important;
  }

  /* ---------- Footer Section ---------- */
  .section-footer {
    background: var(--dm-bg-deep) !important;
    border-top-color: var(--dm-border) !important;
  }

  footer,
  footer *,
  [class*='footer'],
  [class*='footer'] *,
  .section-footer,
  .section-footer *,
  .section-footer h1,
  .section-footer h2,
  .section-footer h3,
  .section-footer h4,
  .section-footer h5,
  .section-footer h6,
  .section-footer p,
  .section-footer a,
  .section-footer span,
  .section-footer div {
    color: var(--dm-text) !important;
  }

  .footer-tagline,
  .footer-section-title,
  .footer-link,
  .footer-contact-item,
  .footer-contact-label,
  .footer-contact-value,
  .footer-disclaimer,
  .footer-legal-link {
    color: var(--dm-text-muted) !important;
  }

  footer a {
    color: var(--c-primary) !important;
  }

  .footer-contact-item[href*='mailto'] {
    color: var(--c-accent) !important;
  }

  /* Footer tagline design */
  .footer-tagline-new {
    margin-top: 16px !important;
    margin-bottom: 8px !important;
    position: relative !important;
    padding: 10px 0 !important;
  }

  .footer-tagline-new::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 60px !important;
    height: 3px !important;
    background: linear-gradient(90deg, var(--c-primary) 0%, var(--c-accent) 100%) !important;
    border-radius: 2px !important;
    transition: width 0.3s ease !important;
  }

  .tagline-line1 {
    color: var(--dm-text) !important;
    font-size: 24px !important;
    font-weight: 800 !important;
    letter-spacing: 0.5px !important;
    line-height: 1.1 !important;
    margin-bottom: 6px !important;
    text-transform: uppercase !important;
    font-family: 'Helvetica Neue', Arial, sans-serif !important;
  }

  .tagline-line2 {
    color: var(--c-primary) !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    letter-spacing: 2px !important;
    line-height: 1.3 !important;
    text-transform: uppercase !important;
    margin-left: 4px !important;
    font-family: 'Helvetica Neue', Arial, sans-serif !important;
  }

  .footer-logo-container {
    margin-bottom: 32px !important;
  }

  .footer-logo-container:hover .footer-tagline-new::before {
    width: 80px !important;
  }

  /* Tagline responsive */
  @media (max-width: 768px) {
    .tagline-line1 {
      font-size: 20px !important;
      margin-bottom: 4px !important;
    }

    .tagline-line2 {
      font-size: 14px !important;
      letter-spacing: 1.5px !important;
    }

    .footer-tagline-new::before {
      width: 50px !important;
      height: 2px !important;
    }
  }

  /* ---------- Micro text ---------- */
  .micro {
    color: var(--dm-placeholder);
  }

  .micro a {
    color: #ff7961;
    text-decoration: underline;
  }

  /* ---------- Buttons ---------- */
  .btn {
    box-shadow: 0 4px 12px rgba(212, 66, 31, 0.25);
  }

  .btn:hover {
    box-shadow: 0 6px 20px rgba(212, 66, 31, 0.4);
  }

  /* ---------- SVG Icons ---------- */
  svg path[stroke='currentColor'] {
    stroke: var(--c-muted);
  }

  svg circle[stroke='currentColor'] {
    stroke: var(--c-muted);
  }

  svg rect[stroke='currentColor'] {
    stroke: var(--c-muted);
  }

  svg line[stroke='currentColor'] {
    stroke: var(--c-muted);
  }

  /* ---------- Accessibility ---------- */
  a:focus,
  button:focus,
  input:focus {
    outline: 2px solid var(--c-primary);
    outline-offset: 2px;
  }

  ::selection {
    background: rgba(212, 66, 31, 0.3);
    color: var(--dm-text);
  }

  /* ---------- Scrollbar ---------- */
  ::-webkit-scrollbar {
    width: 8px;
  }

  ::-webkit-scrollbar-track {
    background: var(--dm-bg-input-focus);
  }

  ::-webkit-scrollbar-thumb {
    background: var(--dm-border-light);
    border-radius: 4px;
  }

  ::-webkit-scrollbar-thumb:hover {
    background: #555555;
  }
}

/* PHONE VISIBILITY: Show at 770px and above */
@media (min-width: 770px) {
  .hero-phone {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background: none !important;
  }
}

/* Mobile-only product image - hidden on desktop (carousel shows instead) */
.hero-mobile-product {
  display: none;
}

/* MOBILE: Show hero phone carousel inline */
@media (max-width: 599px) {
  .hero-section {
    display: block;
    padding: 12px 0 8px 0;
    min-height: auto;
  }

  .hero-content {
    position: relative;
    text-align: left;
    max-width: 100%;
  }

  .hero-description {
    margin: 8px 0 !important;
  }

  .hero-subtitle {
    margin-bottom: 10px !important;
  }

  .hero-list-item {
    padding: 2px 0 !important;
  }

  .hero-cta-container {
    margin-top: 4px;
  }

  .hero-mobile-product {
    display: none;
  }

  .hero-carousel-container {
    margin-top: 20px;
    padding: 12px 0;
  }

  .hero-phone {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hero-phone-carousel {
    width: 200px;
    height: auto !important;
  }

  .hero-phone-slide img {
    width: 180px;
    max-height: 320px;
  }

  .hero-device-slide {
    padding: 10px 0;
  }

  .hero-device-slide img {
    width: 200px !important;
  }

  .hero-carousel-caption {
    display: block;
    font-size: 12px;
    padding: 6px 12px;
    margin-top: 8px;
  }

  /* Legacy rule - now handled by carousel container */

  /* Logo now handled by navigation */
  .badge {
    display: block;
    margin: 0 auto 10px auto;
    width: fit-content;
  }
  .hero-social-proof {
    max-width: 100%;
    margin-top: 16px;
    background: var(--c-bg);
    border-radius: 16px;
    padding: 16px;
    border: 1px solid rgba(226, 232, 240, 0.6);
  }
  .hero-social-proof p:first-child {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
  }
  .logos-with-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px !important;
  }
  .logos-container {
    justify-content: flex-start;
    gap: clamp(10px, 2.5vw, 14px);
    flex-wrap: wrap;
    max-width: 100%;
  }
  .logo-img {
    height: clamp(18px, 2.4vw, 22px);
    margin: clamp(2px, 0.5vw, 4px);
    background: none;
    border: none;
    padding: 0;
  }
  .endpoints-text {
    margin-left: 0 !important;
    margin-top: 8px;
  }
  .hero-content div[style*='margin-bottom:8px'] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }
  .hero-content div[style*='margin-bottom:8px'] a:last-child {
    white-space: nowrap;
    font-size: 15px;
  }
}

/* TABLET RESPONSIVE (770px-1024px) - Desktop-like layout with smaller phone */
@media (max-width: 1024px) and (min-width: 770px) {
  .hero-section {
    grid-template-columns: 1fr 0.65fr;
    gap: 24px;
    align-items: center;
    min-height: 420px;
    padding: 20px 0 32px 0;
  }
  .hero-phone {
    display: flex;
    justify-content: center;
    align-items: center;
    background: none !important;
  }
  .container {
    padding: 0 24px;
  }
  .hero-content {
    text-align: left;
    max-width: 100%;
    padding: 0 12px;
  }
  .hero-content h1,
  .hero-content p,
  .hero-content div[style*='margin-bottom:8px'] {
    max-width: 470px;
    margin-left: 0;
    margin-right: 0;
  }
  .hero-content h1 {
    font-size: 32px;
    line-height: 38px;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
  }
  .hero-content p {
    font-size: 17px;
    margin: 16px auto;
    max-width: 470px;
    line-height: 25px;
  }
  .hero-content p:last-of-type {
    font-size: 16px;
    margin: 0 auto 24px auto;
    line-height: 24px;
  }

  /* Logo now handled by navigation */
  .badge {
    display: block;
    margin: 0 auto 18px auto;
    width: fit-content;
    font-size: 11px;
    padding: 8px 20px;
  }

  /* Enhanced social proof on tablets */
  .hero-social-proof {
    max-width: 100%;
    margin-top: 28px;
    text-align: left;
  }
  .hero-social-proof p:first-child {
    font-size: 15px;
    margin-bottom: 18px;
    font-weight: 600;
    letter-spacing: 0.8px;
  }
  .logos-with-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px !important;
  }
  .logos-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 480px;
    margin: 0;
    justify-items: center;
  }
  .logo-img {
    height: clamp(16px, 2.2vw, 20px);
    min-width: 16px;
    padding: 0;
    background: none;
    border: none;
    margin: 0;
    display: block;
  }
  .endpoints-text {
    margin-left: 0 !important;
    margin-top: 0;
  }
  .hero-social-proof p:last-child {
    margin-top: 16px;
    font-size: 13px;
  }

  /* Enhanced CTA buttons on tablets */
  .hero-content div[style*='margin-bottom:8px'] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px !important;
  }
  .hero-content div[style*='margin-bottom:8px'] a:first-child {
    padding: 16px 32px;
    font-size: 16px;
  }
  .hero-content div[style*='margin-bottom:8px'] a:last-child {
    white-space: nowrap;
    font-size: 16px;
  }

  /* Enhanced micro text */
  .hero-content p[style*='font-size:13px'] {
    font-size: 14px;
    margin-bottom: 24px;
  }

  /* Stats section tablet optimization - 2x2 grid */
  .stats-section .flex {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
    flex-wrap: unset !important;
  }
  .stats-section .col {
    padding: 16px 8px;
  }
  .stat-number {
    font-size: 36px;
    line-height: 1;
    margin-bottom: 6px;
  }
  .stat-label {
    font-size: 13px;
    line-height: 1.2;
  }
}

/* MEDIUM TABLET OPTIMIZATION - Desktop-like layout for 8-10 inch tablets */
@media (max-width: 900px) and (min-width: 770px) {
  .hero-section {
    grid-template-columns: 1fr 0.6fr;
    gap: 20px;
    min-height: 400px;
  }
  .hero-content {
    text-align: left;
    max-width: 100%;
    padding: 0 12px;
  }
  .hero-content h1,
  .hero-content p,
  .hero-content div[style*='margin-bottom:8px'] {
    max-width: 460px;
    margin-left: 0;
    margin-right: 0;
  }
  .hero-content h1 {
    font-size: 38px;
    line-height: 46px;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
  }
  .hero-content p {
    font-size: 17px;
    margin: 16px auto;
    line-height: 25px;
  }
  .hero-content p:last-of-type {
    font-size: 16px;
    margin: 0 auto 24px auto;
    line-height: 24px;
  }

  /* Logo now handled by navigation */
  .badge {
    display: block;
    margin: 0 0 18px 0;
    width: fit-content;
    font-size: 11px;
    padding: 8px 20px;
  }

  /* Enhanced social proof for medium tablets */
  .hero-social-proof {
    max-width: 100%;
    margin-top: 28px;
    text-align: left;
  }
  .hero-social-proof p:first-child {
    font-size: 15px;
    margin-bottom: 18px;
    font-weight: 600;
    letter-spacing: 0.8px;
  }
  .logos-with-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px !important;
  }
  .logos-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 480px;
    margin: 0;
    justify-items: center;
  }
  .logo-img {
    height: clamp(16px, 2.2vw, 20px);
    min-width: 16px;
    padding: 0;
    background: none;
    border: none;
    margin: 0;
    display: block;
  }
  .endpoints-text {
    margin-left: 0 !important;
    margin-top: 0;
  }
  .hero-social-proof p:last-child {
    margin-top: 16px;
    font-size: 13px;
  }

  /* Enhanced CTA buttons for medium tablets */
  .hero-content div[style*='margin-bottom:8px'] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    margin-bottom: 16px !important;
  }
  .hero-content div[style*='margin-bottom:8px'] a:first-child {
    padding: 16px 32px;
    font-size: 16px;
  }
  .hero-content div[style*='margin-bottom:8px'] a:last-child {
    white-space: nowrap;
    font-size: 16px;
  }

  /* Enhanced micro text */
  .hero-content p[style*='font-size:13px'] {
    font-size: 14px;
    margin-bottom: 24px;
  }
}

/* LARGE TABLET OPTIMIZATION - Desktop-like layout for 11-12 inch tablets */
@media (min-width: 901px) and (max-width: 1024px) {
  .hero-section {
    grid-template-columns: 1fr 0.75fr;
    gap: 36px;
    min-height: 420px;
    padding: 20px 0 28px 0;
  }

  /* Enhanced hero content for large tablets */
  .hero-content {
    text-align: left;
    max-width: 100%;
    padding: 0 16px;
  }
  .hero-content h1,
  .hero-content p,
  .hero-content div[style*='margin-bottom:8px'] {
    max-width: 480px;
    margin-left: 0;
    margin-right: 0;
  }
  .hero-content h1 {
    font-size: 42px;
    line-height: 50px;
    margin-bottom: 22px;
    letter-spacing: -0.5px;
  }
  .hero-content p {
    font-size: 18px;
    margin: 18px auto;
    line-height: 26px;
  }
  .hero-content p:last-of-type {
    font-size: 17px;
    margin: 0 auto 26px auto;
    line-height: 26px;
  }

  /* Logo now handled by navigation */
  .badge {
    display: block;
    margin: 0 0 20px 0;
    width: fit-content;
    font-size: 12px;
    padding: 8px 22px;
  }

  /* Enhanced social proof for large tablets */
  .hero-social-proof {
    max-width: 100%;
    margin-top: 32px;
    text-align: left;
  }
  .hero-social-proof p:first-child {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 0.8px;
  }
  .logos {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    max-width: 520px;
    margin: 0;
    justify-content: flex-start;
  }
  .logos img {
    height: clamp(38px, 4.8vw, 44px);
    min-width: 46px;
    padding: 10px;
    margin: 0;
    display: block;
  }
  .hero-social-proof p:last-child {
    margin-top: 18px;
    font-size: 14px;
  }

  /* Enhanced CTA buttons for large tablets */
  .hero-content div[style*='margin-bottom:8px'] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
    margin-bottom: 18px !important;
  }
  .hero-content div[style*='margin-bottom:8px'] a:first-child {
    padding: 18px 36px;
    font-size: 17px;
  }
  .hero-content div[style*='margin-bottom:8px'] a:last-child {
    white-space: nowrap;
    font-size: 17px;
  }

  /* Enhanced micro text */
  .hero-content p[style*='font-size:13px'] {
    font-size: 15px;
    margin-bottom: 26px;
  }

  /* Stats section large tablet optimization - 2x2 grid */
  .stats-section .flex {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
    flex-wrap: unset !important;
  }
  .stats-section .col {
    padding: 18px 12px;
  }
  .stat-number {
    font-size: 38px;
    line-height: 1;
    margin-bottom: 8px;
  }
  .stat-label {
    font-size: 14px;
    line-height: 1.2;
  }
}

/* SMALL TABLET/LARGE MOBILE: 600px-768px - Smooth proportional scaling */
@media (max-width: 768px) and (min-width: 600px) {
  .hero-section {
    grid-template-columns: 1fr 0.7fr;
    gap: 24px;
    min-height: 420px;
    padding: 20px 0 32px 0;
  }
  .hero-phone {
    display: flex;
    justify-content: center;
    align-items: center;
    background: none !important;
  }
  .hero-carousel-container {
    margin-top: 24px;
  }

  /* Smooth proportional scaling based on viewport width */
  .hero-phone-carousel {
    width: calc(200px + (240 - 200) * ((100vw - 600px) / (768 - 600)));
    max-width: 240px;
    min-width: 200px;
  }

  .hero-phone-slide img {
    width: calc(180px + (220 - 180) * ((100vw - 600px) / (768 - 600)));
    height: auto;
    max-width: 220px;
    max-height: 330px;
    min-width: 180px;
    border-radius: 20px;
    object-fit: contain;
  }

  .hero-device-slide img {
    width: calc(160px + (200 - 160) * ((100vw - 600px) / (768 - 600)));
    height: auto;
    max-width: 200px;
    min-width: 160px;
    object-fit: contain;
  }

  .hero-carousel-caption {
    font-size: 13px;
  }

  /* Show mobile navigation in tablet range */
  .mobile-nav {
    display: flex !important;
    transform: translateY(0) !important;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
  }

  /* Add top padding to body to account for fixed mobile nav */
  body {
    padding-top: 68px;
  }

  /* Ensure carousel stays visible in this range */
  .hero-carousel-container {
    display: flex !important;
  }
  .hero-title {
    font-size: 36px !important;
  }
}

/* MOBILE RESPONSIVE - General styles (599px and below) */
@media (max-width: 599px) {
  /* Keep desktop section spacing - no changes */
  .container {
    padding: 0 20px;
  }
  /* Responsive heading system - Mobile */
  h1 {
    font-size: 32px;
    line-height: 38px;
    margin-bottom: 16px;
  }
  h2 {
    font-size: 32px;
    line-height: 36px;
    margin-bottom: 14px;
  }
  h3 {
    font-size: 22px;
    line-height: 26px;
    margin-bottom: 10px;
  }
  h4 {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 8px;
  }
  h5 {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 6px;
  }
  h6 {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 4px;
  }
  .flex {
    gap: 16px;
  }
  /* Change solution-grid to vertical layout on mobile */
  .solution-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    margin: 40px 0 32px 0;
  }
  .solution-card {
    padding: 32px 24px;
    border-radius: 16px;
    width: 100%;
    max-width: 400px;
  }
  .solution-card h3 {
    font-size: 20px;
    margin-bottom: 14px;
  }
  .solution-card p {
    font-size: 16px;
    line-height: 24px;
  }
  /* Rotate arrow to point downward on mobile */
  .solution-arrow {
    transform: rotate(90deg);
    margin: 8px 0;
  }
  /* Stats section mobile optimization - 2x2 grid */
  .stats-section .flex {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
    flex-wrap: unset !important;
  }
  .stats-section .col {
    padding: 12px 6px;
  }
  .stat-number {
    font-size: 32px;
    line-height: 1;
    margin-bottom: 6px;
  }
  .stat-label {
    font-size: 12px;
    line-height: 1.2;
  }
  /* Keep desktop feature-grid layout */
  /* Keep desktop stats-section spacing */
  /* Keep desktop section paddings for testimonial and features */

  /* Carousel mobile optimization */
  .testimonial-quote {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
    margin-bottom: 20px;
    padding: 24px 20px;
    border-radius: 16px;
  }

  .company-logo-placeholder {
    width: 60px;
    height: 60px;
    font-size: 10px;
  }

  .testimonial-attribution {
    padding: 16px 20px;
    border-radius: 12px;
  }

  .testimonial-author {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
  }
  .testimonial-company {
    font-size: 13px;
    font-weight: 500;
  }
  .carousel-nav {
    margin-top: 32px;
    gap: 12px;
  }
  .carousel-btn {
    width: 44px;
    height: 44px;
  }
  .carousel-btn svg {
    width: 18px;
    height: 18px;
  }

  /* Pricing section mobile optimization */
  .pricing-highlight {
    margin: 32px 20px 0;
    padding: 36px 28px;
    border-radius: 20px;
    max-width: none;
  }
  .pricing-main h3 {
    font-size: 26px;
    line-height: 1.2;
  }
  .price-amount {
    font-size: 42px;
    line-height: 1;
  }
  .price-from,
  .price-unit {
    font-size: 15px;
  }
  .pricing-link {
    font-size: 14px !important;
    padding: 8px 14px !important;
  }
  .pricing-features {
    gap: 16px;
    flex-direction: column;
    align-items: center;
    margin-top: 24px;
  }
  .pricing-feature {
    font-size: 14px;
    justify-content: center;
  }

  /* Show mobile navigation on tablets and mobile - always visible */
  .mobile-nav {
    display: flex !important;
    transform: translateY(0) !important;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
  }

  /* Add top padding to body to account for fixed mobile nav */
  body {
    padding-top: 68px;
  }
  .fab {
    display: none;
  }

  /* Tablet footer optimization */
  footer {
    padding: 40px 20px;
  }
  footer img {
    height: 44px;
    width: auto;
    object-fit: contain;
  }

  /* Show carousel on mobile */
  .hero-carousel-container {
    display: flex !important;
  }

  /* Ensure all carousel elements are hidden */
  .hero-phone-label {
    display: none !important;
  }

  /* CTA section tablet responsiveness */
  section[style*='background:var(--c-dark)'] {
    padding: 50px 0 !important;
  }
  section[style*='background:var(--c-dark)'] h2 {
    font-size: 32px !important;
    line-height: 38px !important;
  }
  section[style*='background:var(--c-dark)'] p {
    font-size: 18px !important;
    line-height: 26px !important;
  }
}

@media (max-width: 480px) {
  section {
    padding: 35px 0;
  }
  .container {
    padding: 0 16px;
  }

  .hero-section {
    background-size: 160px auto !important;
    background-position: right 10px bottom 10px !important;
  }

  .hero-section::before {
    background: rgba(255, 255, 255, 0.97) !important;
  }
  /* Responsive heading system - Mobile */
  h1 {
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 14px;
  }
  h2 {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 12px;
  }
  h3 {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 10px;
  }
  h4 {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 8px;
  }
  h5 {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 6px;
  }
  h6 {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 4px;
  }
  .stat-number {
    font-size: 36px;
  }
  .stat-label {
    font-size: 13px;
  }
  .btn {
    padding: 14px 32px;
    font-size: 16px;
  }

  /* Enhanced small mobile hero - Content only layout */
  .hero-section {
    display: block;
    padding: 16px 0 32px 0;
    min-height: auto;
    /* Adjust background size and position for very small screens */
    background-size: 160px auto;
    background-position: right 10px bottom 10px;
  }

  .hero-section::before {
    /* Adjust overlay opacity for very small screens */
    background: rgba(255, 255, 255, 0.97);
  }

  /* Show carousel on small mobile */
  .hero-carousel-container {
    display: flex !important;
  }

  .hero-phone-label {
    display: none !important;
  }

  /* Legacy rule - now handled by carousel container */

  /* Logo now handled by navigation */
  .badge {
    display: block;
    margin: 0 auto 16px auto;
    width: fit-content;
  }

  /* Enhanced mobile social proof - Better visibility */
  .hero-social-proof {
    max-width: 100%;
    margin-top: 24px;
  }
  .hero-social-proof p:first-child {
    font-size: 15px;
    margin-bottom: 14px;
    font-weight: 600;
  }
  .logos-with-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px !important;
  }
  .logos-container {
    justify-content: flex-start;
    gap: 8px;
    flex-wrap: wrap;
  }
  .logo-img {
    height: clamp(14px, 3.5vw, 18px);
    width: auto;
    max-width: 100%;
    padding: 0;
    background: none;
    border: none;
    margin: clamp(1px, 0.4vw, 3px);
    object-fit: contain;
  }
  .endpoints-text {
    margin-left: 0 !important;
    margin-top: 0;
  }
  .endpoints-text span {
    font-size: 12px !important;
  }

  /* Button and link layout - small mobile optimization */
  .hero-content div[style*='margin-bottom:8px'] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px !important;
  }
  .hero-content div[style*='margin-bottom:8px'] a:last-child {
    white-space: nowrap;
    font-size: 14px;
  }

  /* Section spacing adjustments */
  .stats-section {
    padding: 24px 0;
  }

  /* Stats section: 2x2 grid on mobile */
  .stats-flex {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 16px 8px !important;
    flex-wrap: unset !important;
  }
  .stats-flex .col {
    min-width: unset !important;
    padding: 12px 8px !important;
  }
  .stats-icon {
    width: 36px !important;
    height: 36px !important;
  }
  .stat-number {
    font-size: 28px !important;
  }
  .stat-label {
    font-size: 11px !important;
  }
  .testimonial-section {
    padding: 40px 0;
  }
  .features-section {
    padding: 26px 0;
  }

  /* Small mobile carousel optimization */
  .testimonial-quote {
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 18px;
    font-weight: 500;
    padding: 20px 16px;
    border-radius: 14px;
  }

  .company-logo-placeholder {
    width: 56px;
    height: 56px;
    font-size: 9px;
  }

  .testimonial-attribution {
    padding: 14px 16px;
    border-radius: 10px;
  }

  .testimonial-author {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 3px;
  }
  .testimonial-company {
    font-size: 12px;
    font-weight: 500;
  }
  .carousel-nav {
    margin-top: 28px;
    gap: 8px;
  }
  .carousel-btn {
    width: 40px;
    height: 40px;
  }
  .carousel-btn svg {
    width: 16px;
    height: 16px;
  }
  .carousel-dot {
    width: 10px;
    height: 10px;
  }

  /* Small mobile pricing optimization */
  .pricing-highlight {
    margin: 24px 12px 0;
    padding: 28px 20px;
    border-radius: 16px;
  }
  .pricing-badge {
    right: 16px;
    padding: 6px 12px;
    font-size: 12px;
    top: -6px;
  }

  /* Small mobile pricing improvements */
  .pricing-highlight {
    margin: 24px 16px 0 !important;
    padding: 32px 20px !important;
  }

  .pricing-main h3 {
    font-size: 22px !important;
  }

  .price-amount {
    font-size: 36px !important;
  }

  .price-from,
  .price-unit {
    font-size: 14px !important;
  }

  .pricing-link {
    font-size: 13px !important;
    padding: 6px 12px !important;
    margin-top: 12px !important;
  }
  .pricing-main h3 {
    font-size: 22px;
  }
  .price-amount {
    font-size: 36px;
  }
  .price-from,
  .price-unit {
    font-size: 14px;
  }
  .pricing-feature {
    font-size: 13px;
  }

  /* Enhanced mobile form UX - 2025 standards */
  .form-card {
    padding: 32px 20px;
    margin: 16px;
  }
  .field {
    margin-bottom: 24px;
  }
  .field input {
    padding: 20px 24px;
    min-height: 60px;
    font-size: 18px;
    border-radius: 16px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
  .field input:focus {
    box-shadow: 0 0 0 4px rgba(212, 66, 31, 0.15);
    transform: translateY(-2px);
  }
  .btn-form {
    padding: 20px 24px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 16px;
    min-height: 60px;
  }

  /* Enhanced footer mobile optimization */
  footer {
    padding: 32px 16px !important;
  }
  footer img {
    height: 40px !important;
    width: auto !important;
    object-fit: contain !important;
  }
  footer p[style*='font-size:18px'] {
    font-size: 16px !important;
    line-height: 1.4;
    letter-spacing: 0.6px !important;
  }

  /* CTA section mobile responsiveness */
  section[style*='background:var(--c-dark)'] {
    padding: 40px 0 !important;
  }
  section[style*='background:var(--c-dark)'] h2 {
    font-size: 28px !important;
    line-height: 34px !important;
  }
  section[style*='background:var(--c-dark)'] p {
    font-size: 16px !important;
    line-height: 24px !important;
  }
  section[style*='background:var(--c-dark)'] .btn {
    padding: 16px 32px !important;
    font-size: 16px !important;
  }
}

/* Cookie Banner Styles */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 52, 68, 0.98);
  backdrop-filter: blur(10px);
  color: white;
  z-index: 10000;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-content {
  max-width: 980px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-text h3 {
  margin: 0 0 8px 0;
  font-size: 16px;
  font-weight: 600;
  color: white;
}

.cookie-text p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
  border: none;
}

.cookie-btn.primary {
  background: var(--c-primary);
  color: white;
}

.cookie-btn.primary:hover {
  background: var(--c-primary-dark);
  transform: translateY(-1px);
}

.cookie-btn.secondary {
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-weight: 500;
  font-size: 13px;
}

.cookie-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .cookie-actions {
    width: 100%;
    justify-content: center;
  }

  .cookie-btn {
    flex: 1;
    max-width: 120px;
  }
}

/* Enhanced pricing link design */
.pricing-link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 20px auto 0 !important;
  padding: 12px 20px !important;
  background: rgba(255, 255, 255, 0.15) !important;
  color: #fff !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  border-radius: 10px !important;
  border: 1.5px solid rgba(255, 255, 255, 0.3) !important;
  transition:
    background 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  backdrop-filter: blur(10px) !important;
  text-align: center !important;
  min-width: 180px !important;
}

.pricing-link:hover {
  background: rgba(255, 255, 255, 0.22) !important;
  border-color: rgba(255, 255, 255, 0.45) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15) !important;
}

.pricing-link:hover svg {
  transform: translate(1px, -1px) !important;
}

/* Floating Action Button - Compact Solution Arrow Design */
.fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
  color: white;
  border: none;
  border-radius: 12px;
  width: 44px;
  height: 44px;
  box-shadow: 0 4px 16px rgba(212, 66, 31, 0.3);
  z-index: 999;
  display: none;
  cursor: pointer;
  transition:
    transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.25s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
}

.fab::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 10px solid white;
  margin-top: 1px;
  transition: transform 0.25s ease;
}

.fab:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 66, 31, 0.45);
  background: linear-gradient(135deg, var(--c-primary-dark) 0%, var(--c-primary) 100%);
  border-color: rgba(255, 255, 255, 0.3);
}

.fab:hover::before {
  transform: translate(-50%, -50%) scale(1.05);
}

.fab:active {
  transform: scale(1.02) translateY(-1px);
  box-shadow: 0 3px 12px rgba(212, 66, 31, 0.4);
}

/* Mobile FAB adjustments */
@media (max-width: 768px) {
  .fab {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .fab::before {
    border-left-width: 6px;
    border-right-width: 6px;
    border-bottom-width: 8px;
  }
}

/* Hero bullet points - improved checkmark alignment for all devices */
.hero-content ul li {
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  padding: 4px 0 !important;
  padding-left: 0 !important;
  position: static !important;
}

.hero-content ul li span {
  position: static !important;
  left: auto !important;
  margin-right: 12px;
  margin-top: 1px;
  flex-shrink: 0;
  line-height: 1;
}

/* Mobile/tablet specific improvements */
@media (max-width: 769px) {
  .hero-content ul li {
    justify-content: flex-start;
    text-align: left;
  }

  .hero-content ul li span {
    margin-right: 10px;
    margin-top: 0px;
  }
}

/* Utility classes to replace inline styles */
.section-white {
  background: #fff !important;
  color: var(--c-dark) !important;
  padding-bottom: 16px !important;
}

.section-primary-dark {
  background: linear-gradient(135deg, #0f3444 0%, #1a3240 100%) !important;
  color: #fff !important;
  text-align: center !important;
  padding: 60px 0 !important;
}
.section-gray-gradient {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%) !important;
}
.section-dark-blue {
  background: linear-gradient(135deg, #0f3444 0%, #1a4a5a 100%) !important;
}
.section-dark {
  background: var(--c-dark) !important;
  color: #fff !important;
  text-align: center !important;
  padding: 60px 0 !important;
}
.section-footer {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%) !important;
  font-size: 14px !important;
  text-align: center !important;
  padding: 60px 20px 40px !important;
  color: var(--c-muted) !important;
  border-top: 1px solid rgba(212, 66, 31, 0.1) !important;
  position: relative !important;
}

.section-footer::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 2px !important;
  background: linear-gradient(90deg, #d4421f, #00b4dc) !important;
}

.footer-content {
  max-width: 800px !important;
  margin: 0 auto !important;
}

.hero-title {
  max-width: 480px !important;
  font-size: 48px !important; /* Explicit font-size to prevent browser changes */
}
.hero-description {
  margin: 12px 0 !important;
  max-width: 480px !important;
}
.hero-subtitle {
  font-size: 19px !important;
  color: var(--c-dark) !important;
  line-height: 28px !important;
  font-weight: 500 !important;
  margin-bottom: 16px !important;
}
.hero-audience {
  font-size: 14px !important;
  font-weight: 500 !important;
  color: var(--c-muted) !important;
  letter-spacing: 0.01em !important;
  margin-top: -8px !important;
  margin-bottom: 16px !important;
  line-height: 1.5 !important;
}
.hero-strong {
  color: var(--c-primary) !important;
  font-weight: 700 !important;
}
.hero-strong-nowrap {
  color: var(--c-primary) !important;
  font-weight: 700 !important;
  white-space: nowrap !important;
}
.hero-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  font-size: 16px !important;
  color: var(--c-dark) !important;
  font-weight: 500 !important;
}
.hero-list-item {
  padding: 4px 0 !important;
  padding-left: 20px !important;
  position: relative !important;
}
.hero-checkmark {
  position: absolute !important;
  left: 0 !important;
  color: var(--c-primary) !important;
  font-weight: 700 !important;
}
.hero-footer-text {
  font-size: 16px !important;
  margin: 0 0 20px 0 !important;
  color: var(--c-dark) !important;
  max-width: 480px !important;
  font-weight: 500 !important;
  opacity: 0.9 !important;
}
.hero-cta-container {
  margin-bottom: 4px !important;
  max-width: 480px !important;
}
.hero-cta-secondary {
  color: var(--c-muted) !important;
  font-size: 16px !important;
  text-decoration: underline !important;
}
.hero-cta-primary {
  margin-right: 16px !important;
}
.hero-disclaimer {
  font-size: 11px !important;
  color: var(--c-muted) !important;
  margin: 4px 0 16px 0 !important;
  max-width: 480px !important;
  font-weight: 500 !important;
  opacity: 0.8 !important;
}
.hero-social-proof-container {
  margin-top: 12px !important;
}
.hero-social-proof-text {
  font-size: 13px !important;
  color: var(--c-muted) !important;
  margin-bottom: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
}
.logos-with-stats {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: flex-start !important;
  gap: clamp(8px, 1.5vw, 16px) !important;
  margin-bottom: 0 !important;
}
.logos-container {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 16px !important;
  max-width: 100% !important;
  margin: 0 !important;
}

/* Two-row logo layout - cohesive trust bar */
.logos-row {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: clamp(10px, 2vw, 24px) !important;
  flex-wrap: nowrap !important;
  width: 100% !important;
}

.logos-row .logo-img {
  flex-shrink: 1 !important;
  max-width: 23% !important;
  height: clamp(18px, 4vw, 28px) !important;
}

/* Desktop logos container - enhanced cohesive trust bar */
@media (min-width: 768px) {
  .logos-container {
    gap: 20px !important;
    max-width: 600px !important;
  }

  .logos-row {
    gap: clamp(20px, 3vw, 32px) !important;
  }

  .logos-row-2 {
    gap: clamp(20px, 3vw, 32px) !important;
  }

  .logo-img {
    height: clamp(22px, 2.4vw, 26px);
    min-width: 22px;
    padding: 0;
    background: none;
    border: none;
    margin: clamp(3px, 0.6vw, 6px);
  }
}

/* Stylized caption below logos */
.logos-caption {
  margin-top: 16px;
  text-align: left;
  font-size: clamp(12px, 1.2vw, 14px);
  color: #666;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: lowercase;
  opacity: 0.8;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* Mobile caption adjustments */
@media (max-width: 768px) {
  .logos-caption {
    margin-top: 12px;
    font-size: 12px;
    letter-spacing: 0.3px;
  }
}

/* Form privacy note styling */
.field-privacy-note {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-size: 12px !important;
  color: var(--c-muted) !important;
  margin-top: 4px !important;
  margin-bottom: 0 !important;
}

.field-privacy-note svg {
  color: #10b981 !important;
  flex-shrink: 0 !important;
}

/* Desktop Navigation */
.desktop-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  z-index: 1000;
  padding: 12px 0;
  display: none;
}

.desktop-nav-container {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

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

.nav-link {
  font-size: 16px;
  font-weight: 600;
  color: var(--c-dark);
  text-decoration: none;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
  padding: 8px 0;
  position: relative;
}

.nav-link:hover {
  color: var(--c-primary);
  transform: translateY(-1px);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--c-primary);
  transition: width 0.2s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--c-primary);
  color: white !important;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  user-select: none !important;
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
}

.nav-cta:focus {
  background: var(--c-primary) !important;
  color: white !important;
  outline: 2px solid var(--c-primary) !important;
  outline-offset: 2px !important;
  box-shadow: none !important;
}

.nav-cta:focus:not(:focus-visible) {
  outline: none !important;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  background: var(--c-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 66, 31, 0.3);
  color: white !important;
}

.nav-cta.clicked {
  background: #888888 !important;
  color: #cccccc !important;
  cursor: not-allowed !important;
  transform: none !important;
  box-shadow: none !important;
}

.nav-cta.clicked:hover {
  background: #888888 !important;
  color: #cccccc !important;
  transform: none !important;
  box-shadow: none !important;
}

/* Show desktop nav on larger screens */
@media (min-width: 769px) {
  .desktop-nav {
    display: block;
  }

  /* Add top padding to body to account for fixed nav */
  body {
    padding-top: 60px;
  }
}

/* ===== COMPACT PRICING CALCULATOR ===== */
.pricing-calculator-compact {
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.9) 0%, rgba(255, 255, 255, 0.95) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 66, 31, 0.15);
  border-radius: 12px;
  padding: 20px;
  margin-top: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-calculator-compact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #d4421f, #00b4dc);
  border-radius: 12px 12px 0 0;
}

/* Compact Header */
.calc-header {
  margin-bottom: 20px;
}

.calc-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.calc-icon {
  width: 36px;
  height: 36px;
  background: var(--c-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.calc-title-text {
  flex: 1;
}

.calc-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--c-dark);
  margin: 0 0 2px 0;
  line-height: 1.2;
}

.calc-subtitle {
  font-size: 15px;
  color: var(--c-muted);
  font-weight: 500;
  margin: 0;
}

/* Main Calculator Layout */
.calc-main {
  margin-bottom: 18px;
}

/* Compact Input Section */
.calc-input {
  margin-bottom: 20px;
}

.input-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.input-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--c-dark);
  margin: 0;
  flex-shrink: 0;
  min-width: 68px;
}

.input-wrapper {
  flex: 1;
  max-width: 120px;
}

.location-input-compact {
  width: 100%;
  padding: 8px 12px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border: 1.5px solid rgba(212, 66, 31, 0.2);
  border-radius: 6px;
  background: white;
  color: var(--c-dark);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.location-input-compact:focus {
  outline: 2px solid transparent;
  border-color: var(--c-primary);
  box-shadow: 0 0 0 2px rgba(212, 66, 31, 0.1);
}

/* Compact Slider */
.slider-row {
  position: relative;
  touch-action: pan-x;
}

.location-slider-compact {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: #e2e8f0;
  outline: 2px solid transparent;
  appearance: none;
  cursor: pointer;
  touch-action: pan-x;
  margin: 8px 0 4px 0;
  transition: none; /* Disable transitions for smooth dragging */
}

.location-slider-compact::-webkit-slider-thumb {
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--c-primary);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(255, 103, 82, 0.3);
  transition:
    transform 0.1s ease,
    box-shadow 0.1s ease;
}

.location-slider-compact::-webkit-slider-thumb:hover {
  transform: scale(1.1);
  box-shadow: 0 3px 8px rgba(255, 103, 82, 0.4);
}

.location-slider-compact::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--c-primary);
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 6px rgba(255, 103, 82, 0.3);
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--c-muted);
  font-weight: 500;
}

/* Horizontal Results Layout */
.calc-results {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  border: 1px solid rgba(255, 103, 82, 0.1);
}

.calc-results-pricing {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.calc-results-contact {
  flex: 1;
  text-align: center;
  padding: 8px 0;
}

.result-item {
  flex: 1;
  text-align: center;
}

.result-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.result-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  font-size: 22px;
  font-weight: 800;
  color: var(--c-primary);
  line-height: 1;
  transition:
    color 0.15s ease-out,
    opacity 0.15s ease-out;
}

.result-price .currency {
  font-size: 16px;
  font-weight: 600;
}

.result-price .period {
  font-size: 12px;
  color: var(--c-muted);
  font-weight: 500;
}

.result-price.total-price {
  color: var(--c-accent);
  font-size: 24px;
}

.result-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 103, 82, 0.2);
  flex-shrink: 0;
}

/* Compact Footer */
.calc-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.calc-features {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-dark);
  white-space: nowrap;
  letter-spacing: 0.2px;
}

.feature-item svg {
  color: #10b981;
  flex-shrink: 0;
}

.calc-cta-btn {
  background: linear-gradient(135deg, var(--c-primary) 0%, #ff8a5b 100%);
  color: white;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
  box-shadow: 0 2px 8px rgba(255, 103, 82, 0.3);
  white-space: nowrap;
}

.calc-cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 103, 82, 0.4);
  background: linear-gradient(135deg, #c7392a 0%, #ff7a4b 100%);
}

/* Hero Visual Anchor Background - Text Only */
.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -30px;
  right: -30px;
  bottom: -20px;
  background: linear-gradient(90deg, rgba(248, 250, 252, 0.9) 0%, rgba(255, 255, 255, 0.3) 100%);
  border-radius: 20px;
  z-index: -1;
}

.hero-phone {
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .hero-content::before {
    top: -30px;
    left: -40px;
    right: -40px;
    bottom: -30px;
    border-radius: 24px;
  }
}

@media (max-width: 767px) {
  .hero-content::before {
    top: -15px;
    left: -20px;
    right: -20px;
    bottom: -15px;
    border-radius: 16px;
  }
}

/* Challenge → Solution Section Enhancements */
.solution-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 16px auto;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.challenge-icon {
  background: rgba(220, 38, 38, 0.1);
  border-color: rgba(220, 38, 38, 0.2);
}

.solution-icon-right {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.2);
}

.solution-card {
  position: relative;
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.challenge-card {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.05) 0%, rgba(220, 38, 38, 0.02) 100%);
  border: 1px solid rgba(220, 38, 38, 0.1);
}

.solution-card-right {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(5, 150, 105, 0.02) 100%);
  border: 1px solid rgba(16, 185, 129, 0.1);
}

.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.solution-arrow {
  align-self: center;
  color: var(--c-primary);
  margin: 0 16px;
}

/* Enhanced Testimonials Styling */
.testimonial-logo-container {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.company-logo-placeholder {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-accent) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.3px;
  box-shadow:
    0 6px 24px rgba(255, 103, 82, 0.4),
    0 2px 8px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  text-align: center;
  line-height: 1.1;
  padding: 4px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  position: relative;
}

.company-logo-placeholder::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 103, 82, 0.6) 0%, rgba(255, 103, 82, 0.2) 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.testimonial-slide:hover .company-logo-placeholder {
  transform: scale(1.05);
  box-shadow:
    0 8px 32px rgba(255, 103, 82, 0.5),
    0 4px 16px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.testimonial-slide:hover .company-logo-placeholder::before {
  opacity: 1;
}

.testimonial-quote {
  position: relative;
  font-style: italic;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  padding: 32px 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border-radius: 20px;
  border: 1px solid rgba(255, 103, 82, 0.2);
  margin-bottom: 24px;
  backdrop-filter: blur(15px);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 2px 8px rgba(255, 103, 82, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.testimonial-quote:hover {
  transform: translateY(-2px);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.4),
    0 4px 16px rgba(255, 103, 82, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 103, 82, 0.3);
}

.testimonial-quote::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: linear-gradient(
    135deg,
    rgba(255, 103, 82, 0.3) 0%,
    rgba(255, 103, 82, 0.1) 50%,
    rgba(255, 103, 82, 0.05) 100%
  );
  border-radius: 20px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.testimonial-slide:hover .testimonial-quote::before {
  opacity: 1;
}

.quote-mark-open,
.quote-mark-close {
  font-size: 24px;
  font-weight: 800;
  color: var(--c-primary);
  opacity: 0.8;
}

.quote-mark-open {
  margin-right: 4px;
}

.quote-mark-close {
  margin-left: 4px;
}

.testimonial-attribution {
  text-align: center;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.testimonial-slide:hover .testimonial-attribution {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.testimonial-author {
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.testimonial-company {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* Mobile responsiveness */
/* Mobile Optimization for Compact Calculator */
@media (max-width: 768px) {
  .pricing-calculator-compact {
    padding: 16px;
    margin-top: 20px;
    max-width: 100%;
  }

  .calc-title {
    font-size: 18px;
  }

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

  .input-row {
    gap: 8px;
  }

  .input-label {
    font-size: 15px;
    min-width: 60px;
  }

  .location-input-compact {
    padding: 6px 10px;
    font-size: 14px;
  }

  .calc-results {
    gap: 12px;
    padding: 12px;
  }

  .result-price {
    font-size: 20px;
  }

  .result-price.total-price {
    font-size: 22px;
  }

  .calc-footer {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }

  .calc-features {
    justify-content: center;
    gap: 12px;
  }

  .feature-item {
    font-size: 11px;
  }

  .calc-cta-btn {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
    font-size: 15px;
  }
}

/* Touch-friendly enhancements for mobile devices */
@media (max-width: 768px) and (pointer: coarse) {
  .pricing-calculator-compact {
    overflow-x: hidden; /* Prevent horizontal scroll */
  }

  .location-slider-compact {
    height: 8px;
    margin: 12px 0 8px 0;
    touch-action: pan-x; /* Better touch handling */
  }

  .location-slider-compact::-webkit-slider-thumb {
    width: 22px;
    height: 22px;
    transition: transform 0.1s ease;
  }

  .location-input-compact {
    padding: 10px 12px;
    font-size: 16px; /* Prevents zoom on iOS */
    -webkit-appearance: none;
    -moz-appearance: textfield;
  }

  /* Improve tap targets for accessibility */
  .calc-cta-btn {
    min-height: 44px; /* Apple's recommended minimum tap target */
  }

  .feature-item {
    padding: 4px 0; /* Better tap spacing */
  }
}

/* Footer keeps desktop layout at all screen sizes */

/* Extra small mobile devices - no footer overrides */

/* Performance optimizations */
.pricing-calculator-compact * {
  box-sizing: border-box;
}

/* Reduce motion for users who prefer it */
@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;
  }
  .scroll-progress {
    transition: none !important;
  }
}

/* Global text wrapping rule - never cut words */
* {
  word-break: normal;
  overflow-wrap: break-word;
  hyphens: none;
}

/* Hero title responsive handling */
/* Above 598px: Hide second br to maintain 2 lines */
@media (min-width: 599px) {
  .hero-title br:nth-of-type(2) {
    display: none;
  }
}

/* Mobile and tablet: Hide unnecessary br tags for natural text flow */
@media (max-width: 768px) {
  .hero-footer-text br,
  .micro br,
  .footer-tagline br {
    display: none;
  }
}

/* 598px and below: Show all br tags to maintain 3 lines for hero title only */
@media (max-width: 598px) {
  .hero-title {
    line-height: 1.1;
  }

  .hero-title br {
    display: block;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .pricing-calculator-compact {
    border: 2px solid;
    box-shadow: none;
  }

  .location-slider-compact {
    background: ButtonText;
  }

  .location-slider-compact::-webkit-slider-thumb {
    background: ButtonText;
    border: 1px solid ButtonFace;
  }
}
.endpoints-text {
  margin-left: clamp(12px, 2vw, 24px) !important;
  white-space: nowrap !important;
  display: none !important;
  align-items: center !important;
}
.endpoints-number {
  font-family:
    'Inter',
    system-ui,
    -apple-system,
    sans-serif !important;
  font-size: clamp(14px, 1.5vw, 16px) !important;
  font-weight: 600 !important;
  color: var(--c-primary) !important;
  letter-spacing: 0.2px !important;
}
.endpoints-label {
  font-family:
    'Inter',
    system-ui,
    -apple-system,
    sans-serif !important;
  font-size: clamp(13px, 1.3vw, 15px) !important;
  font-weight: 500 !important;
  color: var(--c-dark) !important;
  margin-left: 4px !important;
  opacity: 0.85 !important;
}

.stats-title {
  margin-bottom: 32px !important;
  color: #fff !important;
}
@media (min-width: 1025px) {
  .stats-flex {
    justify-content: space-between !important;
    text-align: center !important;
    flex-wrap: nowrap !important;
  }
  .stats-flex .col {
    flex: 1 1 0 !important;
    min-width: 0 !important;
  }
}
.stats-icon {
  margin: 0 auto 16px !important;
  color: rgba(255, 255, 255, 0.9) !important;
}

.challenge-solution-container {
  text-align: center !important;
}
.challenge-solution-text {
  max-width: 680px !important;
  margin: 0 auto 20px !important;
  color: var(--c-muted) !important;
  font-size: 18px !important;
  line-height: 28px !important;
}
.challenge-title {
  color: #d4421f !important;
}
.challenge-text {
  color: #991b1b !important;
  font-size: 17px !important;
  line-height: 26px !important;
  margin: 0 !important;
  font-weight: 500 !important;
}
.solution-arrow {
  flex: 0 0 56px !important;
  color: var(--c-primary) !important;
}
.solution-title {
  color: #059669 !important;
}
.solution-text {
  color: #14532d !important;
  font-size: 17px !important;
  line-height: 26px !important;
  margin: 0 !important;
  font-weight: 500 !important;
}

.testimonial-section-title {
  text-align: center !important;
  margin-bottom: 48px !important;
  font-size: 36px !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
  line-height: 1.15 !important;
  color: #fff !important;
}

.integrators-title {
  text-align: center !important;
  margin-bottom: 48px !important;
}
.integrator-card {
  background: #fff !important;
  padding: 32px !important;
  border-radius: 16px !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04) !important;
  display: flex !important;
  flex-direction: column !important;
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease !important;
}

/* Hover states with accent glow matching icon colors */
.integrator-card:hover {
  border-color: rgba(212, 66, 31, 0.2) !important;
  box-shadow:
    0 4px 14px rgba(0, 0, 0, 0.04),
    0 0 0 1px rgba(212, 66, 31, 0.08),
    inset 0 1px 0 rgba(212, 66, 31, 0.05) !important;
}

/* Middle card uses teal accent */
.integrator-card:nth-child(2):hover {
  border-color: rgba(0, 180, 220, 0.25) !important;
  box-shadow:
    0 4px 14px rgba(0, 0, 0, 0.04),
    0 0 0 1px rgba(0, 180, 220, 0.1),
    inset 0 1px 0 rgba(0, 180, 220, 0.06) !important;
}
.integrator-card h3 {
  min-height: 2.4em;
}
.integrator-icon {
  margin-bottom: 16px !important;
}
.integrator-text {
  color: var(--c-muted) !important;
  font-size: 15px !important;
}

.features-title {
  text-align: center !important;
  margin-bottom: 48px !important;
  color: #fff !important;
}
.feature-icon {
  margin-bottom: 16px !important;
}
.feature-icon-primary {
  color: var(--c-primary) !important;
}
.feature-icon-accent {
  color: var(--c-accent) !important;
}

.pricing-section-title {
  color: #fff !important;
  margin-bottom: 8px !important;
}
.pricing-arrow-icon {
  margin-left: 6px !important;
  transition: transform 0.2s ease !important;
}

.form-title {
  text-align: center !important;
  margin-bottom: 12px !important;
}
.form-subtitle {
  text-align: center !important;
  margin-bottom: 32px !important;
}

.cta-title {
  color: #fff !important;
}
.cta-text {
  margin-bottom: 36px !important;
  font-size: 22px !important;
  line-height: 32px !important;
  color: #fff !important;
  max-width: 640px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  font-weight: 500 !important;
  opacity: 0.95 !important;
}
.cta-button {
  padding: 20px 44px !important;
  font-size: 19px !important;
  margin-bottom: 32px !important;
  font-weight: 700 !important;
}
.cta-contact {
  font-size: 16px !important;
  color: rgba(255, 255, 255, 0.8) !important;
  font-weight: 500 !important;
}
.cta-email {
  color: var(--c-accent) !important;
  font-weight: 700 !important;
  text-decoration: underline !important;
}
.cta-accent-strong {
  color: var(--c-accent) !important;
  font-weight: 700 !important;
}

/* Footer Logo Section */
/* Footer Main Layout - Improved Desktop */
.footer-main {
  display: grid !important;
  grid-template-columns: 2fr 1fr 1fr !important;
  gap: 40px !important;
  margin-bottom: 40px !important;
  align-items: start !important;
  max-width: 1200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Footer Brand Section - Enhanced */
.footer-brand {
  text-align: left !important;
  padding-right: 20px !important;
}

.footer-logo-container {
  margin-bottom: 24px !important;
}

.footer-logo {
  height: 60px !important;
  width: auto !important;
  display: block !important;
  object-fit: contain !important;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1)) !important;
  margin-bottom: 16px !important;
}

.footer-logo-mark {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin-bottom: 4px !important;
}

.footer-logo-icon {
  height: 44px !important;
  width: auto !important;
  display: block !important;
}

.footer-logo-text {
  font-size: 32px !important;
  font-weight: 800 !important;
  color: var(--c-dark) !important;
  letter-spacing: -0.02em !important;
  line-height: 1 !important;
}

.footer-logo-dot {
  color: var(--c-primary) !important;
}

.footer-tagline {
  font-size: 20px !important;
  color: var(--c-dark) !important;
  font-weight: 700 !important;
  margin: 0 0 16px 0 !important;
  letter-spacing: 0.8px !important;
  line-height: 1.3 !important;
  text-transform: uppercase !important;
}

.footer-tagline-light {
  font-weight: 400 !important;
  letter-spacing: 1.2px !important;
  opacity: 0.8 !important;
}

.footer-description {
  font-size: 14px !important;
  color: var(--c-muted) !important;
  line-height: 1.5 !important;
  margin: 0 !important;
  opacity: 0.9 !important;
}

/* Footer Navigation Section */
.footer-navigation {
  text-align: left !important;
}

.footer-section-title {
  font-size: 16px !important;
  font-weight: 700 !important;
  color: var(--c-dark) !important;
  margin: 0 0 16px 0 !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  position: relative !important;
}

.footer-section-title::after {
  content: '' !important;
  position: absolute !important;
  bottom: -8px !important;
  left: 0 !important;
  width: 40px !important;
  height: 2px !important;
  background: var(--c-primary) !important;
}

.footer-nav {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
}

.footer-link {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  font-weight: 500 !important;
  font-size: 15px !important;
  color: var(--c-dark) !important;
  text-decoration: none !important;
  padding: 8px 12px !important;
  border-radius: 8px !important;
  border-left: 3px solid transparent !important;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-left-color 0.2s ease,
    transform 0.2s ease !important;
  background: transparent !important;
  width: fit-content !important;
}

.footer-link:hover {
  background: rgba(212, 66, 31, 0.05) !important;
  color: var(--c-primary) !important;
  border-left-color: var(--c-primary) !important;
  transform: translateX(6px) !important;
}

.footer-icon {
  width: 16px !important;
  height: 16px !important;
  flex-shrink: 0 !important;
  opacity: 0.7 !important;
}

/* Footer Contact Section */
.footer-contact {
  text-align: left !important;
}

.footer-contact-info {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}

.footer-contact-item {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  font-weight: 500 !important;
  font-size: 15px !important;
  color: var(--c-dark) !important;
  text-decoration: none !important;
  padding: 8px 12px !important;
  border-radius: 8px !important;
  border-left: 3px solid transparent !important;
  width: fit-content !important;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-left-color 0.2s ease,
    transform 0.2s ease !important;
  background: transparent !important;
  border: none !important;
}

.footer-contact-item:hover {
  background: rgba(212, 66, 31, 0.05) !important;
  color: var(--c-primary) !important;
  border-left-color: var(--c-primary) !important;
  transform: translateX(6px) !important;
}

.footer-contact-icon {
  width: 16px !important;
  height: 16px !important;
  flex-shrink: 0 !important;
  opacity: 0.7 !important;
}

.footer-contact-details {
  display: flex !important;
  flex-direction: column !important;
  gap: 0px !important;
}

.footer-contact-label {
  font-size: 14px !important;
  font-weight: 500 !important;
  color: var(--c-dark) !important;
  text-transform: none !important;
  letter-spacing: 0px !important;
}

.footer-contact-value {
  font-size: 14px !important;
  font-weight: 500 !important;
  color: var(--c-dark) !important;
}

/* Footer Bottom Section - Enhanced */
.footer-bottom {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  border-top: 1px solid rgba(212, 66, 31, 0.15) !important;
  padding-top: 32px !important;
  margin-top: 24px !important;
  flex-wrap: wrap !important;
  gap: 20px !important;
  max-width: 1200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.footer-copyright {
  flex: 1 !important;
}

.footer-disclaimer {
  margin: 0 !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: var(--c-muted) !important;
  text-align: left !important;
}

.footer-legal {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  flex-wrap: wrap !important;
}

.footer-legal-link {
  font-size: 13px !important;
  font-weight: 500 !important;
  color: var(--c-muted) !important;
  text-decoration: none !important;
  padding: 4px 8px !important;
  border-radius: 4px !important;
  transition:
    color 0.2s ease,
    background 0.2s ease !important;
}

.footer-legal-link:hover {
  color: var(--c-primary) !important;
  background: rgba(255, 103, 82, 0.05) !important;
}

.footer-legal-separator {
  color: var(--c-muted) !important;
  opacity: 0.4 !important;
  font-size: 12px !important;
}

/* Tablet Footer Layout (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .section-footer {
    padding: 50px 32px 40px !important;
  }

  .footer-content {
    max-width: 900px !important;
    margin: 0 auto !important;
  }

  .footer-main {
    grid-template-columns: 1.8fr 1fr 1fr !important;
    gap: 40px !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .footer-bottom {
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .footer-section-title {
    font-size: 16px !important;
    margin-bottom: 20px !important;
    text-align: left !important;
  }

  .footer-section-title::after {
    width: 30px !important;
    left: 0 !important;
    transform: none !important;
  }

  .footer-navigation,
  .footer-contact {
    text-align: left !important;
  }

  .footer-nav,
  .footer-contact-info {
    align-items: flex-start !important;
  }

  .tagline-line1 {
    font-size: 22px !important;
  }

  .tagline-line2 {
    font-size: 15px !important;
    letter-spacing: 1.8px !important;
  }

  .footer-tagline-new::before {
    width: 50px !important;
  }
}

/* Footer Mobile Responsiveness */
@media (max-width: 768px) {
  .section-footer {
    padding: 36px 24px 28px !important;
  }

  .footer-content {
    max-width: 100% !important;
    margin: 0 auto !important;
    width: 100% !important;
  }

  .footer-main {
    display: flex !important;
    flex-direction: column !important;
    gap: 28px !important;
    text-align: center !important;
    margin-bottom: 28px !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;
  }

  .footer-brand,
  .footer-navigation,
  .footer-contact {
    text-align: center !important;
  }

  /* Enhanced mobile brand section */
  .footer-brand {
    order: 1 !important;
    padding-right: 0 !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .footer-logo-container {
    margin-bottom: 0 !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .footer-logo {
    height: 54px !important;
    margin: 0 auto 12px auto !important;
    display: block !important;
  }

  .footer-logo-mark {
    justify-content: center !important;
    margin-bottom: 4px !important;
  }

  .footer-tagline-new {
    margin: 0 auto !important;
    max-width: 280px !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .footer-tagline-new::before {
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 50px !important;
  }

  .tagline-line1,
  .tagline-line2 {
    text-align: center !important;
    width: 100% !important;
  }

  /* Enhanced mobile navigation */
  .footer-navigation {
    order: 2 !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .footer-section-title {
    font-size: 14px !important;
    margin-bottom: 16px !important;
    text-align: center !important;
    width: 100% !important;
  }

  .footer-section-title::after {
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 40px !important;
  }

  .footer-nav {
    align-items: center !important;
    flex-direction: row !important;
    justify-content: center !important;
    gap: 20px !important;
    flex-wrap: wrap !important;
    max-width: 320px !important;
    margin: 0 auto !important;
  }

  .footer-link {
    padding: 10px 16px !important;
    min-height: 40px !important;
    justify-content: center !important;
    border-left: none !important;
    border-bottom: 3px solid transparent !important;
    border-radius: 8px !important;
    font-size: 14px !important;
  }

  .footer-link:hover {
    border-bottom-color: var(--c-primary) !important;
    border-left-color: transparent !important;
    transform: translateY(-2px) !important;
  }

  /* Enhanced mobile contact section */
  .footer-contact {
    order: 3 !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .footer-contact-info {
    align-items: center !important;
    flex-direction: row !important;
    justify-content: center !important;
    gap: 24px !important;
    flex-wrap: wrap !important;
    max-width: 320px !important;
    margin: 0 auto !important;
  }

  .footer-contact-item {
    padding: 10px 16px !important;
    min-height: 40px !important;
    justify-content: center !important;
    border-left: none !important;
    border-bottom: 3px solid transparent !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    width: auto !important;
  }

  .footer-contact-item:hover {
    border-bottom-color: var(--c-primary) !important;
    border-left-color: transparent !important;
    transform: translateY(-2px) !important;
  }

  .footer-contact-icon {
    width: 18px !important;
    height: 18px !important;
  }

  /* Enhanced mobile bottom section */
  .footer-bottom {
    flex-direction: column !important;
    text-align: center !important;
    gap: 12px !important;
    padding-top: 24px !important;
    margin-top: 24px !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;
  }

  .footer-copyright {
    order: 2 !important;
  }

  .footer-legal {
    order: 1 !important;
    justify-content: center !important;
    flex-wrap: nowrap !important;
    flex-direction: row !important;
  }

  .footer-legal-link {
    padding: 8px 12px !important;
    min-height: 36px !important;
    display: flex !important;
    align-items: center !important;
  }

  .footer-legal-separator {
    display: inline !important;
  }
}

@media (max-width: 480px) {
  .section-footer {
    padding: 40px 20px 32px !important;
  }

  .footer-content {
    max-width: 100% !important;
    margin: 0 auto !important;
    width: 100% !important;
  }

  .footer-main {
    gap: 32px !important;
    margin-bottom: 32px !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;
  }

  /* Optimized small mobile logo */
  .footer-logo {
    height: 48px !important;
  }

  .footer-tagline-new {
    max-width: 260px !important;
  }

  .tagline-line1 {
    font-size: 18px !important;
  }

  .tagline-line2 {
    font-size: 13px !important;
    letter-spacing: 1.2px !important;
  }

  .footer-tagline-new::before {
    width: 40px !important;
  }

  /* Compact navigation for small screens */
  .footer-nav {
    flex-direction: row !important;
    gap: 16px !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    max-width: 300px !important;
    margin: 0 auto !important;
  }

  .footer-link {
    padding: 12px 16px !important;
    flex: 0 0 auto !important;
    font-size: 13px !important;
    gap: 8px !important;
  }

  /* Compact contact items for small screens */
  .footer-contact-info {
    max-width: 280px !important;
    gap: 16px !important;
  }

  .footer-contact-item {
    padding: 12px 16px !important;
    gap: 8px !important;
    font-size: 13px !important;
  }

  .footer-contact-icon {
    width: 16px !important;
    height: 16px !important;
  }

  .footer-section-title {
    font-size: 15px !important;
    margin-bottom: 20px !important;
  }

  .footer-section-title::after {
    width: 35px !important;
  }

  /* Keep legal links horizontal on mobile */
  .footer-legal {
    flex-direction: row !important;
    gap: 8px !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: nowrap !important;
  }

  .footer-legal-link {
    padding: 6px 16px !important;
    min-height: 32px !important;
    border-radius: 6px !important;
  }

  .footer-legal-separator {
    display: inline !important;
  }

  /* Smaller text on very small screens */
  .footer-disclaimer {
    font-size: 12px !important;
  }

  .footer-section-title {
    font-size: 15px !important;
    margin-bottom: 16px !important;
  }
}

/* Extra small screens (< 360px) */
@media (max-width: 359px) {
  .section-footer {
    padding: 24px 12px 20px !important;
  }

  .footer-main {
    gap: 20px !important;
  }

  .footer-contact-info {
    max-width: 240px !important;
  }

  .footer-contact-item {
    padding: 12px !important;
    gap: 8px !important;
  }

  .footer-logo {
    height: 36px !important;
  }

  .footer-tagline {
    font-size: 14px !important;
  }
}

.cookie-banner-hidden {
  display: none !important;
}

/* Enhanced hover effect for all feature cards */
.feature-card:hover .feature-title {
  color: var(--c-primary);
}

/* Company Logo Styling in Testimonials */
.company-logo {
  border-radius: 12px !important;
  object-fit: contain !important;
  height: auto !important;
}

.company-logo-large {
  max-width: 240px !important;
}

.company-logo-small {
  max-width: 140px !important;
}

/* Enhanced Footer Tagline Styling - Consistent Across All Devices */
.footer-tagline-new {
  position: relative;
  margin-top: 16px !important;
  text-align: left !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  line-height: 1.4 !important;
  letter-spacing: 0.4px !important;
  color: var(--c-dark) !important;
  text-transform: uppercase !important;
}

.footer-tagline-new::before {
  content: '' !important;
  position: absolute !important;
  top: -10px !important;
  left: 0 !important;
  width: 40px !important;
  height: 2px !important;
  background: linear-gradient(90deg, var(--c-primary) 0%, var(--c-accent) 100%) !important;
  border-radius: 2px !important;
}

.tagline-line1,
.tagline-line2 {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
}

.tagline-line1 {
  margin-bottom: 2px !important;
}

/* Dark Mode Support for Tagline */
@media (prefers-color-scheme: dark) {
  .footer-tagline-new {
    color: var(--dm-text) !important;
  }

  .footer-logo-text {
    color: var(--dm-text) !important;
  }
}

/* Tablet Tagline - Left Aligned Like Desktop */
@media (max-width: 1023px) and (min-width: 768px) {
  .footer-tagline-new {
    margin: 0 auto !important;
    max-width: 280px !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    margin-top: 16px !important;
    text-align: left !important;
    font-size: 12px !important;
  }

  .footer-tagline-new::before {
    left: 0 !important;
    width: 42px !important;
  }
}

/* Mobile Tagline - Centered */
@media (max-width: 767px) {
  .footer-tagline-new {
    margin: 0 auto !important;
    max-width: 280px !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    margin-top: 14px !important;
    text-align: center !important;
    font-size: 12px !important;
  }

  .footer-tagline-new::before {
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 42px !important;
    top: -10px !important;
  }
}

@media (max-width: 480px) {
  .footer-tagline-new {
    font-size: 11px !important;
    margin-top: 12px !important;
  }

  .footer-tagline-new::before {
    width: 38px !important;
    top: -8px !important;
  }
}

/* ===== CHANGE 3: WHAT YOU CAN DO — Capability Cards ===== */
.capability-section-title {
  text-align: center !important;
  margin-bottom: 40px !important;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 820px;
  margin: 0 auto;
}

.capability-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%);
  padding: 24px;
  border-radius: 14px;
  border-left: 4px solid var(--c-primary);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.capability-card:nth-child(even) {
  border-left-color: var(--c-accent);
}

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

.capability-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--c-dark);
  margin-bottom: 10px;
}

.capability-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.capability-card ul li {
  padding: 4px 0;
  padding-left: 22px;
  position: relative;
  font-size: 14px;
  line-height: 1.5;
  color: var(--c-muted);
}

.capability-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--c-primary);
  font-weight: 700;
  font-size: 13px;
}

.capability-card:nth-child(even) ul li::before {
  color: var(--c-accent);
}

@media (max-width: 599px) {
  .capability-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .capability-card {
    padding: 20px 18px;
  }
}

/* Dark mode for capability cards */
@media (prefers-color-scheme: dark) {
  .capability-card {
    background: rgba(42, 42, 42, 0.95);
    border: 1px solid var(--dm-border-light);
  }

  .capability-card h3 {
    color: var(--dm-text);
  }

  .capability-card ul li {
    color: var(--c-muted);
  }
}

/* ===== CHANGE 4: Testimonial Avatar ===== */
.testimonial-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--c-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 1px;
  box-shadow:
    0 6px 24px rgba(0, 180, 220, 0.4),
    0 2px 8px rgba(0, 0, 0, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.testimonial-slide:hover .testimonial-avatar {
  transform: scale(1.05);
  box-shadow:
    0 8px 32px rgba(0, 180, 220, 0.5),
    0 4px 16px rgba(0, 0, 0, 0.3);
}

@media (max-width: 599px) {
  .testimonial-avatar {
    width: 60px;
    height: 60px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .testimonial-avatar {
    width: 56px;
    height: 56px;
    font-size: 14px;
  }
}

/* ===== CHANGE 6: HOW WE START — Onboarding Section ===== */
.section-how-we-start {
  background: var(--c-dark) !important;
  color: #fff !important;
  text-align: center !important;
  padding: 60px 0 !important;
}

.onboarding-title {
  color: #fff !important;
  margin-bottom: 48px !important;
}

.onboarding-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
}

.onboarding-step {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 12px;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--c-primary);
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
  box-shadow: 0 4px 16px rgba(212, 66, 31, 0.4);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.onboarding-step:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(212, 66, 31, 0.5);
}

.onboarding-step h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  white-space: nowrap;
}

.onboarding-step p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin: 0;
  line-height: 1.4;
}

.step-connector {
  width: 40px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  margin-top: 24px;
  flex-shrink: 0;
}

@media (max-width: 599px) {
  .onboarding-steps {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .onboarding-step {
    padding: 0;
    width: 100%;
    max-width: 280px;
  }

  .step-connector {
    width: 2px;
    height: 24px;
    margin: 8px auto;
  }
}

/* Dark mode for onboarding */
@media (prefers-color-scheme: dark) {
  .section-how-we-start {
    background: var(--dm-on-light) !important;
  }
}

/* ===== CHANGE 7: Form Included List + Risk Reversal ===== */
.form-included {
  margin-top: 24px;
  padding: 20px;
  background: rgba(248, 250, 252, 0.8);
  border-radius: 12px;
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.form-included-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-dark);
  margin: 0 0 12px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-included-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.form-included-list li {
  font-size: 13px;
  color: var(--c-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1.4;
}

.included-check {
  color: #10b981;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.form-risk-reversal {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-muted);
  margin: 16px 0 0 0;
  letter-spacing: 0.3px;
}

@media (max-width: 480px) {
  .form-included-list {
    grid-template-columns: 1fr;
  }
}

/* Dark mode for form included */
@media (prefers-color-scheme: dark) {
  .form-included {
    background: rgba(42, 42, 42, 0.8);
    border-color: var(--dm-border-light);
  }

  .form-included-title {
    color: var(--dm-text);
  }

  .form-included-list li {
    color: var(--c-muted);
  }

  .form-risk-reversal {
    color: var(--c-muted);
  }
}

/* ===== CHANGE 8: PROOF BAR ===== */
.proof-bar {
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-dark) 100%) !important;
  text-align: center !important;
  padding: 48px 0 !important;
}

.proof-bar-heading {
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 32px 0;
}

.proof-quotes {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: stretch;
}

.proof-quote {
  flex: 1;
  max-width: 300px;
  padding: 28px 24px;
  background: #fff;
  border-radius: 16px;
  border: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  position: relative;
}

.proof-quote::before {
  content: '\201C';
  position: absolute;
  top: 10px;
  left: 18px;
  font-size: 52px;
  line-height: 1;
  color: var(--c-primary);
  opacity: 0.15;
  font-family: Georgia, 'Times New Roman', serif;
}

.proof-quote:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}

.proof-quote blockquote {
  margin: 0 0 12px 0;
  font-size: 16px;
  font-weight: 600;
  font-style: italic;
  line-height: 1.5;
  color: var(--c-dark);
  position: relative;
}

.proof-attribution {
  font-size: 13px;
  color: var(--c-muted);
  margin: 0;
  line-height: 1.4;
}

.proof-attribution strong {
  color: var(--c-dark);
  font-weight: 700;
}

@media (max-width: 599px) {
  .proof-bar-heading {
    font-size: 22px;
    margin-bottom: 24px;
  }

  .proof-quotes {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .proof-quote {
    max-width: 100%;
    width: 100%;
    padding: 24px 20px;
  }

  .proof-quote blockquote {
    font-size: 15px;
  }
}

/* ==========================================================================
   NEW SECTIONS — Pricing, Partnership, Case Study, FAQ
   All rules use !important to override existing section:nth-child and
   .section-white/.section-gray-gradient base rules.
   ========================================================================== */

/* ===== STANDALONE PRICING SECTION ===== */
section.section-pricing {
  background: #ffffff !important;
  background-image: none !important;
  text-align: center !important;
  padding: 72px 0 !important;
  position: relative !important;
}

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

section.section-pricing .badge {
  margin-bottom: 16px !important;
}

h2.pricing-section-heading {
  font-size: 36px !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
  color: var(--c-dark) !important;
  margin-bottom: 12px !important;
  line-height: 1.15 !important;
}

p.pricing-section-subtitle {
  font-size: 17px !important;
  color: var(--c-muted) !important;
  margin: 0 auto 48px auto !important;
  max-width: 480px !important;
  line-height: 1.65 !important;
  font-weight: 400 !important;
}

/* Pricing Grid */
.section-pricing .pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 800px;
  margin: 0 auto 24px auto;
}

.section-pricing .pricing-tier {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 12px;
  background: var(--c-light);
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  text-align: center;
  transition: all 0.2s ease;
}

.section-pricing .pricing-tier:hover {
  border-color: var(--c-primary);
  box-shadow: 0 4px 12px rgba(212, 66, 31, 0.12);
  transform: translateY(-2px);
}

.section-pricing .tier-range {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-muted);
  margin-bottom: 4px;
}

.section-pricing .tier-price {
  font-size: 13px;
  color: var(--c-muted);
}

.section-pricing .tier-price strong {
  font-size: 20px;
  font-weight: 800;
  color: var(--c-dark);
  letter-spacing: -0.02em;
}

.section-pricing .tier-enterprise {
  background: var(--c-dark);
  border-color: var(--c-dark);
}

.section-pricing .tier-enterprise:hover {
  border-color: var(--c-dark);
  box-shadow: 0 4px 12px rgba(15, 52, 68, 0.2);
}

.section-pricing .tier-enterprise .tier-range {
  color: rgba(255, 255, 255, 0.7);
}

.section-pricing .tier-contact {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.section-pricing .tier-contact:hover {
  color: #ff6b47;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .section-pricing .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .section-pricing .tier-price strong {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .section-pricing .pricing-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .section-pricing .pricing-tier {
    padding: 12px 8px;
  }

  .section-pricing .tier-range {
    font-size: 12px;
  }

  .section-pricing .tier-price strong {
    font-size: 16px;
  }
}

/* Dark mode - Pricing Grid */
@media (prefers-color-scheme: dark) {
  .section-pricing .pricing-tier {
    background: var(--dm-bg-card);
    border-color: var(--dm-border);
  }

  .section-pricing .pricing-tier:hover {
    border-color: var(--c-primary);
  }

  .section-pricing .tier-range {
    color: var(--dm-text-muted);
  }

  .section-pricing .tier-price {
    color: var(--dm-text-muted);
  }

  .section-pricing .tier-price strong {
    color: var(--dm-text);
  }

  .section-pricing .tier-enterprise {
    background: #1a2e3a;
    border-color: #1a2e3a;
  }
}

/* Legacy Pricing Table (kept for reference) */
.section-pricing .pricing-table-wrap {
  max-width: 520px !important;
  margin: 0 auto 24px auto !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 4px 24px rgba(15, 52, 68, 0.07) !important;
}

.section-pricing .pricing-table {
  width: 100% !important;
  border-collapse: collapse !important;
  text-align: left !important;
}

.section-pricing .pricing-table thead tr {
  background: var(--c-dark) !important;
}

.section-pricing .pricing-table thead th {
  padding: 10px 20px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  color: rgba(255, 255, 255, 0.85) !important;
  border: none !important;
}

.section-pricing .pricing-table tbody tr {
  border-bottom: 1px solid #f1f5f9 !important;
  transition: background 0.15s ease !important;
}

.section-pricing .pricing-table tbody tr:hover {
  background: #f8fafc !important;
}

.section-pricing .pricing-table tbody tr.pt-enterprise,
.section-pricing .pricing-table tbody tr.pt-enterprise:hover {
  background: linear-gradient(135deg, #0f3444 0%, #1a5568 100%) !important;
}

.section-pricing .pricing-table tbody tr:last-child {
  border-bottom: none !important;
}

.section-pricing .pricing-table td {
  padding: 10px 20px !important;
  vertical-align: middle !important;
  border: none !important;
}

.section-pricing .pt-range {
  font-size: 14px !important;
  font-weight: 600 !important;
  color: var(--c-dark) !important;
  position: relative !important;
}

.section-pricing .pt-price {
  font-size: 15px !important;
  color: var(--c-muted) !important;
}

.section-pricing .pt-price strong {
  font-size: 18px !important;
  font-weight: 800 !important;
  color: var(--c-dark) !important;
  letter-spacing: -0.02em !important;
}

.section-pricing .pt-price span {
  font-size: 13px !important;
  font-weight: 500 !important;
  color: var(--c-muted) !important;
}

.section-pricing .pt-contact-link {
  color: var(--c-primary) !important;
  text-decoration: none !important;
  font-weight: 800 !important;
  font-size: 16px !important;
  transition: color 0.2s ease !important;
}

.section-pricing .pt-contact-link:hover {
  color: var(--c-primary-dark) !important;
  text-decoration: underline !important;
}

/* Enterprise row */
.section-pricing .pt-enterprise {
  background: linear-gradient(135deg, #0f3444 0%, #1a5568 100%) !important;
}

.section-pricing .pt-enterprise:hover {
  background: linear-gradient(135deg, #0f3444 0%, #1a5568 100%) !important;
}

.section-pricing .pt-enterprise td {
  padding: 20px 24px !important;
}

.section-pricing .pt-enterprise-row {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 20px !important;
}

.section-pricing .pt-enterprise-info {
  text-align: left !important;
}

.section-pricing .pt-enterprise-info strong {
  display: block !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #fff !important;
  margin-bottom: 2px !important;
}

.section-pricing .pt-enterprise-info span {
  font-size: 13px !important;
  color: rgba(255, 255, 255, 0.7) !important;
}

.section-pricing .pt-enterprise-cta {
  display: inline-block !important;
  padding: 10px 24px !important;
  border-radius: 8px !important;
  background: var(--c-primary) !important;
  color: #fff !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  transition:
    background 0.2s ease,
    transform 0.2s ease !important;
}

.section-pricing .pt-enterprise-cta:hover {
  background: var(--c-primary-dark) !important;
  transform: translateY(-1px) !important;
}

/* Tiered pricing note */
.pricing-tier-note {
  font-size: 13px !important;
  font-style: italic !important;
  color: var(--c-muted) !important;
  margin: 14px auto 32px auto !important;
  max-width: 680px !important;
  text-align: left !important;
}

/* Calculator Toggle Button */
.section-pricing .calc-toggle-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 12px 24px !important;
  border: 2px solid var(--c-dark) !important;
  border-radius: 10px !important;
  background: transparent !important;
  color: var(--c-dark) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  font-family: inherit !important;
  cursor: pointer !important;
  transition:
    background 0.2s ease,
    color 0.2s ease !important;
  margin-bottom: 0 !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}

.section-pricing .calc-toggle-btn:hover {
  background: var(--c-dark) !important;
  color: #fff !important;
}

.section-pricing .calc-toggle-btn[aria-expanded='true'] {
  background: var(--c-dark) !important;
  color: #fff !important;
}

.section-pricing .calc-toggle-chevron {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.section-pricing .calc-toggle-btn[aria-expanded='true'] .calc-toggle-chevron {
  transform: rotate(180deg) !important;
}

/* Calculator panel */
.section-pricing .pricing-calc-panel {
  max-width: 680px !important;
  margin: 24px auto 0 auto !important;
}

/* Pricing responsive */
@media (max-width: 599px) {
  section.section-pricing {
    padding: 48px 0 !important;
  }

  h2.pricing-section-heading {
    font-size: 28px !important;
  }

  p.pricing-section-subtitle {
    font-size: 16px !important;
    margin-bottom: 32px !important;
  }

  .section-pricing .pricing-table thead th {
    padding: 12px 14px !important;
    font-size: 11px !important;
  }

  .section-pricing .pricing-table td {
    padding: 14px !important;
  }

  .section-pricing .pt-range {
    font-size: 13px !important;
  }

  .section-pricing .pt-price strong {
    font-size: 17px !important;
  }

  .section-pricing .pt-enterprise-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
  }

  .section-pricing .pt-enterprise-cta {
    width: 100% !important;
    text-align: center !important;
  }
}

/* Pricing dark mode */
@media (prefers-color-scheme: dark) {
  section.section-pricing {
    background: var(--dm-bg-deep) !important;
    background-image: none !important;
    background-color: var(--dm-bg-deep) !important;
  }

  h2.pricing-section-heading {
    color: var(--dm-text) !important;
  }

  p.pricing-section-subtitle {
    color: var(--dm-text-muted) !important;
  }

  .pricing-tier-note {
    color: var(--dm-text-muted) !important;
  }

  .section-pricing .pricing-table-wrap {
    border-color: var(--dm-border) !important;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3) !important;
  }

  .section-pricing .pricing-table thead tr {
    background: #111827 !important;
  }

  .section-pricing .pricing-table tbody tr {
    border-bottom-color: #1e1e32 !important;
  }

  .section-pricing .pricing-table tbody tr:hover {
    background: #151525 !important;
  }

  .section-pricing .pricing-table tbody tr.pt-enterprise,
  .section-pricing .pricing-table tbody tr.pt-enterprise:hover {
    background: linear-gradient(135deg, #0f3444 0%, #1a5568 100%) !important;
  }

  .section-pricing .pt-range {
    color: #e2e8f0 !important;
  }

  .section-pricing .pt-price strong {
    color: var(--dm-text-light) !important;
  }

  .section-pricing .pt-price span {
    color: #8892a4 !important;
  }

  .section-pricing .calc-toggle-btn {
    border-color: #4a5568 !important;
    color: #e2e8f0 !important;
  }

  .section-pricing .calc-toggle-btn:hover,
  .section-pricing .calc-toggle-btn[aria-expanded='true'] {
    background: #2d3748 !important;
    border-color: #4a5568 !important;
    color: var(--dm-text) !important;
  }
}

/* ===== PARTNERSHIP PROGRAM SECTION ===== */
section.section-partnership {
  padding: 72px 0 !important;
  text-align: center !important;
}

section.section-partnership .badge {
  margin-bottom: 16px !important;
}

h2.partnership-title {
  font-size: 36px !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
  color: var(--c-dark) !important;
  margin-bottom: 12px !important;
  line-height: 1.15 !important;
}

p.partnership-subtitle {
  font-size: 17px !important;
  color: var(--c-muted) !important;
  margin: 0 auto 48px auto !important;
  max-width: 480px !important;
  line-height: 1.65 !important;
  font-weight: 400 !important;
}

.section-partnership .partnership-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 24px !important;
  max-width: 820px !important;
  margin: 0 auto !important;
}

.section-partnership .partnership-card {
  background: #ffffff !important;
  border-radius: 14px !important;
  padding: 36px 30px !important;
  text-align: left !important;
  display: flex !important;
  flex-direction: column !important;
  box-shadow:
    0 2px 8px rgba(15, 52, 68, 0.06),
    0 8px 24px rgba(15, 52, 68, 0.04) !important;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease !important;
  border: 1px solid rgba(226, 232, 240, 0.6) !important;
  border-left: 4px solid transparent !important;
  position: relative !important;
}

.section-partnership .partnership-card:hover {
  transform: translateY(-4px) !important;
  box-shadow:
    0 6px 16px rgba(15, 52, 68, 0.08),
    0 16px 40px rgba(15, 52, 68, 0.08) !important;
}

.section-partnership .partnership-card-primary {
  border-left-color: var(--c-primary) !important;
}

.section-partnership .partnership-card-accent {
  border-left-color: var(--c-accent) !important;
}

.section-partnership .partnership-card h3 {
  font-size: 20px !important;
  font-weight: 700 !important;
  color: var(--c-dark) !important;
  margin-bottom: 24px !important;
  padding-bottom: 16px !important;
  border-bottom: 1px solid #e2e8f0 !important;
}

.section-partnership .partnership-features {
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
  flex: 1 !important;
}

.section-partnership .partnership-card-primary .partnership-features {
  gap: 12px !important;
}

.section-partnership .partnership-feature {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  font-size: 15px !important;
  color: var(--c-dark) !important;
  font-weight: 500 !important;
}

.section-partnership .partnership-card-primary .partnership-feature svg {
  color: var(--c-primary) !important;
  flex-shrink: 0 !important;
}

.section-partnership .partnership-card-accent .partnership-feature svg {
  color: var(--c-accent) !important;
  flex-shrink: 0 !important;
}

/* Partnership responsive */
@media (max-width: 599px) {
  .section-partnership .partnership-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .section-partnership .partnership-card {
    padding: 28px 22px !important;
  }

  p.partnership-subtitle {
    font-size: 16px !important;
    margin-bottom: 36px !important;
  }

  section.section-partnership {
    padding: 48px 0 !important;
  }

  h2.partnership-title {
    font-size: 28px !important;
  }
}

/* Partnership dark mode */
@media (prefers-color-scheme: dark) {
  section.section-partnership {
    background: var(--c-bg) !important;
  }

  .section-partnership .partnership-card {
    background: var(--dm-bg-card) !important;
    border-color: var(--dm-border) !important;
  }

  .section-partnership .partnership-card-primary {
    border-left: 4px solid var(--c-primary) !important;
  }

  .section-partnership .partnership-card-accent {
    border-left: 4px solid var(--c-accent) !important;
  }

  .section-partnership .partnership-card h3 {
    color: var(--dm-text) !important;
    border-bottom-color: var(--dm-border) !important;
  }

  .section-partnership .partnership-feature {
    color: var(--dm-text-subtle) !important;
  }

  h2.partnership-title {
    color: var(--dm-text) !important;
  }

  p.partnership-subtitle {
    color: var(--dm-text-muted) !important;
  }
}

/* ===== CASE STUDY SECTION ===== */
section.section-case-study {
  background: #ffffff !important;
  background-image: none !important;
  padding: 72px 0 !important;
  text-align: center !important;
}

section.section-case-study .badge {
  margin-bottom: 16px !important;
}

h2.case-study-title {
  font-size: 36px !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
  color: var(--c-dark) !important;
  margin-bottom: 48px !important;
  line-height: 1.15 !important;
}

.section-case-study .case-study-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 20px !important;
  max-width: 860px !important;
  margin: 0 auto 48px auto !important;
}

.section-case-study .case-study-card {
  padding: 28px 24px !important;
  border-radius: 14px !important;
  text-align: left !important;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease !important;
  border-left: 4px solid transparent !important;
  position: relative !important;
  overflow: hidden !important;
}

.section-case-study .case-study-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 32px rgba(15, 52, 68, 0.12) !important;
}

.section-case-study .case-study-card h3 {
  font-size: 20px !important;
  font-weight: 700 !important;
  margin-bottom: 6px !important;
}

.section-case-study .case-study-card h4 {
  font-size: 11px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 1.2px !important;
  margin-bottom: 14px !important;
}

.section-case-study .case-study-card p {
  font-size: 14px !important;
  line-height: 1.65 !important;
  color: var(--c-muted) !important;
  margin: 0 !important;
}

/* Challenge card - red tint */
.section-case-study .case-study-challenge {
  background: linear-gradient(145deg, #fef2f2 0%, #fff5f5 100%) !important;
  border-left-color: #ef4444 !important;
}

.section-case-study .case-study-challenge h3 {
  color: #991b1b !important;
}

.section-case-study .case-study-challenge h4 {
  color: #ef4444 !important;
}

/* Solution card - blue tint */
.section-case-study .case-study-solution {
  background: linear-gradient(145deg, #eff6ff 0%, #f5f9ff 100%) !important;
  border-left-color: #3b82f6 !important;
}

.section-case-study .case-study-solution h3 {
  color: #1e3a5f !important;
}

.section-case-study .case-study-solution h4 {
  color: #3b82f6 !important;
}

/* Results card - green tint */
.section-case-study .case-study-results {
  background: linear-gradient(145deg, #f0fdf4 0%, #f5fff8 100%) !important;
  border-left-color: #22c55e !important;
}

.section-case-study .case-study-results h3 {
  color: #14532d !important;
}

.section-case-study .case-study-results h4 {
  color: #22c55e !important;
}

.section-case-study .case-study-results ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.section-case-study .case-study-results ul li {
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
  color: var(--c-muted) !important;
  padding: 5px 0 !important;
}

.section-case-study .case-study-results ul li svg {
  color: #22c55e !important;
  flex-shrink: 0 !important;
  margin-top: 2px !important;
}

.section-case-study .case-study-cta {
  text-align: center;
  margin-top: 32px;
}

/* Case Study Testimonial */
.section-case-study .case-study-testimonial {
  max-width: 660px !important;
  margin: 0 auto !important;
  text-align: center !important;
  padding: 40px 36px !important;
  background: linear-gradient(145deg, #f8fafc 0%, #ffffff 100%) !important;
  border-radius: 16px !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow:
    0 2px 8px rgba(15, 52, 68, 0.04),
    0 8px 24px rgba(15, 52, 68, 0.06) !important;
  position: relative !important;
}

.section-case-study .case-study-quote-icon {
  color: var(--c-primary) !important;
  opacity: 0.2 !important;
  margin-bottom: 16px !important;
  display: block !important;
}

.section-case-study .case-study-testimonial blockquote {
  font-size: 18px !important;
  font-style: italic !important;
  line-height: 1.7 !important;
  color: var(--c-dark) !important;
  margin: 0 0 28px 0 !important;
  font-weight: 500 !important;
}

.section-case-study .case-study-author {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 14px !important;
}

.section-case-study .case-study-avatar {
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, var(--c-accent) 0%, #0096b4 100%) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #fff !important;
  font-weight: 800 !important;
  font-size: 15px !important;
  letter-spacing: 1px !important;
  flex-shrink: 0 !important;
}

.section-case-study .case-study-author-name {
  font-size: 16px !important;
  font-weight: 700 !important;
  color: var(--c-dark) !important;
  text-align: left !important;
}

.section-case-study .case-study-author-title {
  font-size: 13px !important;
  color: var(--c-muted) !important;
  text-align: left !important;
}

/* Case study responsive */
@media (max-width: 768px) {
  .section-case-study .case-study-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    max-width: 480px !important;
  }
}

@media (max-width: 599px) {
  .section-case-study .case-study-card {
    padding: 24px 20px !important;
  }

  .section-case-study .case-study-testimonial {
    padding: 28px 22px !important;
  }

  .section-case-study .case-study-testimonial blockquote {
    font-size: 16px !important;
  }

  section.section-case-study {
    padding: 48px 0 !important;
  }

  h2.case-study-title {
    font-size: 28px !important;
    margin-bottom: 36px !important;
  }
}

/* Case study dark mode */
@media (prefers-color-scheme: dark) {
  section.section-case-study {
    background: var(--dm-bg-deep) !important;
    background-image: none !important;
    background-color: var(--dm-bg-deep) !important;
  }

  h2.case-study-title {
    color: var(--dm-text) !important;
  }

  .section-case-study .case-study-challenge {
    background: linear-gradient(145deg, #2d1515 0%, #1f1010 100%) !important;
  }

  .section-case-study .case-study-challenge h3 {
    color: #fca5a5 !important;
  }

  .section-case-study .case-study-solution {
    background: linear-gradient(145deg, #151f2d 0%, #101820 100%) !important;
  }

  .section-case-study .case-study-solution h3 {
    color: #93c5fd !important;
  }

  .section-case-study .case-study-results {
    background: linear-gradient(145deg, #152d1a 0%, #102015 100%) !important;
  }

  .section-case-study .case-study-results h3 {
    color: #86efac !important;
  }

  .section-case-study .case-study-card p,
  .section-case-study .case-study-results ul li {
    color: var(--dm-text-muted) !important;
  }

  .section-case-study .case-study-challenge h4 {
    color: #fca5a5 !important;
  }

  .section-case-study .case-study-solution h4 {
    color: #93c5fd !important;
  }

  .section-case-study .case-study-results h4 {
    color: #86efac !important;
  }

  .section-case-study .case-study-testimonial {
    background: var(--dm-bg-card) !important;
    border-color: var(--dm-border) !important;
  }

  .section-case-study .case-study-testimonial blockquote {
    color: var(--dm-text-light) !important;
  }

  .section-case-study .case-study-author-name {
    color: var(--dm-text) !important;
  }

  .section-case-study .case-study-author-title {
    color: var(--dm-text-muted) !important;
  }
}

/* ===== FAQ SECTION ===== */
section.section-faq {
  padding: 72px 0 !important;
  text-align: center !important;
}

section.section-faq .badge {
  margin-bottom: 16px !important;
}

h2.faq-title {
  font-size: 36px !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
  color: var(--c-dark) !important;
  margin-bottom: 48px !important;
  line-height: 1.15 !important;
}

.section-faq .faq-list {
  max-width: 700px !important;
  margin: 0 auto !important;
  text-align: left !important;
}

.section-faq .faq-item {
  border-bottom: 1px solid rgba(15, 52, 68, 0.1) !important;
}

.section-faq .faq-item:first-child {
  border-top: 1px solid rgba(15, 52, 68, 0.1) !important;
}

.section-faq .faq-question {
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px !important;
  padding: 22px 4px !important;
  background: none !important;
  border: none !important;
  cursor: pointer !important;
  font-size: 17px !important;
  font-weight: 600 !important;
  color: var(--c-dark) !important;
  text-align: left !important;
  line-height: 1.4 !important;
  transition: color 0.2s ease !important;
  font-family: inherit !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}

.section-faq .faq-question:hover {
  color: var(--c-primary) !important;
}

.section-faq .faq-question:focus-visible {
  outline: 2px solid var(--c-primary) !important;
  outline-offset: 2px !important;
  border-radius: 6px !important;
}

.section-faq .faq-chevron {
  flex-shrink: 0 !important;
  color: var(--c-muted) !important;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.section-faq .faq-question.open .faq-chevron {
  transform: rotate(180deg) !important;
  color: var(--c-primary) !important;
}

.section-faq .faq-answer {
  padding: 0 4px 24px 4px !important;
  overflow: hidden !important;
}

.section-faq .faq-answer p {
  font-size: 15px !important;
  line-height: 1.75 !important;
  color: var(--c-muted) !important;
  margin: 0 !important;
}

/* FAQ responsive */
@media (max-width: 599px) {
  .section-faq .faq-question {
    font-size: 16px !important;
    padding: 18px 2px !important;
  }

  .section-faq .faq-answer p {
    font-size: 14px !important;
  }

  section.section-faq {
    padding: 48px 0 !important;
  }

  h2.faq-title {
    font-size: 28px !important;
    margin-bottom: 36px !important;
  }
}

/* FAQ dark mode */
@media (prefers-color-scheme: dark) {
  section.section-faq {
    background: var(--c-bg) !important;
  }

  .section-faq .faq-item {
    border-color: rgba(255, 255, 255, 0.1) !important;
  }

  .section-faq .faq-item:first-child {
    border-color: rgba(255, 255, 255, 0.1) !important;
  }

  .section-faq .faq-question {
    color: var(--dm-text-light) !important;
  }

  .section-faq .faq-question:hover {
    color: var(--c-primary) !important;
  }

  .section-faq .faq-answer p {
    color: var(--dm-text-muted) !important;
  }

  h2.faq-title {
    color: var(--dm-text) !important;
  }
}

/* ===== HOW IT WORKS SECTION ===== */
.section-how-it-works {
  text-align: center !important;
  padding: 48px 0 56px !important;
}

h2.how-it-works-title {
  font-size: 36px !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
  color: var(--c-dark) !important;
  margin-bottom: 12px !important;
  line-height: 1.15 !important;
}

p.how-it-works-subtitle {
  font-size: 17px !important;
  color: var(--c-muted) !important;
  margin: 0 0 48px 0 !important;
  line-height: 1.5 !important;
}

/* Flow container — mobile-first: vertical stack */
.how-it-works-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 860px;
  margin: 0 auto;
}

/* Stage card */
.hiw-stage {
  position: relative;
  width: 100%;
  max-width: 400px;
  padding: 0 20px;
}

/* Stage number badge */
.hiw-stage-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--c-primary);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
  box-shadow: 0 4px 16px rgba(212, 66, 31, 0.35);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.hiw-stage:hover .hiw-stage-number {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(212, 66, 31, 0.5);
}

/* Illustration container */
.hiw-stage-illustration {
  max-width: 360px;
  margin: 0 auto 16px auto;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f4f8 0%, #e8eef4 100%);
  padding: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.hiw-stage-illustration img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

/* Stage label */
.hiw-stage-label {
  font-size: 20px !important;
  font-weight: 700 !important;
  color: var(--c-dark) !important;
  margin-bottom: 8px !important;
  letter-spacing: -0.01em !important;
}

/* Stage copy */
.hiw-stage-copy {
  font-size: 15px;
  color: var(--c-muted);
  line-height: 1.5;
  margin: 0;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}

/* Flow connector — mobile vertical */
.hiw-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 0;
}

.hiw-chevron {
  display: block;
}

/* Footer text */
.hiw-footer {
  font-size: 18px !important;
  font-weight: 700 !important;
  color: var(--c-dark) !important;
  margin: 48px 0 12px 0 !important;
  letter-spacing: -0.01em !important;
}

/* CTA link */
.hiw-cta {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  color: var(--c-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.hiw-cta:hover {
  color: var(--c-primary-dark);
  text-decoration: underline;
}

/* === How It Works — Desktop 2×2 Grid === */
@media (min-width: 900px) {
  .how-it-works-flow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 56px;
    row-gap: 48px;
    max-width: 860px;
    position: relative;
  }

  /* Hide mobile vertical connectors */
  .hiw-connector {
    display: none;
  }

  /* Place stages in 2×2 Z-flow grid */
  .hiw-stage {
    max-width: none;
    padding: 0;
  }

  .hiw-stage-1 {
    grid-column: 1;
    grid-row: 1;
  }
  .hiw-stage-2 {
    grid-column: 2;
    grid-row: 1;
  }
  .hiw-stage-3 {
    grid-column: 1;
    grid-row: 2;
  }
  .hiw-stage-4 {
    grid-column: 2;
    grid-row: 2;
  }

  /* Horizontal connector: Stage 1 → 2 */
  .hiw-stage-1::after {
    content: '';
    position: absolute;
    top: 35%;
    right: -34px;
    width: 12px;
    height: 12px;
    border-top: 2px dashed var(--c-accent);
    border-right: 2px dashed var(--c-accent);
    transform: rotate(45deg);
    opacity: 0.5;
  }

  /* Down connector: between row 1 and row 2 (centered) */
  .how-it-works-flow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    border-bottom: 2px dashed var(--c-accent);
    border-right: 2px dashed var(--c-accent);
    transform: translate(-50%, -50%) rotate(45deg);
    opacity: 0.5;
  }

  /* Horizontal connector: Stage 3 → 4 */
  .hiw-stage-3::after {
    content: '';
    position: absolute;
    top: 35%;
    right: -34px;
    width: 12px;
    height: 12px;
    border-top: 2px dashed var(--c-accent);
    border-right: 2px dashed var(--c-accent);
    transform: rotate(45deg);
    opacity: 0.5;
  }

  .hiw-stage-illustration {
    max-width: none;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
  }

  .hiw-stage-illustration img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  /* Dashboard panels — zoom into content, crop perspective edges */
  .hiw-stage-2 .hiw-stage-illustration,
  .hiw-stage-3 .hiw-stage-illustration {
    background: linear-gradient(135deg, #e8edf2 0%, #dde3ea 100%);
    padding: 0;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }

  .hiw-stage-2 .hiw-stage-illustration img,
  .hiw-stage-3 .hiw-stage-illustration img {
    object-fit: cover;
    border-radius: 16px;
  }

  /* Shift Stage 3 crop to focus on the stats area */
  .hiw-stage-3 .hiw-stage-illustration img {
    object-position: center 30%;
  }

  /* Device scene — fill container, crop excess */
  .hiw-stage-4 .hiw-stage-illustration {
    padding: 0;
  }

  .hiw-stage-4 .hiw-stage-illustration img {
    object-fit: cover;
    object-position: center 20%;
    border-radius: 16px;
  }
}

/* === How It Works — Responsive === */

/* Mobile */
@media (max-width: 599px) {
  .section-how-it-works {
    padding: 36px 0 44px !important;
  }

  h2.how-it-works-title {
    font-size: 28px !important;
  }

  p.how-it-works-subtitle {
    font-size: 15px !important;
    margin-bottom: 36px !important;
  }

  .hiw-stage-illustration {
    max-width: 260px;
  }

  .hiw-connector svg:first-child {
    height: 32px;
  }

  .hiw-connector {
    padding: 8px 0;
  }

  .hiw-stage-label {
    font-size: 18px !important;
  }

  .hiw-stage-copy {
    font-size: 14px;
  }

  .hiw-footer {
    font-size: 16px !important;
    margin-top: 36px !important;
  }

  .hiw-cta {
    display: inline-block;
    background: var(--c-primary);
    color: #fff;
    padding: 12px 32px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    margin-top: 8px;
  }
}

/* Small tablets — single column */
@media (min-width: 600px) and (max-width: 899px) {
  .hiw-stage-illustration {
    max-width: 340px;
  }
}

/* === How It Works — Dark Mode === */
@media (prefers-color-scheme: dark) {
  .section-how-it-works {
    background: var(--dm-bg-deep) !important;
  }

  h2.how-it-works-title {
    color: var(--dm-text) !important;
  }

  p.how-it-works-subtitle {
    color: var(--dm-text-muted) !important;
  }

  .hiw-stage-label {
    color: var(--dm-text) !important;
  }

  .hiw-stage-copy {
    color: var(--dm-text-muted);
  }

  .hiw-stage-illustration {
    background: rgba(255, 255, 255, 0.95);
    border-color: var(--dm-border);
  }

  .hiw-footer {
    color: var(--dm-text) !important;
  }

  .hiw-cta {
    color: var(--c-accent);
  }

  .hiw-cta:hover {
    color: #33c7e8;
  }
}

/* ===== LATE DARK MODE OVERRIDES =====
   These must come after base rules that use !important,
   so source-order wins the specificity tie. */
@media (prefers-color-scheme: dark) {
  /* --- Section utility classes --- */
  .section-gray-gradient {
    background: var(--c-bg) !important;
  }

  .section-footer {
    background: var(--dm-bg-deep) !important;
    border-top-color: var(--dm-border) !important;
  }

  /* --- Integrator cards --- */
  .integrator-card {
    background: var(--dm-bg-card) !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3) !important;
  }

  /* --- Carousel title --- */
  .carousel-title {
    background: linear-gradient(
      135deg,
      rgba(42, 42, 42, 0.9) 0%,
      rgba(30, 30, 30, 0.8) 100%
    ) !important;
    border-color: rgba(212, 66, 31, 0.2) !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3) !important;
  }

  /* --- Hero phone label --- */
  .hero-phone-label {
    background: var(--dm-bg-card) !important;
    border-color: rgba(0, 180, 220, 0.2) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
  }

  /* --- Hero overlays --- */
  .hero-content::before {
    background: linear-gradient(
      90deg,
      rgba(18, 18, 18, 0.9) 0%,
      rgba(18, 18, 18, 0.3) 100%
    ) !important;
  }

  .hero-section::before {
    background: rgba(18, 18, 18, 0.97) !important;
  }

  /* --- Pricing calculator --- */
  .pricing-calculator-compact {
    background: var(--dm-bg-card) !important;
    border-color: var(--dm-border) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
  }

  .location-input-compact {
    background: var(--dm-bg-input) !important;
    border-color: var(--dm-border-light) !important;
    color: var(--dm-text) !important;
  }

  .location-input-compact:focus {
    background: var(--dm-bg-input-focus) !important;
  }

  .location-slider-compact {
    background: var(--dm-border-light) !important;
  }

  .calc-results {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: var(--dm-border) !important;
  }

  .result-divider {
    background: var(--dm-border) !important;
  }

  /* --- Challenge / Solution cards --- */
  .challenge-card {
    background: linear-gradient(
      135deg,
      rgba(239, 68, 68, 0.1) 0%,
      rgba(220, 38, 38, 0.05) 100%
    ) !important;
    border-color: rgba(239, 68, 68, 0.2) !important;
  }

  .solution-card-right {
    background: linear-gradient(
      135deg,
      rgba(16, 185, 129, 0.1) 0%,
      rgba(5, 150, 105, 0.05) 100%
    ) !important;
    border-color: rgba(16, 185, 129, 0.2) !important;
  }

  .challenge-title {
    color: #fca5a5 !important;
  }

  .challenge-text {
    color: #fca5a5 !important;
  }

  .solution-title {
    color: #6ee7b7 !important;
  }

  .solution-text {
    color: #6ee7b7 !important;
  }

  /* --- Proof bar quotes --- */
  .proof-quote {
    background: var(--dm-bg-card) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
  }

  .proof-quote:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4) !important;
  }

  /* --- Logo hover --- */
  .logos img:hover {
    background: rgba(255, 255, 255, 1) !important;
  }

  /* --- Form error / disabled --- */
  .error {
    color: #ff6b6b !important;
  }

  .btn-form {
    background: #4a5568 !important;
  }
}
