/* ==========================================================================
   NEX BOOST LIGHT-THEME DESIGN SYSTEM & CUSTOM CSS
   ========================================================================== */

:root {
  /* Brand Colors */
  --primary: #93122E;
  --primary-hover: #B31842;
  --secondary: #FF6FAE;
  --secondary-hover: #FF4F99;
  --accent: #CEC3FF;
  
  --bg-light: #FFFFFF;
  --bg-cream: #FFE6F0;
  --bg-lavender: #F4EEFF;
  --bg-gradient: linear-gradient(135deg, #FFE6F0 0%, #CEC3FF 100%);
  --bg-gradient-reverse: linear-gradient(135deg, #CEC3FF 0%, #FFE6F0 100%);
  
  --text-main: #1F2937;
  --text-sub: #6B7280;
  --text-light: #FFFFFF;

  /* Mockup palette: wine headings, vivid pink accent, lavender icon chips */
  --heading-dark: #5C0F2E;
  --pink-vivid: #F4176B;
  --icon-lavender: #EFEAFE;
  --icon-violet: #7C5CE0;

  /* Primary CTA gradient — deep wine through to bright pink. Used by every
     filled pink button so they stay in sync. */
  --brand-gradient: linear-gradient(135deg,
    #7A0F26 0%,
    #93122E 30%,
    #E12359 70%,
    #D82E6F 100%);
  --brand-gradient-hover: linear-gradient(135deg,
    #93122E 0%,
    #B01840 30%,
    #F02D66 70%,
    #E8407E 100%);
  --brand-shadow: 0 8px 22px rgba(122, 15, 38, 0.30);
  --brand-shadow-hover: 0 12px 30px rgba(122, 15, 38, 0.42);
  
  --border-light: #E5E7EB;
  --border-focus: rgba(147, 18, 46, 0.4);
  
  --whatsapp-green: #25D366;
  --whatsapp-hover: #20BA5A;
  
  --error: #FF3B30;
  --success: #34C759;
  
  /* Layout */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-round: 9999px;
  
  --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-medium: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  
  --shadow-sm: 0 4px 16px rgba(147, 18, 46, 0.04);
  --shadow-md: 0 12px 36px rgba(147, 18, 46, 0.07);
  --shadow-lg: 0 24px 48px rgba(147, 18, 46, 0.1);
  --shadow-glow: 0 16px 40px rgba(147, 18, 46, 0.25);
  --shadow-premium: 0 20px 60px rgba(147, 18, 46, 0.08);
  
  /* Fonts */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Poppins', sans-serif;
}

/* ==========================================================================
   RESET & SYSTEM BASICS
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-light);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 16px;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Selection colors */
::selection {
  background-color: var(--primary);
  color: var(--text-light);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-cream);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 111, 174, 0.2);
  border-radius: var(--radius-round);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Typographic Elements */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-main);
}

p {
  color: var(--text-sub);
}

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

/* ==========================================================================
   COMMON LAYOUT & UTILITIES
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.icon-margin {
  margin-right: 8px;
}

.icon-margin-left {
  margin-left: 8px;
}

.highlight-text-pink {
  color: var(--pink-vivid);
  display: inline;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 15px;
  border-radius: var(--radius-round);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.badge-pink {
  background: rgba(244, 23, 107, 0.08);
  border: 1px solid rgba(244, 23, 107, 0.14);
  color: var(--pink-vivid);
  box-shadow: 0 2px 12px rgba(244, 23, 107, 0.08);
}

/* Filled variant — the process header uses this in the mockup. */
.badge-pink-solid {
  /* background: var(--brand-gradient); */
  /* border: none; */
  /* color: #FFFFFF; */
  /* box-shadow: var(--brand-shadow); */
  background: rgba(244, 23, 107, 0.08);
  border: 1px solid rgba(244, 23, 107, 0.14);
  color: var(--pink-vivid);
  box-shadow: 0 2px 12px rgba(244, 23, 107, 0.);
}

.badge-error {
  background: rgba(244, 23, 107, 0.09);
  border: 1px solid rgba(244, 23, 107, 0.14);
  color: var(--pink-vivid);
}

.badge-error-filled {
  background: var(--error);
  color: var(--text-light);
  border: none;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-round);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(255, 59, 48, 0.25);
  text-transform: uppercase;
  margin-bottom: 0;
}

.badge-success-light {
  background: rgba(52, 199, 89, 0.1);
  border: 1px solid rgba(52, 199, 89, 0.2);
  color: var(--success);
  font-size: 0.7rem;
  padding: 4px 10px;
  margin-bottom: 0;
}

/* Section titles */
.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 0px auto;
}

.section-title {
  font-size: 35px;
  letter-spacing: -1.2px;
  margin-bottom: 16px;
  text-align: center;
  line-height: 1.2;
  color: var(--heading-dark);
}

.section-subtitle {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  color: var(--text-sub);
  text-align: center;
  line-height: 1.7;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.text-left {
  text-align: left !important;
  /* .section-subtitle centres itself with auto margins; undo that too. */
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* A badge is inline-flex, but as a column-flex child it stretches full width. */
.problem-content > .badge {
  align-self: flex-start;
}

/* Custom Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  border-radius: var(--radius-round);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition-medium);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.btn-md {
  padding: 14px 28px;
  font-size: 0.95rem;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.05rem;
}

.btn-block {
  display: flex;
  width: 100%;
}

.btn-pink-badge {
  background: var(--brand-gradient);
  color: var(--text-light);
  box-shadow: var(--brand-shadow);
}
.btn-pink-badge:hover {
  background: var(--brand-gradient-hover);
  transform: translateY(-2px);
  box-shadow: var(--brand-shadow-hover);
}

.btn-pink {
  background: var(--brand-gradient);
  color: var(--text-light);
  box-shadow: var(--brand-shadow);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-pink:hover {
  background: var(--brand-gradient-hover);
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--brand-shadow-hover);
}

.btn-whatsapp {
  background: #FFFFFF;
  color: var(--heading-dark);
  border: 2px solid rgba(244, 23, 107, 0.3);
  box-shadow: 0 10px 30px rgba(147, 18, 46, 0.07);
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-whatsapp .fa-whatsapp {
  color: var(--pink-vivid);
  font-size: 1.25em;
}
.btn-whatsapp:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 35px rgba(18, 140, 126, 0.45);
  filter: brightness(1.05);
}

.btn-white-border {
  background: transparent;
  border: 2px solid var(--text-light);
  color: var(--text-light);
}
.btn-white-border:hover {
  background: var(--text-light);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-pink-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}
.btn-pink-outline:hover {
  background: var(--primary);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-white {
  background: var(--text-light);
  color: var(--primary);
}
.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.4);
}

.btn-white-filled {
  background: var(--text-light);
  color: var(--primary);
}
.btn-white-filled:hover {
  background: var(--bg-cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-pink-text {
  background: transparent;
  color: var(--primary);
  padding: 4px 0;
  border-radius: 0;
  position: relative;
}
.btn-pink-text::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition-fast);
}
.btn-pink-text:hover::after {
  width: 100%;
}
.btn-pink-text:hover {
  color: var(--primary-hover);
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
  z-index: 1000;
  transition: var(--transition-medium);
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  height: 70px;
}

.nav-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Supplied lockup artwork; the tagline sits under it. */
.nav-logo {
  font-family: var(--font-heading);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

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

.logo-tagline {
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 1.35px;
  color: var(--text-sub);
  margin-top: 5px;
  white-space: nowrap;
}

.logo-text-bold {
  color: var(--heading-dark);
  transition: var(--transition-fast);
}

.navbar.scrolled .logo-text-bold {
  color: var(--text-main);
}

.logo-text-accent {
  color: var(--pink-vivid);
}

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

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-sub);
  position: relative;
  padding: 8px 0;
  transition: var(--transition-fast);
}

.navbar.scrolled .nav-link {
  color: var(--text-sub);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--primary);
  border-radius: var(--radius-round);
  transition: var(--transition-fast);
  transform: translateX(-50%);
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
}

.nav-link.active::after, .nav-link:hover::after {
  width: 20px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-main);
  cursor: pointer;
  transition: var(--transition-fast);
}

.navbar.scrolled .mobile-toggle {
  color: var(--text-main);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-medium);
}

.mobile-nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--text-main);
  cursor: pointer;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.mobile-link {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-main);
}

.mobile-link:hover {
  color: var(--primary);
}

.mobile-menu-btn {
  margin-top: 24px;
  min-width: 220px;
  box-shadow: 0 10px 25px rgba(255, 111, 174, 0.35);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  padding: 140px 0 80px 0;
  background-image: url('assets/hero_bg_light_desktop.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  min-height: max(100vh, 780px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: var(--text-main);
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1.18fr;
  gap: 20px;
  align-items: center;
}

.hero-section .performance-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(147, 18, 46, 0.12);
  color: var(--primary);
  border-radius: var(--radius-round);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.hero-section .hero-title {
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  color: var(--heading-dark);
}

.hero-title-rocket {
  -webkit-text-fill-color: initial;
  font-size: 0.8em;
}

.hero-section .channel-chips {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
}

.social-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.9rem;
}

.circle-fb {
  background: #1877F2;
}

.circle-ig {
  background: linear-gradient(45deg, #F09433 0%, #E6683C 25%, #DC2743 50%, #CC2366 75%, #BC1888 100%);
}

.chip-text {
  color: var(--text-main);
}

.hero-section .chip-arrow {
  color: var(--primary);
  opacity: 1;
  font-size: 1rem;
}

.hero-section .hero-description {
  font-size: 1.15rem;
  color: var(--text-sub);
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Keep both hero CTAs on one row alongside the enlarged mascot.
   The pair needs ~519px; stock btn-lg padding overflows by ~27px. */
.hero-ctas .btn-lg {
  padding: 16px 21px;
  font-size: 0.97rem;
}

/* Hero Visual & Mascot */
.hero-visual-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mascot-img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 10;
}

/* Sized to roughly the mockup's proportion (~65% of hero height) and nudged
   left of centre so the stat cards have clear air on the right. */
.hero-mascot {
  width: 88%;
  max-width: 985px;
  margin-right: -21%;
  animation: hero-flight 4s ease-in-out infinite;
}

@keyframes hero-flight {
  0%, 100% {
    transform: translateY(0) rotate(-2deg);
    filter: drop-shadow(0 10px 15px rgba(255, 111, 174, 0.15));
  }
  50% {
    transform: translateY(-20px) rotate(3deg) scale(1.03);
    filter: drop-shadow(0 20px 25px rgba(255, 111, 174, 0.45));
  }
}

/* Floating Stat Cards & Bubbles */
.bubble {
  position: absolute;
  background: radial-gradient(circle, rgba(255, 111, 174, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  z-index: 1;
}

.bubble-1 {
  width: 250px;
  height: 250px;
  top: -30px;
  right: -20px;
}

.bubble-2 {
  width: 180px;
  height: 180px;
  bottom: 0px;
  left: -40px;
  background: radial-gradient(circle, rgba(155, 127, 232, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
}

.bubble-3 {
  width: 100px;
  height: 100px;
  top: 50%;
  right: 60%;
}

.stat-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 16px 40px rgba(147, 18, 46, 0.10);
  z-index: 20;
  transition: var(--transition-medium);
}

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

.stat-card-icon {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: var(--icon-lavender);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--icon-violet);
  font-size: 1rem;
  flex-shrink: 0;
}

.stat-trend-up {
  color: var(--pink-vivid);
  font-size: 0.8em;
  margin-left: 2px;
}

.stat-card-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stat-card-info {
  display: flex;
  flex-direction: column;
}

/* Mockup uses sentence case at normal weight, not small caps. */
.stat-card-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-sub);
  text-transform: none;
  letter-spacing: 0;
  white-space: nowrap;
}

.stat-card-value {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--heading-dark);
  line-height: 1.15;
  margin-top: 2px;
  white-space: nowrap;
}

/* Explicit box: an SVG with no width/height attrs defaults to 300x150
   intrinsic, which would blow the card open. 170/150 keeps the viewBox
   ratio so the arrow marker stays undistorted. */
.stat-sparkline {
  display: block;
  width: 170px;
  height: 38px;
  overflow: visible;
}

.stat-sparkline path {
  fill: none;
  stroke: var(--pink-vivid);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.text-green {
  color: var(--whatsapp-green) !important;
}

.stat-card-sub {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-sub);
  margin-top: 1px;
}

/* Floating Card Placements — flank the mascot, don't sit on it. */
.stat-leads {
  top: 8%;
  right: -6%;
}

.stat-roi {
  top: 42%;
  right: -22%;
}

.stat-growth-percent {
  bottom: 16%;
  left: -2%;
  padding: 14px 18px;
}

