@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --font-size: 16px;
  --radius: 8px;
  --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --fs-body: var(--font-size);
  --fs-body-sm: calc(var(--font-size) * 0.95);
  --fs-body-md: calc(var(--font-size) * 1.05);
  --fs-brand: calc(var(--font-size) * 1.15);
  --fs-stat: calc(var(--font-size) * 1.8);
  --fs-h1: clamp(calc(var(--font-size) * 2.25), calc(3vw + var(--font-size) * 2), calc(var(--font-size) * 3.5));
  --fs-h2: clamp(calc(var(--font-size) * 1.75), calc(2vw + var(--font-size) * 1.5), calc(var(--font-size) * 2.5));
  --fs-h3: calc(var(--font-size) * 1.5);
  --fs-h4: calc(var(--font-size) * 1.25);
  --fs-h5: calc(var(--font-size) * 1.125);
  --fs-h6: var(--fs-body);
  --fs-hero: clamp(calc(var(--font-size) * 2.5), calc(2vw + var(--font-size) * 2), calc(var(--font-size) * 3.25));

  /* Text colors */
  --text-base: var(--foreground);
  --text-muted: var(--neutral-800);
  --text-inverse: var(--destructive-foreground);
  --text-link: var(--primary);
  --text-link-hover: var(--primary-hover);
  --text-alert: color-mix(in srgb, var(--destructive) 55%, var(--foreground));

  /* Neutrals */
  --neutral-50: #fafaf8;
  --neutral-100: #f5f3f0;
  --neutral-200: #e8e6e3;
  --neutral-300: #d1cec9;
  --neutral-400: #b0aca6;
  --neutral-500: #8b8681;
  --neutral-600: #6b6762;
  --neutral-700: #5a5550;
  --neutral-800: #3a3632;
  --neutral-900: #2a2622;

  /* System tokens */
  --alert: #9E0A15;
  --alert-bg: #f8e2e2;
  --warning: #834500;
  --success: var(--primary-active);
  --background: var(--neutral-50);
  --foreground: var(--neutral-800);
  --button-text: var(--destructive-foreground);
  --card: #ffffff;
  --card-foreground: var(--neutral-800);
  --primary: #53613d;
  --primary-hover: #495734;
  --primary-active: #3f4b2c;
  --primary-light: #e5eadf;
  --secondary: var(--neutral-100);
  --secondary-foreground: var(--neutral-800);
  --muted: var(--neutral-100);
  --muted-foreground: var(--neutral-500);
  --accent: #f5f6f4;
  --accent-foreground: var(--neutral-800);
  --destructive: #c14a4a;
  --destructive-foreground: #ffffff;
  --border: var(--neutral-200);
  --input-background: var(--neutral-50);
  --ring: var(--primary-light);
  --scrollbar-track: var(--muted);
  --scrollbar-thumb: #bcc7b2;
}

.dark {
  --alert: #FF7373;
  --alert-bg: #3b1f1f;
  --warning: #E99942;
  --success: var(--primary-active);
  --background: #101110;
  --foreground: #f5f7f4;
  --button-text: var(--neutral-900);
  --card: #151715;
  --card-foreground: #f5f7f4;
  --primary: #9cad87;
  --primary-hover: #879975;
  --primary-active: #738662;
  --primary-light: #879975;
  --secondary: #1f211f;
  --secondary-foreground: #f5f7f4;
  --muted: #1f211f;
  --muted-foreground: #9da19a;
  --accent: #1f211f;
  --accent-foreground: #f5f7f4;
  --destructive: #c14a4a;
  --destructive-foreground: #f5f7f4;
  --border: #2c2f2c;
  --input-background: #1f211f;
  --ring: rgba(156, 173, 135, 0.25);
  --text-base: var(--foreground);
  --text-muted: var(--muted-foreground);
  --text-inverse: var(--destructive-foreground);
  --text-link: var(--primary);
  --text-link-hover: var(--primary-hover);
  --text-alert: var(--foreground);
  --scrollbar-track: #1f211f;
  --scrollbar-thumb: #5f6d53;
}

