/**
 * Home Page — Livine Holistic Wellness
 * Premium Design | Mobile-First | Brand: #D38A50
 */

/* ═══════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════ */
:root {
  --brand:      #D38A50;
  --brand-dk:   #B8703E;
  --brand-lt:   #FDF3E9;
  --brand-mid:  #F5E6D3;
  --forest:     #1a7f6c;
  --forest-dk:  #136654;
  --charcoal:   #1A2332;
  --navy:       #0F1C2E;
  --text:       #2C2C2C;
  --muted:      #6B7280;
  --warm-bg:    #FBF8F5;
  --cream:      #F5EBE0;
  --white:      #FFFFFF;
  --border:     #EDE8E2;
  --shadow-sm:  0 2px 12px rgba(0,0,0,0.07);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.14);
  --radius:     8px;
  --radius-sm:  5px;
}

/* ═══════════════════════════════════════════
   SHARED UTILITIES
═══════════════════════════════════════════ */

/* Section tag (eyebrow label) */
.sec-tag {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--brand); margin-bottom: 14px;
}
.sec-tag.light { color: rgba(255,255,255,0.6); }

/* Section header — centered */
.sec-header-center { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.sec-header-center h2 { font-size: clamp(1.85rem, 3vw, 2.6rem); color: var(--charcoal); margin-bottom: 14px; line-height: 1.25; }
.sec-header-center.light h2 { color: #fff; }
.sec-header-center.light .sec-desc { color: rgba(255,255,255,0.65); }
.sec-desc { font-size: 1rem; color: var(--muted); line-height: 1.8; }

/* Brand primary button */
.btn-brand {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--brand); color: #fff;
  padding: 14px 32px; border-radius: var(--radius-sm);
  font-family: var(--body-font); font-weight: 600; font-size: 0.95rem;
  border: none; cursor: pointer; text-decoration: none;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}
.btn-brand:hover {
  background: var(--brand-dk); transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(211,138,80,0.35);
}

/* Outline brand button */
.btn-outline-brand {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--brand);
  border: 2px solid var(--brand);
  padding: 13px 30px; border-radius: var(--radius-sm);
  font-family: var(--body-font); font-weight: 600; font-size: 0.95rem;
  cursor: pointer; text-decoration: none;
  transition: all 0.25s;
}
.btn-outline-brand:hover { background: var(--brand); color: #fff; transform: translateY(-2px); }

/* Outline light (for dark sections) */
.btn-outline-light {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
  padding: 13px 30px; border-radius: var(--radius-sm);
  font-family: var(--body-font); font-weight: 500; font-size: 0.95rem;
  cursor: pointer; text-decoration: none;
  transition: all 0.25s;
}
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* Text link */
.text-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--brand); font-weight: 600; font-size: 0.92rem;
  text-decoration: none; transition: gap 0.2s, color 0.2s;
}
.text-link:hover { gap: 13px; color: var(--brand-dk); }

/* Utility — hide/show helpers */
@media (min-width: 769px) { .show-mobile { display: none !important; } }
@media (max-width: 768px) { .hide-mobile { display: none !important; } }

/* ═══════════════════════════════════════════
   TOP ANNOUNCEMENT BAR
═══════════════════════════════════════════ */
/* ── Fixed header heights ── */
:root {
  --topbar-h: 40px;
  --navbar-h: 72px;
  --header-h: 112px;
}
/* On very small screens top-bar text wraps, so increase height */
@media (max-width: 480px) {
  :root {
    --topbar-h: 44px;
    --header-h: 116px;
  }
}

.top-bar {
  background: var(--brand);
  padding: 0; text-align: center;
  height: var(--topbar-h);
  display: flex; align-items: center;
  position: fixed; top: 0; left: 0; width: 100%;
  z-index: 1001;
  overflow: hidden;
}
.top-bar .container {
  display: flex; align-items: center; justify-content: center;
  gap: 0;
}
.top-bar p {
  font-size: 13px; color: #fff; margin: 0; line-height: 1.3;
  display: flex; align-items: center; gap: 6px; flex-wrap: nowrap;
  white-space: nowrap;
}
.top-bar strong { font-weight: 700; }
.tb-btn {
  background: rgba(255,255,255,0.22); color: #fff;
  border: none; padding: 4px 14px; border-radius: 3px;
  font-family: inherit; font-size: 12.5px; font-weight: 700;
  cursor: pointer; transition: background 0.2s; white-space: nowrap;
  margin-left: 8px; flex-shrink: 0;
}
.tb-btn:hover { background: rgba(255,255,255,0.38); }

/* Mobile top bar: shorter message */
@media (max-width: 600px) {
  .tb-long { display: none !important; }
  .tb-short { display: inline !important; }
  .top-bar p { font-size: 12px; }
  .tb-btn { font-size: 12px; padding: 4px 11px; margin-left: 6px; }
}
@media (max-width: 380px) {
  .top-bar { height: 38px; }
  :root { --topbar-h: 38px; --header-h: 110px; }
}

/* ═══════════════════════════════════════════
   POPUP — Clean Premium Card
═══════════════════════════════════════════ */
#consultationPopup {
  display: none; position: fixed; inset: 0;
  background: rgba(8, 16, 32, 0.75);
  z-index: 9999;
  align-items: center; justify-content: center;
  padding: 16px;
  backdrop-filter: blur(8px);
}

#consultationPopup .popup-content {
  width: 100%; max-width: 560px;
  background: #fff;
  border-radius: 20px;
  padding: 0;
  max-height: 90vh;
  overflow-y: hidden;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.28);
  position: relative;
  display: block;
}

/* ── Coloured header band ── */
.popup-left {
  background: linear-gradient(135deg, #1A2332 0%, #0F1C2E 100%);
  padding: 28px 32px 24px;
  position: relative;
  overflow: hidden;
  display: none; /* user requested: only 2 lines on top + form fields */
}
/* Decorative circle */
.popup-left::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 160px; height: 160px; border-radius: 50%;
  background: rgba(211,138,80,0.12);
  pointer-events: none;
}
.popup-left::after {
  content: '';
  position: absolute; bottom: -30px; left: -30px;
  width: 100px; height: 100px; border-radius: 50%;
  background: rgba(211,138,80,0.07);
  pointer-events: none;
}

/* Hide unused left-panel elements — only show title+sub */
.pl-logo-wrap { margin-bottom: 18px; position: relative; z-index: 1; }
.pl-logo {
  width: 150px;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.28));
}
.pl-perks {
  list-style: none;
  padding: 0;
  margin: 18px 0 18px;
  display: grid;
  gap: 10px;
  position: relative;
  z-index: 1;
}
.pl-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.82);
  line-height: 1.4;
}
.pl-perks li i { color: #f5c48a; }
.pl-trust {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.14);
  position: relative;
  z-index: 1;
}
.pl-stat { text-align: left; }
.pl-stat span {
  display: block;
  font-family: var(--heading-font);
  font-size: 1.45rem;
  line-height: 1.05;
  color: #fff;
}
.pl-stat small {
  display: block;
  color: rgba(255,255,255,0.65);
  font-size: 12px;
  margin-top: 3px;
}
.pl-stat-sep { width: 1px; height: 36px; background: rgba(255,255,255,0.16); }