/* Float Animations */
.animate-float-slow {
  animation: float-slow 6s ease-in-out infinite;
}
.animate-float-medium {
  animation: float-medium 5s ease-in-out infinite;
}
.animate-float-fast {
  animation: float-fast 4s ease-in-out infinite;
}

@keyframes float-slow {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

@keyframes float-medium {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(-1.5deg); }
}

@keyframes float-fast {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-6px) rotate(1deg); }
}

/* ==========================================================================
   TRUST SECTION
   ========================================================================== */
/* Sits as an inset glass card lifted over the bottom of the hero. */
.trust-section {
  padding: 0 0 40px 0;
  background: transparent;
  border-bottom: none;
  position: relative;
  z-index: 50;
  margin-top: -90px;
}

.trust-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-lg);
  padding: 18px 28px;
  box-shadow: 0 18px 50px rgba(147, 18, 46, 0.08);
}

.trust-separator {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 111, 174, 0.15) 50%, transparent 100%);
  flex-shrink: 0;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 20px;
  border-radius: 14px;
  transition: var(--transition-medium);
  position: relative;
}

.trust-badge:hover {
  background: rgba(255, 111, 174, 0.03);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 111, 174, 0.06);
}

.trust-avatar-stack {
  display: flex;
  align-items: center;
}

.trust-avatar-stack .avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2.5px solid var(--bg-light);
  margin-left: -10px;
  object-fit: cover;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: var(--transition-fast);
}

.trust-badge:hover .trust-avatar-stack .avatar {
  transform: scale(1.08);
}

.trust-avatar-stack .avatar:first-child {
  margin-left: 0;
}

.trust-avatar-stack .avatar-count {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, #E91E63 100%);
  color: var(--text-light);
  font-size: 0.6rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2.5px solid var(--bg-light);
  margin-left: -10px;
  box-shadow: 0 3px 12px rgba(255, 111, 174, 0.3);
  letter-spacing: -0.3px;
}

.trust-badge-text {
  font-size: 0.82rem;
  color: var(--text-sub);
  line-height: 1.35;
  letter-spacing: 0.1px;
}

.trust-badge-text strong {
  color: var(--heading-dark);
  font-weight: 800;
  font-family: var(--font-heading);
  font-size: 0.84rem;
  display: block;
}

/* Trust Icon Boxes — color-coded */
.trust-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: var(--transition-fast);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.04);
}

.trust-badge:hover .trust-icon-box {
  transform: scale(1.1) rotate(-4deg);
}

.trust-icon-pink {
  background: linear-gradient(135deg, rgba(255, 111, 174, 0.1) 0%, rgba(255, 111, 174, 0.04) 100%);
  color: var(--primary);
  border: 1px solid rgba(255, 111, 174, 0.08);
}

.trust-icon-purple {
  background: var(--icon-lavender);
  color: var(--icon-violet);
  border: 1px solid rgba(124, 92, 224, 0.12);
}

.trust-icon-coral {
  background: linear-gradient(135deg, rgba(255, 111, 97, 0.1) 0%, rgba(255, 111, 174, 0.04) 100%);
  color: #FF6F61;
  border: 1px solid rgba(255, 111, 97, 0.08);
}

/* ==========================================================================
   PROBLEM SECTION
   ========================================================================== */
/* The stock bg_problem art is far more saturated than the mockup, which is
   near-white with only a faint pink/lavender wash. Veil it rather than
   swapping the asset, so the underlying texture still shows through. */
.problem-section {
  padding: 55px 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.60) 55%, rgba(255, 255, 255, 0.78) 100%),
    url('assets/bg_problem.png') center/cover no-repeat;
  position: relative;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
}

.problem-content {
  display: flex;
  flex-direction: column;
}

.underline-decor {
  position: relative;
  padding-bottom: 12px;
}
.underline-decor::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--pink-vivid);
  border-radius: var(--radius-round);
}

.problem-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 30px;
  margin-bottom: 24px;
}

.problem-card {
  display: flex;
  align-items: center;
  padding: 10px 22px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-md);
  gap: 20px;
  box-shadow: var(--shadow-premium);
  transition: var(--transition-medium);
}

.problem-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 111, 174, 0.2);
  box-shadow: 0 16px 36px rgba(255, 111, 174, 0.08);
  background: rgba(255, 255, 255, 0.9);
}

.problem-card-icon-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: none;
  background: rgba(244, 23, 107, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink-vivid);
  font-size: 1.35rem;
  flex-shrink: 0;
}

/* Purple chip, separated from the copy by a hairline rule (mockup). */
.problem-card-cross {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(124, 92, 224, 0.10);
  color: var(--pink-vivid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 800;
  flex-shrink: 0;
  cursor: pointer;
  transition: var(--transition-fast);
  position: relative;
  margin-left: 20px;
}

.problem-card-cross::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 34px;
  background: rgba(124, 92, 224, 0.16);
}

.problem-card:hover .problem-card-cross {
  background: var(--primary);
  color: var(--text-light);
}

.problem-card-body {
  flex-grow: 1;
}

.problem-card-body h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 1px;
  color: var(--heading-dark);
}

.problem-card-body p {
  font-size: 13px;
  color: var(--text-sub);
}

.problem-solution-callout-new {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: rgba(124, 92, 224, 0.07);
  border: 1px solid rgba(124, 92, 224, 0.12);
  border-radius: var(--radius-md);
}

/* Filled violet disc with a white bulb, per the mockup. */
.callout-bulb-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--icon-violet);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.problem-solution-callout-new p {
  font-size: 0.85rem;
  color: var(--text-sub);
}

.highlight-pink-text {
  color: var(--pink-vivid);
  font-weight: 600;
}

/* Problem Visuals New (Transparent desk bunny with floating stats) */
.problem-visual-new {
  width: 100%;
  height: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.problem-visual-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Sized for bunny_problem_desk.webp (desk scene with mug). Kept within the
   column so the mug isn't hidden behind the Ad Spend card on wide screens. */
.problem-mascot-new {
  width: 100%;
  max-width: 642px;
  height: auto;
  object-fit: contain;
  z-index: 10;
  margin-bottom: -118px;
}

/* Floating boxes */
.floating-stat-box {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: 0 10px 30px rgba(147, 18, 46, 0.04);
  z-index: 20;
}

.stat-label-tiny {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-sub);
  text-transform: none;
  letter-spacing: 0;
}

.stat-main-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 4px;
}

.stat-main-number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-main);
}

.stat-main-change {
  font-size: 0.72rem;
  font-weight: 700;
}

.sparkline-chart-area {
  margin-top: 8px;
}

.sparkline-leads-svg {
  width: 164px;
  height: 60px;
  display: block;
}

.sparkline-weeks-label {
  display: flex;
  justify-content: space-between;
  margin-top: 4px;
  font-size: 0.52rem;
  color: var(--text-sub);
  opacity: 0.7;
}

.box-leads {
  top: 5%;
  left: -20px;
  width: 248px;
}

.floating-badge-pill {
  position: absolute;
  top: 2%;
  right: -10px;
  background: #FFFFFF;
  border: 1px solid rgba(255, 111, 174, 0.08);
  border-radius: var(--radius-round);
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 25px rgba(147, 18, 46, 0.04);
  z-index: 20;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-main);
}

.badge-pill-icon {
  color: var(--primary);
  font-size: 0.95rem;
}

.box-spend {
  bottom: 63%;
  right: -52px;
  width: 200px;
}

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

.spend-action-dots {
  color: var(--text-sub);
  opacity: 0.4;
  letter-spacing: 1px;
  font-size: 0.8rem;
}

.spend-main-value {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-main);
  margin: 2px 0;
}

.spend-bottom-note {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--primary);
}

/* Floating decorations */
.deco-item {
  position: absolute;
  z-index: 5;
}

/* The desk-scene artwork bakes in its own question marks, scribble and
   falling arrow — hide the CSS duplicates so they don't double up. */
.deco-arrow-red,
.deco-question-marks,
.deco-scribble-lines {
  display: none;
}

.deco-arrow-red {
  top: 18%;
  right: 25%;
}

.red-arrow-circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 59, 48, 0.08);
  border: 1px solid rgba(255, 59, 48, 0.15);
  color: var(--error);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  transform: rotate(-45deg);
}

.deco-question-marks {
  top: 32%;
  right: 8%;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.2;
  transform: rotate(15deg);
}

.deco-scribble-lines {
  bottom: 35%;
  left: 10%;
}

.deco-fading-bars {
  bottom: 25%;
  right: -40px;
  display: flex;
  align-items: flex-end;
  gap: 4px;
  opacity: 0.18;
}

.bar-col {
  width: 4px;
  background: var(--secondary);
  border-radius: 2px;
}

.col-1 { height: 10px; }
.col-2 { height: 18px; }
.col-3 { height: 26px; }
.col-4 { height: 35px; }

.deco-doodles {
  top: 40%;
  left: 0;
}

/* Problem Footer Banner Row (New light card style) */
.problem-footer-banner-new {
  margin-top: 29px;
  background: #FFFFFF;
  border: 1px solid rgba(255, 111, 174, 0.08);
  border-radius: var(--radius-lg);
  padding: 15px 31px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 12px 35px rgba(147, 18, 46, 0.02);
}

.banner-left-side {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* The artwork supplies its own glossy pink disc, so no chip styling here. */
.banner-target-icon-box {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.banner-target-icon-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.banner-message-text {
  display: flex;
  flex-direction: column;
}

.banner-message-text strong {
  font-size: 15px;
  font-weight: 800;
  color: var(--heading-dark);
}

.banner-message-text p {
  font-size: 13px;
  color: var(--text-sub);
  margin: 5px 0 0 0;
}

.banner-message-text .highlight-pink {
  color: var(--pink-vivid);
  font-weight: 600;
}

.banner-middle-divider {
  width: 1px;
  height: 62px;
  background: rgba(124, 92, 224, 0.14);
  margin: 0 34px;
}

/* Mockup stacks the prompt above its button rather than side by side. */
.banner-right-side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.banner-prompt-text {
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--heading-dark);
  white-space: nowrap;
}

.banner-right-side .btn-sm {
  padding: 8px 18px;
  font-size: 10px;
}

/* ==========================================================================
   MEET YOUR GROWTH PARTNER
   ========================================================================== */
/* Mobile-only section — revealed in the max-width:768px block below. */
.partner-section {
  display: none;
  padding: 90px 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.58) 50%, rgba(255, 255, 255, 0.80) 100%),
    url('assets/bg_why_choose.png') center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

.partner-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 20px;
}

.partner-title {
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 3.6vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1.2px;
  color: var(--heading-dark);
  margin-bottom: 16px;
}

.partner-rule {
  display: block;
  width: 54px;
  height: 4px;
  border-radius: var(--radius-round);
  background: var(--pink-vivid);
  margin-bottom: 20px;
}

.partner-lead {
  font-size: 0.95rem;
  color: var(--text-sub);
  line-height: 1.7;
  max-width: 420px;
}

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

/* Keeps the <img> as the direct flex item despite the <picture> wrapper. */
.partner-visual picture {
  display: contents;
}

.partner-mascot {
  width: 108%;
  max-width: 520px;
  height: auto;
  object-fit: contain;
}

/* White panel holding the four pillars */
.partner-panel {
  margin-top: 42px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(244, 23, 107, 0.10);
  border-radius: 28px;
  padding: 46px 34px 38px 34px;
  text-align: center;
  position: relative;
  box-shadow: 0 18px 46px rgba(147, 18, 46, 0.06);
}

/* Star badge straddles the panel's top edge. */
.partner-panel-star {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid rgba(244, 23, 107, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink-vivid);
  font-size: 1rem;
  box-shadow: 0 8px 18px rgba(147, 18, 46, 0.08);
}

.partner-panel-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--heading-dark);
  margin-bottom: 10px;
}

.partner-panel-sub {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--heading-dark);
  line-height: 1.45;
}

.partner-panel-rule {
  display: block;
  width: 96px;
  height: 4px;
  border-radius: var(--radius-round);
  background: var(--pink-vivid);
  margin: 16px auto 32px auto;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  text-align: left;
}

.partner-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 34px 20px 18px;
  border-radius: 18px;
  position: relative;
  transition: var(--transition-medium);
}

.card-pink {
  background: linear-gradient(135deg, #FFF1F6 0%, #FFE7F0 100%);
  border: 1px solid rgba(244, 23, 107, 0.10);
}

.card-violet {
  background: linear-gradient(135deg, #F5F1FF 0%, #EDE6FF 100%);
  border: 1px solid rgba(124, 92, 224, 0.12);
}

.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(147, 18, 46, 0.07);
}

.partner-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1rem;
  flex-shrink: 0;
}

