:root {
  --bg: #f3f5f8;
  --surface: #ffffff;
  --surface-muted: #ecf8ef;
  --text: #18212f;
  --text-soft: #4f5d73;
  --primary: #1f9b43;
  --primary-dark: #147531;
  --accent: #ff8f1f;
  --border: #dbe3ea;
  --radius: 18px;
  --shadow: 0 12px 28px rgba(24, 33, 47, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 72px;
}

@media (min-width: 768px) {
  section[id] {
    scroll-margin-top: 84px;
  }
}

@media (min-width: 1024px) {
  section[id] {
    scroll-margin-top: 90px;
  }
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.site-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.65rem 0;
  position: relative;
  z-index: 2;
}

.site-header__nav-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  min-width: 0;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.site-logo img {
  width: 120px;
  height: auto;
}

.site-nav__toggle {
  position: relative;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  flex-shrink: 0;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.site-nav__toggle:hover {
  background: #f4f7fb;
  border-color: #cfd8e3;
}

.site-nav__toggle:focus-visible {
  outline: 3px solid #d2eaf9;
  outline-offset: 2px;
}

.site-nav__toggle-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 1.25rem;
}

.site-nav__toggle-bar {
  display: block;
  height: 2px;
  border-radius: 1px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transform-origin: center;
}

.site-header.is-nav-open .site-nav__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-nav-open .site-nav__toggle-bar:nth-child(2) {
  opacity: 0;
}

.site-header.is-nav-open .site-nav__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav__backdrop {
  position: fixed;
  inset: 0;
  z-index: 1;
  background: rgba(24, 33, 47, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.site-header.is-nav-open .site-nav__backdrop {
  opacity: 1;
  visibility: visible;
}

.site-nav {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: 0.25rem;
  position: fixed;
  z-index: 2;
  top: 0;
  right: 0;
  width: min(20rem, 88vw);
  height: 100vh;
  height: 100dvh;
  margin: 0;
  padding: calc(4.25rem + env(safe-area-inset-top, 0px)) 1rem 1.5rem;
  padding-bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
  background: var(--surface);
  border-left: 1px solid var(--border);
  box-shadow: -12px 0 32px rgba(24, 33, 47, 0.12);
  overflow-y: auto;
  overscroll-behavior: contain;
  transform: translateX(100%);
  transition: transform 0.28s ease;
}

.site-header.is-nav-open .site-nav {
  transform: translateX(0);
}

.site-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  line-height: 1.3;
}

.site-nav a:hover {
  background: #eef3f8;
}

.site-nav a:focus-visible {
  outline: 3px solid #d2eaf9;
  outline-offset: 2px;
}

body.is-mobile-nav-open {
  overflow: hidden;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .site-nav {
    width: min(22rem, 82vw);
    padding-top: calc(4.65rem + env(safe-area-inset-top, 0px));
  }

  .site-nav__toggle {
    width: 3rem;
    height: 3rem;
    border-radius: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-nav,
  .site-nav__backdrop,
  .site-nav__toggle-bar {
    transition: none;
  }
}

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

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 3.5rem 0;
}

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

h1,
h2,
h3 {
  margin: 0 0 1rem;
  line-height: 1.2;
}

h1 {
  font-size: clamp(1.9rem, 5vw, 3.2rem);
}

h2 {
  font-size: clamp(1.5rem, 3.8vw, 2.25rem);
  text-wrap: balance;
}

h3 {
  font-size: 1.2rem;
}

p {
  margin: 0;
  color: var(--text-soft);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: #dff5e5;
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.85rem;
}

.hero__grid,
.cta__grid {
  display: grid;
  gap: 1.75rem;
}

.hero__media,
.cta__media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 320px;
}

.hero__media img,
.cta__media img {
  height: 100%;
  object-fit: cover;
}

.hero__list {
  margin: 0 0 1.2rem;
  padding-left: 1.1rem;
}

.hero__list li {
  margin-bottom: 0.35rem;
}

.hero__text {
  margin-bottom: 1.3rem;
  max-width: 50ch;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  padding: 0.85rem 1.25rem;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.button:hover {
  background: #f47d06;
  transform: translateY(-1px);
}

.button:focus-visible {
  outline: 3px solid #ffd3a3;
  outline-offset: 2px;
}

.cards {
  display: grid;
  gap: 1rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.card__icon {
  font-size: 1.35rem;
  color: var(--primary);
}

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

.card--price {
  display: flex;
  flex-direction: column;
}

.price {
  margin-top: auto;
  padding-top: 0.8rem;
  color: var(--primary-dark);
  font-size: 1.3rem;
  font-weight: 800;
}

.section--reports {
  position: relative;
  overflow-x: hidden;
}

.section--reports::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto;
  height: 70%;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 55% 45% at 12% 18%,
      rgba(31, 155, 67, 0.12),
      transparent 55%
    ),
    radial-gradient(
      ellipse 50% 40% at 88% 8%,
      rgba(255, 143, 31, 0.08),
      transparent 50%
    );
}

.section--reports .container {
  position: relative;
  z-index: 1;
}

.reports__header {
  margin-bottom: 1.75rem;
  max-width: 40rem;
}

.reports__lead {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.5;
  color: var(--text-soft);
}

.reports__grid {
  display: grid;
  gap: 1.15rem;
}

.report-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.35rem 1.35rem 1.2rem;
  border-radius: calc(var(--radius) + 2px);
  background: var(--surface);
  border: 1px solid rgba(219, 227, 234, 0.95);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 14px 36px rgba(24, 33, 47, 0.07);
  overflow: hidden;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.report-card:hover {
  transform: translateY(-4px);
  border-color: #c8d8e8;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 20px 44px rgba(24, 33, 47, 0.1);
}

.report-card__accent {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary) 0%,
    #4bc76f 48%,
    #7fd99a 100%
  );
}