.pl-tag {
  display: inline-block; background: var(--brand); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: 1.8px;
  text-transform: uppercase; padding: 4px 12px; border-radius: 3px;
  margin-bottom: 12px;
  position: relative; z-index: 1;
}
.pl-title {
  font-size: 1.45rem; color: #fff; line-height: 1.25;
  margin-bottom: 8px; font-family: var(--heading-font);
  position: relative; z-index: 1;
}
.pl-sub {
  font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.6;
  margin: 0;
  position: relative; z-index: 1;
}
.pl-sub strong { color: #f5c48a; }

/* ── Close button — top-right of header ── */
.close-btn {
  position: absolute; top: 14px; right: 14px; z-index: 20;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(15, 28, 46, 0.45);
  border: 1px solid rgba(255,255,255,0.22);
  color: #fff; font-size: 1.6rem; font-weight: 800;
  cursor: pointer; transition: all 0.2s;
  display: flex; align-items: center; justify-content: center;
  font-family: inherit; line-height: 1;
  text-shadow: 0 1px 8px rgba(0,0,0,0.35);
}
.close-btn:hover { background: rgba(15, 28, 46, 0.65); color: #fff; transform: rotate(90deg); }

/* ── Form area ── */
.popup-right {
  padding: 0;
  background: #fff;
}

/* Title inside the form column (keep these lines above the form) */
.popup-topline {
  margin: 0;
  padding: 26px 32px 22px;
  background: linear-gradient(135deg, #1A2332 0%, #0F1C2E 100%);
  position: relative;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}
.popup-topline .pt-title {
  margin: 0 0 6px;
  font-family: var(--heading-font);
  font-size: 1.55rem;
  line-height: 1.2;
  color: #fff;
}
.popup-topline .pt-sub {
  margin: 0;
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}
.popup-topline::before {
  content: '';
  position: absolute;
  top: -52px;
  right: -52px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  pointer-events: none;
}
.popup-topline::after {
  content: '';
  position: absolute;
  bottom: -34px;
  right: 18px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(211,138,80,0.10);
  pointer-events: none;
}
.popup-topline > * { position: relative; z-index: 1; }

/* Form padding (below the header band) */
.popup-right #bookingForm {
  padding: 22px 32px 28px;
}
/* Mobile-only header — hidden on desktop */
.popup-mob-header { display: none; }

/* Form fields */
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block; font-size: 11px; font-weight: 700;
  color: #6b7280; margin-bottom: 5px;
  letter-spacing: 0.6px; text-transform: uppercase;
}
.fg-input-wrap { position: relative; }
.fg-input-wrap input,
.fg-input-wrap select {
  width: 100%; padding: 11px 14px 11px 38px;
  border: 1.5px solid #e8e4df;
  border-radius: 8px;
  font-family: inherit; font-size: 14px; color: var(--text);
  outline: none; transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none; background: #fafaf9;
}
.fg-input-wrap input::placeholder { color: #bbb5ae; }
.fg-input-wrap input:focus,
.fg-input-wrap select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(211,138,80,0.1);
  background: #fff;
}
.fg-icon-left {
  position: absolute; left: 12px; top: 50%;
  transform: translateY(-50%); color: #c8bfb6; font-size: 12.5px;
  pointer-events: none;
}
.fg-chevron {
  position: absolute; right: 12px; top: 50%;
  transform: translateY(-50%); color: #c8bfb6; font-size: 10px;
  pointer-events: none;
}

/* Submit — WhatsApp green */
.popup-submit-btn {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 8px;
  background: #25d366; color: #fff;
  padding: 13px 20px;
  border-radius: 8px; font-size: 0.97rem; font-weight: 700;
  border: none; cursor: pointer; transition: background 0.22s;
  margin-top: 6px; font-family: inherit;
}
.popup-submit-btn i { font-size: 1.15rem; }
.popup-submit-btn:hover { background: #1aad55; }

/* Cancel — ghost */
.popup-cancel-btn {
  width: 100%; display: flex; align-items: center; justify-content: center;
  background: transparent; color: #9ca3af;
  border: 1.5px solid #e8e4df;
  padding: 10px; border-radius: 8px;
  font-size: 0.88rem; font-weight: 600; cursor: pointer;
  margin-top: 8px; font-family: inherit; transition: all 0.2s;
}
.popup-cancel-btn:hover { background: #f5f0ec; color: #4b5563; border-color: #d0c8be; }

.popup-secure {
  display: none;
}
.popup-secure i { display: none; }

/* ── MOBILE: bottom sheet style ── */
@media (max-width: 600px) {
  #consultationPopup {
    padding: 0;
    align-items: flex-end;
  }
  #consultationPopup .popup-content {
    max-width: 100%;
    display: block;
    border-radius: 20px 20px 0 0;
    max-height: 92vh;
    overflow-y: auto;
  }
  .pl-title { font-size: 1.2rem; }
  .pl-sub { font-size: 12.5px; }
  .popup-right { padding: 20px 20px 28px; }
  .popup-right { padding: 0; }
  .popup-topline { padding: 22px 20px 18px; }
  .popup-right #bookingForm { padding: 18px 20px 24px; }
  .form-group { margin-bottom: 11px; }
  .fg-input-wrap input,
  .fg-input-wrap select { padding: 10px 12px 10px 36px; font-size: 13.5px; }
  .popup-submit-btn { padding: 12px; }
  .popup-cancel-btn { padding: 9px; }
}

/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: var(--topbar-h); left: 0; width: 100%;
  z-index: 1000; background: #fff;
  padding: 0;
  box-shadow: 0 1px 0 var(--border);
  transition: box-shadow 0.3s, background 0.3s;
}
.navbar .container {
  height: var(--navbar-h);
  display: flex; align-items: center; justify-content: space-between;
}
.navbar.scrolled {
  padding: 0 !important;   /* prevent style.css padding: 15px 0 expanding height */
  box-shadow: 0 6px 28px rgba(0,0,0,0.12);
}

/* Navbar CTA — use brand color (overrides style.css --primary green) */
.nav-cta {
  background: var(--brand) !important;
  border-radius: var(--radius-sm) !important;
  font-size: 14px; padding: 10px 20px;
}
.nav-cta:hover {
  background: var(--brand-dk) !important;
  box-shadow: 0 8px 22px rgba(211,138,80,0.35) !important;
}
/* Nav link underline accent color */
.nav-links a::after { background-color: var(--brand) !important; }
.nav-dropdown-toggle:hover { color: var(--brand) !important; }
.nav-dropdown-menu a i { color: var(--brand) !important; }
.nav-dropdown-menu a:hover { color: var(--brand) !important; }

/* ═══════════════════════════════════════════
   1. HERO SECTION — PREMIUM SPLIT
═══════════════════════════════════════════ */
.hero {
  position: relative; overflow: hidden;
  background: url('../../images/hero-bg.png') center 30%/cover no-repeat;
  min-height: 100svh;
  display: flex; flex-direction: column;
  margin-top: var(--header-h);
}

/* Diagonal overlay — dark left, lighter right so bg image breathes */
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg,
      rgba(8,16,32,0.97) 0%,
      rgba(8,16,32,0.92) 38%,
      rgba(8,16,32,0.72) 62%,
      rgba(8,16,32,0.48) 100%
    );
}

/* Container fills remaining height */
.hero-container {
  flex: 1;
  display: flex; align-items: center;
  padding-top: 60px; padding-bottom: 52px;
  position: relative; z-index: 1;
}

/* Split grid: text left, stats right */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  width: 100%;
}

/* ── LEFT: TEXT ── */
.hero-content { text-align: left; }

.hero-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(211,138,80,0.14); border: 1px solid rgba(211,138,80,0.4);
  color: #f5c48a; font-size: 12px; font-weight: 600;
  padding: 6px 16px; border-radius: 100px; margin-bottom: 24px;
  letter-spacing: 0.3px;
}
.pulse-dot {
  width: 7px; height: 7px; background: #4ade80;
  border-radius: 50%; flex-shrink: 0;
  animation: heroPulse 2s ease infinite;
}
@keyframes heroPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(74,222,128,0.6); }
  60%      { box-shadow: 0 0 0 7px rgba(74,222,128,0); }
}

.hero-content h1 {
  font-size: clamp(2.4rem, 4.2vw, 3.8rem);
  color: #fff; line-height: 1.13; margin-bottom: 22px;
  font-weight: 700; letter-spacing: -0.5px;
}
.hero-content h1 em {
  font-style: italic;
  background: linear-gradient(135deg, #f5c48a 0%, #D38A50 60%, #c07240 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-highlight {
  color: #ff8c00;
  font-weight: 800;
  text-shadow: 0 2px 8px rgba(255,140,0,0.3);
}

.hero-desc {
  font-size: 1.05rem; color: rgba(255,255,255,0.78);
  line-height: 1.8; margin-bottom: 36px; max-width: 500px;
}
.hero-desc strong { color: #f5d4a0; font-weight: 600; }

/* Buttons */
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 32px; align-items: center;
}
.h-btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--brand); color: #fff;
  padding: 16px 32px; border-radius: var(--radius-sm);
  font-family: var(--body-font); font-weight: 700; font-size: 0.95rem;
  border: none; cursor: pointer; text-decoration: none;
  box-shadow: 0 6px 24px rgba(211,138,80,0.38);
  transition: all 0.25s;
}
.h-btn-primary:hover {
  background: var(--brand-dk); transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(211,138,80,0.5);
}
.h-btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.9);
  border: 1.5px solid rgba(255,255,255,0.28);
  padding: 15px 28px; border-radius: var(--radius-sm);
  font-family: var(--body-font); font-weight: 500; font-size: 0.95rem;
  cursor: pointer; text-decoration: none; transition: all 0.25s;
  backdrop-filter: blur(8px);
}
.h-btn-ghost:hover {
  color: #fff; border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.12);
}

