/* =====================================================
   Witt Wellness — style.css v7
   Purple + Coral — distinct from Hi Movement (blue)
   and Hi Krissy (green #4a9b6f). Fonts: Baloo 2 (headings/
   labels/site title) + Inter (body). Orange accent #e1755a
   aligned across all three brands.
   ===================================================== */

/* ── Custom properties ── */
:root {
  /* Witt Wellness — Purple + Coral */
  --ww-purple:        #7C5CBF;
  --ww-purple-dark:   #5a3d94;
  --ww-purple-light:  #F2EDFB;
  --ww-purple-mid:    #D6C5F0;
  --ww-coral:         #e1755a;   /* aligned with Hi Movement & Hi Krissy orange */
  --ww-coral-light:   #ffe0d7;   /* aligned with Hi Movement coral-light */

  /* Hi Movement — Blue */
  --hm-blue:          #3b82af;
  --hm-blue-dark:     #2e6f9f;
  --hm-blue-light:    #E8F3FB;
  --hm-blue-mid:      #C5DFF0;

  /* Hi Krissy — Sage Green */
  --hk-teal:          #4a9b6f;
  --hk-teal-dark:     #3a7d58;
  --hk-teal-light:    #e8f5ee;
  --hk-teal-mid:      #b8dfc9;

  /* Shared palette — matched to Hi Movement design system */
  --navy:             #232933;
  --navy-light:       #4f5661;
  --text-body:        #4f5661;
  --text-light:       #718096;
  --border:           #e2e8f0;
  --bg-muted:         #ede6f8;
  --white:            #ffffff;

  /* Radius — rounded-full on buttons, rounded-2xl on cards */
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 1px 8px rgba(35,41,51,0.06);
  --shadow-md:  0 4px 24px rgba(35,41,51,0.10);
  --shadow-lg:  0 12px 48px rgba(35,41,51,0.14);
  --shadow-xl:  0 20px 64px rgba(35,41,51,0.18);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  background: #faf7ff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3 {
  line-height: 1.15;
  color: var(--navy);
}
h1 {
  font-family: 'Baloo 2', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
}
h1 span.accent {
  font-style: italic;
  color: var(--ww-purple);
}
h2 {
  font-family: 'Baloo 2', sans-serif;
  font-size: clamp(1.7rem, 3.5vw, 2.8rem); font-weight: 700;
}
h3 {
  font-family: 'Baloo 2', sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.3rem); font-weight: 700; color: var(--navy);
}
p  { color: var(--text-body); line-height: 1.75; }

/* ── Layout ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Skip link ── */
.skip-link {
  position: absolute; top: -100px; left: 16px; z-index: 9999;
  background: var(--ww-purple); color: #fff;
  padding: 8px 16px; border-radius: var(--radius-sm); font-size: 14px;
}
.skip-link:focus { top: 16px; }

/* ── Section label ── */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Baloo 2', sans-serif;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ww-purple);
  background: var(--ww-purple-light);
  padding: 6px 14px; border-radius: var(--radius-full);
  margin-bottom: 16px;
}

/* ── Section header ── */
.section-header {
  text-align: center; margin-bottom: 64px;
}
.section-header h2 { margin-bottom: 12px; }
.section-header p { max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius-full);
  font-family: 'Inter', sans-serif; font-size: 0.9rem; font-weight: 600;
  cursor: pointer; border: 2px solid transparent;
  transition: all 0.2s ease; text-decoration: none; white-space: nowrap;
}
.btn--lg { padding: 16px 36px; font-size: 1rem; }

