/* ============================================================
   KinLife Design System — style.css  (clean build)
   Baby Blue × Deep Navy × Soft Green
   Fonts: Cormorant Garamond (display) + DM Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

/* ── TOKENS ── */
:root {
  --blue:       #5BB8D4;
  --blue-light: #C8E8F3;
  --blue-xlight:#EAF5F9;
  --green:      #7ECBA1;
  --green-light:#E2F5EC;
  --navy:       #1A2E3A;
  --navy-mid:   #2E4A5A;
  --navy-dark:  #111D24;
  --slate:      #3D5A66;
  --muted:      #5A7A88;
  --hint:       #8AACB8;
  --border:     #D4EBF3;
  --bg:         #F0F7FA;
  --white:      #FFFFFF;
  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'DM Sans', system-ui, sans-serif;
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  14px;
  --radius-xl:  20px;
  --shadow-card: 0 1px 4px rgba(26,46,58,.06), 0 4px 16px rgba(26,46,58,.04);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  padding-top: 66px; /* fixed nav height */
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── CONTAINER ── */
.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 768px) { .container { padding: 0 20px; } }

/* ── EYEBROW ── */
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.eyebrow-line { width: 28px; height: 1px; background: var(--blue); flex-shrink: 0; }
.eyebrow-text { font-size: 11px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: #3A8FAA; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4 { font-family: var(--ff-display); font-weight: 300; line-height: 1.1; color: var(--navy); }
h1 { font-size: clamp(34px, 4.5vw, 58px); letter-spacing: -.02em; }
h2 { font-size: clamp(28px, 3.2vw, 44px); letter-spacing: -.01em; }
h3 { font-size: clamp(18px, 2vw, 24px); }
h4 { font-size: 17px; font-weight: 400; }
.display-italic { font-style: italic; color: #3A8FAA; }
.lead { font-size: 15px; font-weight: 300; color: var(--slate); line-height: 1.7; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  font-family: var(--ff-body); font-size: 12px; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 13px 26px; border-radius: var(--radius-sm);
  border: none; cursor: pointer; transition: all .2s;
  white-space: nowrap; line-height: 1;
}
.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--blue); }
.btn-secondary { background: var(--white); color: var(--navy); border: 1.5px solid var(--border); }
.btn-secondary:hover { border-color: var(--blue); color: var(--blue); }
.btn-blue { background: var(--blue); color: var(--white); }
.btn-blue:hover { background: var(--navy); }
.btn-outline-white { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.4); }
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.btn-lg { padding: 14px 30px; font-size: 13px; }

