/* Base styles + header tokens from Figma */

:root {
  /* Colors */
  --color-text-title: #131313;
  /* Darkened for WCAG AA (~4.5:1) with white / light backgrounds */
  --color-brand: #057a44;
  --color-brand-dark: #046b3b;
  --color-brand-shadow: rgba(5, 122, 68, 0.2);
  --cta-grid:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px) 0 0 / 48px 48px,
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px) 0 0 / 48px 48px;
  --color-btn-secondary-bg: #ededed;
  --color-icon-stroke: #121217;
  --color-white: #ffffff;
  --color-text: #1a1a1a;
  --color-body-text: #6b6a6a;
  --color-text-muted: #5c5c5c;
  --color-bg: #ffffff;
  --color-bg-muted: rgba(237, 237, 237, 1);
  --color-border: #e2e8e4;

  /* Typography — Body/Text-sm (nav) */
  --text-sm-size: 14px;
  --text-sm-line: 1.4;
  --text-sm-weight: 400;

  /* Typography — button label */
  --btn-font-family: "Inter", system-ui, sans-serif;
  --btn-font-size: 14px;
  --btn-font-weight: 600;
  --btn-line-height: 1.5;

  /* Button shell (Small) */
  --btn-radius: 6px;
  --btn-padding-y: 8px;
  --btn-padding-x: 12px;
  --btn-gap: 8px;
  --btn-shadow-primary: 0 0 20px 4px var(--color-brand-shadow);

  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --container-pad: clamp(1rem, 3vw, 2.5rem);
  --container-width: none;
  --radius: 0.5rem;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  --header-bar-radius: 9999px;
  --header-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);

  /* Footer */
  --color-footer-bg: #121212;
  --color-footer-body-light: rgba(255, 255, 255, 0.7);
  --color-footer-white: #ffffff;
  --footer-radius: 1.5rem;
  --text-xs-size: 12px;
  --text-xs-line: 18px;
  --footer-heading-size: 16px;
  --footer-heading-line: 24px;

  /* Keyboard focus ring (PageSpeed / WCAG) */
  --focus-ring-color: var(--color-brand);
  --focus-ring-offset: 2px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 20px;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg-muted);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--color-brand);
}

.container {
  width: 100%;
  max-width: var(--container-width);
  padding-inline: var(--container-pad);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  z-index: 1000;
  background: var(--color-brand);
  color: #fff;
}

.skip-link:focus {
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  left: 1rem;
  top: 1rem;
  padding: 0.5rem 1rem;
  white-space: normal;
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* Visible focus for keyboard users; mouse clicks stay clean */
:where(
  a,
  button,
  input,
  select,
  textarea,
  summary,
  [tabindex]:not([tabindex="-1"])
):focus-visible {
  outline: 2px solid var(--focus-ring-color);
  outline-offset: var(--focus-ring-offset);
}

.btn--primary:focus-visible,
.btn--white:focus-visible,
.stats__ask:focus-visible {
  outline-color: #fff;
}

.site-header__toggle:focus-visible,
.site-nav__link:focus-visible {
  outline-offset: 3px;
}

.site-nav__submenu a:focus-visible {
  color: var(--color-brand);
  background: var(--color-bg-muted);
}

.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;
}

html.is-nav-open {
  overflow: hidden;
}

/* Header */

.site-header {
  position: sticky;
  top: 20px;
  z-index: 100;
  padding: 0;
  background: transparent;
}

.site-header__inner {
  width: 100%;
  max-width: var(--container-width);
  padding-inline: var(--container-pad);
  margin-inline: auto;
}

.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.5rem;
  padding: 0.875rem 1.5rem 0.875rem 1.75rem;
  background: var(--color-white);
  border-radius: var(--header-bar-radius);
  box-shadow: var(--header-shadow);
}

.site-logo {
  flex-shrink: 0;
  text-decoration: none;
}

.site-logo img {
  height: 2.25rem;
  width: auto;
}

.site-header__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-left: auto;
  padding: 0;
  border: 0;
  border-radius: var(--btn-radius);
  background: transparent;
  color: var(--color-brand);
  cursor: pointer;
}

.site-header__toggle-icon--close {
  display: none;
}

.site-header.is-nav-open .site-header__toggle-icon--open {
  display: none;
}

.site-header.is-nav-open .site-header__toggle-icon--close {
  display: block;
}

.btn__label--mobile {
  display: none;
}

.site-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 0;
}

.site-nav__list {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav__item {
  position: relative;
}

.site-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0;
  border: 0;
  background: none;
  font-family: var(--font-sans);
  font-size: var(--text-sm-size);
  font-weight: var(--text-sm-weight);
  line-height: var(--text-sm-line);
  color: var(--color-text-title);
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}

.site-nav__link:hover {
  color: var(--color-brand);
}

.site-nav__chevron {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.site-nav__item--open .site-nav__chevron {
  transform: rotate(180deg);
}

.site-nav__item--open > .site-nav__link {
  color: var(--color-brand);
}

.site-nav__submenu {
  display: none;
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 0;
  z-index: 110;
  min-width: 12rem;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--btn-radius);
  box-shadow: var(--shadow);
}

.site-nav__item--open .site-nav__submenu {
  display: block;
}

.site-nav__submenu a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: var(--text-sm-size);
  font-weight: var(--text-sm-weight);
  line-height: var(--text-sm-line);
  color: var(--color-text-title);
  text-decoration: none;
  white-space: nowrap;
}

.site-nav__submenu a:hover {
  color: var(--color-brand);
  background: var(--color-bg-muted);
}

.site-header__actions {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 0.5rem;
}

/* Hero / homepage section styles live in home.css */

/* Footer */

.site-footer {
  padding: 0;
}

.site-footer__panel {
  padding: 2.5rem 2.5rem 1.75rem;
  background: var(--color-footer-bg);
  border-radius: var(--footer-radius);
  color: var(--color-footer-body-light);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(16rem, 1fr) minmax(0, 1fr);
  column-gap: 2rem;
  row-gap: 2rem;
  align-items: start;
}

.site-footer__links {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  column-gap: 3rem;
  row-gap: 2rem;
  align-items: start;
  justify-content: start; /* start of right half ≈ page center */
  min-width: 0;
}

.site-footer__logo {
  display: inline-block;
  text-decoration: none;
}

.site-footer__logo img {
  width: 140px;
  height: 56px;
}

.site-footer__tagline {
  margin: 1rem 0 0;
  /* ~2 lines for “Private-company financial intelligence for better decisions.” */
  max-width: 20rem;
  font-size: var(--text-sm-size);
  font-weight: var(--text-sm-weight);
  line-height: var(--text-sm-line);
  color: var(--color-footer-body-light);
}

.site-footer__social {
  display: flex;
  gap: 0.65rem;
  margin: 1rem 0 0;
}

.site-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-footer-white);
  text-decoration: none;
}

