@import url("https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;500;600;700;800&display=swap");

:root {
  --orange: #ea580a;
  --orange-dark: #c2410c;
  --orange-soft: #fff7ed;
  --blue: #123b6d;
  --blue-dark: #0b274a;
  --blue-soft: #eff6ff;
  --success: #15803d;
  --surface: #ffffff;
  --surface-muted: #f8fafc;
  --text: #1e293b;
  --text-soft: #475569;
  --border: #dbe4f0;
  --shadow: 0 14px 36px rgba(18, 59, 109, 0.08);
  --radius: 18px;
  --radius-sm: 12px;
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --container: 1180px;
  --header-height: 72px;
}

[data-theme="dark"] {
  --orange: #f97316;
  --orange-dark: #ea580c;
  --surface: #0f172a;
  --surface-muted: #111827;
  --text: #e5edf8;
  --text-soft: #c7d2e2;
  --border: rgba(148, 163, 184, 0.22);
  --shadow: 0 18px 42px rgba(2, 6, 23, 0.42);
  --orange-soft: rgba(249, 115, 22, 0.14);
  --blue-soft: rgba(59, 130, 246, 0.18);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Work Sans", "Segoe UI Variable Text", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background:
    radial-gradient(circle at top right, rgba(18, 59, 109, 0.08), transparent 24%),
    radial-gradient(circle at 12% 18%, rgba(234, 88, 10, 0.08), transparent 18%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 22%, #ffffff 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

[data-theme="dark"] body {
  background:
    radial-gradient(circle at top right, rgba(96, 165, 250, 0.12), transparent 24%),
    radial-gradient(circle at 12% 18%, rgba(249, 115, 22, 0.1), transparent 18%),
    linear-gradient(180deg, #0b1120 0%, #0f172a 22%, #111827 100%);
}

a {
  color: inherit;
  text-decoration: none;
  text-decoration-skip-ink: auto;
}

main {
  flex: 1 0 auto;
}

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

button,
a,
input,
textarea,
select {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--blue-dark);
  color: #fff;
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  top: 1rem;
}

site-navbar,
site-footer,
site-assistance {
  display: contents;
}

site-cookie-consent {
  display: contents;
}

.assist-widget {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 120;
  display: grid;
  justify-items: end;
  gap: 0.85rem;
  pointer-events: none;
}

.cookie-consent {
  position: fixed;
  inset: auto 1rem 1rem 1rem;
  z-index: 140;
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent__banner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto;
  gap: 1rem;
  align-items: end;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(18, 59, 109, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 40px rgba(18, 59, 109, 0.14);
}

.cookie-consent__content {
  display: grid;
  gap: 0.45rem;
}

.cookie-consent__eyebrow {
  margin: 0;
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cookie-consent__text,
.cookie-consent__note {
  margin: 0;
}

.cookie-consent__text {
  color: var(--text);
  font-size: 0.96rem;
  line-height: 1.62;
}

.cookie-consent__note {
  color: var(--text-soft);
  font-size: 0.9rem;
}

.cookie-consent__actions,
.cookie-consent__modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
}

.cookie-consent__backdrop {
  position: fixed;
  inset: 0;
  z-index: 141;
  background: rgba(15, 23, 42, 0.48);
}

.cookie-consent__modal {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 142;
  width: min(32rem, calc(100vw - 2rem));
  padding: 1.3rem;
  border: 1px solid rgba(18, 59, 109, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 22px 48px rgba(18, 59, 109, 0.18);
  transform: translate(-50%, -50%);
}

.cookie-consent__modal-head h2 {
  margin: 0.2rem 0 0;
  color: var(--blue-dark);
}

.cookie-consent__options {
  display: grid;
  gap: 0.85rem;
  margin: 1rem 0 0;
}

.cookie-consent__option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: start;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(18, 59, 109, 0.08);
  border-radius: 18px;
  background: rgba(248, 250, 252, 0.9);
}

.cookie-consent__option-copy {
  display: grid;
  gap: 0.15rem;
}

.cookie-consent__option-copy strong {
  color: var(--blue-dark);
}

.cookie-consent__option-copy small {
  color: var(--text-soft);
  line-height: 1.55;
}

.cookie-consent__option input[type="checkbox"] {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.2rem;
  accent-color: var(--orange);
}

.has-cookie-modal-open {
  overflow: hidden;
}

.cookie-embed-placeholder {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  padding: 1rem;
  background:
    linear-gradient(180deg, rgba(11, 39, 74, 0.88), rgba(15, 23, 42, 0.94)),
    rgba(15, 23, 42, 0.92);
  color: #f8fafc;
  text-align: center;
}

.cookie-embed-placeholder__content {
  display: grid;
  gap: 0.7rem;
  max-width: 22rem;
}

.cookie-embed-placeholder__content strong {
  font-size: 1rem;
}

.cookie-embed-placeholder__content p {
  margin: 0;
  color: rgba(248, 250, 252, 0.86);
  line-height: 1.6;
}

.cookie-embed-placeholder__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.academy-lesson__video--active .cookie-embed-placeholder {
  display: none;
}

.assist-widget__hint,
.assist-widget__panel,
.assist-widget__toggle {
  pointer-events: auto;
}

.assist-widget__hint {
  position: relative;
  max-width: 14.5rem;
  padding: 0.92rem 1.1rem;
  border: 0;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 38px rgba(18, 59, 109, 0.16);
  color: var(--blue-dark);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.assist-widget__hint::after {
  content: "";
  position: absolute;
  right: 1.15rem;
  bottom: -0.45rem;
  width: 1rem;
  height: 1rem;
  background: inherit;
  transform: rotate(45deg);
  border-radius: 0.18rem;
}

.assist-widget__hint:hover,
.assist-widget__hint:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(18, 59, 109, 0.2);
}

.assist-widget__panel {
  width: min(22rem, calc(100vw - 2rem));
  padding: 1rem;
  border: 1px solid rgba(18, 59, 109, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 40px rgba(18, 59, 109, 0.12);
}

.assist-widget__eyebrow {
  margin: 0 0 0.35rem;
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.assist-widget__panel h2 {
  margin: 0 0 0.35rem;
  color: var(--blue-dark);
  font-size: 1.15rem;
}

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

.assist-widget__actions {
  display: grid;
  gap: 0.6rem;
  margin-top: 1rem;
}

.assist-widget__actions .button {
  width: 100%;
  justify-content: center;
}

.assist-widget__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 8rem;
  height: 8rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.assist-widget__toggle:hover,
.assist-widget__toggle:focus-visible {
  transform: scale(1.08);
}

.assist-widget__toggle:focus-visible {
  outline: 3px solid rgba(18, 59, 109, 0.2);
  outline-offset: 4px;
  border-radius: 999px;
}

.assist-widget__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 16px 30px rgba(18, 59, 109, 0.24));
}

[data-theme="dark"] .assist-widget__panel {
  border-color: rgba(148, 163, 184, 0.16);
  background: rgba(15, 23, 42, 0.96);
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.32);
}

[data-theme="dark"] .cookie-consent__banner,
[data-theme="dark"] .cookie-consent__modal {
  border-color: rgba(148, 163, 184, 0.16);
  background: rgba(15, 23, 42, 0.98);
  box-shadow: 0 20px 42px rgba(2, 6, 23, 0.34);
}

[data-theme="dark"] .cookie-consent__text,
[data-theme="dark"] .cookie-consent__note,
[data-theme="dark"] .cookie-consent__modal-head h2,
[data-theme="dark"] .cookie-consent__option-copy strong {
  color: #f8fafc;
}

[data-theme="dark"] .cookie-consent__option {
  border-color: rgba(148, 163, 184, 0.18);
  background: rgba(30, 41, 59, 0.9);
}

[data-theme="dark"] .cookie-consent__option-copy small {
  color: #dbe4f0;
}

[data-theme="dark"] .assist-widget__hint {
  background: rgba(15, 23, 42, 0.96);
  color: #f8fafc;
  box-shadow: 0 20px 40px rgba(2, 6, 23, 0.34);
}

[data-theme="dark"] .assist-widget__panel h2 {
  color: #f8fafc;
}

[data-theme="dark"] .assist-widget__panel p {
  color: #dbe4f0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(219, 228, 240, 0.72);
  box-shadow: 0 6px 20px rgba(18, 59, 109, 0.05);
  transition: background-color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

[data-theme="dark"] .site-header {
  background: rgba(15, 23, 42, 0.92);
  border-bottom-color: rgba(203, 213, 225, 0.12);
}

.site-header--overlay {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.01);
  border-bottom-color: transparent;
  box-shadow: none;
}

[data-theme="dark"] .site-header--overlay {
  background: rgba(15, 23, 42, 0.16);
}

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

.hero > *,
.page-hero > *,
.grid > *,
.report-layout > *,
.feature-section__intro > * {
  min-width: 0;
}

.header__inner,
.footer__inner,
.hero,
.section,
.cta-banner,
.page-hero {
  padding-left: 0;
  padding-right: 0;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  color: var(--blue-dark);
  line-height: 0;
  flex-shrink: 0;
}

[data-theme="dark"] .brand,
[data-theme="dark"] .site-nav__link,
[data-theme="dark"] .site-nav__submenu-toggle,
[data-theme="dark"] .nav-toggle__label,
[data-theme="dark"] .hero h1,
[data-theme="dark"] .page-hero h1,
[data-theme="dark"] .card h2,
[data-theme="dark"] .card h3,
[data-theme="dark"] .contact-card h2,
[data-theme="dark"] .price-card h2,
[data-theme="dark"] .policy-card h2,
[data-theme="dark"] .report-preview h2,
[data-theme="dark"] .report-preview__header,
[data-theme="dark"] .hero__eyebrow,
[data-theme="dark"] .section__eyebrow,
[data-theme="dark"] .feature-card__kicker,
[data-theme="dark"] .price-card__value {
  color: #f8fafc;
}

.brand__logo {
  display: block;
  width: clamp(9.5rem, 18vw, 13.75rem);
  height: auto;
}

.brand__logo--default {
  display: block;
}

.brand__logo--inverse {
  display: none;
}

.site-header--overlay .brand__logo--default {
  display: none;
}

.site-header--overlay .brand__logo--inverse {
  display: block;
}

.nav-toggle,
.theme-toggle {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  border-radius: 12px;
  padding: 0.62rem 0.82rem;
  cursor: pointer;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.7rem;
}

.theme-toggle {
  display: inline-grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0;
  border-radius: 999px;
  flex-shrink: 0;
}

.theme-toggle__icon {
  display: inline-grid;
  place-items: center;
  width: 1.15rem;
  height: 1.15rem;
  color: var(--blue-dark);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.theme-toggle__icon svg {
  width: 100%;
  height: 100%;
}

.theme-toggle__icon--moon {
  display: none;
}

[data-theme="dark"] .theme-toggle__icon {
  color: #f8fafc;
}

[data-theme="dark"] .theme-toggle__icon--sun {
  display: none;
}

[data-theme="dark"] .theme-toggle__icon--moon {
  display: inline-grid;
}

.nav-toggle__box {
  display: inline-grid;
  gap: 0.24rem;
}

.nav-toggle__line {
  display: block;
  width: 1.1rem;
  height: 2px;
  border-radius: 999px;
  background: var(--blue-dark);
}

.nav-toggle__label {
  font-weight: 600;
  color: var(--blue-dark);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex: 1 1 auto;
  min-width: 0;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 0;
}

.site-nav__link {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0.55rem 0.8rem;
  border-radius: 10px;
  color: var(--blue-dark);
  font-weight: 500;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.site-nav__item {
  position: relative;
}

.site-nav__submenu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.5rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  color: var(--blue-dark);
  font-weight: 500;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

.site-nav__caret {
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.2s ease;
}

.site-nav__submenu-toggle[aria-expanded="true"] .site-nav__caret {
  transform: rotate(-135deg) translateY(-1px);
}

.site-nav__submenu {
  position: absolute;
  top: calc(100% + 0.25rem);
  left: 0;
  z-index: 20;
  display: grid;
  gap: 0.15rem;
  min-width: 18.5rem;
  padding: 0.55rem;
  margin: 0;
  list-style: none;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 28px rgba(18, 59, 109, 0.08);
}

.site-nav__submenu[hidden] {
  display: none;
}

.site-nav__submenu-link {
  display: block;
  padding: 0.68rem 0.78rem;
  border-radius: 10px;
  color: var(--text);
  font-weight: 500;
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.site-nav__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.95rem;
  flex-shrink: 0;
}

.site-nav__link:hover,
.site-nav__link:focus-visible,
.site-nav__submenu-toggle:hover,
.site-nav__submenu-toggle:focus-visible {
  color: var(--orange-dark);
  background: rgba(239, 246, 255, 0.64);
}

.site-nav__submenu-link:hover,
.site-nav__submenu-link:focus-visible {
  color: var(--orange-dark);
  background: rgba(239, 246, 255, 0.8);
}

.header__actions {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

.site-nav__link[aria-current="page"],
.site-nav__submenu-toggle[aria-current="page"] {
  color: var(--blue-dark);
  background: rgba(239, 246, 255, 0.76);
  border-color: transparent;
}

.site-nav__submenu-link[aria-current="page"] {
  background: rgba(239, 246, 255, 0.76);
}

.site-nav__access {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0.62rem 1rem;
  border: 1px solid rgba(18, 59, 109, 0.14);
  border-radius: 999px;
  background: rgba(239, 246, 255, 0.62);
  color: var(--blue-dark);
  font-weight: 600;
  white-space: nowrap;
  opacity: 1;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-nav__access:hover,
.site-nav__access:focus-visible {
  color: var(--orange-dark);
  background: rgba(239, 246, 255, 0.92);
  border-color: rgba(18, 59, 109, 0.22);
  transform: translateY(-1px);
}

.site-header--overlay .brand,
.site-header--overlay .site-nav__link,
.site-header--overlay .site-nav__submenu-toggle,
.site-header--overlay .nav-toggle__label,
.site-header--overlay .site-nav__access {
  color: #fff;
}

.site-header--overlay .nav-toggle,
.site-header--overlay .theme-toggle,
.site-header--overlay .site-nav__access {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.site-header--overlay .site-nav__access:hover,
.site-header--overlay .site-nav__access:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.28);
}

.site-header--overlay .nav-toggle__line {
  background: #fff;
}

.site-header--overlay .site-nav__link:hover,
.site-header--overlay .site-nav__link:focus-visible,
.site-header--overlay .site-nav__submenu-toggle:hover,
.site-header--overlay .site-nav__submenu-toggle:focus-visible,
.site-header--overlay .site-nav__link[aria-current="page"],
.site-header--overlay .site-nav__submenu-toggle[aria-current="page"] {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 12px;
  padding: 0.82rem 1.2rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
  text-align: center;
  overflow-wrap: anywhere;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 8px 18px rgba(234, 88, 10, 0.16);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--orange-dark);
}

.button--secondary {
  background: var(--surface);
  color: var(--blue-dark);
  border-color: var(--border);
  box-shadow: none;
}

[data-theme="dark"] .button--secondary,
[data-theme="dark"] .button--ghost,
[data-theme="dark"] .theme-toggle {
  color: #f8fafc;
  background: rgba(15, 23, 42, 0.72);
}

.button--ghost {
  background: transparent;
  color: var(--blue-dark);
  border-color: var(--border);
  box-shadow: none;
}

.button--ghost:hover,
.button--ghost:focus-visible {
  border-color: rgba(18, 59, 109, 0.28);
  background: rgba(239, 246, 255, 0.8);
}

[data-theme="dark"] .button--ghost:hover,
[data-theme="dark"] .button--ghost:focus-visible,
[data-theme="dark"] .button--secondary:hover,
[data-theme="dark"] .button--secondary:focus-visible,
[data-theme="dark"] .theme-toggle:hover,
[data-theme="dark"] .theme-toggle:focus-visible {
  background: rgba(30, 41, 59, 0.96);
  border-color: rgba(148, 163, 184, 0.34);
}

.button--disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

.hero,
.page-hero {
  padding-top: 3.2rem;
  padding-bottom: 2.8rem;
}

.page-hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
}

.page-hero__content {
  max-width: 44rem;
}

.page-hero__visual {
  display: grid;
  gap: 1rem;
}

.page-hero__visual--wide {
  max-width: 58rem;
  justify-self: end;
}

.page-hero--visual-wide {
  grid-template-columns: 0.9fr 1.1fr;
}

.page-hero__image {
  width: 100%;
  border-radius: 20px;
  border: 0;
  box-shadow: 0 14px 32px rgba(18, 59, 109, 0.1);
  background: rgba(255, 255, 255, 0.92);
}

.page-hero__image--plain {
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.page-hero__note {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.6;
}

.hero--single {
  grid-template-columns: 1fr;
}

.hero--splash {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: min(56vh, 540px);
  margin-top: calc(var(--header-height) * -1);
  padding-top: calc(1.9rem + var(--header-height));
  padding-bottom: 2.2rem;
  background: linear-gradient(180deg, #ea580a 0%, #c2410c 100%);
}

.hero--splash .container {
  width: min(calc(100% - 2rem), 1360px);
}

.hero--splash::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 39, 74, 0.2), rgba(11, 39, 74, 0.28)),
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.04), transparent 22%),
    radial-gradient(circle at 82% 78%, rgba(11, 39, 74, 0.12), transparent 24%);
}

