/* ==========================================================================
   SlimTide Guide - Universal Stylesheet
   ========================================================================== */

:root {
  /* Core palette */
  --navy-green: #062D35;
  --forest-green: #075E54;
  --teal: #0C8A79;
  --wellness-green: #28A96B;
  --lime: #9BCB3B;
  --cta-green: #087F5B;
  --cta-hover: #056748;
  --gold: #F2B84B;

  /* Backgrounds */
  --hero-bg: #EAF8F3;
  --mint-bg: #F1FAF6;
  --aqua-bg: #EDF8FA;
  --page-bg: #F7FAF9;
  --card-bg: #FFFFFF;

  /* Text */
  --text-main: #0C2530;
  --text-muted: #536970;

  /* Structure */
  --border: #D7E8E2;
  --success-bg: #E8F7EF;
  --caution-bg: #FFF8E5;

  /* Type */
  --font-head: "Fraunces", Georgia, serif;
  --font-body: "Inter Tight", Inter, Arial, sans-serif;

  /* Layout */
  --max-width: 1180px;
  --read-width: 800px;
  --radius-card: 18px;
  --radius-btn: 11px;
  --shadow-soft: 0 10px 30px rgba(6, 45, 53, 0.08);
  --shadow-lift: 0 16px 40px rgba(6, 45, 53, 0.14);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}
body {
  margin: 0;
  background: var(--page-bg);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--navy-green); line-height: 1.2; margin: 0 0 16px; }
h1 { font-size: 56px; }
h2 { font-size: 40px; }
h3 { font-size: 26px; }
p { margin: 0 0 16px; color: var(--text-main); }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.reading { max-width: var(--read-width); margin: 0 auto; }
section { padding: 90px 0; }
.section-tight { padding: 60px 0; }
.eyebrow {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--success-bg);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.section-head { text-align: center; max-width: 700px; margin: 0 auto 48px; }
.section-head p { color: var(--text-muted); font-size: 19px; }

a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 12px 28px;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--cta-green), var(--wellness-green));
  color: #fff;
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { background: linear-gradient(135deg, var(--cta-hover), var(--forest-green)); transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.btn-secondary {
  background: #fff;
  color: var(--navy-green);
  border: 2px solid var(--border);
}
.btn-secondary:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-2px); }
.btn-arrow::after { content: "\2192"; font-weight: 700; }

/* ---------- Announcement bar ---------- */
.announcement {
  background: var(--navy-green);
  color: #EAF8F3;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  padding: 9px 16px;
  letter-spacing: 0.01em;
}
.announcement svg { vertical-align: -3px; margin-right: 6px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--wellness-green));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}
.logo-text { line-height: 1.15; }
.logo-text .name { font-family: var(--font-head); font-weight: 700; font-size: 21px; color: var(--navy-green); display: block; }
.logo-text .sub { font-size: 12px; color: var(--text-muted); }

.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a { font-size: 16px; font-weight: 600; color: var(--text-main); }
.main-nav a:hover { color: var(--teal); }
.header-actions { display: flex; align-items: center; gap: 18px; }
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 22px; height: 2px; background: var(--navy-green);
  position: relative; transition: transform 0.2s ease;
}
.nav-toggle span::before { position: absolute; top: -7px; width: 22px; height: 2px; background: var(--navy-green); }
.nav-toggle span::after { position: absolute; top: 7px; width: 22px; height: 2px; background: var(--navy-green); }

