/* =====================================================================
   Now Mold Testing — Website Mockup Stylesheet (v2 — premium dark style)
   ===================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Playfair+Display:wght@700;800&display=swap');

:root {
  /* Brand accents (kept for legacy uses) */
  --brand-blue: #1c63a8;
  --brand-blue-dark: #144d85;
  --brand-blue-soft: #e8f4fc;

  /* Sky-blue hero palette (gotmold-inspired) */
  --sky-blue:        #3aaee8;
  --sky-blue-light:  #6cc7f3;
  --sky-blue-dark:   #1d8acc;

  /* Deep navy for footer / CTA banner / section-dark */
  --brand-navy:      #1d3a8a;
  --brand-navy-dark: #142766;

  /* Bright pill green for CTAs */
  --brand-green:      #3ec73d;
  --brand-green-dark: #2da82c;
  --brand-green-soft: #e8f8e8;

  /* Repurposed: --accent-amber is now bright green so existing classes still work */
  --accent-amber: #3ec73d;
  --accent-rust:  #d33b2c;

  --soft-bg:   #f4f8fc;
  --ink:       #1a2540;
  --ink-light: #2e3e60;
  --muted:     #5b6b80;
  --border:    #e3e8f0;

  /* Repurposed: dark tokens now resolve to deep navy so footer/CTA stay sophisticated */
  --black:      var(--brand-navy);
  --black-soft: var(--brand-navy);
  --black-mid:  var(--brand-navy-dark);

  --shadow-sm: 0 1px 3px rgba(29,58,138,0.06);
  --shadow-md: 0 6px 18px rgba(29,58,138,0.10);
  --shadow-lg: 0 14px 40px rgba(29,58,138,0.16);
  --shadow-glow: 0 0 80px rgba(58,174,232,0.35);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: var(--brand-blue); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

/* ===== UTILITIES ===== */
.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 28px; }
.section { padding: 96px 0; }
.section-tight { padding: 48px 0; }
.section-soft { background: var(--soft-bg); }
.section-blue { background: var(--brand-blue-soft); }
.section-dark { background: var(--brand-navy); color: #fff; position: relative; overflow: hidden; }
.section-dark::before {
  content: ""; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(58,174,232,0.20) 0%, transparent 65%);
  pointer-events: none;
}
.section-dark .lead { color: rgba(255,255,255,0.82); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; position: relative; z-index: 1; }
.section-dark .eyebrow { color: var(--sky-blue-light); background: rgba(255,255,255,0.10); padding: 4px 12px; border-radius: 999px; }
.section-dark > .container, .section-dark > .container-narrow { position: relative; z-index: 1; }

.eyebrow {
  font-size: 12px; font-weight: 700; color: var(--brand-blue);
  text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 14px;
  display: inline-block;
}

h1 {
  font-size: 64px; font-weight: 900; line-height: 1.02; letter-spacing: -0.025em;
  color: var(--ink);
}
h2 {
  font-size: 44px; font-weight: 800; line-height: 1.1; letter-spacing: -0.02em;
  color: var(--ink);
}
h3 { font-size: 22px; font-weight: 700; line-height: 1.3; color: var(--ink); }
h4 { font-size: 17px; font-weight: 700; color: var(--ink); }