.site-footer__social-link:hover,
.site-footer__social-link:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  color: var(--color-footer-white);
}

.site-footer__heading {
  margin: 0 0 1rem;
  font-size: var(--footer-heading-size);
  font-weight: 600;
  line-height: var(--footer-heading-line);
  letter-spacing: 0;
  text-transform: uppercase;
  color: #6ee7a8;
}

.site-footer__toggle {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-align: left;
  text-transform: inherit;
  cursor: pointer;
  -webkit-appearance: none !important;
  appearance: none !important;
}

.site-footer__icon,
.site-footer__chevron {
  display: none;
}

.site-footer__toggle-label {
  display: block;
}

.site-footer__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__list li + li {
  margin-top: 0.75rem;
}

.site-footer__list a {
  font-size: var(--text-sm-size);
  font-weight: var(--text-sm-weight);
  line-height: var(--text-sm-line);
  color: var(--color-footer-body-light);
  text-decoration: none;
}

.site-footer__list a:hover {
  color: var(--color-footer-white);
}

.site-footer__list--contact,
.site-footer__list--contact a {
  color: var(--color-footer-white);
  font-size: var(--text-sm-size);
  font-weight: var(--text-sm-weight);
  line-height: var(--text-sm-line);
}

.site-footer__col--contact {
  justify-self: start;
  min-width: 0;
  max-width: 100%;
}

.site-footer__list--contact li {
  white-space: normal;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.site-footer__list--contact a:hover {
  color: var(--color-brand);
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem 2rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__copyright {
  margin: 0;
  font-size: var(--text-xs-size);
  font-weight: 400;
  line-height: var(--text-xs-line);
  color: var(--color-footer-body-light);
}

.site-footer__legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
}

.site-footer__legal-links a {
  font-size: var(--text-xs-size);
  font-weight: 400;
  line-height: var(--text-xs-line);
  color: var(--color-footer-body-light);
  text-decoration: none;
}

.site-footer__legal-links a:hover {
  color: var(--color-footer-white);
}

@media (max-width: 48rem) {
  .site-footer {
    padding: 0;
  }

  .site-footer__panel {
    padding: 1.25rem 1.25rem 1rem;
    border-radius: var(--footer-radius, 1.5rem);
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    row-gap: 1rem;
  }

  .site-footer__links {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 0;
    width: 100%;
    justify-content: stretch;
    text-align: left;
  }

  .site-footer.is-accordion .site-footer__links {
    margin-top: 0.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .site-footer.is-accordion .site-footer__col {
    grid-column: 1 / -1;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .site-footer.is-accordion .site-footer__col:last-child {
    border-bottom: 0;
  }

  .site-footer.is-accordion .site-footer__heading {
    margin: 0;
    text-transform: none;
    color: #fff;
  }

  .site-footer.is-accordion .site-footer__toggle {
    min-height: 48px;
    gap: 0.75rem;
    padding: 0.7rem 0;
  }

  .site-footer.is-accordion .site-footer__icon,
  .site-footer.is-accordion .site-footer__chevron {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
  }

  .site-footer.is-accordion .site-footer__icon {
    width: 20px;
    height: 20px;
    color: #22c55e;
  }

  .site-footer.is-accordion .site-footer__toggle-label {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: #fff;
  }

  .site-footer.is-accordion .site-footer__chevron {
    width: 16px;
    height: 16px;
    color: rgba(255, 255, 255, 0.85);
    transition: transform 0.18s ease;
  }

  .site-footer.is-accordion .site-footer__col.is-open .site-footer__chevron {
    transform: rotate(180deg);
  }

  .site-footer.is-accordion .site-footer__list {
    display: none !important;
    padding: 0 0 0.85rem 2.05rem;
  }

  .site-footer.is-accordion .site-footer__col.is-open .site-footer__list {
    display: block !important;
  }

  .site-footer.is-accordion .site-footer__list--contact {
    padding-left: 0;
    text-align: left;
  }

  .site-footer.is-accordion .site-footer__list--contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    text-align: left;
  }

  .site-footer.is-accordion .site-footer__list--contact li::before {
    content: "";
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-top: 2px;
    background-color: #fff;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
  }

  .site-footer.is-accordion .site-footer__list--contact li:nth-child(1)::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 21s7-6.2 7-11.2A7 7 0 1 0 5 9.8C5 14.8 12 21 12 21z' stroke='black' stroke-width='1.8'/%3E%3Ccircle cx='12' cy='9.8' r='2.2' stroke='black' stroke-width='1.8'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 21s7-6.2 7-11.2A7 7 0 1 0 5 9.8C5 14.8 12 21 12 21z' stroke='black' stroke-width='1.8'/%3E%3Ccircle cx='12' cy='9.8' r='2.2' stroke='black' stroke-width='1.8'/%3E%3C/svg%3E");
  }

  .site-footer.is-accordion .site-footer__list--contact li:nth-child(2)::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6.5 3.8h3.2l1.2 3-2 1.2a12.5 12.5 0 0 0 6.1 6.1l1.2-2 3 1.2v3.2c0 .7-.6 1.3-1.3 1.3C9.7 17.8 6.2 14.3 6.2 5.1c0-.7.6-1.3 1.3-1.3z' stroke='black' stroke-width='1.8' stroke-linejoin='round'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6.5 3.8h3.2l1.2 3-2 1.2a12.5 12.5 0 0 0 6.1 6.1l1.2-2 3 1.2v3.2c0 .7-.6 1.3-1.3 1.3C9.7 17.8 6.2 14.3 6.2 5.1c0-.7.6-1.3 1.3-1.3z' stroke='black' stroke-width='1.8' stroke-linejoin='round'/%3E%3C/svg%3E");
  }

  .site-footer.is-accordion .site-footer__list--contact li:nth-child(3)::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Crect x='3.5' y='5.5' width='17' height='13' rx='2' stroke='black' stroke-width='1.8'/%3E%3Cpath d='m4.5 7.2 7.5 5.5 7.5-5.5' stroke='black' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Crect x='3.5' y='5.5' width='17' height='13' rx='2' stroke='black' stroke-width='1.8'/%3E%3Cpath d='m4.5 7.2 7.5 5.5 7.5-5.5' stroke='black' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
  }

  .site-footer__brand {
    grid-column: 1 / -1;
    text-align: center;
  }

  .site-footer__logo img {
    margin-inline: auto;
  }

  .site-footer__tagline {
    width: 100%;
    max-width: 326px;
    margin: 0.5rem auto 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
  }

  .site-footer__social {
    width: 100%;
    margin-top: 0.5rem;
    justify-content: flex-start;
  }

  .site-footer__heading {
    margin-bottom: 0.5rem;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    text-transform: uppercase;
    color: rgba(6, 147, 82, 1);
    text-align: left;
  }

  .site-footer__list li + li {
    margin-top: 0.4rem;
  }

  .site-footer__list,
  .site-footer__list a {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.7);
  }

  .site-footer__list a:hover {
    color: rgba(255, 255, 255, 1);
  }

  .site-footer__list--contact,
  .site-footer__list--contact a {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: rgba(255, 255, 255, 1);
  }

  .site-footer__col--contact {
    grid-column: 1 / -1;
    min-width: 0;
    max-width: none;
    width: 100%;
    margin-inline: 0;
    justify-self: stretch;
    text-align: left;
  }

  .site-footer__copyright,
  .site-footer__legal-links a {
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    color: rgba(255, 255, 255, 0.7);
  }

  .site-footer__legal-links a {
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    padding: 0.75rem 0;
  }

  .site-footer__legal-links a:hover {
    color: rgba(255, 255, 255, 1);
  }

  .site-footer__legal {
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
    margin-top: 1rem;
    padding-top: 0.65rem;
  }

  .site-footer__copyright {
    text-align: left;
  }

  .site-footer__legal-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    width: 100%;
  }
}