.partner-card-icon.icon-pink {
  background: linear-gradient(135deg, var(--pink-vivid) 0%, #FF5C9E 100%);
  box-shadow: 0 8px 18px rgba(244, 23, 107, 0.28);
}

.partner-card-icon.icon-violet {
  background: linear-gradient(135deg, #8A63E0 0%, #A98BF0 100%);
  box-shadow: 0 8px 18px rgba(124, 92, 224, 0.28);
}

.partner-card-body h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--heading-dark);
  margin-bottom: 5px;
}

.partner-card-body p {
  font-size: 0.78rem;
  color: var(--text-sub);
  line-height: 1.55;
}

.partner-card-arrow {
  position: absolute;
  right: 16px;
  bottom: 16px;
  font-size: 0.72rem;
  color: var(--pink-vivid);
}

.card-violet .partner-card-arrow {
  color: var(--icon-violet);
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
/* Veiled to the mockup's near-white wash (same treatment as .problem-section). */
.services-section {
  padding: 100px 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74) 0%, rgba(255, 255, 255, 0.62) 50%, rgba(255, 255, 255, 0.80) 100%),
    url('assets/bg_services.png') center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

.services-container {
  position: relative;
}

.services-title-divider {
  width: 40px;
  height: 3px;
  background: var(--primary);
  border-radius: var(--radius-round);
  margin: 12px auto 0 auto;
}

/* Background decorations */
.services-deco {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.deco-dots-topleft {
  top: 5%;
  left: 5%;
  width: 100px;
  height: 100px;
  opacity: 0.12;
  background: radial-gradient(var(--primary) 1.5px, transparent 1.5px) 0 0 / 12px 12px;
}

.deco-dots-bottomright {
  bottom: 5%;
  right: 5%;
  width: 100px;
  height: 100px;
  opacity: 0.12;
  background: radial-gradient(var(--primary) 1.5px, transparent 1.5px) 0 0 / 12px 12px;
}

.deco-blob-purple {
  top: 20%;
  left: -50px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(155, 127, 232, 0.04);
  filter: blur(30px);
}

.deco-blob-pink {
  bottom: 10%;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 111, 174, 0.04);
  filter: blur(40px);
}

.deco-squiggly-pink {
  top: 15%;
  right: 22%;
}

/* Mascot floating */
.services-mascot-flying {
    position: absolute;
    top: 59px;
    right: 1%;
    width: 178px;
    z-index: 25;
}

.services-mascot-new {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* 4-column Grid */
.services-grid-four-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
  position: relative;
  z-index: 10;
}

/* Mockup: fully centred stack — icon chip, title, copy, round arrow. */
.service-card-new {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 28px;
  padding: 38px 26px 32px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 14px 40px rgba(147, 18, 46, 0.05);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.service-card-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: transparent;
  transition: var(--transition-medium);
}

.service-card-new.card-accent-pink::before {
  background: linear-gradient(90deg, var(--primary) 0%, #FF6F61 100%);
  opacity: 0;
}

.service-card-new.card-accent-purple::before {
  background: linear-gradient(90deg, var(--secondary) 0%, #93122E 100%);
  opacity: 0;
}

.service-card-new:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 48px rgba(255, 111, 174, 0.08);
  border-color: rgba(255, 111, 174, 0.12);
  background: rgba(255, 255, 255, 0.95);
}

.service-card-new:hover::before {
  opacity: 1;
}

/* The artwork already carries its own tinted chip, so no background here. */
.service-icon-box {
  width: 84px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.service-icon-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 14px rgba(147, 18, 46, 0.16));
  transition: filter 0.35s ease;
}

.card-accent-purple .service-icon-box img {
  filter: drop-shadow(0 10px 14px rgba(124, 92, 224, 0.22));
}

.service-card-new:hover .service-icon-box img {
  filter: drop-shadow(0 14px 20px rgba(147, 18, 46, 0.24));
}

.service-card-new.card-accent-purple:hover .service-icon-box img {
  filter: drop-shadow(0 14px 20px rgba(124, 92, 224, 0.32));
}

.service-card-new:hover .service-icon-box {
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 8px 20px rgba(255, 111, 174, 0.1);
}

/* Icon box colored backgrounds */
.bg-meta-light {
  background: linear-gradient(135deg, rgba(255, 111, 174, 0.08) 0%, rgba(255, 111, 174, 0.02) 100%);
}
.bg-google-light {
  background: linear-gradient(135deg, rgba(66, 133, 244, 0.08) 0%, rgba(66, 133, 244, 0.02) 100%);
}
.bg-funnels-light {
  background: linear-gradient(135deg, rgba(255, 111, 174, 0.08) 0%, rgba(255, 111, 174, 0.02) 100%);
}
.bg-whatsapp-light {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.08) 0%, rgba(37, 211, 102, 0.02) 100%);
}

/* Brand Icon specifics */
.brand-double-icons {
  display: flex;
  gap: 6px;
  align-items: center;
}

.brand-icon-fb {
  color: #1877F2;
  font-size: 1.6rem;
}

.brand-icon-ig {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.6rem;
}

.svg-google-ads {
  width: 36px;
  height: auto;
}

.brand-icon-funnel {
  color: var(--primary);
  font-size: 1.6rem;
}

.brand-icon-wa {
  color: #25D366;
  font-size: 1.6rem;
}

.service-card-new h3 {
  font-size: 1.32rem;
  font-weight: 800;
  color: var(--heading-dark);
  line-height: 1.25;
  margin-bottom: 12px;
}

/* Sits inside the h3 as a second line, matching the mockup's
   "Meta Ads / (Facebook & Instagram)" lockup. */
.service-sub-label {
  display: block;
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--heading-dark);
  margin-top: 2px;
}

.service-card-new p {
  font-size: 0.9rem;
  color: var(--text-sub);
  line-height: 1.6;
  margin-bottom: 26px;
  flex-grow: 1;
}

/* Round arrow button that closes each card. */
.service-arrow-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.card-accent-pink .service-arrow-btn {
  background: var(--pink-vivid);
  box-shadow: 0 8px 18px rgba(244, 23, 107, 0.28);
}

.card-accent-purple .service-arrow-btn {
  background: var(--icon-violet);
  box-shadow: 0 8px 18px rgba(124, 92, 224, 0.28);
}

.service-arrow-btn:hover {
  transform: translateY(-2px) scale(1.06);
}

/* Features List inside card */
.service-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.service-features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 550;
  color: var(--text-main);
}

.service-features-list li i {
  font-size: 0.95rem;
  flex-shrink: 0;
}

.icon-pink {
  color: var(--primary);
}

.icon-purple {
  color: var(--secondary);
}

/* Footer / Learn More button styling */
.service-card-footer {
  width: 100%;
  border-top: 1px solid rgba(255, 111, 174, 0.06);
  padding-top: 20px;
  margin-top: auto;
}

.service-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-learn-more i {
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.color-pink {
  color: var(--primary);
}

.color-purple {
  color: var(--secondary);
}

.service-card-new:hover .service-learn-more i {
  transform: translateX(6px);
}

.service-card-new:hover .color-pink {
  color: #E91E63;
}

.service-card-new:hover .color-purple {
  color: #7E57C2;
}

/* Responsive Overrides */
@media (max-width: 992px) {
  .services-grid-four-cols {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-mascot-flying {
    right: 5%;
    width: 95px;
    top: -20px;
  }
  
  .success-inner-banner {
    padding: 28px 20px;
    border-radius: 24px;
    gap: 24px;
  }
  
  /* Force the content area to stack vertically */
  .inner-banner-content {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }

  .inner-banner-text {
    text-align: center;
  }

  .inner-banner-text h3 {
    font-size: 1.35rem;
  }

  .inner-banner-text p {
    max-width: 100%;
  }
  
  /* Success stories stats 2x2 grid on mobile */
  .inner-banner-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    width: 100%;
    margin-top: 0;
  }

  .inner-stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    padding: 16px 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.75);
    min-width: 0;
  }

  .inner-stat-icon {
    width: 40px;
    height: 40px;
    font-size: 0.95rem;
    margin-bottom: 2px;
  }

  .inner-stat-value {
    font-size: 1.3rem;
  }

  .inner-stat-label {
    font-size: 0.68rem;
    line-height: 1.25;
    max-width: 100%;
  }

  .success-absolute-mascot {
    display: none;
  }

  /* Pink CTA banner full-width fix */
  .success-bottom-banner-pill {
    flex-direction: column;
    align-items: stretch;
    border-radius: 24px;
    padding: 24px 20px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    gap: 16px;
  }
  .bottom-banner-text-row {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }
  .banner-title-white {
    white-space: normal;
    font-size: 1rem;
    line-height: 1.4;
  }
  .banner-desc-white {
    font-size: 0.78rem;
    line-height: 1.45;
    /* The row layout gives this a 240px flex-basis; in a column that basis
       becomes a 240px HEIGHT, leaving a tall empty band. */
    flex: 0 1 auto;
    min-width: 0;
  }
  .banner-divider-line {
    display: none;
  }
  .bottom-banner-icon {
    margin: 0 auto;
  }
  .btn-pill-white {
    justify-content: center;
    width: 100%;
  }

  .process-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .process-timeline-row {
    display: contents;
  }
  .process-arrow {
    display: none;
  }
  .process-cta-banner {
    padding: 32px 30px;
    flex-direction: column;
    align-items: stretch;
    border-radius: 24px;
    text-align: center;
    gap: 28px;
    margin-top: 40px;
  }
  .process-cta-icon-box {
    margin: 0 auto;
  }
  .process-cta-text {
    max-width: 100%;
  }
  .process-cta-benefits {
    justify-content: center;
    max-width: 400px;
    margin: 0 auto;
  }
  .process-absolute-mascot {
    display: none;
  }
  .btn-pill-pink {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .services-grid-four-cols {
    grid-template-columns: 1fr;
  }
  .services-mascot-flying {
    display: none;
  }
  .process-timeline {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .process-node-new {
    max-width: 320px;
    margin: 0 auto;
  }
  .process-cta-benefits {
    grid-template-columns: 1fr;
    max-width: 250px;
  }
  .process-cta-benefits li {
    white-space: normal;
  }

  /* Trust row mobile scaling */
  .trust-badge {
    padding: 10px 18px;
    gap: 12px;
  }

  /* Trust row mobile 2x2 grid layout */
  .trust-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0 16px;
    justify-content: center;
  }

  .trust-badge {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px 12px;
    gap: 8px;
    border-radius: 16px;
    min-height: 130px;
    justify-content: center;
    flex: none;
    width: 100%;
  }

  .trust-avatar-stack {
    margin-bottom: 4px;
    justify-content: center;
  }

  .trust-icon-box {
    margin-bottom: 4px;
  }

  .trust-badge-text {
    font-size: 0.72rem;
    line-height: 1.25;
  }

  .trust-badge-text strong {
    font-size: 0.8rem;
    margin-bottom: 1px;
  }

  /* Hero mascot: the desktop rule blows it up to ~152% with a negative right
     margin, which spills far outside the narrow wrapper. Contain it here. */
  .hero-visual-wrapper {
    min-height: 330px;
  }

  .hero-mascot {
    width: 96%;
    /* max-width: 361px; */
    /* margin-right: 0; */
    margin-top: -111px;
  }

  /* Floating cards kept, but sized and placed to sit on the mascot's empty
     corners rather than its body. */
  .hero-visual-wrapper {
    min-height: 400px;
  }

  .stat-card {
    padding: 12px 12px;
    gap: 6px;
    border-radius: 14px;
    max-width: 168px;
  }

  .stat-card-icon {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    font-size: 0.8rem;
  }
  .stat-card-label { font-size: 0.68rem; }
  .stat-card-value { font-size: 1.05rem; }
  .stat-card-sub   { font-size: 0.6rem; }

  .stat-sparkline {
    width: 120px;
    height: 26px;
  }

  /* Mascot pixels occupy rows 27-73% / cols 41-97% of the wrapper, so the top
     band, bottom band and the whole left edge are free. */
  .stat-leads {
    top: 0 !important;
    right: 207px !important;
    left: auto !important;
    bottom: auto !important;
    margin-top: 221px;
  }
  .stat-roi {
    top: 87% !important;
    left: 0 !important;
    right: auto !important;
    bottom: auto !important;
    max-width: 150px;
  }
  .stat-growth-percent {
    bottom: 0 !important;
    right: 0 !important;
    top: auto !important;
    left: auto !important;
  }

  /* Problem section floating boxes mobile optimization */
  .box-leads {
    left: 5px !important;
    width: 185px !important;
    transform: scale(0.85);
    transform-origin: left center;
  }
  .box-spend {
    right: 5px !important;
    width: 140px !important;
    transform: scale(0.85);
    transform-origin: right center;
  }
  .floating-badge-pill {
    right: 5px !important;
    transform: scale(0.85);
    transform-origin: right center;
  }
}

