/*
Theme Name: Fortified Age Management
Theme URI: https://fortifiedagemanagement.com
Author: Fortified Age Management
Description: Custom WordPress theme for Fortified Age Management — personalized age management programs.
Version: 1.0.2
Tags: health, wellness, age-management, telehealth
Text Domain: fortified-age-mgmt
*/

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --color-black:       #000000;
  --color-white:       #FFFFFF;
  --color-blue:        #0e325d;
  --color-blue-light:  #1a4a80;
  --color-gold:        #ecca8e;
  --color-gold-dark:   #d4a96a;
  --color-dark:        #1E1E1E;
  --color-gray-light:  #EEEEEE;
  --color-gray-mid:    #BBBBBB;
  --color-gray-dark:   #666666;
  --color-off-white:   #F8F8F6;

  --font-heading: 'Noto Serif', serif;
  --font-body:    'DM Sans', sans-serif;

  --radius-btn:   100px;
  --radius-card:  16px;
  --radius-sm:    8px;

  --shadow-card: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 40px rgba(0,0,0,0.14);

  --max-width: 1140px;
  --section-pad: clamp(60px, 8vw, 120px);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--color-dark);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.text-center { text-align: center; }
.text-gold    { color: var(--color-gold); }
.text-blue    { color: var(--color-blue); }
.text-white   { color: var(--color-white); }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.section { padding: var(--section-pad) 0; }
.section--dark   { background-color: #0d1f36; color: var(--color-white); /* bg image injected via PHP in functions.php */ }
.section--black  { background: var(--color-blue); color: var(--color-white); }
.section--blue   { background: var(--color-blue);  color: var(--color-white); }
.section--gray   { background: var(--color-off-white); }
.section--gold   { background: var(--color-gold);  color: var(--color-dark); }

.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-auto { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

.flex         { display: flex; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col     { flex-direction: column; }
.gap-sm  { gap: 12px; }
.gap-md  { gap: 24px; }
.gap-lg  { gap: 40px; }

.mb-sm  { margin-bottom: 12px; }
.mb-md  { margin-bottom: 24px; }
.mb-lg  { margin-bottom: 48px; }
.mt-sm  { margin-top: 12px; }
.mt-md  { margin-top: 24px; }
.mt-lg  { margin-top: 48px; }

/* ============================================================
   BUTTONS — matches Agile Telehealth pill style
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.8rem 1.9rem;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.22s ease;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1.3;
}

/* Solid black pill — primary action */
.btn-primary {
  background: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}
.btn-primary:hover {
  background: var(--color-blue);
  border-color: var(--color-blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(14,50,93,0.3);
}

/* Black outline pill — on light backgrounds */
.btn-outline-dark {
  background: transparent;
  color: var(--color-black);
  border-color: var(--color-black);
}
.btn-outline-dark:hover {
  background: var(--color-blue);
  border-color: var(--color-blue);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* White outline pill — on dark/colored backgrounds */
.btn-outline {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}
.btn-outline:hover {
  background: var(--color-white);
  color: var(--color-black);
  transform: translateY(-2px);
}

/* Gold accent pill — Fortified brand highlight */
.btn-gold {
  background: var(--color-gold);
  color: var(--color-dark);
  border-color: var(--color-gold);
}
.btn-gold:hover {
  background: var(--color-gold-dark);
  border-color: var(--color-gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(236,202,142,0.4);
}

.btn-lg { padding: 1rem 2.4rem; font-size: 1rem; }
.btn-sm { padding: 0.55rem 1.35rem; font-size: 0.84rem; }

/* ============================================================
   HEADER & NAVIGATION — navy header
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  border-bottom: none;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.site-header.scrolled {
  background-color: #0d1f36; /* image injected via PHP in functions.php */
  box-shadow: 0 2px 20px rgba(0,0,0,0.35);
}

/* Inner pages (blog, about, etc.) — always dark, no video overlay */
body:not(.home) .site-header {
  background-color: #0d1f36; /* image injected via PHP in functions.php */
}

.site-header .container {
  padding-left: 20px;
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 120px;
}

/* Logo: far left */
.header-inner .site-logo { justify-self: start; }

/* Nav: perfectly centred in its own column */
.header-inner nav[aria-label="Primary Navigation"] { justify-self: center; }

/* CTAs + mobile toggle: far right */
.header-inner .header-cta  { justify-self: end; }
.header-inner .menu-toggle { justify-self: end; }

.site-logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-white);
  letter-spacing: 0.01em;
  line-height: 1.2;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.site-logo span { color: var(--color-gold-dark); }

/* Single authoritative logo rule — !important to win over any cascade */
.header-logo-img {
  height: 52px !important;
  width: auto !important;
  display: block !important;
  max-width: none !important;
}

/* Primary Navigation */
.primary-nav { display: flex; align-items: center; gap: 2px; }

.primary-nav > li { position: relative; }

.primary-nav > li > a {
  display: block;
  padding: 8px 14px;
  color: #ffffff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.005em;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.primary-nav > li > a:hover,
.primary-nav > li.current-menu-item > a {
  color: #ffffff;
  background: rgba(255,255,255,0.12);
}

/* Dropdown — padding-top bridges the hover gap */
.primary-nav .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: max-content;
  background: var(--color-white);
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 32px rgba(0,0,0,0.22);
  padding: 8px;
  padding-top: 20px;
  margin-top: 0;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: all 0.2s ease;
  pointer-events: none;
}

/* Invisible bridge covers the gap so hover isn't lost */
.primary-nav .sub-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

.primary-nav > li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: all;
}

.primary-nav .sub-menu li a {
  display: block;
  padding: 10px 16px;
  color: var(--color-dark);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.primary-nav .sub-menu li a:hover {
  background: var(--color-off-white);
  color: var(--color-blue);
}

.header-cta { display: flex; align-items: center; gap: 12px; }

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.menu-toggle span {
  width: 26px;
  height: 2px;
  background: var(--color-black);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ============================================================
   HERO SECTIONS — light background matching Agile header feel
   ============================================================ */
/* ============================================================
   VIDEO HERO
   ============================================================ */

.vh-wrap {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0a1628;
}

/* Canvas animation — always-on base layer */
.vh-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: block;
}

/* Video layer — sits above canvas, transparent when no src */
.vh-video-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.vh-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Dark gradient overlay — above canvas+video, keeps text legible */
.vh-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(105deg,
      rgba(10,22,40,0.72) 0%,
      rgba(14,50,93,0.50) 45%,
      rgba(14,50,93,0.15) 100%),
    linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 55%);
  pointer-events: none;
}

/* Steel grain texture — top of stack, subtle */
.vh-steel-grain {
  position: absolute;
  inset: 0;
  z-index: 3;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.6;
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* Shield watermark */
.vh-shield-watermark {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  opacity: 0.04;
  pointer-events: none;
  z-index: 4;
  filter: invert(1);
}
.vh-shield-watermark img { width: 100%; }

/* Content */
.vh-content-wrap {
  position: relative;
  z-index: 4;
  padding-top: 96px;
  padding-bottom: 80px;
}
.vh-content {
  max-width: 680px;
  padding: clamp(60px, 8vw, 100px) 0;
}
.vh-eyebrow { display: none; }

.vh-logo {
  display: block;
  width: 120px;
  margin-bottom: 28px;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
.vh-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--color-white);
  margin-bottom: 24px;
}
.vh-gold {
  color: var(--color-gold-dark);
  font-style: normal;
}
.vh-lead {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.vh-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

/* Trust badges */
.vh-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.vh-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 7px 14px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
  letter-spacing: 0.02em;
}
.vh-badge svg { flex-shrink: 0; color: var(--color-gold-dark); }

/* Scroll hint */
.vh-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 4;
  color: rgba(255,255,255,0.35);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.vh-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.2); }
}

