/* ══════════════════════════════════════════════════════════════
   DESIGN SYSTEM TOKENS
   ══════════════════════════════════════════════════════════════ */
:root {
  --ds-primary:      #0A0A0A;
  --ds-surface:      #FFFFFF;
  --ds-accent:       #22C55E;
  --ds-accent-dark:  #16A34A;
  --ds-grad-accent:  linear-gradient(90deg, #22C55E, #16A34A, #22C55E);
  --ds-radius-lg:    24px;
  --ds-radius-md:    16px;
  --ds-radius-sm:    12px;
  --ds-space-section: 100px;
  --ds-shadow-sm:    0 4px 12px rgba(0,0,0,0.05);
  --ds-shadow-lg:    0 24px 64px rgba(0,0,0,0.12);
}

/* ══════════════════════════════════════════════════════════════
   MOBILE NAVIGATION (Off-Canvas Drawer)
   ══════════════════════════════════════════════════════════════ */
.mobile-nav-tray {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  width: 320px !important;
  max-width: 85vw !important;
  height: 100vh !important;
  background: #FFFFFF !important;
  z-index: 10001 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 15px !important;
  padding: 80px 30px 40px !important;
  transform: translateX(100%) !important;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  box-shadow: -15px 0 45px rgba(0,0,0,0.15) !important;
  border-radius: 0 !important;
}

.mobile-nav-tray.active {
  transform: translateX(0) !important;
}

.mobile-nav-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: rgba(0,0,0,0.6) !important;
  backdrop-filter: blur(4px) !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: all 0.3s ease !important;
  z-index: 10000 !important;
}

.mobile-nav-overlay.active {
  opacity: 1 !important;
  visibility: visible !important;
}

.mobile-nav-link {
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  color: #111 !important;
  text-decoration: none !important;
  padding: 12px 0 !important;
  border-bottom: 1px solid rgba(0,0,0,0.05) !important;
  transition: color 0.3s !important;
}

.mobile-nav-link:hover {
  color: var(--ds-accent) !important;
}

/* Hamburger Toggle Persistence */
.mobile-menu-toggle {
  display: none !important;
  z-index: 10002 !important;
}

@media (max-width: 991px) {
  .mobile-menu-toggle {
    display: block !important;
  }
  .desktop-nav {
    display: none !important;
  }
}

/* ── URGENCY BANNER ──────────────────────────────────────────── */
.urgency-banner {
  background: var(--ds-grad-accent) !important;
  background-size: 200% auto !important;
  animation: grad-shift 6s linear infinite !important;
  text-align: center;
  position: relative;
  z-index: 1001;
  transition: transform 0.3s ease;
}

.urgency-banner:hover {
  transform: translateY(-2px);
}

.urgency-banner span, 
.urgency-banner strong { 
  color: #fff !important; 
}

@keyframes grad-shift {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* ── BLOG CARDS ──────────────────────────────────────────────── */
.blog-card-premium {
  border-radius: var(--ds-radius-lg) !important;
  overflow: hidden;
}
.blog-category-premium {
  color: var(--ds-accent) !important;
  font-weight: 800 !important;
}
.read-more-premium { color: var(--ds-accent) !important; }

/* ── PROOF CARDS ─────────────────────────────────────────────── */
.proof-card-premium {
  border-radius: var(--ds-radius-lg) !important;
  overflow: hidden;
}
.proof-card-footer {
  background: var(--ds-primary) !important;
  color: #fff !important;
}

/* ── SOCIAL TILES ────────────────────────────────────────────── */
.social-tile-premium {
  background: var(--ds-surface) !important;
  border-radius: var(--ds-radius-lg) !important;
}
.social-tile-icon.instagram { background: linear-gradient(135deg, #E1306C, #F77737) !important; }
.social-tile-icon.youtube { background: var(--ds-primary) !important; }

/* ── FOOTER ──────────────────────────────────────────────────── */
footer.footer {
  background: var(--ds-primary) !important;
}

/* ── SCROLLBAR ───────────────────────────────────────────────── */
::-webkit-scrollbar-thumb { background: var(--ds-accent) !important; }
::-webkit-scrollbar-thumb:hover { background: var(--ds-accent-dark) !important; }

/* ── SCROLL PROGRESS BAR ─────────────────────────────────────── */
#scroll-progress {
  background: var(--ds-grad-accent) !important;
}

/* ── FORM ELEMENTS ───────────────────────────────────────────── */
.tool-input:focus,
.form-control-v2:focus,
input:focus, select:focus, textarea:focus {
  border-color: var(--ds-accent) !important;
  box-shadow: 0 0 0 4px rgba(34,197,94,0.10) !important;
  outline: none;
}

/* ── SECTION SPACING UTILITY UPGRADES ───────────────────────── */
.section-padding { padding: var(--ds-space-section) 0 !important; }
.section-padding-lg { padding: var(--ds-space-section) 0 !important; }

@media (max-width: 768px) {
  .section-padding,
  .section-padding-lg { padding:  60px 0 !important; }

  [class*="card"],
  .card-minimal,
  .comparison-card-v2 {
    border-radius: var(--ds-radius-md) !important;
  }
}

/* ── ICON ACCENTS ─────────────────────────────────────────────── */
.card-icon,
.section-icon,
.fas.accent, .fab.accent {
  color: var(--ds-accent) !important;
}

/* Icon background chips in dark cards */
div[style*="background: var(--authority-green)"] {
  background: var(--ds-accent) !important;
}

/* ── AUTHORITY GREEN TOKEN UNIFICATION ───────────────────────── */
/* Make --authority-green consistent with the design system accent */
:root {
  --authority-green: #22C55E !important;
  --green-accent:    #22C55E !important;
  --brand:           #0A0A0A !important;
  --black-premium:   #0A0A0A !important;
  --off-white:       #F8FAFC !important;
  --grad-premium:    linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%) !important;
}

/* -- TESTIMONIALS SECTION -------------------------------------- */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 64px;
}