/*
  Full horizontal nav needs ~1280px (logo + 7 links + CTAs).
  Keep the hamburger until then so Blog / Sign In / Trial never overlap.
*/
@media (min-width: 80rem) and (max-width: 89.99rem) {
  .site-header__bar {
    gap: 0.75rem;
    padding: 0.75rem 1.15rem 0.75rem 1.25rem;
  }

  .site-nav__list {
    gap: 0.85rem;
  }

  .site-nav__link {
    font-size: 0.8125rem;
  }

  .site-header__actions {
    gap: 0.375rem;
  }

  .site-header__actions .btn {
    padding-inline: 0.65rem;
    font-size: 0.8125rem;
  }
}

@media (max-width: 79.99rem) {
  .site-header__toggle {
    display: inline-flex;
  }

  .btn__label--desktop {
    display: none;
  }

  .btn__label--mobile {
    display: inline;
  }

  .site-nav,
  .site-header__actions {
    display: none;
  }

  .site-header.is-nav-open {
    z-index: 200;
  }

  .site-header.is-nav-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background: rgba(18, 18, 23, 0.45);
  }

  .site-header.is-nav-open .site-header__inner {
    width: min(100% - 1.5rem, 28rem);
    margin-inline: auto;
  }

  .site-header.is-nav-open .site-header__bar {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 0;
    min-height: 0;
    padding: 1rem 1.25rem 1.5rem;
    border-radius: 1.25rem;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  }

  .site-header.is-nav-open .site-logo {
    grid-column: 1;
    grid-row: 1;
  }

  .site-header.is-nav-open .site-header__toggle {
    grid-column: 2;
    grid-row: 1;
    margin-left: 0;
  }

  .site-header.is-nav-open .site-nav,
  .site-header.is-nav-open .site-header__actions {
    display: flex;
    width: 100%;
    grid-column: 1 / -1;
  }

  .site-header.is-nav-open .site-nav {
    order: unset;
    flex-direction: column;
    justify-content: flex-start;
    margin-top: 1rem;
    padding-top: 1.25rem;
    border-top: 1px solid #e8e8e8;
  }

  .site-header.is-nav-open .site-header__actions {
    order: unset;
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 0.75rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid #e8e8e8;
  }

  .site-header.is-nav-open .site-header__actions .btn {
    width: 100%;
    justify-content: center;
    min-height: 2.75rem;
  }

  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
    width: 100%;
  }

  .site-nav__link {
    width: 100%;
    justify-content: space-between;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
  }

  .site-nav__chevron {
    color: var(--color-icon-stroke);
  }

  .site-nav__item--open > .site-nav__link,
  .site-nav__item--open .site-nav__chevron {
    color: var(--color-brand);
  }

  .site-nav__submenu {
    position: static;
    min-width: 0;
    width: 100%;
    margin: 0.875rem 0 0;
    padding: 0 0 0 0.25rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-nav__submenu li + li {
    margin-top: 0.875rem;
  }

  .site-nav__submenu a {
    padding: 0;
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--color-text-title);
    background: transparent;
  }

  .site-nav__submenu a:hover {
    background: transparent;
    color: var(--color-brand);
  }
}

/* Buttons, cards, tabs — component styles */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--btn-gap);
  padding: var(--btn-padding-y) var(--btn-padding-x);
  border: 1px solid transparent;
  border-radius: var(--btn-radius);
  font-family: var(--btn-font-family);
  font-size: var(--btn-font-size);
  font-weight: var(--btn-font-weight);
  line-height: var(--btn-line-height);
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.btn--primary {
  background: var(--color-brand);
  color: var(--color-white);
  box-shadow: var(--btn-shadow-primary);
}

.btn--primary:hover {
  background: var(--color-brand-dark);
  color: var(--color-white);
}

.btn--primary .btn__icon {
  flex-shrink: 0;
}

.btn--secondary {
  background: var(--color-btn-secondary-bg);
  color: var(--color-brand);
}

.btn--secondary:hover {
  background: #e2e2e2;
  color: var(--color-brand-dark);
}

.btn--ghost {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}

.btn--ghost:hover {
  background: var(--color-bg-muted);
}

.btn--lg {
  min-height: 48px;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.btn--lg .btn__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn--white {
  background: #fff;
  color: var(--color-text-title);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0;
  box-shadow: none;
}

.btn--white .btn__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 20px;
  height: 20px;
  color: var(--color-brand);
}

.btn--white .btn__icon svg {
  display: block;
  width: 14.67px;
  height: 12px;
}

.btn--white:hover {
  background: #f3f3f3;
  color: var(--color-text-title);
}

.btn--white:hover .btn__icon {
  color: var(--color-brand-dark);
}

.btn--outline-light {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(236, 236, 236, 0.24);
  backdrop-filter: blur(60px);
  -webkit-backdrop-filter: blur(60px);
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(236, 236, 236, 0.36);
  color: #fff;
}

/* Shot frame (screenshot / product preview chrome) */

.shot-frame {
  min-width: 0;
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(236, 236, 236, 1);
  border-radius: 20px;
  background: rgba(244, 246, 245, 1);
  box-shadow: 0 20px 45px 0 rgba(0, 0, 0, 0.06);
}

.shot-frame__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  vertical-align: top;
}

/* Text link (Figma: buttons/link) */

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
  color: var(--color-brand);
  text-decoration: none;
}

.text-link__arrow {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  padding: 3px 2px;
  box-sizing: border-box;
}

.text-link__arrow svg {
  display: block;
  width: 11px;
  height: 10px;
}

.text-link:hover {
  text-decoration: underline;
}

/* Section lead (Figma: Body / Text-base) */

.section-lead {
  margin: 0;
  max-width: 531px;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0;
  color: var(--color-body-text);
}

.section-lead strong {
  font-weight: 600;
  color: var(--color-text-title);
}

.section-lead--center {
  max-width: 713px;
  margin-inline: auto;
  text-align: center;
}