/* ============================================================
   BRAND MANIFESTO — dark steel section
   ============================================================ */
.manifesto {
  background: #0d1f36;
  color: var(--color-white);
  padding: clamp(72px, 10vw, 120px) 0;
  position: relative;
  overflow: hidden;
}

/* Steel bar accents */
.manifesto-steel-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--color-gold-dark) 30%, rgba(255,255,255,0.15) 60%, transparent 100%);
}
.manifesto-steel-bar--bottom { top: auto; bottom: 0; }

/* Subtle grain on manifesto */
.manifesto::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  mix-blend-mode: overlay;
}
.manifesto-inner {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.manifesto-mark {
  opacity: 0.08;
  filter: invert(1);
}
.manifesto-mark img { width: 100%; }
.manifesto-text {}
.manifesto-line {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 4px;
  color: var(--color-white);
}
.manifesto-line--muted { color: rgba(255,255,255,0.45); font-size: clamp(1.2rem, 2vw, 1.8rem); }
.manifesto-line--accent { color: var(--color-gold-dark); margin-bottom: 28px; }
.manifesto-body {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  max-width: 580px;
  margin: 0;
}

/* ============================================================
   EMAIL CAPTURE
   ============================================================ */
.email-capture {
  background: var(--color-off-white);
  padding: clamp(60px, 8vw, 100px) 0;
  border-top: 1px solid var(--color-gray-light);
  border-bottom: 1px solid var(--color-gray-light);
}
.email-capture-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.email-capture-copy h3 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  line-height: 1.2;
  margin-bottom: 16px;
}
.email-capture-copy p {
  color: var(--color-gray-dark);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 24px;
}
.email-capture-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.email-capture-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-dark);
}
.email-capture-form-wrap {
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 40px 36px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-gray-light);
}
.email-capture-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ecf-field { display: flex; flex-direction: column; gap: 6px; }
.ecf-field label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-dark);
  letter-spacing: 0.02em;
}
.ecf-field input,
.ecf-field select {
  padding: 13px 18px;
  border: 1.5px solid var(--color-gray-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-dark);
  background: var(--color-white);
  outline: none;
  transition: border-color 0.2s;
}
.ecf-field input:focus,
.ecf-field select:focus { border-color: var(--color-blue); }
.ecf-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1L6 7L11 1' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
.ecf-note {
  font-size: 0.75rem;
  color: var(--color-gray-mid);
  text-align: center;
  margin: 4px 0 0;
  line-height: 1.5;
}

/* Legacy .hero — kept for inner page fallback */
.hero {
  padding-top: calc(96px + var(--section-pad));
  padding-bottom: var(--section-pad);
  background: #EDF2F3;
  color: var(--color-dark);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 60%, rgba(141,202,230,0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 5% 80%, rgba(236,202,142,0.15) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 1; }

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0e325d;
  margin-bottom: 20px;
}

