/* =============================================================
   Protecht Health — Homepage-specific styles
   Based on the Protecht Home design (June 2026)
   Loaded only on the front page (front-page.php).
   ============================================================= */

:root {
  --coral: #E8612C;
  --coral-light: #F2A53A;
  --coral-deep: #D4843E;
  --teal: #2A9D8F;
  --teal-light: #3EC08B;
  --teal-deep: #1F7A6E;
  --amber: #E8A01C;
  --alert: #D4503E;
  --inset: #EEECE6;

  --shadow-sm: 0 1px 3px rgba(45,45,45,0.06), 0 1px 2px rgba(45,45,45,0.04);
  --shadow-md: 0 4px 12px rgba(45,45,45,0.08), 0 2px 4px rgba(45,45,45,0.04);
  --shadow-lg: 0 12px 28px rgba(45,45,45,0.10), 0 4px 8px rgba(45,45,45,0.05);
  --shadow-xl: 0 24px 48px rgba(45,45,45,0.14);
  --shadow-coral: 0 6px 16px rgba(232,97,44,0.28);
  --shadow-phone: 0 40px 90px rgba(45,45,45,0.22), 0 12px 30px rgba(45,45,45,0.14);

  --ease: cubic-bezier(0.2,0.8,0.2,1);
  --ease-gentle: cubic-bezier(0.4,0,0.2,1);

  --accent: var(--coral);
  --cta-gradient: linear-gradient(135deg,#E8612C 0%,#D4843E 45%,#2A9D8F 100%);

  --gutter: clamp(20px,6vw,80px);
  --maxw: 1180px;
}

/* ─── Shared helpers ──────────────────────────────────────── */
.hw-wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }

.hw-eyebrow {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--warm-gray);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hw-eyebrow::before {
  content: "";
  width: 22px;
  height: 1.5px;
  background: var(--accent);
  border-radius: 2px;
}
.hw-eyebrow.no-rule::before { display: none; }

.hw-display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.025em;
}

.hw-sec-pad { padding-block: clamp(72px,10vw,132px); }
.hw-sec-sand { background: var(--sand); }

/* ─── Buttons ─────────────────────────────────────────────── */
.hw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  padding: 15px 26px;
  transition: transform var(--ease) .18s, background var(--ease) .18s, box-shadow var(--ease) .18s;
  text-decoration: none;
}
.hw-btn-coral { background: var(--coral); color: #fff; box-shadow: var(--shadow-coral); }
.hw-btn-coral:hover { background: var(--coral-deep); transform: translateY(-2px); color: #fff; }
.hw-btn-white { background: #fff; color: var(--charcoal); box-shadow: var(--shadow-md); }
.hw-btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.hw-btn-outline-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.6); }
.hw-btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

.hw-textlink {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  color: var(--accent);
  border-bottom: 1.5px solid transparent;
  transition: border-color var(--ease-gentle) .15s, gap var(--ease) .2s;
  text-decoration: none;
}
.hw-textlink:hover { border-color: currentColor; gap: 11px; color: var(--accent); }

.hw-appstore {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: #1A1A1A;
  color: #fff;
  border-radius: 13px;
  padding: 11px 18px 11px 16px;
  transition: transform var(--ease) .18s, box-shadow var(--ease) .18s;
  box-shadow: 0 6px 18px rgba(45,45,45,0.22);
  text-decoration: none;
}
.hw-appstore:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(45,45,45,0.28); color: #fff; }
.hw-appstore svg { width: 26px; height: 26px; flex-shrink: 0; }
.hw-appstore .as-sm { font-size: 11px; line-height: 1; opacity: .9; letter-spacing: .01em; display: block; }
.hw-appstore .as-lg { font-size: 19px; line-height: 1.15; font-weight: 600; letter-spacing: -0.01em; display: block; margin-top: 2px; }

.hw-trust { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 22px; }
.hw-trust .ti { display: inline-flex; align-items: center; gap: 8px; font-size: 0.875rem; font-weight: 600; color: var(--slate); }
.hw-trust .ti i { width: 17px; height: 17px; color: var(--teal); }
.hw-trust .dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(45,45,45,0.14); }