[data-theme="dark"] .hero--splash {
  background: linear-gradient(180deg, #c2410c 0%, #9a3412 100%);
}

[data-theme="dark"] .hero--splash::before {
  background:
    linear-gradient(180deg, rgba(11, 39, 74, 0.26), rgba(11, 39, 74, 0.34)),
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.06), transparent 22%),
    radial-gradient(circle at 82% 78%, rgba(11, 39, 74, 0.18), transparent 24%);
}

.hero__eyebrow,
.section__eyebrow {
  display: inline-block;
  margin-bottom: var(--space-2);
  color: var(--orange-dark);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(18, 59, 109, 0.1);
  border-radius: 999px;
  background: rgba(239, 246, 255, 0.9);
  color: var(--blue-dark);
  font-size: 0.9rem;
  font-weight: 600;
}

.hero h1,
.page-hero h1 {
  margin: 0 0 var(--space-2);
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  line-height: 1.08;
  color: var(--blue-dark);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.hero p,
.page-hero p,
.section__intro {
  margin: 0 0 var(--space-3);
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.72;
}

.hero__actions,
.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero__actions .button--primary {
  background: var(--blue);
  box-shadow: 0 8px 18px rgba(18, 59, 109, 0.2);
}

.hero__actions .button--primary:hover,
.hero__actions .button--primary:focus-visible {
  background: var(--blue-dark);
}

.hero__content {
  max-width: 760px;
  animation: fade-up 0.7s ease both;
}

.hero__splash-content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: start;
  gap: 1rem;
  max-width: 46rem;
  padding: 0;
  text-align: left;
}

.hero__splash-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(580px, 1.08fr);
  gap: 3.6rem;
  align-items: center;
}

.hero__brand-mark {
  width: clamp(15rem, 32vw, 24rem);
  height: auto;
}

.hero__splash-title {
  margin: 0;
  color: #fff;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
}

.hero--splash .hero__eyebrow,
.hero--splash h1,
.hero--splash .hero__lead {
  color: #fff;
}

.hero--splash .hero__eyebrow {
  margin-bottom: 0.25rem;
}

.hero--splash h1 {
  max-width: 16ch;
}

.hero__lead {
  margin: 0 0 var(--space-3);
  max-width: 46rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.22rem, 2vw, 1.55rem);
  line-height: 1.5;
  font-weight: 300;
  letter-spacing: 0.01em;
}

.hero__video-card {
  position: relative;
  z-index: 1;
  padding: 0;
  width: 100%;
  max-width: 50rem;
  justify-self: end;
}

.hero__video-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(11, 39, 74, 0.22);
  box-shadow: 0 22px 48px rgba(11, 39, 74, 0.22);
}

.hero__video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 6.6rem;
  height: 6.6rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 40px rgba(11, 39, 74, 0.24);
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.hero__video-play:hover,
.hero__video-play:focus-visible {
  transform: translate(-50%, -50%) scale(1.06);
  box-shadow: 0 22px 46px rgba(11, 39, 74, 0.28);
}

.hero__video-play:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.4);
  outline-offset: 4px;
}

.hero__video-play-icon {
  display: block;
  width: 0;
  height: 0;
  margin-left: 0.28rem;
  border-top: 1rem solid transparent;
  border-bottom: 1rem solid transparent;
  border-left: 1.55rem solid var(--blue-dark);
}

.hero__video-frame.is-playing .hero__video-play {
  opacity: 0;
  pointer-events: none;
}