/* ==========================================================================
   PRICING SECTION
   ========================================================================== */
/* NOTE: this used to load bg_why_choose.png and .why-choose-section loaded
   bg_pricing.png — the two were swapped. */
.pricing-section {
  padding: 100px 0;
  background: url('assets/bg_pricing.png') center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

/* Background decorations */
.pricing-deco {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.deco-dots-left {
  top: 35%;
  left: 4%;
  width: 100px;
  height: 100px;
  opacity: 0.12;
  background: radial-gradient(var(--primary) 1.5px, transparent 1.5px) 0 0 / 12px 12px;
}

.deco-dots-right {
  top: 35%;
  right: 4%;
  width: 100px;
  height: 100px;
  opacity: 0.12;
  background: radial-gradient(var(--primary) 1.5px, transparent 1.5px) 0 0 / 12px 12px;
}

.deco-blob-purple-pricing {
  top: 15%;
  left: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(155, 127, 232, 0.05);
  filter: blur(40px);
}

.deco-blob-pink-pricing {
  bottom: 15%;
  right: -80px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(255, 111, 174, 0.05);
  filter: blur(50px);
}

/* Pricing Grid New */
.pricing-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
  position: relative;
  z-index: 10;
      padding-top: 57px;
}

.pricing-card-new {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 24px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-premium);
  transition: var(--transition-medium);
  position: relative;
}

.pricing-card-new:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 111, 174, 0.18);
  box-shadow: 0 24px 50px rgba(255, 111, 174, 0.08);
  background: rgba(255, 255, 255, 0.9);
}

.pricing-card-header-new {
  margin-bottom: 24px;
}

.pricing-icon-new {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 20px;
}

/* NOTE: --secondary is pink (#FF6FAE), so these "purple" classes used to
   render pink. They point at the violet token now. */
.icon-color-purple {
  background: var(--icon-lavender);
  color: var(--icon-violet);
}

.icon-color-pink {
  background: rgba(244, 23, 107, 0.10);
  color: var(--pink-vivid);
}

.pricing-card-new h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.5px;
  margin-bottom: 4px;
}

.plan-target {
  font-size: 0.8rem;
  color: var(--text-sub);
  font-weight: 500;
  margin-bottom: 20px;
}

.plan-price-new {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}

.price-sub-new {
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: none;
  color: var(--text-sub);
  opacity: 1;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 4px;
}

.price-value-new {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--pink-vivid);
  line-height: 1.1;
}

/* These two are used in the markup but were never defined, so the Scale
   plan's "Custom Pricing" fell back to the default colour. */
.text-purple-color {
  color: var(--icon-violet);
}

.text-pink-color {
  color: var(--pink-vivid);
}

.price-period-new {
  font-size: 0.8rem;
  color: var(--text-sub);
  font-weight: 500;
}

.pricing-features-new {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
  flex-grow: 1;
  border-top: 1px dashed rgba(255, 111, 174, 0.08);
  padding-top: -4px;
}

.pricing-features-new li {
  font-size: 0.85rem;
  color: var(--text-sub);
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Feature Checkmark Colors */
.features-color-purple li i {
  color: var(--icon-violet);
}

.features-color-pink li i {
  color: var(--pink-vivid);
}

/* Wide Button Layout with Arrow Circle */
.btn-pricing-new {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 12px 12px 24px;
  border-radius: var(--radius-round);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  transition: var(--transition-medium);
  border: none;
  cursor: pointer;
}

.btn-arrow-circle-new {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.btn-style-purple {
  background: var(--icon-lavender);
  color: var(--icon-violet);
}

.btn-style-purple .btn-arrow-circle-new {
  background: rgba(124, 92, 224, 0.16);
}

.btn-style-purple .btn-arrow-circle-new i {
  color: var(--icon-violet);
}

.btn-style-purple:hover {
  background: var(--icon-violet);
  color: #FFFFFF;
  box-shadow: 0 8px 20px rgba(124, 92, 224, 0.30);
}

.btn-style-purple:hover .btn-arrow-circle-new {
  background: rgba(255, 255, 255, 0.24);
}

.btn-style-purple:hover .btn-arrow-circle-new i {
  color: #FFFFFF;
}

.btn-style-pink {
  background: var(--brand-gradient);
  color: #FFFFFF;
  box-shadow: var(--brand-shadow);
}

.btn-style-pink .btn-arrow-circle-new i {
  color: var(--primary);
}

.btn-style-pink:hover {
  background: var(--brand-gradient-hover);
  transform: translateY(-2px);
  box-shadow: var(--brand-shadow-hover);
}

.btn-pricing-new:hover .btn-arrow-circle-new {
  transform: scale(1.08);
}

/* Growth Card Outlined Glow (Featured Card) */
.card-featured-new {
  border: 2px solid rgba(244, 23, 107, 0.35);
  transform: scale(1.03);
  box-shadow: 0 18px 44px rgba(244, 23, 107, 0.16);
}

.card-featured-new:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 26px 56px rgba(244, 23, 107, 0.24);
}

.featured-banner-new {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: var(--radius-round);
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(255, 111, 174, 0.2);
}

/* Mascot waving (Attached to right side of Scale card) */
.pricing-mascot-flying-new {
  position: absolute;
  bottom: -17px;
  right: -128px;
  width: 199px;
  z-index: 25;
  pointer-events: none;
}

.pricing-mascot-new {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Pricing Trust footer badges */
.pricing-footer-badges {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 60px;
  border-top: 1px solid rgba(255, 111, 174, 0.08);
  padding-top: 40px;
}

.pricing-badge-card {
  background: #FFFFFF;
  border: 1px solid rgba(255, 111, 174, 0.08);
  border-radius: 18px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.015);
  transition: var(--transition-medium);
}

.pricing-badge-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 111, 174, 0.2);
  box-shadow: 0 8px 20px rgba(255, 111, 174, 0.03);
}

.badge-card-icon {
  color: var(--primary);
  font-size: 0.95rem;
}

.badge-card-text {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
}

/* ==========================================================================
   WHY CHOOSE NEX BOOST
   ========================================================================== */
.why-choose-section {
  padding: 100px 0;
  background: url('assets/bg_why_choose.png') center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

/* Sits above .why-grid-four-cols (z-index 10) so the mascot reads as standing
   in front of the card row rather than behind it. */
/* Height must clear the mascot: it is ~471px tall plus a 41px bottom margin,
   and with align-items:flex-end anything shorter makes it overflow UPWARDS and
   sit on top of the section subtitle. */
.why-illustration-block {
  position: relative;
  width: 100%;
  height: 530px;
  margin-top: 28px;
  margin-bottom: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  z-index: 20;
}

.why-mascot-wrapper {
  position: relative;
  z-index: 30;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-mascot {
  width: 314px;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 30;
  margin-bottom: 67px;
}

.why-mascot-ground-line {
  width: 180px;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 111, 174, 0.4) 50%, transparent 100%);
  margin-top: -8px;
}

.why-curved-arrow-svg {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 460px;
  height: auto;
  z-index: 5;
  pointer-events: none;
}

/* Floating metrics cards */
.why-float-card {
  position: absolute;
  background: #FFFFFF;
  border: 1px solid rgba(255, 111, 174, 0.08);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 14px 34px rgba(147, 18, 46, 0.07);
  z-index: 15;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: var(--transition-medium);
}

/* Left card stacks its figures with the chart underneath. */
.why-float-card-left {
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  min-width: 170px;
}

.why-float-card-left .why-float-card-info {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.why-float-card:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 35px rgba(255, 111, 174, 0.08);
}

/* Kept clear of the card row, which now sits ~146px higher. */
.why-float-card-left {
  top: 35px;
  left: 17%;
}

.why-float-card-right {
  top: 70px;
  right: 15%;
}

.why-float-card-info {
  display: flex;
  flex-direction: column;
}

.why-float-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-sub);
  text-transform: none;
  letter-spacing: 0;
}

.why-float-value-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 2px;
}

.why-float-number {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
}

.why-float-desc {
  font-size: 0.65rem;
  color: var(--text-sub);
}

.why-mini-sparkline {
  width: 100%;
  height: 46px;
  display: block;
}

.why-float-number-large {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-main);
  margin-top: 2px;
}

.why-float-desc-green {
  font-size: 0.68rem;
  color: var(--text-sub);
  font-weight: 600;
  margin-top: 1px;
}

.why-mini-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
}

.mini-bar {
  width: 5px;
  background: var(--secondary);
  border-radius: 2px;
}

.bar-h1 { height: 12px; }
.bar-h2 { height: 20px; }
.bar-h3 { height: 28px; background: var(--primary); }

/* Floating bubbles */
/* Sits behind the mascot (z-index below .why-mascot-wrapper). */
.why-bg-barchart {
  position: absolute;
  left: 50%;
  bottom: 16%;
  transform: translateX(-30%);
  display: flex;
  align-items: flex-end;
  gap: 14px;
  height: 190px;
  width: 260px;
  z-index: 5;
  pointer-events: none;
}

.why-bg-barchart span {
  flex: 1;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0.12) 100%);
}

.why-float-bubble {
  position: absolute;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid rgba(255, 111, 174, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  box-shadow: 0 8px 20px rgba(147, 18, 46, 0.06);
  z-index: 12;
}

/* Mockup tints these: pink pie on the left, violet target on the right. */
.why-float-bubble-left {
  background: rgba(244, 23, 107, 0.10);
  border-color: rgba(244, 23, 107, 0.14);
  color: var(--pink-vivid);
}

.why-float-bubble-right {
  background: rgba(124, 92, 224, 0.12);
  border-color: rgba(124, 92, 224, 0.16);
  color: var(--icon-violet);
}

/* Positions only — colour lives in the tinted rules above; this block used to
   re-set `color` and was silently undoing them. */
.why-float-bubble-left {
  top: 170px;
  left: 6%;
}

.why-float-bubble-right {
  top: 70px;
  right: 10%;
}

/* Background blobs & dots */
.why-bg-blob {
  position: absolute;
  z-index: 1;
  filter: blur(40px);
}

.why-illustration-block .blob-purple {
  top: 20%;
  left: 10%;
  width: 180px;
  height: 180px;
  background: rgba(155, 127, 232, 0.05);
}

.why-illustration-block .blob-pink {
  bottom: 10%;
  right: 10%;
  width: 200px;
  height: 200px;
  background: rgba(255, 111, 174, 0.05);
}

.why-bg-dots {
  position: absolute;
  width: 80px;
  height: 80px;
  opacity: 0.1;
  z-index: 1;
}

.why-illustration-block .dots-left {
  top: 40%;
  left: 5%;
  background: radial-gradient(var(--primary) 1.5px, transparent 1.5px) 0 0 / 12px 12px;
}

.why-illustration-block .dots-right {
  top: 30%;
  right: 5%;
  background: radial-gradient(var(--primary) 1.5px, transparent 1.5px) 0 0 / 12px 12px;
}

/* 4-column Grid.
   The mockup leaves a wide channel between cards 2 and 3 for the mascot to
   stand in, and pulls the row up so the mascot overlaps it from the front. */
.why-grid-four-cols {
  display: grid;
  /* 90px spacer + the 24px gaps either side = a ~138px channel, matching the
     mockup, while leaving the four cards wide enough for one-line titles. */
  grid-template-columns: 1fr 1fr 90px 1fr 1fr;
  gap: 24px;
  margin-top: -146px;
  margin-bottom: 60px;
  position: relative;
  z-index: 10;
}

.why-grid-four-cols .why-card-new-design:nth-child(3) {
  grid-column: 4;
}

.why-grid-four-cols .why-card-new-design:nth-child(4) {
  grid-column: 5;
}

.why-card-new-design {
  background: #FFFFFF;
  border: 1px solid rgba(255, 111, 174, 0.06);
  border-radius: 20px;
  padding: 34px 18px 46px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 14px 34px rgba(147, 18, 46, 0.08);
  transition: var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.why-card-new-design:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 111, 174, 0.15);
  box-shadow: 0 20px 44px rgba(147, 18, 46, 0.13);
}

/* Holds the supplied 3D sphere artwork (no chrome of its own). */
.why-card-icon-art {
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  flex-shrink: 0;
}

/* drop-shadow (not box-shadow) so the glow hugs the sphere's alpha shape
   instead of a square box. Third card is the violet one. */
.why-card-icon-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 16px rgba(244, 23, 107, 0.34));
  transition: filter 0.35s ease, transform 0.35s ease;
}