/* ─── HERO ────────────────────────────────────────────────── */
.hw-hero {
  min-height: calc(100svh - 68px);
  display: flex;
  align-items: center;
  padding-top: clamp(20px,3.5vh,48px);
  padding-bottom: clamp(20px,3.5vh,48px);
  overflow: hidden;
  position: relative;
}
.hw-hero::before {
  content: "";
  position: absolute;
  top: -220px; right: -160px;
  width: 620px; height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle,rgba(232,97,44,0.10),transparent 62%);
  pointer-events: none;
}
.hw-hero::after {
  content: "";
  position: absolute;
  bottom: -260px; left: -180px;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle,rgba(42,157,143,0.10),transparent 62%);
  pointer-events: none;
}
.hw-hero-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px,5vw,72px);
  align-items: center;
  position: relative;
  z-index: 1;
}
.hw-hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.5rem,4.8vw,4rem);
  line-height: 1.07;
  letter-spacing: -0.025em;
}
.hw-hero .hw-sub {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  color: var(--coral);
  font-size: clamp(1.5rem,2.8vw,2.2rem);
  margin-top: .5em;
  letter-spacing: -0.01em;
}
.hw-hero p.lede {
  margin-top: 20px;
  font-size: clamp(1.02rem,1.3vw,1.15rem);
  color: var(--slate);
  max-width: 30em;
  line-height: 1.55;
}
.hw-hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 26px; }
.hw-hero-trust { margin-top: 26px; }
.hw-hero-phone { display: flex; justify-content: center; position: relative; }
.hw-hero-phone .float { animation: hw-float 7s var(--ease-gentle) infinite; }
@keyframes hw-float {
  0%,100% { transform: translateY(0) rotate(-1.2deg); }
  50%      { transform: translateY(-16px) rotate(-1.2deg); }
}

/* ─── DEVICE / PHONE MOCKUP ──────────────────────────────── */
.hw-device {
  --w: 330px;
  width: var(--w);
  flex-shrink: 0;
  background: linear-gradient(150deg,#2c2c2e,#1a1a1c);
  border-radius: 46px;
  padding: 11px;
  box-shadow: var(--shadow-phone);
  position: relative;
}
.hw-device.sm { --w: 300px; }
.hw-device.lg { --w: min(340px,calc(48vh - 56px)); }
.hw-screen {
  position: relative;
  width: 100%;
  border-radius: 36px;
  overflow: hidden;
  background: var(--cream);
  aspect-ratio: 9 / 19.3;
  font-family: var(--font-body);
  display: flex;
  flex-direction: column;
}
.hw-island {
  position: absolute;
  top: 11px; left: 50%;
  transform: translateX(-50%);
  width: 104px; height: 30px;
  background: #000;
  border-radius: 18px;
  z-index: 20;
}
.hw-statusbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 26px 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
  height: 44px;
  flex-shrink: 0;
}
.hw-sb-icons { display: flex; align-items: center; gap: 6px; }
.hw-sb-icons svg { display: block; }
.hw-screen-body { flex: 1; overflow: hidden; display: flex; flex-direction: column; min-height: 0; }