.hero__video-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  background: rgba(11, 39, 74, 0.32);
}

.hero__panel {
  padding: 1.4rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(239, 246, 255, 0.7), rgba(255, 255, 255, 0.98));
  box-shadow: 0 8px 20px rgba(18, 59, 109, 0.05);
}

[data-theme="dark"] .hero__panel {
  background: rgba(15, 23, 42, 0.82);
}

.hero__panel--product {
  display: grid;
  gap: 1rem;
  align-self: stretch;
}

.hero__media {
  align-self: stretch;
}

.hero__panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.hero__panel-head strong {
  color: var(--blue-dark);
  font-size: 1rem;
  line-height: 1.35;
  text-align: right;
}

.hero__product-image {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  object-position: top center;
  border-radius: 16px;
  border: 1px solid rgba(18, 59, 109, 0.08);
  box-shadow: 0 10px 24px rgba(18, 59, 109, 0.1);
  background: #fff;
}

.hero__highlights {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.5rem 1rem;
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  white-space: nowrap;
}

.hero__highlights li {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.9rem, 1.05vw, 1rem);
  line-height: 1.5;
  font-weight: 300;
  letter-spacing: 0.01em;
}

.hero__highlights li i {
  flex: 0 0 auto;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.96);
}

.hero__highlights li:not(:last-child)::after {
  content: "";
  width: 0.28rem;
  height: 0.28rem;
  margin-left: 0.15rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
}

.hero--splash .hero__highlights li {
  color: rgba(255, 255, 255, 0.92);
}

[data-theme="dark"] .hero__badge,
[data-theme="dark"] .hero__panel-head strong {
  color: #f8fafc;
}

[data-theme="dark"] .hero__badge {
  background: rgba(17, 28, 52, 0.78);
  border-color: rgba(148, 163, 184, 0.18);
}

[data-theme="dark"] .hero__product-image {
  background: rgba(15, 23, 42, 0.96);
}

[data-theme="dark"] .hero__lead {
  color: rgba(248, 250, 252, 0.92);
}

[data-theme="dark"] .hero__video-frame {
  background: rgba(11, 39, 74, 0.28);
}

[data-theme="dark"] .hero__video-play {
  background: rgba(15, 23, 42, 0.94);
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.34);
}

[data-theme="dark"] .hero__video-play-icon {
  border-left-color: #f8fafc;
}

[data-theme="dark"] .hero__highlights li,
[data-theme="dark"] .card,
[data-theme="dark"] .card--plain,
[data-theme="dark"] .contact-card,
[data-theme="dark"] .price-card,
[data-theme="dark"] .policy-card,
[data-theme="dark"] .report-preview,
[data-theme="dark"] .report-preview__block,
[data-theme="dark"] .report-visual__panel,
[data-theme="dark"] .report-visual__note,
[data-theme="dark"] .feature-overview__item,
[data-theme="dark"] .feature-spotlight {
  background: rgba(15, 23, 42, 0.82);
  color: var(--text);
}

[data-theme="dark"] .contact-direct__item {
  background: rgba(30, 41, 59, 0.78);
}

[data-theme="dark"] .cookie-policy-table th {
  color: #f8fafc;
}

[data-theme="dark"] .cookie-policy-table th,
[data-theme="dark"] .cookie-policy-table td {
  border-bottom-color: rgba(148, 163, 184, 0.14);
  color: #dbe4f0;
}

[data-theme="dark"] .contact-direct__item:hover,
[data-theme="dark"] .contact-direct__item:focus-visible {
  background: rgba(30, 41, 59, 0.96);
  box-shadow: 0 12px 24px rgba(2, 6, 23, 0.28);
}

[data-theme="dark"] .contact-direct__content strong {
  color: #f8fafc;
}

[data-theme="dark"] .contact-direct__content small {
  color: #dbe4f0;
}

[data-theme="dark"] .hero__panel,
[data-theme="dark"] .feature-card,
[data-theme="dark"] .feature-card--hub,
[data-theme="dark"] .feature-overview__item,
[data-theme="dark"] .numbers-band__card,
[data-theme="dark"] .process-card,
[data-theme="dark"] .faq-item {
  border-color: rgba(148, 163, 184, 0.16);
  box-shadow: 0 14px 30px rgba(2, 6, 23, 0.24);
}

[data-theme="dark"] .feature-card {
  background: rgba(15, 23, 42, 0.72);
}

[data-theme="dark"] .feature-card--hub,
[data-theme="dark"] .numbers-band__card {
  background: rgba(15, 23, 42, 0.9);
}

[data-theme="dark"] .feature-card h3,
[data-theme="dark"] .feature-card__link,
[data-theme="dark"] .numbers-band__title,
[data-theme="dark"] .process-card h3,
[data-theme="dark"] .report-visual__note strong {
  color: #f8fafc;
}

[data-theme="dark"] .feature-card p,
[data-theme="dark"] .report-visual__note span,
[data-theme="dark"] .feature-overview__item p,
[data-theme="dark"] .numbers-band__copy,
[data-theme="dark"] .process-card p {
  color: #dbe4f0;
}

[data-theme="dark"] .feature-overview__index {
  background: #f8fafc;
  color: var(--blue-dark);
}

[data-theme="dark"] .feature-spotlight {
  border-color: rgba(148, 163, 184, 0.16);
  box-shadow: 0 14px 30px rgba(2, 6, 23, 0.24);
}

[data-theme="dark"] .numbers-band__frame {
  background: rgba(15, 23, 42, 0.64);
}

[data-theme="dark"] .report-visual img {
  box-shadow: 0 14px 30px rgba(2, 6, 23, 0.24);
}

.card,
.report-preview,
.contact-card,
.price-card,
.policy-card {
  background: var(--surface);
  border: 1px solid transparent;
  border-radius: var(--radius);
  box-shadow: 0 8px 20px rgba(18, 59, 109, 0.05);
}

.policy-card--media {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-block: 1.5rem;
}

.policy-card__media {
  display: block;
  width: 100%;
  height: auto;
}

.policy-card__media--wide {
  max-width: 52rem;
}

.transparency-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.transparency-hero__image {
  max-width: 56rem;
  justify-self: end;
}

.transparency-hero__placeholder {
  min-height: 1px;
}

.transparency-card {
  height: 100%;
}

.transparency-card--single {
  max-width: 60rem;
  margin-inline: auto;
  text-align: center;
  padding: 2rem clamp(1.25rem, 2vw, 2.5rem);
}

.transparency-card__intro {
  display: grid;
  gap: 0.45rem;
}

.transparency-card__title,
.transparency-card__subtitle {
  color: var(--blue-dark);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.transparency-card__title {
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
}

.transparency-card__subtitle {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}

.transparency-card__years {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.35rem;
  color: var(--orange-dark);
  font-weight: 800;
  letter-spacing: 0.06em;
}

.transparency-card__section {
  max-width: 44rem;
  margin: 1.75rem auto 0;
  display: grid;
  gap: 0.6rem;
}

.transparency-card__label {
  color: var(--blue-dark);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.transparency-card__meta {
  color: var(--orange-dark);
  font-weight: 700;
}

.transparency-card__divider {
  width: min(100%, 16rem);
  height: 1px;
  margin: 1.75rem auto 0;
  background: rgba(18, 59, 109, 0.14);
}

.transparency-card__image {
  margin: 2rem auto 0;
}

.transparency-card__year {
  display: inline-flex;
  margin: 0 0 1rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(234, 88, 10, 0.12);
  color: var(--orange-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.transparency-card h3 {
  margin-bottom: 0.8rem;
}

[data-theme="dark"] .transparency-card__year {
  background: rgba(251, 146, 60, 0.16);
  color: #ffd1b1;
}

[data-theme="dark"] .transparency-card__title,
[data-theme="dark"] .transparency-card__subtitle,
[data-theme="dark"] .transparency-card__label {
  color: #f8fafc;
}

[data-theme="dark"] .transparency-card__years,
[data-theme="dark"] .transparency-card__meta {
  color: #ffd1b1;
}

[data-theme="dark"] .transparency-card__divider {
  background: rgba(255, 255, 255, 0.16);
}

.cookie-policy-groups {
  display: grid;
  gap: 1rem;
}

.cookie-policy-status {
  display: inline-flex;
  align-items: center;
  margin-left: auto;
  padding: 0.28rem 0.62rem;
  border-radius: 999px;
  background: rgba(21, 128, 61, 0.12);
  color: var(--success);
  font-size: 0.8rem;
  font-weight: 700;
}

.cookie-policy-table-wrap {
  margin-top: 1rem;
  overflow-x: auto;
}

.cookie-policy-table {
  width: 100%;
  min-width: 42rem;
  border-collapse: collapse;
}

.cookie-policy-table th,
.cookie-policy-table td {
  padding: 0.85rem 0.9rem;
  border-bottom: 1px solid rgba(18, 59, 109, 0.08);
  text-align: left;
  vertical-align: top;
  color: var(--text-soft);
  font-size: 0.94rem;
  line-height: 1.55;
}

.cookie-policy-table th {
  color: var(--blue-dark);
  font-weight: 700;
}

.section {
  position: relative;
  padding-top: 2.4rem;
  padding-bottom: 2.4rem;
}

main > .section + .section::before,
main > .section + .numbers-band::before,
main > .numbers-band + .section::before,
main > .section + .cta-banner::before,
main > .numbers-band + .cta-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(92%, 1120px);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent 0%, rgba(18, 59, 109, 0.12) 18%, rgba(234, 88, 10, 0.18) 50%, rgba(18, 59, 109, 0.12) 82%, transparent 100%);
}

[data-theme="dark"] main > .section + .section::before,
[data-theme="dark"] main > .section + .numbers-band::before,
[data-theme="dark"] main > .numbers-band + .section::before,
[data-theme="dark"] main > .section + .cta-banner::before,
[data-theme="dark"] main > .numbers-band + .cta-banner::before {
  background: linear-gradient(90deg, transparent 0%, rgba(148, 163, 184, 0.14) 18%, rgba(249, 115, 22, 0.22) 50%, rgba(148, 163, 184, 0.14) 82%, transparent 100%);
}

.section--soft {
  background: rgba(239, 246, 255, 0.42);
}

[data-theme="dark"] .section--soft {
  background: rgba(17, 28, 52, 0.65);
}

.section--accent-orange {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(234, 88, 10, 0.94), rgba(194, 65, 12, 0.9)),
    linear-gradient(180deg, #ea580a 0%, #c2410c 100%);
}

.section--accent-orange::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 39, 74, 0.18), rgba(11, 39, 74, 0.26));
  pointer-events: none;
}

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