/* Section title (Figma: Headings / Text-3xl + brand accent) */

.section-title {
  margin: 0 0 1rem;
  max-width: 757px;
  font-family: var(--font-sans);
  font-size: clamp(1.75rem, 2.5vw, 36px);
  font-weight: 600;
  line-height: 1.111; /* 40 / 36 */
  letter-spacing: -0.06em;
  color: var(--color-text-title);
}

.section-title__accent {
  color: var(--color-brand);
}

.section-title--center {
  max-width: 712px;
  margin-inline: auto;
  text-align: center;
}

/* Section badge (Figma: green pill label) */

.section-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 0 1rem;
  padding: 4px 10px;
  border: 1px solid rgba(5, 122, 68, 0.22);
  border-radius: 30px;
  background: rgba(5, 122, 68, 0.08);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0;
  text-transform: uppercase;
  text-align: center;
  color: var(--color-brand);
}

.section-badge--dot::before {
  content: "";
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-brand);
}

.section-badge--dot {
  padding: 8px 16px;
  font-size: var(--text-sm-size);
  font-weight: var(--text-sm-weight);
  line-height: var(--text-sm-line);
  text-transform: none;
  color: var(--color-text-title);
  flex-wrap: nowrap;
  white-space: nowrap;
}

.section-badge--dot span {
  color: var(--color-brand);
}

.section-badge--on-brand {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(0, 0, 0, 0.35);
  font-family: var(--font-sans); /* Typhography/Font family/Body */
  font-size: 14px;
  font-weight: 700;
  font-style: normal;
  line-height: 20px;
  letter-spacing: 0;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
}

/* Cards */

.card-grid {
  display: grid;
  gap: 1.5rem;
}

.card {
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card h3 {
  margin-top: 0;
}

.card__link {
  font-weight: 600;
  text-decoration: none;
}

.card__link:hover {
  text-decoration: underline;
}

/* Tabs */

.tabs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.tabs__tab {
  padding: 0.625rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fff;
  font: inherit;
  cursor: pointer;
}

.tabs__tab.is-active {
  background: var(--color-brand);
  border-color: var(--color-brand);
  color: #fff;
}

.tabs__panel {
  padding: 1.25rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.tabs__panel:not(.is-active) {
  display: none;
}

@media (min-width: 48rem) {
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Shared marketing shell — Free Scorecard start / wizard / report language */

:root {
  --mkt-forest: #0f4a38;
  --mkt-forest-deep: #0a2f24;
  --mkt-cta: #2e6b41;
  --mkt-mint: #dceee0;
  --mkt-mint-soft: #f4f9f4;
  --mkt-mint-bar: #f3f7f4;
  --mkt-report-border: #e0ebe4;
  --mkt-report-ink: #12281a;
  --mkt-warn: #94442e;
  --mkt-input-border: #cde9db;
  --mkt-shell-radius: 20px;
  --mkt-card-radius: 16px;
  --mkt-input-radius: 12px;
}

body.mkt-page #main {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
  padding-inline: var(--container-pad);
}

@media (max-width: 39.99rem) {
  body.mkt-page {
    overflow-x: clip;
    padding: 12px;
  }

  body.mkt-page #main,
  body.mkt-page .container,
  body.mkt-page .site-header__inner {
    padding-inline: 0;
  }
}

/* —— Hero —— */
.mkt-hero {
  padding: 0;
}

.mkt-hero__layout {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mkt-hero__panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 4vw, 3rem);
  background: #fff;
  border-radius: 1.5rem;
}

.mkt-hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 36rem;
}

.mkt-hero--simple .mkt-hero__layout {
  display: block;
}

.mkt-hero--simple .mkt-hero__copy {
  max-width: 44rem;
}

.mkt-hero__copy > .section-badge {
  margin-bottom: 1rem;
}

.mkt-hero__title {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.06em;
  color: var(--color-text-title);
}

.mkt-hero__lead {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--color-body-text);
}

.mkt-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.mkt-hero__trust {
  margin: 1rem 0 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-body-text);
}

.mkt-hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0 0 1.25rem;
}

.mkt-feature {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 6px 10px;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  background: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-title);
}

.mkt-feature__icon {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  padding: 6px;
  border-radius: 4px;
  background: rgba(6, 147, 82, 0.08);
  color: #069352;
  flex-shrink: 0;
}

.mkt-feature__icon svg {
  display: block;
}

.mkt-hero__media {
  display: flex;
  min-width: 0;
}

.mkt-preview.hero-mock {
  box-sizing: border-box;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  overflow: hidden;
  width: 100%;
  min-height: 280px;
  padding: 1.5rem;
  border-radius: 24px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px) 0 0 / 28px 28px,
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px) 0 0 / 28px 28px,
    linear-gradient(180deg, #021e13 0%, #03110d 100%);
  color: #fff;
}

.mkt-preview.hero-mock--forest {
  background:
    var(--cta-grid),
    radial-gradient(90% 70% at 100% 0%, rgba(110, 231, 168, 0.22), transparent 55%),
    linear-gradient(160deg, #0b3d2e 0%, #0f4a38 55%, #057a44 100%);
}

.mkt-preview.hero-mock--forest .mkt-preview__label {
  color: #c8f0d8;
}

.mkt-preview__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 0 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.mkt-preview__label {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #069352;
}

.mkt-preview__step {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.mkt-preview__step-current {
  color: #fff;
}

.mkt-preview__step-total {
  color: rgba(255, 255, 255, 0.45);
}

.mkt-preview__stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
}

.mkt-preview__gauges {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
  width: 100%;
}

.mkt-preview__gauge {
  width: min(160px, 42%);
  height: auto;
}

.mkt-preview__shot {
  display: block;
  width: 100%;
  height: auto;
  max-height: 260px;
  object-fit: contain;
  border-radius: 12px;
}

.mkt-hero__stage {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  gap: 0.85rem;
  width: 100%;
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
  border-radius: 1.5rem;
  background:
    radial-gradient(90% 70% at 100% 0%, rgba(110, 231, 168, 0.22), transparent 55%),
    linear-gradient(160deg, #0b3d2e 0%, #0f4a38 55%, #057a44 100%);
  color: #fff;
}

.mkt-hero__stage-label {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c8f0d8;
}

.mkt-hero__caps,
.mkt-hero__stats,
.mkt-hero__steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.mkt-hero__cap,
.mkt-hero__stat,
.mkt-hero__step {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.95rem 1.1rem;
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.mkt-hero__cap-name,
.mkt-hero__stat-value,
.mkt-hero__step-name {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.mkt-hero__cap-desc,
.mkt-hero__stat-label,
.mkt-hero__step-desc {
  font-size: 0.9rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.82);
}

.mkt-hero__stage-note {
  margin: 0.25rem 0 0;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 47.99rem) {
  .mkt-hero__copy {
    align-items: center;
    text-align: center;
    max-width: none;
  }

  .mkt-hero__cta {
    flex-direction: column;
    width: 100%;
  }

  .mkt-hero__cta .btn {
    width: 100%;
    justify-content: center;
  }

  .mkt-hero__features {
    justify-content: center;
  }

  .mkt-preview.hero-mock {
    min-height: 220px;
    padding: 1.15rem;
  }
}

@media (min-width: 56rem) {
  .mkt-hero__layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 12px;
    align-items: stretch;
  }

  .mkt-hero__panel {
    padding: 3rem 2.75rem;
  }
}

/* —— White panel sections —— */
.mkt-panel {
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border-radius: 1.5rem;
  background: #fff;
}

.mkt-panel__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-text-title);
}