/* ── SECTIONS ── */
.section      { padding: 80px 0; background: var(--white); }
.section-sm   { padding: 56px 0; background: var(--white); }
.section-alt  { padding: 80px 0; background: #EEF7FB; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-zebra{ padding: 80px 0; background: #E3F1F7; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-dark { background: var(--navy); }
.section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; gap: 40px; flex-wrap: wrap; }
.section-link { font-size: 12px; font-weight: 500; color: #3A8FAA; letter-spacing: .08em; text-transform: uppercase; border-bottom: 1px solid #3A8FAA; padding-bottom: 2px; white-space: nowrap; }
@media (max-width: 768px) { .section, .section-alt, .section-zebra { padding: 56px 0; } .section-sm { padding: 40px 0; } }

/* ── FIXED NAV ── */
.kl-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  width: 100%;
  z-index: 9999;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(26,46,58,.08);
}
.kl-nav-inner { display: flex; align-items: center; justify-content: space-between; height: 66px; gap: 12px; }
.kl-nav-logo-link { display: flex; align-items: center; flex-shrink: 0; }
.kl-nav-logo-img  { height: 34px; width: auto; display: block; }
.kl-nav-links { display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center; }
.kl-nav-link {
  font-size: 13px; font-weight: 400; color: var(--slate);
  padding: 6px 10px; border-radius: 6px; transition: color .15s, background .15s;
  background: none; border: none; cursor: pointer; font-family: var(--ff-body);
  display: flex; align-items: center; gap: 4px; white-space: nowrap;
}
.kl-nav-link:hover, .kl-nav-link.active { color: var(--blue); background: var(--blue-xlight); }
.kl-dropdown { position: relative; }
.kl-dd-btn svg { transition: transform .2s; flex-shrink: 0; }
.kl-dd-btn[aria-expanded="true"] svg { transform: rotate(180deg); }
.kl-dd-menu {
  display: none; position: absolute; top: calc(100% + 6px); left: 50%;
  transform: translateX(-50%);
  background: var(--white); border: 1px solid var(--border);
  border-radius: 14px; box-shadow: 0 4px 24px rgba(26,46,58,.10);
  min-width: 210px; padding: 6px; z-index: 400;
}
.kl-dd-menu.open { display: block; }
.kl-dd-item { display: flex; align-items: center; gap: 10px; padding: 9px 12px; font-size: 13px; color: var(--slate); border-radius: 8px; transition: background .12s, color .12s; }
.kl-dd-item:hover { background: var(--blue-xlight); color: var(--navy); }
.kl-dd-icon { width: 28px; height: 28px; border-radius: 6px; background: var(--blue-xlight); border: 1px solid var(--blue-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.kl-dd-icon svg { width: 14px; height: 14px; }
.kl-nav-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.kl-nav-phone { font-size: 12px; color: var(--blue); font-weight: 500; white-space: nowrap; }
.kl-nav-cta { padding: 9px 18px; font-size: 12px; }
.kl-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; width: 32px; height: 32px; justify-content: center; align-items: center; }
.kl-hamburger span { display: block; width: 20px; height: 1.5px; background: var(--navy); transition: all .25s; transform-origin: center; }
.kl-hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.kl-hamburger.is-open span:nth-child(2) { opacity: 0; }
.kl-hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.kl-mobile-menu { display: none; background: var(--white); border-top: 1px solid var(--border); padding: 16px 20px 20px; position: fixed; top: 66px; left: 0; right: 0; z-index: 9998; max-height: calc(100vh - 66px); overflow-y: auto; box-shadow: 0 4px 20px rgba(26,46,58,.10); }
.kl-mobile-menu.open { display: block; }
.kl-mob-label { font-size: 10px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--hint); margin: 14px 0 6px; }
.kl-mob-link { display: block; padding: 9px 0; font-size: 14px; color: var(--slate); border-bottom: 1px solid var(--border); }
.kl-mob-link:hover { color: var(--blue); }
@media (max-width: 900px) { .kl-nav-links { display: none; } .kl-nav-phone { display: none; } .kl-hamburger { display: flex; } }
@media (max-width: 480px) { .kl-nav-cta { padding: 8px 14px; font-size: 11px; } }

