/* ============================================================
   CLARIVA MEDICAL — Global Stylesheet
   Design: Deep navy authority + warm gold clarity + clean white
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&family=Rajdhani:wght@500;600;700&display=swap');

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --navy:    #0B1F3A;
  --navy-mid:#122847;
  --gold:    #C8922A;
  --gold-lt: #E8B354;
  --teal:    #1A7A8A;
  --teal-lt: #239DB2;
  --white:   #FFFFFF;
  --off-white:#F5F7FA;
  --gray-100:#EEF1F5;
  --gray-300:#C4CDD8;
  --gray-500:#8796A8;
  --gray-700:#3D4F62;
  --text:    #1C2B3A;

  --font-display: 'Cormorant Garamond', serif;
  --font-ui:      'Rajdhani', sans-serif;
  --font-body:    'Inter', sans-serif;

  --radius: 4px;
  --radius-lg: 10px;
  --shadow: 0 4px 24px rgba(11,31,58,0.10);
  --shadow-lg: 0 12px 48px rgba(11,31,58,0.18);
  --transition: 0.22s ease;
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── UTILITY ─────────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section-label {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 20px;
}
.section-title.light { color: var(--white); }
.section-body {
  font-size: 1.05rem;
  color: var(--gray-700);
  max-width: 620px;
  line-height: 1.75;
}
.section-body.light { color: rgba(255,255,255,0.80); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-lt); border-color: var(--gold-lt); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover { background: var(--navy-mid); }

/* ── HEADER / NAV ────────────────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 2px solid var(--gold);
  box-shadow: 0 2px 20px rgba(0,0,0,0.30);
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 13px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-mark {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  position: relative;
  filter: drop-shadow(0 0 8px rgba(200,146,42,0.35)) drop-shadow(0 2px 6px rgba(0,0,0,0.4));
  transition: filter 0.25s ease;
}
.logo:hover .logo-mark {
  filter: drop-shadow(0 0 14px rgba(232,179,84,0.55)) drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}
.logo-mark svg {
  width: 56px;
  height: 56px;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 3px;
}
.logo-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
}
.logo-name .cla { color: var(--white); }
.logo-name .riva { color: var(--gold); }
.logo-name .med {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.28em;
  color: rgba(255,255,255,0.55);
  display: block;
  margin-top: 3px;
  text-transform: uppercase;
}
.logo-tagline {
  font-family: var(--font-ui);
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(200,146,42,0.65);
  margin-top: 1px;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); background: rgba(255,255,255,0.08); }
.nav-links a.active { color: var(--gold); }

.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-cta a.phone {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-lt);
  letter-spacing: 0.04em;
}
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile nav */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--navy-mid);
  padding: 16px 24px 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mobile-menu a:last-child { border: none; }
.mobile-menu a:hover { color: var(--gold-lt); }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(11,31,58,0.94) 0%, rgba(11,31,58,0.70) 55%, rgba(11,31,58,0.40) 100%),
    url('https://images.unsplash.com/photo-1576671081803-adf9e0c6fe7b?w=1600&q=80') center/cover no-repeat;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.hero-eyebrow-bar {
  width: 40px;
  height: 2px;
  background: var(--gold);
}
.hero-eyebrow span {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-lt);
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.80);
  margin-bottom: 36px;
  max-width: 560px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-badges {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 40px;
  align-items: center;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.65);
}
.hero-badge-icon {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(200,146,42,0.50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.hero-badge span {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

/* ── TRUST STRIP ─────────────────────────────────────────── */
.trust-strip {
  background: var(--off-white);
  border-bottom: 1px solid var(--gray-100);
  padding: 22px 0;
}
.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--gray-700);
}
.trust-item-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── HOW IT WORKS ────────────────────────────────────────── */
.how-section {
  padding: 100px 0;
  background: var(--white);
}
.how-header { text-align: center; margin-bottom: 64px; }
.how-header .section-body { max-width: 560px; margin: 0 auto; text-align: center; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--gray-100);
  border: 2px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.step-card {
  background: var(--white);
  padding: 48px 36px;
  position: relative;
}
.step-number {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.15;
  position: absolute;
  top: 16px;
  right: 24px;
  line-height: 1;
}
.step-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 24px;
}
.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}
.step-card p {
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.70;
}

