/* ============================================
   Rainbow Dubai - Main Stylesheet
   Intent: Premium, conversion-focused design for Rainbow SRX
   ============================================ */

/* ============================================
   DESIGN TOKENS (CSS Custom Properties)
   Intent: Centralized design system variables
   ============================================ */
:root {
  /* Brand Colors */
  --brand-dark: #034e7b;
  --brand-light: #1583df;
  --brand-gradient: linear-gradient(135deg, var(--brand-dark), var(--brand-light));
  
  /* Neutral Colors */
  --bg: #ffffff;
  --muted: #f5f7fa;
  --text: #0d2433;
  --text-light: #5a6d7a;
  --border: #e2e8f0;
  
  /* Accent Colors */
  --success: #10b981;
  --error: #ef4444;
  --warning: #f59e0b;
  
  /* Layout */
  --radius: 0px;
  --radius-sm: 0px;
  --radius-lg: 0px;
  --max-width: 1200px;
  --gap: 24px;
  --gap-sm: 12px;
  --gap-lg: 48px;
  
  /* Typography */
  --ff-ui: 'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --ff-body: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  
  /* Fluid Typography */
  --fs-h1: clamp(28px, 4vw, 48px);
  --fs-h2: clamp(22px, 2.6vw, 34px);
  --fs-h3: clamp(18px, 2vw, 24px);
  --fs-h4: clamp(16px, 1.5vw, 20px);
  --fs-body: 16px;
  --fs-small: 14px;
  --fs-xs: 12px;
  
  /* Line Heights */
  --lh-tight: 1.2;
  --lh-base: 1.6;
  --lh-relaxed: 1.8;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.15);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
  
  /* Z-index Scale */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-modal: 300;
  --z-tooltip: 400;
  --z-loader: 9999;
  
  /* UAE Flag Colors */
  --uae-green: #00732F;
  --uae-white: #FFFFFF;
  --uae-black: #000000;
  --uae-red: #FF0000;
}

/* ============================================
   CSS RESET & BASE STYLES
   Intent: Normalize browser defaults
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

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

body {
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  line-height: var(--lh-base);
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
  /* Performance: Prevent layout shift and optimize decoding */
  content-visibility: auto;
}

/* Safari iOS Performance Optimizations */
@supports (-webkit-touch-callout: none) {
  /* Optimize touch scrolling for iOS */
  body {
    -webkit-overflow-scrolling: touch;
  }
  
  /* Reduce GPU memory usage on iOS */
  .hero-video {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

a {
  color: var(--brand-light);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--brand-dark);
}

/* Focus Styles for Accessibility */
:focus-visible {
  outline: 3px solid var(--brand-light);
  outline-offset: 2px;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* ============================================
   TYPOGRAPHY
   Intent: Consistent heading and text styles
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-ui);
  font-weight: 700;
  line-height: var(--lh-tight);
  color: var(--text);
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }

p {
  margin-bottom: 1em;
}

.text-gradient {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-muted {
  color: var(--text-light);
}

/* ============================================
   LAYOUT UTILITIES
   Intent: Common layout patterns
   ============================================ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

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

.section {
  padding: 45px 0;
  /* Performance: Contain layout/paint to this section */
  contain: layout style;
}

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

@media (min-width: 1024px) {
  .section {
    padding: 70px 0;
  }
}

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

.section-header h2 {
  margin-bottom: var(--gap-sm);
}

.section-header p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Grid System */
.grid {
  display: grid;
  gap: var(--gap);
}

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

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

@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
}

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

/* Flexbox Utilities */
.flex {
  display: flex;
}

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

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

.flex-col {
  flex-direction: column;
}

.gap-sm { gap: var(--gap-sm); }
.gap { gap: var(--gap); }
.gap-lg { gap: var(--gap-lg); }

/* ============================================
   BUTTONS
   Intent: Primary and secondary button styles
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--ff-ui);
  font-weight: 600;
  font-size: var(--fs-body);
  border-radius: var(--radius);
  transition: all var(--transition-base);
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--brand-dark);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: var(--brand-dark);
  color: white;
}

.btn-secondary {
  background: white;
  color: var(--brand-dark);
  border-color: var(--brand-dark);
}

.btn-secondary:hover {
  color: var(--brand-dark);
}

.btn-whatsapp {
  background: #25D366;
  color: white;
}

.btn-whatsapp:hover {
  color: white;
}

.btn-map {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-family: var(--ff-ui);
  font-weight: 600;
  font-size: var(--fs-small);
  border-radius: var(--radius);
  background: white !important;
  color: var(--brand-dark) !important;
  border: 2px solid var(--brand-dark);
  text-decoration: none;
  transition: none;
}

.btn-map svg {
  stroke: var(--brand-dark) !important;
  fill: none !important;
}

.btn-map:hover {
  background: white !important;
  color: var(--brand-dark) !important;
  border-color: var(--brand-dark) !important;
}

.btn-plain {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--ff-ui);
  font-weight: 600;
  font-size: var(--fs-body);
  border-radius: var(--radius);
  text-decoration: none;
  border: none;
  background: var(--brand-dark);
  color: white;
  cursor: pointer;
  transition: none;
}

.btn-plain:hover,
a.btn-plain:hover {
  background: var(--brand-dark) !important;
  color: white !important;
  transform: none !important;
  box-shadow: none !important;
  text-decoration: none !important;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 16px;
}

.btn-sm {
  padding: 10px 20px;
  font-size: var(--fs-small);
}

/* Auto width on mobile - centered */
@media (max-width: 639px) {
  .btn-block-mobile {
    width: auto;
    padding-left: 24px;
    padding-right: 24px;
  }
}

/* ============================================
   SKIP LINK (Accessibility)
   Intent: Allow keyboard users to skip to main content
   ============================================ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-dark);
  color: white;
  padding: 12px 24px;
  border-radius: var(--radius);
  z-index: var(--z-tooltip);
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 10px;
}

/* ============================================
   HEADER & NAVIGATION
   Intent: Sticky header with responsive navigation
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: transparent;
  box-shadow: none;
  transition: background-color var(--transition-base), box-shadow var(--transition-base);
  transform: translateY(0); /* Always visible */
  /* Safari iOS: Force GPU layer for smooth fixed positioning */
  -webkit-transform: translateZ(0);
  will-change: background-color;
}

.header.scrolled {
  background: var(--brand-dark);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  transition: height var(--transition-base);
}

@media (min-width: 1024px) {
  .header-inner {
    height: 90px;
  }
  
  .header.scrolled .header-inner {
    height: 70px;
  }
}

/* Legacy classes - no longer used, header always stays visible */
.header.hide {
  transform: translateY(-100%);
}

.header.show {
  transform: translateY(0);
}

/* Prevent header from hiding when mobile menu is open */
body.menu-open .header {
  transform: translateY(0) !important;
}

body.menu-open .header.hide {
  transform: translateY(0) !important;
}

/* Z-index layering: backdrop < menu < header (when menu open, menu is on top) */
.mobile-menu-backdrop {
  z-index: 9998;
}

.mobile-nav {
  z-index: 9999;
}

/* When menu is open, menu should be above header */
body.menu-open .header {
  z-index: 9997;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-ui);
  font-weight: 700;
  font-size: 22px;
  color: white;
  text-decoration: none;
}

.logo img {
  height: 45px;
  width: auto;
  display: block;
  transition: height var(--transition-base);
}

@media (min-width: 1024px) {
  .logo img {
    height: 55px;
  }
  
  .header.scrolled .logo img {
    height: 45px;
  }
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--brand-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
}

/* Navigation */
.nav {
  display: none;
}

@media (min-width: 1024px) {
  .nav {
    display: flex;
    align-items: center;
    gap: 32px;
  }
}

.nav-link {
  font-family: var(--ff-ui);
  font-weight: 500;
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: white;
  transition: width var(--transition-fast);
}

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

.nav-link:hover,
.nav-link.active {
  color: white;
}

/* Header CTA */
.header-cta {
  display: none;
}

@media (min-width: 1024px) {
  .header-cta {
    display: flex;
    gap: 12px;
  }
}

/* Intent: White button in dark header for high contrast */
.header-cta .btn {
  background: white;
  color: var(--brand-dark);
  border: 2px solid white;
  transition: all 0.3s ease;
}

.header-cta .btn:hover {
  /* No hover effect */
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 8px;
  background: rgba(0, 0, 0, 0.35);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  cursor: pointer;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: all var(--transition-fast);
}

.menu-toggle:hover,
.menu-toggle:focus {
  background: rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.5);
}

.menu-toggle:active {
  transform: scale(0.95);
}

@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all var(--transition-fast);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.menu-toggle.active {
  background: rgba(0, 0, 0, 0.6);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Menu Backdrop */
.mobile-menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 9998;
  pointer-events: none;
}

.mobile-menu-backdrop.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 85%;
  max-width: 320px;
  height: 100vh;
  height: 100dvh;
  background: var(--brand-dark);
  background-color: var(--brand-dark);
  padding: 80px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 9999;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
}

.mobile-nav.active {
  transform: translateX(0);
}

.mobile-nav .nav-link {
  font-size: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  color: white;
  text-decoration: none;
  display: block;
  transition: background-color 0.2s ease;
}

.mobile-nav .nav-link:active {
  background-color: rgba(255, 255, 255, 0.1);
}

.mobile-nav .btn {
  margin-top: 24px;
  width: 100%;
  justify-content: center;
}

/* ============================================
   HERO SECTION
   Intent: Impactful above-the-fold presentation
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 70px;
  background: linear-gradient(135deg, #034e7b 0%, #0d2433 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.45) 50%,
    rgba(0, 0, 0, 0.55) 100%
  );
  z-index: 1;
  animation: gradientShift 15s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.9;
  }
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Safari iOS optimization: force GPU compositing layer */
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  /* Optimize video rendering */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  object-position: center;
  z-index: 0;
  filter: brightness(0.85) contrast(1.1);
  transition: opacity 1s ease-in-out;
}

/* Intro video - starts visible */
.hero-video-intro {
  z-index: 1;
  opacity: 1;
}

.hero-video-intro.fade-out {
  opacity: 0;
}

/* Main video - starts hidden */
.hero-video-main {
  z-index: 0;
  opacity: 0;
}

.hero-video-main.fade-in {
  opacity: 1;
  z-index: 1;
}

.hero-video-main.fade-out {
  opacity: 0;
  z-index: 0;
}

.hero-video-intro.fade-in {
  opacity: 1;
  z-index: 1;
}

/* Mobile: Show right frame during seconds 1-4 of intro video */
@media (max-width: 768px) {
  .hero-video-intro.show-right-frame {
    object-position: 80% center;
  }
}

@keyframes videoFadeIn {
  from {
    opacity: 0;
    transform: scale(1.05);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Additional overlay for better text contrast */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center left,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 700px;
  padding: 40px 0;
  animation: fadeInUp 1s ease-out;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 20px;
  border-radius: 0px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: var(--fs-small);
  font-weight: 600;
  margin-bottom: 28px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.5px;
}

.hero h1 {
  color: white;
  margin-bottom: 24px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5), 0 2px 10px rgba(3, 78, 123, 0.3);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: clamp(17px, 2.2vw, 22px);
  line-height: var(--lh-relaxed);
  opacity: 0.98;
  margin-bottom: 36px;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
}

@media (min-width: 640px) {
  .hero-ctas {
    flex-direction: row;
    gap: 20px;
  }
}

.hero-ctas .btn {
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.hero-ctas .btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.hero-ctas .btn:hover::before {
  /* No hover effect */
}

.hero-ctas .btn-primary {
  background: white;
  color: var(--brand-dark);
  border: 2px solid white;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.hero-ctas .btn-primary:hover {
  /* No hover effect */
}

.hero-ctas .btn-whatsapp {
  background: #25D366;
  color: white;
  border: 2px solid #25D366;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.hero-ctas .btn-whatsapp:hover {
  /* No hover effect */
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 56px;
  padding-top: 36px;
  border-top: 2px solid rgba(255, 255, 255, 0.25);
  max-width: 500px;
}

.hero-stat {
  text-align: center;
}

.hero-stat-value {
  font-family: var(--ff-ui);
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.85) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  margin-bottom: 8px;
  line-height: 1;
}

.hero-stat-label {
  font-size: var(--fs-small);
  opacity: 0.9;
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* Mobile optimizations */
@media (max-width: 767px) {
  .hero {
    min-height: 100vh;
    min-height: 100dvh;
    padding-top: 70px;
  }
  
  .hero-content {
    padding: 60px 0 40px;
    max-width: 100%;
  }
  
  .hero-badge {
    padding: 8px 16px;
    font-size: 12px;
    margin-bottom: 20px;
  }
  
  .hero h1 {
    margin-bottom: 20px;
    font-size: clamp(26px, 7vw, 36px);
  }
  
  .hero-subtitle {
    font-size: clamp(15px, 4vw, 18px);
    margin-bottom: 28px;
  }
  
  .hero-ctas {
    gap: 12px;
  }
  
  .hero-stats {
    gap: 24px;
    margin-top: 40px;
    padding-top: 28px;
  }
  
  .hero-stat-value {
    font-size: clamp(24px, 6vw, 32px);
  }
  
  .hero-stat-label {
    font-size: 11px;
  }
}

/* Tablet optimizations */
@media (min-width: 768px) and (max-width: 1023px) {
  .hero-content {
    max-width: 600px;
    padding: 50px 0;
  }
  
  .hero-badge {
    padding: 9px 18px;
  }
  
  .hero h1 {
    font-size: clamp(32px, 5vw, 42px);
  }
  
  .hero-subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
  }
  
  .hero-stats {
    gap: 28px;
  }
}

/* Medium screens (14" laptops) - Reduce hero content scale */
@media (min-width: 1024px) and (max-width: 1600px) {
  .hero-content {
    max-width: 600px;
    padding: 40px 0;
  }
  
  .hero h1 {
    font-size: clamp(32px, 3.5vw, 44px);
    margin-bottom: 20px;
  }
  
  .hero-subtitle {
    font-size: clamp(16px, 1.8vw, 20px);
    margin-bottom: 30px;
  }
  
  .hero-badge {
    font-size: 13px;
    padding: 9px 18px;
    margin-bottom: 22px;
  }
  
  .hero-ctas {
    gap: 16px;
  }
  
  .hero-ctas .btn-lg {
    padding: 12px 24px;
    font-size: 15px;
  }
  
  .hero-stats {
    gap: 28px;
    margin-top: 48px;
    padding-top: 32px;
  }
  
  .hero-stat-value {
    font-size: clamp(28px, 3vw, 38px);
  }
  
  .hero-stat-label {
    font-size: 13px;
  }
}

/* Large screens */
@media (min-width: 1601px) {
  .hero-content {
    max-width: 750px;
  }
  
  .hero h1 {
    font-size: 52px;
  }
  
  .hero-subtitle {
    font-size: 24px;
  }
}

/* ============================================
   DUBAI PROBLEM INTRO SECTION
   Intent: Immediate problem awareness
   ============================================ */
.dubai-problem-intro {
  background: linear-gradient(180deg, #ffffff 0%, #f5f7fa 100%);
  padding: 80px 0;
}

.problem-intro-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.problem-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(3, 78, 123, 0.1);
  color: var(--brand-dark);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-left: 3px solid var(--brand-dark);
}

.problem-intro-content h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 20px;
  color: var(--text);
  line-height: 1.2;
}

.problem-intro-text {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 0;
}

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

@media (min-width: 640px) {
  .problem-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.problem-stat-card {
  background: white;
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border-top: 4px solid var(--brand-dark);
}

.problem-stat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.problem-stat-icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}

.problem-stat-number {
  font-family: var(--ff-ui);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--brand-dark);
  line-height: 1;
  margin-bottom: 8px;
}

.problem-stat-label {
  font-family: var(--ff-ui);
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.3;
}

.problem-stat-card p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 0;
  line-height: 1.5;
  padding-left: 0;
  position: relative;
}

/* ============================================
   PROBLEMS DETAILED SECTION
   Intent: Deep dive into specific problems
   ============================================ */
.problems-detailed {
  background: var(--muted);
  padding: 100px 0;
}

.section-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(3, 78, 123, 0.1);
  color: var(--brand-dark);
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-left: 3px solid var(--brand-dark);
}

.problems-showcase {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-top: 60px;
}

.problem-card-large {
  background: white;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-base);
}

@media (min-width: 1024px) {
  .problem-card-large {
    grid-template-columns: 45% 55%;
  }
  
  .problem-card-large:nth-child(even) {
    grid-template-columns: 55% 45%;
  }
  
  .problem-card-large:nth-child(even) .problem-card-visual {
    order: 2;
  }
  
  .problem-card-large:nth-child(even) .problem-card-content {
    order: 1;
  }
}

.problem-card-large:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.problem-card-visual {
  position: relative;
  height: 300px;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .problem-card-visual {
    height: 100%;
    min-height: 400px;
  }
}

.problem-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.problem-card-large:hover .problem-card-visual img {
  /* No hover effect */
}

.problem-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--brand-dark);
  color: white;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-ui);
  font-weight: 800;
  font-size: 20px;
}

.problem-card-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 767px) {
  .problem-card-content {
    padding: 32px 24px;
  }
  
  .problem-overlay {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }
}

.problem-card-content h3 {
  font-size: clamp(22px, 3vw, 28px);
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.2;
}

.problem-description {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 24px;
}

.problem-effects {
  list-style: none;
  padding: 0;
  margin: 0;
}

.problem-effects li {
  padding: 10px 0 10px 24px;
  position: relative;
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
}

.problem-effects li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  background: var(--brand-light);
  border-radius: 50%;
}

/* PM Levels Info */
.pm-levels-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.pm-level {
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 14px;
  text-align: center;
  font-weight: 500;
  border-left: 4px solid;
}

.pm-level strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pm-level.good {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
  border-color: #059669;
}

.pm-level.moderate {
  background: rgba(245, 158, 11, 0.1);
  color: #d97706;
  border-color: #d97706;
}

.pm-level.unhealthy {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
  border-color: #dc2626;
}

@media (max-width: 640px) {
  .pm-levels-info {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   SOLUTION INTRO SECTION
   Intent: Present Rainbow as the hero with product image
   ============================================ */
.solution-intro {
  background: linear-gradient(135deg, var(--brand-dark) 0%, #0d2433 100%);
  color: white;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.solution-intro::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(21, 131, 223, 0.3) 0%, transparent 70%);
}

.solution-hero {
  display: grid;
  gap: 32px;
  align-items: center;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.solution-hero-title {
  grid-column: 1 / -1;
}

.solution-hero-title h2 {
  font-size: clamp(28px, 4vw, 42px);
  color: white;
  margin-bottom: 0;
  line-height: 1.2;
}

@media (min-width: 1024px) {
  .solution-hero {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
  
  .solution-hero-title {
    grid-column: 1;
  }
  
  .solution-hero-image {
    grid-column: 2;
    grid-row: 1 / 3;
  }
  
  .solution-hero-content {
    grid-column: 1;
    grid-row: 2;
  }
}

.solution-text {
  font-size: clamp(16px, 1.8vw, 19px);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 32px;
}

.solution-text strong {
  color: white;
  font-weight: 700;
}

.solution-highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.solution-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0;
  border-left: 3px solid var(--brand-light);
  transition: all var(--transition-base);
}

.solution-highlight-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(4px);
}

.solution-highlight-item strong {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
  color: white;
}

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

.solution-hero-image {
  position: relative;
  border-radius: 0;
  overflow: visible;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.solution-hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}

/* Corner Badge - Horizontal */
.solution-corner-ribbon {
  position: absolute;
  top: 20px;
  right: 20px;
  pointer-events: none;
  z-index: 2;
}

.solution-corner-ribbon span {
  display: inline-block;
  background: white;
  color: var(--brand-dark);
  padding: 10px 20px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  border: 2px solid var(--brand-dark);
  white-space: nowrap;
  line-height: 1.2;
  position: relative;
}

.solution-corner-ribbon span::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #000000 0%, #FFFFFF 25%, #007A3D 50%, #FF0000 100%);
  z-index: -1;
  padding: 2px;
  background-clip: padding-box;
}

/* CTA Button */
.solution-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  padding: 18px 36px;
  background: white;
  color: var(--brand-dark);
  font-family: var(--ff-ui);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.3px;
  text-decoration: none;
  border: 3px solid white;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.solution-cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--brand-gradient);
  transition: left var(--transition-base);
  z-index: 0;
}