.report-card--featured .report-card__accent {
  background: linear-gradient(
    90deg,
    #e85d00 0%,
    var(--accent) 45%,
    #ffc266 100%
  );
}

.report-card__badge {
  position: absolute;
  top: 0.95rem;
  right: 0.95rem;
  margin: 0;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #8a4200;
  background: linear-gradient(180deg, #fff4e8 0%, #ffe4cc 100%);
  border: 1px solid rgba(255, 143, 31, 0.35);
  box-shadow: 0 1px 2px rgba(255, 143, 31, 0.12);
}

.report-card--featured {
  padding-top: 1.5rem;
}

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

.report-card__icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 14px;
  background: linear-gradient(145deg, #e8f8ed 0%, #dff5e5 100%);
  border: 1px solid rgba(31, 155, 67, 0.18);
  color: var(--primary-dark);
}

.report-card__icon-wrap--accent {
  background: linear-gradient(145deg, #fff6eb 0%, #ffe8cc 100%);
  border-color: rgba(255, 143, 31, 0.35);
  color: #b45309;
}

.report-card__icon {
  font-size: 1.35rem;
  line-height: 1;
}

.report-card__tag {
  flex-shrink: 0;
  padding: 0.32rem 0.7rem;
  border-radius: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-soft);
  background: #eef2f7;
  border: 1px solid #e2e8f0;
}

.report-card__tag--accent {
  color: #9a3412;
  background: #fff7ed;
  border-color: rgba(255, 143, 31, 0.28);
}

.report-card__title {
  margin: 0 0 0.55rem;
  font-size: 1.22rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}

.report-card__text {
  margin: 0;
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-soft);
}

.report-card__footer {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-top: 1.25rem;
  padding-top: 1.05rem;
  border-top: 1px dashed var(--border);
}

.report-card__price-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-soft);
}

.report-card__price {
  margin: 0;
  font-size: 1.42rem;
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: -0.02em;
}

.report-card--featured .report-card__price {
  font-size: 1.52rem;
}