@media (max-width: 880px) {
  .main-nav {
    position: fixed; inset: 68px 0 0 0;
    background: #fff;
    flex-direction: column; align-items: flex-start;
    padding: 28px 24px; gap: 4px;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    overflow-y: auto;
  }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav a { display: block; width: 100%; padding: 14px 4px; border-bottom: 1px solid var(--border); }
  .header-actions .btn-primary { display: none; }
  .main-nav .mobile-cta { display: inline-flex; margin-top: 12px; }
  .nav-toggle { display: flex; }
}
@media (min-width: 881px) {
  .main-nav .mobile-cta { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  background: var(--hero-bg);
  padding: 64px 0 56px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.hero h1 { margin-bottom: 20px; }
.hero-lead { font-size: 20px; color: var(--text-main); }
.hero-bullets { margin: 26px 0 32px; display: grid; gap: 12px; }
.hero-bullets li { display: flex; gap: 10px; font-weight: 600; font-size: 18px; }
.hero-bullets svg { flex-shrink: 0; margin-top: 3px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-badges {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 36px;
}
.hero-badge {
  background: #fff; border: 1px solid var(--border);
  border-radius: 999px; padding: 8px 16px; font-size: 14px; font-weight: 600;
  color: var(--forest-green);
  display: flex; align-items: center; gap: 6px;
}
.hero-media {
  position: relative;
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow-soft);
  text-align: center;
}
.hero-media img { border-radius: 16px; margin: 0 auto; }

@media (max-width: 880px) {
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
}

/* ---------- Ticker ---------- */
.ticker-wrap {
  background: var(--navy-green);
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid var(--forest-green);
  border-bottom: 1px solid var(--forest-green);
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 32s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; overflow-x: auto; }
}
.ticker-track span {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  padding: 0 28px;
  border-right: 1px solid var(--teal);
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Cards & grids ---------- */
.grid {
  display: grid;
  gap: 24px;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }
.grid-6 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 980px) {
  .grid-3, .grid-4, .grid-5, .grid-6 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4, .grid-5, .grid-6 { grid-template-columns: 1fr; }
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 30px;
  box-shadow: var(--shadow-soft);
}
.card h3 { margin-bottom: 10px; }
.card p:last-child { margin-bottom: 0; }
.card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--success-bg);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  color: var(--teal);
}

/* Fact / quick-facts strip */
.fact-card {
  text-align: center;
  padding: 26px 20px;
}
.fact-card .label { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--teal); margin-bottom: 8px; }
.fact-card .value { font-family: var(--font-head); font-size: 22px; color: var(--navy-green); }

/* Editorial team */
.editorial-card {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px;
  box-shadow: var(--shadow-soft);
}
.editorial-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--forest-green), var(--teal));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; font-size: 20px; flex-shrink: 0;
}
.editorial-meta { font-size: 14px; color: var(--text-muted); margin-top: 8px; }

/* Numbered steps */
.step-card { position: relative; }
.step-number {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 10px;
  display: block;
}

/* Checkmark list */
.check-list { display: grid; gap: 14px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 18px; }
.check-list svg { flex-shrink: 0; margin-top: 4px; color: var(--wellness-green); }

/* Two-column pros/considerations */
.balance-col h3 { margin-bottom: 20px; }
.balance-col.pros { border-top: 4px solid var(--wellness-green); }
.balance-col.watch { border-top: 4px solid var(--gold); }

/* Caution box */
.caution-box {
  background: var(--caution-bg);
  border: 1px solid #F1D98A;
  border-radius: var(--radius-card);
  padding: 22px 26px;
  font-size: 17px;
  margin-top: 24px;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr 1fr;
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 980px) {
  .pricing-grid { grid-template-columns: 1fr; }
}
.price-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  text-align: center;
}
.price-card.featured {
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-lift);
  position: relative;
  transform: scale(1.03);
}
@media (max-width: 980px) {
  .price-card.featured { transform: none; }
}
.ribbon {
  position: absolute;
  top: -16px; left: 50%; transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy-green);
  font-size: 13px; font-weight: 700;
  padding: 6px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
}
.price-card .package-label { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--teal); margin-bottom: 6px; }
.price-card img { width: 150px; margin: 0 auto 18px; }
.price-card .per-bottle { font-family: var(--font-head); font-size: 40px; color: var(--navy-green); }
.price-card .per-bottle span { font-size: 16px; color: var(--text-muted); font-family: var(--font-body); }
.price-card .total-line { font-size: 15px; color: var(--text-muted); margin-bottom: 20px; }
.price-card ul { display: grid; gap: 10px; text-align: left; margin: 0 0 24px; }
.price-card ul li { display: flex; gap: 8px; font-size: 16px; }
.price-card ul svg { flex-shrink: 0; margin-top: 3px; color: var(--wellness-green); }
.price-card .btn { width: 100%; margin-top: auto; }
.pricing-note { text-align: center; font-size: 15px; color: var(--text-muted); margin-top: 28px; }