.solution-cta-btn:hover::before {
  /* No hover effect */
}

.solution-cta-btn:hover {
  /* No hover effect */
}

.solution-cta-text {
  position: relative;
  z-index: 1;
}

.solution-cta-btn svg {
  position: relative;
  z-index: 1;
  transition: transform var(--transition-base);
}

.solution-cta-btn:hover svg {
  /* No hover effect */
}

@media (max-width: 1023px) {
  .solution-hero {
    gap: 40px;
  }
  
  .solution-hero-content h2 {
    font-size: clamp(24px, 6vw, 32px);
  }
  
  .solution-text {
    font-size: 16px;
    margin-bottom: 28px;
  }
  
  .solution-highlights {
    gap: 16px;
  }
  
  .solution-highlight-item {
    padding: 14px;
  }
  
  .solution-corner-ribbon {
    top: 16px;
    right: 16px;
  }
  
  .solution-corner-ribbon span {
    padding: 8px 16px;
    font-size: 10px;
    letter-spacing: 0.5px;
  }
  
  .solution-cta-btn {
    width: 100%;
    justify-content: center;
    padding: 16px 32px;
    font-size: 16px;
  }
}

.solution-benefits {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .solution-benefits {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 40px 32px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all var(--transition-base);
}

.benefit-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.benefit-icon {
  font-size: 56px;
  margin-bottom: 20px;
  display: block;
}

.benefit-card h3 {
  color: white;
  font-size: 22px;
  margin-bottom: 12px;
  line-height: 1.3;
  margin-top: 0;
}

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

/* ============================================
   HOW IT WORKS SECTION
   Intent: Simple 3-step explanation
   ============================================ */
.how-it-works {
  background: var(--muted);
}

.step-card {
  text-align: center;
  padding: 40px 24px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  position: relative;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.step-number {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--brand-gradient);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-ui);
  font-weight: 700;
  font-size: 18px;
}

.step-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: var(--muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
}

.step-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.step-card h3 {
  margin-bottom: 12px;
  color: var(--brand-dark);
}

.step-card p {
  color: var(--text-light);
  margin-bottom: 0;
}

/* ============================================
   DUBAI PROBLEMS SECTION
   Intent: Emotional connection with local issues
   ============================================ */
.problems {
  background: linear-gradient(180deg, var(--bg) 0%, var(--muted) 100%);
}

.problem-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.problem-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.problem-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--muted) 0%, #e2e8f0 100%);
  position: relative;
}

.problem-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.problem-card:hover .problem-image img {
  transform: scale(1.05);
}

/* Intent: Placeholder icon when no image */
.problem-image:empty::before {
  content: '🏜️';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 64px;
  opacity: 0.3;
}

.problem-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.problem-icon {
  width: 56px;
  height: 56px;
  background: rgba(21, 131, 223, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 16px;
}

.problem-content h3 {
  margin-bottom: 12px;
  font-size: var(--fs-h4);
  color: var(--brand-dark);
}

.problem-content p {
  color: var(--text-light);
  margin-bottom: 16px;
  flex: 1;
}

.problem-stat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 8px 12px;
  background: var(--muted);
  border-radius: var(--radius-sm);
  font-size: var(--fs-small);
  color: var(--brand-dark);
  font-weight: 600;
}

.problem-stat img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ============================================
   PRODUCT FEATURES SECTION
   Intent: Showcase Rainbow SRX capabilities
   ============================================ */
.features {
  background: var(--brand-dark);
  color: white;
  position: relative;
  overflow: hidden;
}

.features::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(21, 131, 223, 0.3) 0%, transparent 70%);
  border-radius: 50%;
}

.features .section-header h2,
.features .section-header p {
  color: white;
}

.features .section-header p {
  opacity: 0.8;
}

.features-grid {
  display: grid;
  gap: var(--gap);
  grid-template-columns: repeat(1, 1fr);
}

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

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(5, 1fr);
    max-width: 1200px;
    margin: 0 auto;
  }
}

/* Main Features Grid - 3 columns */
.features-grid-main {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(1, 1fr);
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .features-grid-main {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}

.feature-card-main {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0;
  backdrop-filter: blur(10px);
  transition: all var(--transition-base);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.feature-card-main:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.25);
}

.feature-image-main {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
}

.feature-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.feature-card-main:hover .feature-image-main img {
  transform: scale(1.08);
}

.feature-content-main {
  padding: 28px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.feature-content-main h3 {
  color: white;
  margin-bottom: 14px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.feature-content-main p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.6;
  flex: 1;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  transition: all var(--transition-base);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.feature-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.feature-card:hover .feature-image img {
  transform: scale(1.1);
}

/* Intent: Placeholder icon when no image */
.feature-image:empty::before {
  content: '⚡';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 64px;
  opacity: 0.3;
}

.feature-card > h3,
.feature-card > p {
  padding: 0 20px;
  text-align: center;
}

.feature-card > h3 {
  color: white;
  margin: 20px 20px 12px;
  font-size: clamp(16px, 1.8vw, 18px);
  font-weight: 600;
  line-height: 1.3;
}

.feature-card > p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
  padding-bottom: 0;
  font-size: 14px;
  line-height: 1.5;
}

@media (min-width: 1024px) {
  .feature-card > h3 {
    font-size: 17px;
  }
  
  .feature-card > p {
    font-size: 13px;
  }
  
  .feature-card > h3,
  .feature-card > p {
    padding: 0 16px;
  }
  
  .feature-card > h3 {
    margin: 18px 16px 10px;
  }
  
  .feature-card > p {
    margin-bottom: 20px;
  }
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--brand-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
}

.feature-icon svg {
  display: block;
}

/* Compact Comparison Section - NO BORDER RADIUS */
.comparison-compact-new {
  margin-top: var(--gap-lg);
  position: relative;
  z-index: 1;
}

.comparison-wrapper-new {
  background: white;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  max-width: 900px;
  margin: 0 auto;
  border: 2px solid var(--border);
}

/* Header */
.comparison-header-new {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  background: var(--brand-dark);
  border-bottom: 3px solid var(--brand-light);
}

.header-col {
  padding: 12px 14px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  color: white;
}

.header-title {
  text-align: left;
  justify-content: flex-start;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.header-good svg,
.header-bad svg {
  flex-shrink: 0;
}

.header-good .header-icon-desktop {
  stroke: var(--success);
}

.header-bad .header-icon-desktop {
  stroke: var(--error);
}

/* Rows */
.comparison-row-new {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
}

.comparison-row-new:last-child {
  border-bottom: none;
}

.comparison-row-new:hover {
  background: rgba(0, 0, 0, 0.02);
}

@media (min-width: 768px) {
  .comparison-row-new {
    min-height: auto;
  }
}

.row-label {
  padding: 12px 16px;
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
  display: flex;
  align-items: center;
  border-right: 1px solid var(--border);
}

.row-item {
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.row-item img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform var(--transition-slow);
  margin-bottom: 12px;
}

.row-item:hover img {
  transform: scale(1.05);
}

.row-item span {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  margin-top: 4px;
}

.row-good span {
  color: var(--success);
}

.row-bad span {
  color: var(--error);
}

/* Mobile - Simple check/cross only */
@media (max-width: 767px) {
  .comparison-header-new {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
  
  .header-col {
    padding: 12px 8px;
    font-size: 12px;
    gap: 6px;
  }
  
  .header-title {
    font-size: 11px;
    padding: 12px 10px;
  }
  
  /* Hide check/cross icons on mobile */
  .header-icon-desktop {
    display: none;
  }
  
  .comparison-row-new {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
  
  .row-label {
    padding: 14px 12px;
    font-size: 15px;
  }
  
  .row-item {
    padding: 14px 10px;
    gap: 6px;
    flex-direction: column;
  }
  
  /* Hide images on mobile */
  .row-item img {
    display: none;
  }
  
  /* Show text on mobile */
  .row-item span {
    display: block;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
  }
  
  /* Show check/cross on mobile */
  .row-item::before {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    margin: 0 auto;
    flex-shrink: 0;
  }
  
  .row-good::before {
    content: '✓';
    font-size: 24px;
    font-weight: bold;
    color: var(--success);
    line-height: 1;
  }
  
  .row-bad::before {
    content: '✕';
    font-size: 24px;
    font-weight: bold;
    color: var(--error);
    line-height: 1;
  }
}

/* ============================================
   CERTIFICATES COMPACT SECTION
   Intent: Side-by-side compact certificate cards with read more buttons
   ============================================ */
.certificates-compact {
  background: var(--muted);
  padding: 40px 0;
}

.certificates-grid {
  display: grid;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
  align-items: stretch;
}

@media (min-width: 768px) {
  .certificates-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

.certificate-card {
  background: white;
  padding: 0;
  border-radius: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
  overflow: hidden;
  border: 2px solid var(--border);
  height: 100%;
}

.certificate-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-color: var(--brand-light);
}

.certificate-card-logo {
  width: 100%;
  padding: 32px 24px;
  background: linear-gradient(135deg, rgba(3, 78, 123, 0.05), rgba(21, 131, 223, 0.05));
  text-align: center;
  border-bottom: 2px solid var(--border);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.certificate-card-logo img {
  max-width: 180px;
  max-height: 140px;
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}

.certificate-card-content {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 280px;
}

.certificate-card h3 {
  font-size: 22px;
  color: var(--brand-dark);
  margin-bottom: 6px;
  font-weight: 700;
  text-align: left;
}

.certificate-subtitle {
  color: var(--brand-light);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  text-align: left;
  letter-spacing: 0.3px;
}

.certificate-description {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
  text-align: left;
  flex: 1;
}

.certificate-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

@media (max-width: 767px) {
  .certificates-compact {
    padding: 35px 0;
  }
  
  .certificates-grid {
    gap: 20px;
    margin: 0 16px;
  }
  
  .certificate-card-logo {
    padding: 24px 20px;
    height: 160px;
  }
  
  .certificate-card-logo img {
    max-width: 150px;
    max-height: 120px;
  }
  
  .certificate-card-content {
    padding: 24px 20px;
    min-height: 240px;
  }
  
  .certificate-card h3 {
    font-size: 20px;
  }
  
  .certificate-subtitle {
    font-size: 13px;
  }
  
  .certificate-description {
    font-size: 14px;
    margin-bottom: 20px;
  }
}

/* ============================================
   CERTIFICATION DETAILED SECTIONS (About Page) - ULTRA COMPACT
   Intent: Very compact 2-column layout with key info only
   ============================================ */
.certification-detailed {
  background: var(--muted);
  padding: 60px 0;
}

.certification-detailed-alternate {
  background: white;
}

.certification-detailed-content {
  display: grid;
  gap: 40px;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .certification-detailed-content {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

.certification-card {
  background: white;
  border-radius: 0;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border);
  transition: all var(--transition-base);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.certification-detailed-logo {
  text-align: center;
  padding: 20px;
  background: var(--muted);
  border-radius: 8px;
  border: 2px solid var(--border);
  max-width: 180px;
  margin: 0 auto 24px;
}

.certification-detailed-logo img {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.certification-detailed-text {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.certification-detailed-text h2 {
  font-size: clamp(20px, 2.5vw, 26px);
  color: var(--brand-dark);
  margin-bottom: 12px;
  line-height: 1.2;
}

.certification-lead {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
}

.certification-benefits {
  list-style: none;
  padding-left: 0;
  margin: 16px 0 24px 0;
  flex: 1;
}

.certification-benefits li {
  padding: 8px 0 8px 28px;
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.5;
  position: relative;
}

.certification-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--brand-light);
  font-weight: 700;
  font-size: 16px;
}

.certification-benefits strong {
  color: var(--brand-dark);
  font-weight: 600;
}

.certification-detailed-text .btn,
.certification-detailed-text .btn-plain {
  margin-top: auto;
  padding: 12px 24px;
  font-size: 14px;
  align-self: flex-start;
}

@media (max-width: 767px) {
  .certification-detailed,
  .certification-detailed-alternate {
    padding: 40px 0;
  }
  
  .certification-detailed-content {
    gap: 32px;
    grid-template-columns: 1fr;
  }
  
  .certification-card {
    padding: 32px 24px;
  }
  
  .certification-detailed-logo {
    padding: 16px;
    max-width: 150px;
    margin-bottom: 20px;
  }
  
  .certification-lead {
    font-size: 14px;
  }
  
  .certification-benefits li {
    padding: 6px 0 6px 24px;
    font-size: 13px;
  }
}

/* ============================================
   ALLERGEN HIGHLIGHT SECTION
   Intent: Compact section with bold stat card and gradient background
   ============================================ */
.allergen-highlight {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  padding: 45px 0;
  position: relative;
  overflow: hidden;
}

.allergen-highlight::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(21, 131, 223, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.allergen-highlight-content {
  display: grid;
  gap: 36px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .allergen-highlight-content {
    grid-template-columns: auto 1fr;
    gap: 48px;
  }
}

.allergen-stat-large {
  text-align: center;
  padding: 28px 36px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(3, 78, 123, 0.15);
  border: none;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: fit-content;
}

.allergen-stat-large::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--brand-gradient);
}

@media (min-width: 768px) {
  .allergen-stat-large {
    min-width: 200px;
  }
}

.allergen-stat-large::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(21, 131, 223, 0.05) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.allergen-number {
  font-family: var(--ff-ui);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

.allergen-label {
  font-family: var(--ff-ui);
  font-size: clamp(11px, 1.5vw, 13px);
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  position: relative;
  z-index: 1;
  line-height: 1.3;
}

.allergen-description h3 {
  font-size: clamp(18px, 2.5vw, 22px);
  color: var(--brand-dark);
  margin-bottom: 14px;
  line-height: 1.3;
}

.allergen-description p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.allergen-benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.allergen-benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
}

.allergen-benefit-item svg {
  flex-shrink: 0;
  stroke: var(--success);
  stroke-width: 3;
  width: 20px;
  height: 20px;
}

@media (max-width: 767px) {
  .allergen-highlight {
    padding: 35px 0;
  }
  
  .allergen-highlight-content {
    margin: 0 16px;
    gap: 28px;
  }
  
  .allergen-stat-large {
    padding: 24px 28px;
    margin: 0 auto;
    max-width: 220px;
  }
  
  .allergen-description h3 {
    font-size: 18px;
  }
  
  .allergen-description p {
    font-size: 14px;
  }
  
  .allergen-benefit-item {
    font-size: 13px;
  }
  
  .allergen-benefits {
    gap: 10px;
  }
}

/* ============================================
   ACCESSORIES SECTION
   Intent: Showcase add-on products
   ============================================ */
.accessories {
  background: var(--muted);
}

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

@media (max-width: 640px) {
  .accessories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

.accessory-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.accessory-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.accessory-image {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--muted) 0%, #e2e8f0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

.accessory-content {
  padding: 20px;
}

.accessory-content h3 {
  font-size: var(--fs-h4);
  margin-bottom: 8px;
}

.accessory-content p {
  color: var(--text-light);
  font-size: var(--fs-small);
  margin-bottom: 0;
}

/* ============================================
   ATTACHMENTS SHOWCASE SECTION (About Page)
   Intent: Comprehensive display of all Rainbow attachments
   ============================================ */
.attachments-showcase {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.attachments-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 10% 20%, rgba(21, 131, 223, 0.03) 0%, transparent 50%),
              radial-gradient(circle at 90% 80%, rgba(3, 78, 123, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.attachments-showcase .container {
  position: relative;
  z-index: 1;
}

.attachments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.attachment-showcase-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.attachment-showcase-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.attachment-showcase-image {
  aspect-ratio: 4/3;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.attachment-showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease;
}

.attachment-showcase-card:hover .attachment-showcase-image img {
  transform: scale(1.05);
}

.attachment-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 0, 0, 0.2);
}

.attachment-showcase-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.attachment-showcase-content h3 {
  font-size: var(--fs-h4);
  color: var(--brand-dark);
  margin-bottom: 6px;
  font-weight: 700;
}

.attachment-category {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--brand-primary);
  background: rgba(21, 131, 223, 0.1);
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 12px;
  align-self: flex-start;
}

.attachment-description {
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 16px;
  font-size: var(--fs-small);
  flex: 1;
}

.attachment-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.attachment-features li {
  position: relative;
  padding-left: 24px;
  font-size: 13px;
  color: var(--text-dark);
  line-height: 1.4;
}

.attachment-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--success);
  font-weight: 700;
  font-size: 14px;
}

.attachments-cta {
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin: 0 auto;
  max-width: 1200px;
}

.attachments-cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.attachments-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.attachments-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(3, 78, 123, 0.9) 0%, rgba(21, 131, 223, 0.85) 100%);
  z-index: 1;
}

.attachments-cta-box {
  position: relative;
  z-index: 2;
  padding: 80px 48px;
  color: white;
}

.attachments-cta-box h3 {
  font-size: var(--fs-h2);
  margin-bottom: 16px;
  color: white;
  font-weight: 700;
}

.attachments-cta-box p {
  font-size: var(--fs-large);
  margin-bottom: 32px;
  color: white;
  line-height: 1.6;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .attachments-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .attachments-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 48px;
  }
  
  .attachment-showcase-content {
    padding: 20px;
  }
  
  .attachments-cta-box {
    padding: 48px 24px;
  }
  
  .attachments-cta-box h3 {
    font-size: var(--fs-h3);
  }
  
  .attachments-cta-box p {
    font-size: var(--fs-base);
  }
}

@media (max-width: 480px) {
  .attachment-showcase-image {
    padding: 16px;
  }
  
  .attachment-showcase-content {
    padding: 16px;
  }
  
  .attachments-cta-box {
    padding: 40px 20px;
  }
}

/* ============================================
   TESTIMONIALS SECTION - Clean Carousel Design
   Intent: Smooth carousel with brand colors (dark blue + white)
   ============================================ */
.testimonials-section {
  background: var(--brand-dark);
  padding: 80px 0;
}

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

.testimonials-section .section-header p {
  color: rgba(255, 255, 255, 0.7);
}

/* Carousel Container */
.testimonials-carousel-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonials-carousel {
  display: flex;
  overflow: hidden;
  position: relative;
}

/* Individual Slides */
.testimonial-slide {
  flex: 0 0 100%;
  min-width: 100%;
  padding: 48px;
  background: white;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.5s ease, transform 0.5s ease;
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
}

.testimonial-slide.active {
  opacity: 1;
  transform: translateX(0);
  position: relative;
  visibility: visible;
}

.testimonial-slide.prev {
  transform: translateX(-100%);
}

/* Quote Icon */
.testimonial-quote-icon {
  color: var(--brand-dark);
  opacity: 0.15;
  margin-bottom: 24px;
}

/* Star Rating */
.testimonial-rating {
  color: #f59e0b;
  font-size: 20px;
  letter-spacing: 4px;
  margin-bottom: 24px;
}

/* Testimonial Content */
.testimonial-content {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text);
  margin: 0 0 32px 0;
  font-style: normal;
}