/* Creds row */
.hero-creds {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.hero-creds span {
  font-size: 12.5px; color: rgba(255,255,255,0.55);
  display: inline-flex; align-items: center; gap: 6px;
}
.hero-creds i { color: var(--brand); font-size: 11px; }
.hc-sep {
  width: 1px; height: 13px;
  background: rgba(255,255,255,0.2); flex-shrink: 0;
}

/* ── RIGHT: STATS PANEL ── */
.hero-stats {
  display: flex; flex-direction: column; gap: 20px;
}
.hsp-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.hsp-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-radius: 14px; padding: 24px 20px;
  display: flex; flex-direction: column; gap: 8px;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
  cursor: default;
}
.hsp-card:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(211,138,80,0.45);
  transform: translateY(-3px);
}
.hsp-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(211,138,80,0.18);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
}
.hsp-icon i { color: var(--brand); font-size: 1rem; }
.hsp-num {
  font-size: 2rem; font-weight: 800; color: #fff; line-height: 1;
  font-family: var(--heading-font); letter-spacing: -1px;
}
.hsp-lbl {
  font-size: 12px; color: rgba(255,255,255,0.6);
  font-weight: 500; line-height: 1.4;
}

/* Doctor quote card */
.hsp-quote {
  background: rgba(211,138,80,0.10);
  border: 1px solid rgba(211,138,80,0.28);
  border-radius: 14px; padding: 22px 24px;
  position: relative;
}
.hsp-q-icon {
  color: var(--brand); font-size: 1.4rem;
  opacity: 0.7; margin-bottom: 10px; display: block;
}
.hsp-quote p {
  font-family: var(--heading-font); font-style: italic;
  font-size: 0.95rem; color: rgba(255,255,255,0.85);
  line-height: 1.65; margin-bottom: 10px;
}
.hsp-q-attr {
  font-size: 11.5px; color: rgba(255,255,255,0.45);
  font-weight: 500; display: block;
}

/* ── TRUST BAR ── */
.hero-trust-bar {
  position: relative; z-index: 2;
  background: rgba(0,0,0,0.7);
  border-top: 1px solid rgba(211,138,80,0.25);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  flex-shrink: 0;
}
.trust-bar-inner {
  display: flex; align-items: stretch;
  justify-content: stretch; flex-wrap: nowrap;
}
.trust-item {
  flex: 1; display: flex; align-items: center; gap: 12px;
  padding: 18px 20px; min-width: 0;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: background 0.2s;
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: rgba(211,138,80,0.06); }
.t-icon {
  font-size: 1.6rem; color: var(--brand);
  flex-shrink: 0; opacity: 1;
}
.trust-item > div { min-width: 0; }
.t-num {
  display: block; font-size: 1.1rem; font-weight: 900;
  color: #fff; line-height: 1.2; white-space: nowrap;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.t-label {
  display: block; font-size: 12px;
  color: rgba(255,255,255,0.8); margin-top: 2px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  font-weight: 500;
}

/* ── TRUST BAR MOBILE — 2×2 all 4 visible ── */
@media (max-width: 640px) {
  .hero-trust-bar {
    overflow: visible !important;
    position: relative; z-index: 2;
  }
  .trust-bar-inner {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    flex-wrap: unset !important;
  }
  .trust-item {
    flex: unset !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 20px 8px !important;
    gap: 8px !important;
    border-right: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.08) !important;
    min-width: 0;
  }
  /* right border on odd items (left column) */
  .trust-item:nth-child(odd) {
    border-right: 1px solid rgba(255,255,255,0.08) !important;
  }
  /* no bottom border on last 2 */
  .trust-item:nth-child(3),
  .trust-item:nth-child(4) {
    border-bottom: none !important;
  }
  .t-icon { font-size: 1.6rem !important; margin-bottom: 0; }
  .t-num {
    font-size: 1.2rem !important;
    font-weight: 900 !important;
    white-space: normal !important;
    color: #fff !important;
    line-height: 1.2 !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4) !important;
  }
  .t-label {
    font-size: 12px !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: unset !important;
    color: rgba(255,255,255,0.8) !important;
    line-height: 1.3 !important;
    font-weight: 500 !important;
  }
}

/* ═══ HERO RESPONSIVE ═══ */

/* Desktop: hide right stats panel, keep LEFT aligned, single column */
@media (min-width: 861px) {
  .hero-stats { display: none; }
  .hero-grid {
    grid-template-columns: 1fr;
    max-width: 720px;
    margin: 0;
  }
  .hero-content { text-align: left; }
  .hero-actions { justify-content: flex-start; }
  .hero-creds { justify-content: flex-start; }
  .hero-desc { margin-left: 0; margin-right: 0; }
}

@media (max-width: 1024px) {
  .hero-grid { gap: 40px; }
  .hero-content h1 { font-size: clamp(2.2rem, 4vw, 3.2rem); }
}
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-content { text-align: center; }
  .hero-creds { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-stats { max-width: 540px; margin: 0 auto; }
  .hero-container { padding-top: 32px; padding-bottom: 32px; }
}
@media (max-width: 640px) {
  .hero-stats { display: none; }
  /* Remove min-height + overflow so trust bar 2nd row doesn't get clipped */
  .hero {
    min-height: 0 !important;
    height: auto !important;
    overflow: visible !important;
  }
  /* hero-container: don't stretch, just wrap content */
  .hero-container {
    flex: none !important;
    padding-top: 28px !important;
    padding-bottom: 28px !important;
    align-items: flex-start !important;
  }
  .hero-pill { margin-bottom: 14px; }
}
@media (max-width: 480px) {
  .hero-content h1 { font-size: 2rem; }
  .hero-actions { flex-direction: column; }
  .h-btn-primary, .h-btn-ghost { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════════
   2. QUICK LINKS BAR
═══════════════════════════════════════════ */
.quick-links-bar {
  background: var(--white);
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  border-bottom: 3px solid var(--brand-mid);
}
.quick-links-bar .container {
  display: flex; align-items: stretch;
}
.ql-item {
  flex: 1; display: flex; align-items: center; gap: 18px;
  padding: 24px 28px; text-decoration: none; color: var(--text);
  border-right: 1px solid var(--border);
  transition: background 0.22s, box-shadow 0.22s;
  position: relative; overflow: hidden;
}
.ql-item:last-child { border-right: none; }
.ql-item::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--brand);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.ql-item:hover { background: var(--brand-lt); }
.ql-item:hover::after { transform: scaleX(1); }

.ql-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  background: var(--brand-mid); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.22s, transform 0.22s;
}
.ql-icon i { color: var(--brand); font-size: 1.3rem; }
.ql-item:hover .ql-icon {
  background: var(--brand);
  transform: scale(1.08);
}
.ql-item:hover .ql-icon i { color: #fff; }

.ql-body { flex: 1; min-width: 0; }
.ql-body h4 {
  font-size: 1rem; color: var(--charcoal);
  margin-bottom: 3px; font-family: var(--body-font); font-weight: 700;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.ql-body p {
  font-size: 13px; color: var(--muted); margin: 0; line-height: 1.4;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.ql-arr {
  width: 34px; height: 34px; flex-shrink: 0;
  background: var(--brand-lt); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--brand); font-size: 12px;
  transition: background 0.22s, transform 0.22s;
}
.ql-item:hover .ql-arr {
  background: var(--brand); color: #fff;
  transform: translateX(4px);
}

/* Mobile — stack as cards */
@media (max-width: 767px) {
  .quick-links-bar .container {
    flex-direction: column; padding-left: 0; padding-right: 0;
  }
  .ql-item {
    border-right: none; border-bottom: 1px solid var(--border);
    padding: 18px 20px;
  }
  .ql-item:last-child { border-bottom: none; }
  .ql-item::after {
    bottom: auto; top: 0; height: 3px; width: 4px;
    left: 0; right: auto; transform-origin: top;
    transform: scaleY(0);
  }
  .ql-item:hover::after { transform: scaleY(1); width: 4px; }
  .ql-icon { width: 44px; height: 44px; }
  .ql-body h4 { font-size: 0.97rem; white-space: normal; }
  .ql-body p { white-space: normal; }
}
/* Tablet — 3 cols horizontal with more padding */
@media (min-width: 768px) and (max-width: 1024px) {
  .ql-item { padding: 20px 20px; gap: 14px; }
  .ql-icon { width: 46px; height: 46px; }
  .ql-body h4 { font-size: 0.92rem; }
  .ql-body p { font-size: 12px; }
}

/* ═══════════════════════════════════════════
   3. PROBLEM SECTION — REDESIGNED
═══════════════════════════════════════════ */

/* Hide old problem section elements */
.problem-layout,
.problem-left,
.problem-right,
.prob-cards,
.prob-card,
.prob-lines {
  display: none !important;
}

/* New card grid - 4 columns in 1 row */
.prob-cards-new {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.prob-card-new {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.prob-card-new::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand) 0%, #f5c48a 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.prob-card-new:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  border-color: var(--brand);
}

.prob-card-new:hover::before {
  transform: scaleX(1);
}

/* Icon styling */
.prob-icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--brand-lt);
  border: 2px solid var(--brand-mid);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.prob-icon-wrap i {
  font-size: 1.4rem;
  color: var(--brand);
  transition: color 0.3s ease;
}

.prob-card-new:hover .prob-icon-wrap {
  background: var(--brand);
  border-color: var(--brand);
  transform: scale(1.1);
}

.prob-card-new:hover .prob-icon-wrap i {
  color: #fff;
}

/* Content styling */
.prob-content {
  flex: 1;
}

.prob-card-new h4 {
  font-size: 1.1rem;
  color: var(--charcoal);
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
  font-family: var(--body-font);
}

.prob-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

.prob-desc:last-child {
  margin-bottom: 0;
}

.prob-desc strong {
  color: var(--charcoal);
  font-weight: 600;
}

/* List styling */
.prob-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.prob-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
}