.mkt-panel__lead {
  margin: 0 0 1.35rem;
  max-width: 42rem;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--color-body-text);
}

.mkt-split {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 56rem) {
  .mkt-split {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 12px;
    align-items: stretch;
  }
}

.mkt-stage,
.mkt-trust {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  min-height: 100%;
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
  border-radius: var(--mkt-shell-radius);
  background:
    var(--cta-grid),
    radial-gradient(90% 70% at 100% 0%, rgba(110, 231, 168, 0.16), transparent 55%),
    linear-gradient(180deg, var(--mkt-forest) 0%, var(--mkt-forest-deep) 100%);
  color: #fff;
  box-shadow: 0 8px 32px rgba(15, 28, 18, 0.08);
}

.mkt-stage__label,
.mkt-trust__label {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6ee7a8;
}

.mkt-stage__title,
.mkt-trust__title {
  margin: 0;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.mkt-stage__list,
.mkt-trust__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mkt-stage__list li,
.mkt-trust__list li {
  padding: 0.75rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.95rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
}

.mkt-stage__list li:first-child,
.mkt-trust__list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.mkt-stage a,
.mkt-trust a {
  color: #c8f0d8;
}

/* —— Feature / card grids —— */
.mkt-grid {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 48rem) {
  .mkt-grid--2 {
    grid-template-columns: 1fr 1fr;
  }

  .mkt-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.mkt-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
  padding: 1.25rem 1.2rem;
  border: 1px solid var(--mkt-report-border);
  border-radius: var(--mkt-card-radius);
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.mkt-card__name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--mkt-report-ink);
}

.mkt-pill {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mkt-pill--top {
  background: #dceee0;
  color: #2e6b41;
}

.mkt-pill--above {
  background: #eef4ef;
  color: #3e6645;
}

.mkt-pill--below {
  background: #f5efe6;
  color: #6e5430;
}

.mkt-pill--low {
  background: #f9f2f0;
  color: #94442e;
}

.mkt-card__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--color-body-text);
}

.mkt-card a {
  color: var(--color-brand);
  font-weight: 600;
  text-decoration: none;
}

.mkt-card a:hover {
  text-decoration: underline;
}

/* —— Steps —— */
.mkt-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
  counter-reset: mkt-step;
}

.mkt-progress {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 0 0 0.75rem;
}

@media (min-width: 56rem) {
  .mkt-progress {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.mkt-progress__seg {
  height: 4px;
  border-radius: 999px;
  background: #2e6b41;
}

.mkt-steps li {
  position: relative;
  padding: 1.1rem 1.15rem 1.1rem 3.5rem;
  border-radius: 14px;
  background: var(--mkt-mint-soft);
  border: 1px solid #e0e7e2;
  counter-increment: mkt-step;
}

.mkt-steps li::before {
  content: counter(mkt-step);
  position: absolute;
  left: 1rem;
  top: 1.1rem;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  background: #2e6b41;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mkt-steps__title {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text-title);
}

.mkt-steps__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--color-body-text);
}

@media (min-width: 56rem) {
  .mkt-steps {
    grid-template-columns: 1fr 1fr;
  }
}

/* —— FAQ —— */
.mkt-faq__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.mkt-faq__item {
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--mkt-report-border);
  overflow: hidden;
}

.mkt-faq__item summary {
  position: relative;
  display: block;
  cursor: pointer;
  list-style: none;
  padding: 1rem 2.5rem 1rem 1.15rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-title);
}

.mkt-faq__item summary::-webkit-details-marker {
  display: none;
}

.mkt-faq__item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 1.15rem;
  color: var(--color-brand);
  font-weight: 700;
  line-height: 1;
  transform: translateY(-50%);
}

.mkt-faq__item.is-open summary::after,
.mkt-faq__item[open] summary::after {
  content: "–";
}

.mkt-faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.mkt-faq__item.is-open .mkt-faq__answer,
.mkt-faq__item[open]:not([data-faq-animated]) .mkt-faq__answer {
  grid-template-rows: 1fr;
}

.mkt-faq__answer-inner {
  min-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.mkt-faq__item.is-open .mkt-faq__answer-inner,
.mkt-faq__item[open]:not([data-faq-animated]) .mkt-faq__answer-inner {
  opacity: 1;
}

.mkt-faq__item p,
.mkt-faq__item ul {
  margin: 0;
  padding: 0 1.15rem 1.1rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--color-body-text);
}

.mkt-faq__item ul {
  padding-left: 2.35rem;
  list-style: disc;
}

.mkt-faq__item li {
  margin: 0.35rem 0;
}

@media (prefers-reduced-motion: reduce) {
  .mkt-faq__answer,
  .mkt-faq__answer-inner {
    transition: none;
  }
}

/* —— Quotes —— */
.mkt-quotes {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1.25rem;
}

.mkt-quote,
.mkt-quotes li {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 100%;
  padding: 1.5rem;
  border: 1px solid #e8e8e8;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.mkt-quote__stars {
  display: flex;
  gap: 0.25rem;
}

.mkt-quote__stars svg {
  width: 1.125rem;
  height: 1.125rem;
}

.mkt-quote__text,
.mkt-quotes__text {
  margin: 0;
  flex: 1;
  font-size: 14px;
  font-style: italic;
  line-height: 1.4;
  color: var(--color-body-text);
}

.mkt-quote__author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding-top: 1rem;
  border-top: 1px solid #e8e8e8;
}

.mkt-quote__avatar {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: #cde9db;
  color: #2e6b41;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.mkt-quote__name,
.mkt-quotes__meta {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  font-style: normal;
  line-height: 24px;
  color: var(--color-text-title);
}

.mkt-quote__role {
  margin: 0.15rem 0 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  color: var(--color-body-text);
}

@media (min-width: 56rem) {
  .mkt-quotes--2 {
    grid-template-columns: 1fr 1fr;
  }
}

/* —— Forms / contact —— */
.mkt-form {
  display: grid;
  gap: 0.85rem;
}

.mkt-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #586960;
}

.mkt-form input,
.mkt-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--mkt-input-border);
  border-radius: var(--mkt-input-radius);
  font: inherit;
  font-size: 1rem;
  color: #172b1a;
  background: #fff;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.mkt-form input:focus,