/* Author Info */
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  background: var(--brand-dark);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  font-family: var(--ff-ui);
  flex-shrink: 0;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-name {
  font-size: 17px;
  font-weight: 600;
  color: var(--brand-dark);
  font-style: normal;
  font-family: var(--ff-ui);
}

.testimonial-location {
  font-size: 14px;
  color: var(--text-light);
}

/* Carousel Controls */
.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  background: white;
  border: none;
  color: var(--brand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: scale(1.05);
}

.carousel-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
}

/* Carousel Dots */
.carousel-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-dot.active {
  background: white;
  width: 32px;
}

.carousel-dot:hover:not(.active) {
  background: rgba(255, 255, 255, 0.5);
}

/* Google Reviews Badge */
.google-reviews-link {
  display: flex;
  justify-content: center;
  margin-top: 48px;
  text-decoration: none;
}

.google-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 28px;
  background: white;
  transition: all 0.3s ease;
}

.google-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.google-badge:hover .google-arrow {
  transform: translate(2px, -2px);
}

.google-icon {
  flex-shrink: 0;
}

.google-badge-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.google-rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.google-score {
  font-size: 22px;
  font-weight: 700;
  color: var(--brand-dark);
  font-family: var(--ff-ui);
}

.google-stars {
  color: #f59e0b;
  font-size: 16px;
  letter-spacing: 2px;
}

.google-text {
  font-size: 13px;
  color: var(--text-light);
}

.google-arrow {
  color: var(--brand-dark);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 0;
  }
  
  .testimonial-slide {
    padding: 32px 24px;
  }
  
  .testimonial-quote-icon svg {
    width: 32px;
    height: 32px;
  }
  
  .testimonial-rating {
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 20px;
  }
  
  .testimonial-content {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
  }
  
  .testimonial-avatar {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }
  
  .testimonial-name {
    font-size: 15px;
  }
  
  .testimonial-location {
    font-size: 13px;
  }
  
  .testimonials-controls {
    gap: 16px;
    margin-top: 24px;
  }
  
  .carousel-btn {
    width: 44px;
    height: 44px;
  }
  
  .carousel-dot {
    width: 8px;
    height: 8px;
  }
  
  .carousel-dot.active {
    width: 24px;
  }
  
  .google-reviews-link {
    margin-top: 32px;
  }
  
  .google-badge {
    padding: 14px 20px;
    gap: 12px;
  }
  
  .google-score {
    font-size: 18px;
  }
  
  .google-stars {
    font-size: 14px;
  }
  
  .google-text {
    font-size: 12px;
  }
}

/* ============================================
   GALLERY SECTION V2 - Grid Desktop, Scroll Mobile
   ============================================ */
.gallery-section-v2 {
  background: #f8f9fa;
  padding: 70px 0;
}

/* Desktop: 3-column grid */
.gallery-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item-v2 {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item-v2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item-v2:hover img {
  transform: scale(1.05);
}

.gallery-caption-v2 {
  display: none;
}

/* Scroll hint - hidden on desktop */
.gallery-scroll-hint {
  display: none;
}

/* Tablet: 2 columns */
@media (max-width: 900px) {
  .gallery-section-v2 {
    padding: 60px 0;
  }
  
  .gallery-grid-v2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

/* Mobile: Horizontal scroll */
@media (max-width: 600px) {
  .gallery-section-v2 {
    padding: 48px 0 40px;
  }
  
  .gallery-section-v2 .container {
    padding-right: 0;
  }
  
  .gallery-grid-v2 {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    padding-right: 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
  .gallery-grid-v2::-webkit-scrollbar {
    display: none;
  }
  
  .gallery-item-v2 {
    flex: 0 0 auto;
    width: 200px;
    height: 150px;
    aspect-ratio: auto;
    scroll-snap-align: start;
    border-radius: 6px;
  }
  
  .gallery-caption-v2 {
    display: none;
  }
  
  /* Scroll hint - visible on mobile */
  .gallery-scroll-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
    color: var(--text-light);
    font-size: 12px;
  }
  
  .gallery-scroll-hint svg {
    animation: scrollHintBounce 1.5s ease-in-out infinite;
  }
  
  @keyframes scrollHintBounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(4px); }
  }
}

/* Small Mobile */
@media (max-width: 400px) {
  .gallery-item-v2 {
    width: 170px;
    height: 128px;
  }
}




/* ============================================
   IMAGE MODAL / LIGHTBOX
   Intent: Full-screen image viewer - smooth & polished
   ============================================ */
.image-modal {
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, background-color 0.35s ease, visibility 0.35s ease;
}

.image-modal.show {
  opacity: 1;
  visibility: visible;
  background-color: rgba(0, 0, 0, 0.95);
}

.image-modal-content {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.92);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
}

.image-modal.show .image-modal-content {
  opacity: 1;
  transform: scale(1);
}

.image-modal-close {
  position: fixed;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
  color: white;
  background: var(--brand-dark);
  cursor: pointer;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease 0.15s, transform 0.3s ease 0.15s;
}

.image-modal.show .image-modal-close {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .image-modal {
    padding: 16px;
  }
  
  .image-modal-close {
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    font-size: 24px;
  }
  
  .image-modal-content {
    max-width: 100%;
    max-height: 80vh;
  }
}

/* ============================================
   REXAIR MANUFACTURER SECTION
   Intent: Showcase manufacturer credibility
   ============================================ */
.rexair-section {
  padding: 60px 0;
}

.rexair-content {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  gap: 48px;
  align-items: center;
}

.rexair-logo-badge {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.rexair-logo {
  width: 200px;
  height: auto;
}

.rexair-badge {
  width: 120px;
  height: auto;
}

.rexair-text {
  flex: 1;
}

.rexair-text p {
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.rexair-text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .rexair-content {
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }
  
  .rexair-logo {
    width: 150px;
  }
  
  .rexair-badge {
    width: 100px;
  }
}

/* ============================================
   WARRANTY SECTION - CLEAN DESIGN (Home Page)
   Intent: Build trust with clean dark blue + white design
   ============================================ */
.warranty-clean {
  background: var(--brand-dark);
  padding: 80px 0;
}

.warranty-clean-header {
  text-align: center;
  margin-bottom: 56px;
}

.warranty-shield {
  width: 100px;
  height: 100px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
}

.warranty-shield svg {
  stroke: var(--brand-dark);
}

.warranty-clean-header h2 {
  font-size: clamp(28px, 4vw, 40px);
  color: white;
  margin-bottom: 16px;
  line-height: 1.2;
}

.warranty-clean-header p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.warranty-clean-card {
  background: white;
  padding: 48px 32px;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: all 0.3s ease;
}

.warranty-clean-card:last-child {
  border-right: none;
}

.warranty-clean-card:hover {
  background: #f8fafc;
}

.warranty-clean-featured {
  background: #f0f9ff;
}

.warranty-clean-number {
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
  color: var(--brand-dark);
  margin-bottom: 8px;
}

.warranty-clean-label {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--brand-dark);
  margin-bottom: 20px;
}

.warranty-clean-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

.warranty-clean-icon {
  margin-bottom: 16px;
}

.warranty-clean-icon svg {
  stroke: var(--brand-dark);
}

/* Warranty Details */
.warranty-clean-details {
  background: white;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 32px;
}

.warranty-detail-col {
  padding: 40px 32px;
  border-right: 1px solid var(--border);
}

.warranty-detail-col:last-child {
  border-right: none;
}

.warranty-detail-col h4 {
  font-size: 16px;
  color: var(--brand-dark);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.warranty-detail-col h4 svg {
  flex-shrink: 0;
  stroke: var(--brand-dark);
}

.warranty-detail-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.warranty-detail-col ul li {
  font-size: 14px;
  color: var(--text-light);
  padding: 8px 0;
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
  border-bottom: 1px solid var(--border);
}

.warranty-detail-col ul li:last-child {
  border-bottom: none;
}

.warranty-detail-col ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  background: var(--brand-dark);
}

/* Warranty Footer */
.warranty-clean-footer {
  background: white;
  padding: 32px 40px;
  text-align: center;
  border-top: 4px solid var(--brand-dark);
}

.warranty-clean-footer p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  margin: 0;
}

.warranty-clean-footer strong {
  color: var(--brand-dark);
}