.lead {
  font-size: 19px; color: var(--muted); line-height: 1.55;
  font-weight: 400;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px; font-size: 14.5px; font-weight: 700;
  border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; text-decoration: none !important;
  transition: transform 0.1s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
  letter-spacing: -0.005em;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--brand-navy); color: #fff;
  box-shadow: 0 6px 16px rgba(29,58,138,0.28);
}
.btn-primary:hover { background: var(--brand-navy-dark); box-shadow: 0 10px 22px rgba(29,58,138,0.36); }
/* btn-amber repurposed → bright pill green (matches gotmold "Get Your Kit") */
.btn-amber { background: var(--brand-green); color: #fff; box-shadow: 0 6px 16px rgba(62,199,61,0.32); }
.btn-amber:hover { background: var(--brand-green-dark); }
.btn-green { background: var(--brand-green); color: #fff; box-shadow: 0 6px 16px rgba(62,199,61,0.32); }
.btn-green:hover { background: var(--brand-green-dark); }
.btn-blue { background: var(--brand-blue); color: #fff; box-shadow: 0 6px 16px rgba(28,99,168,0.28); }
.btn-blue:hover { background: var(--brand-blue-dark); }
.btn-outline { background: #fff; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.32); }
.btn-outline-light:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); padding: 10px 18px; }
.btn-ghost:hover { background: var(--soft-bg); }
.btn-lg { padding: 17px 32px; font-size: 15px; }

/* ===== HEADER ===== */
.site-header {
  background: rgba(255,255,255,0.97); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 28px; max-width: 1240px; margin: 0 auto;
}
.brand-link { display: flex; align-items: center; gap: 10px; }
.brand-link img {
  height: 108px; width: auto;
}
.site-nav { display: flex; gap: 4px; align-items: center; }
.site-nav a {
  color: var(--ink); padding: 10px 14px; font-size: 14.5px; font-weight: 600;
  border-radius: 8px; text-decoration: none; letter-spacing: -0.005em;
}
.site-nav a:hover { background: var(--soft-bg); text-decoration: none; }
.site-nav a.active { color: var(--brand-blue); }
.site-nav .btn { margin-left: 12px; padding: 11px 20px; font-size: 13.5px; }
/* Higher specificity to ensure CTA buttons in the nav keep their white text */
.site-nav a.btn-primary,
.site-nav a.btn-amber,
.site-nav a.btn-green,
.site-nav a.btn-blue { color: #fff; }
.site-nav a.btn-primary:hover { background: var(--brand-navy-dark); }

/* ===== HERO PHOTO BACKGROUND (home page) ===== */
.hero-dark.hero-photo {
  background:
    url("images/hero-mold.jpg") center center / cover no-repeat,
    var(--brand-navy);
  position: relative;
  padding: 80px 0 90px;
  overflow: hidden;
}
.hero-dark.hero-photo::before,
.hero-dark.hero-photo::after { display: none; }
.hero-photo-overlay {
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(100deg,
      rgba(20,39,102,0.55) 0%,
      rgba(29,58,138,0.30) 35%,
      rgba(29,58,138,0.10) 70%,
      rgba(29,58,138,0.05) 100%);
}
.hero-photo .hero-dark-grid { position: relative; z-index: 1; }
.hero-photo-text { color: #fff; }
.hero-photo-text .lead { color: rgba(255,255,255,0.92); }
.hero-tagline {
  font-size: 14.5px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sky-blue-light);
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.20);
  display: inline-block;
}

/* Hero questionnaire panel (replaces kit photo in the right column) */
.hero-questionnaire-wrap {
  background: #ffffff;
  border-radius: 20px;
  padding: 0 26px 24px;
  max-width: 540px;
  margin-left: auto;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  position: relative;
  overflow: hidden;
}
/* Bright accent stripe across the top of the questionnaire card */
.hero-questionnaire-wrap::before {
  content: "";
  display: block;
  height: 10px;
  margin: 0 -26px 24px;
  background: linear-gradient(90deg,
    var(--brand-green) 0%,
    var(--sky-blue) 50%,
    var(--brand-navy) 100%);
}
/* Pulsing "Start Here ↓" attention badge */
.hero-questionnaire-wrap::after {
  content: "Start here ↓";
  position: absolute;
  top: 18px;
  right: 22px;
  color: var(--brand-green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
@keyframes pulse-badge {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.06); }
}

.hero-questionnaire-wrap .hero-q-intro { margin-bottom: 16px; padding-top: 4px; }
.hero-questionnaire-wrap .hero-q-intro .eyebrow {
  background: var(--brand-green) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 10px rgba(62,199,61,0.30);
}
.hero-questionnaire-wrap .hero-q-intro h2 {
  color: var(--brand-navy) !important;
  font-size: 26px !important;
  font-weight: 900;
  letter-spacing: -0.01em;
}
.hero-questionnaire-wrap .hero-q-intro p {
  color: var(--ink-light) !important;
}

/* The interactive questionnaire card itself */
.hero-questionnaire-wrap .questionnaire {
  padding: 22px 22px;
  border: 2px solid var(--brand-green);
  border-radius: 14px;
  background:
    linear-gradient(180deg, #f7fbf7 0%, #ffffff 100%);
  box-shadow: 0 8px 20px rgba(62,199,61,0.18);
}
.hero-questionnaire-wrap .q-question {
  color: var(--brand-navy);
  font-size: 20px;
}
.hero-questionnaire-wrap .q-option {
  border: 2px solid #c7e3c7;
  background: #ffffff;
  transition: all 0.15s ease;
  color: var(--brand-navy);
  font-weight: 700;
  font-size: 15.5px;
  line-height: 1.4;
  padding: 14px 16px;
}
.hero-questionnaire-wrap .q-option .q-label {
  color: var(--brand-navy);
  font-weight: 700;
  line-height: 1.4;
}
.hero-questionnaire-wrap .q-option:hover {
  border-color: var(--brand-green);
  background: #f0faf0;
  transform: translateX(2px);
}
.hero-questionnaire-wrap .q-option.selected,
.hero-questionnaire-wrap .q-option.selected .q-label {
  background: var(--brand-green);
  border-color: var(--brand-green);
  color: #ffffff;
}
.hero-questionnaire-wrap .q-option.selected .q-bullet {
  background: #ffffff;
  border-color: #ffffff;
}
.hero-questionnaire-wrap .q-option.selected .q-bullet::after {
  color: var(--brand-green);
}
.hero-questionnaire-wrap .q-progress-fill {
  background: linear-gradient(90deg, var(--brand-green), var(--sky-blue));
}

/* ===== VISUAL COMPARISON CARDS (Why Choose Us) ===== */
.compare-cards {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 20px;
  align-items: stretch;
}
.compare-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.15s, box-shadow 0.15s;
}
.compare-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.compare-card.cc-featured {
  border: 3px solid var(--brand-green);
  background: linear-gradient(180deg, #f7fbf7 0%, #ffffff 22%);
  box-shadow: 0 18px 40px rgba(62,199,61,0.22);
  transform: scale(1.03);
  z-index: 1;
}
.compare-card.cc-featured:hover { transform: scale(1.03) translateY(-3px); }
.cc-badge {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--brand-green); color: #fff;
  font-size: 11px; font-weight: 800;
  padding: 6px 14px; border-radius: 999px;
  letter-spacing: 0.10em; text-transform: uppercase;
  box-shadow: 0 6px 14px rgba(62,199,61,0.40);
  white-space: nowrap;
}
.cc-image {
  height: 130px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  border-radius: 12px;
  background: var(--soft-bg);
  overflow: hidden;
}
.cc-image svg { width: 100px; height: 100px; }
.cc-image-us { background: var(--brand-navy); padding: 10px; }
.cc-image-us img { max-height: 110px; width: auto; filter: drop-shadow(0 6px 14px rgba(0,0,0,0.35)); }
.cc-name {
  font-size: 19px; font-weight: 800;
  color: var(--ink);
  margin-bottom: 4px;
  text-align: center;
}
.cc-featured .cc-name { color: var(--brand-navy); }
.cc-price {
  font-size: 22px; font-weight: 900;
  color: var(--brand-blue);
  text-align: center;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.cc-tagline {
  font-size: 12px; color: var(--muted);
  text-align: center; text-transform: uppercase; letter-spacing: 0.06em;
  font-weight: 600;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.cc-list {
  list-style: none; padding: 0; margin: 0 0 18px;
  display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.cc-row {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13.5px; line-height: 1.4;
  color: var(--ink-light);
}
.cc-row .cc-mark {
  flex-shrink: 0;
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  font-weight: 800;
  font-size: 12px;
}
.cc-row.cc-yes .cc-mark { background: var(--brand-green-soft); color: var(--brand-green-dark); }
.cc-row.cc-no  .cc-mark { background: #fad8d4; color: #8c2010; }
.cc-row.cc-mid .cc-mark { background: #fdefc0; color: #7a4c00; }
.cc-cta { margin-top: auto; justify-content: center; }
@media (max-width: 900px) {
  .compare-cards { grid-template-columns: 1fr; }
  .compare-card.cc-featured { transform: none; order: -1; }
  .compare-card.cc-featured:hover { transform: translateY(-3px); }
}

/* ===== STAKES SECTION (negative consequences of not testing) ===== */
.stakes-section { background: var(--soft-bg); }
.stakes-card {
  background: #fff;
  border-radius: 18px;
  padding: 40px 44px;
  border-top: 5px solid var(--accent-amber);
  box-shadow: 0 8px 22px rgba(29,58,138,0.08);
  text-align: center;
}
.stakes-eyebrow {
  color: #b86c00;
  background: #fff8ed;
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.stakes-headline {
  font-size: 30px;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.stakes-body {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-light);
  max-width: 640px;
  margin: 0 auto 24px;
}
.stakes-symptoms {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 22px;
}
.stakes-chip {
  background: #fff8ed;
  border: 1px solid #f3d8a0;
  color: #8a5800;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}
.stakes-cta-line {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--brand-green-dark);
}
@media (max-width: 700px) {
  .stakes-card { padding: 28px 22px; }
  .stakes-headline { font-size: 23px; }
}

/* ===== TRANSFORMATION SECTION (video-backed success moment) ===== */
.hero-transformation {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  padding: 80px 0;
  display: flex;
  align-items: center;
  color: #fff;
  background: var(--brand-navy); /* fallback while video loads */
}
.hero-transformation .bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  z-index: 0;
  pointer-events: none;
}
.hero-transformation-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(120deg,
    rgba(20,39,102,0.72) 0%,
    rgba(29,58,138,0.55) 50%,
    rgba(20,39,102,0.40) 100%);
}
.hero-transformation-content {
  position: relative;
  z-index: 1;
}
.hero-transformation h2 {
  color: #fff;
  font-size: 44px;
  letter-spacing: -0.02em;
  margin-top: 14px;
  text-shadow: 0 2px 12px rgba(20,39,102,0.30);
}
.hero-transformation .lead {
  color: rgba(255,255,255,0.94);
  margin-top: 22px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 4px rgba(20,39,102,0.40);
}
@media (max-width: 1024px) {
  .hero-transformation h2 { font-size: 32px; }
  .hero-transformation { min-height: 480px; padding: 64px 0; }
}

/* ===== HERO BANNER (lab/science photo background) ===== */
.hero-dark {
  background:
    linear-gradient(120deg,
      rgba(20,39,102,0.78) 0%,
      rgba(29,58,138,0.55) 45%,
      rgba(29,58,138,0.30) 75%,
      rgba(29,58,138,0.20) 100%),
    url("images/hero-banner.jpg") center center / cover no-repeat,
    var(--brand-navy);
  color: #fff;
  /* Fixed banner footprint so the menu/header position stays static between pages */
  min-height: 620px;
  display: flex;
  align-items: center;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.hero-dark > .container,
.hero-dark > .container-narrow,
.hero-dark > .hero-dark-grid {
  width: 100%;
}
.hero-dark::before,
.hero-dark::after { display: none; }
.hero-dark-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px;
  align-items: center; max-width: 1240px; margin: 0 auto; padding: 0 28px;
  position: relative; z-index: 1;
}
.hero-dark .eyebrow { color: rgba(255,255,255,0.92); margin-bottom: 18px; background: rgba(255,255,255,0.18); padding: 4px 12px; border-radius: 999px; }
.hero-dark h1 { color: #fff; margin-bottom: 22px; text-shadow: 0 2px 12px rgba(29,58,138,0.18); }
.hero-dark h1 em { font-style: normal; color: #fff; opacity: 0.92; }
.hero-dark .lead { color: rgba(255,255,255,0.92); font-size: 19px; max-width: 540px; margin-bottom: 30px; }
.hero-dark-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-dark-trust { display: flex; gap: 26px; flex-wrap: wrap; font-size: 13px; color: rgba(255,255,255,0.88); padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.22); margin-top: 4px; font-weight: 500; }
.hero-dark-trust .item { display: inline-flex; align-items: center; gap: 8px; }
.hero-dark-trust .check {
  width: 20px; height: 20px; border-radius: 50%;
  background: #fff; color: var(--brand-navy);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800;
}
.hero-dark-image {
  display: flex; align-items: center; justify-content: center;
  height: 100%; position: relative;
}
.hero-dark-image img {
  max-width: 100%; max-height: 680px; width: auto; height: auto;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(20,39,102,0.32), 0 6px 20px rgba(20,39,102,0.18);
}
/* When the kit image is a transparent PNG, swap the rectangle shadow for
   a drop-shadow filter that follows the actual product silhouette. */
.hero-dark-image img.kit-floating {
  border-radius: 0;
  box-shadow: none;
  filter:
    drop-shadow(0 18px 28px rgba(20,39,102,0.45))
    drop-shadow(0 4px 10px rgba(20,39,102,0.30));
}


/* ===== TRUST / PRESS STRIP ===== */
.trust-strip {
  background: #fff; border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.trust-strip-inner {
  display: flex; gap: 48px; justify-content: center; align-items: center;
  flex-wrap: wrap; max-width: 1240px; margin: 0 auto; padding: 0 28px;
}
.trust-strip-inner .label {
  font-size: 11px; color: var(--muted); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
}
.trust-strip-inner .item {
  font-size: 13.5px; color: var(--ink); font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
}
.trust-strip-inner .item .icon {
  width: 22px; height: 22px; color: var(--brand-blue);
}

/* ===== INLINE ICON SUPPORT (emoji replacements) ===== */
.stakes-chip { display: inline-flex; align-items: center; gap: 7px; }
.stakes-chip svg { width: 15px; height: 15px; flex-shrink: 0; }
.stakes-eyebrow { display: inline-flex; align-items: center; gap: 6px; }
.stakes-eyebrow svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ===== GUARANTEE LINE ===== */
.guarantee-line {
  display: inline-flex; align-items: center; gap: 12px; text-align: left;
  background: #f1f8f4; border: 1px solid #cfe6d8; border-radius: 12px;
  padding: 14px 20px; font-size: 14px; line-height: 1.5; color: var(--ink-light);
  max-width: 620px;
}
.guarantee-line svg { width: 26px; height: 26px; color: var(--brand-green); flex-shrink: 0; }
.guarantee-line strong { color: var(--brand-green-dark); }
.guarantee-sm { font-size: 13px; padding: 11px 15px; gap: 9px; margin-top: 16px; }
.guarantee-sm svg { width: 20px; height: 20px; }

/* ===== TRUST BADGES ===== */
.trust-badges-band { background: var(--soft-bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 24px 0; }
.trust-badges { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 16px 30px; max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.trust-badge { display: inline-flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 600; color: var(--ink-light); }
.trust-badge svg { width: 21px; height: 21px; color: var(--brand-green); flex-shrink: 0; }

/* ===== LEAD CAPTURE ===== */
.lead-capture {
  background: linear-gradient(135deg, var(--brand-navy, #1f2a3a), #2b3a4f);
  color: #fff; border-radius: 20px; padding: 40px 44px;
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 34px; align-items: center;
}
.lead-capture h2 { color: #fff; font-size: 26px; margin-bottom: 10px; line-height: 1.25; }
.lead-capture p { color: rgba(255,255,255,0.82); font-size: 15px; line-height: 1.6; margin: 0; }
.lead-capture-form { display: flex; gap: 10px; flex-wrap: wrap; }
.lead-capture-form input { flex: 1; min-width: 200px; padding: 14px 16px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.25); font-size: 14.5px; }
.lead-capture-note { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 12px; }
@media (max-width: 760px) { .lead-capture { grid-template-columns: 1fr; padding: 28px 24px; gap: 20px; } }

/* ===== SECTION HEADER ===== */
.section-head {
  text-align: center; max-width: 760px; margin: 0 auto 48px;
}
.section-head .lead { margin-top: 16px; }

/* ===== Á LA CARTE PRICING CARDS ===== */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.price-card {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: 20px; padding: 32px; display: flex; flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--brand-blue); }
.price-card.featured {
  border-color: var(--brand-green); border-width: 3px;
  box-shadow: 0 18px 40px rgba(62,199,61,0.22), 0 4px 12px rgba(29,58,138,0.10);
  position: relative;
  background: linear-gradient(180deg, #f7fbf7 0%, #ffffff 18%);
  transform: scale(1.04);
  z-index: 1;
}
.price-card.featured::before {
  content: "★ Most Popular";
  position: absolute; top: -16px; left: 50%;
  transform: translateX(-50%);
  background: var(--brand-green); color: #fff;
  font-size: 11px; font-weight: 800;
  padding: 7px 16px; border-radius: 999px;
  letter-spacing: 0.10em; text-transform: uppercase;
  box-shadow: 0 6px 14px rgba(62,199,61,0.40);
  white-space: nowrap;
}
.price-card.featured .pc-eyebrow { color: var(--brand-green); }
.price-card.featured .price { color: var(--brand-navy); }
@media (max-width: 1024px) {
  .price-card.featured { transform: none; }
}
.price-card .pc-eyebrow {
  font-size: 11px; font-weight: 800; color: var(--brand-green);
  text-transform: uppercase; letter-spacing: 0.10em; margin-bottom: 10px;
}
.price-card h3 { margin-bottom: 12px; font-size: 22px; }
.price-card .price {
  font-size: 44px; font-weight: 900; color: var(--ink);
  margin: 4px 0 4px; letter-spacing: -0.02em;
}
.price-card .price-sub { font-size: 13px; color: var(--muted); margin-bottom: 18px; }
.price-card p { font-size: 14px; color: var(--ink-light); margin-bottom: 18px; line-height: 1.55; }
.price-card .includes {
  font-size: 13px; color: var(--muted); margin-top: auto;
  padding-top: 22px; border-top: 1px solid var(--border);
}
.price-card .includes-title { font-size: 11px; font-weight: 800; color: var(--ink); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px; }
.price-card .includes ul { list-style: none; padding: 0; margin: 0; }
.price-card .includes li { padding: 5px 0 5px 24px; position: relative; line-height: 1.5; color: var(--ink-light); }
.price-card .includes li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 14px; height: 14px;
  background: var(--brand-green); border-radius: 50%;
}
.price-card .includes li::after {
  content: "✓"; position: absolute; left: 3px; top: 6px;
  font-size: 10px; color: #fff; font-weight: 800;
}
.price-card .btn { margin-top: 20px; width: 100%; justify-content: center; }

/* ===== HOW IT WORKS — gotmold-style ===== */
.steps-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.steps-row.three-steps {
  grid-template-columns: repeat(3, 1fr);
  max-width: 920px;
  margin: 0 auto;
}
.step-card {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: 18px; padding: 28px; text-align: center;
  transition: transform 0.18s, box-shadow 0.18s;
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-card .step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--ink); color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-weight: 900; font-size: 22px;
  letter-spacing: -0.02em;
}
.step-card.green .step-num { background: var(--brand-green); }
.step-card.blue .step-num { background: var(--brand-blue); }
.step-card.amber .step-num { background: var(--accent-amber); color: var(--ink); }
.step-card h4 { margin-bottom: 8px; font-size: 17px; }
.step-card p { font-size: 13.5px; color: var(--muted); line-height: 1.55; }

/* ===== QUESTIONNAIRE ===== */
.questionnaire {
  background: #fff; border: 1.5px solid var(--border); border-radius: 22px;
  padding: 36px 40px; box-shadow: var(--shadow-md);
}
.q-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px;
}
.q-progress { font-size: 11px; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.q-progress-bar {
  height: 4px; background: var(--soft-bg); border-radius: 2px; margin-bottom: 28px; overflow: hidden;
}
.q-progress-fill {
  height: 100%; background: linear-gradient(90deg, var(--brand-green), var(--brand-blue));
  width: 0; transition: width 0.4s;
}
.q-question {
  font-size: 24px; font-weight: 800; line-height: 1.25; color: var(--ink); margin-bottom: 22px; letter-spacing: -0.01em;
}
.q-options { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.q-option {
  background: #fff; border: 1.5px solid var(--border); border-radius: 12px;
  padding: 16px 20px; cursor: pointer; font-size: 15px; font-weight: 600;
  display: flex; align-items: center; gap: 14px; transition: all 0.12s;
}
.q-option:hover { border-color: var(--ink); background: var(--soft-bg); }
.q-option.selected { border-color: var(--ink); background: var(--ink); color: #fff; }
.q-option .q-bullet {
  width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--border);
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
}
.q-option.selected .q-bullet { background: var(--accent-amber); border-color: var(--accent-amber); }
.q-option.selected .q-bullet::after { content: "✓"; color: var(--ink); font-size: 12px; font-weight: 800; }
.q-option .q-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  color: var(--brand-blue);
  background: var(--brand-blue-soft);
  border-radius: 8px;
  flex-shrink: 0;
}
.q-option .q-icon svg { width: 20px; height: 20px; display: block; }
.q-option .q-icon:empty { display: none; }
.q-option .q-label { flex: 1; }
.q-option.selected .q-icon { background: rgba(255,255,255,0.20); color: #ffffff; }
.hero-questionnaire-wrap .q-option .q-icon { background: var(--brand-green-soft); color: var(--brand-green-dark); }
.hero-questionnaire-wrap .q-option.selected .q-icon { background: rgba(255,255,255,0.22); color: #ffffff; }
.q-textarea {
  width: 100%; min-height: 100px; padding: 14px 16px; font-family: inherit; font-size: 14.5px;
  border: 1.5px solid var(--border); border-radius: 10px; resize: vertical; margin-bottom: 22px;
}
.q-textarea:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 3px rgba(0,0,0,0.06); }
.q-actions { display: flex; justify-content: space-between; gap: 12px; align-items: center; }
.q-result {
  background: linear-gradient(135deg, var(--brand-green-soft) 0%, var(--brand-blue-soft) 100%);
  border: 1.5px solid var(--brand-green);
  border-radius: 14px; padding: 26px;
}
.q-result h3 { color: var(--brand-green-dark); margin-bottom: 8px; font-size: 22px; }
.q-result-rec {
  background: #fff; border-radius: 12px; padding: 18px 20px; margin-top: 16px;
  border-left: 4px solid var(--brand-blue);
}
.q-result-rec strong { color: var(--brand-blue); font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; display: block; margin-bottom: 6px; }
.q-result-rec ul { margin: 8px 0 0 20px; font-size: 14px; }
.q-result-rec li { margin-bottom: 3px; }
.q-result-actions { margin-top: 18px; display: flex; gap: 10px; flex-wrap: wrap; }

/* ===== COMPARISON CHART ===== */
.compare-wrap {
  overflow-x: auto; border-radius: 18px; box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
table.compare {
  width: 100%; border-collapse: collapse; font-size: 14px; background: #fff;
}
table.compare th {
  background: #fff; padding: 18px 20px; text-align: left; font-weight: 800;
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink);
  border-bottom: 2px solid var(--ink);
}
table.compare th.us { background: var(--ink); color: #fff; }
table.compare td { padding: 16px 20px; border-bottom: 1px solid var(--border); color: var(--ink-light); }
table.compare td:first-child { font-weight: 600; color: var(--ink); }
table.compare tr:last-child td { border-bottom: none; }
table.compare tr:hover td { background: var(--soft-bg); }
table.compare tr:hover td.us-cell { background: rgba(28,99,168,0.05); }
table.compare .yes { color: var(--brand-green); font-weight: 700; }
table.compare .no { color: var(--accent-rust); font-weight: 700; }
table.compare .partial { color: var(--accent-amber); font-weight: 700; }

/* ===== FEATURE GRID ===== */
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.feature-card {
  background: #fff; border: 1.5px solid var(--border); border-radius: 18px;
  padding: 28px; transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--brand-blue); }
.feature-card .icon-wrap {
  width: 52px; height: 52px; border-radius: 14px; background: var(--brand-blue-soft);
  color: var(--brand-blue); display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.feature-card h3 { margin-bottom: 8px; }
.feature-card p { font-size: 14.5px; color: var(--muted); line-height: 1.6; }

/* ===== TESTIMONIALS ===== */
.testimonial-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.testimonial {
  background: #fff; border: 1.5px solid var(--border); border-radius: 18px;
  padding: 28px;
}
.testimonial .stars {
  color: var(--accent-amber); font-size: 16px; letter-spacing: 2px; margin-bottom: 14px;
}
.testimonial p {
  font-size: 16px; line-height: 1.55; color: var(--ink);
  margin-bottom: 16px; font-weight: 500;
}
.testimonial .author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px; border-top: 1px solid var(--border);
}
.testimonial .author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-green));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px;
}
.testimonial .author-meta { font-size: 13px; }
.testimonial .author-meta strong { display: block; color: var(--ink); }
.testimonial .author-meta span { color: var(--muted); }

/* ===== FAQ ACCORDION ===== */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border); padding: 4px 0;
}
.faq-item summary {
  cursor: pointer; padding: 22px 0; font-weight: 700; font-size: 17px;
  color: var(--ink); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 24px; font-weight: 400; color: var(--muted); transition: transform 0.2s;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p { padding: 0 0 22px; color: var(--muted); line-height: 1.65; font-size: 15px; }

/* ===== TEAM ===== */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; }
.team-card { background: #fff; border: 1.5px solid var(--border); border-radius: 22px; padding: 36px; }
.team-portrait {
  width: 120px; height: 120px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-green));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 38px; font-weight: 900; margin-bottom: 18px;
  overflow: hidden;
}
img.team-portrait {
  object-fit: cover;
  object-position: center 30%;
  box-shadow: 0 6px 18px rgba(29,58,138,0.16);
}
.team-card h3 { margin-bottom: 4px; font-size: 24px; }
.team-card .role { font-size: 13.5px; color: var(--brand-blue); font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.08em; }
.team-card p { font-size: 15px; color: var(--ink-light); margin-bottom: 10px; line-height: 1.6; }
.team-card .creds { background: var(--soft-bg); padding: 14px 18px; border-radius: 12px; font-size: 13px; color: var(--ink-light); margin-top: 14px; line-height: 1.5; }
.team-card .creds strong { color: var(--brand-green-dark); display: block; margin-bottom: 4px; }

/* ===== BLOG / RESOURCES ===== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  background: #fff; border: 1px solid var(--border); border-radius: 18px;
  overflow: hidden; transition: transform 0.18s, box-shadow 0.18s; text-decoration: none; color: inherit;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); text-decoration: none; }
.blog-card .blog-image {
  height: 180px;
  background: linear-gradient(135deg, var(--brand-blue-soft), var(--brand-green-soft));
  display: flex; align-items: center; justify-content: center; color: var(--brand-blue);
  overflow: hidden;
}
.blog-card .blog-image img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.3s ease;
}
.blog-card:hover .blog-image img { transform: scale(1.04); }
.blog-card .blog-body { padding: 22px; }
.blog-card .blog-tag { font-size: 10px; font-weight: 800; color: var(--brand-green); text-transform: uppercase; letter-spacing: 0.10em; margin-bottom: 8px; }
.blog-card h4 { margin-bottom: 8px; line-height: 1.3; font-size: 17px; }
.blog-card p { font-size: 13.5px; color: var(--muted); line-height: 1.55; }

/* ===== CONTACT FORM ===== */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 36px; }
.contact-form {
  background: linear-gradient(180deg, #f7fbf7 0%, #ffffff 100%);
  border: 2px solid var(--brand-green);
  border-radius: 18px;
  padding: 0 32px 32px;
  box-shadow: 0 12px 28px rgba(62,199,61,0.18), 0 2px 6px rgba(20,39,102,0.08);
  position: relative;
  overflow: hidden;
}
.contact-form::before {
  content: "";
  display: block;
  height: 10px;
  margin: 0 -32px 32px;
  background: linear-gradient(90deg,
    var(--brand-green) 0%,
    var(--sky-blue) 50%,
    var(--brand-navy) 100%);
}
.contact-form input,
.contact-form textarea,
.contact-form select { background: #ffffff; }
.contact-form .field { display: flex; flex-direction: column; margin-bottom: 16px; }
.contact-form label { font-size: 12px; font-weight: 700; color: var(--ink); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.05em; }
.contact-form input, .contact-form textarea, .contact-form select {
  padding: 12px 14px; border: 1.5px solid var(--border); border-radius: 10px;
  font-family: inherit; font-size: 15px;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  outline: none; border-color: var(--ink); box-shadow: 0 0 0 3px rgba(0,0,0,0.06);
}
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-info-card { background: var(--soft-bg); padding: 22px; border-radius: 16px; }
.contact-info-card h4 { margin-bottom: 6px; }
.contact-info-card p { font-size: 14px; color: var(--ink-light); }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--brand-navy); color: #fff;
  border-radius: 24px; padding: 64px 56px;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ""; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(58,174,232,0.45) 0%, transparent 65%);
  pointer-events: none;
}
.cta-banner::after {
  content: ""; position: absolute; bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(62,199,61,0.35) 0%, transparent 65%);
  pointer-events: none;
}
.cta-banner h2 { color: #fff; margin-bottom: 12px; position: relative; z-index: 1; font-size: 40px; }
.cta-banner .lead { color: rgba(255,255,255,0.78); margin-bottom: 28px; position: relative; z-index: 1; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--black-soft); color: rgba(255,255,255,0.74); margin-top: 0;
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
  max-width: 1240px; margin: 0 auto; padding: 0 28px 40px;
}
.footer-grid .footer-brand p { font-size: 14px; opacity: 0.78; margin-top: 14px; max-width: 320px; line-height: 1.6; }
.footer-grid .footer-brand p.footer-tagline {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sky-blue-light);
  opacity: 1;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.14);
  max-width: 320px;
}
.footer-grid .footer-brand img {
  height: 72px;
  width: auto;
  display: block;
}
.footer-grid h5 {
  font-size: 11px; color: #fff; text-transform: uppercase; letter-spacing: 0.10em;
  margin-bottom: 14px; font-weight: 800;
}
.footer-grid ul { list-style: none; padding: 0; }
.footer-grid li { padding: 5px 0; font-size: 14px; }
.footer-grid a { color: rgba(255,255,255,0.74); text-decoration: none; transition: color 0.15s; }
.footer-grid a:hover { color: #fff; text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10); padding: 22px 28px 0;
  max-width: 1240px; margin: 0 auto;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 12.5px; opacity: 0.72;
}

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.hidden { display: none !important; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  h1 { font-size: 48px; }
  h2 { font-size: 34px; }
  .hero-dark-grid { grid-template-columns: 1fr; gap: 40px; padding-top: 16px; padding-bottom: 60px; }
  .hero-dark-image { display: block; max-height: 500px; }
  .hero-dark-image img { max-height: 500px; margin: 0 auto; }
  .pricing-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .blog-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  /* Mobile navigation: hamburger + dropdown panel */
  .header-inner { padding: 12px 18px; }
  .brand-link img { height: 72px; }
  .header-mobile { display: flex; }
  .site-nav {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 14px 28px rgba(29,58,138,0.12);
    padding: 6px 18px 18px;
  }
  body.nav-open .site-nav { display: flex; }
  .site-nav a:not(.btn) {
    padding: 14px 10px; font-size: 16px;
    border-bottom: 1px solid var(--border); border-radius: 0;
  }
  .site-nav .btn { display: none; }
  .section { padding: 64px 0; }
  .cta-banner { padding: 40px 28px; }
  .cta-banner h2 { font-size: 28px; }
}