/* Row 2: centre 2 cards with auto margins */
.testi-card:nth-child(4) { margin-left: auto; max-width: 420px; }
.testi-card:nth-child(5) { margin-right: auto; max-width: 420px; }

.testi-card {
  background: #FFFFFF;
  border-radius: 28px !important;
  padding: 40px 36px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.07) !important;
  border: 1px solid rgba(0,0,0,0.05) !important;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: visible !important;
}

.testi-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 6rem;
  line-height: 1;
  color: #22C55E;
  opacity: 0.12;
  position: absolute;
  top: 14px;
  left: 28px;
  pointer-events: none;
}

.testi-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 24px 60px rgba(0,0,0,0.11) !important;
  border-color: rgba(34,197,94,0.2) !important;
}

.testi-stars {
  font-size: 1.15rem;
  letter-spacing: 2px;
}

.testi-quote {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #334155 !important;
  font-style: italic;
  flex: 1;
  margin: 0 !important;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
}

.testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #22C55E;
  color: #fff;
  font-weight: 900;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(34,197,94,0.25);
}

.testi-name {
  font-weight: 800;
  font-size: 1rem;
  color: #0A0A0A !important;
}

.testi-meta {
  font-size: 0.8rem;
  color: #94A3B8 !important;
  font-weight: 600;
  margin-top: 2px;
}

/* -- RESPONSIVE TESTIMONIALS ----------------------------------- */
@media (max-width: 1024px) {
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-card:nth-child(4),
  .testi-card:nth-child(5) { margin: 0; max-width: none; }
  .testi-card:nth-child(5) { grid-column: span 2; max-width: 500px; margin: 0 auto; }
}

@media (max-width: 640px) {
  .testi-grid { grid-template-columns: 1fr; gap: 20px; }
  .testi-card { padding: 28px 24px; }
  .testi-card:nth-child(5) { grid-column: span 1; max-width: none; }
}


/* --------------------------------------------------------------
   FLOATING WHATSAPP BUTTON � HIGH CONVERSION
   -------------------------------------------------------------- */

/* Wrapper � always fixed bottom-right */
.wa-float-wrapper {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;

  /* Slide-in on load */
  animation: wa-enter 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.5s both;
}

@keyframes wa-enter {
  from { opacity: 0; transform: translateY(40px) scale(0.8); }
  to   { opacity: 1; transform: translateY(0)   scale(1); }
}

/* The button itself */
.wa-float-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  background: #25D366;
  border-radius: 50%;
  box-shadow:
    0 8px 24px rgba(37,211,102,0.45),
    0 2px 6px  rgba(0,0,0,0.15);
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1),
              box-shadow 0.3s ease;
  flex-shrink: 0;
}

.wa-float-btn:hover {
  transform: scale(1.12) !important;
  box-shadow:
    0 16px 48px rgba(37,211,102,0.55),
    0 4px 12px  rgba(0,0,0,0.2) !important;
}

.wa-icon {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

/* Pulsing ring behind the button */
.wa-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.35;
  animation: wa-pulse 2.4s ease-out infinite;
  z-index: 1;
}

@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: 0.38; }
  70%  { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}