.hero h1 { margin-bottom: 24px; max-width: 820px; color: var(--color-black); }

.hero p.lead {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--color-gray-dark);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* Hero Stat Bar */
.hero-stats {
  display: flex;
  gap: clamp(24px, 4vw, 60px);
  margin-top: clamp(48px, 6vw, 80px);
  padding-top: clamp(32px, 4vw, 48px);
  border-top: 1px solid rgba(0,0,0,0.1);
}

.hero-stat-num {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--color-black);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 0.875rem;
  color: var(--color-gray-dark);
}

/* Page Hero — inner pages */
.page-hero {
  padding-top: calc(96px + 72px);
  padding-bottom: 72px;
  background: #EDF2F3;
  color: var(--color-dark);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(141,202,230,0.2) 0%, transparent 65%);
  pointer-events: none;
}

.page-hero-content { position: relative; z-index: 1; }

/* Inner page hero text adjustments */
.page-hero h1 { color: var(--color-black); }

.page-hero p.lead {
  color: var(--color-gray-dark);
}

.page-hero .hero-eyebrow { color: #0e325d; }

/* ============================================================
   SERVICE CARDS (Homepage Grid)
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.service-card-media {
  height: 220px;
  background: var(--color-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}

.service-card-media.bg-weight  { background: linear-gradient(135deg, #0e325d, #1a5a8a); }
.service-card-media.bg-micro   { background: linear-gradient(135deg, #1e1e1e, #3a3a3a); }
.service-card-media.bg-trt     { background: linear-gradient(135deg, #0e325d, #0a2440); }
.service-card-media.bg-hrt     { background: linear-gradient(135deg, #2d1f3a, #4a2d60); }
.service-card-media.bg-long    { background: linear-gradient(135deg, #0a3320, #0d5530); }

.service-card-icon {
  font-size: 3.5rem;
  line-height: 1;
}

.service-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--color-gold);
  color: var(--color-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

.service-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }

.service-card-category {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0e325d;
  margin-bottom: 8px;
}

.service-card h3 { font-size: 1.35rem; margin-bottom: 12px; }

.service-card p {
  color: var(--color-gray-dark);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0;
  flex: 1;
}

.service-card-footer {
  padding: 0 28px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-card-price {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-black);
}

.service-card-price span { font-size: 0.75rem; font-weight: 400; color: var(--color-gray-dark); }

/* ============================================================
   FEATURE / COMPARISON SECTION
   ============================================================ */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.comparison-col {
  padding: clamp(28px, 4vw, 48px);
}

.comparison-col--before { background: var(--color-gray-light); }
.comparison-col--after  { background: var(--color-blue); color: var(--color-white); }

.comparison-divider {
  background: var(--color-dark);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-rl;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0 16px;
  min-width: 60px;
}

.comparison-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0.7;
}

.comparison-list { display: flex; flex-direction: column; gap: 14px; }

.comparison-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
}

.comparison-item::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.comparison-col--before .comparison-item::before { background: var(--color-gray-mid); }
.comparison-col--after .comparison-item::before  { background: var(--color-gold); }

/* ============================================================
   VERSUS / COMPARISON REDESIGN
   ============================================================ */
.versus-wrap {
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  max-width: 860px;
  margin: 0 auto;
}

.versus-head {
  display: grid;
  grid-template-columns: 1fr 48px 1fr;
  background: rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.versus-head-cell {
  padding: 14px 28px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.versus-head-cell--before { color: rgba(255,255,255,0.35); }
.versus-head-cell--mid {
  border-left: 1px solid rgba(255,255,255,0.08);
  border-right: 1px solid rgba(255,255,255,0.08);
}
.versus-head-cell--after { color: var(--color-gold); }

.versus-row {
  display: grid;
  grid-template-columns: 1fr 48px 1fr;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.2s ease;
}
.versus-row:last-child { border-bottom: none; }
.versus-row:hover { background: rgba(255,255,255,0.03); }

.versus-cell {
  padding: 18px 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.4;
}
.versus-cell--before {
  color: rgba(255,255,255,0.72);
}
.versus-cell--before::before {
  content: '✕';
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  flex-shrink: 0;
}
.versus-cell--after {
  color: #fff;
  font-weight: 600;
}
.versus-cell--after::before {
  content: '✓';
  font-size: 0.85rem;
  color: var(--color-gold);
  font-weight: 700;
  flex-shrink: 0;
}
.versus-mid {
  border-left: 1px solid rgba(255,255,255,0.08);
  border-right: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.15);
  font-size: 0.9rem;
}

@media (max-width: 640px) {
  .versus-head  { grid-template-columns: 1fr 1fr; }
  .versus-head-cell--mid { display: none; }
  .versus-row   { grid-template-columns: 1fr 1fr; }
  .versus-mid   { display: none; }
  .versus-cell  { padding: 14px 18px; font-size: 0.875rem; }
  .hrt-compare-grid { grid-template-columns: 1fr !important; }
}

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0; }

.process-step {
  padding: clamp(28px, 4vw, 40px);
  position: relative;
  text-align: center;
}

.process-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--color-gold);
  font-weight: 700;
  z-index: 1;
}