/* ── STATS BAND ──────────────────────────────────────────── */
.stats-band {
  background: linear-gradient(110deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,146,42,0.14) 0%, transparent 70%);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
}
.stat-item {
  padding: 36px 32px;
  text-align: center;
  background: transparent;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--gold-lt);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* ── STUDIES / FOCUS AREAS ───────────────────────────────── */
.studies-section {
  padding: 100px 0;
  background: var(--off-white);
}
.studies-header { margin-bottom: 56px; }
.studies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.study-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
}
.study-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.study-card-img {
  height: 200px;
  overflow: hidden;
  background: var(--navy);
}
.study-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.study-card:hover .study-card-img img { transform: scale(1.04); }
.study-card-body {
  padding: 28px 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.study-tag {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(26,122,138,0.10);
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 14px;
  width: fit-content;
}
.study-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.25;
}
.study-card p {
  font-size: 0.92rem;
  color: var(--gray-700);
  line-height: 1.65;
  flex: 1;
}
.study-card-footer {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testimonials-section {
  padding: 100px 0;
  background: var(--white);
}
.testimonials-header { text-align: center; margin-bottom: 56px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--off-white);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 36px 32px;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-card blockquote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--gold-lt);
  flex-shrink: 0;
}
.testimonial-meta strong {
  display: block;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--navy);
  text-transform: uppercase;
}
.testimonial-meta span {
  font-size: 12px;
  color: var(--gray-500);
}

/* ── CTA BAND ────────────────────────────────────────────── */
.cta-band {
  padding: 90px 0;
  background: linear-gradient(110deg, var(--teal) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: 'C M';
  position: absolute;
  right: -30px; bottom: -60px;
  font-family: var(--font-display);
  font-size: 22rem;
  font-weight: 700;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.cta-text p {
  font-size: 1.0rem;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
}
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── WHY CLARIVA ─────────────────────────────────────────── */
.why-section {
  padding: 100px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute;
  left: -120px; top: -120px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,146,42,0.08) 0%, transparent 70%);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-content { position: relative; z-index: 1; }
.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 40px;
}
.why-feat {
  border-top: 2px solid rgba(200,146,42,0.35);
  padding-top: 18px;
}
.why-feat h4 {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 8px;
}
.why-feat p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.60);
  line-height: 1.65;
}
.why-visual {
  position: relative;
  z-index: 1;
}
.why-image-stack {
  position: relative;
  height: 480px;
}
.why-img-main {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.why-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}
.why-badge-card {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--gold);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow);
}
.why-badge-card .num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}
.why-badge-card .lbl {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(11,31,58,0.75);
}

/* ── FORMS ───────────────────────────────────────────────── */
.form-page-hero {
  background: linear-gradient(110deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 80px 0 64px;
  text-align: center;
  border-bottom: 3px solid var(--gold);
}
.form-page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}
.form-page-hero p {
  font-size: 1.0rem;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  margin: 0 auto;
}

.form-section { padding: 80px 0 100px; background: var(--off-white); }
.form-wrapper {
  max-width: 680px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 48px 48px 52px;
  border-top: 4px solid var(--gold);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
}
.form-group.full { grid-column: 1 / -1; }
label {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-700);
  margin-bottom: 7px;
}
label .opt {
  color: var(--gray-500);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  margin-left: 4px;
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  padding: 12px 16px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(26,122,138,0.12);
}
textarea { min-height: 110px; resize: vertical; }
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 1l5 5 5-5' stroke='%238796A8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }

/* CHECKBOXES */
.consent-block {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-bottom: 16px;
}
.consent-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.consent-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--teal);
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
}
.consent-check label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--gray-700);
  cursor: pointer;
  line-height: 1.60;
}
.consent-check label a { color: var(--teal); text-decoration: underline; }
.optional-badge {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-500);
  background: var(--gray-100);
  padding: 2px 8px;
  border-radius: 2px;
  margin-bottom: 8px;
}
.form-submit { margin-top: 28px; width: 100%; justify-content: center; font-size: 16px; padding: 16px 40px; }

/* THANK YOU MESSAGE */
.thank-you {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.thank-you h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 14px;
}
.thank-you p { color: var(--gray-700); font-size: 1.0rem; }
.thank-you-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(26,122,138,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 24px;
}

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
  padding: 72px 0 0;
  border-top: 3px solid var(--gold);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p {
  font-size: 0.90rem;
  line-height: 1.70;
  margin: 18px 0 20px;
  max-width: 300px;
  color: rgba(255,255,255,0.55);
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.65);
}
.footer-contact-item span { font-size: 14px; flex-shrink: 0; margin-top: 1px; }
.footer-col h4 {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.90rem;
  color: rgba(255,255,255,0.60);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--white); padding-left: 4px; }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.38);
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  transition: var(--transition);
}
.footer-bottom-links a:hover { color: var(--white); }
.footer-disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.30);
  margin-top: 12px;
  padding: 12px 0 4px;
  border-top: 1px solid rgba(255,255,255,0.05);
  line-height: 1.60;
}

/* ── INTERIOR PAGE SECTIONS ──────────────────────────────── */
.page-hero {
  background: linear-gradient(110deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 80px 0 64px;
  border-bottom: 3px solid var(--gold);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  max-width: 700px;
}
.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  max-width: 580px;
  line-height: 1.72;
}

.content-section {
  padding: 80px 0 100px;
  background: var(--white);
}
.content-two-col {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 64px;
  align-items: start;
}
.prose h2 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--navy);
  margin: 40px 0 14px;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin: 28px 0 10px;
}
.prose p {
  font-size: 0.97rem;
  color: var(--gray-700);
  margin-bottom: 18px;
  line-height: 1.78;
}
.prose ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 18px;
}
.prose ul li {
  font-size: 0.95rem;
  color: var(--gray-700);
  margin-bottom: 8px;
  line-height: 1.65;
}
.prose strong { color: var(--navy); font-weight: 600; }
.prose a { color: var(--teal); text-decoration: underline; }

.sidebar-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--gray-100);
  position: sticky;
  top: 90px;
}
.sidebar-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--gold);
}
.sidebar-card p {
  font-size: 0.90rem;
  color: var(--gray-700);
  line-height: 1.65;
  margin-bottom: 16px;
}
.sidebar-card a.btn { width: 100%; justify-content: center; }

/* FAQ ACCORDION */
.faq-section { padding: 80px 0 100px; background: var(--off-white); }
.faq-header { text-align: center; margin-bottom: 56px; }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--gray-100);
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 6px;
  overflow: hidden;
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  transition: var(--transition);
  gap: 16px;
}
.faq-q:hover { background: var(--off-white); }
.faq-q .arrow {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-300);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
  transition: transform var(--transition);
  color: var(--navy);
}
.faq-item.open .faq-q .arrow { transform: rotate(180deg); border-color: var(--teal); color: var(--teal); }
.faq-a {
  display: none;
  padding: 0 24px 22px;
  font-size: 0.94rem;
  color: var(--gray-700);
  line-height: 1.72;
}
.faq-item.open .faq-a { display: block; }

/* ── MOBILE RESPONSIVE ───────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .steps-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .studies-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-image-stack { height: 320px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-badges { display: none; }
  .cta-inner { flex-direction: column; gap: 28px; }
  .content-two-col { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-wrapper { padding: 32px 24px 40px; }
  .why-features { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .studies-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.4rem; }
  .hero-actions { flex-direction: column; }
  .trust-strip-inner { gap: 20px; }
}