/* Tooltip card */
.wa-tooltip {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 12px 18px;
  box-shadow:
    0 12px 36px rgba(0,0,0,0.12),
    0 2px 6px  rgba(0,0,0,0.06);
  max-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border: 1px solid rgba(37,211,102,0.15);

  /* Hidden by default � show on wrapper hover */
  opacity: 0;
  transform: translateY(8px) scale(0.97);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform-origin: bottom right;
}

.wa-float-wrapper:hover .wa-tooltip {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.wa-tooltip-text {
  font-weight: 800;
  font-size: 0.9rem;
  color: #0A0A0A;
  white-space: nowrap;
}

.wa-tooltip-sub {
  font-size: 0.75rem;
  color: #64748B;
  line-height: 1.4;
  font-style: italic;
}

/* Mobile: slightly smaller, lower position */
@media (max-width: 640px) {
  .wa-float-wrapper {
    bottom: 20px;
    right: 16px;
  }
  .wa-float-btn {
    width: 54px;
    height: 54px;
  }
  .wa-tooltip {
    display: none; /* Too crowded on mobile � button only */
  }
}


/* --------------------------------------------------------------
   TRUST + SAFETY SECTION
   -------------------------------------------------------------- */

.trust-safety-section {
  background: linear-gradient(160deg, #FFFFFF 0%, #F0FDF4 100%);
  border-top: 1px solid rgba(34,197,94,0.08);
  border-bottom: 1px solid rgba(34,197,94,0.08);
}

/* -- Split Layout -- */
.trust-split {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 60px;
}

/* -- Photo Column -- */
.trust-photo-col { position: relative; }

.trust-photo-frame {
  position: relative;
  display: inline-block;
  width: 100%;
}

.trust-coach-img {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 36px;
  object-fit: cover;
  object-position: top center;
  display: block;
  box-shadow:
    0 24px 64px rgba(0,0,0,0.12),
    0 4px 16px rgba(0,0,0,0.06);
  border: 4px solid rgba(255,255,255,0.9);
}

/* Floating credential badges */
.trust-badge-float {
  position: absolute;
  right: -24px;
  bottom: 36px;
  background: #FFFFFF;
  border-radius: 20px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow:
    0 12px 36px rgba(0,0,0,0.10),
    0 2px 6px rgba(0,0,0,0.06);
  border: 1px solid rgba(34,197,94,0.12);
  min-width: 180px;
  animation: badge-float 4s ease-in-out infinite;
}

.trust-badge-top {
  bottom: auto;
  top: 36px;
  right: -24px;
  animation-delay: -2s;
}

@keyframes badge-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

.trust-badge-icon {
  font-size: 1.6rem;
  line-height: 1;
  flex-shrink: 0;
}

.trust-badge-title {
  font-weight: 900;
  font-size: 0.95rem;
  color: #0A0A0A;
  line-height: 1.2;
}

.trust-badge-sub {
  font-size: 0.72rem;
  color: #64748B;
  font-weight: 600;
  margin-top: 2px;
}

/* -- Content Column -- */
.trust-content-col { padding-right: 20px; }

.trust-headline {
  font-size: clamp(2.2rem, 4vw, 3.2rem) !important;
  font-weight: 900 !important;
  color: #0A0A0A !important;
  line-height: 1.15 !important;
  margin: 16px 0 24px !important;
  letter-spacing: -1.5px !important;
}

.trust-intro {
  font-size: 1.1rem !important;
  color: #334155 !important;
  line-height: 1.75 !important;
  margin-bottom: 20px !important;
}

.trust-intro strong { color: #0A0A0A !important; font-weight: 800; }

/* -- Trust Points List -- */
.trust-points-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.trust-points-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}

.trust-points-list li:hover {
  border-color: rgba(34,197,94,0.2);
  box-shadow: 0 8px 24px rgba(34,197,94,0.08);
  transform: translateX(4px);
}

.tp-icon {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.trust-points-list li div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.trust-points-list li strong {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0A0A0A !important;
  line-height: 1.3;
}

.trust-points-list li span {
  font-size: 0.83rem;
  color: #64748B !important;
  line-height: 1.4;
}

/* CTA inside trust section */
.trust-cta {
  display: inline-flex !important;
  align-items: center !important;
}

/* -- Disclaimer Banner -- */
.trust-disclaimer-bar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 28px;
  background: #FFF7ED;
  border-radius: 16px;
  border: 1px solid #FED7AA;
  border-left: 4px solid #F97316;
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-icon {
  flex-shrink: 0;
  color: #F97316;
  margin-top: 2px;
}

.disclaimer-text {
  font-size: 0.875rem !important;
  color: #92400E !important;
  line-height: 1.6 !important;
  margin: 0 !important;
}

.disclaimer-text strong {
  color: #92400E !important;
  font-weight: 800;
}

/* -- Responsive -- */
@media (max-width: 1024px) {
  .trust-split {
    grid-template-columns: 340px 1fr;
    gap: 50px;
  }
  .trust-badge-float { right: -10px; }
}

@media (max-width: 820px) {
  .trust-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .trust-photo-col {
    display: flex;
    justify-content: center;
  }
  .trust-coach-img {
    max-width: 320px;
    border-radius: 28px;
  }
  .trust-badge-float {
    right: 0;
    bottom: -16px;
    min-width: 150px;
    padding: 10px 14px;
  }
  .trust-badge-top {
    top: -16px;
    bottom: auto;
  }
  .trust-content-col { padding-right: 0; }
  .trust-headline { font-size: clamp(1.8rem, 6vw, 2.4rem) !important; }
}

@media (max-width: 480px) {
  .trust-badge-float { display: none; } /* too cramped on small mobiles */
  .trust-disclaimer-bar { flex-direction: column; gap: 10px; }
}


/* --------------------------------------------------------------
   MOBILE OPTIMIZATION � HIGH PRIORITY
   Targets: Bigger buttons, more breathing space, shorter sections
   -------------------------------------------------------------- */

/* -------------------------------------------------------------
   TABLET  = 1024px
------------------------------------------------------------- */
@media (max-width: 1024px) {

  /* Tighten hero gap */
  .hero-premium > .container > div {
    gap: 40px !important;
  }

  /* Asymmetric grids ? equal */
  .asymmetric-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  /* Comparison grid ? stack */
  .comparison-grid-v2 {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* Trust section ? stack */
  .trust-split {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
}

/* -------------------------------------------------------------
   MOBILE  = 768px  � PRIMARY BREAKPOINT
------------------------------------------------------------- */
@media (max-width: 768px) {

  /* -- SECTION SPACING: shorter sections ---------------------- */
  .section-padding,
  .section-padding-lg,
  section.section-padding,
  section.section-padding-lg {
    padding: 64px 0 !important;
  }

  /* Hero: tighter top pad so content starts higher */
  .hero-premium {
    padding-top: 80px !important;
    padding-bottom: 56px !important;
  }

  /* -- CONTAINERS --------------------------------------------- */
  .container,
  .container-narrow,
  .container-wide {
    padding: 0 20px !important;
  }

  /* -- TYPOGRAPHY SCALE DOWN ---------------------------------- */
  h1 { font-size: clamp(2rem, 8vw, 2.8rem) !important; }
  h2 { font-size: clamp(1.7rem, 7vw, 2.4rem) !important; }
  h3 { font-size: clamp(1.3rem, 5vw, 1.8rem) !important; }
  h4 { font-size: 1.1rem !important; }

  p, li { font-size: 1rem !important; line-height: 1.65 !important; }

  /* Hero heading specifically */
  .hero-premium h1 {
    font-size: clamp(2rem, 9vw, 3rem) !important;
    letter-spacing: -1px !important;
    margin-bottom: 20px !important;
  }

  /* -- BUTTONS: bigger, full-width ---------------------------- */
  .btn-premium,
  .btn,
  .btn-primary,
  a.btn-premium,
  button.btn-premium {
    min-height: 56px !important;
    padding: 16px 28px !important;
    font-size: 1.05rem !important;
    border-radius: 14px !important;
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
    display: flex !important;
  }

  /* Restore WhatsApp button (fixed position, should NOT be 100% wide) */
  .wa-float-btn {
    width: 54px !important;
    height: 54px !important;
    min-height: unset !important;
  }

  /* Hero button row ? stack vertically */
  .hero-premium div[style*="display: flex"][style*="gap: 20px"] {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 14px !important;
  }

  /* Nav CTA � keep it compact in header */
  .nav-cta, a.nav-cta {
    width: auto !important;
    min-height: 42px !important;
    padding: 10px 18px !important;
    font-size: 0.9rem !important;
  }

  /* -- CARDS: more padding, slightly shorter radius ----------- */
  .testi-card,
  .comparison-card-v2,
  .card-minimal {
    padding: 28px 22px !important;
    border-radius: 20px !important;
  }

  /* Blog cards */
  .blog-card-premium { border-radius: 20px !important; }
  .blog-content-premium { padding: 20px !important; }

  /* Proof cards */
  .proof-card-premium { border-radius: 20px !important; }

  /* Tool dashboard */
  .tool-dashboard {
    border-radius: 24px !important;
    padding: 20px 16px !important;
  }

  .tool-tabs {
    flex-direction: column !important;
    gap: 8px !important;
  }

  .tool-tab-btn {
    flex: none !important;
    width: 100% !important;
    text-align: center !important;
    padding: 14px !important;
  }

  /* -- TESTIMONIALS ? single column -------------------------- */
  .testi-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    margin-top: 40px !important;
  }

  .testi-card:nth-child(4),
  .testi-card:nth-child(5) {
    grid-column: span 1 !important;
    max-width: none !important;
    margin: 0 !important;
  }

  /* -- COMPARISON SECTION ------------------------------------- */
  .comparison-grid-v2 {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .transition-bridge {
    order: 2;
    padding: 0 !important;
  }

  .bridge-pill {
    font-size: 0.9rem !important;
    padding: 12px 20px !important;
  }

  /* -- TRUST SECTION ------------------------------------------ */
  .trust-split {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  .trust-photo-col { text-align: center; }

  .trust-coach-img {
    max-width: 280px !important;
    border-radius: 24px !important;
    margin: 0 auto !important;
  }

  .trust-badge-float { display: none !important; }

  .trust-headline {
    font-size: clamp(1.8rem, 7vw, 2.2rem) !important;
    margin: 12px 0 16px !important;
  }

  .trust-points-list li {
    padding: 14px 16px !important;
    border-radius: 14px !important;
    gap: 12px !important;
  }

  .trust-points-list { gap: 12px !important; margin: 24px 0 28px !important; }

  .trust-disclaimer-bar {
    padding: 16px 18px !important;
    border-radius: 14px !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 12px !important;
  }

  /* -- SECTION HEADERS ---------------------------------------- */
  .section-header-v2 {
    margin-bottom: 40px !important;
  }

  .badge-glass {
    font-size: 0.75rem !important;
    padding: 6px 14px !important;
    margin-bottom: 16px !important;
  }

  /* -- PROCESS CARDS ------------------------------------------ */
  div[style*="border-radius: 32px"],
  div[style*="border-radius: 24px"] {
    border-radius: 20px !important;
    padding: 28px 20px !important;
  }

  /* -- CREDENTIAL STRIP ? wrap nicely ----------------------- */
  .credential-grid-inline {
    flex-wrap: wrap !important;
    gap: 16px 24px !important;
    justify-content: center !important;
  }

  /* -- TRUST BADGES BAR ? wrap ------------------------------- */
  .trust-container-new {
    flex-wrap: wrap !important;
    gap: 16px !important;
    justify-content: center !important;
  }

  /* -- SOCIAL TILES ? single column -------------------------- */
  .social-impact-grid {
    grid-template-columns: 1fr !important;
  }

  /* -- BLOG CARDS ? single column -------------------------- */
  div[style*="grid-template-columns: repeat(auto-fit, minmax(320px"] {
    grid-template-columns: 1fr !important;
  }

  /* -- FOOTER GRID ? stack ----------------------------------- */
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  /* -- FORM ELEMENTS ? bigger tap targets ------------------- */
  input, select, textarea {
    min-height: 52px !important;
    font-size: 1rem !important;
    border-radius: 12px !important;
    padding: 14px 18px !important;
  }

  .tool-input, .form-control-v2 {
    min-height: 52px !important;
    font-size: 1rem !important;
  }

  /* -- URGENCY BANNER: compact ------------------------------- */
  .urgency-banner {
    font-size: 14px !important;
    padding: 10px 12px !important;
  }

  /* -- PROOF GRID ? single column (override auto-fit) -------- */
  .proof-grid-premium {
    grid-template-columns: 1fr !important;
  }

  /* -- HERO STAT CARDS ? row -------------------------------- */
  .hero-premium > .container > div > div[style*="flex: 0 1 220px"] {
    flex-direction: row !important;
    flex: 1 1 100% !important;
    gap: 12px !important;
  }

  .hero-premium > .container > div > div[style*="flex: 0 1 220px"] > div {
    flex: 1 !important;
    padding: 18px !important;
    border-radius: 16px !important;
  }
}

/* -------------------------------------------------------------
   SMALL MOBILE  = 400px  � Micro tweaks
------------------------------------------------------------- */
@media (max-width: 400px) {
  .hero-premium h1 {
    font-size: 1.85rem !important;
    letter-spacing: -0.5px !important;
  }

  .section-padding,
  .section-padding-lg {
    padding: 48px 0 !important;
  }

  .container,
  .container-narrow {
    padding: 0 16px !important;
  }

  h2 { font-size: 1.6rem !important; }

  .testi-card { padding: 22px 18px !important; }

  .btn-premium, .btn, .btn-primary {
    font-size: 1rem !important;
    padding: 14px 20px !important;
    min-height: 52px !important;
  }
}


/* --------------------------------------------------------------
   HERO BENEFIT BULLET LIST
   -------------------------------------------------------------- */

.hero-benefit-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.0rem;
  color: #1E293B;
  line-height: 1.5;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(34,197,94,0.12);
  border-radius: 12px;
  padding: 10px 16px;
  backdrop-filter: blur(4px);
  transition: all 0.25s ease;
}

.hero-benefit-list li:hover {
  background: rgba(255,255,255,0.95);
  border-color: rgba(34,197,94,0.25);
  transform: translateX(4px);
}

.hbl-icon {
  font-size: 1.1rem;
  line-height: 1.5;
  flex-shrink: 0;
}

.hero-benefit-list li strong {
  color: #0A0A0A;
  font-weight: 800;
}

.hero-disclaimer {
  font-size: 0.75rem !important;
  color: #94A3B8 !important;
  font-style: italic;
  margin: 4px 0 24px !important;
  line-height: 1.4 !important;
}

/* On dark hero backgrounds, make bullets readable */
.section-dark .hero-benefit-list li,
.bg-dark .hero-benefit-list li,
.hero-premium .hero-benefit-list li {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
}

.section-dark .hero-benefit-list li strong,
.hero-premium .hero-benefit-list li strong {
  color: #FFFFFF !important;
}

.section-dark .hero-disclaimer,
.hero-premium .hero-disclaimer {
  color: rgba(255,255,255,0.4) !important;
}

/* Mobile */
@media (max-width: 768px) {
  .hero-benefit-list li {
    font-size: 0.9rem !important;
    padding: 10px 14px !important;
    gap: 10px !important;
  }
  .hero-benefit-list { gap: 8px !important; margin: 24px 0 12px !important; }
}


/* --------------------------------------------------------------
   HERO CTA PAIR � Two primary actions, side by side
   -------------------------------------------------------------- */

.hero-cta-pair {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
  align-items: center;
}

/* Primary: dark pill */
.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: #0A0A0A;
  color: #FFFFFF !important;
  font-weight: 800;
  font-size: 1.05rem;
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(0,0,0,0.22);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  line-height: 1;
  min-height: 56px;
}
.hero-btn-primary:hover {
  background: #22C55E;
  color: #fff !important;
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(34,197,94,0.3);
}

/* Secondary: WhatsApp green outline */
.hero-btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  background: transparent;
  color: #22C55E !important;
  font-weight: 800;
  font-size: 1.05rem;
  border-radius: 14px;
  border: 2px solid #22C55E;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  line-height: 1;
  min-height: 56px;
}
.hero-btn-wa:hover {
  background: #22C55E;
  color: #fff !important;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(34,197,94,0.35);
}

/* On dark hero backgrounds, WA btn stays green-outlined */
.hero-premium .hero-btn-wa {
  border-color: #22C55E;
  color: #22C55E !important;
}

/* --------------------------------------------------------------
   SECTION CTA BAR � Repeating after every major section
   -------------------------------------------------------------- */

.section-cta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
  padding: 48px 24px 0;
}

/* Primary CTA */
.scta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: #0A0A0A;
  color: #fff !important;
  font-weight: 800;
  font-size: 1.05rem;
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(0,0,0,0.15);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  min-height: 56px;
}
.scta-primary:hover {
  background: #22C55E;
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(34,197,94,0.28);
}

/* Secondary: WhatsApp */
.scta-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  background: transparent;
  color: #22C55E !important;
  border: 2px solid #22C55E;
  font-weight: 800;
  font-size: 1.05rem;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  min-height: 56px;
}
.scta-wa:hover {
  background: #22C55E;
  color: #fff !important;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(34,197,94,0.3);
}