html {
  font-size: var(--font-size);
  font-family: var(--font-family);
}

body {
  font-family: var(--font-family);
  background-color: var(--background);
  color: var(--text-base);
  line-height: 1.6;
  min-height: 100vh;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family);
  color: var(--text-base);
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }
h5 { font-size: var(--fs-h5); }
h6 { font-size: var(--fs-h6); }

p,
label,
input,
select,
textarea,
button,
.button {
  font-size: var(--fs-body);
  font-weight: 400;
}

p {
  
}

a {
  color: var(--text-link);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--text-link-hover);
}

a:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

button,
.button {
  background-color: var(--primary);
  border: 1px solid var(--primary);
  color: var(--text-inverse);
  border-radius: 16px;
  padding: 1.1rem 1.75rem;
  cursor: pointer;
  transition: background-color 120ms ease, border-color 120ms ease, box-shadow 120ms ease;
  font-weight: 600;
}

button:active,
.button:active,
button:focus,
.button:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 50%, transparent);
  outline: 1px;
}

.button.small {
  padding: 0.65rem 1.1rem;
  font-size: var(--fs-body-sm);
}

.button.tiny {
  padding: 0.24rem 0.5rem;
}

pill .button.tiny {
    align-self: center;
    display: inline-flex;
    align-items: center;
    line-height: 1.2;
    margin: 0;
}


.button.large {
  padding: 1.2rem 1.85rem;
}

.button.primary {
  background-color: var(--primary-active);
  border-color: var(--primary-active);
  color: var(--button-text);
}

.button.primary a {
  color: var(--button-text);
}

.button.primary:hover {
  color: var(--button-text);
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
}

.button.primary:hover a,
.button.primary:focus a {
  color: var(--button-text);
}

.button.primary:focus {
  color: var(--button-text);
  background-color: var(--primary-active);
  border-color: var(--primary-active);
}

.button:not(.hollow) img {
  filter: brightness(0) invert(1); /* keep icons white on filled buttons */
}

.button.hollow {
  background-color: transparent;
  color: var(--text-link);
  border-color: var(--primary);
}

.button.hollow:hover {
  color: var(--text-link-hover);
  border-color: var(--primary-hover);
}

.close-button {
  padding: 0;
  background-color: var(--background);
  border: 0;
}

.form input {
  border-radius: var(--radius);
  margin: 8px;
  padding: 16px;
  /*padding: 16px 16px 16px 16px;*/
}

.form button {
  margin: 8px;
}

input,
select,
textarea {
  background-color: var(--input-background);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-base);
  padding: 0.75rem 0.9rem;
  width: 100%;
  transition: border-color 120ms ease, box-shadow 120ms ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--ring);
  outline: none;
  border-radius: var(--radius);
}

input::placeholder,
textarea::placeholder {
  color: var(--text-muted);
  border-radius: var(--radius);
}

fieldset {
  border: 1px solid var(--border);
  padding: 1rem 1.25rem;
  border-radius: 8px;
}

legend {
  padding: 0 0.5rem;
  font-weight: 600;
}

.grid-container {
  max-width: 1200px;
}

.section {
  padding: 96px 0;
}

.section.muted {
  background: var(--muted);
}

.hero {
  padding: 90px 0 60px;
}

.title-bar {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  margin: 0;
  background: var(--card);
  border-bottom: 1px solid var(--border);
}

.title-bar .menu-icon {
  margin: 0;
  background-color: var(--background);
}

.top-bar {
  padding: 0 4rem 0 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}

.top-bar button {
  margin-top: 1rem; 
}

.top-bar,
.top-bar ul {
  background: var(--card);
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
}

.site-nav__brand {
  display: flex;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-base);
  font-weight: 600;
  font-size: var(--fs-brand);
}

.brand__mark {
  width: 16px;
  height: 16px;
  background: var(--primary);
  border-radius: 4px;
  display: inline-block;
}