/* Mobile Responsive */
@media (max-width: 900px) {
  .warranty-clean-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .warranty-clean-card {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  
  .warranty-clean-card:last-child {
    border-bottom: none;
  }
  
  .warranty-clean-details {
    grid-template-columns: 1fr;
  }
  
  .warranty-detail-col {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  
  .warranty-detail-col:last-child {
    border-bottom: none;
  }
}

@media (max-width: 600px) {
  .warranty-clean {
    padding: 60px 0;
  }
  
  .warranty-shield {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
  }
  
  .warranty-shield svg {
    width: 44px;
    height: 44px;
  }
  
  .warranty-clean-header {
    margin-bottom: 40px;
  }
  
  .warranty-clean-header p {
    font-size: 16px;
  }
  
  .warranty-clean-card {
    padding: 36px 24px;
  }
  
  .warranty-clean-number {
    font-size: 56px;
  }
  
  .warranty-detail-col {
    padding: 28px 24px;
  }
  
  .warranty-clean-footer {
    padding: 24px 20px;
  }
  
  .warranty-clean-footer p {
    font-size: 14px;
  }
}

/* ============================================
   WARRANTY SECTION - SUPPORT PAGE (Clean Design)
   Intent: Enhanced warranty section with dark blue + white
   ============================================ */
.warranty-support-clean {
  background: white;
  padding: 80px 0;
}

.warranty-support-header {
  text-align: center;
  margin-bottom: 56px;
}

.warranty-support-shield {
  width: 120px;
  height: 120px;
  background: var(--brand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
}

.warranty-support-shield svg {
  stroke: white;
}

.warranty-support-header h2 {
  font-size: clamp(28px, 4vw, 40px);
  color: var(--brand-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.warranty-support-header p {
  font-size: 18px;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Warranty Cards */
.warranty-support-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 0;
  border: 1px solid var(--border);
}

.warranty-support-card {
  background: white;
  padding: 48px 32px;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: all 0.3s ease;
}

.warranty-support-card:last-child {
  border-right: none;
}

.warranty-support-card:hover {
  background: #f8fafc;
}

.warranty-support-highlight {
  background: var(--brand-dark);
  color: white;
}

.warranty-support-highlight:hover {
  background: var(--brand-dark);
}

.warranty-support-highlight .warranty-support-number,
.warranty-support-highlight .warranty-support-label {
  color: white;
}

.warranty-support-highlight .warranty-support-icon svg {
  stroke: white;
}

.warranty-support-number {
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
  color: var(--brand-dark);
  margin-bottom: 8px;
}

.warranty-support-label {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--brand-dark);
  margin-bottom: 20px;
}

.warranty-support-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

.warranty-support-card.warranty-support-highlight p {
  color: white !important;
}

.warranty-support-icon {
  margin-bottom: 16px;
}

.warranty-support-icon svg {
  stroke: var(--brand-dark);
}

/* Warranty Details */
.warranty-support-details {
  background: #f8fafc;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-top: none;
}

.warranty-support-col {
  padding: 40px 32px;
  border-right: 1px solid var(--border);
}

.warranty-support-col:last-child {
  border-right: none;
}

.warranty-support-col h4 {
  font-size: 16px;
  color: var(--brand-dark);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.warranty-support-col h4 svg {
  flex-shrink: 0;
  stroke: var(--brand-dark);
}

.warranty-support-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.warranty-support-col ul li {
  font-size: 13px;
  color: var(--text-light);
  padding: 8px 0;
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
  border-bottom: 1px solid var(--border);
}

.warranty-support-col ul li:last-child {
  border-bottom: none;
}

.warranty-support-col ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  background: var(--brand-dark);
}

/* Service Items */
.warranty-support-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--brand-dark);
  margin-top: 48px;
}

.warranty-service-item {
  padding: 40px 32px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.warranty-service-item:last-child {
  border-right: none;
}

.warranty-service-icon {
  width: 64px;
  height: 64px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.warranty-service-icon svg {
  stroke: var(--brand-dark);
}

.warranty-service-item h4 {
  font-size: 17px;
  color: white;
  margin-bottom: 12px;
  font-weight: 600;
}

.warranty-service-item p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
}

/* Warranty Footer */
.warranty-support-footer {
  background: white;
  padding: 40px;
  text-align: center;
  border: 1px solid var(--border);
  border-top: none;
  margin-top: 48px;
}

.warranty-support-footer p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  margin: 0 0 24px 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.warranty-support-footer strong {
  color: var(--brand-dark);
}

.warranty-support-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Mobile Responsive */
@media (max-width: 900px) {
  .warranty-support-cards {
    grid-template-columns: 1fr;
  }
  
  .warranty-support-card {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  
  .warranty-support-card:last-child {
    border-bottom: none;
  }
  
  .warranty-support-highlight {
    border-bottom: none;
  }
  
  .warranty-support-details {
    grid-template-columns: 1fr;
  }
  
  .warranty-support-col {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  
  .warranty-support-col:last-child {
    border-bottom: none;
  }
  
  .warranty-support-services {
    grid-template-columns: 1fr;
  }
  
  .warranty-service-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .warranty-service-item:last-child {
    border-bottom: none;
  }
}

@media (max-width: 600px) {
  .warranty-support-clean {
    padding: 60px 0;
  }
  
  .warranty-support-shield {
    width: 96px;
    height: 96px;
    margin-bottom: 24px;
  }
  
  .warranty-support-shield svg {
    width: 52px;
    height: 52px;
  }
  
  .warranty-support-header {
    margin-bottom: 40px;
  }
  
  .warranty-support-header p {
    font-size: 16px;
  }
  
  .warranty-support-card {
    padding: 36px 24px;
  }
  
  .warranty-support-number {
    font-size: 56px;
  }
  
  .warranty-support-col {
    padding: 28px 24px;
  }
  
  .warranty-service-item {
    padding: 32px 24px;
  }
  
  .warranty-support-footer {
    padding: 28px 20px;
    margin-top: 32px;
  }
  
  .warranty-support-footer p {
    font-size: 14px;
  }
  
  .warranty-support-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .warranty-support-actions .btn {
    width: 100%;
    max-width: 280px;
  }
}

/* ============================================
   BEFORE/AFTER SECTION
   Intent: Visual proof of effectiveness
   ============================================ */
.before-after {
  background: var(--muted);
}

.ba-slider-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.ba-slider {
  position: relative;
  aspect-ratio: 16/10;
  cursor: ew-resize;
  user-select: none;
}

.ba-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-image.after {
  z-index: 1;
}

.ba-image.before {
  z-index: 2;
  clip-path: inset(0 50% 0 0);
}

.ba-slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  transform: translateX(-50%);
  z-index: 10;
  cursor: ew-resize;
  touch-action: none;
}

.ba-slider-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: white;
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--brand-dark);
}

.ba-labels {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
}

.ba-label {
  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border-radius: var(--radius-sm);
  font-family: var(--ff-ui);
  font-weight: 600;
  font-size: var(--fs-small);
}

/* ============================================
   DEMO CTA SECTION - COMPACT VERSION
   Intent: Lighter, cleaner conversion section
   ============================================ */
.demo-cta-compact {
  background: var(--brand-dark);
  padding: 48px 0;
}

.demo-cta-compact-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.demo-cta-compact h3 {
  font-family: var(--ff-ui);
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.demo-cta-compact p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.demo-cta-compact-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.demo-cta-compact .btn-primary {
  background: white;
  color: var(--brand-dark);
  padding: 12px 24px;
  font-size: 14px;
}

.demo-cta-compact .btn-outline-light {
  background: transparent;
  border: 2px solid white;
  color: white;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all var(--transition-base);
}

.demo-cta-compact .btn-outline-light:hover {
  background: white;
  color: var(--brand-dark);
}

@media (max-width: 540px) {
  .demo-cta-compact {
    padding: 36px 0;
  }
  
  .demo-cta-compact h3 {
    font-size: 18px;
  }
  
  .demo-cta-compact p {
    font-size: 14px;
    margin-bottom: 16px;
  }
  
  .demo-cta-compact-buttons {
    gap: 10px;
  }
  
  .demo-cta-compact .btn-primary,
  .demo-cta-compact .btn-outline-light {
    padding: 10px 18px;
    font-size: 13px;
  }
}

/* ============================================
   DEMO CTA SECTION - ORIGINAL (Other pages)
   Intent: Conversion-focused call to action
   ============================================ */
.demo-cta {
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}

.demo-cta-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.demo-cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(3, 78, 123, 0.75);
}

.demo-cta-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.demo-cta h2 {
  color: white;
  margin-bottom: 12px;
  font-size: clamp(22px, 3vw, 30px);
}

.demo-cta p {
  opacity: 0.95;
  margin-bottom: 24px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  font-size: 15px;
}

.demo-cta .btn-primary {
  background: white;
  color: var(--brand-dark);
}

/* Demo CTA Buttons */
.demo-cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .demo-cta {
    padding: 40px 0;
  }
  
  .demo-cta h2 {
    font-size: 20px;
  }
  
  .demo-cta p {
    font-size: 14px;
    margin-bottom: 18px;
  }
  
  .demo-cta-buttons,
  .demo-cta .hero-ctas {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  .demo-cta-buttons .btn,
  .demo-cta .hero-ctas .btn {
    padding: 10px 18px;
    font-size: 13px;
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

/* ============================================
   WARRANTY COMPACT SECTION
   Intent: Small warranty teaser with link to full details
   ============================================ */
.warranty-compact {
  background: var(--muted);
  padding: 40px 0;
}

.warranty-compact-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.warranty-compact-icon {
  width: 64px;
  height: 64px;
  background: var(--brand-dark);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.warranty-compact-content {
  text-align: left;
}

.warranty-compact h3 {
  font-family: var(--ff-ui);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.warranty-compact-highlights {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.warranty-compact-highlights span {
  font-size: 14px;
  color: var(--text-light);
}

.warranty-compact-highlights span strong {
  color: var(--brand-dark);
}

.warranty-compact .btn {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .warranty-compact-inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  
  .warranty-compact-content {
    text-align: center;
  }
  
  .warranty-compact-highlights {
    justify-content: center;
  }
}

/* ============================================
   FAQ SECTION
   Intent: Address common questions
   ============================================ */
.faq {
  background: white;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--ff-ui);
  font-weight: 600;
  font-size: var(--fs-h4);
  color: var(--text);
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--brand-light);
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  transition: transform var(--transition-fast);
}

.faq-icon::before {
  width: 14px;
  height: 2px;
  top: 11px;
  left: 5px;
}

.faq-icon::after {
  width: 2px;
  height: 14px;
  top: 5px;
  left: 11px;
}

.faq-item.active .faq-icon::after {
  transform: rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
}

.faq-answer-content {
  padding-bottom: 24px;
  color: var(--text-light);
  line-height: var(--lh-relaxed);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* ============================================
   CONTACT FORM
   Intent: Lead capture and demo booking
   ============================================ */
.contact-form-section {
  background: var(--muted);
  overflow-x: hidden;
}

@media (max-width: 767px) {
  .contact-form-section {
    padding: 40px 0;
  }
}

.contact-grid {
  display: grid;
  gap: var(--gap-lg);
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info {
  padding: 40px;
  background: var(--brand-dark);
  border-radius: var(--radius-lg);
  color: white;
}

@media (max-width: 767px) {
  .contact-info {
    padding: 24px 20px;
    margin: 0;
  }
  
  .contact-grid {
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .contact-info {
    padding: 20px 16px;
  }
  
  .contact-detail {
    gap: 12px;
  }
  
  .contact-icon {
    width: 40px;
    height: 40px;
  }
  
  .contact-icon img,
  .contact-icon svg {
    width: 20px;
    height: 20px;
  }
}

.contact-info h3 {
  color: white;
  margin-bottom: 24px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon img,
.contact-icon svg {
  width: 24px;
  height: 24px;
}

.contact-detail h4 {
  color: white;
  font-size: var(--fs-body);
  margin-bottom: 4px;
}

.contact-detail p,
.contact-detail a {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
  word-break: break-word;
  overflow-wrap: break-word;
}

.contact-detail a:hover {
  color: white;
}

.contact-hours {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-hours h4 {
  color: white;
  margin-bottom: 12px;
}

.contact-hours p {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--fs-small);
  margin-bottom: 4px;
}

/* Form Styles */
.form-card {
  padding: 40px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 767px) {
  .form-card {
    padding: 24px 20px;
  }
}

@media (max-width: 480px) {
  .form-card {
    padding: 20px 16px;
  }
}

.form-card h3 {
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text);
}

.form-label.required::after {
  content: ' *';
  color: var(--error);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: var(--fs-body);
  transition: all var(--transition-fast);
  background: white;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--brand-light);
  box-shadow: 0 0 0 3px rgba(21, 131, 223, 0.15);
}

.form-input.error,
.form-select.error,
.form-textarea.error {
  border-color: var(--error);
}

.form-error {
  color: var(--error);
  font-size: var(--fs-small);
  margin-top: 4px;
  display: none;
}

.form-input.error + .form-error,
.form-select.error + .form-error,
.form-textarea.error + .form-error {
  display: block;
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.form-checkbox input {
  width: 20px;
  height: 20px;
  accent-color: var(--brand-light);
}

.form-submit {
  margin-top: 24px;
}

.form-submit .btn {
  width: 100%;
}

/* Form Messages */
.form-message {
  padding: 20px 24px;
  border-radius: 8px;
  margin-bottom: 20px;
  display: none;
  text-align: center;
}

.form-message.success {
  /* Simpler, on-brand confirmation */
  background: rgba(3, 78, 123, 0.08);
  color: var(--brand-dark);
  border: 1px solid rgba(3, 78, 123, 0.25);
  display: block;
  text-align: left;
  padding: 14px 16px;
  animation: successPop 0.25s ease;
}

.form-message.success::before {
  /* Remove big icon for a cleaner look */
  content: none;
}

.form-message.success .success-title {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--brand-dark);
  margin-bottom: 4px;
}

.form-message.success .success-text {
  display: block;
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}

@keyframes successPop {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  50% {
    transform: scale(1.02);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.form-message.error {
  background: rgba(239, 68, 68, 0.1);
  color: var(--error);
  border: 1px solid var(--error);
  display: block;
}

.form-message.error a {
  color: var(--error);
  text-decoration: underline;
}

/* ============================================
   MAP SECTION
   Intent: Location visibility
   ============================================ */
.map-section {
  height: 400px;
  background: var(--muted);
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--muted) 0%, #e2e8f0 100%);
  color: var(--text-light);
}

/* ============================================
   ABOUT PAGE STYLES
   Intent: Company story and team presentation
   ============================================ */
.about-hero {
  position: relative;
  background: var(--brand-dark);
  color: white;
  padding: 180px 0 120px;
  text-align: center;
  overflow: hidden;
  min-height: 60vh;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(3, 78, 123, 0.7) 0%,
    rgba(3, 78, 123, 0.5) 100%
  );
}

.about-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero .container {
  position: relative;
  z-index: 1;
}

.about-hero h1 {
  color: white;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.about-hero p {
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Mission Section */
.mission-section {
  background: white;
  padding: 80px 0;
}

.mission-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
}

.mission-content .hero-badge {
  background: rgba(21, 131, 223, 0.1);
  color: var(--brand-dark);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 20px;
}

.mission-content h2 {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--brand-dark);
  margin-bottom: 32px;
  line-height: 1.2;
}

.mission-text {
  text-align: left;
  margin-top: 32px;
}

.mission-text p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 24px;
}

.mission-text p:last-child {
  margin-bottom: 0;
}

/* Video Container */
.mission-video-container {
  margin: 0 auto;
  max-width: 100%;
  width: 100%;
}

.mission-video-wrapper {
  position: relative;
  width: 100%;
  background: #000;
  margin-bottom: 32px;
}

.mission-video-wrapper::before {
  content: '';
  display: block;
  padding-top: 56.25%; /* 16:9 aspect ratio */
}

.mission-video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.mission-video-cta {
  text-align: center;
  padding-top: 8px;
}

.mission-video-cta .btn,
.mission-video-cta .btn-plain {
  margin-bottom: 12px;
}

.mission-video-cta-text {
  font-size: 14px;
  color: var(--text-light);
  margin: 0;
}

/* Mobile responsive */
@media (max-width: 767px) {
  .mission-section {
    padding: 50px 0;
  }
  
  .mission-content {
    margin-bottom: 40px;
  }
  
  .mission-text p {
    font-size: 16px;
  }
  
  .mission-video-cta .btn,
  .mission-video-cta .btn-plain {
    width: 100%;
  }
}

/* ============================================
   MISSION SECTION V2 - VIDEO FOCUSED
   Intent: Clean, video-centric design
   ============================================ */
.mission-section-v2 {
  background: white;
  padding: 60px 0 80px;
}

.mission-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

.mission-tagline {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 12px;
  line-height: 1.2;
}

.mission-subtitle {
  font-size: 16px;
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

.mission-video-main {
  max-width: 100%;
  margin: 0 auto 32px;
  background: #000;
}

.mission-video-main video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #000;
}

.mission-cta {
  text-align: center;
  margin-bottom: 60px;
}

/* Rexair Note - Elegant Note Style */
.rexair-note {
  background: var(--brand-dark);
  padding: 32px 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.rexair-note-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}

.rexair-note-badge {
  flex-shrink: 0;
}

.rexair-note-badge img {
  width: 100px;
  height: auto;
  filter: brightness(0) invert(1);
}

.rexair-note-content {
  flex: 1;
}

.rexair-note-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}

.rexair-note-text {
  font-size: 15px;
  color: white;
  line-height: 1.6;
  margin: 0;
}

.rexair-note-anniversary {
  flex-shrink: 0;
}

.rexair-note-anniversary img {
  width: 70px;
  height: auto;
}

@media (max-width: 768px) {
  .mission-section-v2 {
    padding: 40px 0 60px;
  }
  
  .rexair-note {
    padding: 24px;
  }
  
  .rexair-note-inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .rexair-note-badge img {
    width: 80px;
  }
  
  .rexair-note-anniversary img {
    width: 60px;
  }
}

/* ============================================
   LEGACY SECTION - COMPACT TIMELINE + CARDS
   Intent: Clean history with matching heights
   ============================================ */
.legacy-section {
  background: var(--muted);
  padding: 80px 0;
}

.legacy-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: stretch;
}

/* Compact Timeline */
.legacy-timeline {
  display: flex;
  flex-direction: column;
}

.timeline-compact {
  position: relative;
  padding-left: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.timeline-compact::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--brand-light);
}

.timeline-milestone {
  position: relative;
  display: flex;
  align-items: center;
}

.timeline-dot {
  position: absolute;
  left: -21px;
  width: 12px;
  height: 12px;
  background: var(--brand-dark);
  border: 2px solid white;
  box-shadow: 0 0 0 2px var(--brand-light);
}

.timeline-data {
  display: flex;
  flex-direction: column;
}

.timeline-year-compact {
  font-family: var(--ff-ui);
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-dark);
}

.timeline-label {
  font-size: 13px;
  color: var(--text-light);
}

/* Legacy Cards - Grid matching timeline height */
.legacy-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 16px;
  height: 100%;
}

.legacy-card {
  background: white;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border: 1px solid var(--border);
}

.legacy-card-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.legacy-card-icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.legacy-card-content h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.legacy-card-content p {
  font-size: 13px;
  color: var(--text-light);
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .legacy-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .timeline-compact {
    flex-direction: row;
    padding-left: 0;
    padding-top: 24px;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
  }
  
  .timeline-compact::before {
    left: 0;
    right: 0;
    top: 6px;
    bottom: auto;
    width: auto;
    height: 2px;
  }
  
  .timeline-milestone {
    flex-direction: column;
    align-items: center;
  }
  
  .timeline-dot {
    position: absolute;
    left: 50%;
    top: -21px;
    transform: translateX(-50%);
  }
  
  .timeline-data {
    align-items: center;
    text-align: center;
  }
  
  .legacy-cards {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
}

@media (max-width: 640px) {
  .legacy-section {
    padding: 60px 0;
  }
  
  .timeline-compact {
    gap: 12px;
  }
  
  .timeline-milestone {
    width: calc(33.33% - 8px);
  }
  
  .timeline-year-compact {
    font-size: 12px;
  }
  
  .timeline-label {
    font-size: 11px;
  }
  
  .legacy-cards {
    grid-template-columns: 1fr;
  }
  
  .legacy-card {
    padding: 16px;
  }
}

/* ============================================
   TEAM SECTION V2 - CLEAN DESIGN
   Intent: Professional team display with values
   ============================================ */
.team-section-v2 {
  background: white;
  padding: 80px 0;
}

.team-grid-v2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.team-member {
  background: var(--muted);
  text-align: center;
  border: 1px solid var(--border);
}

.team-member-photo {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--brand-dark);
}

.team-member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.team-member-info {
  padding: 20px;
}

.team-member-info h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.team-member-role {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--brand-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.team-member-info p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
  margin: 0;
}

/* Team Values Subsection */
.team-values {
  background: var(--brand-dark);
  padding: 40px;
}

.team-values-title {
  font-size: 18px;
  font-weight: 700;
  color: white;
  text-align: center;
  margin-bottom: 32px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.team-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-value-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.team-value-item img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

.team-value-item h4 {
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}

.team-value-item p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .team-grid-v2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .team-section-v2 {
    padding: 60px 0;
  }
  
  .team-grid-v2 {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 40px;
  }
  
  .team-member {
    display: grid;
    grid-template-columns: 120px 1fr;
    text-align: left;
  }
  
  .team-member-photo {
    aspect-ratio: 1;
  }
  
  .team-member-info {
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .team-values {
    padding: 24px;
  }
  
  .team-values-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--brand-light);
}

.timeline-item {
  position: relative;
  padding-bottom: 40px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -33px;
  top: 4px;
  width: 16px;
  height: 16px;
  background: var(--brand-light);
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: var(--shadow-sm);
}

.timeline-year {
  font-family: var(--ff-ui);
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 8px;
}

.timeline-content h3 {
  margin-bottom: 8px;
}

.timeline-content p {
  color: var(--text-light);
  margin-bottom: 0;
}

/* Team Section */
.team-grid {
  display: grid;
  gap: var(--gap);
}

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

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

.team-card {
  text-align: center;
  padding: 32px 24px;
  background: white;
  border-radius: 0;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border: 2px solid var(--border);
}

.team-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-6px);
  border-color: var(--brand-light);
}

.team-photo {
  width: 140px;
  height: 140px;
  margin: 0 auto 20px;
  background: var(--brand-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: white;
  overflow: hidden;
  border: 4px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.team-card h3 {
  font-size: 20px;
  margin-bottom: 6px;
  color: var(--text);
  font-weight: 700;
}

.team-card .role {
  color: var(--brand-light);
  font-weight: 600;
  margin-bottom: 16px;
  font-size: 14px;
  display: block;
}

.team-card p {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 0;
  line-height: 1.6;
  text-align: left;
}

/* CEO Section */
.ceo-section {
  background: var(--muted);
}

.ceo-card-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.ceo-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.ceo-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--brand-light);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.ceo-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ceo-content {
  text-align: center;
  flex: 1;
}

.ceo-content h3 {
  font-size: var(--fs-h3);
  color: var(--text);
  margin-bottom: 8px;
}

.ceo-title {
  color: var(--brand-light);
  font-weight: 600;
  font-size: var(--fs-body);
  margin-bottom: 16px;
}

.ceo-description {
  color: var(--text-light);
  line-height: var(--lh-relaxed);
  margin-bottom: 0;
  font-size: var(--fs-body);
}

@media (min-width: 768px) {
  .ceo-card {
    flex-direction: row;
    align-items: center;
    text-align: left;
    padding: 48px;
    gap: 48px;
  }
  
  .ceo-photo {
    width: 200px;
    height: 200px;
  }
  
  .ceo-content {
    text-align: left;
  }
}

/* Values Grid */
.values-grid {
  display: grid;
  gap: var(--gap);
}

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

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

.value-card {
  text-align: center;
  padding: 32px 20px;
}

.value-icon {
  width: auto;
  height: auto;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

.value-icon img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.value-card h3 {
  font-size: var(--fs-h4);
  margin-bottom: 8px;
}

.value-card p {
  color: var(--text-light);
  margin-bottom: 0;
}

/* ============================================
   SUPPORT PAGE STYLES
   Intent: Help resources and tips
   ============================================ */
.support-hero {
  position: relative;
  background: var(--brand-dark);
  color: white;
  padding: 180px 0 120px;
  text-align: center;
  overflow: hidden;
  min-height: 60vh;
}

.support-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.support-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(3, 78, 123, 0.7) 0%,
    rgba(3, 78, 123, 0.5) 100%
  );
}

.support-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.support-hero .container {
  position: relative;
  z-index: 1;
}

.support-hero h1 {
  color: white;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.support-hero p {
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.support-grid {
  display: grid;
  gap: var(--gap);
  margin-bottom: var(--gap-lg);
}

@media (min-width: 768px) {
  .support-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.support-card {
  padding: 32px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all var(--transition-base);
}

.support-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.support-icon {
  width: auto;
  height: auto;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.support-icon img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(27%) sepia(96%) saturate(1352%) hue-rotate(187deg) brightness(95%) contrast(88%);
}

.icon-blue {
  filter: brightness(0) saturate(100%) invert(27%) sepia(96%) saturate(1352%) hue-rotate(187deg) brightness(95%) contrast(88%);
}

.icon-white {
  filter: brightness(0) invert(1);
}

.support-card h3 {
  margin-bottom: 12px;
}

.support-card p {
  color: var(--text-light);
  margin-bottom: 16px;
}

/* Warranty & Service Section */
.warranty-section {
  background: var(--muted);
  position: relative;
  overflow: hidden;
}

.warranty-section-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.warranty-section-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(3, 78, 123, 0.85) 0%,
    rgba(3, 78, 123, 0.75) 50%,
    rgba(3, 78, 123, 0.85) 100%
  );
}

.warranty-section-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

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

.warranty-section .section-header h2,
.warranty-section .section-header p {
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.warranty-section .section-header p {
  opacity: 0.95;
}

.warranty-grid {
  display: grid;
  gap: var(--gap);
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .warranty-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.warranty-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid var(--border);
}

.warranty-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(3, 78, 123, 0.1), rgba(21, 131, 223, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--brand-dark);
}

.warranty-icon svg {
  width: 32px;
  height: 32px;
  stroke: currentColor;
}

.warranty-card h3 {
  color: var(--text);
  margin-bottom: 16px;
  font-size: var(--fs-h4);
}

.warranty-card p {
  color: var(--text-light);
  margin-bottom: 0;
  line-height: var(--lh-relaxed);
}

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

@media (max-width: 767px) {
  .warranty-card {
    padding: 32px 24px;
  }
  
  .warranty-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
  }
  
  .warranty-icon svg {
    width: 28px;
    height: 28px;
  }
  
  .warranty-cta {
    margin-top: 40px;
  }
}

/* Cleaning Tips */
.tips-grid {
  display: grid;
  gap: var(--gap);
}

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

@media (min-width: 1024px) {
  .tips-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.tip-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  cursor: pointer;
}

.tip-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

/* Tip Card Dropdown */
.tip-card-dropdown {
  background: white;
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border: 2px solid var(--border);
}

.tip-card-dropdown:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--brand-light);
}

.tip-header {
  cursor: pointer;
  transition: background var(--transition-fast);
}

.tip-header:hover {
  background: rgba(21, 131, 223, 0.02);
}

.tip-toggle {
  display: inline-block;
  margin-left: 8px;
  transition: transform var(--transition-base);
  font-size: 14px;
  color: var(--brand-light);
}

.tip-header[aria-expanded="true"] .tip-toggle {
  transform: rotate(180deg);
}

.tip-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  background: var(--muted);
}

.tip-header[aria-expanded="true"] ~ .tip-details {
  max-height: 800px;
  transition: max-height 0.5s ease-in;
}

.tip-details-content {
  padding: 28px 24px;
  border-top: 2px solid var(--border);
}

.tip-details-content h4 {
  color: var(--brand-dark);
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 600;
}

.tip-details-content p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

.tip-details-content ol {
  list-style: decimal;
  padding-left: 24px;
  color: var(--text);
}

.tip-details-content ol li {
  margin-bottom: 10px;
  line-height: 1.6;
  padding-left: 8px;
}

.tip-image {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--muted) 0%, #e2e8f0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  overflow: hidden;
}

.tip-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tip-image-maintenance {
  overflow: hidden;
}

.tip-image-maintenance img {
  object-fit: cover;
  object-position: center;
  height: 120%;
  width: 100%;
  margin-top: -10%;
}

.tip-content {
  padding: 24px;
}

.tip-category {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(21, 131, 223, 0.1);
  color: var(--brand-light);
  border-radius: 0px;
  font-size: var(--fs-xs);
  font-weight: 600;
  margin-bottom: 12px;
}

.tip-content h3 {
  font-size: var(--fs-h4);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tip-content p {
  color: var(--text-light);
  font-size: var(--fs-small);
  margin-bottom: 0;
}

/* ============================================
   FOOTER
   Intent: Navigation and contact information
   ============================================ */
.footer {
  background: var(--text);
  color: white;
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  gap: var(--gap-lg);
  padding-bottom: 40px;
}

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

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-ui);
  font-weight: 700;
  font-size: 22px;
  color: white;
  text-decoration: none;
  margin-bottom: 16px;
}

.footer-logo img {
  height: 40px;
  width: auto;
  display: block;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

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

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: var(--brand-light);
}

.footer-column h4 {
  color: white;
  font-size: var(--fs-body);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--fs-small);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: white;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--fs-small);
  margin-bottom: 12px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--fs-small);
  margin-bottom: 0;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a:hover {
  color: white;
}

/* Footer Agency Credit */
.footer-credit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-credit span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.3px;
}

.footer-credit img {
  height: 26px;
  width: auto;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.footer-credit a:hover img {
  opacity: 0.8;
}

@media (min-width: 768px) {
  .footer-credit {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
  }
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   Intent: Quick contact access
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: var(--z-sticky);
}

.whatsapp-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-base);
}

.whatsapp-float a:hover {
  /* No hover effect */
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: white;
}