/* On dark section backgrounds */
.section-dark .section-cta-bar .scta-primary,
.bg-dark .section-cta-bar .scta-primary {
  background: #fff;
  color: #0A0A0A !important;
}
.section-dark .section-cta-bar .scta-primary:hover {
  background: #22C55E;
  color: #fff !important;
}

/* -- Mobile --------------------------------------------------- */
@media (max-width: 768px) {
  .hero-cta-pair {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .hero-btn-primary,
  .hero-btn-wa {
    width: 100% !important;
    justify-content: center !important;
    font-size: 1rem !important;
    padding: 15px 24px !important;
    min-height: 52px !important;
  }
  .section-cta-bar {
    flex-direction: column;
    align-items: stretch;
    padding: 36px 16px 0;
    gap: 12px;
  }
  .scta-primary,
  .scta-wa {
    width: 100%;
    justify-content: center;
    font-size: 1rem !important;
    min-height: 52px !important;
  }
}


/* --------------------------------------------------------------
   MINI SOCIAL PROOF STRIP � Just below hero
   -------------------------------------------------------------- */

.mini-proof-strip {
  background: #FFFFFF;
  padding: 48px 0;
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.mini-proof-label {
  text-align: center;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  color: #64748B !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 28px !important;
}

.mini-proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}

.mini-card {
  background: #F8FAFC;
  border: 1px solid rgba(34,197,94,0.10);
  border-radius: 20px;
  padding: 24px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.3s ease;
}
.mini-card:hover {
  border-color: rgba(34,197,94,0.22);
  box-shadow: 0 8px 24px rgba(34,197,94,0.08);
  transform: translateY(-3px);
}

.mini-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mini-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
}