/* Coral / orange — shared CTA across all brands (#e1755a aligned with Hi Movement) */
.btn--coral {
  background: var(--ww-coral); color: #fff; border-color: var(--ww-coral);
  box-shadow: 0 4px 14px rgba(225,117,90,0.35);
}
.btn--coral:hover { background: #c9623e; border-color: #c9623e; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(225,117,90,0.4); }

/* Purple — Witt Wellness primary */
.btn--purple {
  background: var(--ww-purple); color: #fff; border-color: var(--ww-purple);
}
.btn--purple:hover { background: var(--ww-purple-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--purple-outline {
  background: transparent; color: var(--ww-purple); border-color: var(--ww-purple);
}
.btn--purple-outline:hover { background: var(--ww-purple-light); transform: translateY(-1px); }

/* Hi Movement blue */
.btn--hm {
  background: var(--hm-blue); color: #fff; border-color: var(--hm-blue);
}
.btn--hm:hover { background: var(--hm-blue-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--hm-outline {
  background: transparent; color: var(--hm-blue); border-color: var(--hm-blue);
}
.btn--hm-outline:hover { background: var(--hm-blue-light); transform: translateY(-1px); }

/* Hi Krissy teal */
.btn--hk {
  background: var(--hk-teal); color: #fff; border-color: var(--hk-teal);
}
.btn--hk:hover { background: var(--hk-teal-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--hk-outline {
  background: transparent; color: var(--hk-teal); border-color: var(--hk-teal);
}
.btn--hk-outline:hover { background: var(--hk-teal-light); transform: translateY(-1px); }

/* White outline — for dark backgrounds */
.btn--outline-white {
  background: transparent; color: #fff; border-color: rgba(255,255,255,0.5);
}
.btn--outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* Small white — for strips */
.btn--white-sm {
  background: rgba(255,255,255,0.18); color: #fff; border-color: rgba(255,255,255,0.35);
  padding: 8px 18px; font-size: 0.82rem;
}
.btn--white-sm:hover { background: rgba(255,255,255,0.28); border-color: rgba(255,255,255,0.6); }

/* ── Announcement bar ── */
.announcement-bar {
  background: linear-gradient(90deg, var(--ww-purple) 0%, var(--hm-blue) 100%);
  padding: 10px 0;
  text-align: center;
}
.announcement-text {
  font-size: 0.88rem; font-weight: 500;
  color: #fff; margin: 0; line-height: 1.5;
}
.announcement-text strong { font-weight: 700; color: #fff; }
.announcement-emoji { margin-right: 4px; }
.announcement-link {
  color: #fff; font-weight: 700;
  text-decoration: underline; text-underline-offset: 2px;
  white-space: nowrap;
}
.announcement-link:hover { opacity: 0.85; }
@media (max-width: 600px) {
  .announcement-text { font-size: 0.78rem; }
}

/* ── Header ── */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 85px; gap: 16px;
}
.header-logo {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.header-logo img { height: 59px; width: auto; object-fit: contain; }
.header-logo-text { line-height: 1.2; }
.header-logo-name {
  display: block; font-family: 'Baloo 2', sans-serif;
  font-size: 0.95rem; font-weight: 700; color: var(--ww-purple);
}
.header-logo-sub {
  display: block; font-size: 0.62rem; letter-spacing: 0.07em;
  text-transform: uppercase; color: var(--text-light);
}
.header-nav {
  display: flex; align-items: center; gap: 32px;
}
.nav-link {
  font-size: 1rem; font-weight: 500; color: var(--text-body);
  transition: color 0.2s;
}
.nav-link:hover { color: var(--navy); }
.nav-cta {
  font-family: 'Baloo 2', sans-serif;
  font-size: 0.95rem; font-weight: 600;
  padding: 10px 20px; border-radius: var(--radius-full);
  transition: all 0.2s;
}
.nav-cta--hm { background: var(--hm-blue-light); color: var(--hm-blue); }
.nav-cta--hm:hover { background: var(--hm-blue); color: #fff; }
.nav-cta--hk { background: var(--hk-teal-light); color: var(--hk-teal); }
.nav-cta--hk:hover { background: var(--hk-teal); color: #fff; }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--navy); border-radius: 2px; transition: all 0.25s;
}

/* ── Hero section ── */
.hero {
  padding: 96px 0 80px;
  background: var(--white);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 80% 50%, var(--ww-purple-light) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 440px;
  gap: 64px; align-items: center; position: relative;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Baloo 2', sans-serif;
  font-size: 0.82rem; font-weight: 600; color: var(--ww-purple);
  background: var(--ww-purple-light); padding: 8px 18px;
  border-radius: var(--radius-full); margin-bottom: 24px;
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--ww-coral); flex-shrink: 0;
}
.hero h1 {
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: italic; color: var(--ww-purple);
}
.hero-lead {
  font-size: 1.1rem; color: var(--text-body);
  max-width: 480px; margin-bottom: 36px; line-height: 1.75;
}
.hero-ctas {
  display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px;
}
.hero-proof {
  display: flex; align-items: center; gap: 14px;
}
.proof-avatars {
  display: flex;
}
.proof-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--ww-purple); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 700;
  border: 2px solid var(--white);
  margin-left: -8px;
}
.proof-avatar:first-child { margin-left: 0; background: var(--hm-blue); }
.proof-avatar:nth-child(2) { background: var(--hk-teal); }
.proof-avatar:nth-child(3) { background: var(--ww-coral); }
.proof-avatar:nth-child(4) { background: var(--navy); }
.hero-proof p { font-size: 0.85rem; font-weight: 500; color: var(--text-body); margin: 0; }
.hero-image { position: relative; }
.hero-image img {
  width: 100%; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5; object-fit: cover; object-position: top;
}
.hero-image--logo img {
  aspect-ratio: auto; object-fit: contain;
  box-shadow: none; border-radius: 0;
  width: 100%; max-width: 520px; margin: 0 auto;
}
.hero-badge-float {
  position: absolute; bottom: -16px; left: -20px;
  background: var(--white); border-radius: var(--radius-md);
  padding: 14px 18px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
  max-width: 240px;
}
.badge-float-icon {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  background: var(--ww-purple-light); color: var(--ww-purple);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.hero-badge-float strong { display: block; font-size: 0.85rem; color: var(--navy); }
.hero-badge-float span { font-size: 0.75rem; color: var(--text-light); }

/* ── Promo strip ── */
.promo-strip {
  background: var(--ww-purple-dark);
  padding: 14px 0;
}
.promo-strip-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap;
}
.promo-strip-text {
  font-size: 0.875rem; color: rgba(255,255,255,0.9);
}
.promo-strip-text strong { color: #fff; }
.promo-strip-divider {
  color: rgba(255,255,255,0.3); font-size: 1.2rem;
}

/* ── Brand section ── */
.brand-section {
  background: var(--bg-muted);
  border-top: 5px solid var(--ww-coral);
  padding: 96px 0;
}
.brand-cards {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.brand-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex; flex-direction: column;
}
.brand-card:hover {
  transform: translateY(-8px); box-shadow: var(--shadow-xl);
}

/* Card header — coloured bg + accent bar at top */
.brand-card-header {
  padding: 40px 40px 32px;
  border-bottom: 1px solid transparent;
  position: relative;
}
.brand-card-header::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 5px;
}
.brand-card--hm .brand-card-header {
  background: var(--hm-blue-light);
  border-bottom-color: var(--hm-blue-mid);
}
.brand-card--hm .brand-card-header::before { background: var(--hm-blue); }
.brand-card--hk .brand-card-header {
  background: var(--hk-teal-light);
  border-bottom-color: var(--hk-teal-mid);
}
.brand-card--hk .brand-card-header::before { background: var(--hk-teal); }

/* Logo */
.brand-logo {
  display: block;
  height: 56px; width: auto; max-width: 200px;
  object-fit: contain; object-position: left center;
  margin-bottom: 20px;
}

/* Tagline & meta */
.brand-card-tagline {
  font-size: 0.95rem; font-weight: 600; margin: 0 0 6px;
  line-height: 1.4;
}
.brand-card--hm .brand-card-tagline { color: var(--hm-blue); }
.brand-card--hk .brand-card-tagline { color: var(--hk-teal); }
.brand-card-location {
  font-size: 0.78rem; color: var(--text-light);
  display: flex; align-items: center; gap: 4px;
  margin-bottom: 14px;
}
.brand-card-url {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em;
  transition: opacity 0.2s;
}
.brand-card--hm .brand-card-url { color: var(--hm-blue); }
.brand-card--hk .brand-card-url { color: var(--hk-teal); }
.brand-card-url:hover { opacity: 0.7; }

/* Card body */
.brand-card-body {
  flex: 1; padding: 36px 40px 40px; display: flex; flex-direction: column;
}
.brand-desc {
  font-size: 0.975rem; line-height: 1.8; margin-bottom: 28px;
  color: var(--text-body);
}
.brand-features {
  display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px;
}
.brand-features li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.9rem; color: var(--text-body); line-height: 1.55;
}
.feature-dot {
  width: 8px; height: 8px; border-radius: 50%;
  flex-shrink: 0; margin-top: 6px;
}
.feature-dot--hm { background: var(--hm-blue); }
.feature-dot--hk { background: var(--hk-teal); }
.brand-card-actions {
  display: flex; gap: 12px; flex-wrap: wrap; margin-top: auto;
}

/* ── About section ── */
.about-section {
  background: var(--ww-purple-light);
  border-top: 5px solid var(--ww-coral);
  padding: 96px 0;
}
.about-grid {
  display: grid; grid-template-columns: 1fr 380px;
  gap: 80px; align-items: center;
}
.about-photo img {
  width: 100%; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3/4; object-fit: cover; object-position: top;
}
.about-content .section-label { margin-bottom: 16px; }
.about-content h2 { margin-bottom: 20px; }
.about-content p { margin-bottom: 16px; font-size: 1rem; }
.about-features-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin: 28px 0 32px;
}
.about-feature {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--bg-muted); border-radius: var(--radius-md);
  padding: 16px;
}
.about-feature-icon {
  font-size: 1.3rem; flex-shrink: 0;
}
.about-feature strong { display: block; font-size: 0.875rem; color: var(--navy); font-weight: 600; }
.about-feature span  { font-size: 0.78rem; color: var(--text-light); }
.about-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.about-read-more {
  display: inline-block; margin-top: 4px; margin-bottom: 24px;
  font-size: 0.9rem; font-weight: 600; color: var(--ww-purple);
  text-decoration: none; border-bottom: 1px solid var(--ww-purple-mid);
  transition: color 0.2s, border-color 0.2s;
}
.about-read-more:hover { color: var(--ww-purple-dark); border-color: var(--ww-purple-dark); }

/* ── Why section ── */
.why-section {
  background: linear-gradient(180deg, var(--ww-purple-light) 0%, var(--ww-purple-mid) 100%);
  border-top: 5px solid var(--ww-coral);
  padding: 96px 0;
}
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.why-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px 28px; box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s, transform 0.25s;
  text-align: center;
}
.why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.why-icon {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  background: var(--ww-purple-light);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; color: var(--ww-purple);
}
.why-icon svg { width: 26px; height: 26px; }
.why-card h3 { font-size: 1rem; margin-bottom: 10px; }
.why-card p  { font-size: 0.875rem; line-height: 1.65; }

/* ── FAQ section ── */
.faq-section {
  background: var(--bg-muted);
  border-top: 5px solid var(--ww-coral);
  padding: 96px 0;
}
.faq-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  max-width: 960px; margin: 0 auto;
}
.faq-item {
  background: var(--white); border-radius: var(--radius-md);
  overflow: hidden; box-shadow: var(--shadow-sm);
}
.faq-item summary {
  padding: 20px 24px; font-weight: 600; font-size: 0.95rem;
  color: var(--navy); cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; transition: background 0.2s;
  font-family: 'Inter', sans-serif;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 1.3rem; color: var(--ww-purple);
  flex-shrink: 0; transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { background: var(--ww-purple-light); }
.faq-item[open] summary { background: var(--ww-purple-light); }
.faq-item p {
  padding: 0 24px 20px; font-size: 0.9rem; line-height: 1.7;
}
.faq-item p a { color: var(--ww-purple); text-decoration: underline; }

/* ── CTA section ── */
.cta-section {
  background: linear-gradient(135deg, var(--ww-purple-dark) 0%, var(--ww-purple) 100%);
  border-top: 5px solid var(--ww-coral);
  padding: 96px 0; text-align: center;
}
.cta-section h2 { color: #fff; margin-bottom: 16px; }
.cta-section p {
  color: rgba(255,255,255,0.72); max-width: 540px; margin: 0 auto 40px;
  font-size: 1.05rem;
}
.cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ── Socials section ── */
.socials-section {
  background: var(--ww-purple-light); padding: 80px 0;
}
.social-links {
  display: flex; justify-content: center; gap: 12px; flex-wrap: wrap;
}
.social-link {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 22px; border-radius: var(--radius-full);
  font-family: 'Inter', sans-serif; font-size: 0.88rem; font-weight: 600;
  transition: all 0.2s; border: 2px solid transparent;
}
.social-link svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }
.social-link:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.social-link--instagram { background: linear-gradient(135deg, #E1306C, #833AB4, #FCAF45); color: #fff; }
.social-link--instagram:hover { opacity: 0.88; }
.social-link--tiktok { background: #111; color: #fff; }
.social-link--tiktok:hover { background: #333; }
.social-link--youtube { background: #FF0000; color: #fff; }
.social-link--youtube:hover { background: #CC0000; }
.social-link--linkedin { background: #0A66C2; color: #fff; }
.social-link--linkedin:hover { background: #0855a0; }

/* ── Page hero (inner pages) ── */
.page-hero {
  padding: 72px 0 56px;
  background: var(--ww-purple-light);
  border-bottom: 1px solid var(--ww-purple-mid);
}
.page-hero-inner { max-width: 720px; }
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.15;
}
.page-hero-lead {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.65;
  max-width: 620px;
}
.page-hero .section-label { margin-bottom: 16px; }

/* Active nav link */
.nav-link--active { color: var(--ww-purple) !important; font-weight: 600; }

/* ── Nav dropdown trigger (button, not a link) ── */
.nav-dropdown-btn {
  background: none; border: none; cursor: pointer;
  font-family: inherit; font-size: 1rem; font-weight: 500;
  color: var(--text-body); transition: color 0.2s; padding: 0;
}
.nav-dropdown-btn:hover { color: var(--navy); }
.nav-dropdown-btn.nav-link--active { color: var(--ww-purple) !important; font-weight: 600; }

/* ── Nav dropdown ── */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}
/* Invisible bridge covers the gap so the hover doesn't break mid-move */
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 14px;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 240px;
  padding: 8px;
  z-index: 300;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  transition: background 0.15s;
}
.dropdown-menu a:hover { background: var(--ww-purple-light); }
.dropdown-menu a span { display: block; font-size: 0.9rem; font-weight: 600; color: var(--navy); }
.dropdown-menu a small { font-size: 0.78rem; color: var(--text-light); display: block; margin-top: 2px; }

/* Why-card link */
.why-card-link {
  display: inline-block; margin-top: 12px;
  font-size: 0.875rem; font-weight: 600; color: var(--ww-purple);
  text-decoration: none; border-bottom: 1px solid var(--ww-purple-mid);
  transition: color 0.2s, border-color 0.2s;
}
.why-card-link:hover { color: var(--ww-purple-dark); border-color: var(--ww-purple-dark); }

/* Brand comparison table */
.brand-compare {
  width: 100%; border-collapse: collapse; margin: 32px 0;
  font-size: 0.95rem;
}
.brand-compare th, .brand-compare td {
  padding: 14px 18px; text-align: left;
  border-bottom: 1px solid var(--border);
}
.brand-compare th {
  background: var(--bg-muted); font-weight: 600; color: var(--navy);
}
.brand-compare tr:last-child td { border-bottom: none; }
.brand-compare td:first-child { color: var(--text-light); font-weight: 500; }
.brand-compare .col-hm { color: var(--hm-blue); font-weight: 500; }
.brand-compare .col-hk { color: var(--hk-teal); font-weight: 500; }

/* ── Footer ── */
.site-footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 64px 0 40px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand {
  display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
}
.footer-brand img { height: 32px; width: 32px; object-fit: contain; }
.footer-brand span {
  font-family: 'Baloo 2', sans-serif;
  font-size: 0.95rem; font-weight: 700; color: var(--navy);
}
.footer-brand-col p {
  font-size: 0.875rem; color: var(--text-light); max-width: 280px;
  line-height: 1.65; margin-bottom: 6px;
}
.footer-location { font-size: 0.8rem !important; color: var(--text-light) !important; }
.footer-col h4 {
  font-family: 'Inter', sans-serif; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 0.875rem; color: var(--text-light); transition: color 0.2s;
}
.footer-col a:hover { color: var(--ww-purple); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-light); margin: 0; }
.footer-bottom a { color: var(--text-light); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--navy); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { gap: 40px; }
}

/* ─── Tablet / mobile nav breakpoint ─────────────────────────── */
@media (max-width: 900px) {

  /* Fix: backdrop-filter on .site-header creates a stacking context
     that traps position:fixed children. Remove it on mobile so the
     nav overlay can position correctly against the viewport. */
  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: #ffffff;
  }

  /* Nav — hidden by default, full-screen overlay when open */
  .header-nav { display: none; }
  .header-nav.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px; left: 0; right: 0; bottom: 0;
    background: #ffffff;
    padding: 24px 20px 40px;
    gap: 0;
    overflow-y: auto;
    z-index: 999;
    border-top: 1px solid var(--border);
  }
  .nav-link {
    font-size: 1.05rem; font-weight: 600;
    color: var(--navy);
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    display: block;
  }
  .nav-link:last-of-type { border-bottom: none; }
  .nav-cta {
    font-size: 1rem; font-weight: 600;
    color: var(--navy) !important;
    background: none !important;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    display: block;
    text-align: left;
  }
  .nav-toggle { display: flex; }

  /* Dropdown — flat list in mobile overlay */
  .nav-dropdown { flex-direction: column; align-items: flex-start; width: 100%; }
  .nav-dropdown > .nav-link { width: 100%; }
  .dropdown-menu {
    display: block;
    position: static;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0 0 0 16px;
    min-width: auto;
    width: 100%;
    background: transparent;
  }
  .dropdown-menu a { padding: 12px 0; border-bottom: 1px solid var(--border); border-radius: 0; }
  .dropdown-menu a:last-child { border-bottom: none; }
  .dropdown-menu a span { font-size: 1rem; }
  .dropdown-menu a small { font-size: 0.82rem; }

  /* Hero */
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .hero { padding: 56px 0 48px; }
  .hero-ctas { flex-direction: column; gap: 10px; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  /* Layout stacking */
  .brand-cards { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { display: none; }
  .about-features-grid { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .promo-strip-divider { display: none; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

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

  /* Sections */
  .hero { padding: 40px 0 36px; }
  .brand-section, .about-section, .why-section, .faq-section,
  .cta-section, .socials-section { padding: 56px 0; }
  .section-header { margin-bottom: 36px; }
  .section-header p { font-size: 0.95rem; }

  /* Hero */
  .hero-badge { font-size: 0.75rem; padding: 6px 12px; flex-wrap: wrap; }
  .hero-lead { font-size: 0.975rem; margin-bottom: 24px; }
  .hero-proof { flex-wrap: wrap; gap: 10px; }
  .hero-proof p { font-size: 0.8rem; }

  /* Promo strip */
  .promo-strip-inner { flex-direction: column; gap: 10px; text-align: center; }
  .promo-strip-text { font-size: 0.82rem; }

  /* Brand cards */
  .brand-card-header { padding: 28px 24px 22px; }
  .brand-card-body   { padding: 24px 24px 32px; }
  .brand-logo { height: 44px; }
  .brand-card-actions { flex-direction: column; gap: 8px; }
  .brand-card-actions .btn { justify-content: center; width: 100%; }

  /* Why */
  .why-grid { grid-template-columns: 1fr; }
  .why-card { padding: 24px 20px; }

  /* About */
  .about-features-grid { grid-template-columns: 1fr; }

  /* CTA section */
  .cta-section p { font-size: 0.95rem; }
  .cta-actions { flex-direction: column; align-items: center; gap: 10px; }
  .cta-actions .btn { width: 100%; max-width: 300px; justify-content: center; }

  /* Social links */
  .social-links { flex-direction: column; align-items: stretch; gap: 8px; }
  .social-link { justify-content: center; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 6px; }
  .footer-bottom p { font-size: 0.78rem; }
}

/* ─── Small phones (≤400px) ───────────────────────────────────── */
@media (max-width: 400px) {
  h1 { font-size: clamp(1.9rem, 8vw, 2.4rem); }
  h2 { font-size: clamp(1.4rem, 6vw, 1.9rem); }
  .btn { padding: 12px 20px; font-size: 0.875rem; }
  .btn--lg { padding: 13px 22px; font-size: 0.9rem; }
  .hero-badge { font-size: 0.7rem; }
}