/* Adjust WhatsApp float position on mobile */
@media (max-width: 1023px) {
  .whatsapp-float {
    bottom: 24px;
  }
}

/* ============================================
   FLOATING BOOK DEMO BUTTON
   Intent: Fixed button for booking demo - bottom left
   ============================================ */
.book-demo-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: var(--z-sticky);
}

.book-demo-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  background: var(--brand-dark);
  color: white;
  border-radius: 50px;
  box-shadow: var(--shadow-lg);
  font-family: var(--ff-ui);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
}

.book-demo-float a:hover {
  background: var(--brand-dark);
  color: white;
}

/* Mobile adjustments - Book Demo shows full text, WhatsApp & Back-to-top same size */
@media (max-width: 1023px) {
  .book-demo-float {
    bottom: 20px;
    left: 16px;
  }
  
  .book-demo-float a {
    padding: 12px 18px;
    font-size: 13px;
    border-radius: 50px;
  }
  
  .whatsapp-float {
    bottom: 20px;
    right: 16px;
  }
  
  .whatsapp-float a {
    width: 46px;
    height: 46px;
  }
  
  .whatsapp-float svg {
    width: 22px;
    height: 22px;
  }
  
  .back-to-top {
    bottom: 20px;
    right: 70px;
  }
  
  .back-to-top a {
    width: 46px;
    height: 46px;
  }
  
  .back-to-top svg {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 640px) {
  .book-demo-float {
    bottom: 16px;
    left: 12px;
  }
  
  .book-demo-float a {
    padding: 10px 14px;
    font-size: 12px;
  }
  
  .whatsapp-float {
    bottom: 16px;
    right: 12px;
  }
  
  .whatsapp-float a {
    width: 44px;
    height: 44px;
  }
  
  .whatsapp-float svg {
    width: 22px;
    height: 22px;
  }
  
  .back-to-top {
    bottom: 16px;
    right: 62px;
  }
  
  .back-to-top a {
    width: 44px;
    height: 44px;
  }
  
  .back-to-top svg {
    width: 22px;
    height: 22px;
  }
}


/* ============================================
   BACK TO TOP BUTTON
   Intent: Smooth scroll to top functionality
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 96px;
  z-index: var(--z-sticky);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-base);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--brand-dark);
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-base);
  color: white;
}

.back-to-top a:hover {
  /* No hover effect */
}

.back-to-top svg {
  width: 24px;
  height: 24px;
  stroke: white;
  stroke-width: 2.5;
  fill: none;
}

/* Adjust back-to-top position and size on mobile to match WhatsApp button */
@media (max-width: 1023px) {
  .back-to-top {
    bottom: 20px;
    right: 70px;
  }
  
  .back-to-top a {
    width: 46px;
    height: 46px;
  }
  
  .back-to-top svg {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 640px) {
  .back-to-top {
    bottom: 16px;
    right: 62px;
  }
  
  .back-to-top a {
    width: 44px;
    height: 44px;
  }
  
  .back-to-top svg {
    width: 22px;
    height: 22px;
  }
}

/* ============================================
   MODAL
   Intent: Demo booking overlay
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: var(--z-modal);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: white;
  border-radius: var(--radius-lg);
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9) translateY(20px);
  transition: transform var(--transition-base);
}

.modal-overlay.active .modal {
  transform: scale(1) translateY(0);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}

.modal-header h3 {
  margin-bottom: 0;
}

.modal-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--muted);
  border-radius: 50%;
  font-size: 20px;
  color: var(--text);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.modal-close:hover {
  background: var(--brand-light);
  color: white;
}

.modal-body {
  padding: 24px;
}

/* ============================================
   ANIMATIONS
   Intent: Entrance and interaction effects
   ============================================ */

/* Fade In Up - Optimized for Safari iOS */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  /* Hint for GPU acceleration before animation */
  will-change: opacity, transform;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
  /* Remove will-change after animation to free GPU memory */
  will-change: auto;
}

/* Staggered children */
.stagger-children .animate-on-scroll:nth-child(1) { transition-delay: 0ms; }
.stagger-children .animate-on-scroll:nth-child(2) { transition-delay: 100ms; }
.stagger-children .animate-on-scroll:nth-child(3) { transition-delay: 200ms; }
.stagger-children .animate-on-scroll:nth-child(4) { transition-delay: 300ms; }
.stagger-children .animate-on-scroll:nth-child(5) { transition-delay: 400ms; }
.stagger-children .animate-on-scroll:nth-child(6) { transition-delay: 500ms; }

/* Scale In - Optimized for Safari iOS */
.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  will-change: opacity, transform;
}

.scale-in.is-visible {
  opacity: 1;
  transform: scale(1);
  will-change: auto;
}


/* Slide In Left - Optimized for Safari iOS */
.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}

.slide-in-left.is-visible {
  opacity: 1;
  transform: translateX(0);
  will-change: auto;
}

/* Slide In Right - Optimized for Safari iOS */
.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}

.slide-in-right.is-visible {
  opacity: 1;
  transform: translateX(0);
  will-change: auto;
}

/* Counter Animation */
.counter {
  font-variant-numeric: tabular-nums;
}

/* Pulse Animation */
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.pulse {
  animation: pulse 2s infinite;
}


/* Float Animation */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.float {
  animation: float 3s ease-in-out infinite;
}

/* ============================================
   UTILITY CLASSES
   Intent: Common helper styles
   ============================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }

.hidden { display: none; }

@media (max-width: 767px) {
  .hide-mobile { display: none; }
}

@media (min-width: 768px) {
  .hide-desktop { display: none; }
}

/* Loading State */
.loading {
  pointer-events: none;
  opacity: 0.7;
}

.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ============================================
   REDESIGNED SECTIONS - V2 STYLES
   Design guidelines: No border radius, white base, dark blue accents
   ============================================ */

/* ============================================
   LEGACY SECTION V2 - About Page
   ============================================ */
.legacy-section-v2 {
  background: var(--muted);
  padding: 80px 0;
}

/* Horizontal Timeline */
.legacy-timeline-v2 {
  position: relative;
  padding: 40px 0 60px;
  margin-bottom: 60px;
  overflow-x: auto;
}

.timeline-track {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--brand-dark);
  transform: translateY(-50%);
}

.timeline-items {
  display: flex;
  justify-content: space-between;
  position: relative;
  min-width: 900px;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  flex: 1;
}

.timeline-marker {
  width: 20px;
  height: 20px;
  background: white;
  border: 4px solid var(--brand-dark);
  position: relative;
  z-index: 2;
}

.timeline-content {
  position: absolute;
  top: 36px;
  text-align: center;
  width: 140px;
}

.timeline-item:nth-child(even) .timeline-content {
  top: auto;
  bottom: 36px;
}

.timeline-year {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 4px;
}

.timeline-content h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.timeline-content p {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.4;
}

/* Legacy Stats Grid */
.legacy-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.legacy-stat-card {
  background: white;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all var(--transition-base);
}

.legacy-stat-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.legacy-stat-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
}

.legacy-stat-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.legacy-stat-number {
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 700;
  color: var(--brand-dark);
  line-height: 1;
  margin-bottom: 8px;
}

.legacy-stat-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.legacy-stat-card p {
  font-size: 13px;
  color: var(--text-light);
  margin: 0;
}

/* Legacy Certifications */
.legacy-certifications {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding: 32px 0;
  border-top: 1px solid var(--border);
}

.legacy-cert {
  display: flex;
  align-items: center;
  gap: 16px;
}

.legacy-cert img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.legacy-cert span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

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

@media (max-width: 768px) {
  .legacy-section-v2 {
    padding: 60px 0;
  }
  
  .legacy-timeline-v2 {
    padding: 20px 0;
    margin-bottom: 40px;
  }
  
  .legacy-certifications {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .legacy-stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .legacy-stat-card {
    padding: 24px;
  }
}

/* ============================================
   MISSION SECTION V3 - About Page
   ============================================ */
.mission-section-v3 {
  background: white;
  padding: 80px 0;
}

.mission-header-v3 {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 48px;
}

.mission-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--brand-dark);
  margin-bottom: 16px;
  padding: 8px 16px;
  background: rgba(3, 78, 123, 0.08);
}

.mission-headline {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 24px;
  line-height: 1.2;
}

.mission-description {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 32px;
}

.mission-highlights {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

.mission-highlight-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: var(--text);
}

.mission-highlight-item svg {
  color: var(--brand-dark);
  flex-shrink: 0;
}

/* Video Container V3 */
.mission-video-v3 {
  position: relative;
  max-width: 100%;
  margin: 0 auto 40px;
}

.mission-video-v3 video {
  width: 100%;
  display: block;
  background: #000;
}

.video-play-hint {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: white;
  pointer-events: none;
  opacity: 0.9;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.video-play-hint svg {
  width: 64px;
  height: 64px;
  background: rgba(3, 78, 123, 0.9);
  padding: 16px;
}

.video-play-hint span {
  font-size: 14px;
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.mission-video-v3 video:not([poster]) ~ .video-play-hint,
.mission-video-v3 video[controls]:focus ~ .video-play-hint,
.mission-video-v3:has(video:not([paused])) .video-play-hint {
  opacity: 0;
}

/* Mission CTA V3 */
.mission-cta-v3 {
  text-align: center;
}

.mission-cta-text {
  font-size: 18px;
  color: var(--text);
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .mission-section-v3 {
    padding: 60px 0;
  }
  
  .mission-highlights {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .video-play-hint svg {
    width: 48px;
    height: 48px;
    padding: 12px;
  }
}

/* ============================================
   MISSION SECTION - Split Layout with Video
   About Page - Clean & Informative Design
   ============================================ */
.mission-split {
  background: white;
  padding: 80px 0;
}

.mission-split-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

/* Left Content */
.mission-split-content {
  padding-right: 20px;
}

.mission-split-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--brand-dark);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--brand-dark);
}

.mission-split-content h2 {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  color: var(--brand-dark);
  line-height: 1.2;
  margin-bottom: 20px;
}

.mission-split-intro {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 28px;
}

/* Synopsis Box */
.mission-split-synopsis {
  background: #f8fafb;
  border-left: 4px solid var(--brand-dark);
  padding: 24px 28px;
  margin-bottom: 32px;
}

.mission-split-synopsis h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mission-split-synopsis ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mission-split-synopsis li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
}

.mission-split-synopsis li svg {
  color: var(--brand-dark);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Right Video */
.mission-split-video {
  position: relative;
}

.video-container-clean {
  position: relative;
  background: #000;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(3, 78, 123, 0.2);
}

.video-container-clean video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* Clean Play Overlay */
.video-overlay-clean {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  cursor: pointer;
  transition: all 0.3s ease;
}

.video-overlay-clean:hover {
  background: rgba(0, 0, 0, 0.25);
}

.video-overlay-clean.hidden {
  opacity: 0;
  pointer-events: none;
}

.play-btn-clean {
  width: 80px;
  height: 80px;
  background: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.play-btn-clean svg {
  color: var(--brand-dark);
  margin-left: 4px;
}

.video-overlay-clean:hover .play-btn-clean {
  transform: scale(1.08);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.video-duration-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  letter-spacing: 0.5px;
}

.video-caption {
  font-size: 14px;
  color: var(--text-light);
  text-align: center;
  margin-top: 16px;
  font-style: italic;
}

/* Responsive - Tablet */
@media (max-width: 900px) {
  .mission-split-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .mission-split-content {
    padding-right: 0;
    text-align: center;
    order: 1;
  }
  
  .mission-split-video {
    order: 2;
  }
  
  .mission-split-synopsis {
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .mission-split-content .btn {
    margin: 0 auto;
  }
}

/* Responsive - Mobile */
@media (max-width: 640px) {
  .mission-split {
    padding: 60px 0;
  }
  
  .mission-split-grid {
    gap: 32px;
  }
  
  .mission-split-content h2 {
    font-size: 26px;
  }
  
  .mission-split-intro {
    font-size: 15px;
    margin-bottom: 24px;
  }
  
  .mission-split-synopsis {
    padding: 20px;
  }
  
  .mission-split-synopsis h4 {
    font-size: 14px;
  }
  
  .mission-split-synopsis li {
    font-size: 14px;
  }
  
  .play-btn-clean {
    width: 64px;
    height: 64px;
  }
  
  .play-btn-clean svg {
    width: 22px;
    height: 22px;
  }
  
  .video-duration-badge {
    font-size: 12px;
    padding: 5px 10px;
    bottom: 12px;
    right: 12px;
  }
  
  .video-caption {
    font-size: 13px;
  }
}

/* ============================================
   REXAIR SECTION V2 - About Page
   ============================================ */
.rexair-section-v2 {
  background: var(--brand-dark);
  padding: 80px 0;
}

.rexair-content-v2 {
  max-width: 1000px;
  margin: 0 auto;
}

.rexair-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 40px;
}

.rexair-main-logo {
  height: 80px;
  width: auto;
  filter: brightness(0) invert(1);
}

.rexair-anniversary-badge {
  height: 70px;
  width: auto;
}

.rexair-text-v2 {
  text-align: center;
  margin-bottom: 48px;
}

.rexair-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}

.rexair-text-v2 h3 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: white;
  margin-bottom: 24px;
}

.rexair-text-v2 p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 16px;
}

.rexair-text-v2 p:last-child {
  margin-bottom: 0;
}

.rexair-stats-v2 {
  display: flex;
  justify-content: center;
  gap: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.rexair-stat {
  text-align: center;
}

.rexair-stat-number {
  display: block;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}

.rexair-stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .rexair-section-v2 {
    padding: 60px 0;
  }
  
  .rexair-logos {
    flex-direction: column;
    gap: 24px;
  }
  
  .rexair-main-logo {
    height: 60px;
  }
  
  .rexair-anniversary-badge {
    height: 50px;
  }
  
  .rexair-stats-v2 {
    flex-direction: column;
    gap: 24px;
  }
}

/* ============================================
   SUPPORT CARDS V2 - Support Page
   ============================================ */
.support-links-section {
  background: var(--muted);
  padding: 80px 0;
}

.support-cards-v2 {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.support-card-v2 {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px;
  background: white;
  border: 1px solid var(--border);
  text-decoration: none;
  transition: all var(--transition-base);
}

.support-card-v2:hover {
  box-shadow: var(--shadow-lg);
  transform: translateX(8px);
  border-color: var(--brand-dark);
}

.support-card-v2-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: var(--brand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.support-card-v2-icon img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
}

.support-card-v2-content {
  flex: 1;
}

.support-card-v2-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 8px;
}

.support-card-v2-content p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

.support-card-v2-arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-dark);
  opacity: 0.5;
  transition: all var(--transition-base);
}

.support-card-v2:hover .support-card-v2-arrow {
  opacity: 1;
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .support-links-section {
    padding: 60px 0;
  }
  
  .support-card-v2 {
    padding: 24px;
    gap: 16px;
  }
  
  .support-card-v2-icon {
    width: 48px;
    height: 48px;
  }
  
  .support-card-v2-icon img {
    width: 24px;
    height: 24px;
  }
  
  .support-card-v2-content h3 {
    font-size: 18px;
  }
  
  .support-card-v2-arrow {
    display: none;
  }
}

/* ============================================
   QUICK CONTACT SECTION - Contact Page
   ============================================ */
.quick-contact-section {
  background: var(--muted);
  padding: 80px 0;
}

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

.quick-contact-card {
  display: flex;
  flex-direction: column;
  padding: 32px;
  background: white;
  border: 2px solid var(--border);
  text-decoration: none;
  transition: all var(--transition-base);
}

.quick-contact-card:hover {
  border-color: var(--brand-dark);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.quick-contact-whatsapp {
  background: #25D366;
  border-color: #25D366;
  color: white;
}

.quick-contact-whatsapp:hover {
  border-color: #128C7E;
  background: #128C7E;
}

.quick-contact-icon {
  width: 56px;
  height: 56px;
  background: var(--brand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: white;
}

.quick-contact-whatsapp .quick-contact-icon {
  background: rgba(255, 255, 255, 0.2);
}

.quick-contact-content {
  flex: 1;
}

.quick-contact-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 12px;
}

.quick-contact-whatsapp .quick-contact-content h3 {
  color: white;
}

.quick-contact-content p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}

.quick-contact-whatsapp .quick-contact-content p {
  color: rgba(255, 255, 255, 0.9);
}

.quick-contact-value {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-dark);
}

.quick-contact-whatsapp .quick-contact-value {
  color: white;
}

.quick-contact-arrow {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 16px;
  color: var(--brand-dark);
  opacity: 0.5;
  transition: all var(--transition-base);
}

.quick-contact-whatsapp .quick-contact-arrow {
  color: white;
}

.quick-contact-card:hover .quick-contact-arrow {
  opacity: 1;
  transform: translateX(4px);
}

@media (max-width: 900px) {
  .quick-contact-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .quick-contact-card {
    flex-direction: row;
    align-items: center;
    gap: 20px;
    padding: 24px;
  }
  
  .quick-contact-icon {
    margin-bottom: 0;
    flex-shrink: 0;
  }
  
  .quick-contact-arrow {
    display: none;
  }
}

/* ============================================
   COMPARISON TABLE V2 - Index Page
   ============================================ */
.comparison-section-v2 {
  margin-top: var(--gap-lg);
  background: white;
  border: 2px solid var(--brand-dark);
  overflow: hidden;
}

.comparison-header-v2 {
  background: var(--brand-dark);
  padding: 20px 24px;
  text-align: center;
}

.comparison-header-v2 h3 {
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin: 0;
}

.comparison-table-v2 {
  width: 100%;
}

.comparison-table-header {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  background: var(--muted);
  border-bottom: 2px solid var(--border);
}

.comparison-col {
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
}

.comparison-label-col {
  justify-content: flex-start;
  font-weight: 600;
  color: var(--text);
}

.comparison-good-col {
  background: rgba(3, 78, 123, 0.05);
  flex-direction: column;
  gap: 4px;
  text-align: center;
}

.comparison-table-header .comparison-good-col {
  color: var(--brand-dark);
  font-weight: 700;
}

.comparison-bad-col {
  flex-direction: column;
  gap: 4px;
  text-align: center;
  color: var(--text-light);
}

.comparison-badge {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.comparison-badge-good {
  background: var(--brand-dark);
  color: white;
}

.comparison-badge-bad {
  background: #dc3545;
  color: white;
}

.comparison-row-v2 {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
}

.comparison-row-v2:last-child {
  border-bottom: none;
}

.comparison-row-v2 .comparison-good-col {
  color: var(--brand-dark);
}

.comparison-row-v2 .comparison-good-col strong {
  font-weight: 700;
}

.comparison-row-featured {
  background: rgba(3, 78, 123, 0.02);
}

.comparison-row-featured .comparison-good-col,
.comparison-row-featured .comparison-bad-col {
  padding: 20px 16px;
}

.comparison-row-featured img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 4px;
}