.why-card-new-design:nth-child(3) .why-card-icon-art img {
  filter: drop-shadow(0 12px 16px rgba(124, 92, 224, 0.34));
}

.why-card-new-design:hover .why-card-icon-art img {
  filter: drop-shadow(0 16px 22px rgba(244, 23, 107, 0.44));
  transform: translateY(-2px);
}

.why-card-new-design:nth-child(3):hover .why-card-icon-art img {
  filter: drop-shadow(0 16px 22px rgba(124, 92, 224, 0.44));
}

/* Stand-in sphere for the one icon not yet supplied — radial shading plus a
   specular highlight so it reads like the rendered artwork beside it. */
.why-icon-sphere {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.4rem;
  position: relative;
  overflow: hidden;
}

.why-icon-sphere::after {
  content: '';
  position: absolute;
  top: 8%;
  left: 16%;
  width: 46%;
  height: 32%;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0));
}

.sphere-purple {
  background: radial-gradient(circle at 32% 26%, #A98BF0 0%, #8A63E0 45%, #6C46C8 100%);
  /* Matches the drop-shadow depth used on the image-based spheres. */
  box-shadow: 0 12px 16px rgba(124, 92, 224, 0.34);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.why-card-new-design:hover .sphere-purple {
  box-shadow: 0 16px 22px rgba(124, 92, 224, 0.44);
  transform: translateY(-2px);
}

.why-icon-sphere i {
  position: relative;
  z-index: 1;
}

.why-card-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.25rem;
  margin-bottom: 24px;
}

.bg-gradient-pink {
  background: linear-gradient(135deg, var(--primary) 0%, #FF6FAE 100%);
}

.bg-gradient-purple {
  background: linear-gradient(135deg, var(--secondary) 0%, #CEC3FF 100%);
}

.why-card-new-design h3 {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--heading-dark);
  margin-bottom: 12px;
  white-space: nowrap;
}

.why-card-new-design p {
  font-size: 0.85rem;
  color: var(--text-sub);
  line-height: 1.6;
  margin-bottom: 22px;
}

/* Mockup floats this bar above the card edge rather than flush to it. */
.why-card-line {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 46px;
  height: 3px;
  border-radius: var(--radius-round);
  transition: var(--transition-medium);
}

/* Scoped: .line-pink/.line-purple are also defined for the process nodes
   further down, and the later generic rule would otherwise win here. */
.why-card-line.line-pink {
  background: var(--pink-vivid);
}

.why-card-line.line-purple {
  background: var(--icon-violet);
}

.why-card-new-design:hover .why-card-line {
  width: 76px;
}

/* Bottom Stats badges */
/* Mockup: one white panel with hairline dividers, not four separate cards. */
.why-counter-badges-row {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin-top: 40px;
  background: #FFFFFF;
  border: 1px solid rgba(255, 111, 174, 0.08);
  border-radius: var(--radius-lg);
  padding: 26px 20px;
  box-shadow: 0 14px 40px rgba(147, 18, 46, 0.05);
}

.why-counter-badge {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 6px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: none;
  flex-grow: 1;
  flex-basis: 200px;
  transition: var(--transition-medium);
  position: relative;
}

.why-counter-badge + .why-counter-badge::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 44px;
  background: rgba(124, 92, 224, 0.14);
}

/* First two stats read pink, last two purple (mockup). */
.why-counter-badge:nth-child(n+3) .counter-badge-icon-box {
  background: rgba(124, 92, 224, 0.12);
  color: var(--icon-violet);
}

.counter-badge-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(244, 23, 107, 0.10);
  color: var(--pink-vivid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.counter-badge-text-box {
  display: flex;
  flex-direction: column;
}

.counter-number-new {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
}

.counter-label-new {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-sub);
  margin-top: 2px;
}

/* ==========================================================================
   SUCCESS STORIES
   ========================================================================== */
.success-section {
  padding: 100px 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74) 0%, rgba(255, 255, 255, 0.60) 50%, rgba(255, 255, 255, 0.78) 100%),
    url('assets/bg_success.png') center/cover no-repeat;
}

.success-grid-header {
  border-bottom: 2px solid var(--border-light);
  padding-bottom: 12px;
  margin-bottom: 30px;
}

.success-grid-title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--text-main);
  text-transform: uppercase;
}

.success-stories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.story-card {
  background: var(--bg-light);
  border: 1.5px solid rgba(229, 231, 235, 0.8);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(147, 18, 46, 0.03);
  display: flex;
  flex-direction: column;
  transition: var(--transition-medium);
}

.story-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(147, 18, 46, 0.08);
  border-color: rgba(255, 111, 174, 0.25);
}

/* Rounded photo inset from the card edges, with room for the category pill
   to sit over its lower-left corner (mockup). */
.story-image {
  position: relative;
  width: calc(100% - 28px);
  height: 165px;
  margin: 14px 14px 0 14px;
  border-radius: 16px;
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.story-card:hover .story-image img {
  transform: scale(1.06);
}

/* Category Badge Pills - Inside Body above Title */
/* Lifted so it overlaps the bottom of the photo above it. */
.story-category-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 20px;
  font-family: var(--font-heading);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  width: fit-content;
  text-transform: uppercase;
  position: relative;
  margin-top: -32px;
  margin-bottom: 14px;
  box-shadow: 0 6px 16px rgba(147, 18, 46, 0.12);
  z-index: 2;
}

.category-real-estate-pill {
  background: #FFE6F0;
  color: #93122E;
}

.category-commercial-pill {
  background: #F4EEFF;
  color: #7C3AED;
}

.category-interior-pill {
  background: #FFE6F0;
  color: #FF6FAE;
}

.category-education-pill {
  background: #F4EEFF;
  color: #7C3AED;
}

.story-body {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.story-body h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 6px;
  line-height: 1.35;
}

.story-body p {
  font-size: 0.76rem;
  color: var(--text-sub);
  margin-bottom: 18px;
  line-height: 1.45;
  flex-grow: 1;
}

/* Rounded metrics grid boxes */
/* Mockup shows these on the plain card with hairline separators, not a
   tinted box, and with a rule above the row. */
.story-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 16px 0 4px 0;
  border-radius: 0;
  margin-bottom: 12px;
  border: none;
  border-top: 1px solid rgba(147, 18, 46, 0.08);
}

.bg-blush-box,
.bg-lavender-box {
  background: transparent;
}

.story-metric + .story-metric {
  border-left: 1px solid rgba(147, 18, 46, 0.08);
}

.story-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.metric-value {
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 800;
}

.color-maroon { color: var(--pink-vivid); }
.color-purple { color: var(--icon-violet); }
.color-pink { color: var(--pink-vivid); }

.metric-label {
  font-size: 0.66rem;
  font-weight: 500;
  color: var(--text-sub);
  text-transform: none;
  margin-top: 4px;
  line-height: 1.3;
}

/* Centered Button Links at bottom of card */
.story-link-wrapper {
  display: flex;
  justify-content: center;
  margin-top: auto;
  width: 100%;
}

.story-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  transition: var(--transition-fast);
}

.story-link-btn .arrow-circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: #FFFFFF;
  transition: var(--transition-fast);
}

.color-maroon-btn {
  color: #93122E;
}
.color-maroon-btn .arrow-circle {
  background: #93122E;
}
.color-maroon-btn:hover {
  color: #B31842;
}
.color-maroon-btn:hover .arrow-circle {
  background: #B31842;
  transform: translateX(2px);
}

.color-purple-btn {
  color: #7C3AED;
}
.color-purple-btn .arrow-circle {
  background: #7C3AED;
}
.color-purple-btn:hover {
  color: #5B21B6;
}
.color-purple-btn:hover .arrow-circle {
  background: #5B21B6;
  transform: translateX(2px);
}

.color-pink-btn {
  color: #FF6FAE;
}
.color-pink-btn .arrow-circle {
  background: #FF6FAE;
}
.color-pink-btn:hover {
  color: #FF4F99;
}
.color-pink-btn:hover .arrow-circle {
  background: #FF4F99;
  transform: translateX(2px);
}

/* Centered Header Lines for Section title */
.success-stories-header-new {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  width: 100%;
}

.success-header-line {
  flex-grow: 0.05;
  height: 1px;
  background: rgba(147, 18, 46, 0.15);
  min-width: 40px;
}

.success-header-title {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Inner Callout Banner */
.success-inner-banner {
  background: linear-gradient(135deg, rgba(255, 230, 240, 0.85) 0%, rgba(206, 195, 255, 0.45) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 32px;
  padding: 40px 180px 40px 40px; /* Large padding-right for the overlapping mascot */
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  box-shadow: 0 20px 60px rgba(147, 18, 46, 0.08);
}

.inner-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.inner-banner-text h3 {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.25;
  margin-bottom: 8px;
}

.inner-banner-text p {
  font-size: 0.88rem;
  color: var(--text-sub);
  line-height: 1.5;
  max-width: 280px;
}

.inner-banner-stats {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}

.inner-stat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  min-width: 100px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.inner-stat-box:hover {
  transform: translateY(-5px);
}

.inner-stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-bottom: 4px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.inner-stat-box:hover .inner-stat-icon {
  transform: scale(1.1) rotate(5deg);
}

.bg-pink-circle {
  background: linear-gradient(135deg, rgba(255, 111, 174, 0.12) 0%, rgba(255, 111, 174, 0.04) 100%);
  color: var(--primary);
  border: 1px solid rgba(255, 111, 174, 0.08);
}

.bg-purple-circle {
  background: linear-gradient(135deg, rgba(155, 127, 232, 0.15) 0%, rgba(155, 127, 232, 0.04) 100%);
  color: var(--secondary);
  border: 1px solid rgba(155, 127, 232, 0.08);
}

.inner-stat-value {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
}

.inner-stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-sub);
  line-height: 1.3;
  max-width: 110px;
}

/* Success Bottom Banner CTA (Pill layout) */
.success-bottom-banner-pill {
  background: linear-gradient(90deg,
    #7A0F26 0%,
    #93122E 30%,
    #E12359 70%,
    #D82E6F 100%);
  border-radius: 50px;
  padding: 14px 28px 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  /* Must NOT wrap: the button has to stay on the right. Only the text row
     inside it wraps. Below 993px a media query switches this to a column. */
  flex-wrap: nowrap;
  color: var(--text-light);
  box-shadow: var(--brand-shadow);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.success-bottom-banner-pill:hover {
  box-shadow: var(--brand-shadow-hover);
}

.bottom-banner-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

/* Wraps instead of squeezing: without a min-width the description column
   collapsed to ~100px at tablet widths and stacked into five lines. */
.bottom-banner-text-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-grow: 1;
  flex-wrap: wrap;
  min-width: 0;
}

.banner-title-white {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
}

.banner-title-white .yellow-text {
  color: #FFEB3B;
  font-weight: 800;
}

.banner-divider-line {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.25);
}

.banner-desc-white {
  font-size: 0.8rem;
  opacity: 0.95;
  font-weight: 500;
  line-height: 1.4;
}