.prob-list li i {
  font-size: 12px;
  margin-top: 4px;
  flex-shrink: 0;
}

.prob-list li i.fa-times-circle {
  color: #dc2626;
}

.prob-list li i.fa-check-circle {
  color: var(--forest);
}

/* Footer */
.prob-footer {
  text-align: center;
  margin-top: 48px;
}

.prob-footer-text {
  font-size: 14px;
  color: var(--muted);
  margin-top: 12px;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .prob-cards-new {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

@media (max-width: 900px) {
  .prob-cards-new {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .section-problem {
    padding: 64px 0;
  }
  
  .prob-card-new {
    padding: 24px 20px;
    gap: 16px;
  }
  
  .prob-icon-wrap {
    width: 48px;
    height: 48px;
  }
  
  .prob-icon-wrap i {
    font-size: 1.2rem;
  }
}

/* Mobile Carousel Overrides */
@media (max-width: 767px) {
  .prob-cards-new.sc-track {
    display: flex !important;
    grid-template-columns: unset !important;
  }
  
  .prob-card-new.sc-item {
    flex: 0 0 85vw !important;
    max-width: 340px;
  }
}

/* ═══════════════════════════════════════════
   3. PROBLEM SECTION — OLD (HIDDEN)
═══════════════════════════════════════════ */
.section-problem { padding: 96px 0; background: var(--warm-bg); }
.problem-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 56px;
  align-items: start;
}
.problem-left .sec-tag { color: var(--charcoal); }
.problem-left h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--charcoal); margin-bottom: 20px; line-height: 1.25;
}
.prob-lead {
  font-size: 1rem; color: var(--muted); line-height: 1.8; margin-bottom: 12px;
}
.problem-left .prob-lead:last-of-type { margin-bottom: 30px; }
.prob-lines {
  margin: 18px 0 18px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}
.prob-lines div {
  font-size: 0.98rem;
  color: var(--charcoal);
  line-height: 1.65;
  font-weight: 650;
}
.prob-lines div + div { margin-top: 8px; }

/* Cards on right */
.prob-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 18px;
  align-items: stretch;
}
.prob-card {
  background: rgba(255,255,255,0.92);
  border-radius: 16px;
  border: 1px solid rgba(26,35,50,0.08);
  padding: 22px 22px;
  box-shadow: 0 14px 46px rgba(0,0,0,0.04);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  display: flex;
  flex-direction: column;
}
.prob-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 60px rgba(0,0,0,0.06);
  border-color: rgba(211,138,80,0.22);
}
.prob-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.prob-card .struggle-list { margin-top: 4px; }
.prob-card-head i {
  color: var(--brand);
  font-size: 16px;
}
.prob-card-title {
  margin: 0;
  font-size: 0.95rem;
  color: var(--charcoal);
  font-weight: 800;
  letter-spacing: 0.2px;
}
.prob-card-body {
  margin: 0 0 10px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
}
.prob-card-body:last-child { margin-bottom: 0; }

/* Struggle list inside card */
.struggle-list { list-style: none; padding: 0; margin: 0; }
.struggle-list li {
  position: relative;
  padding: 10px 0 10px 22px;
  border-bottom: 1px solid rgba(26,35,50,0.07);
  font-size: 14px; color: var(--text); line-height: 1.6;
}
.struggle-list li:last-child { border-bottom: none; }
.struggle-list li::before {
  content: '×';
  position: absolute;
  left: 0; top: 10px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fee2e2;
  color: #dc2626;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  line-height: 1;
  font-size: 12px;
}

.prob-note-list {
  margin: 8px 0 12px 18px;
  padding: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.prob-note-list li { margin: 0 0 6px; }
.prob-note-list li:last-child { margin-bottom: 0; }

@media (max-width: 860px) {
  .problem-layout { grid-template-columns: 1fr; gap: 44px; }
  .prob-cards { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .section-problem { padding: 64px 0; }
}

/* ═══════════════════════════════════════════
   4. ABOUT US
═══════════════════════════════════════════ */
.section-about { padding: 104px 0; background: var(--white); }
.about-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}

/* Image stack */
.about-images { position: relative; height: 520px; }
.ab-img-primary {
  position: absolute; left: 0; top: 0;
  width: 62%; height: 88%;
  object-fit: cover; object-position: top;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.ab-img-secondary {
  position: absolute; right: 0; bottom: 0;
  width: 50%; height: 60%;
  object-fit: cover; object-position: top;
  border-radius: var(--radius);
  border: 6px solid #fff;
  box-shadow: var(--shadow-lg);
}
.ab-exp-badge {
  position: absolute; left: 52%; bottom: 68px;
  transform: translateX(-50%);
  background: var(--brand); color: #fff;
  padding: 14px 20px; border-radius: var(--radius);
  text-align: center; white-space: nowrap;
  box-shadow: 0 10px 28px rgba(211,138,80,0.4);
  z-index: 2;
}
.ab-exp-num { display: block; font-size: 2rem; font-weight: 800; line-height: 1; }
.ab-exp-lbl { display: block; font-size: 11px; line-height: 1.5; margin-top: 4px; opacity: 0.9; }

/* About text */
.about-text h2 {
  font-size: clamp(1.65rem, 2.5vw, 2.2rem);
  color: var(--charcoal); margin-bottom: 10px; line-height: 1.3;
}
.about-tagline {
  font-size: 0.95rem; color: var(--muted); font-style: italic;
  line-height: 1.75; margin-bottom: 20px;
}
.about-body {
  font-size: 15px; color: var(--muted); line-height: 1.85; margin-bottom: 32px;
}
.about-body strong { color: var(--charcoal); font-weight: 600; }

/* Stats strip */
.about-stats {
  display: flex; align-items: center; gap: 0;
  background: var(--warm-bg); border-radius: var(--radius);
  padding: 20px 0; margin-bottom: 32px;
  border: 1px solid var(--border);
}
.ab-stat { flex: 1; text-align: center; padding: 0 20px; }
.ab-stat-num {
  display: block; font-size: 2rem; font-weight: 800;
  color: var(--brand); line-height: 1;
  font-family: var(--heading-font);
}
.ab-stat-lbl { display: block; font-size: 12px; color: var(--muted); margin-top: 5px; }
.ab-stat-div { width: 1px; height: 40px; background: var(--border); }

.about-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }

@media (max-width: 900px) {
  .about-layout { grid-template-columns: 1fr; }
  .about-images { height: 300px; }
  .ab-img-primary { width: 68%; height: 100%; }
  .ab-img-secondary { width: 48%; height: 58%; }
}
@media (max-width: 480px) {
  .section-about { padding: 64px 0; }
  .about-stats { flex-direction: column; gap: 16px; padding: 20px; }
  .ab-stat-div { width: 80%; height: 1px; }
}

/* ═══════════════════════════════════════════
   OLD METHODOLOGY SECTION — HIDDEN
═══════════════════════════════════════════ */

/* Hide old methodology section elements */
.section-methodology,
.method-overlay,
.method-header,
.method-intro,
.method-grid,
.method-card,
.method-footer {
  display: none !important;
}

/* ═══════════════════════════════════════════
   METHODOLOGY — REDESIGNED STYLES
═══════════════════════════════════════════ */

.section-methodology-new {
  padding: 96px 0;
  background: url('../../images/our methodology.jpg') center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

/* Background overlay */
.section-methodology-new::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,28,46,0.96) 0%, rgba(26,127,108,0.92) 100%);
  z-index: 0;
}

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

/* Header styling */
.section-methodology-new .sec-tag {
  color: #ff8c00 !important;
  opacity: 1;
}

.section-methodology-new .sec-header-center h2 {
  color: #fff !important;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.25;
}

.section-methodology-new .sec-desc {
  color: rgba(255,255,255,0.7) !important;
  font-size: 1rem;
  line-height: 1.75;
}