.section--accent-orange .section__eyebrow {
  color: rgba(255, 237, 213, 0.9);
}

.section--accent-orange h2,
.section--accent-orange .section__intro {
  color: #ffffff;
}

.section--accent-orange .feature-card--hub {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 34px rgba(11, 39, 74, 0.14);
}

.section--accent-orange .feature-card__kicker {
  color: var(--orange-dark);
}

.section--accent-orange .feature-card h3 {
  color: var(--blue-dark);
}

.section--accent-orange .feature-card p {
  color: var(--text-soft);
}

.section--accent-orange .feature-card__link {
  color: var(--blue-dark);
}

[data-theme="dark"] .section--accent-orange {
  background:
    linear-gradient(180deg, rgba(194, 65, 12, 0.98), rgba(154, 52, 18, 0.96)),
    linear-gradient(180deg, #c2410c 0%, #9a3412 100%);
}

[data-theme="dark"] .section--accent-orange::after {
  background: linear-gradient(180deg, rgba(11, 39, 74, 0.26), rgba(11, 39, 74, 0.36));
}

[data-theme="dark"] .section--accent-orange .feature-card--hub {
  background: rgba(15, 23, 42, 0.92);
  box-shadow: 0 18px 34px rgba(2, 6, 23, 0.32);
}

[data-theme="dark"] .section--accent-orange .feature-card__kicker {
  color: #fdba74;
}

[data-theme="dark"] .section--accent-orange .feature-card h3,
[data-theme="dark"] .section--accent-orange .feature-card__link {
  color: #f8fafc;
}

[data-theme="dark"] .section--accent-orange .feature-card p {
  color: #dbe4f0;
}

.section--feature-background {
  background-image: url("../img/background.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.section__header {
  max-width: 720px;
  margin-bottom: 1.5rem;
}

.grid {
  display: grid;
  gap: var(--space-3);
}

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

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

.feature-grid {
  gap: 1rem;
}

.card,
.contact-card,
.price-card,
.policy-card {
  padding: 1.25rem;
}

.card--plain {
  border-radius: 14px;
  box-shadow: none;
  background: rgba(255, 255, 255, 0.72);
  transition: transform 0.22s ease, border-color 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease;
}

.card--plain:hover,
.card--plain:focus-within {
  transform: translateY(-4px);
  border-color: transparent;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 22px rgba(18, 59, 109, 0.08);
}

.feature-card {
  padding: 1.05rem 1.05rem 1.1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
}

.feature-card--hub {
  display: grid;
  align-content: start;
  gap: 0.55rem;
  min-height: 100%;
  padding: 1.25rem 1.15rem 1.2rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 24px rgba(18, 59, 109, 0.06);
}

.feature-card h3 {
  margin-bottom: 0.45rem;
}

.feature-card p {
  font-size: 0.96rem;
  line-height: 1.58;
}

.feature-card__link {
  display: inline-flex;
  align-items: center;
  margin-top: 0.35rem;
  color: var(--blue-dark);
  font-weight: 700;
  font-size: 0.94rem;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18rem;
}

[data-theme="dark"] .card--plain:hover,
[data-theme="dark"] .card--plain:focus-within {
  background: rgba(15, 23, 42, 0.96);
  box-shadow: 0 12px 24px rgba(2, 6, 23, 0.35);
}

.card h2,
.card h3,
.contact-card h2,
.price-card h2,
.policy-card h2,
.report-preview h2 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  color: var(--blue-dark);
}

h2 {
  font-weight: 700;
  letter-spacing: -0.02em;
}

h3 {
  font-weight: 700;
  letter-spacing: -0.015em;
}

.card p,
.contact-card p,
.price-card p,
.policy-card p,
.report-preview p,
.footer__copy {
  margin: 0;
  color: var(--text-soft);
  overflow-wrap: anywhere;
}

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

.list li {
  padding-left: 1.4rem;
  position: relative;
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--orange);
}

.contact-direct {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

.contact-direct__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(239, 246, 255, 0.72);
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-direct__item:hover,
.contact-direct__item:focus-visible {
  transform: translateY(-2px);
  background: rgba(239, 246, 255, 0.96);
  box-shadow: 0 10px 22px rgba(18, 59, 109, 0.08);
}

.contact-direct__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  background: rgba(234, 88, 10, 0.12);
  color: var(--orange-dark);
  font-size: 1rem;
}

.contact-direct__content {
  display: grid;
  gap: 0.2rem;
}

.contact-direct__content strong {
  color: var(--blue-dark);
  font-size: 1rem;
}

.contact-direct__content small {
  color: var(--text-soft);
  font-size: 0.92rem;
}

.contact-direct__mascot {
  width: min(100%, 18rem);
  margin: 1.2rem auto 0;
  height: auto;
}

.report-preview {
  overflow: hidden;
}

.report-preview__header {
  padding: 1rem 1.25rem;
  background: var(--blue-soft);
  color: var(--blue-dark);
  border-bottom: 1px solid var(--border);
}

[data-theme="dark"] .report-preview__header,
[data-theme="dark"] .report-visual__panel {
  background: rgba(15, 23, 42, 0.72);
}

.report-preview__body {
  display: grid;
  gap: 0.9rem;
  padding: 1.2rem 1.25rem;
}

.report-preview__block {
  border-radius: 14px;
  padding: 0.95rem 1rem;
  background: rgba(239, 246, 255, 0.5);
}

.report-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 1.5rem;
  align-items: center;
}

.comparables-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(460px, 1.14fr);
  gap: 2.2rem;
  align-items: center;
}

.comparables-showcase__content {
  max-width: 35rem;
}

.comparables-showcase__content h2 {
  max-width: 14ch;
  margin-bottom: 0.85rem;
  font-size: clamp(2rem, 3.3vw, 3rem);
  line-height: 1.04;
}

.comparables-showcase__list {
  margin-top: 1rem;
}

.comparables-showcase__link {
  margin-top: 1.15rem;
}

.comparables-showcase__visual {
  position: relative;
  width: 100%;
  max-width: 48rem;
  padding: 0.2rem 0;
  justify-self: end;
}

.comparables-showcase__visual::before {
  content: "";
  position: absolute;
  inset: 8% -3% 8% -3%;
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 20%, rgba(234, 88, 10, 0.12), transparent 32%),
    radial-gradient(circle at 82% 76%, rgba(18, 59, 109, 0.1), transparent 34%);
  filter: blur(14px);
  pointer-events: none;
}

.comparables-showcase__visual img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  border-radius: 18px;
  border: 0;
  box-shadow: none;
}

.comparables-showcase--reverse .comparables-showcase__visual {
  order: -1;
  justify-self: start;
}

.comparables-showcase--reverse {
  grid-template-columns: minmax(460px, 1.14fr) minmax(0, 0.86fr);
}

.numbers-band {
  position: relative;
  overflow: hidden;
}

.numbers-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(234, 88, 10, 0.12), transparent 22%),
    radial-gradient(circle at 88% 24%, rgba(18, 59, 109, 0.1), transparent 28%);
  pointer-events: none;
}

.numbers-band .container {
  position: relative;
  z-index: 1;
}

.numbers-band__frame {
  padding: 1.6rem 1.35rem 1.35rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 16px 38px rgba(18, 59, 109, 0.08);
}

[data-theme="dark"] .numbers-band__frame {
  background: rgba(15, 23, 42, 0.48);
  box-shadow: 0 18px 36px rgba(2, 6, 23, 0.28);
}

.numbers-band__header {
  max-width: 42rem;
  margin-bottom: 1.5rem;
}

.numbers-band__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.05rem;
}

.numbers-band__card {
  position: relative;
  min-height: 100%;
  padding: 1.35rem 1.25rem 1.3rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 24px rgba(18, 59, 109, 0.07);
}

.numbers-band__card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  border-radius: 22px 22px 0 0;
  background: linear-gradient(90deg, var(--orange) 0%, var(--blue) 100%);
}

.numbers-band__value {
  display: inline-block;
  margin-bottom: 0.65rem;
  color: var(--orange-dark);
  font-size: clamp(2.2rem, 3.4vw, 3rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.numbers-band__title {
  margin: 0 0 0.5rem;
  color: var(--blue-dark);
  font-size: 1.02rem;
  line-height: 1.18;
}

.numbers-band__copy {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.56;
}

.partners-section {
  overflow: hidden;
}

.partners-marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
}

.partners-marquee__track {
  display: flex;
  width: max-content;
  animation: partners-marquee 34s linear infinite;
}

.partners-marquee__group {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-right: 1rem;
}

.partners-marquee__item {
  display: grid;
  place-items: center;
  width: clamp(11rem, 15vw, 14rem);
  min-width: clamp(11rem, 15vw, 14rem);
  min-height: 6.6rem;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(18, 59, 109, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 24px rgba(18, 59, 109, 0.06);
}

.partners-marquee__item img {
  width: 100%;
  max-height: 2.8rem;
  object-fit: contain;
  filter: saturate(0.95);
}

.partners-marquee:hover .partners-marquee__track,
.partners-marquee:focus-within .partners-marquee__track {
  animation-play-state: paused;
}

@keyframes partners-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 0.5rem));
  }
}

[data-theme="dark"] .partners-marquee__item {
  border-color: rgba(148, 163, 184, 0.16);
  background: rgba(15, 23, 42, 0.92);
  box-shadow: 0 14px 28px rgba(2, 6, 23, 0.24);
}

.feature-overview {
  position: relative;
  overflow: hidden;
}

.feature-overview::after {
  content: "";
  position: absolute;
  top: -2rem;
  right: -2rem;
  width: 9rem;
  height: 9rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(234, 88, 10, 0.16), transparent 68%);
  pointer-events: none;
}

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

.feature-overview__header strong {
  color: var(--blue-dark);
  font-size: 1.05rem;
}

.feature-overview__grid {
  display: grid;
  gap: 0.85rem;
}

.feature-overview__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(18, 59, 109, 0.08);
}

.feature-overview__item p {
  margin: 0;
}

.feature-overview__index {
  display: inline-grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  background: var(--blue-dark);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
}

.feature-summary__card {
  position: relative;
  min-height: 100%;
}