.mkt-form textarea:focus {
  outline: none;
  border-color: #a7d4bc;
  box-shadow: 0 0 0 3px rgba(4, 145, 77, 0.12);
}

.mkt-form__fineprint {
  margin: 0.35rem 0 0;
  font-size: 13px;
  line-height: 1.4;
  color: #9aa09b;
  text-align: center;
}

.mkt-form input.is-invalid,
.mkt-form textarea.is-invalid {
  border-color: #b42318;
  box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.12);
}

.mkt-form__error {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.35;
  color: #b42318;
}

.mkt-form__error[hidden] {
  display: none !important;
}

.mkt-form textarea {
  min-height: 8rem;
  resize: vertical;
}

.mkt-form__hint {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--color-body-text);
}

.mkt-contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.mkt-contact-list a {
  color: var(--color-brand);
  font-weight: 600;
  text-decoration: none;
}

.mkt-contact-list a:hover {
  text-decoration: underline;
}

/* —— Legal / glossary prose —— */
.mkt-prose h2,
.mkt-prose h3 {
  margin: 1.75rem 0 0.65rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-text-title);
}

.mkt-prose h2:first-child,
.mkt-prose h3:first-child {
  margin-top: 0;
}

.mkt-prose h2 {
  font-size: 1.35rem;
}

.mkt-prose h3 {
  font-size: 1.1rem;
}

.mkt-prose p,
.mkt-prose li {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-body-text);
}

.mkt-prose p {
  margin: 0 0 0.85rem;
}

.mkt-prose ul,
.mkt-prose ol {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.mkt-prose dt {
  margin-top: 1rem;
  font-weight: 700;
  color: var(--color-text-title);
}

.mkt-prose dd {
  margin: 0.35rem 0 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--color-body-text);
}

.mkt-toc {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

.mkt-toc a {
  color: var(--color-brand);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
}

.mkt-prose img {
  max-width: 100%;
  height: auto;
  border-radius: 0.75rem;
  margin: 0.5rem 0 1rem;
}

.mkt-prose a {
  color: var(--color-brand);
  font-weight: 600;
  text-decoration: none;
}

.mkt-prose a:hover {
  text-decoration: underline;
}

/* —— Final CTA (shared with existing pages) —— */
.final-cta {
  padding: 0;
}

.final-cta__panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.5rem 1.5rem;
  border-radius: 1.5rem;
  background:
    var(--cta-grid),
    var(--color-brand);
  color: var(--color-white);
  text-align: center;
}

.final-cta__panel .section-badge {
  margin-bottom: 1rem;
}

.final-cta__panel h2 {
  max-width: 668px;
  margin: 0 auto 1rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  line-height: 1.111;
  letter-spacing: -0.06em;
  color: var(--color-white);
}

.final-cta__lead {
  max-width: 732px;
  margin: 0 auto 1.5rem;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.92);
}

.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

@media (max-width: 39.99rem) {
  .final-cta__panel {
    padding: 2rem 1.25rem 1.5rem;
  }

  .final-cta__actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .final-cta__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (min-width: 48rem) {
  .final-cta__panel {
    padding: 3rem 2rem;
  }
}

/* —— Blog index (editorial library) —— */
.blog-index-hero .mkt-hero__copy {
  max-width: 40rem;
}

.blog-index-hero__stage {
  min-height: 100%;
}

.blog-finsights {
  background: var(--mkt-mint-soft);
  border: 1px solid var(--mkt-report-border);
  box-shadow: inset 0 4px 0 #2e6b41;
}

.blog-finsights .section-badge {
  margin-bottom: 0.75rem;
}

.blog-finsights .mkt-panel__title {
  margin-bottom: 0.45rem;
}

.blog-finsights .blog-index__head {
  align-items: flex-start;
}

.blog-finsights .blog-index__head .btn {
  flex-shrink: 0;
  align-self: flex-start;
}

.blog-finsights__list .blog-index__item:last-child {
  border-bottom: 0;
}

/* —— Finsights library —— */
.fi-hero-stats {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
  width: 100%;
}

.fi-hero-stats li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.fi-hero-stats strong {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}

.fi-hero-stats span {
  font-size: 0.85rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.72);
}

.fi-library .section-badge {
  margin-bottom: 0.75rem;
}

.fi-grid {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
}

@media (min-width: 48rem) {
  .fi-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fi-card--featured {
    grid-column: 1 / -1;
  }
}

@media (min-width: 72rem) {
  .fi-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .fi-card--featured {
    grid-column: 1 / 3;
  }
}

.fi-card {
  animation: blog-index-in 0.45s ease both;
}

.fi-card[hidden] {
  display: none;
}

.fi-card__link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  height: 100%;
  padding: 1.25rem 1.2rem 1.15rem;
  border: 1px solid var(--mkt-report-border);
  border-radius: var(--mkt-card-radius);
  background: #fff;
  box-shadow: inset 0 4px 0 #2e6b41, 0 8px 24px rgba(0, 0, 0, 0.04);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.fi-card__link:hover,
.fi-card__link:focus-visible {
  border-color: #b7d4c4;
  box-shadow: inset 0 4px 0 #2e6b41, 0 12px 28px rgba(15, 28, 18, 0.08);
  transform: translateY(-1px);
}

.fi-card--featured .fi-card__link {
  min-height: 100%;
  padding: 1.5rem 1.4rem 1.35rem;
  background: var(--mkt-mint-soft);
}

.fi-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--mkt-report-ink);
}

.fi-card--featured .fi-card__title {
  font-size: clamp(1.25rem, 2vw, 1.6rem);
}

.fi-card__excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--color-body-text);
}

.fi-card--featured .fi-card__excerpt {
  -webkit-line-clamp: 4;
  max-width: 42rem;
}

.fi-card__go {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 0.35rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-brand);
}

.fi-card__go .btn__icon {
  width: 12px;
  height: 10px;
}

.mkt-pill--growth {
  background: #e8f3ec;
  color: #1f6b45;
}

@media (prefers-reduced-motion: reduce) {
  .fi-card {
    animation: none;
  }

  .fi-card__link {
    transition: none;
  }

  .fi-card__link:hover,
  .fi-card__link:focus-visible {
    transform: none;
  }
}

.blog-index__head {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 48rem) {
  .blog-index__head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
  }
}

.blog-index__lead {
  margin-bottom: 0;
}

.blog-index__search {
  display: block;
  width: 100%;
  max-width: 22rem;
  flex-shrink: 0;
}

.blog-index__search--wide {
  max-width: none;
  margin: 0 0 1.15rem;
}

.blog-index__search input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(11, 61, 46, 0.14);
  border-radius: 0.85rem;
  background: #f6faf7;
  color: var(--color-text-title);
  font: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.blog-index__search--wide input {
  padding: 1rem 1.15rem;
  font-size: 1rem;
}