/* Introduction Block */
.method-intro-new {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 32px 36px;
  margin-bottom: 56px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.min-content p {
  color: rgba(255,255,255,0.72);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 12px;
}

.min-content p:last-of-type {
  margin-bottom: 20px;
}

.min-highlight {
  background: rgba(255,140,0,0.25);
  border: 1px solid rgba(255,140,0,0.5);
  border-radius: 12px;
  padding: 16px 24px;
  margin-top: 20px;
}

.min-highlight strong {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Method Cards Grid - 3 in first row, 4 in second row */
.method-cards-new {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

/* First row: 3 cards with wider spacing */
.method-card-new:nth-child(1) {
  grid-column: 1 / 2;
  grid-row: 1;
}
.method-card-new:nth-child(2) {
  grid-column: 2 / 3;
  grid-row: 1;
}
.method-card-new:nth-child(3) {
  grid-column: 3 / 5;
  grid-row: 1;
}

/* Second row: 4 cards */
.method-card-new:nth-child(4) {
  grid-column: 1 / 2;
  grid-row: 2;
}
.method-card-new:nth-child(5) {
  grid-column: 2 / 3;
  grid-row: 2;
}
.method-card-new:nth-child(6) {
  grid-column: 3 / 4;
  grid-row: 2;
}
.method-card-new:nth-child(7) {
  grid-column: 4 / 5;
  grid-row: 2;
}

/* Individual Card Styling */
.method-card-new {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 14px 40px rgba(0,0,0,0.14);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.method-card-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #ff8c00;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.method-card-new:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.method-card-new:hover::before {
  transform: scaleX(1);
}

/* Card Number */
.mcn-number {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(255,140,0,0.3);
  font-family: var(--heading-font);
  line-height: 1;
  z-index: 0;
}

/* Icon */
.mcn-icon-wrap {
  width: 64px;
  height: 64px;
  background: rgba(255,140,0,0.25);
  border: 2px solid rgba(255,140,0,0.5);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.mcn-icon-wrap i {
  font-size: 1.5rem;
  color: #ff8c00;
  transition: color 0.3s ease;
}

.method-card-new:hover .mcn-icon-wrap {
  background: #ff8c00;
  border-color: #ff8c00;
  transform: scale(1.1);
}

.method-card-new:hover .mcn-icon-wrap i {
  color: #fff;
}

/* Content */
.mcn-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.method-card-new h4 {
  font-size: 1.1rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
  font-family: var(--body-font);
}

.method-card-new p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 12px;
}

.method-card-new p:last-child {
  margin-bottom: 0;
}

.method-card-new p strong {
  color: rgba(255,255,255,0.9);
  font-weight: 600;
}

.mcn-emphasis {
  color: rgba(255,255,255,0.85) !important;
  font-weight: 500 !important;
  font-style: italic;
}

/* Lists */
.mcn-list {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}

.mcn-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

.mcn-list li::before {
  content: '•';
  color: #ff8c00;
  font-weight: 900;
  font-size: 16px;
  flex-shrink: 0;
}

/* Footer */
.method-footer-new {
  text-align: center;
  margin-top: 48px;
}

.method-footer-text {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-top: 16px;
  line-height: 1.6;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .method-cards-new {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  
  /* Reset positioning for smaller screens */
  .method-card-new:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1;
  }
  .method-card-new:nth-child(2) {
    grid-column: 2 / 3;
    grid-row: 1;
  }
  .method-card-new:nth-child(3) {
    grid-column: 3 / 4;
    grid-row: 1;
  }
  .method-card-new:nth-child(4) {
    grid-column: 1 / 2;
    grid-row: 2;
  }
  .method-card-new:nth-child(5) {
    grid-column: 2 / 3;
    grid-row: 2;
  }
  .method-card-new:nth-child(6) {
    grid-column: 3 / 4;
    grid-row: 2;
  }
  .method-card-new:nth-child(7) {
    grid-column: 1 / 4;
    grid-row: 3;
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 900px) {
  .method-cards-new {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .method-card-new:nth-child(7) {
    grid-column: 1 / 3;
    max-width: none;
  }
  
  .method-intro-new {
    padding: 24px 28px;
    margin-bottom: 40px;
  }
}

@media (max-width: 700px) {
  .method-cards-new {
    grid-template-columns: 1fr;
  }
  
  .method-card-new:nth-child(n) {
    grid-column: 1;
    grid-row: auto;
    max-width: none;
    margin: 0;
  }
}

@media (max-width: 600px) {
  .section-methodology-new {
    padding: 64px 0;
  }
  
  .method-intro-new {
    padding: 20px 24px;
    margin-bottom: 32px;
  }
  
  .min-content p {
    font-size: 14px;
  }
  
  .min-highlight strong {
    font-size: 15px;
  }
  
  .method-card-new {
    padding: 24px 20px;
    gap: 16px;
  }
  
  .mcn-number {
    font-size: 2.8rem;
    top: 16px;
    right: 20px;
  }
  
  .mcn-icon-wrap {
    width: 56px;
    height: 56px;
  }
  
  .mcn-icon-wrap i {
    font-size: 1.3rem;
  }
  
  .method-card-new h4 {
    font-size: 1.05rem;
  }
}

/* Mobile Carousel Overrides */
@media (max-width: 767px) {
  .method-cards-new.sc-track {
    display: flex !important;
    grid-template-columns: unset !important;
  }
  
  .method-card-new.sc-item {
    flex: 0 0 85vw !important;
    max-width: 340px;
  }
  
  /* Reset all grid positioning for mobile carousel */
  .method-card-new:nth-child(n) {
    grid-row: unset !important;
    grid-column: unset !important;
    max-width: 340px !important;
    margin: 0 !important;
  }
}

/* ═══════════════════════════════════════════
   6. CONDITIONS WE TREAT
═══════════════════════════════════════════ */
.section-conditions { padding: 96px 0; background: var(--warm-bg); }
.cond-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px; margin-bottom: 48px;
}
.cond-card {
  background: var(--white); border-radius: var(--radius);
  padding: 26px 22px; border: 1px solid var(--border);
  transition: all 0.25s; cursor: default;
}
.cond-card:hover {
  transform: translateY(-4px); border-color: var(--brand);
  box-shadow: 0 12px 36px rgba(211,138,80,0.12);
}
.cond-card-icon {
  width: 44px; height: 44px;
  background: color-mix(in srgb, var(--ic) 12%, white);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; margin-bottom: 14px;
}
.cond-card-icon i { color: var(--ic); font-size: 1.1rem; }
.cond-card h4 {
  font-size: 0.88rem; font-weight: 700; color: var(--charcoal);
  margin-bottom: 8px; font-family: var(--body-font);
  text-transform: uppercase; letter-spacing: 0.4px;
}
.cond-card p { font-size: 13px; color: var(--muted); line-height: 1.7; }
.cond-footer { display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap; }

@media (max-width: 1024px) { .cond-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  {
  .cond-grid { grid-template-columns: 1fr; gap: 12px; }
  .section-conditions { padding: 64px 0; }
}

/* ═══════════════════════════════════════════
   7. PROGRAMS PREVIEW
═══════════════════════════════════════════ */
.section-programs { padding: 96px 0; background: var(--white); }
.programs-hdr {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 44px; gap: 16px;
}
.programs-hdr h2 {
  font-size: clamp(1.65rem, 2.5vw, 2.3rem); color: var(--charcoal);
  margin-top: 8px; line-height: 1.25;
}
.prog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-bottom: 36px;
}
.prog-card {
  text-decoration: none; color: inherit;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
  background: var(--white);
}
.prog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.13);
  border-color: var(--brand);
}
.prog-img-wrap { height: 200px; overflow: hidden; position: relative; }
.prog-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; transition: transform 0.5s ease;
  display: block;
}
.prog-card:hover .prog-img-wrap img { transform: scale(1.06); }

/* Program overlay on hover */
.prog-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,28,46,0.92) 0%, rgba(15,28,46,0.5) 60%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 22px 18px; opacity: 0;
  transition: opacity 0.3s;
}
.prog-card:hover .prog-overlay { opacity: 1; }
.prog-overlay p { font-size: 13px; color: rgba(255,255,255,0.88); line-height: 1.6; margin-bottom: 12px; }
.prog-learn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; color: var(--brand);
}
.prog-body { padding: 18px 20px 20px; }
.prog-body h4 { font-size: 1rem; color: var(--charcoal); margin-bottom: 5px; }
.prog-tag { font-size: 12.5px; color: var(--forest); font-weight: 500; }
.prog-footer { text-align: center; }