/* App UI components inside mockup */
.hw-app-hdrow { display: flex; align-items: center; justify-content: space-between; padding: 6px 18px 0; }
.hw-app-pill { background: #fff; border: 1px solid rgba(45,45,45,0.08); border-radius: 999px; padding: 7px 14px; font-size: 12.5px; font-weight: 600; color: var(--charcoal); }
.hw-app-roundbtn { width: 32px; height: 32px; border-radius: 50%; background: #fff; border: 1px solid rgba(45,45,45,0.08); display: flex; align-items: center; justify-content: center; color: var(--charcoal); }
.hw-app-title { font-size: 28px; font-weight: 800; letter-spacing: -0.03em; color: var(--charcoal); padding: 8px 18px 12px; line-height: 1.05; }
.hw-app-title.center { text-align: center; padding-top: 4px; }
.hw-app-search { margin: 0 18px; display: flex; align-items: center; gap: 9px; background: var(--inset); border-radius: 999px; padding: 10px 15px; color: var(--warm-gray); font-size: 13.5px; }
.hw-app-search svg { width: 15px; height: 15px; flex-shrink: 0; }
.hw-app-filters { display: flex; gap: 7px; padding: 13px 18px 4px; overflow: hidden; }
.hw-app-chip { padding: 7px 15px; border-radius: 999px; font-size: 13px; font-weight: 600; background: var(--inset); color: var(--charcoal); white-space: nowrap; }
.hw-app-chip.on { background: var(--coral); color: #fff; }
.hw-app-seclabel { font-size: 13px; font-weight: 600; color: var(--warm-gray); margin: 16px 18px 8px; }
.hw-app-card { background: #fff; margin: 0 18px; border-radius: 15px; box-shadow: var(--shadow-sm); padding: 2px 15px; }
.hw-app-row { display: flex; align-items: center; gap: 11px; padding: 12px 0; border-bottom: 0.5px solid rgba(45,45,45,0.08); }
.hw-app-row:last-child { border-bottom: 0; }
.hw-app-row .ic { width: 24px; height: 24px; flex-shrink: 0; color: var(--coral); display: flex; align-items: center; justify-content: center; }
.hw-app-row .tt { flex: 1; min-width: 0; }
.hw-app-row .tt b { display: block; font-size: 14.5px; font-weight: 700; color: var(--charcoal); letter-spacing: -0.01em; line-height: 1.2; }
.hw-app-row .tt span { font-size: 11.5px; color: var(--warm-gray); }
.hw-app-chev { color: var(--warm-gray); }
.hw-badge-neg { display: inline-flex; align-items: center; gap: 5px; background: var(--teal-light); color: #fff; padding: 5px 10px 5px 6px; border-radius: 999px; font-size: 11.5px; font-weight: 700; }
.hw-badge-neg .ck { width: 14px; height: 14px; border-radius: 50%; background: rgba(255,255,255,0.28); display: flex; align-items: center; justify-content: center; }

/* Share hub */
.hw-guar { display: flex; align-items: center; gap: 11px; padding: 12px 2px; border-bottom: 0.5px solid rgba(45,45,45,0.08); }
.hw-guar:last-child { border-bottom: 0; }
.hw-guar .gi { width: 25px; height: 25px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.hw-guar span { font-size: 13.5px; font-weight: 600; color: var(--charcoal); letter-spacing: -0.01em; line-height: 1.25; }
.hw-act { display: flex; align-items: center; gap: 12px; padding: 13px 2px; border-bottom: 0.5px solid rgba(45,45,45,0.08); }
.hw-act:last-child { border-bottom: 0; }
.hw-act .ai { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hw-act .at { flex: 1; }
.hw-act .at b { display: block; font-size: 15px; font-weight: 700; color: var(--charcoal); letter-spacing: -0.01em; }
.hw-act .at span { font-size: 12.5px; color: var(--warm-gray); }

/* Countdown viewing screen */
.hw-cd-banner { display: flex; align-items: center; justify-content: center; gap: 9px; background: #FBEFD9; color: var(--charcoal); font-size: 13.5px; font-weight: 600; padding: 13px 18px; }
.hw-cd-banner svg { width: 17px; height: 17px; color: var(--amber); }
.hw-cd-timer { text-align: center; font-family: 'JetBrains Mono', monospace; font-weight: 700; font-size: 58px; color: var(--teal); letter-spacing: 2px; padding: 16px 0 12px; background: #fff; }
.hw-cd-prog { height: 7px; background: var(--inset); }
.hw-cd-prog .fill { height: 100%; width: 95%; background: var(--coral); border-radius: 0 4px 4px 0; }
.hw-cd-scroll { flex: 1; overflow: hidden; background: var(--cream); padding-top: 14px; position: relative; }
.hw-cd-meta { background: #fff; margin: 0 18px; border-radius: 15px; box-shadow: var(--shadow-sm); padding: 15px 17px; }
.hw-cd-meta b { font-size: 16px; font-weight: 800; color: var(--charcoal); letter-spacing: -0.02em; }
.hw-cd-meta .ln { font-size: 13px; color: var(--warm-gray); margin-top: 6px; }
.hw-cd-h { font-size: 20px; font-weight: 800; color: var(--charcoal); letter-spacing: -0.02em; margin: 18px 18px 10px; }
.hw-cd-result { display: flex; align-items: center; gap: 11px; background: #fff; margin: 0 18px; border-radius: 15px; box-shadow: var(--shadow-sm); padding: 14px 15px; }
.hw-cd-result .ic { width: 30px; height: 30px; border-radius: 8px; background: var(--teal); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hw-cd-result .tt { flex: 1; }
.hw-cd-result .tt b { display: block; font-size: 16px; font-weight: 700; color: var(--charcoal); letter-spacing: -0.02em; }
.hw-cd-result .tt span { font-size: 11.5px; color: var(--warm-gray); }
.hw-watermark { position: absolute; inset: 0; overflow: hidden; pointer-events: none; display: flex; align-items: center; justify-content: center; }
.hw-watermark span { font-size: 13px; font-weight: 600; color: rgba(232,97,44,0.22); transform: rotate(-24deg); white-space: nowrap; letter-spacing: .02em; }
.hw-cd-actions { display: flex; gap: 11px; padding: 14px 18px 22px; background: var(--cream); }
.hw-cd-actions .b { flex: 1; border-radius: 13px; padding: 14px 0; text-align: center; font-size: 14.5px; font-weight: 700; letter-spacing: -0.01em; }
.hw-cd-actions .req { background: #DFF1EA; color: var(--teal-deep); display: flex; align-items: center; justify-content: center; gap: 7px; }
.hw-cd-actions .req svg { width: 16px; height: 16px; }
.hw-cd-actions .done { background: var(--coral); color: #fff; }

/* Tab bar */
.hw-tabbar { display: flex; background: rgba(251,248,245,0.92); backdrop-filter: blur(14px); border-top: 0.5px solid rgba(45,45,45,0.08); padding: 7px 0 11px; flex-shrink: 0; }
.hw-tab { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px; color: var(--warm-gray); }
.hw-tab .tb-ic { width: 46px; height: 27px; border-radius: 9px; display: flex; align-items: center; justify-content: center; }
.hw-tab.on { color: var(--coral); }
.hw-tab.on .tb-ic { background: rgba(232,97,44,0.14); }
.hw-tab span { font-size: 10px; font-weight: 600; letter-spacing: -0.01em; }
.hw-tab svg { width: 21px; height: 21px; }

/* ─── PROBLEM SECTION ────────────────────────────────────── */
.hw-sec-head { max-width: 760px; }
.hw-sec-head h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem,3.6vw,3.1rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-top: 18px;
}
.hw-cards-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: clamp(40px,5vw,60px); }
.hw-pcard {
  background: #fff;
  border: 1px solid rgba(45,45,45,0.08);
  border-radius: 18px;
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease) .25s, box-shadow var(--ease) .25s;
}
.hw-pcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.hw-pcard .picon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 22px; }
.hw-pcard .picon svg, .hw-pcard .picon i { width: 26px; height: 26px; }
.hw-pic-coral { background: #FCE9DD; color: var(--coral); }
.hw-pic-amber { background: #FBEFD9; color: var(--amber); }
.hw-pic-alert { background: #FBE4E0; color: var(--alert); }
.hw-pic-teal  { background: #DFF1EA; color: var(--teal); }
.hw-pcard h3 { font-size: 1.25rem; font-weight: 700; letter-spacing: -0.02em; line-height: 1.25; }
.hw-pcard p  { margin-top: 12px; color: var(--slate); font-size: 1rem; line-height: 1.55; }

.hw-statbar {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  gap: 18px;
  margin-top: clamp(40px,5vw,56px);
  background: var(--charcoal);
  border-radius: 20px;
  padding: 34px clamp(28px,4vw,52px);
}
.hw-statbar .stat { flex: 1; min-width: 170px; color: #fff; }
.hw-statbar .stat .n { font-family: var(--font-display); font-weight: 600; font-size: clamp(2rem,3.2vw,2.7rem); line-height: 1; letter-spacing: -0.02em; }
.hw-statbar .stat .n.coral { color: var(--coral-light); }
.hw-statbar .stat .n.teal  { color: var(--teal-light); }
.hw-statbar .stat .l { margin-top: 10px; font-size: 0.95rem; color: rgba(255,255,255,0.7); }
.hw-statbar .sep { width: 1px; background: rgba(255,255,255,0.14); align-self: stretch; }

/* ─── SECURITY SECTION (split) ───────────────────────────── */
.hw-split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(36px,5vw,72px); align-items: center; }
.hw-split.rev { grid-template-columns: 0.95fr 1.05fr; }
.hw-fcards { display: flex; flex-direction: column; gap: 16px; margin-top: 30px; }
.hw-fcard {
  display: flex;
  gap: 18px;
  background: #fff;
  border: 1px solid rgba(45,45,45,0.08);
  border-radius: 16px;
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease) .25s, box-shadow var(--ease) .25s;
}
.hw-fcard:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.hw-fcard .fi { width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hw-fcard .fi i, .hw-fcard .fi svg { width: 23px; height: 23px; }
.hw-fcard h3 { font-size: 1.1rem; font-weight: 700; letter-spacing: -0.01em; margin: 0; }
.hw-fcard p  { margin-top: 7px; font-size: 0.95rem; color: var(--slate); line-height: 1.5; }
.hw-minirow { display: flex; flex-wrap: wrap; gap: 10px 14px; margin-top: 26px; }
.hw-minichip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid rgba(45,45,45,0.08);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--charcoal);
  box-shadow: var(--shadow-sm);
}
.hw-minichip b { color: var(--teal); font-weight: 700; }
.hw-minichip i, .hw-minichip svg { width: 15px; height: 15px; color: var(--teal); }

/* ─── HOW IT WORKS SECTION ───────────────────────────────── */
.hw-steps { display: flex; flex-direction: column; gap: 8px; margin-top: 30px; }
.hw-step { display: flex; gap: 20px; padding: 22px 4px; border-bottom: 1px solid rgba(45,45,45,0.08); }
.hw-step:last-child { border-bottom: 0; }
.hw-step .num { font-family: var(--font-display); font-weight: 600; font-size: 2rem; line-height: 1; color: var(--accent); min-width: 54px; letter-spacing: -0.02em; }
.hw-step .sc h3 { font-size: 1.2rem; font-weight: 700; letter-spacing: -0.01em; display: flex; align-items: center; gap: 10px; margin: 0; }
.hw-step .sc h3 i, .hw-step .sc h3 svg { width: 20px; height: 20px; color: var(--slate); }
.hw-step .sc p { margin-top: 8px; color: var(--slate); font-size: 1rem; line-height: 1.55; max-width: 42ch; }

.hw-pillgroup { margin-top: 30px; }
.hw-pillgroup .pl { font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--warm-gray); margin-bottom: 13px; }
.hw-pills { display: flex; flex-wrap: wrap; gap: 9px; }
.hw-cpill { background: #fff; border: 1px solid rgba(45,45,45,0.08); border-radius: 999px; padding: 9px 16px; font-size: 0.9rem; font-weight: 600; color: var(--charcoal); box-shadow: var(--shadow-sm); }
.hw-cpill.vax { background: #DFF1EA; border-color: transparent; color: var(--teal-deep); }

/* ─── FOR HEALTH ORGANIZATIONS ───────────────────────────── */
.hw-sec-teal { background: var(--teal-deep); color: #fff; position: relative; overflow: hidden; }
.hw-sec-teal::before {
  content: "";
  position: absolute;
  top: -180px; right: -140px;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle,rgba(62,192,139,0.22),transparent 62%);
  pointer-events: none;
}
.hw-orgs-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(36px,5vw,72px); align-items: center; }
.hw-orgs-copy .hw-eyebrow { color: rgba(255,255,255,0.82); }
.hw-orgs-copy .hw-eyebrow::before { background: var(--teal-light); }
.hw-orgs-copy h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.9rem,3.4vw,2.9rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-top: 18px;
  max-width: 18ch;
}
.hw-orgs-copy p { margin-top: 20px; font-size: clamp(1.05rem,1.4vw,1.2rem); line-height: 1.6; color: rgba(255,255,255,0.86); max-width: 42ch; }
.hw-orgs-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 26px; margin-top: 32px; }
.hw-orgs-link { color: #fff; }
.hw-orgs-link:hover { border-color: #fff; color: #fff; }
.hw-fund-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.16); border-radius: 20px; padding: 30px 32px; backdrop-filter: blur(4px); }
.hw-fund-label { display: inline-flex; align-items: center; gap: 9px; font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.72); margin-bottom: 22px; }
.hw-fund-label i, .hw-fund-label svg { width: 18px; height: 18px; color: var(--teal-light); }
.hw-fund-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 18px; }
.hw-fund-list li { display: flex; align-items: flex-start; gap: 13px; }
.hw-fund-list .fc-ic { width: 24px; height: 24px; border-radius: 50%; background: var(--teal-light); color: var(--teal-deep); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.hw-fund-list b { display: block; font-size: 1.02rem; font-weight: 700; letter-spacing: -0.01em; color: #fff; line-height: 1.25; white-space: nowrap; }
.hw-fund-list span { display: block; font-size: 0.84rem; color: rgba(255,255,255,0.68); white-space: nowrap; margin-top: 1px; }

/* ─── CTA SECTION ────────────────────────────────────────── */
.hw-cta { position: relative; overflow: hidden; background: var(--cta-gradient); color: #fff; text-align: center; }
.hw-cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 75% 15%,rgba(255,255,255,0.16),transparent 45%); pointer-events: none; }
.hw-cta .hw-wrap { position: relative; }
.hw-cta .hw-eyebrow { color: rgba(255,255,255,0.85); justify-content: center; }
.hw-cta .hw-eyebrow::before { background: rgba(255,255,255,0.7); }
.hw-cta h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(2.4rem,4.6vw,4rem); line-height: 1.05; letter-spacing: -0.025em; margin-top: 18px; max-width: 16ch; margin-inline: auto; }
.hw-cta p.hw-sub { margin: 22px auto 0; font-size: clamp(1.05rem,1.5vw,1.25rem); color: rgba(255,255,255,0.92); max-width: 40ch; }
.hw-cta .hw-cta-actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-top: 38px; }
.hw-cta .hw-trust { justify-content: center; margin-top: 40px; }
.hw-cta .hw-trust .ti { color: rgba(255,255,255,0.92); }
.hw-cta .hw-trust .ti i { color: #fff; }
.hw-cta .hw-trust .dot { background: rgba(255,255,255,0.4); }
.hw-cta .hw-tagline { margin-top: 46px; font-family: var(--font-display); font-style: italic; font-size: clamp(1.3rem,2.2vw,1.85rem); font-weight: 500; }
.hw-cta .hw-tagline b { font-style: normal; font-weight: 600; }

/* ─── SCROLL REVEAL ──────────────────────────────────────── */
.hw-reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.hw-reveal.in { opacity: 1; transform: none; }
.hw-reveal.d1 { transition-delay: .08s; }
.hw-reveal.d2 { transition-delay: .16s; }
.hw-reveal.d3 { transition-delay: .24s; }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 960px) {
  .hw-cards-3 { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .hw-hero { min-height: 0; }
  .hw-hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hw-hero .hw-eyebrow,
  .hw-hero-actions,
  .hw-hero-trust { justify-content: center; }
  .hw-hero p.lede { margin-left: auto; margin-right: auto; }
  .hw-hero-phone { order: -1; }
  .hw-split, .hw-split.rev { grid-template-columns: 1fr; gap: 44px; }
  .hw-split .hw-phone-col { order: -1; display: flex; justify-content: center; }
  .hw-orgs-grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 600px) {
  .hw-statbar { flex-direction: column; }
  .hw-statbar .sep { display: none; }
  .hw-hero-actions { flex-direction: column; align-items: flex-start; }
  .hw-device { --w: 288px; }
  .hw-device.lg { --w: clamp(240px,72vw,300px); }
}
@media (prefers-reduced-motion: reduce) {
  .hw-reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .hw-hero-phone .float { animation: none !important; }
}
