/* =========================================================================
   solverraholistics.us -- Homepage stylesheet
   Solverra parent brand expression. Consumes the design-system token sheet
   injected by solverra-design-system.php (mu-plugin, wp_head priority 5).
   Every var() carries a literal fallback so the page renders correctly even
   if the token sheet is absent (standalone index.html preview).

   Tokens: lime #8CC63F, forest #314426/#1F2C17, bone #F6F4EC, clay #C9A36A.
   Fonts:  League Spartan (display) + Manrope (body) + Fraunces (editorial).
   Compliance: DSHEA structure/function only. No disease claims. No cannabinoid
   terms. THC-free / zero-cannabinoid framing only. ASCII-clean, straight
   quotes and hyphens only. WCAG 2.2 AA. LCP-optimized (no blocking CSS-in-JS,
   single hero element, content-visibility on below-fold sections).
   ========================================================================= */

/* -------------------------------------------------------------------------
   Local token fallbacks. These mirror solverra-ds_tokens_solverra_parent()
   so the standalone HTML preview matches the WordPress render exactly.
   ------------------------------------------------------------------------- */
:root {
  --sol-lime: #8CC63F;
  --sol-lime-bright: #A4DC56;
  --sol-lime-deep: #6FA82A;
  --sol-lime-fog: #E7F4D2;
  --sol-lime-mist: #F4FAE8;
  --sol-forest: #314426;
  --sol-forest-deep: #1F2C17;
  --sol-forest-mid: #4D6A3C;
  --sol-forest-soft: #7E9B6A;
  --sol-charcoal: #606061;
  --sol-bone: #F6F4EC;
  --sol-paper: #FBFAF4;
  --sol-cream: #EDE7D3;
  --sol-clay: #C9A36A;
  --sol-bark: #5A4632;

  --ff-display: "League Spartan", "Bebas Neue", system-ui, sans-serif;
  --ff-body: "Manrope", system-ui, sans-serif;
  --ff-serif: "Fraunces", "Cormorant Garamond", Georgia, serif;

  --container: 1200px;
  --container-wide: 1360px;

  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  --shadow-1: 0 1px 2px rgba(31, 44, 23, 0.06), 0 1px 1px rgba(31, 44, 23, 0.04);
  --shadow-2: 0 4px 14px rgba(31, 44, 23, 0.08), 0 1px 2px rgba(31, 44, 23, 0.05);
  --shadow-3: 0 14px 32px rgba(31, 44, 23, 0.12), 0 2px 6px rgba(31, 44, 23, 0.06);
  --shadow-lime: 0 8px 24px rgba(140, 198, 63, 0.32);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-1: 120ms;
  --dur-2: 220ms;
}

/* -------------------------------------------------------------------------
   Reset / base. Body font + color come from the mu-plugin baseline when on
   WordPress; we repeat them here so the standalone file matches.
   ------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body.sol-us-home {
  margin: 0;
  font-family: var(--ff-body, "Manrope", system-ui, sans-serif);
  font-size: 16px;
  line-height: 1.55;
  color: var(--sol-forest-deep, #1F2C17);
  background: var(--sol-bone, #F6F4EC);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--sol-forest, #314426); }

/* Honour reduced-motion preferences (WCAG 2.2). */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Skip link -- WCAG 2.2 AA bypass block. */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  padding: 12px 20px;
  background: var(--sol-forest-deep, #1F2C17);
  color: #FFFFFF;
  font-weight: 700;
  border-radius: 0 0 var(--r-sm, 8px) 0;
}
.skip-link:focus {
  left: 0;
}

/* Visible focus ring everywhere (WCAG 2.2 focus-appearance). */
a:focus-visible,
button:focus-visible,
input:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--sol-forest, #314426);
  outline-offset: 2px;
  border-radius: var(--r-sm, 8px);
}

/* -------------------------------------------------------------------------
   Layout primitives
   ------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container, 1200px);
  margin-inline: auto;
  padding-inline: 20px;
}
.container-wide {
  width: 100%;
  max-width: var(--container-wide, 1360px);
  margin-inline: auto;
  padding-inline: 20px;
}

.section {
  padding-block: 56px;
}
.section--tight { padding-block: 40px; }

/* Below-fold sections get content-visibility for faster LCP/paint. */
.section--deferred {
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
}