.feature-summary__card::after {
  content: "";
  position: absolute;
  inset: auto 1.25rem 1.05rem auto;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(234, 88, 10, 0.14), rgba(18, 59, 109, 0.08));
}

.feature-section__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 1.5rem;
}

.feature-spotlight {
  padding: 1.25rem;
  border: 1px solid rgba(18, 59, 109, 0.08);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(239, 246, 255, 0.7), rgba(255, 255, 255, 0.96));
  box-shadow: 0 8px 20px rgba(18, 59, 109, 0.05);
}

.feature-spotlight h3 {
  margin: 0.8rem 0 0.7rem;
  color: var(--blue-dark);
}

.feature-spotlight p {
  margin: 0 0 0.85rem;
  color: var(--text-soft);
}

.why-grid {
  gap: 1.15rem;
}

.why-card {
  padding: 1.35rem 1.3rem 1.25rem;
  border-radius: 20px;
  border: 1px solid rgba(18, 59, 109, 0.1);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 24px rgba(18, 59, 109, 0.06);
}

.why-card__icon {
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.9rem;
  border-radius: 999px;
  background: rgba(234, 88, 10, 0.12);
  color: var(--orange-dark);
  font-size: 1.1rem;
}

.why-card h3 {
  margin-bottom: 0.55rem;
}

.why-card p {
  font-size: 0.98rem;
  line-height: 1.62;
}

[data-theme="dark"] .why-card {
  border-color: rgba(148, 163, 184, 0.18);
  background: rgba(15, 23, 42, 0.92);
  box-shadow: 0 14px 28px rgba(2, 6, 23, 0.22);
}

[data-theme="dark"] .why-card__icon {
  background: rgba(251, 146, 60, 0.18);
  color: #fdba74;
}

.feature-stack .card {
  min-height: 100%;
}

[data-theme="dark"] .feature-overview__header strong,
[data-theme="dark"] .feature-spotlight h3 {
  color: #f8fafc;
}

[data-theme="dark"] .feature-summary__card::after {
  background: linear-gradient(180deg, rgba(249, 115, 22, 0.18), rgba(96, 165, 250, 0.14));
}

.report-visual {
  padding: 0.5rem 0;
}

.report-visual__panel {
  position: relative;
  overflow: hidden;
  padding: 0.9rem;
  border: 1px solid transparent;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 34px rgba(18, 59, 109, 0.08);
}

.report-visual__tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  background: rgba(11, 39, 74, 0.82);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.report-visual img {
  width: 100%;
  border-radius: 18px;
  border: 1px solid transparent;
  box-shadow: 0 8px 20px rgba(18, 59, 109, 0.05);
}

.report-visual__note {
  display: grid;
  gap: 0.25rem;
  margin-top: 0.85rem;
  padding: 0.95rem 1rem 0.2rem;
}

.report-visual__note strong {
  color: var(--blue-dark);
}

.report-visual__note span {
  color: var(--text-soft);
}

.process-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.6rem;
  align-items: start;
}

.process-section__intro {
  max-width: 34rem;
}

.process-section__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.process-card {
  min-height: 100%;
  padding: 1.35rem;
  border: 1px solid transparent;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 24px rgba(18, 59, 109, 0.05);
}

[data-theme="dark"] .process-card {
  background: rgba(15, 23, 42, 0.72);
  border-color: transparent;
}

.process-card__index {
  display: inline-block;
  margin-bottom: 1.1rem;
  color: var(--orange-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.process-card h3 {
  margin: 0 0 0.7rem;
  color: var(--blue-dark);
  font-size: 1.08rem;
  line-height: 1.3;
}

.process-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.97rem;
  line-height: 1.65;
}

.cta-banner {
  padding-top: 2.8rem;
  padding-bottom: 3rem;
}

.cta-banner__box {
  padding: 1.75rem 1.8rem;
  border-radius: 22px;
  background: linear-gradient(180deg, var(--blue-dark), var(--blue));
  color: #fff;
  box-shadow: 0 12px 28px rgba(11, 39, 74, 0.16);
}

[data-theme="dark"] .cta-banner__box {
  background: linear-gradient(180deg, #0b274a, #123b6d);
}

.cta-banner__box h2,
.cta-banner__box p {
  margin-top: 0;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: var(--space-4) 0;
}

[data-theme="dark"] .site-footer {
  background: rgba(11, 17, 32, 0.5);
}

[data-theme="dark"] .site-nav__submenu {
  background: rgba(15, 23, 42, 0.98);
  border-color: rgba(148, 163, 184, 0.22);
}

[data-theme="dark"] .site-nav__access {
  color: #f8fafc;
}

[data-theme="dark"] .site-nav__submenu-link {
  color: #f8fafc;
}

[data-theme="dark"] .site-nav__link:hover,
[data-theme="dark"] .site-nav__link:focus-visible,
[data-theme="dark"] .site-nav__submenu-toggle:hover,
[data-theme="dark"] .site-nav__submenu-toggle:focus-visible,
[data-theme="dark"] .site-nav__link[aria-current="page"],
[data-theme="dark"] .site-nav__submenu-toggle[aria-current="page"],
[data-theme="dark"] .site-nav__submenu-link[aria-current="page"] {
  color: #f8fafc;
  background: rgba(30, 41, 59, 0.92);
}

[data-theme="dark"] .site-nav__submenu-link:hover,
[data-theme="dark"] .site-nav__submenu-link:focus-visible {
  color: #fdba74;
  background: rgba(30, 41, 59, 0.92);
}

[data-theme="dark"] .plan-table-wrap,
[data-theme="dark"] .plan-table th,
[data-theme="dark"] .plan-table td,
[data-theme="dark"] .plan-status {
  background: rgba(15, 23, 42, 0.88);
}

[data-theme="dark"] .plan-table thead th {
  background: rgba(15, 23, 42, 0.98);
}

[data-theme="dark"] .plan-table__group th {
  background: rgba(17, 28, 52, 0.88);
  color: #f8fafc;
}

[data-theme="dark"] .plan-table__heading strong,
[data-theme="dark"] .plan-detail summary {
  color: #f8fafc;
}

.site-nav[hidden] {
  display: none;
}

.footer__inner {
  display: grid;
  gap: 1.2rem;
}

.footer__brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  line-height: 0;
}

.footer__logo {
  display: block;
  width: clamp(8.5rem, 16vw, 11.5rem);
  height: auto;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
}

.footer__company {
  display: grid;
  gap: 0.45rem;
  max-width: 72rem;
}

.footer__company-intro,
.footer__company-name,
.footer__company-fund,
.footer__copy {
  margin: 0;
}

.footer__company-intro strong,
.footer__company-name {
  color: var(--blue-dark);
}

.footer__company-name {
  font-weight: 700;
}

.footer__company-fund a {
  color: var(--blue-dark);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16rem;
}

.footer__company-fund a:hover,
.footer__company-fund a:focus-visible {
  color: var(--orange-dark);
}

[data-theme="dark"] .footer__company-intro strong,
[data-theme="dark"] .footer__company-name,
[data-theme="dark"] .footer__company-fund a {
  color: #f8fafc;
}

[data-theme="dark"] .footer__company-fund a:hover,
[data-theme="dark"] .footer__company-fund a:focus-visible {
  color: #fdba74;
}

.tag {
  display: inline-flex;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
}

.tag--soft {
  background: var(--orange-soft);
  color: var(--orange-dark);
}

.link-inline {
  display: inline-flex;
  align-items: center;
  color: var(--blue-dark);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.link-inline:hover,
.link-inline:focus-visible {
  color: var(--orange-dark);
  transform: translateX(2px);
}

.link-inline--light {
  color: #fff;
}

[data-theme="dark"] .link-inline {
  color: #dbeafe;
}

[data-theme="dark"] .link-inline:hover,
[data-theme="dark"] .link-inline:focus-visible {
  color: #fdba74;
}

[data-theme="dark"] .tag--soft {
  background: rgba(249, 115, 22, 0.16);
  color: #fdba74;
}

.price-card__value {
  margin: 0 0 1rem;
  color: var(--blue-dark);
  font-size: 2rem;
  font-weight: 800;
}

.table-tools {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1rem;
}

.plan-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.plan-status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 0.9rem;
  font-weight: 700;
}

.plan-status--included {
  color: var(--success);
}

.plan-status--excluded {
  color: #dc2626;
}

.plan-status--paid {
  color: var(--orange-dark);
}

.plan-table-wrap {
  overflow: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 8px 20px rgba(18, 59, 109, 0.05);
}

.plan-table {
  width: 100%;
  min-width: 980px;
  border-collapse: separate;
  border-spacing: 0;
}

.plan-table caption {
  padding: 1rem 1rem 0;
  text-align: left;
  color: var(--text-soft);
  font-weight: 600;
}

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

.plan-table thead th {
  position: sticky;
  top: 68px;
  z-index: 4;
  vertical-align: top;
  background: rgba(255, 255, 255, 0.98);
}

.plan-table thead th:first-child,
.plan-table tbody th[scope="row"] {
  position: sticky;
  left: 0;
  z-index: 3;
  background: var(--surface);
}

.plan-table thead th:first-child {
  z-index: 5;
}

.plan-table td {
  text-align: center;
}

.plan-table__heading {
  display: grid;
  gap: 0.45rem;
}

.plan-table__heading strong {
  color: var(--blue-dark);
  font-size: 1.05rem;
}

.plan-table__heading span,
.plan-table__heading small {
  color: var(--text-soft);
}

.plan-table__group th {
  padding-top: 1.15rem;
  padding-bottom: 0.75rem;
  background: rgba(239, 246, 255, 0.68);
  color: var(--blue-dark);
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.plan-detail summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--blue-dark);
}

.plan-detail summary::-webkit-details-marker {
  display: none;
}

.plan-detail summary::after {
  content: "+";
  float: right;
  color: var(--orange-dark);
}

.plan-detail[open] summary::after {
  content: "-";
}

.plan-detail p {
  margin-top: 0.9rem;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  position: relative;
  display: block;
  padding: 1.15rem 3.4rem 1.15rem 1.2rem;
  cursor: pointer;
  font-weight: 700;
  color: var(--blue-dark);
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--orange-dark);
  font-size: 1.4rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 1.2rem 1.2rem;
}