.step-num {
  width: 56px;
  height: 56px;
  background: var(--color-gold);
  color: var(--color-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  margin: 0 auto 20px;
}

.process-step h4 { margin-bottom: 10px; font-size: 1.1rem; }
.process-step p  { font-size: 0.9rem; color: rgba(255,255,255,0.7); margin: 0; }

.section--dark .process-step p { color: rgba(255,255,255,0.65); }

/* ============================================================
   TREATMENT OPTIONS / PRICING CARDS
   ============================================================ */
.treatment-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }

.treatment-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.treatment-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.treatment-card.popular {
  border-color: var(--color-gold);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-gold);
  color: var(--color-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.treatment-card h3 { font-size: 1.25rem; margin-bottom: 8px; }

.treatment-card-subtitle {
  font-size: 0.875rem;
  color: var(--color-gray-dark);
  margin-bottom: 20px;
}

.treatment-price {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 2rem;
  color: var(--color-black);
  line-height: 1;
  margin-bottom: 4px;
}

.treatment-price-note {
  font-size: 0.8rem;
  color: var(--color-gray-mid);
  margin-bottom: 24px;
}

.treatment-includes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  flex: 1;
}

.treatment-include-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  line-height: 1.4;
}

.check-icon {
  width: 20px;
  height: 20px;
  background: #0e325d;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================================
   BENEFITS / ICON BLOCKS
   ============================================================ */
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 32px; }

.benefit-item { text-align: center; }

.benefit-icon {
  width: 72px;
  height: 72px;
  background: #fff;
  border: 1.5px solid rgba(0,0,0,0.09);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.benefit-item h4 { margin-bottom: 10px; font-size: 1.1rem; }
.benefit-item p  { font-size: 0.9rem; color: var(--color-gray-dark); margin: 0; }
.section--dark .benefit-item p  { color: rgba(255,255,255,0.65); }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 0; border-radius: var(--radius-card); overflow: hidden; border: 1px solid var(--color-gray-light); }

.faq-item { border-bottom: 1px solid var(--color-gray-light); }
.faq-item:last-child { border-bottom: none; }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  background: var(--color-white);
  cursor: pointer;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-dark);
  transition: background 0.2s;
}

.faq-question:hover { background: var(--color-off-white); }

.faq-question.active { background: var(--color-off-white); color: var(--color-blue); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.2s;
}

.faq-question.active .faq-icon {
  transform: rotate(45deg);
  background: var(--color-blue);
  color: var(--color-white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
  padding: 0 28px;
  font-size: 0.95rem;
  color: var(--color-gray-dark);
  line-height: 1.7;
}

.faq-answer.open {
  max-height: 500px;
  padding: 4px 28px 24px;
}

/* ============================================================
   SECTION LABEL (eyebrow)
   ============================================================ */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0e325d;
  margin-bottom: 14px;
}

.section--dark .section-label,
.section--black .section-label,
.section--blue .section-label { color: var(--color-gold); }

.section-heading { margin-bottom: 16px; }
.section-sub     { font-size: clamp(1rem, 1.8vw, 1.15rem); color: var(--color-gray-dark); max-width: 640px; }
.section--dark .section-sub,
.section--black .section-sub,
.section--blue .section-sub { color: rgba(255,255,255,0.7); }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: transparent;
  padding: 10px 0;
  color: var(--color-black);
  overflow: hidden;
  white-space: nowrap;
}

.trust-ticker {
  display: flex;
  width: max-content;
  animation: trust-scroll 20s linear infinite;
}

.trust-ticker:hover { animation-play-state: paused; }

.trust-ticker-group {
  display: flex;
  align-items: center;
}

@keyframes trust-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 2rem;
  margin: 0 150px;
  white-space: nowrap;
}

.trust-item-icon {
  color: var(--color-black);
  font-style: normal;
  font-weight: 700;
}

.trust-item-sep {
  color: rgba(0,0,0,0.2);
  font-size: 2rem;
  user-select: none;
}

/* ============================================================
   SCIENCE / HORMONE STORY
   ============================================================ */
.hormone-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.hormone-visual { display: flex; flex-direction: column; gap: 24px; }

.hormone-bar-group { display: flex; flex-direction: column; gap: 8px; }

.hormone-bar-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--color-dark);
}

.hormone-bar-track {
  height: 10px;
  background: rgba(0,0,0,0.07);
  border-radius: 100px;
  overflow: hidden;
}

.hormone-bar-fill {
  height: 100%;
  border-radius: 100px;
}

.hormone-bar-fill.age25     { background: #0e325d; width: 88%; }
.hormone-bar-fill.age50     { background: #d4a96a; width: 38%; }
.hormone-bar-fill.fortified { background: #0e325d; width: 82%; }

.hormone-bar-note {
  font-size: 0.78rem;
  color: var(--color-gray-dark);
  line-height: 1.5;
}

.hormone-bar-note.teal { color: #0e325d; font-weight: 600; }

@media (max-width: 768px) {
  .hormone-story { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================================
   WHY FORTIFIED — DIFFERENTIATION GRID
   ============================================================ */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 36px 48px;
}

.diff-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.diff-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.diff-item h4 {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 8px;
}

.diff-item p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  margin: 0;
  line-height: 1.75;
}

@media (max-width: 768px) {
  .diff-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.testimonial-card {
  background: #fff;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
}

.testimonial-thumb {
  position: relative;
  height: 200px;
  background: linear-gradient(135deg, #0d1f35 0%, #1a3a5c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-thumb::after {
  content: 'VIDEO COMING SOON';
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.35);
  font-family: var(--font-body);
  white-space: nowrap;
}

.play-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.5);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  padding: 0;
}

.play-btn:hover {
  background: rgba(255,255,255,0.22);
  border-color: #fff;
}

.testimonial-program-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--color-gold-dark);
  color: #1a1a1a;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--font-body);
}

.testimonial-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: 0.975rem;
  line-height: 1.8;
  color: var(--color-dark);
  font-style: italic;
  margin: 0 0 20px;
  flex: 1;
}