.btn-pill-white {
  background: #FFFFFF;
  color: var(--primary);
  border-radius: 50px;
  padding: 10px 24px;
  font-weight: 700;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.btn-pill-white i {
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

.btn-pill-white:hover {
  background: #FFE6F0;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 255, 255, 0.25);
  color: #D81B60;
}

.btn-pill-white:hover i {
  transform: translateX(4px);
}

/* Absolute Overlapping Mascot */
.success-absolute-mascot {
  position: absolute;
  right: -25px;
  bottom: -5px;
  width: 160px;
  height: auto;
  z-index: 20;
  pointer-events: none;
}

/* ==========================================================================
   WHO WE HELP
   ========================================================================== */
.who-help-section {
  padding: 100px 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.64) 50%, rgba(255, 255, 255, 0.82) 100%),
    url('assets/bg_services.png') center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

.who-help-title-underline {
  width: 84px;
  height: 4px;
  border-radius: var(--radius-round);
  background: var(--pink-vivid);
  margin: 14px auto 0 auto;
}

/* Two cards with the mascot standing in the gap between them. */
.who-help-grid {
  display: grid;
  grid-template-columns: 1fr 210px 1fr;
  align-items: stretch;
  margin-top: 54px;
  position: relative;
}

/* overflow stays visible so the chip can sit half outside the top edge;
   the scene art is inset instead of bleeding, so nothing spills. */
.who-help-card {
  position: relative;
  border-radius: 26px;
  padding: 34px 30px 30px 30px;
  display: flex;
  flex-direction: column;
  min-height: 340px;
}

.who-card-b2b {
  background: linear-gradient(135deg, #FFF0F6 0%, #FFE3EF 100%);
  border: 1px solid rgba(244, 23, 107, 0.14);
}

.who-card-b2c {
  background: linear-gradient(135deg, #F4F0FF 0%, #EAE2FF 100%);
  border: 1px solid rgba(124, 92, 224, 0.16);
}

/* Chip sits half outside the card's top edge, as in the mockup. */
.who-card-chip {
  position: absolute;
  top: -24px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.2rem;
  z-index: 3;
}

.who-card-b2b .who-card-chip { left: 34px; }
.who-card-b2c .who-card-chip { right: 34px; }

.chip-pink {
  background: linear-gradient(135deg, var(--pink-vivid) 0%, #FF5C9E 100%);
  box-shadow: 0 10px 22px rgba(244, 23, 107, 0.30);
}

.chip-purple {
  background: linear-gradient(135deg, #8A63E0 0%, #A98BF0 100%);
  box-shadow: 0 10px 22px rgba(124, 92, 224, 0.30);
}

.who-help-card h3 {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.who-card-tag {
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: -1px;
}

.who-card-word {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--heading-dark);
  margin-top: 2px;
}

.who-card-rule {
  display: block;
  width: 46px;
  height: 3px;
  border-radius: var(--radius-round);
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.rule-pink { background: var(--pink-vivid); }
.rule-purple { background: var(--icon-violet); }

.who-card-body {
  position: relative;
  z-index: 2;
  max-width: 58%;
}

.who-help-card p {
  font-size: 0.85rem;
  color: var(--text-sub);
  line-height: 1.6;
  margin-bottom: 18px;
}

.who-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.who-card-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--heading-dark);
}

.list-pink li i { color: var(--pink-vivid); }
.list-purple li i { color: var(--icon-violet); }

/* Scene artwork anchored to the card's outer bottom corner. */
.who-card-art {
  position: absolute;
  bottom: 8px;
  width: 56%;
  height: auto;
  object-fit: contain;
  z-index: 1;
  pointer-events: none;
}

/* Both scenes sit on the right of their card so they clear the copy,
   which is constrained to the left 58%. */
.who-card-b2b .who-card-art { right: 8px; }
.who-card-b2c .who-card-art { right: 8px; }

.who-help-mascot {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  z-index: 5;
}

/* Keeps the <img> as the direct flex item so its sizing rules still apply. */
.who-help-mascot picture {
  display: contents;
}

.who-mascot-img {
  width: 132%;
  max-width: 278px;
  height: auto;
  object-fit: contain;
  margin-bottom: -10px;
}

/* Closing bar */
.who-help-cta-bar {
  margin-top: 34px;
  background: #FFFFFF;
  border: 1px solid rgba(244, 23, 107, 0.10);
  border-radius: var(--radius-lg);
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  box-shadow: 0 14px 40px rgba(147, 18, 46, 0.05);
}

.who-help-cta-text {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--heading-dark);
}

/* Reassurance chips */
.who-help-chips {
  margin-top: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 46px;
  flex-wrap: wrap;
}

.who-chip {
  display: flex;
  align-items: center;
  gap: 14px;
}

.who-chip-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1rem;
  flex-shrink: 0;
}

.who-chip-text {
  display: flex;
  flex-direction: column;
  font-size: 0.78rem;
  color: var(--text-sub);
  line-height: 1.4;
}

.who-chip-text strong {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--heading-dark);
}

/* ==========================================================================
   GROWTH PROCESS
   ========================================================================== */
.process-section {
  padding: 100px 0 40px 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.58) 50%, rgba(255, 255, 255, 0.76) 100%),
    url('assets/bg_success.png') center/cover no-repeat;
}

.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 50px;
  margin-bottom: 50px;
  position: relative;
  z-index: 10;
}

.process-timeline-row {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}

.process-node-new {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  padding: 32px 14px 22px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  /* Was 0.02 alpha — effectively invisible. */
  box-shadow: 0 14px 34px rgba(147, 18, 46, 0.08);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  flex: 1;
  min-height: 310px; /* Tall vertical cards! */
  min-width: 0;      /* Lets them scale down cleanly in flex row */
}

.process-node-new:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(255, 111, 174, 0.12);
  border-color: rgba(255, 111, 174, 0.25);
  background: rgba(255, 255, 255, 0.95);
}

.node-number-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  background: var(--pink-vivid);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  box-shadow: 0 4px 10px rgba(255, 111, 174, 0.2);
  border: 2px solid #FFFFFF;
}

/* BIG circular icon bubbles! */
/* Soft tinted disc behind each step icon, per the mockup. */
.node-icon-art {
  width: 84px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0 18px 0;
  flex-shrink: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 45%, rgba(244, 23, 107, 0.14) 0%, rgba(244, 23, 107, 0.05) 70%);
  padding: 18px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Monitor & Analyze / Optimize & Improve read violet in the mockup.
   Driven by a class, not :nth-of-type — the arrow divs between cards
   throw sibling counting off. */
.node-accent-purple .node-icon-art {
  background: radial-gradient(circle at 50% 45%, rgba(124, 92, 224, 0.16) 0%, rgba(124, 92, 224, 0.05) 70%);
}

/* These two use pre-recoloured artwork rather than a hue-rotate filter —
   CSS hue-rotate is a matrix approximation and pushed the pink toward blue. */
.node-accent-purple .node-icon-art img {
  filter: drop-shadow(0 9px 13px rgba(124, 92, 224, 0.26));
}

.process-node-new.node-accent-purple:hover .node-icon-art img {
  filter: drop-shadow(0 13px 18px rgba(124, 92, 224, 0.36));
}

.node-accent-purple .node-number-badge {
  background: var(--icon-violet);
}

.node-icon-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 9px 13px rgba(244, 23, 107, 0.26));
  transition: filter 0.35s ease;
}

.process-node-new:hover .node-icon-art img {
  filter: drop-shadow(0 13px 18px rgba(244, 23, 107, 0.36));
}

.process-node-new:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(147, 18, 46, 0.13);
}

.process-node-new:hover .node-icon-art {
  transform: scale(1.08);
}

.node-icon-circle {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem; /* Big icons! */
  margin: 6px 0 16px 0;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-node-new:hover .node-icon-circle {
  transform: scale(1.1) rotate(8deg);
}

.bg-pink-icon {
  background: linear-gradient(135deg, rgba(255, 111, 174, 0.12) 0%, rgba(255, 111, 174, 0.04) 100%);
  color: var(--primary);
  border: 1px solid rgba(255, 111, 174, 0.08);
}

.bg-purple-icon {
  background: linear-gradient(135deg, rgba(206, 195, 255, 0.25) 0%, rgba(206, 195, 255, 0.06) 100%);
  color: #7C3AED;
  border: 1px solid rgba(206, 195, 255, 0.12);
}

.process-node-new h3 {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--heading-dark);
  margin-bottom: 8px;
  line-height: 1.35;
}

.process-node-new p {
  font-size: 0.68rem;
  color: var(--text-sub);
  line-height: 1.5;
  margin-bottom: 14px;
  flex-grow: 1;
}

.node-bottom-line {
  width: 32px;
  height: 3px;
  border-radius: 2px;
}

.node-bottom-line.line-pink {
  background: var(--pink-vivid);
}

.node-bottom-line.line-purple {
  background: var(--icon-violet);
}

.process-arrow {
  color: var(--pink-vivid);
  font-size: 0.95rem;
  opacity: 0.8;
  align-self: center;
  margin-top: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
}

/* Pre-footer Callout Banner */
/* Mockup keeps this a soft pink wash, not a pink-to-lavender gradient. */
.process-cta-banner {
  background: linear-gradient(135deg, rgba(255, 235, 244, 0.95) 0%, rgba(255, 224, 238, 0.85) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 32px;
  padding: 36px 123px 36px 40px; /* Large padding-right for overlapping mascot */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  box-shadow: 0 20px 60px rgba(147, 18, 46, 0.08);
  margin-top: 60px;
}

.process-cta-icon-box {
  flex-shrink: 0;
  background: #FFFFFF;
  border-radius: 20px;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(147, 18, 46, 0.04);
  border: 1.5px solid rgba(255, 255, 255, 0.8);
}

.process-cta-icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.process-cta-icon {
  color: var(--pink-vivid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.process-cta-text {
  max-width: 240px;
}

.process-cta-text h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--heading-dark);
  line-height: 1.25;
  margin-bottom: 8px;
}

.process-cta-text p {
  font-size: 0.78rem;
  color: var(--text-sub);
  line-height: 1.4;
}

.process-cta-checklist {
  flex-grow: 1;
}

.process-cta-benefits {
  display: grid;
  grid-template-columns: auto auto;
  gap: 12px 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.process-cta-benefits li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-main);
  white-space: nowrap;
}

.process-cta-benefits li i {
  color: var(--pink-vivid);
  font-size: 1rem;
}

.process-cta-action {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.btn-pill-pink {
  background: var(--brand-gradient);
  color: #FFFFFF;
  border-radius: 50px;
  padding: 12px 28px;
  font-weight: 700;
  font-size: 0.82rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--brand-shadow);
}

/* Mockup seats the arrow in a white disc at the end of the pill. */
.btn-pill-pink i {
  font-size: 0.72rem;
  transition: all 0.3s ease;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 4px;
}

.btn-pill-pink:hover {
  background: var(--brand-gradient-hover);
  transform: translateY(-2px);
  box-shadow: var(--brand-shadow-hover);
}

.btn-pill-pink:hover i {
  transform: translateX(4px);
}

.process-cta-subtext {
  font-size: 0.7rem;
  color: var(--text-sub);
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
}

.process-cta-subtext i {
  color: var(--primary);
}

.process-absolute-mascot {
  position: absolute;
  right: -46px;
  bottom: -18px;
  width: 221px;
  height: auto;
  z-index: 20;
  pointer-events: none;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
  padding: 100px 0;
  background: url('assets/bg_services.png') center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

.testimonials-slider-wrapper {
  position: relative;
  width: 100%;
  margin-top: 50px;
  display: flex;
  align-items: center;
}

.testimonials-slider-container {
  overflow: hidden;
  width: 100%;
  padding: 10px 0; /* Add padding to prevent hover scale clipping */
}

.testimonials-track {
  display: flex;
  gap: 30px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 20px) !important; /* 3 cards on desktop view */
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: 0 10px 30px rgba(147, 18, 46, 0.015);
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  box-sizing: border-box;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  opacity: 0.85;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(255, 111, 174, 0.08);
  border-color: rgba(255, 111, 174, 0.18);
  background: rgba(255, 255, 255, 0.95);
}

.quote-icon-bg {
  position: absolute;
  right: 20px;
  bottom: 20px;
  font-size: 5rem;
  color: rgba(255, 111, 174, 0.03);
  pointer-events: none;
  z-index: 1;
}

.rating-stars {
  color: #FFB300;
  font-size: 0.85rem;
  margin-bottom: 18px;
  display: flex;
  gap: 4px;
}

.testimonial-text {
  font-size: 0.9rem;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 24px;
  font-weight: 500;
  position: relative;
  z-index: 2;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 2;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 111, 174, 0.1) 0%, rgba(155, 127, 232, 0.1) 100%);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  border: 1px solid rgba(255, 111, 174, 0.12);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.author-info h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 2px;
}

.author-info p {
  font-size: 0.72rem;
  color: var(--text-sub);
  font-weight: 600;
}

/* Testimonials Slider Arrows and Dots */
.slider-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 111, 174, 0.12);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  box-shadow: 0 4px 14px rgba(147, 18, 46, 0.05);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.slider-arrow:hover {
  background: var(--primary);
  color: #FFFFFF;
  border-color: var(--primary);
  box-shadow: 0 8px 20px rgba(255, 111, 174, 0.25);
  transform: translateY(-50%) scale(1.05);
}

.slider-arrow:disabled {
  opacity: 0.25;
  cursor: not-allowed;
  transform: translateY(-50%) scale(1);
  box-shadow: none;
}

.prev-btn {
  left: -24px;
}

.next-btn {
  right: -24px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 111, 174, 0.15);
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0;
}

.slider-dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--primary);
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-section {
  padding: 100px 0;
  background: url('assets/bg_contact.png') center/cover no-repeat;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-sub-text {
  font-size: 1.05rem;
  color: var(--text-sub);
  margin-bottom: 30px;
}

.benefit-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.benefit-checklist li {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 16px;
}

.checklist-bullet {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 111, 174, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.closing-badge {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-sub);
  display: inline-flex;
  align-items: center;
}

/* Form Card wrapper */
.contact-form-wrapper {
  position: relative;
  width: 100%;
}

.contact-card {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.contact-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 0.85rem;
  color: var(--text-sub);
  margin-bottom: 30px;
}

/* Forms */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.input-wrapper {
  position: relative;
  width: 100%;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
  width: 100%;
  padding: 15px 16px 15px 48px;
  border: 1px solid transparent;
  background: #F4F1FA;
  border-radius: 14px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-main);
  transition: var(--transition-fast);
  outline: none;
}