@media (max-width: 768px) {
  .comparison-table-header,
  .comparison-row-v2 {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
  
  .comparison-col {
    padding: 12px 8px;
    font-size: 13px;
  }
  
  .comparison-header-v2 {
    padding: 16px;
  }
  
  .comparison-header-v2 h3 {
    font-size: 16px;
  }
  
  .comparison-row-featured img {
    width: 36px;
    height: 36px;
  }
}

/* ATTACHMENTS SECTION V2 */
.attachments-section-v2 { background: white; padding: 80px 0; }
.attachments-grid-v2 { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; margin-bottom: 60px; }

.attachment-card-v2 { background: white; border: 2px solid var(--border); transition: all var(--transition-base); overflow: hidden; }
.attachment-card-v2:hover { border-color: var(--brand-dark); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.attachment-card-image { aspect-ratio: 1 / 1; background: var(--muted); overflow: hidden; display: flex; align-items: center; justify-content: center; padding: 16px; }
.attachment-card-image img { width: 100%; height: 100%; object-fit: contain; transition: transform var(--transition-base); }
.attachment-card-v2:hover .attachment-card-image img { transform: scale(1.05); }
.attachment-card-content { padding: 20px; background: white; }
.attachment-card-content h3 { font-size: 16px; font-weight: 700; color: var(--brand-dark); margin-bottom: 6px; line-height: 1.3; }
.attachment-card-category { display: block; font-size: 12px; font-weight: 600; color: var(--brand-light); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; }
.attachment-card-content p { font-size: 13px; color: var(--text-light); line-height: 1.5; margin: 0; }
.attachments-cta-v2 { background: var(--brand-dark); padding: 48px; text-align: center; }
.attachments-cta-content h3 { font-size: clamp(22px, 3vw, 28px); font-weight: 700; color: white; margin-bottom: 12px; }
.attachments-cta-content p { font-size: 16px; color: rgba(255, 255, 255, 0.9); margin-bottom: 24px; max-width: 500px; margin-left: auto; margin-right: auto; }
.attachments-cta-content .btn-primary { background: white; color: var(--brand-dark); }
@media (max-width: 1200px) { .attachments-grid-v2 { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 900px) { .attachments-grid-v2 { grid-template-columns: repeat(3, 1fr); gap: 16px; } .attachment-card-content { padding: 16px; } .attachment-card-content h3 { font-size: 15px; } }
@media (max-width: 640px) { .attachments-section-v2 { padding: 60px 0; } .attachments-grid-v2 { grid-template-columns: repeat(2, 1fr); gap: 12px; } .attachment-card-content { padding: 14px; } .attachment-card-content h3 { font-size: 14px; } .attachment-card-category { font-size: 10px; } .attachment-card-content p { font-size: 11px; } .attachments-cta-v2 { padding: 32px 20px; } }

/* Attachments Show More - Mobile Collapse */
.attachments-show-more-wrapper {
  display: none;
  text-align: center;
  margin-bottom: 40px;
}

.attachments-show-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--brand-dark);
  color: white;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
}

.attachments-show-more-btn:hover {
  background: var(--brand-light);
  transform: translateY(-2px);
}

.attachments-show-more-btn .show-less-text {
  display: none;
}

.attachments-show-more-btn.expanded .show-more-text {
  display: none;
}

.attachments-show-more-btn.expanded .show-less-text {
  display: inline;
}

.attachments-show-more-btn .show-more-icon {
  transition: transform 0.3s ease;
}

.attachments-show-more-btn.expanded .show-more-icon {
  transform: rotate(180deg);
}

/* Mobile: Hide extra attachments and show button */
@media (max-width: 768px) {
  .attachments-show-more-wrapper {
    display: block;
  }
  
  .attachment-hidden-mobile {
    display: none;
  }
  
  .attachments-grid-v2.expanded .attachment-hidden-mobile {
    display: block;
  }
}

/* ============================================
   PROBLEM AWARENESS SECTION V2 - Homepage
   Design: Dark, moody, creates urgency
   ============================================ */
.problem-awareness-v2 {
  position: relative;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  padding: 100px 0;
  overflow: hidden;
}

.problem-awareness-bg {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.problem-awareness-v2 .container {
  position: relative;
  z-index: 1;
}

.problem-awareness-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 48px;
}

.problem-warning-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(220, 53, 69, 0.2);
  border: 1px solid rgba(220, 53, 69, 0.4);
  color: #ff6b6b;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}

.problem-warning-badge svg {
  stroke: #ff6b6b;
}

.problem-awareness-header h2 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  line-height: 1.15;
}

.problem-awareness-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

.problem-awareness-subtitle strong {
  color: #ff6b6b;
}

/* Visual Impact - Dusty Hand */
/* Dust Evidence Section - Enhanced Design */
.dust-evidence {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: white;
  margin-bottom: 60px;
  overflow: hidden;
}

.dust-evidence-image {
  position: relative;
  min-height: 320px;
  background: #1a1a1a;
}

.dust-evidence-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.dust-evidence-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: white;
}

.dust-evidence-warning {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #dc2626;
  color: white;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  align-self: flex-start;
}

.dust-evidence-warning svg {
  flex-shrink: 0;
}

.dust-evidence-text {
  font-size: 18px;
  color: var(--text);
  line-height: 1.7;
  margin: 0 0 24px 0;
}

.dust-evidence-text strong {
  color: #dc2626;
}

.dust-evidence-facts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dust-fact {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
}

.dust-fact-icon {
  width: 24px;
  height: 24px;
  background: #dc2626;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

/* Dust Evidence - Tablet */
@media (max-width: 900px) {
  .dust-evidence {
    grid-template-columns: 1fr;
  }
  
  .dust-evidence-image {
    min-height: 280px;
    order: -1;
  }
  
  .dust-evidence-content {
    padding: 32px;
  }
}

/* Dust Evidence - Mobile */
@media (max-width: 640px) {
  .dust-evidence {
    margin-bottom: 40px;
  }
  
  .dust-evidence-image {
    min-height: 240px;
  }
  
  .dust-evidence-content {
    padding: 24px 20px;
  }
  
  .dust-evidence-warning {
    padding: 8px 16px;
    font-size: 11px;
    gap: 8px;
  }
  
  .dust-evidence-warning svg {
    width: 16px;
    height: 16px;
  }
  
  .dust-evidence-text {
    font-size: 16px;
    margin-bottom: 20px;
  }
  
  .dust-fact {
    font-size: 14px;
    gap: 10px;
  }
  
  .dust-fact-icon {
    width: 20px;
    height: 20px;
    font-size: 10px;
  }
}

/* Stats Grid V2 */
.problem-stats-v2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.problem-stat-v2 {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

/* Hover removed for cleaner design */

.problem-stat-danger {
  background: rgba(220, 53, 69, 0.15);
  border-color: rgba(220, 53, 69, 0.3);
}

.problem-stat-icon {
  margin-bottom: 16px;
}

.problem-stat-icon svg {
  stroke: rgba(255, 255, 255, 0.6);
}

.problem-stat-danger .problem-stat-icon svg {
  stroke: #ff6b6b;
}

.problem-stat-v2 .problem-stat-number {
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 700;
  color: white;
  line-height: 1;
  margin-bottom: 8px;
}

.problem-stat-danger .problem-stat-number {
  color: #ff6b6b;
}

.problem-stat-v2 .problem-stat-label {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 12px;
}

.problem-stat-v2 p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  margin: 0;
}


/* ============================================
   PROBLEMS DETAILED V2 - Homepage
   ============================================ */
.problems-detailed-v2 {
  background: #f8f9fa;
  padding: 100px 0;
}

.problems-header-v2 {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.problems-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #dc3545;
  margin-bottom: 16px;
}

.problems-header-v2 h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 16px;
}

.problems-header-v2 p {
  font-size: 17px;
  color: var(--text-light);
}

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

.problem-card-v2 {
  background: white;
  border: 2px solid var(--border);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

/* Hover removed for cleaner design */

.problem-card-featured {
  border-color: #dc3545;
}

.problem-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.problem-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* Hover removed for cleaner design */

.problem-card-number {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 40px;
  height: 40px;
  background: var(--brand-dark);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

.problem-card-danger-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #dc3545;
  color: white;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.problem-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

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

.problem-card-body > p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.problem-symptoms {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.problem-symptoms li {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
}

/* Problem Fact Bar */
.problem-fact {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--muted);
  padding: 12px 16px;
  margin-top: auto;
}

.problem-fact-number {
  font-family: var(--ff-ui);
  font-size: 24px;
  font-weight: 800;
  color: var(--brand-dark);
  line-height: 1;
}

.problem-fact-label {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.3;
}

.problem-fact-danger {
  background: rgba(220, 38, 38, 0.1);
}

.problem-fact-danger .problem-fact-number {
  color: #dc2626;
}

.problem-fact-danger .problem-fact-label {
  color: var(--text);
}

/* Mobile problem fact adjustments */
@media (max-width: 640px) {
  .problem-fact {
    padding: 10px 14px;
    gap: 10px;
  }
  
  .problem-fact-number {
    font-size: 20px;
  }
  
  .problem-fact-label {
    font-size: 12px;
  }
}

.pm-levels-compact {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.pm-levels-compact span {
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
}

.pm-good { background: #d4edda; color: #155724; }
.pm-moderate { background: #fff3cd; color: #856404; }
.pm-danger { background: #dc3545; color: white; }

.problems-cta-v2 {
  text-align: center;
  padding: 32px;
  background: rgba(220, 53, 69, 0.08);
  border-left: 4px solid #dc3545;
}

.problems-cta-v2 p {
  font-size: 17px;
  color: var(--text);
  margin: 0;
}


/* ============================================
   SOLUTION HERO V2 - Homepage
   Design: Bright, hopeful, product as hero
   ============================================ */
.solution-hero-v2 {
  position: relative;
  background: linear-gradient(135deg, var(--brand-dark) 0%, #0a3d62 100%);
  padding: 70px 0 60px;
  overflow: hidden;
}

.solution-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.solution-hero-v2 .container {
  position: relative;
  z-index: 1;
}

.solution-content-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "showcase header"
    "showcase text";
  gap: 0 50px;
  align-items: start;
  margin-bottom: 0;
}

/* Solution Header for mobile reordering */
.solution-header {
  grid-area: header;
  color: white;
  align-self: end;
}

.solution-header .solution-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
}

.solution-header h2 {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
  line-height: 1;
}

.solution-header .solution-tagline {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

/* Product Showcase */
.solution-product-showcase {
  grid-area: showcase;
  position: relative;
  text-align: center;
  align-self: center;
}

.solution-product-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 6px 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

/* Stacked Images */
.solution-image-stack {
  position: relative;
  height: 360px;
  max-width: 360px;
  margin: 0 auto;
}

.solution-stack-image {
  position: absolute;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.solution-stack-image:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.solution-stack-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.solution-stack-1 {
  width: 250px;
  height: 280px;
  top: 0;
  left: 0;
  z-index: 2;
}

.solution-stack-2 {
  width: 230px;
  height: 260px;
  bottom: 0;
  right: 0;
  z-index: 1;
}

/* Text Content */
.solution-text-content {
  grid-area: text;
  color: white;
}

.solution-description {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 24px;
}

.solution-description strong {
  color: white;
}

/* Features V2 */
.solution-features-v2 {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.solution-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.08);
  border-left: 3px solid rgba(255, 255, 255, 0.3);
}

.solution-feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution-feature-icon svg {
  stroke: white;
}

.solution-feature-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin-bottom: 2px;
}

.solution-feature-text span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

/* CTA Group */
.solution-cta-group {
  text-align: left;
}

.solution-main-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: var(--brand-dark);
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.solution-main-cta:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.solution-main-cta svg {
  transition: transform 0.3s ease;
}

.solution-main-cta:hover svg {
  transform: translateX(4px);
}

/* Trust Bar & CTA Note - Removed from HTML */


/* About Hero Background */
.about-hero {
  position: relative;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(3, 78, 123, 0.8);
}

.about-hero .container {
  position: relative;
  z-index: 1;
}

/* ============================================
   RESPONSIVE STYLES FOR V2 SECTIONS
   ============================================ */
@media (max-width: 1024px) {
  .solution-content-v2 {
    grid-template-columns: 1fr;
    grid-template-areas:
      "header"
      "showcase"
      "text";
    gap: 24px;
    text-align: center;
  }
  
  .solution-header {
    align-self: auto;
  }
  
  .solution-header .solution-tagline {
    margin-bottom: 0;
  }
  
  .solution-cta-group {
    text-align: center;
  }
  
  .solution-features-v2 {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 900px) {
  .problems-grid-v2 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .problem-card-v2 {
    display: grid;
    grid-template-columns: 200px 1fr;
  }
  
  .problem-card-image {
    height: auto;
  }
  
  .problem-stats-v2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .problem-awareness-v2 {
    padding: 70px 0;
  }
  
  .problem-stats-v2 {
    gap: 16px;
  }
  
  .problem-stat-v2 {
    padding: 24px 16px;
  }
  
  .problems-detailed-v2 {
    padding: 70px 0;
  }
  
  .problem-card-v2 {
    grid-template-columns: 1fr;
  }
  
  .problem-card-image {
    height: 180px;
  }
  
  .solution-hero-v2 {
    padding: 50px 0 40px;
  }
  
  .solution-text-content h2 {
    font-size: 32px;
  }
  
  .solution-tagline {
    font-size: 18px;
  }
  
  .solution-feature {
    padding: 12px 14px;
  }
  
  /* Solution stacked images - tablet */
  .solution-image-stack {
    height: 320px;
    max-width: 320px;
  }
  
  .solution-stack-1 {
    width: 220px;
    height: 250px;
  }
  
  .solution-stack-2 {
    width: 200px;
    height: 230px;
  }
}

@media (max-width: 640px) {
  .solution-description {
    display: none;
  }
  
  .problem-awareness-header h2 {
    font-size: 28px;
  }
  
  .problem-awareness-subtitle {
    font-size: 16px;
  }
  
  .problem-stats-v2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .problem-stat-v2 {
    padding: 20px 12px;
  }
  
  .problem-stat-v2 .problem-stat-number {
    font-size: 28px;
  }
  
  .problem-stat-v2 .problem-stat-label {
    font-size: 13px;
  }
  
  .problem-stat-v2 p {
    font-size: 12px;
    line-height: 1.4;
  }
  
  .problems-header-v2 h2 {
    font-size: 26px;
  }
  
  .problem-card-body {
    padding: 20px;
  }
  
  .problem-card-body h3 {
    font-size: 18px;
  }
  
  .solution-main-cta {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }
  
  .solution-content-v2 {
    margin-bottom: 0;
    gap: 16px;
  }
  
  .solution-hero-v2 {
    padding: 40px 0 30px;
  }
  
  .solution-header .solution-eyebrow {
    font-size: 11px;
    margin-bottom: 8px;
  }
  
  .solution-header h2 {
    font-size: 28px;
  }
  
  .solution-header .solution-tagline {
    font-size: 16px;
  }
  
  .solution-product-badge {
    margin-bottom: 12px;
  }
  
  /* Solution stacked images - mobile */
  .solution-image-stack {
    height: auto;
    max-width: 100%;
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 16px;
  }
  
  .solution-stack-image {
    position: relative;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    border-width: 2px;
  }
  
  .solution-stack-1,
  .solution-stack-2 {
    width: 46%;
    height: 160px;
  }
  
  .solution-features-v2 {
    gap: 10px;
    margin-bottom: 20px;
  }
  
  .solution-feature {
    padding: 10px 12px;
  }
  
  .solution-feature-text strong {
    font-size: 13px;
  }
  
  .solution-feature-text span {
    font-size: 12px;
  }
}


/* ============================================
   DESIGN GUIDELINES FIX - Strict Rules
   Colors: Dark Blue (#034e7b) + White only
   No border-radius, no gradients, no patterns
   ============================================ */

/* Override Problem Awareness Section */
.problem-awareness-v2 {
  position: relative;
  background: var(--brand-dark);
  padding: 100px 0;
  overflow: visible;
}

.problem-awareness-bg {
  display: none;
}

.problem-warning-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: none;
  color: var(--brand-dark);
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}

.problem-warning-badge svg {
  stroke: var(--brand-dark);
}

.problem-awareness-subtitle strong {
  color: white;
  text-decoration: underline;
}

/* Old problem-visual styles removed - using dust-evidence instead */

.problem-stat-v2 {
  background: white;
  border: none;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.problem-stat-v2:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.problem-stat-danger {
  background: white;
  border: none;
}

.problem-stat-icon svg {
  stroke: var(--brand-dark);
}

.problem-stat-danger .problem-stat-icon svg {
  stroke: var(--brand-dark);
}

.problem-stat-v2 .problem-stat-number {
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 700;
  color: var(--brand-dark);
  line-height: 1;
  margin-bottom: 8px;
}

.problem-stat-danger .problem-stat-number {
  color: var(--brand-dark);
}

.problem-stat-v2 .problem-stat-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-dark);
  margin-bottom: 12px;
}

.problem-stat-v2 p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
  margin: 0;
}


/* Override Problems Detailed V2 */
.problems-detailed-v2 {
  background: white;
  padding: 100px 0;
}

.problems-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--brand-dark);
  background: rgba(3, 78, 123, 0.1);
  padding: 8px 16px;
  margin-bottom: 16px;
}

.problem-card-v2 {
  background: white;
  border: 2px solid var(--brand-dark);
  overflow: hidden;
  transition: all 0.3s ease;
}

.problem-card-v2:hover {
  box-shadow: 0 20px 40px rgba(3, 78, 123, 0.15);
  transform: translateY(-8px);
}

.problem-card-featured {
  border-width: 3px;
}

.problem-card-number {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 40px;
  height: 40px;
  background: var(--brand-dark);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

.problem-card-danger-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--brand-dark);
  color: white;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.problem-symptoms li {
  background: rgba(3, 78, 123, 0.1);
  color: var(--brand-dark);
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
}

.pm-good { background: white; color: var(--brand-dark); border: 1px solid var(--brand-dark); }
.pm-moderate { background: rgba(3, 78, 123, 0.2); color: var(--brand-dark); }
.pm-danger { background: var(--brand-dark); color: white; }

.problems-cta-v2 {
  text-align: center;
  padding: 32px;
  background: rgba(3, 78, 123, 0.08);
  border-left: 4px solid var(--brand-dark);
}

/* Override Solution Hero V2 - These styles are no longer used, keeping for reference */


/* ============================================
   THE RAINBOW DIFFERENCE - Enhanced Design
   ============================================ */
.how-it-works {
  background: white;
  padding: 100px 0;
}

.how-it-works .section-header h2 {
  color: var(--brand-dark);
}

.step-card {
  background: white;
  border: 2px solid var(--brand-dark);
  padding: 40px 32px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(3, 78, 123, 0.15);
}

.step-card .step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--brand-dark);
  color: white;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-card .step-icon {
  width: 80px;
  height: 80px;
  margin: 20px auto 24px;
  background: var(--brand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-card .step-icon img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
}

.step-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 16px;
}

.step-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ============================================
   LEGACY SECTION V3 - Vertical Timeline
   ============================================ */
.legacy-section-v2 {
  background: white;
  padding: 100px 0;
}

.legacy-timeline-v2 {
  position: relative;
  padding: 0;
  margin-bottom: 80px;
  overflow: visible;
}

.timeline-track {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: var(--brand-dark);
  transform: translateX(-50%);
}

.timeline-items {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: auto;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  position: relative;
  padding: 20px 0;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
  padding-right: calc(50% + 40px);
  text-align: right;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
  padding-left: calc(50% + 40px);
  text-align: left;
}

.timeline-marker {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
  background: white;
  border: 4px solid var(--brand-dark);
  z-index: 2;
}

.timeline-content {
  position: relative;
  background: white;
  border: 2px solid var(--brand-dark);
  padding: 24px;
  width: 100%;
  top: auto;
  bottom: auto;
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-right: 40px;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: 40px;
}