/* ── HERO FULL (index.html) ── */
.hero-full { position: relative; min-height: 580px; display: flex; align-items: center; }
.hero-full-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-full-img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; display: block; }
.hero-full-overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(10,22,30,.72) 0%, rgba(10,22,30,.50) 45%, rgba(10,22,30,.18) 100%); }
.hero-full-content { position: relative; z-index: 1; width: 100%; padding: 72px 0; }
.hero-full-inner { max-width: 600px; }
.hero-full-h1 { font-family: var(--ff-display); font-size: clamp(38px,5.5vw,68px); font-weight: 300; line-height: 1.05; letter-spacing: -.02em; color: #fff; margin-bottom: 20px; }
.hero-full-em { font-style: italic; color: #7DDBF0; }
.hero-full-lead { font-size: 15px; font-weight: 300; color: rgba(255,255,255,.80); line-height: 1.65; margin-bottom: 32px; }
.hero-br-desktop { display: block; }
.hero-full-actions { display: flex; align-items: stretch; gap: 12px; margin-bottom: 32px; flex-wrap: wrap; }
.hero-btn-primary {
  background: #5BB8D4; color: #fff;
  font-family: var(--ff-body); font-size: 13px; font-weight: 500;
  padding: 14px 28px; border-radius: 4px;
  letter-spacing: .06em; text-transform: uppercase;
  display: inline-flex; align-items: center; justify-content: center;
  white-space: nowrap; border: none; cursor: pointer; transition: all .2s;
  min-height: 48px;
}
.hero-btn-primary:hover { background: #fff; color: var(--navy); }
.hero-btn-ghost {
  background: transparent; color: rgba(255,255,255,.85);
  font-family: var(--ff-body); font-size: 13px; font-weight: 400;
  padding: 14px 28px; border-radius: 4px;
  border: 1.5px solid rgba(255,255,255,.40);
  letter-spacing: .06em; text-transform: uppercase;
  display: inline-flex; align-items: center; justify-content: center;
  white-space: nowrap; cursor: pointer; transition: all .2s;
  min-height: 48px;
}
.hero-btn-ghost:hover { border-color: #fff; color: #fff; }
/* SMS button: mobile only */
.hero-btn-sms {
  background: rgba(91,184,212,.2); color: #fff;
  font-family: var(--ff-body); font-size: 13px; font-weight: 600;
  padding: 14px 24px; border-radius: 4px;
  border: 1.5px solid rgba(91,184,212,.5);
  display: none;  /* desktop: hidden */
  align-items: center; justify-content: center;
  white-space: nowrap; cursor: pointer; transition: all .2s; gap: 6px;
  min-height: 48px;
}
.hero-btn-sms:hover { background: var(--blue); border-color: var(--blue); }
.hero-hide-mobile { display: inline-flex; }
.hero-full-trust { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-trust-item { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 400; color: rgba(255,255,255,.75); }
.hero-full-stats { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-stat-pill { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.20); border-radius: 10px; padding: 12px 16px; display: flex; flex-direction: column; gap: 3px; min-width: 110px; }
.hero-stat-num { font-family: var(--ff-display); font-size: 24px; font-weight: 300; color: #7DDBF0; line-height: 1; }
.hero-stat-lbl { font-size: 10px; font-weight: 400; color: rgba(255,255,255,.60); letter-spacing: .04em; }
@media (max-width: 768px) {
  .hero-full { min-height: 520px; }
  .hero-full-content { padding: 56px 0; }
  .hero-full-h1 { font-size: clamp(34px,8vw,48px); }
  .hero-br-desktop { display: none; }
  .hero-btn-sms { display: inline-flex; }  /* show TEXT US on mobile */
  .hero-hide-mobile { display: none; }     /* hide "Our Services" on mobile */
  .hero-full-overlay { background: linear-gradient(160deg,rgba(10,22,30,.78) 0%,rgba(10,22,30,.60) 100%); }
  .hero-btn-sms { display: inline-flex; }
  .hero-hide-mobile { display: none; }
}
@media (max-width: 480px) {
  .hero-full { min-height: 480px; }
  .hero-full-h1 { font-size: 32px; }
  .hero-btn-primary, .hero-btn-ghost, .hero-btn-sms { padding: 12px 20px; font-size: 12px; min-height: 44px; }
}

/* ── TRUST BAR ── */
.trust-bar { background: var(--navy); padding: 18px 0; }
.trust-bar-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.trust-bar-item { display: flex; align-items: center; gap: 10px; padding: 8px 0; flex: 1; min-width: 140px; }
.trust-bar-icon { width: 34px; height: 34px; border-radius: 7px; background: rgba(91,184,212,.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-bar-icon svg { width: 17px; height: 17px; }
.trust-bar-label { font-size: 13px; font-weight: 500; color: var(--white); }
.trust-bar-sub { font-size: 11px; font-weight: 300; color: rgba(255,255,255,.5); }
.trust-bar-divider { width: 1px; height: 34px; background: rgba(255,255,255,.1); flex-shrink: 0; margin: 0 8px; }
@media (max-width: 768px) { .trust-bar-divider { display: none; } .trust-bar-item { flex: 0 1 calc(50% - 4px); } }

/* ── FOR YOU CARDS ── */
.foryou-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 14px; }
.foryou-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 24px 18px; text-align: center; transition: all .2s; cursor: pointer; }
.foryou-card:hover { border-color: var(--blue); transform: translateY(-2px); box-shadow: var(--shadow-card); }
.foryou-icon { width: 50px; height: 50px; border-radius: 50%; background: var(--blue-xlight); border: 1.5px solid var(--blue-light); display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.foryou-icon svg { width: 24px; height: 24px; }
.foryou-card h4 { font-size: 13px; font-weight: 500; color: var(--navy); margin-bottom: 6px; font-family: var(--ff-body); }
.foryou-card p { font-size: 11px; font-weight: 300; color: var(--muted); line-height: 1.5; }
@media (max-width: 900px) { .foryou-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 540px) { .foryou-grid { grid-template-columns: repeat(2,1fr); } }

/* ── SERVICE GRID ── */
.service-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; background: var(--border); border-radius: var(--radius-xl); overflow: hidden; }
.service-card { background: var(--white); padding: 20px 22px 24px; cursor: pointer; position: relative; transition: background .2s; }
.service-card:hover { background: var(--blue-xlight); }
.service-num { font-family: var(--ff-display); font-size: 11px; color: var(--blue-light); font-weight: 400; margin-bottom: 8px; letter-spacing: .08em; line-height: 1; }
.service-icon-wrap { width: 40px; height: 40px; border-radius: 8px; background: var(--blue-xlight); border: 1px solid var(--blue-light); display: flex; align-items: center; justify-content: center; margin-bottom: 10px; }
.service-icon-wrap svg { width: 20px; height: 20px; }
.service-card h3 { font-size: 18px; font-weight: 400; margin-bottom: 8px; }
.service-card p { font-size: 12px; font-weight: 300; color: var(--muted); line-height: 1.6; }
.card-link { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 500; color: var(--blue); margin-top: 12px; letter-spacing: .04em; }
@media (max-width: 900px) { .service-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) {
  .service-grid { grid-template-columns: 1fr; background: transparent; border-radius: 0; gap: 0; }
  .service-card { border: 1px solid var(--border); border-radius: var(--radius-lg); margin-bottom: 8px; }
}

/* ── WHY KINLIFE ── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.why-visual { background: var(--blue-xlight); border-radius: var(--radius-xl); padding: 36px; }
.why-row { display: flex; align-items: flex-start; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--blue-light); }
.why-row:last-child { border-bottom: none; }
.why-bullet { width: 32px; height: 32px; border-radius: 7px; background: var(--blue); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.why-bullet svg { width: 14px; height: 14px; }
.why-row-title { font-size: 14px; font-weight: 500; color: var(--navy); margin-bottom: 3px; }
.why-row-desc { font-size: 12px; font-weight: 300; color: var(--muted); line-height: 1.6; }
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr; gap: 36px; } }

/* ── COMPARE TABLE ── */
.compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin-top: 20px; width: 100%; }
.compare-table { width: 100%; border-collapse: collapse; min-width: 400px; }
.compare-table th { font-size: 11px; font-weight: 500; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; padding: 10px 8px; border-bottom: 2px solid var(--border); text-align: center; }
.compare-table th:first-child { text-align: left; }
.compare-table td { padding: 12px 8px; border-bottom: 1px solid var(--bg); font-size: 13px; font-weight: 300; color: var(--slate); text-align: center; }
.compare-table td:first-child { text-align: left; font-weight: 400; color: var(--navy); }
.compare-table .kl-row td { color: var(--blue); font-weight: 500; }
.tick { color: var(--blue); font-size: 15px; }
.cross { color: #C8DCE3; font-size: 13px; }
.dash-val { color: #C8DCE3; font-size: 13px; }

/* ── REVIEWS ── */
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.review-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 28px 24px; position: relative; }
.review-quote-mark { font-family: var(--ff-display); font-size: 80px; font-weight: 300; color: var(--blue-xlight); position: absolute; top: 12px; left: 20px; line-height: 1; }
.review-stars { display: flex; gap: 3px; margin-bottom: 14px; position: relative; z-index: 1; }
.star { width: 12px; height: 12px; background: #F5B83D; clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%); }
.review-text { font-size: 13px; font-weight: 300; color: var(--slate); line-height: 1.7; font-style: italic; margin-bottom: 20px; position: relative; z-index: 1; }
.review-author-row { display: flex; align-items: center; gap: 10px; border-top: 1px solid var(--bg); padding-top: 16px; }
.review-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--blue-xlight); border: 1.5px solid var(--blue-light); display: flex; align-items: center; justify-content: center; font-family: var(--ff-display); font-size: 14px; font-weight: 600; color: var(--blue); flex-shrink: 0; }
.review-name { font-size: 13px; font-weight: 500; color: var(--navy); }
.review-loc { font-size: 11px; color: var(--hint); }
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; font-size: 15px; font-weight: 400; color: var(--navy); cursor: pointer; gap: 16px; background: none; border: none; width: 100%; text-align: left; font-family: var(--ff-body); }
.faq-question svg { flex-shrink: 0; transition: transform .25s; }
.faq-question.open svg { transform: rotate(180deg); }
.faq-answer { font-size: 14px; font-weight: 300; color: var(--slate); line-height: 1.7; max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s; }
.faq-answer.open { max-height: 400px; padding-bottom: 18px; }

/* ── CONTACT FORM ── */
.kl-form-section { background: var(--bg); padding: 80px 0; }
.kl-field { display: flex; flex-direction: column; gap: 6px; }
.kl-field label { font-size: 11px; font-weight: 500; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; }
.kl-field input, .kl-field textarea {
  width: 100%; background: var(--white); border: 1.5px solid #A8C8D8;
  color: var(--navy); border-radius: var(--radius-md);
  padding: 11px 14px; outline: none; font-family: var(--ff-body); font-size: 14px;
  transition: border-color .2s;
}
.kl-field input:focus, .kl-field textarea:focus { border-color: var(--blue); }
.kl-field textarea { resize: vertical; min-height: 96px; }
.kl-required { color: #DC2626; margin-left: 3px; }

/* ── CTA BAND ── */
.cta-band { background: var(--navy); padding: 80px 0; text-align: center; }
.cta-band h2 { color: var(--white); margin-bottom: 12px; }
.cta-band .lead { color: rgba(255,255,255,.6); margin-bottom: 36px; }
.cta-band-btns { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.area-pills { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 24px; flex-wrap: wrap; }
.area-pill { background: rgba(91,184,212,.15); color: #9DD5E8; font-size: 11px; font-weight: 400; padding: 5px 13px; border-radius: 20px; letter-spacing: .06em; }
@media (max-width: 480px) { .cta-band-btns { flex-direction: column; align-items: center; } }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--blue-xlight);
  padding: 64px 0 56px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero h1 { margin-bottom: 14px; }
.page-hero .lead { max-width: 540px; margin-bottom: 24px; }
.page-hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(91,184,212,.2); color: #1A6880; font-size: 11px; font-weight: 500; padding: 5px 13px; border-radius: 20px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px; }
.page-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; pointer-events: none; }
.page-hero .container { position: relative; z-index: 3; }
.page-hero a.btn, .page-hero button.btn { position: relative; z-index: 4; pointer-events: all !important; }

/* ── HERO IMAGE STRIP (below page-hero on inner pages) ── */
.page-hero-img-wrap { width: 100%; height: 320px; overflow: hidden; background: var(--bg); border-bottom: 1px solid var(--border); }
.page-hero-img-full { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; display: block; }
@media (max-width: 768px) { .page-hero-img-wrap { height: 220px; } }

/* ── CONTENT CARDS ── */
.content-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 32px; box-shadow: var(--shadow-card); }
.icon-card-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.icon-card { background: var(--bg); border-radius: var(--radius-lg); padding: 24px 20px; }
.icon-card .ic-icon { width: 40px; height: 40px; border-radius: 9px; background: var(--white); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.icon-card .ic-icon svg { width: 18px; height: 18px; }
.icon-card h4 { font-size: 15px; font-weight: 400; margin-bottom: 7px; }
.icon-card p { font-size: 13px; font-weight: 300; color: var(--muted); line-height: 1.6; }
@media (max-width: 768px) { .icon-card-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .icon-card-grid { grid-template-columns: 1fr; } }

/* ── STAT BLOCK ── */
.stat-row { display: flex; gap: 36px; flex-wrap: wrap; margin: 24px 0; }
.stat-block .stat-num { font-family: var(--ff-display); font-size: 44px; font-weight: 300; color: var(--blue); line-height: 1; }
.stat-block .stat-label { font-size: 12px; font-weight: 400; color: var(--muted); margin-top: 4px; }

/* ── HEALTH RISKS TABLE ── */
.risks-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin-top: 28px; width: 100%; }
.risks-table { width: 100%; border-collapse: collapse; min-width: 700px; font-size: 13px; }
.risks-table th { background: var(--navy); color: var(--white); font-size: 11px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; padding: 11px 13px; text-align: left; }
.risks-table td { padding: 12px 13px; border-bottom: 1px solid var(--border); vertical-align: top; line-height: 1.5; }
.risks-table tr:nth-child(even) td { background: var(--bg); }
.risks-table a { color: var(--blue); text-decoration: underline; font-size: 12px; }
.risk-badge { display: inline-block; background: var(--blue-xlight); color: var(--navy-mid); font-size: 11px; font-weight: 500; padding: 2px 9px; border-radius: 11px; }

/* ── FOOTER ── */
.footer { background: var(--navy-dark); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand-logo { font-family: var(--ff-display); font-size: 22px; font-weight: 600; letter-spacing: .06em; color: var(--white); margin-bottom: 10px; display: block; }
.footer-brand-logo span { color: var(--blue); }
.footer-logo-img { height: 30px; width: auto; display: block; margin-bottom: 12px; }
.footer-brand p { font-size: 13px; font-weight: 300; color: rgba(255,255,255,.4); line-height: 1.7; max-width: 240px; }
.footer-col h4 { font-size: 11px; font-weight: 500; color: rgba(255,255,255,.45); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; font-family: var(--ff-body); }
.footer-col a { display: block; font-size: 13px; font-weight: 300; color: rgba(255,255,255,.5); margin-bottom: 9px; transition: color .2s; }
.footer-col a:hover { color: var(--blue); }
.footer-contact-item { font-size: 12px; color: rgba(255,255,255,.35); margin-top: 10px; line-height: 1.6; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 22px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,.25); font-weight: 300; }
.footer-legal { display: flex; gap: 18px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,.25); font-weight: 300; }
.footer-legal a:hover { color: var(--blue); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; gap: 24px; } }

/* ── SCROLL TO TOP ── */
.kl-scroll-top { position: fixed; bottom: 24px; right: 24px; z-index: 500; width: 42px; height: 42px; border-radius: 50%; background: var(--navy); color: var(--white); border: 2px solid var(--blue); cursor: pointer; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .3s, transform .3s; transform: translateY(8px); }
.kl-scroll-top.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
.kl-scroll-top:hover { background: var(--blue); }

/* ── TWO COLUMN ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
@media (max-width: 768px) { .two-col { grid-template-columns: 1fr; gap: 36px; } }

/* ── CONTACT METHODS ── */
.contact-methods { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
.contact-method-btn { display: inline-flex; align-items: center; gap: 7px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 9px 16px; font-size: 13px; font-weight: 400; color: var(--slate); transition: all .2s; cursor: pointer; font-family: var(--ff-body); }
.contact-method-btn:hover { border-color: var(--blue); color: var(--blue); }

/* ── SR-ONLY ── */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ── UTILS ── */
.mt-8{margin-top:8px}.mt-16{margin-top:16px}.mt-20{margin-top:20px}.mt-24{margin-top:24px}.mt-32{margin-top:32px}.mt-48{margin-top:48px}
.mb-8{margin-bottom:8px}.mb-16{margin-bottom:16px}.mb-24{margin-bottom:24px}.mb-32{margin-bottom:32px}
.text-center{text-align:center}.text-blue{color:#3A8FAA}.text-muted{color:var(--muted)}
