/* ==========================================================================
   Slui — shared stylesheet
   Recovery brand: tart cherry drink + personal training
   ========================================================================== */

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

:root {
  /* --- brand tokens (exact) --- */
  --pitch: #0A0A0A;
  --cherry: #C0392B;
  --cherry-hover: #D9493B;
  --cherry-deep: #96291D;
  --oat: #F5F0EB;
  --vitality: #1D9E75;
  --honey: #F0C040;

  /* --- derived surfaces --- */
  --pitch-raise: #151513;
  --pitch-raise-2: #1E1E1B;
  --oat-dim: #EAE2D6;
  --oat-raise: #FFFFFF;

  /* --- text on dark --- */
  --text-on-dark: var(--oat);
  --text-on-dark-muted: rgba(245, 240, 235, 0.66);
  --text-on-dark-faint: rgba(245, 240, 235, 0.4);
  --border-on-dark: rgba(245, 240, 235, 0.12);

  /* --- text on light --- */
  --text-on-light: var(--pitch);
  --text-on-light-muted: rgba(10, 10, 10, 0.64);
  --text-on-light-faint: rgba(10, 10, 10, 0.4);
  --border-on-light: rgba(10, 10, 10, 0.1);

  /* --- type --- */
  --font-display: "Barlow Condensed", "Arial Narrow", ui-sans-serif, sans-serif;
  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;

  /* --- radius: sharp, athletic, not playful --- */
  --r-sm: 3px;
  --r-md: 6px;
  --r-lg: 10px;
  --r-xl: 16px;

  /* --- shadow depth --- */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.35), 0 1px 3px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.4), 0 2px 6px rgba(0, 0, 0, 0.25);
  --shadow-cherry: 0 8px 24px rgba(192, 57, 43, 0.35);

  --container: 1180px;
  --nav-h: 76px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--pitch);
  color: var(--text-on-dark);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: balance;
}
p { margin: 0; }
.icon { width: 1em; height: 1em; flex: none; }

/* ---------- layout helpers ---------- */
.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .section-sm { padding: 44px 0; }
  .wrap { padding: 0 20px; }
}

.bg-pitch { background: var(--pitch); color: var(--text-on-dark); }
.bg-pitch-raise { background: var(--pitch-raise); color: var(--text-on-dark); }
.bg-oat { background: var(--oat); color: var(--text-on-light); }
.bg-oat-dim { background: var(--oat-dim); color: var(--text-on-light); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cherry);
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--cherry);
  border-radius: 2px;
}
.bg-oat .eyebrow, .bg-oat-dim .eyebrow { color: var(--cherry); }

.tag-vitality { color: var(--vitality); }
.tag-honey { color: var(--honey); }

h1 { font-size: clamp(2.6rem, 5.4vw, 4.4rem); }
h2 { font-size: clamp(2rem, 3.4vw, 2.9rem); }
h3 { font-size: 1.4rem; }
.lede {
  font-family: var(--font-body);
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text-on-dark-muted);
  max-width: 56ch;
}
.bg-oat .lede, .bg-oat-dim .lede { color: var(--text-on-light-muted); }

.section-head { max-width: 62ch; margin-bottom: 52px; }
.section-head h2 { margin-top: 14px; }
.section-head p { margin-top: 16px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 14px 26px;
  border-radius: var(--r-md);
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, opacity 0.15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--cherry);
  color: var(--oat);
  box-shadow: var(--shadow-cherry);
}
.btn-primary:hover { background: var(--cherry-hover); box-shadow: 0 10px 30px rgba(192, 57, 43, 0.45); }

.btn-outline-dark {
  background: transparent;
  color: var(--text-on-dark);
  border-color: var(--border-on-dark);
}
.btn-outline-dark:hover { background: rgba(245, 240, 235, 0.06); border-color: rgba(245, 240, 235, 0.3); }

.btn-outline-light {
  background: transparent;
  color: var(--text-on-light);
  border-color: var(--border-on-light);
}
.btn-outline-light:hover { background: rgba(10, 10, 10, 0.05); border-color: rgba(10, 10, 10, 0.3); }