.testimonial-quote::before { content: '\201C'; }
.testimonial-quote::after  { content: '\201D'; }

.testimonial-meta {
  border-top: 1px solid rgba(0,0,0,0.07);
  padding-top: 16px;
}

.testimonial-meta strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.testimonial-meta span {
  font-size: 0.78rem;
  color: var(--color-gray-dark);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: #EDF2F3;
  color: var(--color-dark);
  padding: clamp(60px, 8vw, 100px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(0,95,108,0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 10% 70%, rgba(141,202,230,0.2) 0%, transparent 55%);
  pointer-events: none;
}

.cta-banner-content { position: relative; z-index: 1; }

.cta-banner h2 { margin-bottom: 16px; color: var(--color-dark); }
.cta-banner p  { font-size: 1.1rem; color: var(--color-gray-dark); margin-bottom: 36px; }

.cta-banner-ctas { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ============================================================
   DISCLAIMER / LEGAL
   ============================================================ */
.disclaimer {
  background: var(--color-gray-light);
  padding: 20px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  color: var(--color-gray-dark);
  line-height: 1.6;
}

.disclaimer p { margin-bottom: 0.5rem; }
.disclaimer p:last-child { margin-bottom: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-black);
  color: rgba(255,255,255,0.75);
  padding: clamp(48px, 6vw, 80px) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .site-logo { margin-bottom: 16px; }

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
}

.footer-social { display: flex; gap: 12px; }

.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  transition: background 0.2s, color 0.2s;
}

.social-link:hover {
  background: var(--color-gold);
  color: var(--color-dark);
}

.footer-col h5 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 20px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--color-gold); }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 12px;
}

/* ============================================================
   ABOUT / MISSION SECTION
   ============================================================ */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }

.about-img-wrapper {
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--color-gray);
}

/* ============================================================
   RESULTS TIMELINE
   ============================================================ */
.timeline { display: flex; flex-direction: column; gap: 0; }

.timeline-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  align-items: start;
}

.timeline-item:last-child { border-bottom: none; }

.timeline-period {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--color-gold);
  padding-top: 4px;
}

.timeline-outcome h4 { font-size: 1rem; margin-bottom: 6px; }
.timeline-outcome p  { font-size: 0.9rem; color: rgba(255,255,255,0.65); margin: 0; }

/* ============================================================
   MOBILE NAV (Overlay)
   ============================================================ */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--color-blue);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 100px 32px 48px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--color-white);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s;
}

.mobile-nav a:hover { color: var(--color-gold); }

.mobile-nav-sub a {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  padding: 10px 0 10px 20px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 64px;
  align-items: start;
}
.contact-form-wrap h2 { color: var(--color-blue); }

/* Form fields */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.contact-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-field { display: flex; flex-direction: column; gap: 6px; }
.contact-field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-dark);
  letter-spacing: 0.02em;
}
.contact-field input,
.contact-field select,
.contact-field textarea {
  padding: 13px 18px;
  border: 1.5px solid var(--color-gray-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-dark);
  background: var(--color-white);
  outline: none;
  transition: border-color 0.2s ease;
  width: 100%;
}
.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus { border-color: var(--color-blue); }
.contact-field textarea { resize: vertical; min-height: 130px; }
.contact-field select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1L6 7L11 1' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }

/* Contact info sidebar */
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  background: var(--color-off-white);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-gray-light);
}
.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(14,50,93,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-card h5 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-gray-mid);
  margin-bottom: 4px;
}
.contact-info-card a {
  font-weight: 600;
  color: var(--color-blue);
  font-size: 0.95rem;
}
.contact-info-card p {
  font-size: 0.88rem;
  color: var(--color-gray-dark);
  margin: 4px 0 0;
  line-height: 1.55;
}

/* Legal / Accessibility content */
.legal-content { font-size: 1rem; line-height: 1.8; color: var(--color-dark); }
.legal-content h2 {
  font-size: 1.3rem;
  margin: 2.5rem 0 0.75rem;
  color: var(--color-blue);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-gray-light);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { margin-bottom: 1.2rem; }
.legal-content ul {
  list-style: disc;
  margin: 0 0 1.2rem 1.5rem;
}
.legal-content li { margin-bottom: 0.4rem; }
.legal-content a { color: var(--color-blue); text-decoration: underline; text-underline-offset: 3px; }
.legal-content strong { font-weight: 600; }

/* ============================================================
   BLOG — LISTING
   ============================================================ */

/* Short hero variant for blog/archive */
.page-hero--short { padding: clamp(80px, 8vw, 120px) 0 clamp(48px, 5vw, 72px); }