.brand__name {
  color: var(--primary);
}

.site-nav__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-nav__menu a {
  --nav-link-pad-x: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.7rem var(--nav-link-pad-x);
  color: var(--text-base);
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 500;
  transition: background-color 120ms ease, border-color 120ms ease, color 120ms ease;
  position: relative;
}

.site-nav__menu a:hover,
.site-nav__menu a:focus {
  background: var(--muted);
  border-color: var(--border);
  color: var(--primary-active);
}

.site-nav__menu a.is-active {
  background: transparent;
  border-color: transparent;
  color: var(--primary-active);
}

.site-nav__menu a.is-active::after {
  content: '';
  position: absolute;
  left: var(--nav-link-pad-x);
  right: var(--nav-link-pad-x);
  bottom: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--primary-active);
}

.nav-actions {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
}

.pricing-page__hero {
  background: var(--card);
  border-bottom: 1px solid var(--border);
}

.pricing-page__hero-copy {
  max-width: 48rem;
  margin: 0 auto;
}

.pricing-page__hero h1 {
  font-size: clamp(2.75rem, 4vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.pricing-page__lead {
  max-width: 48rem;
  margin: 0 auto;
  font-size: 1.125rem;
  line-height: 1.625;
}

.pricing-page__offers {
  background: var(--muted);
}

.pricing-grid {
  margin-top: 0;
}

.pricing-grid .cell {
  display: flex;
}

.pricing-card {
  position: relative;
  width: 100%;
  min-height: 32rem;
  padding: 1.625rem;
  border: 2px solid var(--border);
  border-radius: 1.5rem;
  box-shadow: none;
}

.pricing-card--featured {
  background: var(--primary-active);
}

.pricing-badge {
  position: absolute;
  top: -0.875rem;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 8.75rem;
  padding: 0.35rem 1rem;
  background: var(--primary);
  color: var(--button-text);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pricing-card__content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-card__title {
  margin-bottom: 0.25rem;
  font-size: 1.5rem;
  line-height: 1.333;
}

.pricing-card__price {
  margin-bottom: 0.5rem;
  color: var(--text-base);
  font-size: 2.25rem;
  line-height: 1.111;
  font-weight: 600;
}

.pricing-card__description {
  margin-bottom: 1.5rem;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.625;
}

.pricing-card__meta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.4;
}

.pricing-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.875rem;
}

.pricing-features li {
  display: grid;
  grid-template-columns: 1rem 1fr;
  gap: 0.5rem;
  align-items: start;
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.625;
}

.pricing-features img {
  margin-top: 0.2rem;
}

.pricing-card__actions {
  margin-top: auto;
  padding-top: 2rem;
}

.pricing-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 3rem;
  padding: 0.75rem 1.5rem;
}

.pricing-custom {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pricing-custom__card {
  max-width: 56.25rem;
  margin: 0 auto;
  padding: 2rem;
  border-width: 2px;
  border-radius: 1.5rem;
  box-shadow: none;
}

.pricing-custom__card h2 {
  margin-bottom: 1.5rem;
}

.pricing-custom__card p {
  max-width: 42rem;
  margin: 0 auto 2rem;
  font-size: 1.125rem;
  line-height: 1.625;
}


/**** Media Query +**/ 

@media (max-width: 639px) {
  .site-nav {
    padding: 12px 0;
  }

  .grid-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .title-bar {
    display: flex;
    position: relative;
    z-index: 22;
    padding: 0 2rem 0 2rem;
  }

  .title-bar button {
    margin-top: 1rem;
  }

  .top-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 2rem 0.75rem 2rem;
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 18px 30px rgba(42, 38, 34, 0.12);
    position: relative;
    z-index: 21;
  }

  .site-nav__links {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }

  .site-nav__menu {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.1rem;
    background: var(--card);
    padding: 0.25rem 0.5rem 0.5rem;
  }

  .site-nav__menu a {
    width: 100%;
    padding: 0.65rem 0;
  }

  .site-nav__menu a.is-active::after {
    left: 0;
    right: 0;
  }

  .site-nav__brand {
    display: none;
  }

  .nav-actions {
    width: 100%;
    justify-content: flex-start;
    align-items: stretch;
    flex-direction: column;
    gap: 0.65rem;
  }

  .nav-actions .button {
    width: 100%;
    justify-content: center;
  }

  .pricing-page__hero h1 {
    font-size: 2.5rem;
  }

  .pricing-page__lead {
    font-size: 1rem;
  }

  .pricing-card {
    min-height: auto;
    padding: 1.5rem;
  }

  .pricing-card__actions {
    padding-top: 1.5rem;
  }

  .pricing-custom__card {
    padding: 1.5rem;
  }

  .pricing-custom__card p {
    font-size: 1rem;
  }
}