@media (max-width: 374px) {
  .report-card--featured .report-card__top {
    flex-wrap: wrap;
    padding-right: 0;
  }

  .report-card__badge {
    position: static;
    align-self: flex-start;
    margin-bottom: 0.35rem;
  }

  .report-card--featured {
    padding-top: 1.35rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .reports__grid .report-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 36rem;
    width: 100%;
    justify-self: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .report-card,
  .report-card--featured:hover {
    transition: none;
  }

  .report-card:hover,
  .report-card--featured,
  .report-card--featured:hover {
    transform: none;
  }
}

.insights {
  display: grid;
  gap: 1.25rem;
}

.insights__list {
  margin: 0;
  padding-left: 1.2rem;
}

.insights__list li {
  margin-bottom: 0.55rem;
}

.insights__extra {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
}

.chip {
  display: inline-block;
  margin: 0 0.45rem 0.55rem 0;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: #dff5e5;
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 0.9rem;
}

.note {
  margin-top: 0.4rem;
  font-weight: 600;
}

.table-wrap--insights {
  border-radius: 0;
}

.insights__cta {
  margin-top: 1.5rem;
}

.insights-table {
  min-width: 760px;
}

.insights-table th,
.insights-table td {
  border: 1px solid #d6d6d6;
  background: #fff;
}

.insights-table thead th {
  text-align: center;
  color: var(--text);
  background: #f8f8f8;
}

.insights-table thead th:first-child {
  width: 46%;
  background: #f8f8f8;
}

.insights-table tbody th {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0f1720;
  line-height: 1.15;
}

.insights-table__price {
  display: block;
  margin-top: 0.35rem;
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1;
}

.insights-table td {
  text-align: center;
  vertical-align: middle;
}

.insights-table__check {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid #9b9b9b;
  border-radius: 4px;
  background: #8e8e8e;
}

.insights-table__check::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 0;
  width: 5px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}

.insights-table__check--off {
  background: #fff;
}

.insights-table__check--off::after {
  content: none;
}

.section__text {
  max-width: 70ch;
  margin-bottom: 1rem;
}

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

th,
td {
  text-align: left;
  padding: 0.95rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

th {
  background: #f6faf7;
  color: var(--primary-dark);
}

.cta ul {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
}

.cta li {
  margin-bottom: 0.45rem;
}

.cta p {
  margin-bottom: 1.15rem;
}

.faq__list {
  display: grid;
  gap: 0.8rem;
}

.faq__item {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: var(--surface);
}

.faq__question {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  color: var(--text);
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem;
  cursor: pointer;
}

.faq__question:hover {
  background: #f7fafc;
}

.faq__question:focus-visible {
  outline: 3px solid #d2eaf9;
  outline-offset: -3px;
}

.faq__answer {
  margin: 0;
  max-height: 0;
  overflow: hidden;
  padding: 0 1rem;
  transition: max-height 0.25s ease, padding 0.25s ease;
}

.faq__item.is-open .faq__answer {
  max-height: 220px;
  padding: 0 1rem 1rem;
}

@media (min-width: 768px) {
  .site-header__row {
    padding: 0.8rem 0;
  }

  .site-logo img {
    width: 170px;
  }

  .site-nav {
    gap: 0.45rem;
  }

  .site-nav a {
    font-size: 0.95rem;
  }

  .section {
    padding: 4.5rem 0;
  }

  .hero__grid,
  .cta__grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
  }

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

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

  .reports__header {
    margin-bottom: 2rem;
  }

  .insights {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

@media (min-width: 1024px) {
  .site-nav__toggle {
    display: none;
  }

  .site-nav__backdrop {
    display: none !important;
  }

  .site-nav {
    position: static;
    width: auto;
    max-width: none;
    height: auto;
    min-height: 0;
    margin: 0;
    padding: 0;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 0.35rem;
    background: transparent;
    border: 0;
    box-shadow: none;
    overflow: visible;
    transform: none !important;
    transition: none;
  }

  .site-nav a {
    width: auto;
    font-size: 0.92rem;
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
  }

  body.is-mobile-nav-open {
    overflow: visible;
  }

  .site-logo img {
    width: 190px;
  }

  .cards--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .reports__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.35rem;
    align-items: stretch;
  }

  .report-card--featured {
    transform: translateY(-0.45rem);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.9) inset,
      0 22px 50px rgba(24, 33, 47, 0.12);
    border-color: rgba(255, 143, 31, 0.22);
  }

  .report-card--featured:hover {
    transform: translateY(-0.65rem);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.92) inset,
      0 26px 56px rgba(24, 33, 47, 0.14);
  }

  .hero__content {
    padding-right: 2rem;
  }

  .faq {
    width: min(900px, 100%);
  }
}