@media (max-width: 900px) { .prog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  {
  .prog-grid { grid-template-columns: 1fr; }
  .section-programs { padding: 64px 0; }
}

/* ═══════════════════════════════════════════
   8. SUCCESS STORIES — Premium Dark
═══════════════════════════════════════════ */
.section-stories {
  padding: 100px 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.section-stories::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--brand) 0%, #f5c48a 60%, transparent 100%);
  z-index: 1;
}
.section-stories::after {
  content: '';
  position: absolute; bottom: -120px; right: -80px;
  width: 520px; height: 520px;
  background: radial-gradient(ellipse, rgba(211,138,80,0.09) 0%, transparent 70%);
  pointer-events: none;
}

.section-stories .sec-tag { color: var(--brand) !important; }
.section-stories .sec-header-center h2 { color: #fff !important; }
.section-stories .sec-desc { color: rgba(255,255,255,0.6) !important; }

.stories-carousel { position: relative; z-index: 1; }

/* ── Slide: single full-width card ── */
.story-slide {
  display: none;
  border-radius: 18px;
  overflow: hidden;
}
.story-slide.active { display: block; }

/* ── Text panel: full width ── */
.story-text {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 44px 52px;
  display: flex; flex-direction: column;
}

.story-quote-mark { margin-bottom: 16px; }
.story-quote-mark i {
  font-size: 2.8rem; color: var(--brand); opacity: 0.9; line-height: 1;
}

.story-text h4 {
  font-size: 1.25rem; color: #fff; font-weight: 700;
  margin-bottom: 16px; line-height: 1.4;
  font-family: var(--heading-font);
}

/* Preview paragraph — always visible */
.story-preview {
  font-size: 15px; color: rgba(255,255,255,0.75);
  line-height: 1.9; margin-bottom: 0;
}

/* Full content — hidden by default */
.story-full {
  display: none;
  margin-top: 16px;
}
.story-full p {
  font-size: 15px; color: rgba(255,255,255,0.72);
  line-height: 1.9; margin-bottom: 14px;
}
.story-full .story-pre {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.9;
  white-space: pre-wrap;
  font-family: var(--body-font);
  tab-size: 2;
}
.story-full p:last-child { margin-bottom: 0; }
.story-full.open { display: block; }

.story-text em { color: #f5c48a; font-style: normal; font-weight: 600; }

/* Read More button */
.story-read-more {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 18px; margin-bottom: 24px;
  background: transparent;
  border: 1.5px solid rgba(211,138,80,0.5);
  color: var(--brand);
  padding: 9px 22px; border-radius: 100px;
  font-family: var(--body-font); font-size: 13px; font-weight: 600;
  cursor: pointer; transition: all 0.22s; align-self: flex-start;
}
.story-read-more:hover {
  background: var(--brand); color: #fff;
  border-color: var(--brand);
}
.story-read-more i { font-size: 11px; transition: transform 0.25s; }
.story-read-more.open i { transform: rotate(180deg); }

/* Metrics row */
.story-metrics {
  display: flex; align-items: center; gap: 20px;
  flex-wrap: wrap; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: auto;
}
.sm-item {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; color: rgba(255,255,255,0.6); font-weight: 500;
}
.sm-item i { color: var(--brand); font-size: 12px; }

/* ── Nav: arrows + dots BELOW slide ── */
.car-nav {
  display: flex; align-items: center;
  justify-content: center; gap: 16px;
  margin-top: 32px;
}
.car-btn {
  position: static !important; transform: none !important;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.18);
  color: #fff; cursor: pointer;
  display: flex !important; align-items: center; justify-content: center;
  font-size: 14px; transition: all 0.22s; flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.car-btn:hover {
  background: var(--brand) !important;
  border-color: var(--brand) !important;
  box-shadow: 0 6px 20px rgba(211,138,80,0.4);
}
.car-dots { display: flex; gap: 8px; align-items: center; }
.c-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.2); border: none;
  cursor: pointer; transition: all 0.25s; padding: 0;
}
.c-dot.active {
  background: var(--brand);
  width: 28px; border-radius: 4px;
  transform: none;
}

@media (max-width: 860px) {
  .story-text { padding: 32px 32px; }
}
@media (max-width: 580px) {
  .section-stories { padding: 64px 0; }
  .story-text { padding: 28px 22px; }
  .story-text h4 { font-size: 1.05rem; }
  .story-preview, .story-full p, .story-full .story-pre { font-size: 14px; }
  .story-metrics { gap: 12px; }
}

/* ═══════════════════════════════════════════
   9. WHY CHOOSE LIVINE — replaced by new design in carousel block
═══════════════════════════════════════════ */

/* ═══════════════════════════════════════════
   10. OUR PROCESS
═══════════════════════════════════════════ */
.section-process { padding: 96px 0; background: var(--warm-bg); }
.process-track {
  display: flex; align-items: flex-start;
  justify-content: space-between;
  position: relative; margin-bottom: 48px;
  gap: 4px;
}
.process-track::before {
  content: ''; position: absolute;
  top: 25px; left: 26px; right: 26px; height: 2px;
  background: linear-gradient(to right, var(--brand), var(--forest));
  z-index: 0;
}
.pt-line { display: none; }
.pt-item {
  display: flex; flex-direction: column; align-items: center;
  gap: 14px; text-align: center; position: relative; z-index: 1;
  flex: 1;
}
.pt-circle {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--charcoal); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 700;
  border: 3px solid var(--warm-bg);
  transition: all 0.25s; flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.pt-item:hover .pt-circle,
.pt-item.last .pt-circle { background: var(--brand); }
.pt-label {
  font-size: 11.5px; color: var(--charcoal); font-weight: 600;
  line-height: 1.4; max-width: 82px;
}
.process-cta { text-align: center; }

@media (max-width: 800px) {
  .process-track { flex-direction: column; align-items: flex-start; gap: 0; }
  .process-track::before { display: none; }
  .pt-item { flex-direction: row; align-items: center; gap: 18px; padding: 14px 0; border-bottom: 1px solid var(--border); text-align: left; width: 100%; }
  .pt-item:last-child { border-bottom: none; }
  .pt-label { max-width: none; font-size: 14px; }
}
@media (max-width: 480px) { .section-process { padding: 64px 0; } }

/* ═══════════════════════════════════════════
   11. BLOG PREVIEW
═══════════════════════════════════════════ */
.section-blog { padding: 96px 0; background: var(--white); }
.blog-hdr {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 44px; gap: 16px;
}
.blog-hdr h2 { font-size: clamp(1.65rem, 2.5vw, 2.2rem); color: var(--charcoal); margin-top: 8px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  text-decoration: none; color: inherit;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s; background: var(--white);
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 16px 44px rgba(0,0,0,0.11); border-color: var(--brand); }
.bc-img-wrap { height: 210px; overflow: hidden; flex-shrink: 0; }
.bc-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; display: block; }
.blog-card:hover .bc-img-wrap img { transform: scale(1.05); }
.bc-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.bc-tag {
  display: inline-block; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.2px;
  color: var(--brand); margin-bottom: 10px;
}
.bc-body h4 {
  font-size: 1rem; color: var(--charcoal); line-height: 1.5;
  margin-bottom: 10px; flex: 1;
}
.bc-body p { font-size: 13.5px; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.bc-read {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 600; color: var(--brand);
  transition: gap 0.2s;
}
.blog-card:hover .bc-read { gap: 11px; }
.blog-footer { text-align: center; margin-top: 32px; }

@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr; gap: 16px; } }
@media (max-width: 480px) { .section-blog { padding: 64px 0; } }

/* ═══════════════════════════════════════════
   12. WEBINARS STRIP
═══════════════════════════════════════════ */
.section-webinar { padding: 64px 0; background: var(--warm-bg); }
.webinar-strip {
  display: flex; align-items: center; gap: 32px;
  background: var(--charcoal); border-radius: var(--radius);
  padding: 44px 52px; flex-wrap: wrap;
  border-left: 6px solid var(--brand);
}
.ws-icon {
  width: 60px; height: 60px; background: rgba(211,138,80,0.12);
  border-radius: var(--radius); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.ws-icon i { color: var(--brand); font-size: 1.5rem; }
.ws-body { flex: 1; min-width: 200px; }
.ws-tag {
  display: inline-block; background: var(--brand); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 4px 12px; border-radius: 3px; margin-bottom: 10px;
}
.ws-body h3 { font-size: 1.4rem; color: #fff; margin-bottom: 6px; }
.ws-body p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.7; }
.ws-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--brand); color: #fff;
  padding: 14px 28px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.93rem; text-decoration: none;
  transition: all 0.25s; flex-shrink: 0;
}
.ws-cta:hover { background: var(--brand-dk); transform: translateY(-2px); }