.mini-card-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mini-result-badge {
  display: inline-block;
  background: #DCFCE7;
  color: #16A34A;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 20px;
  margin-top: 2px;
}

.mini-quote {
  font-size: 0.92rem !important;
  color: #334155 !important;
  font-style: italic;
  line-height: 1.6 !important;
  margin: 0 !important;
}

.mini-byline {
  font-size: 0.75rem !important;
  font-weight: 700;
  color: #94A3B8;
  padding-top: 4px;
  border-top: 1px solid rgba(0,0,0,0.05);
}

/* -- SVG Star Ratings ------------------------------------------- */
.star-rating {
  display: inline-flex;
  line-height: 1;
  margin-bottom: 4px;
}

/* -- Testimonial Result Tag ------------------------------------- */
.testi-result-tag {
  display: inline-block;
  background: #DCFCE7;
  color: #15803D;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid rgba(22,163,74,0.15);
  margin-bottom: 4px;
}

/* -- Testimonials v2 section background -- */
.testimonials-v2 {
  background: linear-gradient(160deg, #F8FAFC 0%, #F0FDF4 100%);
}

/* -- Mobile --------------------------------------------------- */
@media (max-width: 768px) {
  .mini-proof-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 480px;
  }
  .mini-card { padding: 20px 18px; }
  .mini-proof-strip { padding: 36px 0; }
}