/* Category filter bar */
.blog-filter-bar {
  background: var(--color-off-white);
  border-bottom: 1px solid var(--color-gray-light);
  padding: 18px 0;
  position: sticky;
  top: 72px;
  z-index: 90;
}
.blog-filter-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.blog-filter-tag {
  display: inline-block;
  padding: 7px 18px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  font-family: var(--font-body);
  letter-spacing: 0.02em;
  color: var(--color-gray-dark);
  background: transparent;
  border: 1.5px solid var(--color-gray-mid);
  transition: all 0.2s ease;
}
.blog-filter-tag:hover,
.blog-filter-tag.active {
  background: var(--color-blue);
  color: #fff;
  border-color: var(--color-blue);
}

/* Blog post grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}

/* Blog card */
.blog-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--color-gray-light);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.blog-card-thumb {
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--color-blue);
}
.blog-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-card-thumb img { transform: scale(1.04); }

.blog-card-thumb--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-blue) 0%, #0a2240 100%);
}
.blog-card-placeholder-inner {
  opacity: 0.6;
}

.blog-card-body {
  padding: 28px 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.blog-card-cat {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-gold-dark);
  background: rgba(212,169,106,0.1);
  padding: 4px 10px;
  border-radius: 100px;
}
.blog-card-date {
  font-size: 0.8rem;
  color: var(--color-gray-mid);
}
.blog-card-title {
  font-size: 1.2rem;
  line-height: 1.3;
  margin-bottom: 12px;
}
.blog-card-title a { color: var(--color-dark); }
.blog-card-title a:hover { color: var(--color-blue); }
.blog-card-excerpt {
  font-size: 0.9rem;
  color: var(--color-gray-dark);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-blue);
  transition: gap 0.2s ease;
}
.blog-read-more:hover { gap: 10px; }

/* Pagination */
.blog-pagination {
  margin-top: 56px;
  display: flex;
  justify-content: center;
}
.blog-pagination .nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
}
.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1.5px solid var(--color-gray-light);
  color: var(--color-dark);
  transition: all 0.2s ease;
}
.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
  background: var(--color-blue);
  color: #fff;
  border-color: var(--color-blue);
}
.blog-pagination .page-numbers.dots {
  border: none;
  background: none;
}
.blog-pagination .prev,
.blog-pagination .next {
  width: auto;
  padding: 0 18px;
  font-size: 0.85rem;
}

/* Empty state */
.blog-empty {
  text-align: center;
  padding: 80px 24px;
  max-width: 480px;
  margin: 0 auto;
}
.blog-empty-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}
.blog-empty h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.blog-empty p {
  color: var(--color-gray-dark);
  margin-bottom: 24px;
}

/* Newsletter subscribe */
.blog-subscribe-form { text-align: center; }
.blog-subscribe-row {
  display: flex;
  gap: 8px;
  max-width: 480px;
  margin: 0 auto 12px;
}
.blog-subscribe-input {
  flex: 1;
  padding: 14px 20px;
  border: 1.5px solid var(--color-gray-light);
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-dark);
  background: var(--color-white);
  outline: none;
  transition: border-color 0.2s ease;
}
.blog-subscribe-input:focus { border-color: var(--color-blue); }
.blog-subscribe-note {
  font-size: 0.78rem;
  color: var(--color-gray-mid);
  margin: 0;
}
.blog-subscribe-note a { color: var(--color-blue); text-decoration: underline; }

/* ============================================================
   BLOG — SINGLE POST
   ============================================================ */

/* Post hero */
.post-hero {
  padding: clamp(80px, 8vw, 120px) 0 48px;
  background: var(--color-off-white);
  border-bottom: 1px solid var(--color-gray-light);
}
.post-hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.post-hero-date,
.post-hero-read {
  font-size: 0.82rem;
  color: var(--color-gray-mid);
}
.post-hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: 20px;
}
.post-hero-excerpt {
  font-size: 1.1rem;
  color: var(--color-gray-dark);
  line-height: 1.7;
  margin-bottom: 28px;
}
.post-hero-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.post-author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.post-author-name {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
}
.post-author-role {
  display: block;
  font-size: 0.78rem;
  color: var(--color-gray-mid);
}

/* Featured image */
.post-featured-image {
  padding: 40px 0 0;
  background: var(--color-off-white);
}
.post-featured-img {
  width: 100%;
  border-radius: var(--radius-card);
  aspect-ratio: 16/7;
  object-fit: cover;
}

/* Post layout: content + sidebar */
.post-body-wrap { padding: clamp(40px, 5vw, 72px) 0 clamp(60px, 8vw, 100px); }
.post-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 56px;
  align-items: start;
}