[data-theme="dark"] .faq-item summary {
  color: #f8fafc;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.form-intro,
.form-note,
.form-help {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.94rem;
}

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

.form-field {
  display: grid;
  gap: 0.45rem;
}

.form-field label,
.form-fieldset legend {
  font-weight: 600;
}

.form-optional {
  color: var(--text-soft);
  font-weight: 500;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  color: var(--text);
}

[data-theme="dark"] .contact-form input,
[data-theme="dark"] .contact-form textarea,
[data-theme="dark"] .contact-form select {
  background: rgba(15, 23, 42, 0.8);
  color: #f8fafc;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form input:focus-visible,
.contact-form textarea:focus-visible,
.contact-form select:focus-visible,
.plan-detail summary:focus-visible,
.plan-table-wrap:focus-visible {
  outline: 0;
  border-color: rgba(234, 88, 10, 0.85);
  box-shadow: 0 0 0 4px rgba(234, 88, 10, 0.18);
}

.contact-form input[aria-invalid="true"],
.contact-form textarea[aria-invalid="true"],
.contact-form select[aria-invalid="true"] {
  border-color: #dc2626;
}

.form-error {
  min-height: 1.15rem;
  margin: 0;
  color: #b91c1c;
  font-size: 0.9rem;
  font-weight: 600;
}

.form-status {
  padding: 0.85rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(185, 28, 28, 0.2);
  background: rgba(254, 226, 226, 0.9);
  color: #991b1b;
  font-weight: 600;
}

[data-theme="dark"] .form-status {
  background: rgba(69, 10, 10, 0.45);
  border-color: rgba(248, 113, 113, 0.24);
  color: #fecaca;
}

.form-fieldset {
  margin: 0;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 18px;
}

.form-checkbox {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-checkbox + .form-checkbox {
  margin-top: 1rem;
}

.form-checkbox input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.15rem;
  accent-color: var(--orange-dark);
}

.form-checkbox label {
  font-weight: 500;
}

.form-actions {
  display: grid;
  gap: 0.75rem;
}

.contact-form .button {
  justify-self: start;
}

.contact-card--success {
  border-color: rgba(21, 128, 61, 0.18);
}

.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;
}

:focus-visible {
  outline: 3px solid rgba(234, 88, 10, 0.9);
  outline-offset: 3px;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes header-settle {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.js .reveal:not(.is-visible) {
  opacity: 0;
  transform: translateY(var(--reveal-distance, 26px));
}

.reveal {
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js .site-header {
  animation: header-settle 0.45s ease both;
}

.page-hero__image,
.hero__video-frame,
.comparables-showcase__visual img,
.report-visual img,
.pricing-overview__card,
.pricing-mobile__card,
.academy-lesson,
.contact-card,
.faq-item,
.feature-spotlight,
.feature-overview__item,
.numbers-band__card,
.process-card,
.why-card,
.policy-card,
.price-card,
.report-preview {
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease,
    background-color 0.24s ease;
}

@media (hover: hover) and (pointer: fine) {
  .page-hero__visual:hover .page-hero__image,
  .comparables-showcase__visual:hover img,
  .report-visual:hover img {
    transform: translateY(-4px) scale(1.01);
  }

  .pricing-overview__card:hover,
  .pricing-mobile__card:hover,
  .academy-lesson:hover,
  .contact-card:hover,
  .faq-item:hover,
  .feature-spotlight:hover,
  .feature-overview__item:hover,
  .numbers-band__card:hover,
  .process-card:hover,
  .why-card:hover,
  .policy-card:hover,
  .price-card:hover,
  .report-preview:hover {
    transform: translateY(-4px);
  }
}

.pricing-comparison {
  background: linear-gradient(180deg, rgba(255, 247, 237, 0.76), rgba(255, 255, 255, 0.98));
}

.pricing-comparison .container {
  width: min(calc(100% - 2rem), 1560px);
}

.pricing-comparison__surface {
  border: 1px solid rgba(18, 59, 109, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 34px rgba(18, 59, 109, 0.06);
  padding: clamp(1.25rem, 1.8vw, 2rem);
}

.pricing-comparison__header {
  max-width: 48rem;
  margin: 0 auto 1.8rem;
  text-align: center;
}

.pricing-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.35rem;
}

.pricing-billing {
  display: grid;
  justify-items: center;
  gap: 0.55rem;
  margin-bottom: 1.2rem;
}

.pricing-billing__label {
  color: var(--blue-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pricing-billing__switch {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 0.25rem;
  border: 1px solid rgba(18, 59, 109, 0.12);
  border-radius: 999px;
  background: rgba(239, 246, 255, 0.72);
}

.pricing-billing__button {
  min-width: 8.2rem;
  padding: 0.62rem 0.9rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text-soft);
  font-weight: 700;
  cursor: pointer;
}

.pricing-billing__button.is-active {
  background: var(--orange);
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(234, 88, 10, 0.22);
}

.pricing-billing__hint {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.9rem;
  text-align: center;
}

.pricing-overview {
  margin-bottom: 1.4rem;
}

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

.pricing-overview__card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(18, 59, 109, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 24px rgba(18, 59, 109, 0.06);
  align-content: start;
}

.pricing-overview__card--featured {
  border-color: rgba(234, 88, 10, 0.24);
  background: rgba(255, 247, 237, 0.95);
}

.pricing-overview__top {
  display: grid;
  gap: 0.35rem;
  align-content: start;
  position: relative;
}

.pricing-overview__badge {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: var(--orange);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 700;
}

.pricing-overview__name {
  margin: 0;
  color: var(--blue-dark);
  font-size: 1rem;
  font-weight: 800;
}

.pricing-overview__price {
  color: var(--blue-dark);
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.1;
}

.pricing-overview__price-row,
.pricing-mobile__price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.45rem;
}

.pricing-overview__period,
.pricing-overview__alt {
  color: var(--text-soft);
  font-size: 0.78rem;
  line-height: 1.3;
}

.pricing-overview__saving,
.pricing-mobile__saving {
  color: var(--success);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.3;
}

.pricing-overview__cta,
.pricing-mobile__cta {
  width: 100%;
  justify-content: flex-start;
  margin-top: auto;
}

.pricing-overview__lists {
  display: grid;
  gap: 0.85rem;
  align-content: start;
}

.pricing-overview__section {
  display: grid;
  gap: 0.45rem;
}

.pricing-overview__title {
  margin: 0;
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.pricing-overview__item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.6rem;
  align-items: start;
  padding: 0.58rem 0.62rem;
  border: 1px solid rgba(18, 59, 109, 0.08);
  border-radius: 14px;
  background: rgba(248, 250, 252, 0.9);
}

.pricing-overview__list--muted .pricing-overview__item {
  opacity: 0.7;
}

.pricing-overview__status {
  min-width: 1.8rem;
  min-height: 1.8rem;
  padding: 0.35rem;
}

.pricing-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-width: 2.2rem;
  min-height: 2.2rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(18, 59, 109, 0.12);
  background: rgba(255, 255, 255, 0.92);
  color: var(--blue-dark);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1;
}

.pricing-status--included {
  color: var(--success);
}

.pricing-status--excluded {
  color: #dc2626;
}

.pricing-table-wrap {
  overflow: auto;
  border: 1px solid rgba(18, 59, 109, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.pricing-table {
  width: 100%;
  min-width: 0;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: auto;
}

.pricing-table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.pricing-table th,
.pricing-table td {
  padding: 0.82rem 0.85rem;
  border-bottom: 1px solid rgba(18, 59, 109, 0.08);
  background: rgba(255, 255, 255, 0.98);
}

.pricing-table thead th {
  position: static;
  vertical-align: top;
  background: rgba(255, 255, 255, 0.98);
  padding-top: 0.35rem;
  padding-bottom: 0.35rem;
}

.pricing-table thead th:first-child,
.pricing-table tbody th[scope="row"] {
  background: rgba(255, 255, 255, 0.98);
}

.pricing-table thead th:first-child {
  width: 31%;
  text-align: left;
}

.pricing-table thead th:not(:first-child) {
  width: 17.25%;
}

.pricing-table tbody tr:not(.pricing-table__group):nth-child(even) td,
.pricing-table tbody tr:not(.pricing-table__group):nth-child(even) th[scope="row"] {
  background: rgba(248, 250, 252, 0.94);
}

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

.pricing-table tbody td:nth-child(4),
.pricing-table thead th:nth-child(4) {
  background: rgba(255, 247, 237, 0.96);
}

.pricing-table tfoot th,
.pricing-table tfoot td {
  padding: 1rem 0.85rem 1.1rem;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 0;
  border-top: 1px solid rgba(18, 59, 109, 0.08);
}

.pricing-table__footer th {
  color: var(--blue-dark);
  font-size: 0.95rem;
  text-align: left;
}

.pricing-table__footer td {
  text-align: center;
  vertical-align: top;
}

.pricing-table__footer-plan {
  display: grid;
  gap: 0.28rem;
  justify-items: center;
  align-content: start;
}

.pricing-table__footer-plan small {
  display: block;
  max-width: 11.75rem;
  color: var(--text-soft);
  font-size: 0.72rem;
  line-height: 1.25;
}

.pricing-table__footer td:nth-child(4) {
  background: rgba(255, 247, 237, 0.96);
  border-left: 1px solid rgba(234, 88, 10, 0.22);
  border-right: 1px solid rgba(234, 88, 10, 0.22);
}

.pricing-table__footer .button {
  width: 100%;
  justify-content: center;
  min-height: 2.65rem;
}

.pricing-table tbody td:nth-child(4) {
  border-left: 1px solid rgba(234, 88, 10, 0.22);
  border-right: 1px solid rgba(234, 88, 10, 0.22);
}

.pricing-table thead th:nth-child(4) {
  border-top: 1px solid rgba(234, 88, 10, 0.22);
  border-left: 1px solid rgba(234, 88, 10, 0.22);
  border-right: 1px solid rgba(234, 88, 10, 0.22);
}

.pricing-table tbody tr:last-child td:nth-child(4) {
  border-bottom: 1px solid rgba(234, 88, 10, 0.22);
}

.pricing-plan {
  display: grid;
  gap: 0.12rem;
  align-content: start;
  justify-items: center;
  text-align: center;
  min-height: 0;
}

.pricing-plan strong {
  color: var(--blue-dark);
  font-size: 0.88rem;
}

.pricing-plan__price {
  color: var(--blue-dark);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.05;
}

.pricing-plan small {
  color: var(--text-soft);
  font-size: 0.72rem;
  line-height: 1.2;
  max-width: 8.6rem;
}

.pricing-plan--featured {
  position: relative;
}

.pricing-plan__badge {
  justify-self: center;
  padding: 0.14rem 0.42rem;
  border-radius: 999px;
  background: var(--orange);
  color: #ffffff;
  font-size: 0.62rem;
  font-weight: 700;
}

.pricing-plan .button {
  width: 100%;
  justify-content: center;
  margin-top: auto;
  min-height: 2.65rem;
  padding: 0.72rem 0.85rem;
  font-size: 0.9rem;
}

.pricing-table__group th {
  padding-top: 0.8rem;
  padding-bottom: 0.62rem;
  background: rgba(239, 246, 255, 0.8);
  color: var(--blue-dark);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: left;
}

.pricing-table__feature {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  width: 100%;
  max-width: none;
}

.pricing-table__feature-title {
  color: var(--blue-dark);
  font-weight: 700;
  text-align: left;
  line-height: 1.35;
  font-size: 0.98rem;
}

.pricing-tooltip-wrap {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
}

.pricing-tooltip-button {
  display: inline-grid;
  place-items: center;
  width: 1.35rem;
  height: 1.35rem;
  padding: 0;
  border: 1px solid rgba(18, 59, 109, 0.18);
  border-radius: 999px;
  background: rgba(239, 246, 255, 0.9);
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  text-transform: lowercase;
  cursor: pointer;
}

.pricing-tooltip-button span[aria-hidden="true"] {
  text-transform: lowercase;
}

.pricing-tooltip-button:hover,
.pricing-tooltip-button:focus-visible {
  border-color: rgba(234, 88, 10, 0.38);
  background: rgba(255, 247, 237, 0.96);
}

.pricing-tooltip {
  position: absolute;
  left: calc(100% + 0.6rem);
  top: 50%;
  z-index: 12;
  width: min(18rem, 70vw);
  padding: 0.8rem 0.9rem;
  border-radius: 16px;
  background: rgba(11, 39, 74, 0.98);
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(11, 39, 74, 0.22);
  font-size: 0.85rem;
  line-height: 1.55;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-50%) translateX(-6px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0.18s ease;
  pointer-events: none;
}

.pricing-tooltip-wrap:hover .pricing-tooltip,
.pricing-tooltip-wrap:focus-within .pricing-tooltip,
.pricing-tooltip-wrap[data-open="true"] .pricing-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
  pointer-events: auto;
}

.pricing-mobile {
  display: none;
}

.pricing-mobile__grid {
  display: grid;
  gap: 1rem;
}

.pricing-mobile__card {
  border: 1px solid rgba(18, 59, 109, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 26px rgba(18, 59, 109, 0.06);
  padding: 1.2rem;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 1rem;
  align-content: start;
}

.pricing-mobile__card--featured {
  border-color: rgba(234, 88, 10, 0.28);
  background: rgba(255, 247, 237, 0.94);
}

.pricing-mobile__top {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
  position: relative;
}

.pricing-mobile__name {
  color: var(--blue-dark);
  font-size: 1.15rem;
  font-weight: 800;
}

.pricing-mobile__price {
  color: var(--blue-dark);
  font-size: 1.5rem;
  font-weight: 800;
}

.pricing-mobile__period,
.pricing-mobile__alt {
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.5;
}

.pricing-mobile__badge {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.32rem 0.68rem;
  border-radius: 999px;
  background: var(--orange);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
}

.pricing-mobile__sections {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

.pricing-mobile__group {
  display: grid;
  gap: 0.6rem;
}

.pricing-mobile__group-title {
  color: var(--blue-dark);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.pricing-mobile__item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.8rem;
  align-items: start;
  padding: 0.72rem 0.78rem;
  border: 1px solid rgba(18, 59, 109, 0.08);
  border-radius: 16px;
  background: rgba(248, 250, 252, 0.82);
}

.pricing-mobile__item--excluded {
  opacity: 0.72;
}

.pricing-mobile__feature {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.45rem;
  min-width: 0;
  color: var(--blue-dark);
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.45;
}

.pricing-mobile__status {
  white-space: nowrap;
}

.academy-course-block__header h3 {
  margin: 0 0 0.3rem;
}

.academy-course-lessons__grid {
  display: grid;
  gap: 1rem;
}

.academy-course-block + .academy-course-block {
  margin-top: 2.8rem;
}

.academy-course-block__header {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 1.15rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(18, 59, 109, 0.08);
}

.academy-course-block__eyebrow {
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.academy-lesson {
  display: grid;
  gap: 1rem;
  align-content: start;
  padding: 1.15rem;
  border-radius: 24px;
}

.academy-lesson__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 1.5rem;
  align-items: center;
}

.academy-lesson__content {
  display: grid;
  gap: 0.85rem;
  align-content: start;
}

.academy-lesson__badge {
  justify-self: start;
  padding: 0.34rem 0.72rem;
  border-radius: 999px;
  background: rgba(234, 88, 10, 0.12);
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.academy-lesson--extra .academy-lesson__badge {
  background: rgba(18, 59, 109, 0.1);
  color: var(--blue-dark);
}

.academy-lesson h3 {
  margin: 0;
  font-size: clamp(1.18rem, 1.3vw, 1.38rem);
}

.academy-lesson__topics {
  display: grid;
  gap: 0.48rem;
  padding-left: 1.1rem;
  margin: 0;
  color: var(--text-soft);
  line-height: 1.55;
}

.academy-lesson__video {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.92);
  aspect-ratio: 16 / 9;
}

.academy-lesson__video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

[data-theme="dark"] .pricing-comparison {
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.94), rgba(15, 23, 42, 1));
}

[data-theme="dark"] .pricing-comparison__surface,
[data-theme="dark"] .pricing-table-wrap,
[data-theme="dark"] .pricing-mobile__card {
  border-color: rgba(148, 163, 184, 0.16);
  background: rgba(15, 23, 42, 0.94);
  box-shadow: 0 18px 36px rgba(2, 6, 23, 0.28);
}

[data-theme="dark"] .pricing-status {
  border-color: rgba(148, 163, 184, 0.2);
  background: rgba(30, 41, 59, 0.9);
  color: #f8fafc;
}

[data-theme="dark"] .pricing-billing__label {
  color: #f8fafc;
}

[data-theme="dark"] .pricing-billing__switch {
  border-color: rgba(148, 163, 184, 0.18);
  background: rgba(30, 41, 59, 0.82);
}

[data-theme="dark"] .pricing-billing__button {
  color: #dbe4f0;
}

[data-theme="dark"] .pricing-billing__button.is-active {
  color: #ffffff;
}

[data-theme="dark"] .pricing-billing__hint {
  color: #dbe4f0;
}

[data-theme="dark"] .pricing-overview__card {
  border-color: rgba(148, 163, 184, 0.16);
  background: rgba(15, 23, 42, 0.94);
  box-shadow: 0 18px 36px rgba(2, 6, 23, 0.28);
}

[data-theme="dark"] .pricing-overview__card--featured {
  border-color: rgba(251, 146, 60, 0.22);
  background: rgba(77, 31, 12, 0.34);
}

[data-theme="dark"] .pricing-overview__name,
[data-theme="dark"] .pricing-overview__price,
[data-theme="dark"] .pricing-overview__title {
  color: #f8fafc;
}

[data-theme="dark"] .pricing-overview__period,
[data-theme="dark"] .pricing-overview__alt {
  color: #dbe4f0;
}

[data-theme="dark"] .pricing-overview__item {
  border-color: rgba(148, 163, 184, 0.16);
  background: rgba(30, 41, 59, 0.76);
}

[data-theme="dark"] .pricing-table th,
[data-theme="dark"] .pricing-table td,
[data-theme="dark"] .pricing-table thead th:first-child,
[data-theme="dark"] .pricing-table tbody th[scope="row"] {
  background: rgba(15, 23, 42, 0.96);
  border-bottom-color: rgba(148, 163, 184, 0.14);
}

[data-theme="dark"] .pricing-table tbody tr:not(.pricing-table__group):nth-child(even) td,
[data-theme="dark"] .pricing-table tbody tr:not(.pricing-table__group):nth-child(even) th[scope="row"] {
  background: rgba(30, 41, 59, 0.92);
}

[data-theme="dark"] .pricing-table tbody td:nth-child(4),
[data-theme="dark"] .pricing-table thead th:nth-child(4) {
  background: rgba(77, 31, 12, 0.5);
}

[data-theme="dark"] .pricing-table tfoot th,
[data-theme="dark"] .pricing-table tfoot td,
[data-theme="dark"] .pricing-table__footer td:nth-child(4) {
  background: rgba(15, 23, 42, 0.96);
  border-top-color: rgba(148, 163, 184, 0.14);
}

[data-theme="dark"] .pricing-table__footer td:nth-child(4) {
  background: rgba(77, 31, 12, 0.5);
  border-left-color: rgba(251, 146, 60, 0.18);
  border-right-color: rgba(251, 146, 60, 0.18);
}

[data-theme="dark"] .pricing-table__footer-plan small {
  color: #dbe4f0;
}

[data-theme="dark"] .pricing-table__group th {
  background: rgba(30, 41, 59, 0.98);
  color: #f8fafc;
}

[data-theme="dark"] .pricing-plan strong,
[data-theme="dark"] .pricing-plan__price,
[data-theme="dark"] .pricing-table__feature-title,
[data-theme="dark"] .pricing-mobile__name,
[data-theme="dark"] .pricing-mobile__price,
[data-theme="dark"] .pricing-mobile__group-title,
[data-theme="dark"] .pricing-mobile__feature {
  color: #f8fafc;
}

[data-theme="dark"] .pricing-plan small,
[data-theme="dark"] .pricing-table caption,
[data-theme="dark"] .pricing-mobile__period,
[data-theme="dark"] .pricing-mobile__alt {
  color: #dbe4f0;
}

[data-theme="dark"] .pricing-tooltip-button {
  border-color: rgba(148, 163, 184, 0.24);
  background: rgba(30, 41, 59, 0.95);
  color: #f8fafc;
}

[data-theme="dark"] .pricing-mobile__card--featured {
  border-color: rgba(251, 146, 60, 0.22);
  background: rgba(77, 31, 12, 0.34);
}

[data-theme="dark"] .pricing-mobile__item {
  border-color: rgba(148, 163, 184, 0.16);
  background: rgba(30, 41, 59, 0.76);
}

[data-theme="dark"] .academy-lesson__badge {
  color: #fdba74;
}

[data-theme="dark"] .academy-lesson--extra .academy-lesson__badge {
  color: #f8fafc;
}

[data-theme="dark"] .academy-lesson__badge {
  background: rgba(249, 115, 22, 0.16);
}

[data-theme="dark"] .academy-lesson__topics {
  color: #dbe4f0;
}

[data-theme="dark"] .academy-course-block__header {
  border-bottom-color: rgba(148, 163, 184, 0.16);
}

@media (min-width: 1280px) {
  .pricing-comparison .container {
    width: min(calc(100% - 2.5rem), 1600px);
  }

  .pricing-comparison__surface {
    padding: 1.5rem 1.5rem 1.75rem;
  }

  .pricing-table th,
  .pricing-table td {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (max-width: 992px) {
  .pricing-overview {
    display: none;
  }

  .pricing-comparison .container {
    width: min(calc(100% - 1.5rem), 1400px);
  }

  .hero,
  .page-hero,
  .grid--3,
  .grid--2,
  .numbers-band__grid,
  .report-layout,
  .feature-section__intro,
  .comparables-showcase,
  .process-section,
  .process-section__list {
    grid-template-columns: 1fr;
  }

  .hero,
  .page-hero {
    gap: 1.6rem;
  }

  .hero--splash {
    min-height: 48vh;
    padding-top: 1.6rem;
    padding-bottom: 2rem;
  }

  .hero__splash-layout {
    grid-template-columns: minmax(0, 0.96fr) minmax(420px, 1.04fr);
    gap: 2.4rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 1rem;
    right: 1rem;
    display: block;
    padding: 0 1rem 1rem;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--border);
    border-top: 0;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 18px 34px rgba(18, 59, 109, 0.12);
  }

  .site-header--overlay .site-nav,
  .site-header--overlay .site-nav__link,
  .site-header--overlay .site-nav__submenu-toggle,
  .site-header--overlay .site-nav__submenu-link,
  .site-header--overlay .site-nav__access {
    color: var(--blue-dark);
  }

  .site-header--overlay .site-nav {
    background: rgba(255, 255, 255, 0.98);
    border-color: var(--border);
    box-shadow: 0 18px 34px rgba(18, 59, 109, 0.12);
  }

  .site-header--overlay .site-nav__link:hover,
  .site-header--overlay .site-nav__link:focus-visible,
  .site-header--overlay .site-nav__submenu-toggle:hover,
  .site-header--overlay .site-nav__submenu-toggle:focus-visible,
  .site-header--overlay .site-nav__link[aria-current="page"],
  .site-header--overlay .site-nav__submenu-toggle[aria-current="page"] {
    color: var(--orange-dark);
    background: rgba(239, 246, 255, 0.8);
  }

  [data-theme="dark"] .site-nav {
    background: rgba(15, 23, 42, 0.98);
    border-color: rgba(148, 163, 184, 0.22);
  }

  [data-theme="dark"] .site-header--overlay .site-nav,
  [data-theme="dark"] .site-header--overlay .site-nav__link,
  [data-theme="dark"] .site-header--overlay .site-nav__submenu-toggle,
  [data-theme="dark"] .site-header--overlay .site-nav__submenu-link,
  [data-theme="dark"] .site-header--overlay .site-nav__access {
    color: #f8fafc;
  }

  [data-theme="dark"] .site-header--overlay .site-nav {
    background: rgba(15, 23, 42, 0.98);
    border-color: rgba(148, 163, 184, 0.22);
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
    padding: 1rem 0 0;
  }

  .site-nav__link {
    display: block;
    width: 100%;
    min-height: 0;
    padding: 0.8rem 0.85rem;
    border-radius: 12px;
  }

  .site-nav__item,
  .site-nav__submenu-toggle,
  .site-nav__submenu {
    width: 100%;
  }

  .site-nav__submenu-toggle {
    justify-content: space-between;
    min-height: 0;
    padding: 0.8rem 0.85rem;
    border-radius: 12px;
  }

  .site-nav__submenu {
    position: static;
    min-width: 0;
    margin-top: 0.35rem;
    padding: 0.55rem;
    border-radius: 14px;
    box-shadow: none;
    background: rgba(239, 246, 255, 0.84);
  }

  [data-theme="dark"] .site-nav__submenu {
    background: rgba(30, 41, 59, 0.9);
  }

  .site-nav__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.6rem;
    padding: 1rem 0 0;
    margin-top: 0.75rem;
    border-top: 1px solid var(--border);
  }

  .header__actions {
    display: none;
  }

  .site-nav__actions .button,
  .site-nav__actions .theme-toggle,
  .site-nav__actions .site-nav__access {
    width: 100%;
  }

  .site-nav__access {
    justify-content: center;
    padding: 0.9rem 1rem 0.2rem;
  }

  .pricing-table thead th {
    top: calc(var(--header-height) + 0.35rem);
  }

  .report-visual {
    order: -1;
  }

  .academy-lesson__layout {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 768px) {
  .partners-marquee {
    mask-image: none;
  }

  .partners-marquee__track {
    animation-duration: 26s;
  }

  .partners-marquee__item {
    width: 10rem;
    min-width: 10rem;
    min-height: 5.8rem;
    padding: 0.9rem 1rem;
    border-radius: 18px;
  }

  .partners-marquee__item img {
    max-height: 2.2rem;
  }

  .cookie-consent {
    inset: auto 0.75rem 0.75rem 0.75rem;
  }

  .cookie-consent__banner {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 0.95rem;
  }

  .cookie-consent__actions,
  .cookie-consent__modal-actions {
    justify-content: stretch;
  }

  .cookie-consent__actions .button,
  .cookie-consent__modal-actions .button,
  .cookie-embed-placeholder__actions .button {
    width: 100%;
  }

  .cookie-consent__modal {
    width: min(100vw - 1rem, 32rem);
    padding: 1rem;
  }

  .cookie-consent__option {
    grid-template-columns: 1fr;
  }

  .assist-widget {
    right: 0.5rem;
    bottom: 0.5rem;
    gap: 0.45rem;
  }

  .assist-widget__hint {
    display: none;
  }

  .assist-widget__panel {
    width: min(18rem, calc(100vw - 1rem));
    padding: 0.9rem;
    border-radius: 18px;
  }

  .assist-widget__toggle {
    width: 4.9rem;
    height: 4.9rem;
  }

  .academy-course-block + .academy-course-block {
    margin-top: 2.2rem;
  }

  .academy-lesson {
    padding: 1rem;
  }

  .academy-lesson__layout {
    gap: 1rem;
  }

  .theme-toggle {
    width: 2.65rem;
    height: 2.65rem;
  }

  :root {
    --header-height: 64px;
  }

  .header__inner {
    min-height: 64px;
  }

  .hero,
  .page-hero,
  .section,
  .cta-banner {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .hero--splash {
    min-height: 40vh;
    margin-top: calc(var(--header-height) * -1);
    padding-top: calc(1rem + var(--header-height));
    padding-bottom: 1.4rem;
  }

  .hero--splash .container {
    width: min(calc(100% - 1.25rem), 1360px);
  }

  .hero__splash-layout {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }

  .hero__splash-content,
  .hero__video-card {
    padding-left: 0;
    padding-right: 0;
  }

  .hero__video-card {
    width: 100%;
    max-width: 21rem;
    justify-self: center;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(1.9rem, 8vw, 2.7rem);
  }

  .hero p,
  .page-hero p,
  .section__intro {
    font-size: 0.98rem;
    line-height: 1.64;
  }

  .hero__actions .button,
  .cta-banner__actions .button,
  .button--header,
  .contact-form .button {
    width: 100%;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero__highlights {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    white-space: normal;
  }

  .hero__highlights li {
    font-size: 0.88rem;
    white-space: normal;
  }

  .hero__highlights li i {
    font-size: 0.9rem;
  }

  .hero__highlights li:not(:last-child)::after {
    display: none;
  }

  .hero__brand-mark {
    width: clamp(13rem, 58vw, 18rem);
  }

  .hero__badge {
    margin-bottom: 0.85rem;
  }

  .hero__panel-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero__panel-head strong {
    text-align: left;
  }

  .hero__product-image {
    max-height: 320px;
  }

  .hero__video-play {
    width: 5.2rem;
    height: 5.2rem;
  }

  .hero__panel,
  .card,
  .contact-card,
  .price-card,
  .policy-card,
  .report-preview,
  .cta-banner__box,
  .feature-spotlight {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .pricing-comparison__surface {
    padding: 1rem;
    border-radius: 22px;
  }

  .pricing-comparison__header {
    text-align: left;
    margin-bottom: 1.25rem;
  }

  .cookie-policy-status {
    margin-left: 0;
    margin-top: 0.35rem;
  }

  .cookie-policy-table {
    min-width: 34rem;
  }

  .js .pricing-table-wrap {
    display: none;
  }

  .js .pricing-mobile {
    display: block;
  }

  .pricing-mobile__grid {
    grid-template-columns: 1fr;
  }

  .pricing-tooltip {
    left: auto;
    right: 0;
    top: calc(100% + 0.55rem);
    width: min(16rem, calc(100vw - 3rem));
    transform: translateY(-4px);
  }

  .pricing-tooltip-wrap:hover .pricing-tooltip,
  .pricing-tooltip-wrap:focus-within .pricing-tooltip,
  .pricing-tooltip-wrap[data-open="true"] .pricing-tooltip {
    transform: translateY(0);
  }

  .feature-overview__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__links {
    gap: 0.8rem 1rem;
  }

  .nav-toggle__label {
    display: none;
  }

}

@media (max-width: 390px) {
  .container {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  .header__inner {
    gap: 0.6rem;
    min-height: 60px;
  }

  .brand {
    gap: 0.55rem;
    font-size: 0.95rem;
  }

  .brand__logo {
    width: clamp(8.5rem, 34vw, 11rem);
  }

  .nav-toggle,
  .theme-toggle {
    padding: 0.6rem 0.75rem;
  }

  .site-nav {
    left: 0.625rem;
    right: 0.625rem;
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  .hero,
  .page-hero,
  .section,
  .cta-banner {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .hero__actions,
  .cta-banner__actions {
    gap: 0.75rem;
  }

  .button {
    min-height: 48px;
    padding: 0.78rem 1rem;
  }

  .report-preview__header,
  .report-preview__body,
  .report-preview__block {
    padding-left: 0.9rem;
    padding-right: 0.9rem;
  }
}

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

  .assist-widget__hint,
  .assist-widget__toggle {
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