.timeline-year {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: white;
  background: var(--brand-dark);
  padding: 4px 12px;
  margin-bottom: 12px;
}

.timeline-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
  margin: 0;
}

/* Legacy Stats */
.legacy-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.legacy-stat-card {
  background: white;
  padding: 32px 24px;
  text-align: center;
  border: 2px solid var(--brand-dark);
  transition: all 0.3s ease;
}

.legacy-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(3, 78, 123, 0.15);
}

.legacy-stat-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  background: var(--brand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.legacy-stat-icon img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
}

.legacy-stat-number {
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 700;
  color: var(--brand-dark);
  line-height: 1;
  margin-bottom: 8px;
}

.legacy-stat-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-dark);
  margin-bottom: 8px;
}

.legacy-stat-card p {
  font-size: 13px;
  color: var(--text-light);
  margin: 0;
}

/* Legacy Certifications */
.legacy-certifications {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 40px 0;
  border-top: 2px solid var(--brand-dark);
}

.legacy-cert {
  display: flex;
  align-items: center;
  gap: 16px;
}

.legacy-cert img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.legacy-cert span {
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-dark);
}


/* ============================================
   RESPONSIVE FIXES FOR DESIGN GUIDELINES
   ============================================ */
@media (max-width: 1024px) {
  .legacy-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .timeline-track {
    left: 20px;
  }
  
  .timeline-item,
  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    flex-direction: row;
    padding-left: 60px;
    padding-right: 0;
    text-align: left;
  }
  
  .timeline-marker {
    left: 20px;
  }
  
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  .problem-awareness-v2 {
    padding: 70px 0;
  }
  
  .problem-stats-v2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .problems-detailed-v2 {
    padding: 70px 0;
  }
  
  .solution-hero-v2 {
    padding: 70px 0 60px;
  }
  
  .step-card {
    padding: 32px 24px;
  }
  
  .step-card .step-icon {
    width: 64px;
    height: 64px;
  }
  
  .step-card .step-icon img {
    width: 32px;
    height: 32px;
  }
  
  .legacy-section-v2 {
    padding: 70px 0;
  }
  
  .legacy-timeline-v2 {
    margin-bottom: 60px;
  }
  
  .timeline-content {
    padding: 20px;
  }
  
  .legacy-certifications {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .problem-stats-v2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .legacy-stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .legacy-stat-card {
    padding: 24px;
  }
  
  .timeline-track {
    left: 16px;
  }
  
  .timeline-item,
  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    padding-left: 48px;
  }
  
  .timeline-marker {
    left: 16px;
    width: 20px;
    height: 20px;
  }
  
  .timeline-content {
    padding: 16px;
  }
  
  .timeline-year {
    font-size: 12px;
    padding: 3px 10px;
  }
  
  .timeline-content h4 {
    font-size: 16px;
  }
  
  .timeline-content p {
    font-size: 13px;
  }
}


/* ============================================
   LEGACY SECTION V3 - Simplified Design
   ============================================ */
.legacy-section-v3 {
  background: white;
  padding: 100px 0;
}

.legacy-section-v3 .section-header {
  text-align: center;
  margin-bottom: 48px;
}

.legacy-section-v3 .section-header h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 12px;
}

.legacy-section-v3 .section-header p {
  font-size: 17px;
  color: var(--text-light);
}

.legacy-main-content {
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
}

.legacy-intro-text {
  margin-bottom: 48px;
}

.legacy-intro-text p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text);
}

.legacy-milestones {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.milestone-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 28px;
  background: #f8f9fa;
  border: 2px solid var(--border);
}

.milestone-item.milestone-highlight {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}

.milestone-item.milestone-highlight .milestone-year,
.milestone-item.milestone-highlight .milestone-label {
  color: white;
}

.milestone-year {
  font-size: 24px;
  font-weight: 700;
  color: var(--brand-dark);
  line-height: 1;
  margin-bottom: 4px;
}

.milestone-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-light);
}

.legacy-stats-row {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.legacy-stat-v3 {
  text-align: center;
  padding: 24px 32px;
  background: var(--brand-dark);
}

.legacy-stat-v3 .legacy-stat-number {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  color: white;
  line-height: 1;
  margin-bottom: 4px;
}

.legacy-stat-v3 .legacy-stat-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.8);
}

.legacy-certs-v3 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.legacy-certs-v3 img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .legacy-section-v3 {
    padding: 70px 0;
  }
  
  .legacy-milestones {
    gap: 12px;
  }
  
  .milestone-item {
    padding: 16px 20px;
  }
  
  .milestone-year {
    font-size: 20px;
  }
  
  .legacy-stats-row {
    gap: 16px;
  }
  
  .legacy-stat-v3 {
    padding: 20px 24px;
  }
  
  .legacy-certs-v3 {
    gap: 24px;
  }
  
  .legacy-certs-v3 img {
    height: 50px;
  }
}

@media (max-width: 480px) {
  .milestone-item {
    padding: 12px 16px;
    flex: 1 1 calc(50% - 12px);
    min-width: 120px;
  }
  
  .legacy-stats-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  
  .legacy-stat-v3 {
    padding: 16px;
  }
}

/* ============================================
   B2B PAGE STYLES
   ============================================ */
.b2b-hero {
  background: var(--brand-dark);
  padding: 140px 0 100px;
  text-align: center;
}

.b2b-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.b2b-hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 8px 24px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.b2b-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  line-height: 1.2;
}

.b2b-hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  line-height: 1.6;
}

.b2b-hero-ctas {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.b2b-hero-ctas .btn-secondary {
  background: transparent;
  border-color: white;
  color: white;
}

/* B2B Industries Section */
.b2b-industries {
  background: #f8f9fa;
  padding: 100px 0;
}

.b2b-industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.b2b-industry-card {
  background: white;
  border: 2px solid var(--border);
  padding: 40px 32px;
}

.b2b-industry-icon {
  margin-bottom: 20px;
}

.b2b-industry-icon svg {
  stroke: var(--brand-dark);
}

.b2b-industry-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 12px;
}

.b2b-industry-card > p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
}

.b2b-industry-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.b2b-industry-benefits li {
  font-size: 14px;
  color: var(--text);
  padding: 8px 0;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}

.b2b-industry-benefits li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--brand-dark);
  flex-shrink: 0;
}

/* B2B Why Rainbow Section */
.b2b-why-rainbow {
  background: white;
  padding: 100px 0;
}

.b2b-why-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.b2b-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--brand-dark);
  margin-bottom: 16px;
}

.b2b-why-text h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 20px;
}

.b2b-why-text > p {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 32px;
}

.b2b-why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.b2b-why-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.b2b-why-feature svg {
  stroke: var(--brand-dark);
  flex-shrink: 0;
}

.b2b-why-feature span {
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
}

.b2b-why-image img {
  width: 100%;
  height: auto;
}

/* B2B Services Section */
.b2b-services {
  background: var(--brand-dark);
  padding: 100px 0;
}

.b2b-services .section-header h2 {
  color: white;
}

.b2b-services .section-header p {
  color: rgba(255, 255, 255, 0.8);
}

.b2b-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.b2b-service-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 32px 24px;
}

.b2b-service-number {
  font-size: 32px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 16px;
}

.b2b-service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
}

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

/* B2B Certifications */
.b2b-certifications {
  background: #f8f9fa;
  padding: 80px 0;
}

.b2b-certs-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.b2b-certs-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 32px;
}

.b2b-certs-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  margin-bottom: 24px;
}

.b2b-certs-logos img {
  height: 60px;
  width: auto;
}

.b2b-certs-content > p {
  font-size: 16px;
  color: var(--text-light);
}

/* B2B Contact Section */
.b2b-contact-section {
  background: white;
  padding: 100px 0;
}

.b2b-contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.b2b-contact-info h2 {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 16px;
}

.b2b-contact-info > p {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 32px;
}

.b2b-contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.b2b-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.b2b-contact-item svg {
  stroke: var(--brand-dark);
  flex-shrink: 0;
  margin-top: 4px;
}

.b2b-contact-item strong {
  display: block;
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 4px;
}

.b2b-contact-item a {
  font-size: 16px;
  color: var(--brand-dark);
  font-weight: 600;
}

.b2b-contact-form {
  background: #f8f9fa;
  padding: 40px;
  border: 2px solid var(--border);
}

/* B2B Responsive */
@media (max-width: 1024px) {
  .b2b-industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .b2b-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .b2b-hero {
    padding: 120px 0 80px;
  }
  
  .b2b-industries-grid {
    grid-template-columns: 1fr;
  }
  
  .b2b-why-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .b2b-why-image {
    order: -1;
  }
  
  .b2b-services-grid {
    grid-template-columns: 1fr;
  }
  
  .b2b-contact-content {
    grid-template-columns: 1fr;
  }
  
  .b2b-contact-form {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .b2b-why-features {
    grid-template-columns: 1fr;
  }
  
  .b2b-certs-logos {
    flex-direction: column;
    gap: 24px;
  }
}

/* ============================================
   B2B PAGE V2 - Enhanced Design
   ============================================ */

/* B2B Section Tags */
.b2b-section-tag {
  display: inline-block;
  background: var(--brand-dark);
  color: white;
  padding: 8px 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.b2b-section-tag-light {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 8px 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

/* B2B Hero V2 with Background Image */
.b2b-hero-v2 {
  position: relative;
  padding: 160px 0 120px;
  text-align: center;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.b2b-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.b2b-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(3, 78, 123, 0.92) 0%, rgba(3, 78, 123, 0.85) 100%);
}

.b2b-hero-v2 .container {
  position: relative;
  z-index: 2;
}

.b2b-hero-v2 .b2b-hero-content {
  max-width: 850px;
  margin: 0 auto;
}

.b2b-hero-v2 .b2b-hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 10px 28px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 28px;
}

.b2b-hero-v2 h1 {
  font-size: clamp(36px, 5.5vw, 58px);
  font-weight: 700;
  color: white;
  margin-bottom: 24px;
  line-height: 1.15;
}

.b2b-hero-v2 p {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.b2b-hero-v2 .b2b-hero-ctas {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.b2b-hero-v2 .btn-secondary {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.b2b-hero-v2 .btn-secondary:hover {
  background: white;
  color: var(--brand-dark);
}

/* B2B Industries V2 - Image Cards */
.b2b-industries-v2 {
  background: white;
  padding: 100px 0;
}

.b2b-industries-v2 .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.b2b-industries-v2 .section-header h2 {
  color: var(--brand-dark);
  margin-bottom: 12px;
}

.b2b-industries-v2 .section-header p {
  color: var(--text-light);
  font-size: 17px;
}

.b2b-industries-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.b2b-industry-card-v2 {
  background: white;
  border: 2px solid var(--border);
  overflow: hidden;
  transition: var(--transition-base);
}

.b2b-industry-card-v2:hover {
  border-color: var(--brand-dark);
}

.b2b-industry-image {
  height: 200px;
  overflow: hidden;
}

.b2b-industry-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.b2b-industry-card-v2:hover .b2b-industry-image img {
  transform: scale(1.05);
}

.b2b-industry-content {
  padding: 28px;
}

.b2b-industry-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 12px;
}

.b2b-industry-content > p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
}

.b2b-industry-benefits-v2 {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.b2b-industry-benefits-v2 li {
  font-size: 13px;
  color: var(--text);
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.b2b-industry-benefits-v2 li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--brand-dark);
  flex-shrink: 0;
}

/* B2B Why Rainbow V2 */
.b2b-why-rainbow-v2 {
  background: #f8f9fa;
  padding: 100px 0;
}

.b2b-why-content-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "header image"
    "text image";
  gap: 0 80px;
  align-items: start;
}

.b2b-why-header {
  grid-area: header;
  align-self: end;
}

.b2b-why-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 0;
  line-height: 1.2;
}

.b2b-why-text-v2 {
  grid-area: text;
}

.b2b-why-text-v2 > p {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 36px;
}

.b2b-why-features-v2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.b2b-why-feature-v2 {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  background: white;
  border: 1px solid var(--border);
}

.b2b-feature-check {
  width: 32px;
  height: 32px;
  background: var(--brand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.b2b-feature-check svg {
  stroke: white;
}

.b2b-why-feature-v2 span {
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
}

.b2b-why-image-v2 {
  grid-area: image;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
}

.b2b-product-showcase {
  background: white;
  padding: 40px;
  border: 2px solid var(--border);
}

.b2b-product-showcase img {
  width: 100%;
  height: auto;
  max-width: 400px;
  margin: 0 auto;
  display: block;
}

/* B2B Services V2 */
.b2b-services-v2 {
  background: var(--brand-dark);
  padding: 100px 0;
}

.b2b-services-v2 .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.b2b-services-v2 .section-header h2 {
  color: white;
  margin-bottom: 12px;
}

.b2b-services-v2 .section-header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
}

.b2b-services-grid-v2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.b2b-service-card-v2 {
  background: white;
  overflow: hidden;
  transition: var(--transition-base);
}

.b2b-service-card-v2:hover {
  transform: translateY(-4px);
}

.b2b-service-image {
  height: 180px;
  overflow: hidden;
}

.b2b-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.b2b-service-card-v2:hover .b2b-service-image img {
  transform: scale(1.05);
}

.b2b-service-content {
  padding: 24px;
}

.b2b-service-content .b2b-service-number {
  font-size: 28px;
  font-weight: 700;
  color: var(--brand-dark);
  opacity: 0.2;
  margin-bottom: 8px;
}

.b2b-service-content h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 10px;
}

.b2b-service-content p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* B2B Contact Section V2 */
.b2b-contact-section-v2 {
  background: #f8f9fa;
  padding: 100px 0;
  overflow-x: hidden;
  position: relative;
}

.b2b-contact-section-v2 .container {
  position: relative;
  margin-left: auto;
  margin-right: auto;
}

.b2b-contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.b2b-contact-header h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 16px;
}

.b2b-contact-header > p {
  font-size: 17px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.b2b-contact-content-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  width: 100%;
  box-sizing: border-box;
}

.b2b-contact-info-v2 {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  box-sizing: border-box;
}

.b2b-contact-card {
  background: white;
  border: 2px solid var(--border);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: var(--transition-base);
  box-sizing: border-box;
}

.b2b-contact-card:hover {
  border-color: var(--brand-dark);
}

.b2b-contact-card-whatsapp {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}

.b2b-contact-card-whatsapp .b2b-contact-card-icon svg {
  fill: white;
}

.b2b-contact-card-whatsapp .b2b-contact-card-content strong {
  color: white;
}

.b2b-contact-card-whatsapp .b2b-contact-card-content a {
  color: white;
}

.b2b-contact-card-whatsapp .b2b-contact-note {
  color: rgba(255, 255, 255, 0.7);
}