/* ===== Comparison matrix (Why Choose Us) ===== */
.cmp-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin-top: 10px; padding-bottom: 4px; }
.cmp-matrix {
  width: 100%;
  min-width: 780px;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.cmp-matrix thead th {
  padding: 16px 14px;
  text-align: center;
  vertical-align: middle;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
  background: #6c7a90;
}
.cmp-matrix thead th span { display: block; font-size: 11.5px; font-weight: 600; opacity: 0.85; margin-top: 2px; }
.cmp-matrix thead th.cmp-feature-head { background: #fff; }
.cmp-matrix thead th.cmp-col-us { background: var(--brand-blue); }
.cmp-matrix tbody td {
  padding: 14px 12px;
  text-align: center;
  vertical-align: middle;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
}
.cmp-matrix tbody tr:nth-child(even) td { background: #fafcfe; }
.cmp-feature { text-align: left; min-width: 250px; }
.cmp-feature-inner { display: flex; align-items: center; gap: 12px; }
.cmp-ico {
  flex: none; width: 36px; height: 36px;
  border-radius: 9px;
  background: var(--brand-blue-soft);
  color: var(--brand-blue);
  display: flex; align-items: center; justify-content: center;
}
.cmp-ico svg { width: 19px; height: 19px; }
.cmp-feature-txt strong { display: block; font-size: 14.5px; font-weight: 800; color: var(--ink); }
.cmp-feature-txt small { display: block; font-size: 12px; color: var(--muted); margin-top: 1px; line-height: 1.3; }
.cmp-us { background: var(--brand-blue-soft) !important; }
.cmp-matrix tbody tr:nth-child(even) td.cmp-us { background: #dcecfb !important; }
.cmp-yes { color: var(--brand-green-dark); font-size: 21px; font-weight: 900; line-height: 1; }
.cmp-no  { color: var(--accent-rust); font-size: 18px; font-weight: 900; line-height: 1; }
.cmp-partial { display: block; font-weight: 800; font-size: 12.5px; color: var(--ink-light); line-height: 1.25; }
.cmp-partial small { display: block; font-weight: 500; font-size: 11px; color: var(--muted); margin-top: 2px; }
.cmp-banner {
  margin-top: 22px;
  display: flex; align-items: center; gap: 16px;
  background: var(--brand-blue-soft);
  border: 1.5px solid #bfe0f5;
  border-radius: 14px;
  padding: 18px 22px;
}
.cmp-banner svg { flex: none; width: 30px; height: 30px; color: var(--brand-blue); }
.cmp-banner p { margin: 0; font-size: 14px; line-height: 1.55; color: var(--ink-light); }
.cmp-banner strong { color: var(--brand-blue); }
@media (max-width: 640px) {
  .cmp-feature-txt small { display: none; }
  .cmp-banner { flex-direction: column; text-align: center; }
}

/* ===== Hero specimen chip (scientific cue) ===== */
.hero-specimen {
  display: flex; align-items: center; gap: 14px;
  margin-top: 22px; max-width: 430px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 14px; padding: 10px 14px;
  backdrop-filter: blur(4px);
}
.hero-specimen img {
  width: 52px; height: 52px; border-radius: 50%;
  object-fit: cover; flex: none;
  border: 2px solid rgba(255,255,255,0.55);
}
.hero-specimen-txt strong { display: block; color: #fff; font-size: 13.5px; font-weight: 700; }
.hero-specimen-txt span {
  display: block; color: rgba(255,255,255,0.82); font-size: 11.5px; margin-top: 2px;
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace; letter-spacing: 0.01em;
}

/* ===== The Science — method chain ===== */
.science-section { background: #fff; }
.science-chain { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.science-step {
  background: #fff; border: 1px solid var(--border); border-radius: 16px;
  padding-bottom: 22px; overflow: hidden; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; transition: transform 0.15s, box-shadow 0.15s;
}
.science-step:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.science-media { height: 132px; background: var(--soft-bg); overflow: hidden; }
.science-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.science-media-icon {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, var(--brand-blue-soft), #fff); color: var(--brand-blue);
}
.science-media-icon svg { width: 46px; height: 46px; }
.science-tag {
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.06em;
  color: var(--brand-blue); text-transform: uppercase; margin: 16px 18px 0;
}
.science-step h4 { font-size: 16px; color: var(--ink); margin: 6px 18px 0; }
.science-step p { font-size: 13.5px; color: var(--muted); line-height: 1.55; margin: 8px 18px 0; }

/* ===== Report + data preview ===== */
.report-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: stretch; }
.report-doc { background: #fff; border: 1px solid var(--border); border-radius: 16px; box-shadow: var(--shadow-md); padding: 22px 24px; }
.rd-head { display: flex; align-items: center; gap: 10px; padding-bottom: 14px; border-bottom: 2px solid var(--brand-navy); }
.rd-logo { height: 26px; width: auto; }
.rd-title { font-weight: 800; color: var(--brand-navy); font-size: 15px; }
.rd-badge { margin-left: auto; font-size: 11px; font-weight: 800; color: var(--brand-green-dark); background: var(--brand-green-soft); padding: 4px 10px; border-radius: 999px; }
.rd-meta { display: flex; gap: 24px; flex-wrap: wrap; margin: 14px 0 4px; }
.rd-meta div { display: flex; flex-direction: column; }
.rd-meta span { font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); }
.rd-meta strong { font-size: 13px; color: var(--ink); font-family: ui-monospace, Menlo, Consolas, monospace; }
.rd-table { width: 100%; border-collapse: collapse; margin-top: 14px; }
.rd-table th { text-align: left; font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); padding: 6px 8px; border-bottom: 1px solid var(--border); }
.rd-table th:not(:first-child), .rd-table td:not(:first-child) { text-align: center; }
.rd-table td { padding: 9px 8px; font-size: 13px; color: var(--ink); border-bottom: 1px solid var(--border); font-family: ui-monospace, Menlo, Consolas, monospace; }
.rd-table td:first-child { font-family: inherit; font-weight: 600; }
.rd-hi { color: var(--accent-rust); font-weight: 800; }
.rd-ok { color: var(--brand-green-dark); font-weight: 700; font-size: 12px; }
.rd-bad { color: var(--accent-rust); font-weight: 700; font-size: 12px; }
.rd-units { font-size: 11px; color: var(--muted); margin-top: 8px; font-style: italic; }
.rd-note { font-size: 13px; color: var(--ink-light); line-height: 1.6; margin-top: 14px; background: var(--soft-bg); border-radius: 10px; padding: 12px 14px; }
.report-data { display: flex; flex-direction: column; justify-content: center; }
.report-data h3 { font-size: 20px; color: var(--ink); }
.report-sub { font-size: 14px; color: var(--muted); margin-top: 6px; line-height: 1.55; }
.report-chart { width: 100%; height: auto; margin: 18px 0 20px; }
.rc-leg { font-size: 12px; fill: var(--ink-light); }
.rc-axis { font-size: 11px; fill: var(--muted); text-anchor: end; font-family: ui-monospace, Menlo, Consolas, monospace; }
.rc-grp { font-size: 11.5px; fill: var(--ink); text-anchor: middle; font-weight: 600; }
.rc-flag { font-size: 10px; fill: var(--accent-rust); text-anchor: middle; font-weight: 800; letter-spacing: 0.06em; }
.report-data .btn { align-self: flex-start; }

@media (max-width: 900px) {
  .science-chain { grid-template-columns: repeat(2, 1fr); }
  .report-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .science-chain { grid-template-columns: 1fr; }
  .hero-specimen { max-width: 100%; }
}

/* =====================================================================
   PRINT — clean, paginated output for the presentation binder
   Browser: Chrome → Ctrl/Cmd+P → "Save as PDF" → enable Background graphics
   ===================================================================== */
@page {
  size: Letter;
  margin: 0.5in;
}
@media print {
  *, *::before, *::after {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }
  html, body { background: #fff !important; }

  /* Keep the header from sticking / repeating oddly */
  .site-header { position: static !important; box-shadow: none !important; }
  .site-nav .btn { display: none !important; }

  /* Full-bleed dark sections: trim huge vertical padding so they fit a page */
  .hero-dark, .hero-dark.hero-photo, .hero-transformation,
  .section { padding-top: 28px !important; padding-bottom: 28px !important; }
  .hero-transformation { min-height: 0 !important; }
  .hero-transformation .bg-video { display: none !important; }
  .hero-transformation {
    background: linear-gradient(rgba(20,39,102,0.72), rgba(20,39,102,0.72)),
                url("images/relieved-poster.jpg") center / cover no-repeat,
                var(--brand-navy) !important;
  }

  /* Quiz prints whole, on its own page — never split across pages */
  .hero-dark-grid { grid-template-columns: 1fr !important; gap: 24px !important; }
  .hero-questionnaire-wrap, .questionnaire {
    break-inside: avoid !important; page-break-inside: avoid !important;
  }
  .hero-questionnaire-wrap { break-before: page !important; page-break-before: always !important; }

  /* Don't slice a card, step, row, or block across two pages */
  .price-card, .step-card, .science-step, .testimonial, .feature-card,
  .compare-card, .faq-item, .report-doc, .report-data, .stakes-card,
  .cmp-banner, .team-card, .hero-specimen, .product-card,
  .contact-info-card, .cta-banner, blockquote, figure, img {
    break-inside: avoid;
    page-break-inside: avoid;
  }

  /* Keep a heading attached to the content that follows it */
  h1, h2, h3, h4, .section-head, .eyebrow { break-after: avoid; page-break-after: avoid; }
  h1, h2, h3, h4 { break-inside: avoid; page-break-inside: avoid; }

  /* Don't strand a single line at the top or bottom of a page */
  p, li { orphans: 3; widows: 3; }

  /* Keep full-bleed dark sections from overflowing a page */
  .hero-dark, .hero-transformation, .cta-banner { min-height: 0 !important; }

  /* Comparison matrix: keep each row intact + shrink to fit a portrait page */
  .cmp-matrix tr { break-inside: avoid; page-break-inside: avoid; }
  .cmp-matrix thead { display: table-header-group; }
  .cmp-wrap { overflow: visible !important; }
  .cmp-matrix { min-width: 0 !important; width: 100% !important; }
  .cmp-feature { min-width: 0 !important; }
  .cmp-matrix thead th, .cmp-matrix tbody td { padding: 8px 6px !important; font-size: 10px !important; }
  .cmp-feature-txt strong { font-size: 11px !important; }
  .cmp-feature-txt small { font-size: 9.5px !important; }
  .cmp-ico { width: 26px !important; height: 26px !important; }
  .cmp-yes { font-size: 16px !important; }
  .cmp-partial { font-size: 9.5px !important; }

  /* Each major section starts on its own page — one topic per page */
  section { break-before: page; page-break-before: always; }
  /* …except the first section, so the hero doesn't push a blank page 1 */
  .site-header + section { break-before: avoid !important; page-break-before: avoid !important; }
  /* The trust strip rides along under the hero, never its own page */
  .trust-strip { break-before: avoid !important; page-break-before: avoid !important; }

  /* Footer attaches to the last section rather than spawning a near-empty page */
  .site-footer { break-before: avoid; page-break-before: avoid; }
}

/* ===== Shopify Buy Button — force brand styling (components render in the page DOM) ===== */
.shopify-buy__btn,
.shopify-buy__btn-wrapper .shopify-buy__btn {
  font-family: 'Inter', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif !important;
  font-size: 14.5px !important;
  font-weight: 700 !important;
  letter-spacing: -0.005em !important;
  color: #ffffff !important;
  background-color: #3ec73d !important;
  border-radius: 999px !important;
  padding: 14px 26px !important;
  box-shadow: 0 6px 16px rgba(62,199,61,0.32) !important;
}
.shopify-buy__btn:hover {
  background-color: #2da82c !important;
}
/* Add-on sample buttons: a touch smaller than the kit buttons */
#buybutton-addon-indoor .shopify-buy__btn,
#buybutton-addon-tape .shopify-buy__btn,
#buybutton-pkg-addon-indoor .shopify-buy__btn,
#buybutton-pkg-addon-tape .shopify-buy__btn {
  font-size: 13px !important;
  padding: 9px 18px !important;
  box-shadow: 0 4px 12px rgba(62,199,61,0.26) !important;
  margin-top: 12px !important;
}

/* ===== Checkout terms gate ===== */
.terms-gate {
  display: flex; gap: 16px; align-items: flex-start;
  background: #fff8e6; border: 1.5px solid #f0d68a; border-left: 5px solid #e6a817;
  border-radius: 14px; padding: 18px 22px; margin: 8px 0 0;
}
.terms-gate-icon { font-size: 22px; line-height: 1.2; color: #b9820a; flex: none; }
.terms-gate-body { font-size: 14.5px; color: var(--ink); line-height: 1.55; }
.terms-check { display: flex; align-items: flex-start; gap: 10px; margin-top: 12px; font-weight: 600; cursor: pointer; }
.terms-check input { width: 18px; height: 18px; margin-top: 1px; flex: none; accent-color: var(--brand-green); cursor: pointer; }
.terms-check a { font-weight: 700; color: var(--brand-blue); text-decoration: underline; }

/* (Terms acceptance moved into the cart, right before Checkout — see shop.html cart gate) */

/* ===== Disclaimer modal ===== */
.terms-modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(20,39,102,0.55); align-items: center; justify-content: center; padding: 20px;
}
.terms-modal-overlay.open { display: flex; }
.terms-modal {
  background: #fff; border-radius: 16px; max-width: 680px; width: 100%;
  max-height: 86vh; display: flex; flex-direction: column; box-shadow: var(--shadow-lg); overflow: hidden;
}
.terms-modal-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 24px; border-bottom: 1px solid var(--border); }
.terms-modal-head h3 { margin: 0; font-size: 19px; color: var(--brand-navy); }
.terms-close { background: none; border: none; font-size: 26px; line-height: 1; color: var(--muted); cursor: pointer; padding: 0 4px; }
.terms-close:hover { color: var(--ink); }
.terms-modal-body { padding: 20px 24px; overflow-y: auto; }
.terms-modal-body p { font-size: 14.5px; color: var(--ink-light); margin: 0 0 14px; }
.terms-modal-body h4 { font-size: 14px; color: var(--brand-blue); text-transform: uppercase; letter-spacing: 0.04em; margin: 18px 0 6px; }
.terms-modal-body ul { margin: 0 0 6px; padding-left: 20px; }
.terms-modal-body li { font-size: 13.5px; color: var(--ink); line-height: 1.55; margin-bottom: 8px; }
.terms-modal-foot { display: flex; justify-content: flex-end; gap: 12px; padding: 16px 24px; border-top: 1px solid var(--border); background: var(--soft-bg); }
@media (max-width: 560px) { .terms-gate { flex-direction: column; gap: 10px; } }

/* ===== Standalone disclaimer page ===== */
.disclaimer-body h2 { font-size: 20px; color: var(--brand-navy); margin: 28px 0 10px; }
.disclaimer-body h2:first-child { margin-top: 0; }
.disclaimer-body ul { padding-left: 22px; margin: 0 0 8px; }
.disclaimer-body li { font-size: 15px; color: var(--ink-light); line-height: 1.65; margin-bottom: 10px; }

/* ===== MOBILE NAV TOGGLE (hamburger) ===== */
.header-mobile { display: none; align-items: center; gap: 12px; }
.header-mobile .btn { padding: 10px 16px; font-size: 13px; }
.nav-toggle { display: block; background: none; border: 0; padding: 8px; cursor: pointer; }
.nav-toggle span {
  display: block; width: 24px; height: 3px; border-radius: 2px;
  background: var(--ink); margin: 5px 0;
  transition: transform 0.2s, opacity 0.2s;
}
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
@media (max-width: 1024px) {
  .header-mobile { display: flex; }
}

/* ===== MOBILE LAYOUT FIXES ===== */
@media (max-width: 700px) {
  .steps-row, .steps-row.three-steps { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 560px) {
  h1 { font-size: 34px; }
  h2 { font-size: 27px; }
  .report-doc { padding: 16px 12px; overflow-x: auto; }
  .rd-head { flex-wrap: wrap; }
  .rd-meta { gap: 14px; }
  .rd-table th, .rd-table td { padding: 7px 5px; font-size: 11.5px; }
  .rd-table th { font-size: 10px; }
}

/* Wide-screen hero fix: in the two-column layout the headline column is only
   ~575px wide, so the default 64px h1 wrapped into six short lines on
   maximized/full-screen windows. Scale it to the column and widen the text
   column slightly — verified at 1920px this wraps to four balanced lines. */
@media (min-width: 1025px) {
  .hero-photo .hero-photo-text h1 { font-size: clamp(38px, 2.5vw, 48px); }
  .hero-dark-grid { grid-template-columns: 1.15fr 1fr; }
}