.hero__copy h1 {
  font-size: var(--fs-hero);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero__copy p {
  font-size: var(--fs-body-md);
  color: var(--text-muted);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.9rem;
  background: var(--accent);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-base);
  margin-bottom: 1rem;
  font-size: var(--fs-body-sm);
}

.pill .button.tiny {
  align-self: center;
  display: inline-flex;
  align-items: center;
  line-height: 1.2;
  margin: 0;
}

.hero__actions {
  margin: 1.5rem 0 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__hint {
  color: var(--text-muted);
  margin: 0;
}

.hero__stats {
  margin-top: 2rem;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}

.stat {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

.stat:not(:last-child) {
  border-right: 1px solid var(--border);
}

.hero__image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__image img {
  width: 100%;
  max-width: 540px;
  height: auto;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: 0 16px 32px rgba(42, 38, 34, 0.12);
}

.stat__number {
  font-size: var(--fs-stat);
  font-weight: 600;
  color: var(--text-base);
}

.stat__label {
  color: var(--text-muted);
  font-size: var(--fs-body-sm);
}

.eyebrow {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.steps {
  margin-top: 2rem;
}

.step-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  min-height: 170px;
  box-shadow: 0 18px 30px rgba(58, 54, 50, 0.06);
}

.step-card__badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--muted);
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
  font-weight: 600;
  color: var(--primary);
  border: 1px solid var(--border);
}

.step-card h3 {
  margin-bottom: 0.5rem;
}

.info-card,
.report-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  height: 100%;
  box-shadow: 0 20px 35px rgba(58, 54, 50, 0.06);
  text-align: left;
}

.info-card__icon,
.report-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--muted);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}

.info-card p,
.report-card p {
  /*margin: 0;*/
  color: var(--text-muted);
}

.checklists {
  margin-top: 1.5rem;
  gap: 1rem;
}

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

.checklist li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-base);
}

.brand-strip {
  background: var(--accent);
  padding: 18px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.brand-strip__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
}

.faq h2 {
  margin-bottom: 1.5rem;
}

.reveal {
  background-color: var(--background);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid;
  border-color: var(--border);
}

.accordion {
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(58, 54, 50, 0.12);
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--card);
}

.accordion-title {
  padding: 1.25rem 1.5rem;
  color: var(--text-base);
  font-weight: 600;
  font-size: var(--fs-body);
}

.dark .accordion-content:last-child {
  border-bottom: 1px solid var(--border);
}

.dark .accordion-title {
 border: 1px solid var(--border);
}

.dark .accordion-content {
  border: 1px solid var(--border);
}

.accordion-title:hover,
.accordion-title:focus {
  background: var(--accent);
}

.accordion-item {
  border-top: 1px solid var(--border);
}

.accordion-item:first-child {
  border-top: none;
}

.accordion-content {
  padding: 1rem 1.5rem 1.25rem;
  color: var(--text-base);
  font-size: var(--fs-body);
}

.dark .accordion-content {
  padding: 1rem 1.5rem 1.25rem;
  color: var(--text-base);
  background-color: var(--background);
  font-size: var(--fs-body);
}


.dark .accordion {
  border-color: var(--neutral-900);
}