.btn-oat {
  background: var(--oat);
  color: var(--pitch);
}
.btn-oat:hover { background: #fff; }

.btn-sm { padding: 10px 18px; font-size: 0.85rem; }
.btn-lg { padding: 17px 32px; font-size: 1rem; }
.btn-block { width: 100%; }

/* ---------- nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(10, 10, 10, 0.86);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--border-on-dark);
}
.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-symbol {
  height: 34px;
  width: auto;
}
.logo-wordmark {
  height: 19px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--text-on-dark-muted);
  transition: color 0.15s ease;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--oat); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -22px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--cherry);
}
.nav-right { display: flex; align-items: center; gap: 18px; }
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-on-dark);
  border-radius: var(--r-md);
  color: var(--oat);
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}

/* ---------- focus visibility ---------- */
.btn:focus-visible,
.nav-links a:focus-visible,
.footer-col a:focus-visible,
.footer-socials a:focus-visible,
.panel-link:focus-visible,
.logo:focus-visible,
.nav-toggle:focus-visible {
  outline: 2px solid var(--cherry);
  outline-offset: 2px;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--pitch);
    padding: 20px 20px 28px;
    gap: 18px;
    border-bottom: 1px solid var(--border-on-dark);
  }
  .nav.open .nav-links a { font-size: 1.05rem; }
  .nav-links a.active::after { display: none; }
}
@media (max-width: 560px) {
  .nav .wrap { gap: 12px; }
  .nav-right { gap: 10px; }
  .nav-right .btn { display: none; }
  .logo-wordmark { height: 16px; }
  .logo-symbol { height: 28px; }
}

/* ---------- footer ---------- */
.footer {
  background: var(--pitch);
  border-top: 1px solid var(--border-on-dark);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
}
.footer-brand p {
  color: var(--text-on-dark-muted);
  font-size: 0.92rem;
  margin-top: 14px;
  max-width: 34ch;
}
.footer h3 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-on-dark-faint);
  margin-bottom: 16px;
}
.footer-col a, .footer-col span {
  display: block;
  font-size: 0.92rem;
  color: var(--text-on-dark-muted);
  padding: 6px 0;
}
.footer-col a:hover { color: var(--oat); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--border-on-dark);
  font-size: 0.82rem;
  color: var(--text-on-dark-faint);
}
.footer-socials { display: flex; gap: 14px; }
.footer-socials a {
  width: 34px; height: 34px;
  border: 1px solid var(--border-on-dark);
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-on-dark-muted);
}
.footer-socials a:hover { color: var(--oat); border-color: rgba(245,240,235,0.3); }

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}

/* ---------- hero ---------- */
.hero {
  padding: 84px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 { margin-top: 18px; }
.hero .lede { margin-top: 22px; }
.hero-ctas { display: flex; gap: 16px; margin-top: 34px; flex-wrap: wrap; }
.hero-glow {
  position: absolute;
  inset: -20% -10% auto auto;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(192,57,43,0.28), transparent 70%);
  filter: blur(10px);
  pointer-events: none;
}
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .hero { padding: 52px 0 56px; }
  .hero-ctas { gap: 12px; }
  .hero-ctas .btn { flex: 1 1 auto; }
}
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
}

/* ---------- trust bar ---------- */
.trustbar {
  border-top: 1px solid var(--border-on-dark);
  border-bottom: 1px solid var(--border-on-dark);
  padding: 26px 0;
}
.trustbar .wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-on-dark-muted);
}
.trust-item .icon { color: var(--cherry); width: 18px; height: 18px; }

/* ---------- product illustration (CSS/SVG, no stock photography) ---------- */
.bottle-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 420px;
}
.bottle-art svg { height: 100%; width: auto; filter: drop-shadow(0 30px 50px rgba(0,0,0,0.45)); }
@media (max-width: 720px) {
  .bottle-art { height: 300px; }
}
@media (max-width: 480px) {
  .bottle-art { height: 260px; }
}
.bottle-art-sm { height: 340px; }
@media (max-width: 720px) {
  .bottle-art-sm { height: 260px; }
}
@media (max-width: 480px) {
  .bottle-art-sm { height: 220px; }
}