/* Table */
.compare-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius-card); border: 1px solid var(--border); box-shadow: var(--shadow-soft); }
.compare-table {
  width: 100%;
  min-width: 680px;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
}
.compare-table thead { display: table-header-group; }
.compare-table tbody { display: table-row-group; }
.compare-table tr { display: table-row; }
.compare-table th, .compare-table td { display: table-cell; padding: 16px 20px; text-align: left; font-size: 17px; }
.compare-table thead tr { background: var(--navy-green); }
.compare-table thead th { color: #fff; font-family: var(--font-head); font-weight: 600; }
.compare-table tbody tr { border-bottom: 1px solid var(--border); }
.compare-table tbody tr:nth-child(even) { background: var(--mint-bg); }
.compare-table tbody tr:last-child { border-bottom: none; }

/* Guarantee section */
.guarantee-block {
  background: var(--mint-bg);
  border-radius: 24px;
  padding: 56px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 880px) {
  .guarantee-block { grid-template-columns: 1fr; padding: 36px 24px; }
}
.guarantee-block img { max-width: 220px; margin: 0 auto; }

/* FAQ */
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 6px 24px;
  margin-bottom: 14px;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 18px;
  padding: 18px 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--navy-green);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 22px;
  color: var(--teal);
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { padding-bottom: 20px; color: var(--text-muted); margin: 0; }

/* 30 seconds cards */
.snap-card { text-align: center; }
.snap-card h3 { font-size: 19px; }