/* --------------------------------------------------------------
   FORM MICRO-COPY � trust lines under inputs
   -------------------------------------------------------------- */

.form-micro-copy {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-size: 0.75rem !important;
  color: rgba(255,255,255,0.45) !important;
  margin: 6px 0 0 !important;
  font-style: italic;
  line-height: 1.4 !important;
}
.form-micro-copy svg {
  flex-shrink: 0;
  opacity: 0.6;
}

/* On light backgrounds */
.trust-safety-section .form-micro-copy,
section:not(.section-dark) .form-micro-copy {
  color: #94A3B8 !important;
}

/* --------------------------------------------------------------
   CALCULATOR RESULT EXPLANATIONS
   -------------------------------------------------------------- */

.tool-result-explain {
  font-size: 0.75rem !important;
  color: #94A3B8 !important;
  text-align: center !important;
  margin: 10px 0 0 !important;
  line-height: 1.5 !important;
  font-style: italic;
}

/* Calculator WhatsApp CTA area */
.tool-cta-area {
  text-align: center;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

/* --------------------------------------------------------------
   MOBILE HEADING � no forced breaks, smart wrap
   -------------------------------------------------------------- */

/* Prevent <br> from having too much effect on mobile */
@media (max-width: 768px) {
  /* Turn section heading BRs into spaces effectively */
  h1 br, h2 br, h3 br, h4 br {
    display: none;
  }

  /* Let headings wrap naturally with balanced text */
  h1, h2, h3 {
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: auto;
  }

  /* Section headers � remove excess bottom margin on mobile */
  .section-header-v2 {
    margin-bottom: 32px !important;
  }

  /* Trust section headline override (we keep its specific break) */
  .trust-headline br { display: inline; }
}

/* --------------------------------------------------------------
   FONT READABILITY � mobile body text
   -------------------------------------------------------------- */

@media (max-width: 480px) {
  body { font-size: 16px !important; }

  p, li, .trust-intro, .testi-quote, .mini-quote {
    font-size: 0.95rem !important;
    line-height: 1.65 !important;
  }

  /* Ensure nothing breaks outside its container */
  section, .container, .card-minimal, [class*="card"] {
    max-width: 100vw;
    overflow-x: hidden;
  }
}

/* --------------------------------------------------------------
   HERO BENEFIT LIST � fix broken em-dash separators
   -------------------------------------------------------------- */

/* The checkmark icons � use a clean green circle */
.hbl-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: #22C55E;
  color: white;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 900;
  flex-shrink: 0;
  line-height: 1;
}


