:root {
  --ink: #17202a;
  --muted: #65717d;
  --bg: #eef5f8;
  --paper: #ffffff;
  --navy-950: #111827;
  --navy-900: #253047;
  --navy-800: #114b5f;
  --teal-700: #007c89;
  --teal-600: #00a8b5;
  --yellow: #ffd166;
  --blue: #4361ee;
  --red: #ef476f;
  --line: rgba(23, 32, 42, 0.14);
  --shadow: 0 18px 55px rgba(17, 24, 39, 0.13);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 10px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 10px 14px;
  background: var(--yellow);
  color: var(--navy-950);
  border-radius: var(--radius);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(17, 24, 39, 0.94);
  color: #fffdf4;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.header-shell {
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-600), var(--blue));
  color: white;
  font-weight: 900;
  box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.2);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
}

.brand small {
  color: rgba(255, 253, 244, 0.72);
  font-size: 0.78rem;
}

.primary-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 4px;
}

.primary-nav a,
.header-cta {
  color: #fffdf4;
  text-decoration: none;
  padding: 10px 12px;
  border-radius: var(--radius);
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  outline: none;
}

.header-cta {
  background: var(--yellow);
  color: var(--navy-950);
  font-weight: 900;
  text-align: center;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 6px;
  justify-self: end;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  color: #fffdf4;
  border-radius: var(--radius);
  padding: 8px 10px;
}

.menu-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 76vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fffdf4;
  background: var(--navy-950);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(17, 24, 39, 0.96), rgba(0, 124, 137, 0.72) 46%, rgba(255, 209, 102, 0.18)),
    linear-gradient(0deg, rgba(17, 24, 39, 0.76), rgba(17, 24, 39, 0.06) 45%),
    url("assets/review-hero.png") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 12px;
  background: linear-gradient(90deg, var(--teal-600) 0 42%, var(--yellow) 42% 72%, var(--red) 72% 100%);
}

.hero-content {
  padding: 96px 0 88px;
}

.eyebrow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.eyebrow span {
  border: 1px solid rgba(255, 253, 244, 0.28);
  background: rgba(255, 253, 244, 0.1);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.86rem;
  font-weight: 900;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 860px;
  margin-bottom: 18px;
  font-size: 4.15rem;
  line-height: 0.99;
}

h2 {
  font-size: 2.1rem;
  line-height: 1.12;
  margin-bottom: 16px;
}

h3 {
  font-size: 1.15rem;
  line-height: 1.24;
  margin-bottom: 10px;
}

.hero-copy {
  max-width: 700px;
  font-size: 1.2rem;
  color: rgba(255, 253, 244, 0.86);
  margin-bottom: 26px;
}

.hero-actions,
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 11px 16px;
  text-decoration: none;
  font-weight: 900;
  color: inherit;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
  box-shadow: 0 10px 22px rgba(17, 24, 39, 0.18);
}

.button-primary {
  background: var(--teal-600);
  color: white;
}

.button-secondary {
  background: var(--yellow);
  color: var(--navy-950);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fffdf4;
}

.button-ghost.light {
  color: #fffdf4;
  border-color: rgba(255, 255, 255, 0.32);
}

.button-ghost.dark {
  color: var(--navy-900);
  border-color: var(--line);
  background: white;
}

.legal-line {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 253, 244, 0.74);
  font-size: 0.95rem;
}