.blog-index__search input::placeholder {
  color: rgba(36, 52, 46, 0.55);
}

.blog-index__search input:focus {
  outline: none;
  border-color: rgba(5, 122, 68, 0.45);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(5, 122, 68, 0.12);
}

.blog-index__topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0 0 0.85rem;
}

.blog-index__az {
  margin: 0 0 1.5rem;
}

.blog-index__az-toggle {
  min-height: 2.1rem;
  padding: 0 0.85rem;
  border: 1px solid rgba(11, 61, 46, 0.14);
  border-radius: 0.55rem;
  background: #fff;
  color: var(--color-body-text);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.blog-index__az-toggle:hover,
.blog-index__az-toggle.is-active {
  background: rgba(5, 122, 68, 0.08);
  border-color: rgba(5, 122, 68, 0.28);
  color: var(--color-brand);
}

.blog-index__letters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.75rem 0 0;
  padding: 0.85rem 0 0;
  border-top: 1px solid rgba(11, 61, 46, 0.08);
}

.blog-index__letters[hidden] {
  display: none !important;
}

.blog-index__date {
  display: block;
  margin: 0.15rem 0 0;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(36, 52, 46, 0.62);
}

.blog-post__date {
  margin: -0.35rem 0 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(36, 52, 46, 0.62);
}

.blog-index__letter {
  min-width: 2.1rem;
  height: 2.1rem;
  padding: 0 0.55rem;
  border: 0;
  border-radius: 0.55rem;
  background: transparent;
  color: var(--color-body-text);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.blog-index__letter:hover {
  background: rgba(5, 122, 68, 0.08);
  color: var(--color-brand);
}

.blog-index__letter.is-active {
  background: #2e6b41;
  color: #fff;
}

.mkt-peers {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
  padding: 0.85rem 1.1rem;
  margin: 0 0 1.35rem;
  border-radius: 14px;
  background: #f3f6f3;
}

.mkt-peers__label {
  margin: 0;
  font-size: 13px;
  color: #586960;
}

.mkt-peers__value {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: #fff;
  color: #406b47;
  font-size: 13px;
  font-weight: 700;
}

.mkt-contact-list li {
  padding: 0.85rem 1.1rem;
  border: 1px solid #e0e7e2;
  border-radius: 14px;
  background: var(--mkt-mint-soft);
}

.blog-index__letter:focus-visible {
  outline: 2px solid var(--color-brand);
  outline-offset: 2px;
}

.blog-index__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.blog-index__item {
  border-top: 1px solid rgba(11, 61, 46, 0.08);
  animation: blog-index-in 0.45s ease both;
  animation-delay: calc(min(var(--i, 0), 24) * 18ms);
}

.blog-index__item:last-child {
  border-bottom: 1px solid rgba(11, 61, 46, 0.08);
}

.blog-index__item[hidden] {
  display: none;
}

.blog-index__link {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.15rem 0.35rem;
  color: inherit;
  text-decoration: none;
  transition: background 0.2s ease, padding-left 0.2s ease;
}

.blog-index__link:hover,
.blog-index__link:focus-visible {
  background: linear-gradient(90deg, rgba(5, 122, 68, 0.06), transparent 70%);
  padding-left: 0.65rem;
  outline: none;
}

.blog-index__copy {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}

.blog-index__title {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  font-weight: 650;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--color-text-title);
}

.blog-index__link:hover .blog-index__title,
.blog-index__link:focus-visible .blog-index__title {
  color: var(--color-brand);
}

.blog-index__excerpt {
  max-width: 46rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--color-body-text);
}

.blog-index__go {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  background: rgba(5, 122, 68, 0.08);
  color: var(--color-brand);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.blog-index__link:hover .blog-index__go,
.blog-index__link:focus-visible .blog-index__go {
  transform: translateX(3px);
  background: var(--color-brand);
  color: #fff;
}

.blog-index__empty {
  margin: 1.5rem 0 0;
  padding: 1.25rem 0;
  color: var(--color-body-text);
  font-size: 0.95rem;
}

@keyframes blog-index-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .blog-index__item {
    animation: none;
  }

  .blog-index__link,
  .blog-index__go,
  .blog-index__letter,
  .blog-index__search input {
    transition: none;
  }
}

/* —— Resource groups —— */
.mkt-resource-groups {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mkt-resource-groups__title {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-brand);
}

.mkt-resource-groups__lead {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  color: var(--color-body-text);
}

/* —— How-it-works phases —— */
.mkt-phases {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 56rem) {
  .mkt-phases {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.mkt-phase {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.25rem 1.15rem;
  border-radius: var(--mkt-card-radius);
  background: #fff;
  border: 1px solid var(--mkt-report-border);
  box-shadow: inset 0 4px 0 #2e6b41, 0 8px 24px rgba(0, 0, 0, 0.04);
}

.mkt-phase__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--mkt-mint);
  color: #2e6b41;
  font-size: 12px;
  font-weight: 700;
}

.mkt-phase__title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-text-title);
}

.mkt-phase__text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--color-body-text);
}

.mkt-phase__list {
  margin: 0;
  padding: 0 0 0 1.1rem;
  color: var(--color-body-text);
  font-size: 0.9rem;
  line-height: 1.45;
}

.mkt-phase__list li + li {
  margin-top: 0.35rem;
}

/* —— Sample checklist —— */
.mkt-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mkt-checklist {
  display: grid;
  gap: 0.85rem;
}

.mkt-checklist__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem 1rem;
  align-items: start;
  padding: 1.15rem 1.2rem;
  border: 1px solid var(--mkt-report-border);
  border-radius: var(--mkt-card-radius);
  background: #fff;
}

.mkt-checklist__mark {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-top: 0.1rem;
  border-radius: 999px;
  background: var(--mkt-mint);
  color: #2e6b41;
  font-size: 12px;
  font-weight: 700;
}

.mkt-checklist__name {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  color: var(--color-text-title);
}

.mkt-checklist__text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--color-body-text);
}

/* —— Glossary term rows —— */
.mkt-glossary__term[hidden],
.mkt-glossary-section[hidden],
.mkt-faq__item[hidden] {
  display: none !important;
}

.mkt-glossary__term {
  display: grid;
  gap: 0.25rem;
  padding: 0.95rem 1.1rem;
  border: 1px solid var(--mkt-report-border);
  border-radius: 14px;
  background: var(--mkt-mint-soft);
  margin-top: 0.65rem;
}

.mkt-glossary__term:last-child {
  border-bottom: 1px solid rgba(11, 61, 46, 0.08);
}

.mkt-glossary-section > h2 {
  margin-top: 1.75rem;
}

.mkt-glossary-section:first-of-type > h2 {
  margin-top: 0.5rem;
}

.mkt-glossary-section dl {
  margin: 0;
}