.dark .accordion-item {
  border-top-color: var(--neutral-900);
}

.dark .accordion-title:hover,
.dark .accordion-title:focus {
  background: var(--secondary);
}

.callout {
  background-color: var(--card);
  border: 1px solid var(--border);
  color: var(--text-base);
  border-radius: 12px;
  padding: 1rem 1.25rem;
}

.callout.primary {
  background-color: var(--primary-light);
  border-color: var(--primary);
}

.callout.secondary {
  background-color: var(--muted);
  border-color: var(--border);
}

.callout.alert {
  background-color: var(--alert-bg);
  border-color: var(--destructive);
  color: var(--text-alert);
}

.scan-summary {
  margin-top: 1.5rem;
  padding: 1.5625rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.scan-summary__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.scan-summary__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 6.625rem;
  padding: 1rem;
  background: var(--background);
  border: 1px solid color-mix(in srgb, var(--success) 18%, var(--border));
  border-radius: 0.75rem;
  text-align: center;
}

.scan-summary__value {
  margin: 0;
  color: var(--text-base);
  font-size: 3rem;
  line-height: 1;
  font-weight: 700;
}

.scan-summary__label {
  margin: 0;
  color: var(--muted-foreground);
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.scan-summary__card--alert .scan-summary__value,
.scan-summary__card--alert .scan-summary__label {
  color: var(--alert);
}

.scan-summary__card--warning .scan-summary__value,
.scan-summary__card--warning .scan-summary__label {
  color: var(--warning);
}

.scan-summary__card--success .scan-summary__value,
.scan-summary__card--success .scan-summary__label {
  color: var(--success);
}

@media (max-width: 639px) {
  .scan-summary {
    padding: 1rem;
  }

  .scan-summary__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .scan-summary__card {
    min-height: 5.75rem;
  }

  .scan-summary__value {
    font-size: 2.5rem;
  }

  .scan-summary__label {
    font-size: 0.95rem;
  }
}

.page-hero {
  padding: 90px 0 32px;
}

.page-hero__copy {
  max-width: 760px;
}

.page-hero__copy h1 {
  font-size: var(--fs-hero);
  line-height: 1.05;
  margin-bottom: 1rem;
}

.page-hero__copy p {
  font-size: var(--fs-body-md);
  margin-bottom: 0;
}

.kpi-strip {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.kpi-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.25rem 1.4rem;
  box-shadow: 0 16px 28px rgba(58, 54, 50, 0.06);
}

.kpi-card__value {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  color: var(--text-base);
  line-height: 1;
}

.kpi-card__label {
  margin-top: 0.5rem;
  color: var(--text-muted);
}

.pricing-grid {
  margin-top: 2rem;
}

.pricing-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 22px 38px rgba(58, 54, 50, 0.08);
}

.pricing-card--featured {
  background: var(--card);
  border-color: var(--primary);
  box-shadow: 0 30px 50px rgba(83, 97, 61, 0.16);
}

.pricing-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.pricing-card__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--accent);
  color: var(--text-base);
  font-size: var(--fs-body-sm);
  font-weight: 600;
}

.pricing-card__summary {
  min-height: 3.2rem;
}

.pricing-card__price {
  display: flex;
  align-items: flex-end;
  gap: 0.35rem;
  margin: 1rem 0 0.5rem;
}

.pricing-card__amount {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 0.95;
  font-weight: 600;
  color: var(--text-base);
}

.pricing-card__unit {
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 0.45rem;
}

.pricing-card__meta {
  margin-bottom: 1.25rem;
  color: var(--text-muted);
}

.pricing-card .button {
  width: 100%;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.pricing-card .button a {
  width: 100%;
  color: var(--text-inverse);
}

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

.pricing-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: var(--text-base);
}

.pricing-list img {
  margin-top: 0.25rem;
}

.pricing-card__footnote {
  margin-top: auto;
  padding-top: 1.25rem;
  color: var(--text-muted);
  font-size: var(--fs-body-sm);
}