.eyebrow {
  font-family: var(--ff-body, "Manrope", sans-serif);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sol-forest-mid, #4D6A3C);
  margin: 0 0 12px;
}

.section-title {
  font-family: var(--ff-display, "League Spartan", sans-serif);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--sol-forest-deep, #1F2C17);
  margin: 0 0 16px;
}

.section-intro {
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.55;
  color: var(--sol-charcoal, #606061);
  max-width: 60ch;
  margin: 0 0 32px;
}

/* -------------------------------------------------------------------------
   Buttons -- ported from components-buttons.html preview
   ------------------------------------------------------------------------- */
.btn {
  font-family: var(--ff-display, "League Spartan", sans-serif);
  font-weight: 800;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 15px 28px;
  border-radius: var(--r-pill, 999px);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  line-height: 1;
  transition: background var(--dur-2, 220ms) var(--ease-out),
              transform var(--dur-2, 220ms) var(--ease-out),
              box-shadow var(--dur-2, 220ms) var(--ease-out);
}
/* lime on forest text -- the only correct on-lime text per design system */
.btn--primary {
  background: var(--sol-lime, #8CC63F);
  color: var(--sol-forest-deep, #1F2C17);
  box-shadow: var(--shadow-lime, 0 8px 24px rgba(140, 198, 63, 0.32));
}
.btn--primary:hover { background: var(--sol-lime-bright, #A4DC56); }
.btn--primary:active { background: var(--sol-lime-deep, #6FA82A); color: #FFFFFF; transform: translateY(1px); box-shadow: none; }

.btn--ghost {
  background: transparent;
  color: var(--sol-forest, #314426);
  border: 1.5px solid var(--sol-forest, #314426);
}
.btn--ghost:hover { background: var(--sol-forest, #314426); color: var(--sol-bone, #F6F4EC); }

.btn--secondary {
  background: var(--sol-forest, #314426);
  color: var(--sol-bone, #F6F4EC);
}
.btn--secondary:hover { background: var(--sol-forest-deep, #1F2C17); }

.btn--lg { padding: 18px 34px; font-size: 16px; }

/* -------------------------------------------------------------------------
   Top eyebrow band (announcement strip)
   ------------------------------------------------------------------------- */
.topband {
  background: var(--sol-forest-deep, #1F2C17);
  color: var(--sol-bone, #F6F4EC);
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 10px 20px;
}

/* -------------------------------------------------------------------------
   Header (Solverra parent chrome)
   ------------------------------------------------------------------------- */
.site-header {
  background: var(--sol-bone, #F6F4EC);
  border-bottom: 1px solid rgba(31, 44, 23, 0.10);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 16px;
}
.site-header__brand {
  font-family: var(--ff-display, "League Spartan", sans-serif);
  font-weight: 900;
  font-size: 24px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--sol-forest-deep, #1F2C17);
  text-decoration: none;
  white-space: nowrap;
}
.site-header__brand .brand-sol { color: var(--sol-lime-deep, #6FA82A); }
.site-nav {
  display: none;
  gap: 28px;
  align-items: center;
}
.site-nav a {
  font-weight: 700;
  font-size: 15px;
  color: var(--sol-forest-deep, #1F2C17);
  text-decoration: none;
}
.site-nav a:hover { color: var(--sol-lime-deep, #6FA82A); }
.site-header__actions { display: flex; gap: 12px; align-items: center; }

@media (min-width: 960px) {
  .site-nav { display: flex; }
}

/* -------------------------------------------------------------------------
   Hero
   ------------------------------------------------------------------------- */
.hero {
  background:
    radial-gradient(120% 90% at 85% 10%, var(--sol-lime-mist, #F4FAE8) 0%, transparent 55%),
    var(--sol-bone, #F6F4EC);
  padding-block: 48px 56px;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}
.hero__copy { display: grid; gap: 20px; }
.hero__title {
  font-family: var(--ff-display, "League Spartan", sans-serif);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  line-height: 0.94;
  font-size: clamp(44px, 9vw, 96px);
  color: var(--sol-forest-deep, #1F2C17);
  margin: 0;
}
.hero__title .accent { color: var(--sol-lime-deep, #6FA82A); }
.hero__sub {
  font-size: clamp(17px, 2.2vw, 20px);
  line-height: 1.5;
  color: var(--sol-charcoal, #606061);
  max-width: 52ch;
  margin: 0;
}
.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.hero__media {
  position: relative;
  border-radius: var(--r-xl, 28px);
  overflow: hidden;
  background: linear-gradient(160deg, var(--sol-cream, #EDE7D3), var(--sol-lime-fog, #E7F4D2));
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-3, 0 14px 32px rgba(31, 44, 23, 0.12));
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Placeholder treatment when no <img> is present (preview mode). */
.hero__media--placeholder {
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  color: var(--sol-forest-mid, #4D6A3C);
  font-family: var(--ff-serif, Georgia, serif);
  font-style: italic;
  font-size: 18px;
}

@media (min-width: 960px) {
  .hero { padding-block: 72px 80px; }
  .hero__grid { grid-template-columns: 1.05fr 1fr; gap: 64px; }
  .hero__media { aspect-ratio: 4 / 5; }
}

/* -------------------------------------------------------------------------
   Trust pill strip
   ------------------------------------------------------------------------- */
.trustbar {
  background: var(--sol-forest, #314426);
  color: var(--sol-bone, #F6F4EC);
}
.trustbar__list {
  list-style: none;
  margin: 0;
  padding-block: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  justify-content: center;
  align-items: center;
}
.trustbar__list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.trustbar__dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--sol-lime, #8CC63F);
  flex: none;
}

/* -------------------------------------------------------------------------
   Product categories grid (3 cards)
   ------------------------------------------------------------------------- */
.cats__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.cat-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--r-lg, 20px);
  overflow: hidden;
  background: #FFFFFF;
  border: 1px solid rgba(31, 44, 23, 0.10);
  box-shadow: var(--shadow-1, 0 1px 2px rgba(31, 44, 23, 0.06));
  transition: transform var(--dur-2, 220ms) var(--ease-out),
              box-shadow var(--dur-2, 220ms) var(--ease-out);
}
.cat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-3, 0 14px 32px rgba(31, 44, 23, 0.12)); }
.cat-card__media {
  aspect-ratio: 16 / 10;
  background: linear-gradient(150deg, var(--sol-cream, #EDE7D3), var(--sol-lime-fog, #E7F4D2));
  display: grid;
  place-items: center;
  color: var(--sol-forest-mid, #4D6A3C);
  font-family: var(--ff-serif, Georgia, serif);
  font-style: italic;
}
.cat-card__media img { width: 100%; height: 100%; object-fit: cover; }
.cat-card__body { padding: 24px; display: grid; gap: 10px; flex: 1; }
.cat-card__name {
  font-family: var(--ff-display, "League Spartan", sans-serif);
  font-weight: 800;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--sol-forest-deep, #1F2C17);
  margin: 0;
}
.cat-card__desc { font-size: 15px; color: var(--sol-charcoal, #606061); margin: 0; }
.cat-card__link {
  margin-top: auto;
  padding-top: 8px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--sol-forest, #314426);
  text-decoration: none;
}
.cat-card__link:hover { color: var(--sol-lime-deep, #6FA82A); }
.cat-card__link::after { content: " ->"; }

@media (min-width: 720px) {
  .cats__grid { grid-template-columns: repeat(3, 1fr); }
}

/* -------------------------------------------------------------------------
   Benefits (DSHEA structure/function)
   ------------------------------------------------------------------------- */
.benefits { background: var(--sol-paper, #FBFAF4); }
.benefits__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.benefit {
  display: grid;
  gap: 8px;
  padding: 24px;
  border-radius: var(--r-md, 12px);
  background: #FFFFFF;
  border: 1px solid rgba(31, 44, 23, 0.08);
}
.benefit__icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--sol-lime-fog, #E7F4D2);
  display: grid;
  place-items: center;
  color: var(--sol-forest, #314426);
  font-weight: 800;
  font-family: var(--ff-display, "League Spartan", sans-serif);
}
.benefit__title {
  font-family: var(--ff-display, "League Spartan", sans-serif);
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--sol-forest-deep, #1F2C17);
  margin: 4px 0 0;
}
.benefit__text { font-size: 15px; color: var(--sol-charcoal, #606061); margin: 0; }

@media (min-width: 720px) {
  .benefits__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .benefits__grid { grid-template-columns: repeat(4, 1fr); }
}

/* -------------------------------------------------------------------------
   Lab-tested / COA trust band
   ------------------------------------------------------------------------- */
.lab {
  background: var(--sol-forest-deep, #1F2C17);
  color: var(--sol-bone, #F6F4EC);
}
.lab__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
.lab__title { color: var(--sol-bone, #F6F4EC); }
.lab .eyebrow { color: var(--sol-lime, #8CC63F); }
.lab__text { color: rgba(246, 244, 236, 0.82); font-size: 16px; line-height: 1.6; }
.lab__points { list-style: none; margin: 20px 0 0; padding: 0; display: grid; gap: 12px; }
.lab__points li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--sol-bone, #F6F4EC);
}
.lab__check {
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--sol-lime, #8CC63F);
  color: var(--sol-forest-deep, #1F2C17);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 13px;
}
.lab__card {
  background: var(--sol-forest, #314426);
  border: 1px solid rgba(246, 244, 236, 0.16);
  border-radius: var(--r-lg, 20px);
  padding: 28px;
}
.lab__stat { font-family: var(--ff-display, "League Spartan", sans-serif); font-weight: 800; font-size: 40px; color: var(--sol-lime, #8CC63F); line-height: 1; }
.lab__stat-label { font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(246, 244, 236, 0.7); margin-top: 6px; }
.lab__card .btn { margin-top: 22px; }

@media (min-width: 900px) {
  .lab__grid { grid-template-columns: 1.2fr 0.8fr; gap: 56px; }
}

/* -------------------------------------------------------------------------
   Comparisons
   ------------------------------------------------------------------------- */
.compare__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.compare-card {
  border-radius: var(--r-lg, 20px);
  border: 1px solid rgba(31, 44, 23, 0.12);
  background: #FFFFFF;
  padding: 28px;
  display: grid;
  gap: 16px;
}
.compare-card__title {
  font-family: var(--ff-display, "League Spartan", sans-serif);
  font-weight: 800;
  font-size: 21px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--sol-forest-deep, #1F2C17);
  margin: 0;
}
.compare-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.compare-table caption { text-align: left; font-size: 13px; color: var(--sol-charcoal, #606061); margin-bottom: 10px; }
.compare-table th,
.compare-table td {
  text-align: left;
  padding: 10px 8px;
  border-bottom: 1px solid rgba(31, 44, 23, 0.10);
  vertical-align: top;
}
.compare-table th { font-weight: 700; color: var(--sol-forest-deep, #1F2C17); }
.compare-table thead th { font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--sol-forest-mid, #4D6A3C); }
.compare-table .col-us { color: var(--sol-forest, #314426); font-weight: 600; }
.compare-card__note { font-size: 13px; color: var(--sol-charcoal, #606061); margin: 0; }
.compare-card__link {
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--sol-forest, #314426);
  text-decoration: none;
}
.compare-card__link:hover { color: var(--sol-lime-deep, #6FA82A); }
.compare-card__link::after { content: " ->"; }

@media (min-width: 880px) {
  .compare__grid { grid-template-columns: repeat(2, 1fr); }
}

/* -------------------------------------------------------------------------
   Email capture
   ------------------------------------------------------------------------- */
.signup {
  background:
    radial-gradient(100% 120% at 10% 0%, var(--sol-lime-fog, #E7F4D2) 0%, transparent 50%),
    var(--sol-cream, #EDE7D3);
}
.signup__inner {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}
.signup__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 520px;
  margin: 24px auto 12px;
}
.signup__field { display: flex; flex-direction: column; gap: 6px; text-align: left; }
.signup__label { font-size: 13px; font-weight: 700; color: var(--sol-forest-deep, #1F2C17); }
.signup__input {
  font-family: var(--ff-body, "Manrope", sans-serif);
  font-size: 16px;
  padding: 15px 18px;
  border-radius: var(--r-pill, 999px);
  border: 1.5px solid rgba(31, 44, 23, 0.22);
  background: #FFFFFF;
  color: var(--sol-forest-deep, #1F2C17);
  width: 100%;
}
.signup__input::placeholder { color: var(--sol-charcoal, #606061); }
.signup__consent { font-size: 12px; color: var(--sol-charcoal, #606061); margin: 0; }

@media (min-width: 560px) {
  .signup__form { flex-direction: row; align-items: flex-end; }
  .signup__field { flex: 1; }
  .signup__form .btn { white-space: nowrap; }
}

/* -------------------------------------------------------------------------
   DSHEA disclaimer block (reusable)
   ------------------------------------------------------------------------- */
.dshea {
  background: var(--sol-forest, #314426);
  color: rgba(246, 244, 236, 0.92);
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
  padding: 16px 20px;
}
.dshea p { margin: 0 auto; max-width: 80ch; }

/* -------------------------------------------------------------------------
   Footer
   ------------------------------------------------------------------------- */
.site-footer {
  background: var(--sol-forest-deep, #1F2C17);
  color: var(--sol-bone, #F6F4EC);
}
.site-footer a { color: var(--sol-bone, #F6F4EC); text-decoration: none; }
.site-footer a:hover { color: var(--sol-lime, #8CC63F); text-decoration: underline; }
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-block: 56px 36px;
}
.footer__brand-name {
  font-family: var(--ff-display, "League Spartan", sans-serif);
  font-weight: 900;
  font-size: 22px;
  text-transform: uppercase;
  color: var(--sol-bone, #F6F4EC);
  margin: 0 0 12px;
}
.footer__tagline { font-size: 14px; color: rgba(246, 244, 236, 0.72); max-width: 32ch; margin: 0 0 16px; }
.footer__col h2 {
  font-family: var(--ff-display, "League Spartan", sans-serif);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sol-lime, #8CC63F);
  margin: 0 0 14px;
}
.footer__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer__list li { font-size: 15px; }
.footer__contact { font-size: 15px; display: grid; gap: 10px; }
.footer__contact .label { font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(246, 244, 236, 0.6); display: block; }
.footer__bottom {
  border-top: 1px solid rgba(246, 244, 236, 0.16);
  padding-block: 24px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 13px;
  color: rgba(246, 244, 236, 0.7);
}
.footer__legal-links { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.footer__legal-links a { font-size: 13px; }

@media (min-width: 720px) {
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 40px; }
  .footer__bottom { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* Screen-reader only utility */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* -------------------------------------------------------------------------
   Wellness solutions row + final CTA band (added for the theme home-content
   part). Token-driven; literal fallbacks so a standalone preview still renders.
   ------------------------------------------------------------------------- */
.solutions__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--s-4, 16px);
  margin-top: var(--s-6, 32px);
}
@media (max-width: 900px) { .solutions__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .solutions__grid { grid-template-columns: 1fr; } }
.solution-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 96px;
  padding: var(--s-4, 16px);
  text-align: center;
  text-decoration: none;
  font-family: var(--ff-display, "League Spartan", sans-serif);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--ls-caps, 0.08em);
  color: var(--sol-forest-deep, #1F2C17);
  background: var(--sol-lime-mist, #F4FAE8);
  border: 1px solid var(--border, rgba(31, 44, 23, 0.12));
  border-radius: var(--r-md, 12px);
  transition: background 120ms ease, transform 120ms ease, box-shadow 220ms ease;
}
.solution-card:hover {
  background: var(--sol-lime-fog, #E7F4D2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-2, 0 4px 14px rgba(31, 44, 23, 0.08));
  color: var(--sol-forest-deep, #1F2C17);
}

.final-cta { text-align: center; }
.final-cta .section-title { color: var(--fg-on-dark, #F6F4EC); }
.final-cta .section-intro { color: rgba(246, 244, 236, 0.86); margin-inline: auto; max-width: 60ch; }