.mkt-faq__toolbar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 48rem) {
  .mkt-faq__toolbar {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.mkt-link-row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.mkt-link-row {
  gap: 0.65rem;
}

.mkt-link-row a {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
  padding: 1rem 1.15rem;
  border: 1px solid #e0e7e2;
  border-radius: 14px;
  background: var(--mkt-mint-soft);
  color: var(--color-text-title);
  text-decoration: none;
  font-weight: 650;
}

.mkt-link-row a:hover {
  border-color: #2e6b41;
  color: #2e6b41;
  background: #f2f8f2;
}

.mkt-link-row__meta {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-body-text);
}

/* Products page — unified platform overview */

body.products-page #main {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
  padding-inline: var(--container-pad);
}

@media (max-width: 39.99rem) {
  body.products-page {
    overflow-x: clip;
    padding: 12px;
  }

  body.products-page #main,
  body.products-page .container,
  body.products-page .site-header__inner {
    padding-inline: 0;
  }
}

.products-section__panel {
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border-radius: 1.5rem;
  background: #fff;
}

/* Hero */
.products-hero .mkt-hero__copy {
  max-width: none;
}

.products-hero__stage {
  min-height: 100%;
}

.products-hero-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.75rem, 2vw, 1.25rem);
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}

.products-hero-benefit {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
}

.products-hero-benefit__icon {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-shrink: 0;
  width: 28px;
  height: auto;
  background: transparent;
}

.products-hero-benefit__icon svg {
  display: block;
  width: 28px;
  height: 28px;
}

.products-hero-benefit__title {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--color-text-title);
}

.products-hero-benefit__desc {
  margin: 0.2rem 0 0;
  font-size: 12px;
  line-height: 1.45;
  color: var(--color-body-text);
}

.products-hero__trust {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 10px 0 0;
  font-size: 13px;
  color: var(--color-body-text);
}

.products-hero__trust svg {
  flex-shrink: 0;
  color: var(--color-brand);
}

.products-hero-caps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.products-hero-cap {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.products-hero-cap__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.products-hero-cap__name {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

.products-hero-cap__desc {
  margin: 0.25rem 0 0;
  font-size: 0.9rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
}

/* Question cards */
.products-questions {
  padding: 0;
}

.products-questions__head {
  max-width: 46rem;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  text-align: center;
}

.products-questions__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.products-question {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  height: 100%;
  padding: clamp(1rem, 2vw, 1.25rem);
  border-radius: 1rem;
  background: #fafbfa;
  border: 1px solid var(--color-border);
}

.products-question__intro {
  min-height: 4.75rem;
}

.products-question__q {
  margin: 0;
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--color-text-title);
}

.products-question__sub {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-brand);
}

.products-question__shot {
  overflow: hidden;
  aspect-ratio: 2199 / 1017;
  border-radius: 0.75rem;
  border: 1px solid var(--color-border);
  background: #f6f8f7;
}

.products-question__shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.products-question__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-body-text);
}

/* Feature grid */
.products-features {
  padding: 0;
}

.products-features__head {
  max-width: 40rem;
  margin: 0 auto clamp(1.5rem, 3vw, 2rem);
  text-align: center;
}

.products-features__panel {
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  border-radius: 1rem;
  background: #f3f6f4;
  border: none;
}

.products-features__grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.products-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
  padding: 0.35rem 0.5rem;
  background: transparent;
  border: none;
}

.products-feature__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  background: transparent;
}

.products-feature__icon svg {
  display: block;
  width: 64px;
  height: 64px;
}

.products-feature__name {
  margin: 0;
  font-size: clamp(0.9rem, 1.35vw, 0.95rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--color-text-title);
}

.products-feature__desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-body-text);
}

/* Audience cards */
.products-audience {
  padding: 0;
}

.products-audience__head {
  max-width: 36rem;
  margin: 0 auto clamp(2rem, 4vw, 2.5rem);
  text-align: center;
}

.products-audience__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}

.products-audience-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  border-radius: 1rem;
  border: 1px solid transparent;
}

.products-audience-card__head {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.products-audience-card__icon {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-shrink: 0;
  width: auto;
  height: auto;
  background: transparent;
}

.products-audience-card__icon svg {
  display: block;
  width: 36px;
  height: 36px;
}

.products-audience-card h3 {
  margin: 0;
  padding-top: 0.15rem;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  color: #1e3a5f;
}

.products-audience-card--owners {
  background: #edf7f1;
  border-color: #d4ebde;
}

.products-audience-card--advisors {
  background: #eef2fb;
  border-color: #d8e2f6;
}

.products-audience-card--research {
  background: #f0f3f8;
  border-color: #dde4ef;
}

.products-audience-card__list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  line-height: 1.55;
  color: var(--color-body-text);
}

.products-audience-card__list li {
  position: relative;
  padding-left: 1.15rem;
}

.products-audience-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid currentColor;
  background: transparent;
  border-radius: 0;
}

.products-audience-card--owners .products-audience-card__list li::before {
  color: var(--color-brand);
}

.products-audience-card--advisors .products-audience-card__list li::before,
.products-audience-card--research .products-audience-card__list li::before {
  color: #2563eb;
}

.products-audience-card__list li + li {
  margin-top: 0.45rem;
}

.products-audience-card__link {
  margin-top: auto;
  font-size: 14px;
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
}

.products-audience-card__link:hover {
  text-decoration: underline;
}

/* CTA band */
.products-cta-band {
  padding: 0;
}

.products-cta-band__panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  padding: clamp(1.25rem, 2.5vw, 1.75rem) clamp(1.5rem, 3vw, 2rem);
  border-radius: 1.25rem;
  background: #f3f6f4;
  border: none;
}

.products-cta-band__left {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.products-cta-band__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-brand);
  color: #fff;
}

.products-cta-band__title {
  margin: 0;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--color-text-title);
}

.products-cta-band__lead {
  margin: 0.35rem 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-body-text);
}

.products-cta-band__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.65rem;
  flex-shrink: 0;
}

.products-cta-band__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
}

.products-cta-band__note {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  font-size: 12px;
  color: var(--color-body-text);
}

.products-cta-band__note svg {
  flex-shrink: 0;
  color: var(--color-brand);
}

@media (max-width: 63.99rem) {
  .products-hero-benefits {
    grid-template-columns: 1fr;
  }

  .products-questions__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .products-features__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .products-cta-band__panel {
    flex-direction: column;
    align-items: stretch;
  }

  .products-cta-band__actions {
    align-items: stretch;
  }

  .products-cta-band__buttons {
    justify-content: stretch;
  }

  .products-cta-band__buttons .btn {
    flex: 1 1 auto;
  }
}

@media (max-width: 47.99rem) {
  .products-hero-benefits {
    align-self: stretch;
    width: 100%;
  }

  .products-hero-benefit {
    width: 100%;
    text-align: left;
  }

  .products-questions__grid,
  .products-audience__grid {
    grid-template-columns: 1fr;
  }

  .products-features__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .products-cta-band__buttons {
    flex-direction: column;
  }
}