.trust-band {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid article {
  padding: 22px 18px;
  border-left: 1px solid var(--line);
}

.trust-grid article:last-child {
  border-right: 1px solid var(--line);
}

.trust-label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.trust-grid strong {
  display: block;
  line-height: 1.22;
}

.section {
  padding: 88px 0;
}

.section-muted {
  background: #ddeff3;
  border-block: 1px solid var(--line);
}

.section-blue {
  background: var(--navy-800);
  color: #fffdf4;
}

.section-kicker {
  color: var(--teal-700);
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-blue .section-kicker {
  color: var(--yellow);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 32px;
}

.section-heading.narrow {
  max-width: 700px;
}

.section-heading p,
.split-layout p {
  color: var(--muted);
}

.section-blue p {
  color: rgba(255, 253, 244, 0.76);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 48px;
  align-items: start;
}

.split-layout.reverse {
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
}

.info-panel,
.feature-card,
.responsible-card,
.contact-card,
.comparison-table {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.info-panel {
  padding: 26px;
}

.dark-panel {
  background: rgba(255, 253, 244, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.license-list {
  margin: 0;
}

.license-list div {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.license-list div:first-child {
  padding-top: 0;
}

.license-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.license-list dt {
  font-weight: 900;
  margin-bottom: 4px;
}

.license-list dd {
  margin: 0;
  color: var(--muted);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.feature-card {
  padding: 22px;
  box-shadow: none;
}

.feature-card p,
.responsible-card p,
.contact-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.icon-badge {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-700), var(--blue));
  color: #fffdf4;
  font-weight: 900;
}

.comparison-table {
  margin-top: 28px;
  overflow: hidden;
  box-shadow: none;
}

.table-row {
  display: grid;
  grid-template-columns: 0.7fr 1.35fr 1.2fr;
  border-top: 1px solid var(--line);
}

.table-row:first-child {
  border-top: 0;
}

.table-row > div {
  padding: 16px;
}

.table-row > div + div {
  border-left: 1px solid var(--line);
}

.table-head {
  background: var(--navy-900);
  color: #fffdf4;
  font-weight: 900;
}

.responsible-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.responsible-card {
  padding: 26px;
  box-shadow: none;
}

.responsible-card ul,
.check-list {
  padding-left: 20px;
  margin: 0 0 20px;
}

.responsible-card li,
.check-list li {
  margin-bottom: 9px;
}

.alert-card {
  background: #fff7df;
  border-color: rgba(255, 209, 102, 0.62);
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--teal-700);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.check-list {
  margin-bottom: 0;
}

.check-list li {
  color: rgba(255, 253, 244, 0.86);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 26px;
  box-shadow: none;
}

.contact-link {
  color: var(--teal-700);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.site-footer {
  background: var(--navy-950);
  color: #fffdf4;
  padding: 54px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.4fr) repeat(3, minmax(160px, 1fr));
  gap: 32px;
}

.footer-brand {
  margin-bottom: 16px;
}

.site-footer p,
.site-footer span {
  color: rgba(255, 253, 244, 0.7);
}

.site-footer h2 {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 12px;
}

.site-footer nav,
.site-footer address {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-style: normal;
}

.site-footer a,
.site-footer button {
  color: rgba(255, 253, 244, 0.86);
  text-decoration: none;
}

.site-footer button {
  width: fit-content;
  border: 0;
  padding: 0;
  background: transparent;
  text-align: left;
}

.site-footer a:hover,
.site-footer button:hover {
  color: var(--yellow);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  justify-content: space-between;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.9rem;
}

.footer-bottom a {
  color: var(--yellow);
  font-weight: 900;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
  padding: 16px;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
}

.cookie-banner div {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.modal {
  width: min(540px, calc(100% - 32px));
  border: 0;
  border-radius: var(--radius);
  padding: 0;
  color: var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.modal::backdrop {
  background: rgba(17, 24, 39, 0.72);
}

.modal form {
  padding: 28px;
}

.modal h2 {
  font-size: 1.55rem;
  padding-right: 88px;
}

.modal p {
  color: var(--muted);
}

.modal-close {
  float: right;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 8px 10px;
  color: var(--ink);
}

.legal-page {
  padding: 72px 0;
}

.legal-page article {
  max-width: 880px;
}

.legal-page h1 {
  color: var(--ink);
  font-size: 2.55rem;
  line-height: 1.08;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
}

@media (max-width: 980px) {
  .header-shell {
    grid-template-columns: auto auto;
  }

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

  .primary-nav {
    grid-column: 1 / -1;
    justify-self: stretch;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0 0 14px;
  }

  .primary-nav.is-open {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  h1 {
    font-size: 3.1rem;
  }

  .trust-grid,
  .card-grid,
  .responsible-layout,
  .contact-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-layout,
  .split-layout.reverse {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .brand strong {
    font-size: 0.92rem;
  }

  .hero {
    min-height: 72vh;
  }

  .hero-media {
    background:
      linear-gradient(0deg, rgba(17, 24, 39, 0.92), rgba(0, 124, 137, 0.42)),
      url("assets/review-hero.png") 58% center / cover no-repeat;
  }

  .hero-content {
    padding: 74px 0 70px;
  }

  h1,
  .legal-page h1 {
    font-size: 2.35rem;
    line-height: 1.05;
  }

  h2 {
    font-size: 1.55rem;
  }

  .hero-copy {
    font-size: 1.02rem;
  }

  .hero-actions,
  .action-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 64px 0;
  }

  .trust-grid,
  .card-grid,
  .responsible-layout,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid article,
  .trust-grid article:last-child {
    border-inline: 0;
    border-bottom: 1px solid var(--line);
  }

  .table-row {
    grid-template-columns: 1fr;
  }

  .table-row > div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner div {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