.b2b-contact-card-icon {
  width: 52px;
  height: 52px;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.b2b-contact-card-whatsapp .b2b-contact-card-icon {
  background: rgba(255, 255, 255, 0.15);
}

.b2b-contact-card-icon svg {
  stroke: var(--brand-dark);
}

.b2b-contact-card-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.b2b-contact-card-content strong {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.b2b-contact-card-content a {
  font-size: 17px;
  color: var(--brand-dark);
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  word-break: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

.b2b-contact-card-content a:hover {
  text-decoration: underline;
}

.b2b-contact-note {
  font-size: 13px;
  color: var(--text-light);
}

/* B2B Contact Form V2 */
.b2b-contact-form-v2 {
  background: white;
  border: 2px solid var(--border);
  padding: 40px;
  box-sizing: border-box;
}

.b2b-form-header {
  margin-bottom: 32px;
}

.b2b-form-header h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 8px;
}

.b2b-form-header p {
  font-size: 15px;
  color: var(--text-light);
}

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

.btn-full {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* B2B V2 Responsive */
@media (max-width: 1200px) {
  .b2b-industries-grid-v2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .b2b-services-grid-v2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .b2b-hero-v2 {
    padding: 130px 0 80px;
    min-height: auto;
  }
  
  .b2b-industries-v2,
  .b2b-why-rainbow-v2,
  .b2b-services-v2,
  .b2b-contact-section-v2 {
    padding: 70px 0;
  }
  
  /* Specific alignment fix for contact section */
  .b2b-contact-section-v2 {
    display: block;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    position: relative;
    left: 0;
    right: 0;
    transform: none !important;
    overflow-x: hidden;
  }
  
  .b2b-industries-grid-v2 {
    grid-template-columns: 1fr;
  }
  
  .b2b-why-content-v2 {
    grid-template-columns: 1fr;
    grid-template-areas:
      "header"
      "image"
      "text";
    gap: 24px;
  }
  
  .b2b-why-header {
    text-align: center;
    align-self: auto;
  }
  
  .b2b-why-header h2 {
    margin-bottom: 0;
  }
  
  .b2b-services-grid-v2 {
    grid-template-columns: 1fr;
  }
  
  .b2b-contact-content-v2 {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
  }
  
  .b2b-contact-info-v2 {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  
  .b2b-contact-card {
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    transform: none !important;
    position: relative;
    left: 0;
    right: 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
  }
  
  /* Ensure email card specifically is aligned */
  .b2b-contact-card:not(.b2b-contact-card-whatsapp) {
    background: white;
    border: 2px solid var(--border);
  }
  
  .b2b-contact-form-v2 {
    padding: 24px;
    width: 100%;
    margin: 0;
    transform: none !important;
    position: relative;
    left: 0;
    right: 0;
  }
  
  .b2b-contact-info-v2 {
    transform: none !important;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  /* Ensure container is properly centered */
  .b2b-contact-section-v2 .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
    max-width: 100%;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: left;
    position: relative;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
    width: 100%;
    box-sizing: border-box;
  }
  
  /* Reset any animation transforms that might cause misalignment */
  .b2b-contact-section-v2 .animate-on-scroll,
  .b2b-contact-section-v2 .slide-in-left,
  .b2b-contact-section-v2 .slide-in-right,
  .b2b-contact-section-v2 .scale-in {
    transform: translateX(0) translateY(0) scale(1) !important;
    opacity: 1 !important;
  }
  
  /* Ensure is-visible class doesn't override */
  .b2b-contact-section-v2 .animate-on-scroll.is-visible,
  .b2b-contact-section-v2 .slide-in-left.is-visible,
  .b2b-contact-section-v2 .slide-in-right.is-visible,
  .b2b-contact-section-v2 .scale-in.is-visible {
    transform: translateX(0) translateY(0) scale(1) !important;
  }
  
  /* Ensure section itself is centered */
  .b2b-contact-section-v2 {
    position: relative;
    left: 0;
    right: 0;
    transform: none !important;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }
  
  /* Ensure all text is left-aligned within cards */
  .b2b-contact-card-content {
    text-align: left;
  }
  
  .b2b-form-header {
    text-align: left;
  }
  
  /* Force all children to be properly aligned */
  .b2b-contact-section-v2 * {
    max-width: 100%;
    box-sizing: border-box;
  }
  
  /* Ensure no horizontal overflow */
  .b2b-contact-section-v2,
  .b2b-contact-section-v2 .container,
  .b2b-contact-section-v2 .b2b-contact-content-v2,
  .b2b-contact-section-v2 .b2b-contact-info-v2,
  .b2b-contact-section-v2 .b2b-contact-card,
  .b2b-contact-section-v2 .b2b-contact-form-v2 {
    overflow-x: visible;
    min-width: 0;
  }
  
  /* Ensure proper width calculation */
  .b2b-contact-content-v2 {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }
  
  /* Ensure card content is properly aligned */
  .b2b-contact-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
  }
  
  .b2b-contact-card-icon {
    flex-shrink: 0;
    margin: 0;
  }
  
  .b2b-contact-card-content {
    flex: 1;
    min-width: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  /* Ensure email address doesn't cause alignment issues */
  .b2b-contact-card-content a {
    word-break: break-word;
    display: block;
    max-width: 100%;
    width: 100%;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  
  /* Ensure email card content is properly aligned */
  .b2b-contact-card-content {
    width: 100%;
    flex: 1 1 auto;
  }
  
  /* Ensure icon is properly aligned */
  .b2b-contact-card-icon {
    align-self: flex-start;
    margin-top: 0;
  }
  
  /* Ensure all cards have consistent alignment */
  .b2b-contact-card {
    align-items: flex-start;
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .b2b-industry-benefits-v2 {
    grid-template-columns: 1fr;
  }
  
  .b2b-product-showcase {
    padding: 20px;
  }
}

/* ============================================
   B2B AWARENESS SECTION - Homepage
   ============================================ */
.b2b-awareness-section {
  background: var(--brand-dark);
  padding: 80px 0;
}

.b2b-awareness-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.b2b-awareness-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.b2b-awareness-content h2 {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
}

.b2b-awareness-content > p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
}

.b2b-awareness-industries {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.b2b-industry-tag {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
}

.b2b-awareness-note {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
}

/* B2B Awareness Section V2 - Enhanced Homepage Design */
.b2b-awareness-section-v2 {
  background: white;
  padding: 120px 0;
  margin-top: 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.b2b-awareness-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "images header"
    "images content";
  gap: 0 80px;
  align-items: start;
}

.b2b-awareness-header {
  grid-area: header;
  align-self: end;
}

.b2b-awareness-header .b2b-awareness-badge-v2 {
  display: inline-block;
  background: var(--brand-dark);
  color: white;
  padding: 10px 24px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.b2b-awareness-header h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 0;
  line-height: 1.2;
}

.b2b-awareness-images {
  grid-area: images;
  align-self: center;
}

.b2b-awareness-content-v2 {
  grid-area: content;
}

.b2b-image-stack {
  position: relative;
  height: 450px;
}

.b2b-stack-image {
  position: absolute;
  overflow: hidden;
  border: 3px solid var(--brand-dark);
}

.b2b-stack-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.b2b-stack-1 {
  width: 280px;
  height: 320px;
  top: 0;
  left: 0;
  z-index: 2;
}

.b2b-stack-2 {
  width: 280px;
  height: 320px;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.b2b-awareness-content-v2 {
  text-align: left;
}

.b2b-awareness-intro {
  font-size: 17px;
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.7;
}

.b2b-awareness-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.b2b-awareness-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.b2b-awareness-icon {
  width: 32px;
  height: 32px;
  background: var(--brand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.b2b-awareness-icon svg {
  stroke: white;
}

.b2b-awareness-feature span {
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
}

.b2b-awareness-industries-v2 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 36px;
  font-size: 15px;
  color: var(--text-light);
  font-weight: 500;
}

.b2b-divider {
  color: var(--border);
}

.b2b-cta-enhanced {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  font-size: 16px;
  font-weight: 600;
}

.b2b-cta-enhanced svg {
  transition: transform 0.3s ease;
}

.b2b-cta-enhanced:hover svg {
  transform: translateX(4px);
}

.b2b-awareness-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

@media (max-width: 640px) {
  .b2b-awareness-ctas {
    flex-direction: column;
  }
  
  .b2b-awareness-ctas .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 1024px) {
  .b2b-awareness-wrapper {
    gap: 50px;
  }
  
  .b2b-stack-1,
  .b2b-stack-2 {
    width: 220px;
    height: 260px;
  }
  
  .b2b-image-stack {
    height: 380px;
  }
}

@media (max-width: 768px) {
  .b2b-awareness-section-v2 {
    padding: 80px 0;
    margin-top: 20px;
  }
  
  .b2b-awareness-wrapper {
    grid-template-columns: 1fr;
    grid-template-areas:
      "header"
      "images"
      "content";
    gap: 24px;
  }
  
  .b2b-awareness-header {
    text-align: center;
    align-self: auto;
  }
  
  .b2b-awareness-header h2 {
    margin-bottom: 0;
  }
  
  .b2b-image-stack {
    height: auto;
    display: flex;
    gap: 12px;
    justify-content: center;
  }
  
  .b2b-stack-image {
    position: relative;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
  }
  
  .b2b-stack-1,
  .b2b-stack-2 {
    width: 45%;
    height: 200px;
  }
  
  .b2b-awareness-content-v2 {
    text-align: center;
  }
  
  .b2b-awareness-features {
    grid-template-columns: 1fr;
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .b2b-awareness-industries-v2 {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .b2b-stack-1,
  .b2b-stack-2 {
    width: 48%;
    height: 200px;
  }
}

/* ============================================
   B2B CONVERSION SECTION - Homepage
   ============================================ */
.b2b-conversion-section {
  background: #f8f9fa;
  padding: 80px 0;
}

.b2b-conversion-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.b2b-conversion-badge {
  display: inline-block;
  background: var(--brand-dark);
  color: white;
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.b2b-conversion-text h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 12px;
}

.b2b-conversion-text > p {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 8px;
}

.b2b-conversion-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.b2b-conversion-list li {
  background: white;
  border: 1px solid var(--border);
  padding: 8px 16px;
  font-size: 13px;
  color: var(--text);
  font-weight: 500;
}

.b2b-conversion-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 768px) {
  .b2b-conversion-section {
    padding: 60px 0;
  }
  
  .b2b-conversion-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .b2b-conversion-list {
    justify-content: center;
  }
  
  .b2b-conversion-cta {
    align-items: center;
  }
}

/* ============================================
   MAID-FRIENDLY SECTION - COMPACT VERSION
   ============================================ */

.maid-section-compact {
  background: white;
  padding: 60px 0;
}

.maid-compact-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: center;
  max-width: 950px;
  margin: 0 auto;
  background: #f8fafb;
  border: 1px solid #e8eef2;
}

.maid-compact-image {
  position: relative;
  height: 100%;
  min-height: 320px;
}

.maid-compact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.maid-compact-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--brand-dark);
  color: white;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 14px;
}

.maid-compact-content {
  padding: 40px 48px 40px 0;
}

.maid-compact-header {
  margin-bottom: 24px;
}

.maid-compact-eyebrow {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--brand-dark);
  margin-bottom: 12px;
}

.maid-compact-header h2 {
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 12px 0;
  line-height: 1.2;
}

.maid-compact-header p {
  font-size: 14px;
  line-height: 1.6;
  color: #5a6775;
  margin: 0;
}

.maid-compact-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.maid-compact-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.maid-compact-list svg {
  flex-shrink: 0;
  color: #22c55e;
  width: 16px;
  height: 16px;
}

.maid-compact-list span {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}

/* Tablet */
@media (max-width: 900px) {
  .maid-compact-card {
    grid-template-columns: 220px 1fr;
    gap: 32px;
  }
  
  .maid-compact-image {
    min-height: 280px;
  }
  
  .maid-compact-content {
    padding: 32px 36px 32px 0;
  }
  
  .maid-compact-list {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* Mobile */
@media (max-width: 650px) {
  .maid-section-compact {
    padding: 50px 0;
  }
  
  .maid-compact-card {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 400px;
  }
  
  .maid-compact-image {
    min-height: 200px;
    max-height: 220px;
  }
  
  .maid-compact-badge {
    bottom: 10px;
    left: 10px;
    font-size: 9px;
    padding: 6px 12px;
  }
  
  .maid-compact-content {
    padding: 28px 24px;
    text-align: center;
  }
  
  .maid-compact-header {
    margin-bottom: 20px;
  }
  
  .maid-compact-header h2 {
    font-size: 20px;
  }
  
  .maid-compact-header p {
    font-size: 13px;
  }
  
  .maid-compact-list {
    grid-template-columns: 1fr 1fr;
    gap: 8px 16px;
    text-align: left;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .maid-compact-list span {
    font-size: 12px;
  }
}

/* Small Mobile */
@media (max-width: 400px) {
  .maid-compact-card {
    max-width: 100%;
  }
  
  .maid-compact-content {
    padding: 24px 20px;
  }
  
  .maid-compact-header h2 {
    font-size: 18px;
  }
  
  .maid-compact-list {
    grid-template-columns: 1fr;
    gap: 8px;
    max-width: 200px;
  }
}


/* ============================================
   OLD MAID SECTION (kept for reference)
   ============================================ */
.maid-friendly-v2 {
  display: none; /* Hidden - replaced by compact version */
  background: linear-gradient(180deg, #ffffff 0%, var(--muted) 100%);
  padding: 80px 0;
  position: relative;
}

.maid-friendly-v2-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: start;
}

/* Content Column */
.maid-friendly-v2-content {
  padding-top: 10px;
}

.maid-friendly-v2-eyebrow {
  display: inline-block;
  background: var(--brand-dark);
  color: white;
  padding: 10px 24px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.maid-friendly-v2-title {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.15;
}

.maid-friendly-v2-desc {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-light);
  margin-bottom: 0;
  max-width: 540px;
}

/* Mobile Image - Hidden on Desktop */
.maid-friendly-v2-mobile-image {
  display: none;
}

/* Feature List */
.maid-friendly-v2-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  margin-top: 28px;
  margin-bottom: 32px;
  list-style: none;
  padding: 0;
}

.maid-friendly-v2-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.maid-friendly-v2-list svg {
  flex-shrink: 0;
  color: var(--brand-dark);
  width: 18px;
  height: 18px;
}

.maid-friendly-v2-list span {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
}

/* Closing Statement */
.maid-friendly-v2-closing {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  padding: 20px 24px;
  background: white;
  border-left: 3px solid var(--brand-dark);
  margin: 0;
  font-style: italic;
  box-shadow: var(--shadow-sm);
}

/* Visual Column */
.maid-friendly-v2-visual {
  position: relative;
  align-self: stretch;
  display: flex;
  flex-direction: column;
}

.maid-friendly-v2-image-wrap {
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  flex: 1;
  min-height: 400px;
}

.maid-friendly-v2-image-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
}

/* Trust Badge - Subtle Corner Badge */
.maid-friendly-v2-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10;
}

.maid-badge-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-dark);
  border-radius: 50%;
  color: white;
}

.maid-badge-icon svg {
  width: 18px;
  height: 18px;
  color: white;
  stroke: white;
}

.maid-badge-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.maid-badge-title {
  font-family: var(--ff-ui);
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.2px;
  line-height: 1.3;
}

.maid-badge-sub {
  display: none;
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .maid-friendly-v2 {
    padding: 70px 0;
  }
  
  .maid-friendly-v2-grid {
    grid-template-columns: 1fr 340px;
    gap: 40px;
  }
  
  .maid-friendly-v2-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .maid-friendly-v2 {
    padding: 50px 0 60px;
    background: linear-gradient(180deg, #ffffff 0%, var(--muted) 50%, #ffffff 100%);
  }
  
  .maid-friendly-v2-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .maid-friendly-v2-content {
    padding-top: 0;
    text-align: center;
  }
  
  /* Hide desktop image on mobile */
  .maid-friendly-v2-visual {
    display: none;
  }
  
  /* Show mobile image */
  .maid-friendly-v2-mobile-image {
    display: block;
    position: relative;
    margin: 24px auto;
    max-width: 220px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    box-shadow: var(--shadow-md);
  }
  
  .maid-friendly-v2-mobile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
  }
  
  .maid-friendly-v2-mobile-image .maid-friendly-v2-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    right: auto;
    top: auto;
    padding: 8px 12px;
    gap: 8px;
  }
  
  .maid-friendly-v2-mobile-image .maid-badge-icon {
    width: 26px;
    height: 26px;
  }
  
  .maid-friendly-v2-mobile-image .maid-badge-icon svg {
    width: 14px;
    height: 14px;
  }
  
  .maid-friendly-v2-mobile-image .maid-badge-title {
    font-size: 10px;
  }
  
  .maid-friendly-v2-header {
    text-align: center;
  }
  
  .maid-friendly-v2-eyebrow {
    padding: 8px 18px;
    font-size: 10px;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
  }
  
  .maid-friendly-v2-title {
    font-size: 24px;
    margin-bottom: 16px;
  }
  
  .maid-friendly-v2-desc {
    font-size: 15px;
    line-height: 1.7;
  }
  
  .maid-friendly-v2-list {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 0;
    margin-bottom: 24px;
    text-align: left;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .maid-friendly-v2-list li {
    gap: 12px;
  }
  
  .maid-friendly-v2-list span {
    font-size: 14px;
  }
  
  .maid-friendly-v2-closing {
    font-size: 14px;
    padding: 18px 20px;
    text-align: left;
    max-width: 100%;
  }
}

/* Small Mobile */
@media (max-width: 400px) {
  .maid-friendly-v2-eyebrow {
    padding: 8px 16px;
    font-size: 10px;
    letter-spacing: 1.5px;
  }
  
  .maid-friendly-v2-title {
    font-size: 22px;
  }
  
  .maid-friendly-v2-desc {
    font-size: 14px;
  }
  
  .maid-friendly-v2-closing {
    padding: 16px;
  }
  
  .maid-friendly-v2-mobile-image {
    max-width: 180px;
  }
  
  .maid-friendly-v2-mobile-image .maid-friendly-v2-badge {
    padding: 6px 10px;
    gap: 6px;
  }
  
  .maid-friendly-v2-mobile-image .maid-badge-icon {
    width: 22px;
    height: 22px;
  }
  
  .maid-friendly-v2-mobile-image .maid-badge-icon svg {
    width: 12px;
    height: 12px;
  }
  
  .maid-friendly-v2-mobile-image .maid-badge-title {
    font-size: 9px;
  }
}


/* ============================================
   HOW IT WORKS SECTION - CLEAN WHITE
   ============================================ */

.how-it-works-section {
  background: white;
  padding: 60px 0;
}

.how-it-works-inner {
  max-width: 900px;
  margin: 0 auto;
}

.how-it-works-header {
  text-align: center;
  margin-bottom: 40px;
}

.how-it-works-header h3 {
  color: var(--brand-dark);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.02em;
}

.how-it-works-content {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: center;
}

.how-it-works-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.how-it-works-visual img {
  width: 100%;
  max-width: 260px;
  height: auto;
  display: block;
}

.how-it-works-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dynamics-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.dynamics-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--brand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.dynamics-icon svg {
  color: white;
  width: 22px;
  height: 22px;
}

.dynamics-content h4 {
  color: var(--brand-dark);
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 4px 0;
}

.dynamics-content p {
  color: #555;
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

.dynamics-result {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f0fdf4;
  border-left: 3px solid #22c55e;
  padding: 14px 18px;
  margin-top: 4px;
}

.dynamics-result svg {
  flex-shrink: 0;
  color: #22c55e;
  width: 18px;
  height: 18px;
}

.dynamics-result span {
  color: var(--brand-dark);
  font-size: 14px;
  font-weight: 600;
}

/* Tablet and Mobile */
@media (max-width: 800px) {
  .how-it-works-section {
    padding: 50px 0;
  }
  
  .how-it-works-content {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 480px;
    margin: 0 auto;
  }
  
  .how-it-works-visual {
    order: -1;
    max-width: 220px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .how-it-works-section {
    padding: 40px 0;
  }
  
  .how-it-works-header {
    margin-bottom: 32px;
  }
  
  .how-it-works-header h3 {
    font-size: 20px;
  }
  
  .how-it-works-visual {
    max-width: 180px;
  }
  
  .how-it-works-text {
    gap: 16px;
  }
  
  .dynamics-item {
    gap: 12px;
  }
  
  .dynamics-icon {
    width: 40px;
    height: 40px;
  }
  
  .dynamics-icon svg {
    width: 20px;
    height: 20px;
  }
  
  .dynamics-content h4 {
    font-size: 15px;
  }
  
  .dynamics-content p {
    font-size: 13px;
  }
  
  .dynamics-result {
    padding: 12px 14px;
    gap: 10px;
  }
  
  .dynamics-result span {
    font-size: 13px;
  }
}


/* ============================================
   THE POWER OF WATER - CLEAN ANNOTATED DIAGRAM
   ============================================ */

.power-of-water-section {
  background: #f8fafb;
  padding: 70px 0 80px;
  border-top: 1px solid #e8eef2;
}

.power-of-water-inner {
  max-width: 1150px;
  margin: 0 auto;
}

.power-of-water-header {
  text-align: center;
  margin-bottom: 50px;
}

.power-of-water-header h3 {
  color: var(--brand-dark);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.02em;
}

/* Diagram Layout - Three Columns */
.power-diagram-layout {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 50px;
  align-items: center;
}

/* Center Image */
.power-diagram-center {
  width: 300px;
  flex-shrink: 0;
}

.power-diagram-center img {
  width: 100%;
  height: auto;
  display: block;
}

/* Points Columns */
.power-points-column {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.power-points-left {
  text-align: right;
}

.power-points-right {
  text-align: left;
}

/* Individual Point */
.power-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.power-points-left .power-point {
  flex-direction: row-reverse;
}

.power-points-right .power-point {
  flex-direction: row;
}

/* Point Number */
.power-point-number {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-dark);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

/* Point Text */
.power-point-text h4 {
  color: var(--brand-dark);
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 3px 0;
  line-height: 1.3;
}

.power-point-text p {
  color: #5a6775;
  font-size: 12px;
  line-height: 1.5;
  margin: 0;
}

/* Tablet - Stack to 2 columns */
@media (max-width: 1050px) {
  .power-diagram-layout {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 40px 24px;
  }
  
  .power-diagram-center {
    grid-column: 1 / -1;
    grid-row: 1;
    width: 240px;
    margin: 0 auto;
  }
  
  .power-points-left,
  .power-points-right {
    text-align: left;
  }
  
  .power-points-left .power-point {
    flex-direction: row;
  }
  
  .power-points-column {
    gap: 18px;
  }
}

/* Mobile - Single Column */
@media (max-width: 650px) {
  .power-of-water-section {
    padding: 50px 0 60px;
  }
  
  .power-of-water-header {
    margin-bottom: 32px;
  }
  
  .power-of-water-header h3 {
    font-size: 22px;
  }
  
  .power-diagram-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  
  .power-diagram-center {
    width: 280px;
    max-width: 85%;
    margin: 0 auto;
  }
  
  .power-points-left,
  .power-points-right {
    gap: 16px;
  }
  
  .power-point {
    gap: 14px;
  }
  
  .power-point-number {
    width: 32px;
    height: 32px;
    font-size: 11px;
  }
  
  .power-point-text h4 {
    font-size: 14px;
    margin-bottom: 3px;
  }
  
  .power-point-text p {
    font-size: 12px;
    line-height: 1.5;
  }
}

/* Small Mobile */
@media (max-width: 400px) {
  .power-of-water-section {
    padding: 40px 0 50px;
  }
  
  .power-of-water-header h3 {
    font-size: 20px;
  }
  
  .power-diagram-center {
    width: 240px;
    max-width: 90%;
  }
  
  .power-diagram-layout {
    gap: 28px;
  }
  
  .power-points-left,
  .power-points-right {
    gap: 14px;
  }
  
  .power-point-number {
    width: 28px;
    height: 28px;
    font-size: 10px;
  }
  
  .power-point-text h4 {
    font-size: 13px;
  }
  
  .power-point-text p {
    font-size: 11px;
  }
}