/* --------------------------------------------------------------
   URGENCY BADGE
   -------------------------------------------------------------- */
.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(220, 38, 38, 0.1);
  color: #DC2626;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 16px;
  border: 1px solid rgba(220, 38, 38, 0.2);
}
.urgency-badge.urgency-dark {
  background: rgba(239, 68, 68, 0.2);
  color: #FEE2E2;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

/* --------------------------------------------------------------
   MINI LEAD FORM (Inline)
   -------------------------------------------------------------- */
.mini-lead-form {
  background: #FFFFFF;
  padding: 40px 20px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  text-align: center;
}
.mini-lead-container {
  max-width: 900px;
  margin: 0 auto;
  background: #F8FAFC;
  padding: 32px;
  border-radius: 24px;
  border: 1px solid rgba(34,197,94,0.15);
  box-shadow: 0 12px 32px rgba(0,0,0,0.03);
}
.mini-lead-title {
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 8px;
  color: #0A0A0A;
}
.mini-lead-subtitle {
  font-size: 0.95rem;
  color: #64748B;
  margin-bottom: 24px;
}
.mini-form-grid {
  display: flex;
  gap: 12px;
  align-items: center;
}
.mini-form-input, .mini-form-select {
  flex: 1;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #E2E8F0;
  font-size: 0.95rem;
  background: #fff;
  transition: all 0.3s;
}
.mini-form-input:focus, .mini-form-select:focus {
  outline: none;
  border-color: #22C55E;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.1);
}
.mini-form-btn {
  padding: 14px 28px;
  background: #0A0A0A;
  color: #fff;
  font-weight: 800;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}
.mini-form-btn:hover {
  background: #22C55E;
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .mini-form-grid { flex-direction: column; }
  .mini-form-input, .mini-form-select, .mini-form-btn { width: 100%; box-sizing: border-box; }
}

/* --------------------------------------------------------------
   FLOATING WHATSAPP BUTTON (Always Visible) overrides
   -------------------------------------------------------------- */
.floating-whatsapp {
  position: fixed !important;
  bottom: 24px !important;
  right: 24px !important;
  width: 60px !important;
  height: 60px !important;
  background: #25D366 !important;
  color: white !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 32px !important;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4) !important;
  z-index: 99999 !important;
  text-decoration: none !important;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  animation: wa-pulse 2s infinite !important;
}
.floating-whatsapp:hover {
  transform: scale(1.1) translateY(-4px) !important;
}
@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
@media (max-width: 768px) {
  .floating-whatsapp {
    bottom: 20px !important;
    right: 20px !important;
    width: 54px !important;
    height: 54px !important;
    font-size: 28px !important;
  }
}