/* ---------- approach panels ---------- */
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.panel {
  border-radius: var(--r-xl);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.panel-nutrition { background: linear-gradient(160deg, #1a0f0d, var(--pitch-raise)); border: 1px solid rgba(192,57,43,0.25); }
.panel-movement { background: linear-gradient(160deg, #0c1712, var(--pitch-raise)); border: 1px solid rgba(29,158,117,0.25); }
.panel-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.panel-nutrition .panel-icon { background: rgba(192,57,43,0.16); color: var(--cherry); }
.panel-movement .panel-icon { background: rgba(29,158,117,0.16); color: var(--vitality); }
.panel-icon .icon { width: 26px; height: 26px; }
.panel h3 { font-size: 1.7rem; margin-bottom: 14px; }
.panel p.desc { color: var(--text-on-dark-muted); margin-bottom: 22px; }
.panel-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; }
.panel-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.94rem; color: var(--text-on-dark-muted); }
.panel-list .icon { color: var(--honey); width: 16px; height: 16px; margin-top: 3px; }
.panel-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 0.92rem; }
.panel-nutrition .panel-link { color: var(--cherry); }
.panel-movement .panel-link { color: var(--vitality); }

@media (max-width: 860px) { .approach-grid { grid-template-columns: 1fr; } }
@media (max-width: 560px) {
  .panel { padding: 28px 24px; }
  .panel h3 { font-size: 1.4rem; }
}

/* ---------- audience cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.aud-card {
  background: var(--pitch-raise);
  border: 1px solid var(--border-on-dark);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: transform 0.18s ease, border-color 0.18s ease;
}
.aud-card:hover { transform: translateY(-4px); border-color: rgba(192,57,43,0.4); }
.aud-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  background: rgba(240,192,64,0.14);
  color: var(--honey);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.aud-icon .icon { width: 22px; height: 22px; }
.aud-card h3 { font-size: 1.12rem; margin-bottom: 8px; }
.aud-card p { font-size: 0.92rem; color: var(--text-on-dark-muted); }

@media (max-width: 960px) { .card-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .card-grid { grid-template-columns: 1fr; } }

/* ---------- testimonials ---------- */
.testi-note {
  font-size: 0.82rem;
  color: var(--text-on-dark-faint);
  font-style: italic;
  margin-bottom: 32px;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testi-card {
  background: var(--pitch-raise);
  border: 1px solid var(--border-on-dark);
  border-radius: var(--r-lg);
  padding: 30px 26px;
}
.testi-card .icon { color: var(--cherry); width: 26px; height: 26px; margin-bottom: 16px; }
.testi-card p.quote { font-size: 1rem; color: var(--text-on-dark); margin-bottom: 20px; }
.testi-person { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 38px; height: 38px; border-radius: 999px;
  background: var(--cherry);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem; color: var(--oat);
}
.testi-name { font-size: 0.9rem; font-weight: 700; }
.testi-role { font-size: 0.8rem; color: var(--text-on-dark-faint); }

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

/* ---------- lead magnet ---------- */
.leadmagnet {
  border-radius: var(--r-xl);
  padding: 56px;
  background: linear-gradient(135deg, var(--cherry-deep), var(--cherry) 60%, #a83b2d);
  color: var(--oat);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}
.leadmagnet h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.leadmagnet p { color: rgba(245,240,235,0.88); margin-top: 14px; }
.lead-form { display: flex; gap: 10px; margin-top: 4px; }
.lead-form input {
  flex: 1;
  padding: 15px 18px;
  border-radius: var(--r-md);
  border: 1px solid rgba(245,240,235,0.3);
  background: rgba(10,10,10,0.2);
  color: var(--oat);
  font-size: 0.95rem;
}
.lead-form input::placeholder { color: rgba(245,240,235,0.6); }
.lead-form-note { font-size: 0.78rem; color: rgba(245,240,235,0.7); margin-top: 10px; }
.lead-success { display: none; font-weight: 700; margin-top: 6px; }
@media (max-width: 860px) {
  .leadmagnet { grid-template-columns: 1fr; padding: 36px 28px; }
  .lead-form { flex-direction: column; }
}

/* ---------- generic content sections ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; gap: 36px; } }

.stat-row { display: flex; gap: 44px; margin-top: 36px; flex-wrap: wrap; }
@media (max-width: 480px) { .stat-row { gap: 28px; } }
.stat-num { font-family: var(--font-display); font-size: 2.6rem; font-weight: 700; color: var(--cherry); }
.stat-label { font-size: 0.85rem; color: var(--text-on-light-muted); margin-top: 4px; }
.bg-pitch .stat-label, .bg-pitch-raise .stat-label { color: var(--text-on-dark-muted); }

.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.value-card { padding: 8px 0; }
.value-card .num { font-family: var(--font-display); font-size: 1rem; color: var(--cherry); font-weight: 700; margin-bottom: 10px; }
.value-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.value-card p { font-size: 0.92rem; color: var(--text-on-light-muted); }
@media (max-width: 900px) { .value-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .value-grid { grid-template-columns: 1fr; } }

/* ---------- ingredient table ---------- */
.ingredient-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.ingredient-table th {
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-on-light-faint);
  padding: 0 18px 14px;
  border-bottom: 1px solid var(--border-on-light);
}
.ingredient-table td {
  padding: 20px 18px;
  border-bottom: 1px solid var(--border-on-light);
  vertical-align: top;
}
.ingredient-table tr:last-child td { border-bottom: none; }
.ing-name { font-weight: 700; font-size: 1rem; }
.ing-role { color: var(--text-on-light-muted); font-size: 0.88rem; margin-top: 4px; }
.ing-order {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--cherry);
  white-space: nowrap;
  width: 1%;
}
.ing-hero-badge {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--cherry);
  background: rgba(192,57,43,0.1);
  padding: 3px 8px;
  border-radius: 999px;
}

@media (max-width: 640px) {
  .ingredient-table, .ingredient-table thead, .ingredient-table tbody,
  .ingredient-table th, .ingredient-table td, .ingredient-table tr {
    display: block;
  }
  .ingredient-table thead { display: none; }
  .ingredient-table tr {
    padding: 18px 0;
    border-bottom: 1px solid var(--border-on-light);
    position: relative;
  }
  .ingredient-table tr:last-child { border-bottom: none; }
  .ingredient-table td {
    padding: 2px 0 2px 44px;
    border-bottom: none;
  }
  .ingredient-table td.ing-order {
    position: absolute;
    top: 18px;
    left: 0;
    width: auto;
    padding: 0;
  }
  .ing-role { margin-top: 6px; }
}

/* ---------- benefit cards ---------- */
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.benefit-card {
  background: var(--pitch-raise);
  border: 1px solid var(--border-on-dark);
  border-radius: var(--r-lg);
  padding: 30px;
}
.benefit-card .icon-wrap {
  width: 46px; height: 46px; border-radius: var(--r-md);
  background: rgba(29,158,117,0.14); color: var(--vitality);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.benefit-card .icon-wrap .icon { width: 22px; height: 22px; }
.benefit-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.benefit-card p { font-size: 0.9rem; color: var(--text-on-dark-muted); }
@media (max-width: 860px) { .benefit-grid { grid-template-columns: 1fr; } }

/* ---------- process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; padding-top: 8px; }
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--cherry);
  display: block;
  margin-bottom: 14px;
}
.step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step p { font-size: 0.88rem; color: var(--text-on-dark-muted); }
@media (max-width: 960px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* ---------- pricing / package cards ---------- */
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pkg-card {
  background: var(--oat-raise);
  border: 1px solid var(--border-on-light);
  border-radius: var(--r-lg);
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
}
.pkg-card.featured { border-color: var(--cherry); box-shadow: 0 12px 30px rgba(192,57,43,0.14); position: relative; }
.pkg-badge {
  position: absolute; top: -13px; left: 28px;
  background: var(--cherry); color: var(--oat);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
}
.pkg-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.pkg-card .pkg-desc { font-size: 0.9rem; color: var(--text-on-light-muted); margin-bottom: 20px; }
.pkg-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; }
.pkg-list li { display: flex; gap: 10px; font-size: 0.88rem; color: var(--text-on-light-muted); align-items: flex-start; }
.pkg-list .icon { color: var(--vitality); width: 16px; height: 16px; margin-top: 3px; flex: none; }
.pkg-card .btn { margin-top: auto; }
@media (max-width: 900px) { .pkg-grid { grid-template-columns: 1fr; } }

/* ---------- forms (contact) ---------- */
.form-card {
  background: var(--oat-raise);
  border: 1px solid var(--border-on-light);
  border-radius: var(--r-xl);
  padding: 40px;
}
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-on-light);
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 15px;
  border-radius: var(--r-md);
  border: 1px solid var(--border-on-light);
  background: var(--oat);
  color: var(--text-on-light);
  font: inherit;
  font-size: 0.94rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--cherry);
  box-shadow: 0 0 0 3px rgba(192,57,43,0.15);
}
.field textarea { min-height: 120px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.form-success {
  display: none;
  background: rgba(29,158,117,0.1);
  border: 1px solid rgba(29,158,117,0.3);
  color: var(--vitality);
  padding: 16px 18px;
  border-radius: var(--r-md);
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 18px;
}

.contact-info-card {
  background: var(--pitch);
  color: var(--oat);
  border-radius: var(--r-xl);
  padding: 40px;
}
.contact-info-row { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.contact-info-row .icon-wrap {
  width: 40px; height: 40px; border-radius: var(--r-md);
  background: rgba(192,57,43,0.16); color: var(--cherry);
  display: flex; align-items: center; justify-content: center; flex: none;
}
.contact-info-row .icon-wrap .icon { width: 19px; height: 19px; }
.contact-info-row h4 { font-family: var(--font-body); font-size: 0.85rem; font-weight: 700; margin-bottom: 3px; }
.contact-info-row p, .contact-info-row a { font-size: 0.9rem; color: var(--text-on-dark-muted); }
@media (max-width: 560px) {
  .form-card, .contact-info-card { padding: 26px 22px; }
}

/* ---------- CTA banner ---------- */
.cta-banner {
  border-radius: var(--r-xl);
  padding: 64px;
  text-align: center;
  background: var(--pitch-raise);
  border: 1px solid var(--border-on-dark);
}
.cta-banner h2 { max-width: 24ch; margin: 0 auto; }
.cta-banner p { margin: 16px auto 30px; }
.cta-banner .hero-ctas { justify-content: center; margin-top: 0; }
@media (max-width: 560px) {
  .cta-banner { padding: 40px 24px; }
}

/* ---------- misc ---------- */
.center { text-align: center; margin-left: auto; margin-right: auto; }
.badge-illustrative {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-on-dark-faint);
  border: 1px solid var(--border-on-dark);
  padding: 5px 10px;
  border-radius: 999px;
}
.divider { height: 1px; background: var(--border-on-light); margin: 40px 0; }
.divider-dark { height: 1px; background: var(--border-on-dark); margin: 40px 0; }

.blog-hero { text-align: center; padding: 120px 0; }
.blog-hero .eyebrow { justify-content: center; }
.blog-hero .eyebrow::before { display: none; }
.blog-hero h1 { margin-top: 18px; }
.blog-hero p { margin: 20px auto 0; }
@media (max-width: 720px) {
  .blog-hero { padding: 72px 0; }
}
@media (max-width: 480px) {
  .blog-form.lead-form { flex-direction: column; }
}