/* Final CTA */
.final-cta {
  background: linear-gradient(135deg, var(--navy-green), var(--forest-green));
  color: #fff;
  border-radius: 28px;
  padding: 64px;
  text-align: center;
}
.final-cta h2 { color: #fff; }
.final-cta p { color: #CFE9E2; font-size: 19px; max-width: 620px; margin: 0 auto 30px; }
@media (max-width: 880px) { .final-cta { padding: 44px 24px; } }

/* Reference list */
.ref-list { display: grid; gap: 10px; }
.ref-list li { font-size: 16px; color: var(--text-muted); }
.ref-list a { color: var(--teal); font-weight: 600; }
.ref-list a:hover { text-decoration: underline; }

/* Footer */
.site-footer { background: var(--navy-green); color: #C9E3DC; padding-top: 72px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: #fff; font-family: var(--font-body); font-size: 16px; margin-bottom: 16px; }
.site-footer a { color: #C9E3DC; font-size: 15px; }
.site-footer a:hover { color: var(--lime); }
.footer-links { display: grid; gap: 10px; }
.footer-brand .logo-text .name { color: #fff; }
.footer-brand p { color: #9BB8B2; font-size: 15px; margin-top: 14px; }
.footer-bottom {
  padding: 28px 0 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  color: #85A39C;
}
.footer-disclosures { font-size: 13px; color: #85A39C; max-width: var(--max-width); margin: 0 auto; padding: 0 24px 20px; line-height: 1.6; }
.footer-disclosures p { color: #85A39C; margin-bottom: 8px; font-size: 13px; }

/* Scroll to top */
#scroll-top {
  position: fixed;
  right: 24px; bottom: 24px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--cta-green);
  color: #fff;
  border: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lift);
  z-index: 90;
}
#scroll-top.visible { display: flex; }

/* Responsive type */
@media (max-width: 880px) {
  h1 { font-size: 40px; }
  h2 { font-size: 30px; }
  h3 { font-size: 22px; }
  body { font-size: 18px; }
  section { padding: 60px 0; }
}

/* ==========================================================================
   Premium homepage refinements
   ========================================================================== */

/* Explicit section surfaces keep adjacent blocks visually separate. */
.surface-white { background: #FFFFFF; }
.surface-mint { background: linear-gradient(180deg, #F1FAF6 0%, #EAF7F1 100%); }
.surface-aqua { background: linear-gradient(180deg, #EDF8FA 0%, #E7F4F7 100%); }
.surface-aqua-soft { background: linear-gradient(180deg, #F6FBFC 0%, #EDF8FA 100%); }
.section-divided {
  position: relative;
  border-top: 1px solid rgba(12, 138, 121, 0.10);
}
.section-divided::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  width: min(180px, 38vw);
  height: 2px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(12, 138, 121, 0.55), transparent);
}

/* Premium type and section-heading finish. */
.section-head h2,
.reading > h2 {
  letter-spacing: -0.025em;
}
.section-head h2::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  margin: 18px auto 0;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--teal), var(--lime));
}
.reading > .eyebrow + h2::after {
  content: "";
  display: block;
  width: 58px;
  height: 3px;
  margin-top: 18px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--teal), var(--lime));
}

/* Header and hero receive more depth without becoming flashy. */
.site-header {
  box-shadow: 0 8px 28px rgba(6, 45, 53, 0.06);
}
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(155, 203, 59, 0.18), transparent 26%),
    radial-gradient(circle at 15% 88%, rgba(12, 138, 121, 0.12), transparent 31%),
    linear-gradient(135deg, #EFFBF6 0%, #EAF8F3 54%, #E8F6F8 100%);
}
.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -180px;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(12, 138, 121, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 44px rgba(12, 138, 121, 0.035), 0 0 0 88px rgba(12, 138, 121, 0.025);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; }
.hero h1 { letter-spacing: -0.035em; }
.hero-media {
  border: 1px solid rgba(12, 138, 121, 0.18);
  box-shadow: 0 24px 60px rgba(6, 45, 53, 0.14);
}
.hero-media::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(12, 138, 121, 0.08);
  border-radius: 18px;
  pointer-events: none;
}

/* Keep Lactose-Free and 60-Day Guarantee as a single adjacent badge pair. */
.hero-badge-pair {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
}
.hero-badge-guarantee {
  border-color: rgba(242, 184, 75, 0.70);
  background: #FFF9EA;
  color: #6B4C00;
  box-shadow: 0 7px 18px rgba(242, 184, 75, 0.14);
}
.hero-badge-lactose {
  border-color: rgba(12, 138, 121, 0.25);
  background: #F8FFFC;
}

/* Card polish. */
.card,
.editorial-card,
.price-card,
.faq-item {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover,
.editorial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(12, 138, 121, 0.28);
  box-shadow: 0 20px 45px rgba(6, 45, 53, 0.12);
}
.fact-card {
  border-top: 4px solid rgba(12, 138, 121, 0.55);
}
.quick-facts-section {
  box-shadow: inset 0 -1px 0 rgba(12, 138, 121, 0.08);
}

/* Product-label showcase. */
.label-showcase {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.48fr);
  gap: 34px;
  align-items: center;
  margin-top: 52px;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(6, 45, 53, 0.98), rgba(7, 94, 84, 0.96));
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 26px;
  box-shadow: 0 24px 60px rgba(6, 45, 53, 0.18);
  overflow: hidden;
  position: relative;
}
.label-showcase::after {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  right: -80px;
  top: -110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(155,203,59,0.22), transparent 70%);
  pointer-events: none;
}
.label-showcase-copy {
  position: relative;
  z-index: 1;
}
.label-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 12px;
  border: 1px solid rgba(155, 203, 59, 0.45);
  border-radius: 999px;
  color: #DDF5A3;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.label-showcase h3 {
  color: #FFFFFF;
  font-size: 30px;
  margin-bottom: 14px;
}
.label-showcase p {
  color: #D2E9E3;
  font-size: 17px;
}
.label-facts {
  display: grid;
  gap: 10px;
  margin: 22px 0;
}
.label-facts li {
  position: relative;
  padding: 11px 14px 11px 40px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  background: rgba(255,255,255,0.07);
  color: #FFFFFF;
  font-size: 16px;
}
.label-facts li::before {
  content: "✓";
  position: absolute;
  left: 15px;
  color: var(--lime);
  font-weight: 900;
}
.label-note {
  margin-bottom: 0 !important;
  font-size: 14px !important;
  color: #AFCFC7 !important;
}
.label-figure {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 12px;
  background: #FFFFFF;
  border-radius: 18px;
  box-shadow: 0 16px 38px rgba(0,0,0,0.20);
}
.label-figure img {
  width: 100%;
  border-radius: 10px;
}
.label-figure figcaption {
  padding: 10px 6px 2px;
  color: var(--text-muted);
  font-size: 13px;
  text-align: center;
}