/* Entry content typography */
.entry-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-dark);
}
.entry-content h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  margin: 2.5rem 0 1rem;
  color: var(--color-blue);
}
.entry-content h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  margin: 2rem 0 0.75rem;
}
.entry-content h4 {
  font-size: 1.1rem;
  margin: 1.5rem 0 0.5rem;
}
.entry-content p { margin-bottom: 1.4rem; }
.entry-content ul,
.entry-content ol {
  margin: 0 0 1.4rem 1.5rem;
  list-style: disc;
}
.entry-content ol { list-style: decimal; }
.entry-content li { margin-bottom: 0.5rem; }
.entry-content blockquote {
  border-left: 4px solid var(--color-gold-dark);
  padding: 20px 28px;
  margin: 32px 0;
  background: rgba(212,169,106,0.06);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--color-blue);
}
.entry-content img {
  border-radius: var(--radius-sm);
  margin: 24px 0;
}
.entry-content a {
  color: var(--color-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.entry-content a:hover { color: var(--color-gold-dark); }
.entry-content hr {
  border: none;
  border-top: 1px solid var(--color-gray-light);
  margin: 40px 0;
}
.entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  font-size: 0.9rem;
}
.entry-content th,
.entry-content td {
  padding: 12px 16px;
  border: 1px solid var(--color-gray-light);
  text-align: left;
}
.entry-content th {
  background: var(--color-off-white);
  font-weight: 600;
}

/* Post navigation */
.post-nav {
  display: flex;
  gap: 16px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--color-gray-light);
}
.post-nav-link {
  flex: 1;
  padding: 20px 24px;
  border: 1.5px solid var(--color-gray-light);
  border-radius: var(--radius-card);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.post-nav-link:hover {
  border-color: var(--color-blue);
  background: var(--color-off-white);
}
.post-nav-link--next { text-align: right; }
.post-nav-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-gray-mid);
}
.post-nav-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-blue);
  line-height: 1.4;
}

/* Sidebar */
.post-sidebar {
  position: sticky;
  top: 104px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sidebar-card {
  background: var(--color-off-white);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  border: 1px solid var(--color-gray-light);
}
.sidebar-card h5 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-gray-mid);
  margin-bottom: 16px;
}
.sidebar-card strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.sidebar-card p {
  font-size: 0.85rem;
  color: var(--color-gray-dark);
  line-height: 1.6;
}
.sidebar-author-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(14,50,93,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

/* Sidebar tags */
.sidebar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.sidebar-tag {
  display: inline-flex;
  gap: 4px;
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  border: 1.5px solid var(--color-gray-light);
  color: var(--color-dark);
  transition: all 0.2s ease;
}
.sidebar-tag span { color: var(--color-gray-mid); }
.sidebar-tag:hover {
  background: var(--color-blue);
  color: #fff;
  border-color: var(--color-blue);
}
.sidebar-tag:hover span { color: rgba(255,255,255,0.6); }

/* Sidebar related */
.sidebar-related { display: flex; flex-direction: column; gap: 16px; }
.sidebar-related-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-dark);
  line-height: 1.4;
  transition: color 0.2s ease;
}
.sidebar-related-item:hover { color: var(--color-blue); }
.sidebar-related-thumb {
  width: 52px;
  height: 44px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--color-gray-light);
}
.sidebar-related-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Sidebar CTA card */
.sidebar-card--cta {
  background: var(--color-blue);
  border-color: var(--color-blue);
}
.sidebar-card--cta h5 { color: rgba(255,255,255,0.5); }
.sidebar-card--cta p { color: rgba(255,255,255,0.75); }
.sidebar-cta-icon {
  margin-bottom: 16px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-split { grid-template-columns: 1fr; }
  .about-img-wrapper { max-width: 480px; }
  .comparison-grid { grid-template-columns: 1fr; }
  .comparison-divider { writing-mode: horizontal-tb; padding: 14px; min-width: unset; }
  .post-layout { grid-template-columns: 1fr; }
  .post-sidebar { position: static; }
  .blog-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-form-row { grid-template-columns: 1fr; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 40px; }
  .manifesto-mark { width: 120px; }
  .email-capture-inner { grid-template-columns: 1fr; gap: 48px; }
  .vh-shield-watermark { width: 400px; right: -60px; opacity: 0.03; }
}

@media (max-width: 768px) {
  .primary-nav { display: none; }
  .header-cta .btn:not(.btn-gold) { display: none; }
  .menu-toggle { display: flex; }

  /* Video hero — mobile first */
  .vh-headline { font-size: clamp(2.4rem, 9vw, 3.2rem); }
  .vh-lead { font-size: 1rem; }
  .vh-ctas { flex-direction: column; }
  .vh-ctas .btn { width: 100%; justify-content: center; }
  .vh-badges { gap: 8px; }
  .vh-badge { font-size: 0.7rem; padding: 6px 10px; }
  .vh-shield-watermark { display: none; }
  .vh-scroll-hint { display: none; }

  .manifesto-line { font-size: clamp(1.4rem, 5vw, 2rem); }
  .manifesto-inner { gap: 24px; }
  .manifesto-mark { display: none; }
  .email-capture-form-wrap { padding: 28px 20px; }

  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }

  .process-step:not(:last-child)::after { display: none; }
  .process-steps { gap: 2px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .timeline-item { grid-template-columns: 1fr; gap: 8px; }

  .blog-grid { grid-template-columns: 1fr; }
  .blog-subscribe-row { flex-direction: column; }
  .blog-subscribe-input { border-radius: var(--radius-card); }
  .post-nav { flex-direction: column; }
  .blog-filter-bar { top: 68px; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .btn-lg { width: 100%; justify-content: center; }
  .cta-banner-ctas { flex-direction: column; align-items: center; }
  .vh-content { padding: 48px 0; }
}

/* ============================================================
   HOMEPAGE V2  —  MOCKUP REDESIGN
   ============================================================ */

/* ---- Flat Nav ---- */
.primary-nav--flat { gap: 0; }
.primary-nav--flat > li > a {
    font-size: 0.92rem;
    font-weight: 500;
    padding: 8px 10px;
    white-space: nowrap;
}
/* Kill any dropdown that survived from old markup */
.primary-nav--flat .sub-menu { display: none !important; }

/* ---- Hero ---- */
.hp-hero {
    background: #0d1f36;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(140px, 16vw, 180px) 24px clamp(80px, 12vw, 120px);
    position: relative;
    text-align: center;
    overflow: hidden;
}

/* Video background */
.hp-hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hp-hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Dark overlay so text stays readable over video */
.hp-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 20, 40, 0.55);
    z-index: 1;
}