@media (max-width: 768px) {
  p, .disclaimer-text, .testi-quote, .blog-excerpt-premium {
    font-size: 1.05rem !important; /* ~16.8px */
    line-height: 1.6 !important;
  }
  .btn-premium, .btn, .btn-primary, .hero-btn-primary, .hero-btn-wa {
    padding: 18px 24px !important;
    font-size: 1.1rem !important;
    min-height: 60px !important;
  }
}


/* Hero Performance Optimization & Visual Identity */
.hero-image-column img {
    mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
}

@media (max-width: 991px) {
    .hero-image-column {
        margin-top: 40px;
        order: 2;
    }
    .glass-stat-card {
        padding: 15px !important;
        border-radius: 18px !important;
    }
}

@media (max-width: 576px) {
    .glass-stat-card {
        position: static !important;
        display: inline-block;
        margin: 10px 5px;
        width: calc(50% - 10px);
        min-width: 120px !important;
        backdrop-filter: none !important;
        background: rgba(255,255,255,0.05) !important;
    }
    .hero-image-column img {
        max-width: 300px;
        margin: 0 auto;
    }
}

/* Refined Problem/Solution Icons */
.comparison-list li {
    display: flex !important;
    align-items: flex-start !important;
    margin-bottom: 18px !important;
    line-height: 1.4 !important;
}

.comparison-list i {
    flex-shrink: 0;
    margin-top: 3px;
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
}

/* Unified 5-Star Testimonials */
.star-rating {
    color: #F59E0B;
    margin-bottom: 12px;
}

.star-rating i {
    margin-right: 2px;
}

/* Credentials Section Polish */
.credential-strip-premium {
    padding: 60px 0;
    background: #fdfdfd;
    border-top: 1px solid rgba(0,0,0,0.03);
    border-bottom: 1px solid rgba(0,0,0,0.03);
}