.input-wrapper input::placeholder,
.input-wrapper textarea::placeholder {
  color: #9B96A8;
}

.input-wrapper select {
  appearance: none;
  cursor: pointer;
}

.input-wrapper textarea {
  resize: none;
}

.input-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 18px;
  color: var(--icon-violet);
  font-size: 1rem;
}

.input-icon-top {
  top: 18px;
  transform: none;
}

/* Custom caret for the service <select> (native arrow is hidden). */
.select-caret {
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  color: var(--icon-violet);
  font-size: 0.8rem;
  pointer-events: none;
}

.input-wrapper select {
  padding-right: 42px;
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
  border-color: rgba(124, 92, 224, 0.4);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(124, 92, 224, 0.12);
}

/* Success Overlay */
.form-success-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-light);
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-medium);
}

.form-success-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.success-animation-icon {
  font-size: 3.5rem;
  color: var(--success);
  margin-bottom: 20px;
  animation: scale-pop 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes scale-pop {
  0% { transform: scale(0.5); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.form-success-overlay h4 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.form-success-overlay p {
  font-size: 0.85rem;
  color: var(--text-sub);
  margin-bottom: 24px;
  line-height: 1.5;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
/* Slim disclaimer strip that replaced the old multi-column footer. */
.site-disclaimer {
  background: #FFFFFF;
  border-top: 1px solid rgba(244, 23, 107, 0.12);
  padding: 26px 0 22px 0;
  text-align: center;
}

.disclaimer-text {
  font-size: 0.76rem;
  line-height: 1.65;
  color: var(--text-sub);
  max-width: 780px;
  margin: 0 auto;
}

.disclaimer-text strong {
  color: var(--heading-dark);
  font-weight: 700;
}

.disclaimer-copy {
  font-size: 0.74rem;
  color: var(--text-sub);
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(147, 18, 46, 0.07);
  display: inline-block;
}

.site-footer {
  background: linear-gradient(135deg, var(--text-main) 0%, #1F2937 100%);
  padding: 60px 0 30px 0;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  overflow: hidden;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr 1fr;
  gap: 50px;
  align-items: flex-start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand .footer-logo {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-light);
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.footer-socials a:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

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

.links-column h4 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-light);
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.links-column a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.links-column a:hover {
  color: var(--primary-hover);
  transform: translateX(3px);
}

.footer-mascot-area {
  display: flex;
  justify-content: flex-end;
}

.footer-mascot {
  width: 100%;
  max-width: 140px;
  animation: float-slow 5s ease-in-out infinite;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.copyright {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ==========================================================================
   RESPONSIVENESS (MEDIA QUERIES)
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-section {
    display: block;
    min-height: auto;
    padding: 120px 0 60px 0;
  }

  .pricing-mascot-flying-new {
    display: none;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .channel-chips {
    justify-content: center;
  }
  
  .hero-ctas {
    justify-content: center;
  }
  
  .hero-visual {
    margin-top: 20px;
  }
  
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .problem-visual {
    order: -1;
  }
  
  /* Drop the mascot channel and the overlap below desktop widths. */
  .why-grid-four-cols {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 30px;
  }

  .why-grid-four-cols .why-card-new-design:nth-child(3),
  .why-grid-four-cols .why-card-new-design:nth-child(4) {
    grid-column: auto;
  }

  .why-float-card-left {
    left: 10%;
  }
  
  .why-float-card-right {
    right: 8%;
  }
  
  .why-float-bubble {
    display: none;
  }
  
  .success-stories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .footer-top {
    grid-template-columns: 1.2fr 2fr;
  }
  
  .footer-mascot-area {
    display: none;
  }

  /* === TESTIMONIALS SECTION TABLET === */
  .testimonial-card {
    flex: 0 0 calc(50% - 15px) !important; /* 2 cards on tablet view */
  }
}


@media (max-width: 768px) {
  .hero-section {
    background-image: url('assets/hero_bg_light_mobile.webp');
    padding: 120px 0 60px 0;
  }

  .navbar {
    height: 70px;
  }

  /* Global section padding on mobile for cleaner spacing alignment.
     Pricing / who-we-help / success / testimonials were still on the 100px
     desktop padding, which left a dead white band between sections. */
  .problem-section,
  .services-section,
  .pricing-section,
  .why-choose-section,
  .who-help-section,
  .success-section,
  .success-stories-section,
  .testimonials-section,
  .process-section,
  .contact-section {
    padding: 60px 0;
  }

  /* Portrait per-section artwork so each band reads as its own section.
     Sized 100% 100% rather than `cover`: these sections run 1400-2800px tall,
     and `cover` would scale the 820x1457 art by height and crop away the
     coloured edges, leaving only its pale centre — which is why consecutive
     sections still looked like one flat white run. */
  .problem-section,
  .services-section,
  .pricing-section,
  .why-choose-section,
  .who-help-section,
  .process-section,
  .success-section,
  .testimonials-section {
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
  }

  .problem-section      { background-image: url('assets/bg_mob_problem.webp'); }
  .services-section     { background-image: url('assets/bg_mob_services.webp'); }
  .pricing-section      { background-image: url('assets/bg_mob_pricing.webp'); }
  .why-choose-section   { background-image: url('assets/bg_mob_why_choose.webp'); }
  .who-help-section     { background-image: url('assets/bg_mob_who_we_help.webp'); }
  .process-section      { background-image: url('assets/bg_mob_process.webp'); }
  .success-section      { background-image: url('assets/bg_mob_success.webp'); }
  .testimonials-section { background-image: url('assets/bg_mob_testimonials.webp'); }

  /* Problem mascot scaling and spacing optimization on mobile */
  .problem-visual-new {
    height: 280px;
  }
  .problem-mascot-new {
    max-height: 110%;
    margin-bottom: -273px;
  }

  /* Growth Partner: keeps the two-up intro from the mockup, with the rocket
     bleeding off the right edge. The panel's grid stays 2x2. */
  .partner-section {
    display: block;
    padding: 60px 0;
    background: url('assets/bg_mob_growth_partner.webp') center/100% 100% no-repeat;
  }

  .partner-intro {
    grid-template-columns: 1.05fr 1fr;
    gap: 0;
    align-items: start;
  }

  .partner-title {
    font-size: 2rem;
    letter-spacing: -1px;
  }

  .partner-lead {
    font-size: 0.86rem;
  }

  .partner-mascot {
    width: 104%;
    max-width: none;
    margin-right: 7%;
    margin-top: 6px;
  }

  .partner-panel {
    margin-top: 26px;
    padding: 40px 18px 26px 18px;
    border-radius: 22px;
  }

  .partner-panel-title { font-size: 1.3rem; }
  .partner-panel-sub   { font-size: 1rem; }
  .partner-panel-rule  { margin-bottom: 24px; }

  .partner-grid {
    gap: 12px;
  }

  .partner-card {
    flex-direction: column;
    gap: 10px;
    padding: 16px 14px 26px 14px;
    border-radius: 16px;
  }

  .partner-card-icon {
    width: 38px;
    height: 38px;
    font-size: 0.88rem;
  }

  .partner-card-body h4 { font-size: 0.86rem; }
  .partner-card-body p  { font-size: 0.7rem; }

  .partner-card-arrow {
    right: 12px;
    bottom: 12px;
  }

  /* Who We Help: single column, mascot between the two cards. */
  .who-help-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .who-help-card {
    min-height: 0;
    padding: 34px 24px 220px 24px;
  }

  .who-card-body {
    max-width: 100%;
  }

  .who-card-art {
    width: 82%;
    right: auto !important;
    left: 50% !important;
    transform: translateX(-50%);
  }

  .who-mascot-img {
    width: 62%;
    max-width: 260px;
    margin-bottom: 0;
  }

  .who-help-cta-bar {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .who-help-chips {
    gap: 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  /* Service card mobile optimization for a premium layout */
  .service-card-new {
    padding: 28px 20px 24px 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 30px rgba(147, 18, 46, 0.015);
  }

  /* Make the top colorful border always visible on mobile */
  .service-card-new::before {
    opacity: 1 !important;
  }

  /* Add subtle border glow matching theme on mobile */
  .service-card-new.card-accent-pink {
    border: 1px solid rgba(255, 111, 174, 0.12);
  }

  .service-card-new.card-accent-purple {
    border: 1px solid rgba(155, 127, 232, 0.15);
  }

  /* Compact spacing for card contents */
  .service-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    margin-bottom: 20px;
  }

  .service-card-new h3 {
    font-size: 1.15rem;
    margin-bottom: 4px;
  }

  .service-card-new p {
    font-size: 0.8rem;
    margin-bottom: 16px;
    line-height: 1.45;
  }

  .service-features-list {
    margin-bottom: 16px;
    gap: 8px;
  }

  .service-features-list li {
    font-size: 0.78rem;
    margin-bottom: 6px;
  }

  .service-card-footer {
    padding-top: 14px;
  }

  .service-learn-more {
    font-size: 0.8rem;
  }
  
  .trust-separator {
    display: none;
  }
  
  .trust-container {
    gap: 16px;
    justify-content: center;
  }
  
  .nav-links {
    display: none;
  }
  
  .nav-cta-wrapper {
    display: none;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .services-grid-wrapper {
    grid-template-columns: 1fr;
  }
  
  .services-mascot-wrapper {
    display: none;
  }
  
  .pricing-grid-new {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 400px;
    margin: 0 auto 40px auto;
  }
  
  .pricing-card-new {
    padding: 28px 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.95);
  }

  /* Accent border glows for standard pricing cards on mobile */
  #plan-starter,
  #plan-scale {
    border: 1px solid rgba(155, 127, 232, 0.15);
    box-shadow: 0 8px 30px rgba(155, 127, 232, 0.02);
  }
  
  .card-featured-new {
    transform: none;
    border: 2px solid var(--primary);
    box-shadow: 0 12px 35px rgba(255, 111, 174, 0.06);
    margin-top: 8px; /* Extra breathing room for the featured banner */
    margin-bottom: 8px;
  }
  
  .card-featured-new:hover {
    transform: translateY(-8px);
  }

  /* Typography & details scaling for mobile */
  .pricing-card-header-new {
    margin-bottom: 16px;
  }

  .pricing-icon-new {
    width: 46px;
    height: 46px;
    font-size: 1.15rem;
    margin-bottom: 16px;
  }

  .pricing-card-new h3 {
    font-size: 1.1rem;
  }

  .plan-target {
    font-size: 0.78rem;
    margin-bottom: 16px;
  }

  .price-value-new {
    font-size: 1.85rem;
  }

  .pricing-features-new {
    gap: 10px;
    margin-bottom: 24px;
  }

  .pricing-features-new li {
    font-size: 0.78rem;
  }
  
  .why-illustration-block {
    height: 320px;
  }
  
  .why-curved-arrow-svg {
    width: 320px;
  }
  
  .why-float-card {
    display: flex;
    transform: scale(0.72);
    transform-origin: center;
    padding: 8px 12px;
    gap: 8px;
    border-radius: 12px;
  }
  
  .why-float-card-left {
    top: -6px !important;
    left: 4px !important;
  }
  
  .why-float-card-right {
    top: 219px !important;
    right: 4px !important;
  }
  
  .why-mascot {
    width: 170px;
  }

  /* Bottom counter badges 2x2 mobile layout */
  .why-counter-badges-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 24px;
    width: 100%;
  }

  .why-counter-badge {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px 12px;
    gap: 8px;
    border-radius: 16px;
    min-height: 125px;
    justify-content: center;
    flex: none;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 111, 174, 0.12);
  }

  .counter-badge-icon-box {
    margin-bottom: 2px;
    flex-shrink: 0;
  }

  .counter-badge-text-box {
    align-items: center;
  }

  .counter-number-new {
    font-size: 1.35rem;
  }

  .counter-label-new {
    font-size: 0.68rem;
    line-height: 1.25;
  }
  
  .why-grid-four-cols {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto 40px auto;
  }
  
  .success-stories-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto 40px auto;
  }

  /* === Success Inner Banner Mobile (must be AFTER base styles) === */
  .success-inner-banner {
    padding: 28px 20px;
    border-radius: 24px;
    gap: 24px;
  }

  .inner-banner-content {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }

  .inner-banner-text {
    text-align: center;
  }

  .inner-banner-text h3 {
    font-size: 1.35rem;
  }

  .inner-banner-text p {
    max-width: 100%;
  }

  .inner-banner-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    width: 100%;
    margin-top: 0;
  }

  .inner-stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    padding: 16px 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.75);
    min-width: 0;
  }

  .inner-stat-icon {
    width: 40px;
    height: 40px;
    font-size: 0.95rem;
    margin-bottom: 2px;
  }

  .inner-stat-value {
    font-size: 1.3rem;
  }

  .inner-stat-label {
    font-size: 0.68rem;
    line-height: 1.25;
    max-width: 100%;
  }

  .success-absolute-mascot {
    display: none;
  }

  .success-bottom-banner-pill {
    flex-direction: column;
    align-items: stretch;
    border-radius: 24px;
    padding: 24px 20px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    gap: 16px;
  }

  .bottom-banner-text-row {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }

  .banner-title-white {
    white-space: normal;
    font-size: 1rem;
    line-height: 1.4;
  }

  .banner-desc-white {
    font-size: 0.78rem;
    line-height: 1.45;
    /* The row layout gives this a 240px flex-basis; in a column that basis
       becomes a 240px HEIGHT, leaving a tall empty band. */
    flex: 0 1 auto;
    min-width: 0;
  }

  .banner-divider-line {
    display: none;
  }

  .bottom-banner-icon {
    margin: 0 auto;
  }

  .btn-pill-white {
    justify-content: center;
    width: 100%;
  }

  /* === GLOBAL MOBILE OVERFLOW FIX === */
  body {
    overflow-x: hidden;
  }

  section {
    overflow: hidden !important;
  }

  .container {
    padding: 0 16px;
    box-sizing: border-box;
    width: 100% !important;
    max-width: 100% !important;
  }

  /* === PROCESS SECTION MOBILE === */
  .process-timeline {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 36px !important;
  }

  .process-timeline-row {
    display: contents !important;
  }

  .process-arrow,
  .process-arrow-new {
    display: none !important;
  }
  
  .process-node-new {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    min-width: 0 !important;
    padding: 24px 10px 16px 10px !important;
    border-radius: 16px !important;
    box-sizing: border-box !important;
  }

  .process-node-new h3 {
    font-size: 0.78rem !important;
    font-weight: 800 !important;
    margin-bottom: 6px !important;
  }

  .process-node-new p {
    font-size: 0.65rem !important;
    line-height: 1.35 !important;
    margin-bottom: 0 !important;
  }

  .node-icon-circle {
    width: 48px !important;
    height: 48px !important;
    font-size: 1.1rem !important;
    margin-bottom: 12px !important;
  }

  .node-number-badge {
    top: -12px !important;
    font-size: 0.7rem !important;
    padding: 0 !important;
    width: 26px !important;
    height: 26px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    white-space: nowrap !important;
    word-break: normal !important;
  }

  .node-bottom-line {
    display: none !important; /* Remove line to save vertical space on mobile */
  }

  /* Process CTA banner mobile */
  .process-cta-banner {
    padding: 32px 20px 28px 20px !important;
    flex-direction: column !important;
    align-items: center !important;
    border-radius: 28px !important;
    text-align: center !important;
    gap: 24px !important;
    background: rgba(255, 255, 255, 0.95) !important;
    border: 1px solid rgba(255, 111, 174, 0.15) !important;
    box-shadow: 0 16px 40px rgba(255, 111, 174, 0.06) !important;
  }

  .process-cta-icon-box {
    margin: 0 auto !important;
  }

  .process-cta-icon {
    width: 50px !important;
    height: 50px !important;
    font-size: 1.15rem !important;
    background: linear-gradient(135deg, rgba(255, 111, 174, 0.15) 0%, rgba(255, 111, 174, 0.05) 100%) !important;
    border: 1px solid rgba(255, 111, 174, 0.15) !important;
    box-shadow: 0 4px 12px rgba(255, 111, 174, 0.1) !important;
  }

  .process-cta-text {
    max-width: 100% !important;
  }

  .process-cta-text h3 {
    font-size: 1.25rem !important;
    line-height: 1.3 !important;
    letter-spacing: -0.3px !important;
    white-space: normal !important;
    word-break: break-word !important;
  }

  .process-cta-text p {
    font-size: 0.78rem !important;
    line-height: 1.4 !important;
    white-space: normal !important;
    color: var(--text-sub) !important;
    margin-top: 4px !important;
  }

  .process-cta-checklist {
    width: 100% !important;
  }

  .process-cta-benefits {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px 14px !important;
    max-width: 320px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    list-style: none !important;
  }

  .process-cta-benefits li {
    white-space: normal !important;
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    color: var(--text-main) !important;
  }

  .process-cta-benefits li i {
    font-size: 0.8rem !important;
    color: var(--primary) !important;
  }

  .process-cta-action {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    gap: 8px !important;
  }

  .btn-pill-pink {
    width: 100% !important;
    justify-content: center !important;
    padding: 12px 24px !important;
    font-size: 0.8rem !important;
    box-shadow: 0 6px 16px rgba(255, 111, 174, 0.25) !important;
  }

  .process-cta-subtext {
    font-size: 0.68rem !important;
    justify-content: center !important;
    margin-top: 4px !important;
  }

  .process-absolute-mascot {
    display: none !important;
  }

  /* === CONTACT SECTION MOBILE === */
  .contact-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 32px !important;
    width: 100% !important;
  }

  .contact-info {
    text-align: center !important;
    align-items: center !important;
    width: 100% !important;
  }

  .contact-info .section-title {
    font-size: 1.5rem !important;
    word-break: break-word;
    text-align: center !important;
  }

  .contact-sub-text {
    font-size: 0.88rem;
    max-width: 100%;
    text-align: center !important;
  }

  .benefit-checklist {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px 14px !important;
    max-width: 320px !important;
    margin: 0 auto 24px auto !important;
    padding: 0 !important;
    list-style: none !important;
  }

  .benefit-checklist li {
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    color: var(--text-main) !important;
  }

  .checklist-bullet {
    width: 20px !important;
    height: 20px !important;
    font-size: 0.65rem !important;
  }

  .contact-closing-call {
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
    margin-bottom: 24px !important;
  }

  .closing-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    background: rgba(255, 111, 174, 0.05) !important;
    color: var(--primary) !important;
    border: 1px solid rgba(255, 111, 174, 0.12) !important;
    padding: 6px 14px !important;
    border-radius: 50px !important;
    font-size: 0.72rem !important;
    font-weight: 700 !important;
  }

  .contact-card {
    padding: 24px 16px !important;
    border-radius: 24px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

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

  .contact-card .btn {
    width: 100% !important;
    justify-content: center !important;
  }

  /* === FOOTER MOBILE === */
  .site-footer {
    padding: 40px 0 30px 0 !important;
  }

  .process-section {
    padding-bottom: 20px !important;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .problem-footer-banner-new {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
    gap: 20px;
  }
  
  .banner-left-side {
    flex-direction: column;
    gap: 12px;
  }
  
  .banner-middle-divider {
    width: 80%;
    height: 1px;
    margin: 10px auto;
  }
  
  .banner-right-side {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .banner-prompt-text {
    white-space: normal;
  }
  
  .success-bottom-banner {
    flex-direction: column;
    text-align: center;
    padding: 30px 24px;
  }
  
  .success-banner-bunny {
    position: relative;
    bottom: 0;
  }

  /* === TESTIMONIALS SECTION MOBILE === */
  .testimonials-slider-wrapper {
    margin-top: 32px !important;
  }

  .testimonials-track {
    gap: 20px !important;
  }
  
  .testimonial-card {
    flex: 0 0 100% !important; /* 1 card on mobile view */
    padding: 28px 20px !important;
    border-radius: 20px !important;
  }

  .slider-arrow {
    display: none !important; /* Hide arrows on mobile to save space */
  }

  .slider-dots {
    margin-top: 24px !important;
  }
}

@media (max-width: 480px) {
  * {
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .section-title {
    font-size: 1.5rem;
    letter-spacing: -0.5px;
  }

  .section-subtitle {
    font-size: 0.85rem;
    max-width: 100%;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
  
  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-ctas .btn {
    width: 100%;
  }

  .container {
    padding: 0 14px;
  }

  /* Contact section tighter spacing */
  .contact-section {
    padding: 50px 0;
  }

  .contact-card {
    padding: 20px 14px;
  }

  .form-label {
    font-size: 0.72rem;
  }

  .contact-card .btn {
    font-size: 0.88rem;
    padding: 14px 24px;
  }

  /* Process section */
  .process-section {
    padding: 50px 0;
  }

  .process-timeline {
    max-width: 280px;
  }

  .process-cta-banner {
    padding: 24px 16px;
  }
}

/* === AUDIT MODAL OVERLAY & POPUP === */
.audit-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(22, 2, 9, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 16px;
  box-sizing: border-box;
}

.audit-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.audit-modal-content {
  background: radial-gradient(circle at top right, rgba(255, 111, 174, 0.04) 0%, #FFFFFF 60%);
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  border-radius: 32px;
  width: 100%;
  max-width: 500px; /* Tighter premium width */
  max-height: 95vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.94) translateY(20px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 30px 80px rgba(147, 18, 46, 0.12), 0 0 0 1px rgba(255, 111, 174, 0.02);
  padding: 40px 32px;
  box-sizing: border-box;
}

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

/* When in step 2 (Calendly view), expand width */
.audit-modal-content.step-2-active {
  max-width: 820px;
  padding: 30px 24px 20px 24px;
}

.modal-close-btn {
  position: absolute;
  top: 11px;
  right: 10px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(244, 23, 107, 0.08);
  border: none;
  color: var(--pink-vivid);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.modal-close-btn:hover {
  background: var(--pink-vivid);
  color: #FFFFFF;
  transform: rotate(90deg);
}

/* Rounded pill submit with a trailing arrow disc (mockup). */
#audit-lead-form .btn-block {
  border-radius: 50px;
  padding: 18px 26px;
  margin-top: 6px;
  justify-content: center;
  position: relative;
  font-size: 1.05rem;
}

#audit-lead-form .btn-block .icon-margin-left {
  position: absolute;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--pink-vivid);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.booking-form textarea {
  min-height: 92px;
  line-height: 1.5;
  padding-top: 15px;
}

.modal-header {
  text-align: center;
  margin-bottom: 28px;
}

/* Left-aligned variant used by the audit form (mockup). */
.modal-header-left {
  text-align: left;
}

.modal-header h3 {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--text-main);
  margin-top: 12px;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.modal-header-left h3 {
  text-align: center;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.05;
  color: #890027;
  margin-top: 18px;
  margin-bottom: 14px;
  letter-spacing: -1px;
}

.modal-header p {
  font-size: 0.85rem;
  color: var(--text-sub);
  line-height: 1.5;
}

.modal-header-left p {
  font-size: 1rem;
  color: var(--heading-dark);
  font-weight: 500;
  text-align: center;
}

/* Modal Responsive Tweaks */
@media (max-width: 600px) {
  .audit-modal-content {
    padding: 36px 20px;
    border-radius: 24px;
  }
  .audit-modal-content.step-2-active {
    padding: 36px 10px 10px 10px;
  }
}

/* Audit Modal — Light Theme (matches the supplied mockup).
   Replaces the earlier dark-glassmorphism block; kept as !important because
   the base .audit-modal-content rule earlier in the file also sets these. */
.audit-modal-content {
  background: #FFFFFF !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: 1px solid rgba(147, 18, 46, 0.06) !important;
  box-shadow: 0 40px 90px rgba(147, 18, 46, 0.18) !important;
  color: var(--heading-dark) !important;
}

.audit-modal-content .booking-form {
  gap: 14px !important;
}

.audit-modal-content .form-row {
  gap: 14px !important;
}

.audit-modal-content select option {
  background: #FFFFFF;
  color: var(--heading-dark);
}



/* ==========================================================================
   LATE OVERRIDES
   This file keeps its media queries in the middle, so equal-specificity rules
   further down were beating them. Anything appended here wins by source order.
   ========================================================================== */

/* Desktop-only: stop the banner's description collapsing to a ~100px column
   at tablet widths. Scoped to min-width so the flex-basis never becomes a
   HEIGHT once the pill switches to a column layout below 993px. */
@media (min-width: 993px) {
  .banner-desc-white {
    flex: 1 1 240px;
    min-width: 240px;
  }
}

/* Success-stats mascot on mobile: two media queries in the middle of this file
   set display:none on it. Re-show it here (source order wins) as a normal-flow,
   centred block so it sits under the CTA banner instead of overlapping. */
@media (max-width: 992px) {
  .success-absolute-mascot {
    display: block;
    position: static;
    width: 180px;
    max-width: 52%;
    margin: 6px auto -30px auto;
  }
}

@media (max-width: 480px) {
  .success-absolute-mascot {
    width: 156px;
    margin-bottom: -24px;
  }
}