.hp-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 860px;
    margin: 0 auto;
}

.hp-headline {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.18;
    letter-spacing: -0.01em;
    margin: 0 0 40px;
}

.hp-gold { color: #d4a96a; }

.hp-cta-btn {
    display: inline-block;
    background: #111827;
    color: #ffffff;
    font-family: 'DM Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    padding: 18px 52px;
    border-radius: 50px;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: background 0.2s, transform 0.15s;
    border: none;
}
.hp-cta-btn:hover { background: #000; transform: translateY(-1px); color: #fff; }

/* LegitScript badge — hero */
.hp-legitscript {
    position: absolute;
    top: clamp(20px, 4vw, 40px);
    right: clamp(20px, 4vw, 48px);
    z-index: 3;
}

.hp-ls-img {
    width: 80px;
    height: auto;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.35));
}

/* LegitScript badge — footer: sits next to Fortified logo */
.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-legitscript {
    height: 56px;
    width: auto;
    display: block;
    flex-shrink: 0;
}

/* ---- Program Cards Section ---- */
.hp-programs {
    background: #ffffff;
    padding: 64px 0 0;
}

.hp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(14px, 2vw, 24px);
    padding: 0 0 56px;
    max-width: 900px;
    margin: 0 auto;
    perspective: 1200px; /* perspective on grid prevents per-card 3D clipping */
}

/* ---- Flip Card ---- */
.hp-card {
    display: block;
    text-decoration: none;
    color: inherit;
    aspect-ratio: 4 / 5;
    cursor: pointer;
}
.hp-card:focus-visible { outline: 2px solid #d4a96a; outline-offset: 4px; border-radius: 20px; }

.hp-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover on pointer devices; .flipped class handles mobile tap */
@media (hover: hover) {
    .hp-card:hover .hp-card-inner { transform: rotateY(180deg); }
}
.hp-card.flipped .hp-card-inner { transform: rotateY(180deg); }

/* Shared face styles */
.hp-card-front,
.hp-card-back {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    overflow: hidden;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* --- FRONT --- */
.hp-card-front {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
}

.hp-card-img {
    width: 100%;
    flex: 1;
    overflow: hidden;
    background: #ffffff;
}

.hp-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transform: scale(1.10);
    transform-origin: center top;
    transition: transform 0.4s ease;
}
.hp-card:hover .hp-card-img img { transform: scale(1.14); }

/* Per-card image position tuning */
.hp-grid .hp-card:nth-child(2) .hp-card-img img { object-position: center center; } /* Weight Loss */

.hp-card-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #0d1f36;
    padding: 14px 12px 18px;
    margin: 0;
    text-align: center;
    flex-shrink: 0;
}

/* --- BACK --- */
.hp-card-back {
    transform: rotateY(180deg);
    background-color: #0d1f36; /* gradient image injected via PHP in functions.php */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 24px;
    text-align: center;
    gap: 18px;
}

.hp-card-back-program {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #d4a96a;
    margin: 0;
}

.hp-card-tagline {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    font-weight: 400;
    color: #ffffff;
    line-height: 1.45;
    margin: 0;
}

.hp-card-flip-cta {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #d4a96a;
    letter-spacing: 0.03em;
    border-bottom: 1px solid rgba(212,169,106,0.4);
    padding-bottom: 2px;
}

/* (wave + deco section removed — bottom-border-left/right icons were design references only) */

/* ---- Why Fortified grid ---- */
.hp-why { background: #f8fafc; }

.hp-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.hp-why-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 2px 12px rgba(13,31,54,0.07);
}

.hp-why-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: #edf3fa;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.hp-why-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #0d1f36;
    margin: 0 0 8px;
}

.hp-why-item p {
    font-size: 0.9rem;
    color: #5a6a7e;
    line-height: 1.65;
    margin: 0;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .primary-nav--flat { gap: 10px; }
    .primary-nav--flat > li > a { font-size: 0.95rem; }
    .hp-why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
    .hp-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .hp-why-grid { grid-template-columns: repeat(2, 1fr); }
    .hp-programs { padding-top: 40px; }
}

@media (max-width: 640px) {
    .hp-headline { font-size: clamp(2rem, 8vw, 2.8rem); margin-bottom: 32px; }
    .hp-cta-btn { padding: 16px 40px; font-size: 0.98rem; }
    .hp-legitscript { display: none; }
    .hp-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .hp-card-label { font-size: 1rem; }
    .hp-card-img { border-radius: 16px; }
    .hp-why-grid { grid-template-columns: 1fr; }
    .footer-logo-row { gap: 14px; }
    .footer-legitscript { height: 44px; }
}