.feature-band {
  background: linear-gradient(135deg, var(--accent) 0%, var(--muted) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-lead {
  max-width: 680px;
  margin: 0 auto;
}

.comparison-wrap {
  margin-top: 2rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: auto;
  box-shadow: 0 18px 34px rgba(58, 54, 50, 0.08);
}

.comparison-table {
  min-width: 760px;
  margin-bottom: 0;
}

.comparison-table th,
.comparison-table td {
  vertical-align: middle;
}

.comparison-table tbody td:not(:first-child),
.comparison-table thead th:not(:first-child) {
  text-align: center;
}

.comparison-table__feature {
  min-width: 240px;
  font-weight: 600;
}

.comparison-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--primary-light);
  border: 1px solid color-mix(in srgb, var(--primary) 35%, white);
}

.comparison-check img {
  width: 16px;
  height: 16px;
}

.comparison-empty {
  color: var(--text-muted);
  font-weight: 600;
}

.roi-panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 40px rgba(58, 54, 50, 0.08);
}

.roi-panel__copy,
.roi-panel__stats {
  padding: 2rem;
}

.roi-panel__stats {
  background: color-mix(in srgb, var(--primary-light) 52%, white);
  height: 100%;
}

.roi-stat {
  padding: 1rem 0;
  border-top: 1px solid color-mix(in srgb, var(--border) 70%, white);
}

.roi-stat:first-child {
  padding-top: 0;
  border-top: none;
}

.roi-stat__value {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1;
  font-weight: 600;
  color: var(--primary-active);
}

.roi-stat__label {
  margin-top: 0.45rem;
  color: var(--text-muted);
}

.pricing-cta {
  padding-top: 0;
}

@media (max-width: 900px) {
  .kpi-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 639px) {
  .page-hero {
    padding: 72px 0 24px;
  }

  .pricing-card {
    padding: 1.5rem;
    border-radius: 20px;
  }

  .roi-panel__copy,
  .roi-panel__stats {
    padding: 1.5rem;
  }
}

.card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 6px 22px rgba(58, 54, 50, 0.08);
}

.table {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.table thead {
  background-color: var(--muted);
}

.table thead th {
  color: var(--text-base);
  font-weight: 600;
}

.table th,
.table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
}

.table tbody tr:nth-child(even) {
  background-color: var(--accent);
}

.table tbody tr:hover {
  background-color: var(--muted);
}

hr {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 1.5rem 0;
}

code,
pre {
  font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
  background-color: var(--muted);
  color: var(--text-base);
  border-radius: 6px;
}

pre {
  padding: 1rem;
  overflow: auto;
}

.report-cards {
  margin-top: 2.5rem;
}

.cta {
  padding-top: 80px;
  padding-bottom: 80px;
}

.cta__actions {
  margin: 1rem 0;
}

.site-footer {
  padding: 32px 0 40px;
  border-top: 1px solid var(--border);
  background: var(--card);
}

.site-footer .footer-links {
  display: inline-flex;
  gap: 1.5rem;
  color: var(--text-muted);
}

.site-footer a {
  color: var(--text-muted);
}

.icon-14 { width: 14px; height: 14px; }
.icon-16 { width: 16px; height: 16px; }
.icon-20 { width: 20px; height: 20px; }

/* Dark tweaks */
.dark .callout.alert {
  color: var(--text-alert);
}

.dark a {
  color: var(--primary);
}

.dark a:hover,
.dark a:focus {
  color: var(--primary-hover);
}

.dark .theme-toggle-icon,
.dark img.icon-14,
.dark img.icon-16,
.dark img.icon-20,
.dark .accordion-title::before {
  filter: brightness(0) invert(1);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: var(--scrollbar-track);
}

::-webkit-scrollbar-thumb {
  background: var(--scrollbar-thumb);
  border-radius: 6px;
  border: 2px solid var(--scrollbar-track);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

::-webkit-scrollbar-thumb:active {
  background: var(--primary-hover);
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
}