/* Larger, more consistent package imagery. */
.price-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(12, 138, 121, 0.18);
  box-shadow: 0 16px 42px rgba(6, 45, 53, 0.10);
}
.price-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--teal), var(--wellness-green));
}
.price-card.featured::before {
  background: linear-gradient(90deg, var(--gold), #F6D77A);
}
.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 54px rgba(6, 45, 53, 0.15);
}
.price-card.featured:hover {
  transform: scale(1.03) translateY(-5px);
}
.price-card img {
  width: 205px;
  height: 205px;
  object-fit: contain;
  margin: 8px auto 20px;
}
.price-card.featured img {
  width: 225px;
  height: 225px;
}
.pricing-section .section-head {
  max-width: 760px;
}

/* The final CTA and source section now have unmistakably different surfaces. */
.final-cta-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(12, 138, 121, 0.08), transparent 28%),
    linear-gradient(180deg, #FFFFFF 0%, #F4FAF7 100%);
}
.final-cta {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(155, 203, 59, 0.22);
  box-shadow: 0 28px 70px rgba(6, 45, 53, 0.20);
}
.final-cta::before,
.final-cta::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.final-cta::before {
  width: 220px;
  height: 220px;
  top: -125px;
  left: -80px;
  background: rgba(155, 203, 59, 0.13);
}
.final-cta::after {
  width: 180px;
  height: 180px;
  right: -70px;
  bottom: -110px;
  background: rgba(12, 138, 121, 0.20);
}
.final-cta > * {
  position: relative;
  z-index: 1;
}

.references-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 15%, rgba(155, 203, 59, 0.16), transparent 28%),
    linear-gradient(135deg, #041F27 0%, var(--navy-green) 56%, #075E54 100%);
  color: #FFFFFF;
  border-top: 0;
}
.references-section::before {
  background: linear-gradient(90deg, transparent, rgba(155,203,59,0.8), transparent);
}
.references-section .section-head h2 {
  color: #FFFFFF;
}
.references-section .section-head p {
  color: #C9E3DC;
}
.references-section .eyebrow {
  color: #DDF5A3;
  background: rgba(155,203,59,0.12);
  border: 1px solid rgba(155,203,59,0.28);
}
.references-section .section-head h2::after {
  background: linear-gradient(90deg, var(--lime), #FFFFFF);
}
.reference-card {
  max-width: 900px;
  padding: 30px 34px;
  border-radius: 20px;
  background: rgba(255,255,255,0.98);
  border: 1px solid rgba(255,255,255,0.28);
  box-shadow: 0 22px 52px rgba(0,0,0,0.22);
}
.reference-card li {
  position: relative;
  padding: 12px 12px 12px 34px;
  color: var(--text-main);
  border-bottom: 1px solid var(--border);
}
.reference-card li:last-child {
  border-bottom: 0;
}
.reference-card li::before {
  content: "↗";
  position: absolute;
  left: 8px;
  color: var(--teal);
  font-weight: 800;
}
.reference-card a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Responsive refinements. */
@media (max-width: 980px) {
  .price-card img,
  .price-card.featured img {
    width: 220px;
    height: 220px;
  }
  .price-card.featured:hover {
    transform: translateY(-5px);
  }
  .label-showcase {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .hero-badge-pair {
    width: 100%;
    gap: 8px;
  }
  .hero-badge-pair .hero-badge {
    flex: 1 1 0;
    justify-content: center;
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
  }
  .label-showcase {
    margin-top: 38px;
    padding: 22px;
    border-radius: 20px;
  }
  .label-showcase h3 {
    font-size: 25px;
  }
  .label-figure {
    padding: 8px;
  }
  .price-card img,
  .price-card.featured img {
    width: 190px;
    height: 190px;
  }
  .reference-card {
    padding: 20px 18px;
  }
}