@media (max-width: 768px) {
  .webinar-strip { padding: 32px 24px; flex-direction: column; align-items: flex-start; }
  .ws-cta { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════════
   13. FINAL CTA
═══════════════════════════════════════════ */
.section-final-cta {
  position: relative; padding: 120px 0;
  background: url('../../images/hero-bg.png') center/cover no-repeat;
  text-align: center; overflow: hidden;
}
.fca-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,28,46,0.95), rgba(26,127,108,0.88));
}
.fca-body { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.fca-body h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); color: #fff !important; margin-bottom: 16px; }
.fca-body p { color: rgba(255,255,255,0.78) !important; font-size: 1.05rem; margin-bottom: 36px; line-height: 1.75; }
.fca-btns { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25d366; color: #fff;
  padding: 15px 30px; border-radius: var(--radius-sm);
  font-weight: 700; font-size: 0.95rem; text-decoration: none;
  transition: all 0.25s;
}
.btn-whatsapp:hover { background: #1aad55; transform: translateY(-2px); }

@media (max-width: 480px) {
  .section-final-cta { padding: 72px 0; }
  .fca-btns { flex-direction: column; }
  .h-btn-primary, .btn-whatsapp { justify-content: center; width: 100%; max-width: 300px; }
}

/* ═══════════════════════════════════════════
   14. FOOTER
═══════════════════════════════════════════ */
.footer-top-strip {
  background: var(--brand); padding: 20px 0;
}
.footer-top-strip .container {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.footer-top-strip p { font-size: 1rem; font-weight: 600; color: #fff; margin: 0; font-style: italic; }
.btn-footer-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--brand);
  padding: 11px 24px; border-radius: var(--radius-sm);
  font-weight: 700; font-size: 0.88rem;
  border: none; cursor: pointer; transition: all 0.25s; white-space: nowrap;
  font-family: inherit;
}
.btn-footer-cta:hover { background: var(--charcoal); color: #fff; }

.footer-body { background: #1A2332; padding: 72px 0 48px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 48px; }
.footer-logo { width: 140px; height: auto; margin-bottom: 16px; }
.ft-tagline { color: #f5c48a; font-size: 13px; font-weight: 600; display: block; margin-bottom: 10px; }
.ft-desc { color: rgba(255,255,255,0.5); font-size: 13.5px; line-height: 1.8; margin-bottom: 24px; }
.ft-social { display: flex; gap: 10px; }
.ft-social a {
  width: 38px; height: 38px; background: rgba(255,255,255,0.07);
  border-radius: var(--radius-sm); display: flex; align-items: center;
  justify-content: center; color: rgba(255,255,255,0.6);
  font-size: 14px; text-decoration: none; transition: all 0.25s;
}
.ft-social a:hover { background: var(--brand); color: #fff; transform: translateY(-2px); }

.footer-col h5 {
  color: #fff; font-size: 0.83rem; font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase;
  margin-bottom: 18px; font-family: var(--body-font);
}
.ft-sub-h5 { margin-top: 28px !important; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul a {
  color: rgba(255,255,255,0.5); font-size: 13.5px;
  text-decoration: none; transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--brand); }
.ft-view-all { color: var(--brand) !important; font-weight: 600; }
.ft-contact { list-style: none; padding: 0; }
.ft-contact li {
  display: flex; align-items: flex-start; gap: 12px;
  color: rgba(255,255,255,0.5); font-size: 13px;
  margin-bottom: 12px; line-height: 1.6;
}
.ft-contact i { color: var(--brand); flex-shrink: 0; margin-top: 3px; width: 14px; }
.ft-contact a { color: rgba(255,255,255,0.5); text-decoration: none; }
.ft-contact a:hover { color: var(--brand); }

.footer-base { background: #0F1C2E; padding: 22px 0; }
.ft-disclaimer {
  color: rgba(255,255,255,0.3); font-size: 11.5px;
  max-width: 820px; margin: 0 auto 16px; text-align: center; line-height: 1.75;
}
.ft-base-row {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.ft-base-row p { color: rgba(255,255,255,0.4); font-size: 12.5px; margin: 0; }
.ft-legal { display: flex; gap: 20px; }
.ft-legal a { color: rgba(255,255,255,0.38); font-size: 12.5px; text-decoration: none; transition: color 0.2s; }
.ft-legal a:hover { color: var(--brand); }
.ft-dev { color: var(--brand) !important; text-decoration: none; font-weight: 600; }

@media (max-width: 1100px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-top-strip .container { flex-direction: column; text-align: center; }
  .ft-base-row { flex-direction: column; align-items: center; text-align: center; }
}

/* ═══════════════════════════════════════════
   FLOATING ACTION BUTTONS
═══════════════════════════════════════════ */
/* Shared float base */
.wa-float,
.call-float {
  position: fixed; right: 22px;
  width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.5rem; text-decoration: none;
  z-index: 998; transition: all 0.28s;
}

/* WhatsApp — keep green */
.wa-float {
  bottom: 26px;
  background: #25d366;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
}
.wa-float:hover { background: #1aad55; transform: scale(1.1); }

/* Phone Call — brand orange */
.call-float {
  bottom: 92px;
  background: var(--brand);
  box-shadow: 0 6px 24px rgba(211,138,80,0.45);
  font-size: 1.3rem;
}
.call-float:hover { background: var(--brand-dk); transform: scale(1.1); }

/* Tooltip shared */
.float-tooltip {
  position: absolute; right: 64px;
  background: var(--charcoal); color: #fff;
  padding: 7px 13px; border-radius: var(--radius-sm);
  font-size: 12px; font-weight: 500; white-space: nowrap;
  opacity: 0; transform: translateX(8px);
  transition: all 0.22s; pointer-events: none;
}
.float-tooltip::after {
  content: ''; position: absolute; left: 100%; top: 50%;
  transform: translateY(-50%); border: 5px solid transparent;
  border-left-color: var(--charcoal);
}
.wa-float:hover .float-tooltip,
.call-float:hover .float-tooltip { opacity: 1; transform: translateX(0); }

/* ═══════════════════════════════════════════
   MOBILE NAV — override style.css 768px conflict
═══════════════════════════════════════════ */
/* style.css @768px sets `.navbar .nav-links` to left:-100% which fights our right:0 panel */
@media (max-width: 768px) {
  .navbar .nav-links,
  .nav-links {
    left: auto !important;
    right: 0 !important;
    top: 0 !important;
    width: 82% !important;
    max-width: 300px !important;
    height: 100vh !important;
    display: none !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    padding: 128px 0 40px !important;
    gap: 0 !important;
  }
  .navbar .nav-links.active,
  .nav-links.active {
    display: flex !important;
    left: auto !important;
  }
}

/* ═══════════════════════════════════════════
   MOBILE NAV OVERLAY LOCK
═══════════════════════════════════════════ */
body.nav-open { overflow: hidden; }

/* Dim backdrop when mobile nav is open */
body.nav-open::before {
  content: '';
  position: fixed; inset: 0;
  background: rgba(15,28,46,0.6);
  z-index: 998;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

/* ═══════════════════════════════════════════
   UI / UX IMPROVEMENTS
═══════════════════════════════════════════ */

/* Quick links — handled in quick-links-bar responsive block above */

/* Blog — 2 cols on tablet (≥768px, not carousel breakpoint) */
@media (min-width: 768px) and (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Conditions grid — 2 cols on tablet */
@media (min-width: 768px) and (max-width: 1024px) {
  .cond-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Methodology — 4 col on large desktop */
@media (min-width: 1200px) {
  .method-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Hero h1 line breaks on mobile */
@media (max-width: 480px) {
  .hero-content h1 { font-size: 2.2rem; }
  .hero-desc { font-size: 0.93rem; }
}

/* Smoother card hover on touch devices */
@media (hover: none) {
  .cond-card:hover,
  .prog-card:hover,
  .blog-card:hover { transform: none; }
  .prog-card:hover .prog-overlay { opacity: 0; }
}

/* Section CTA footer — consistent spacing */
.cond-footer,
.prog-footer,
.blog-footer,
.method-footer { margin-top: 48px; }

/* Section background alternation */
.section-problem   { background: var(--warm-bg); }
.section-about     { background: var(--white); }
.section-conditions{ background: var(--warm-bg); }
.section-programs  { background: var(--white); }
/* .section-why  — dark charcoal (set in why redesign block below) */
.section-blog      { background: var(--white); }
.section-webinar   { background: var(--warm-bg); }

/* About section: improve image stack overlap on medium screens */
@media (min-width: 640px) and (max-width: 900px) {
  .about-images { height: 380px; }
  .ab-img-primary { width: 65%; height: 95%; }
  .ab-img-secondary { width: 52%; height: 62%; }
}

/* Footer grid — 3 col on medium screens */
@media (min-width: 769px) and (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 32px; }
}

/* Nav links hover color */
.nav-links a:hover { color: var(--brand); }
.nav-links a.active { color: var(--brand); }

/* Improve section tag spacing */
.sec-tag { margin-bottom: 12px; }

/* Scroll-to-top helper — smooth scrolling */
html { scroll-behavior: smooth; }

/* ═══════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ═══════════════════════════════════════════════════════
   SWIPE CAROUSEL — mobile snap scroll for grids
   .sc-wrap  = outer container (clips overflow)
   .sc-track = the scrollable row (method-grid / cond-grid / prog-grid / blog-grid)
   .sc-item  = each card
   .sc-nav   = arrows + dots injected by JS
═══════════════════════════════════════════════════════ */

/* ── Desktop: no carousel, just normal grid ── */
.sc-wrap { width: 100%; }

/* ── Mobile: activate carousel ── */
@media (max-width: 767px) {
  .sc-wrap {
    position: relative;
  }
  /* Make the grid a horizontal scroll row */
  .sc-wrap .sc-track {
    display: flex !important;
    flex-direction: row !important;
    grid-template-columns: unset !important;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 14px !important;
    padding-bottom: 6px;
    margin-bottom: 0 !important;
    /* prevent rubber-band affecting vertical scroll */
    overscroll-behavior-x: contain;
  }
  .sc-wrap .sc-track::-webkit-scrollbar { display: none; }

  /* Each card: fixed width so 1.1 cards peek on right */
  .sc-wrap .sc-item {
    flex: 0 0 82vw !important;
    max-width: 300px;
    scroll-snap-align: start;
    width: 82vw;
  }

  /* Conditions + methodology cards show slightly narrower (2 peek) */
  .sc-wrap[data-carousel="cond"] .sc-item,
  .sc-wrap[data-carousel="method"] .sc-item {
    flex: 0 0 72vw !important;
    max-width: 260px;
  }

  /* Problem + Why cards: slightly wider (one-at-a-time) */
  .sc-wrap[data-carousel="prob"] .sc-item,
  .sc-wrap[data-carousel="why"] .sc-item {
    flex: 0 0 84vw !important;
    max-width: 320px;
  }

  /* Method cards: fix height so they're uniform */
  .method-card.sc-item {
    min-height: 160px;
  }

  /* Prog card image height on mobile */
  .prog-card.sc-item .prog-img-wrap { height: 170px; }

  /* Nav row: arrows + dots centered below track */
  .sc-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 20px;
  }
  .sc-arrow {
    width: 38px; height: 38px; border-radius: 50%;
    background: var(--white); border: 1.5px solid var(--border);
    color: var(--charcoal); font-size: 13px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all 0.2s;
    flex-shrink: 0; box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  }
  .sc-arrow:hover, .sc-arrow:active {
    background: var(--brand); border-color: var(--brand); color: #fff;
  }
  .sc-dots {
    display: flex; gap: 6px; align-items: center;
  }
  .sc-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--border); border: none; padding: 0; cursor: pointer;
    transition: all 0.25s;
  }
  .sc-dot.active {
    background: var(--brand);
    width: 22px; border-radius: 4px;
  }

  /* Override existing responsive rules that fight the carousel */
  .section-methodology .method-grid,
  .section-conditions .cond-grid,
  .section-programs .prog-grid,
  .section-blog .blog-grid,
  .section-problem .prob-cards,
  .section-why .why-cards {
    grid-template-columns: unset;
  }
}

/* ── Tablet: show 2 cards per view, no arrows ── */
@media (min-width: 768px) {
  .sc-nav { display: none; } /* arrows only on mobile */
}

/* ═══════════════════════════════════════════
   OLD WHY CHOOSE LIVINE SECTION — HIDDEN
═══════════════════════════════════════════ */

/* Hide old why section elements */
.section-why,
.why-inner,
.why-left,
.why-cards-wrap,
.why-cards,
.why-card,
.why-stats-row,
.ws-stat,
.why-quote-center,
.why-bottom {
  display: none !important;
}

/* ═══════════════════════════════════════════
   WHY CHOOSE LIVINE — REDESIGNED STYLES
═══════════════════════════════════════════ */

.section-why-new {
  padding: 96px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

/* Top accent stripe */
.section-why-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand) 0%, #f5c48a 100%);
  z-index: 1;
}

/* Stats Grid */
.why-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.why-stat-card {
  background: var(--brand-lt);
  border: 2px solid var(--brand-mid);
  border-radius: 16px;
  padding: 24px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.why-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.why-stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand);
  box-shadow: 0 12px 32px rgba(211,138,80,0.2);
}

.why-stat-card:hover::before {
  transform: scaleX(1);
}

.wsc-icon {
  width: 48px;
  height: 48px;
  background: var(--brand);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.wsc-icon i {
  color: #fff;
  font-size: 1.2rem;
}

.why-stat-card:hover .wsc-icon {
  transform: scale(1.1);
}

.wsc-content {
  flex: 1;
}

.wsc-num {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--brand);
  line-height: 1;
  font-family: var(--heading-font);
  margin-bottom: 4px;
}

.wsc-label {
  display: block;
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.3;
}

/* Quote Block */
.why-quote-new {
  background: var(--charcoal);
  border-radius: 20px;
  padding: 40px 48px;
  margin-bottom: 56px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.why-quote-new::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(211,138,80,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.wqn-icon {
  margin-bottom: 20px;
}

.wqn-icon i {
  font-size: 2.5rem;
  color: var(--brand);
  opacity: 0.9;
}

.why-quote-new blockquote {
  font-family: var(--heading-font);
  font-style: italic;
  font-size: 1.3rem;
  color: #fff;
  line-height: 1.6;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Feature Cards Grid */
.why-features-new {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.why-feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand) 0%, #f5c48a 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.why-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.12);
  border-color: var(--brand);
}

.why-feature-card:hover::before {
  transform: scaleX(1);
}

/* Card Number */
.wfc-number {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(211,138,80,0.1);
  font-family: var(--heading-font);
  line-height: 1;
  z-index: 0;
}

/* Icon */
.wfc-icon-wrap {
  width: 64px;
  height: 64px;
  background: var(--brand-lt);
  border: 2px solid var(--brand-mid);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.wfc-icon-wrap i {
  font-size: 1.5rem;
  color: var(--brand);
  transition: color 0.3s ease;
}

.why-feature-card:hover .wfc-icon-wrap {
  background: var(--brand);
  border-color: var(--brand);
  transform: scale(1.1);
}

.why-feature-card:hover .wfc-icon-wrap i {
  color: #fff;
}

/* Content */
.wfc-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.why-feature-card h4 {
  font-size: 1.15rem;
  color: var(--charcoal);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
  font-family: var(--body-font);
}

.why-feature-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

.why-feature-card p:last-child {
  margin-bottom: 0;
}

.why-feature-card p strong {
  color: var(--charcoal);
  font-weight: 600;
}

/* Lists */
.wfc-list {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}

.wfc-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
}

.wfc-list li::before {
  content: '•';
  color: var(--brand);
  font-weight: 900;
  font-size: 16px;
  flex-shrink: 0;
}

/* Footer */
.why-footer {
  text-align: center;
  margin-top: 48px;
}

.why-footer-text {
  font-size: 14px;
  color: var(--muted);
  margin-top: 16px;
  line-height: 1.6;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .why-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .why-features-new {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .why-features-new {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .why-quote-new {
    padding: 32px 28px;
  }
  
  .why-quote-new blockquote {
    font-size: 1.1rem;
  }
}

@media (max-width: 700px) {
  .why-features-new {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .section-why-new {
    padding: 64px 0;
  }
  
  .why-stats-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 32px;
  }
  
  .why-stat-card {
    padding: 20px 16px;
    gap: 12px;
  }
  
  .wsc-icon {
    width: 40px;
    height: 40px;
  }
  
  .wsc-icon i {
    font-size: 1rem;
  }
  
  .wsc-num {
    font-size: 1.5rem;
  }
  
  .why-quote-new {
    padding: 24px 20px;
    margin-bottom: 40px;
  }
  
  .wqn-icon i {
    font-size: 2rem;
  }
  
  .why-quote-new blockquote {
    font-size: 1rem;
  }
  
  .why-feature-card {
    padding: 24px 20px;
    gap: 16px;
  }
  
  .wfc-number {
    font-size: 2.5rem;
    top: 16px;
    right: 20px;
  }
  
  .wfc-icon-wrap {
    width: 56px;
    height: 56px;
  }
  
  .wfc-icon-wrap i {
    font-size: 1.3rem;
  }
  
  .why-feature-card h4 {
    font-size: 1.05rem;
  }
}

/* Mobile Carousel Overrides */
@media (max-width: 767px) {
  .why-features-new.sc-track {
    display: flex !important;
    grid-template-columns: unset !important;
  }
  
  .why-feature-card.sc-item {
    flex: 0 0 85vw !important;
    max-width: 340px;
  }
  
  .why-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
