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

:root {
  --blue: #1859e8;
  --blue-dark: #0b2859;
  --blue-soft: #eaf1ff;
  --blue-pale: #f5f8ff;
  --aqua: #c9f3ee;
  --mint: #20b99a;
  --yellow: #ffd86a;
  --coral: #ff806d;
  --ink: #10213d;
  --muted: #637089;
  --line: #dfe5ef;
  --surface: #f4f6f9;
  --white: #ffffff;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 32px;
  --container: 1160px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Figtree", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

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

h1,
h2,
h3,
h4 {
  letter-spacing: -0.035em;
  line-height: 1.1;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 6vw, 5.35rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 3.3rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
}

p {
  margin-bottom: 20px;
}

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

.container--narrow {
  width: min(calc(100% - 40px), 780px);
  margin-inline: auto;
}

.section {
  padding-block: 110px;
}

.section--compact {
  padding-block: 72px;
}

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

.section--blue {
  color: var(--white);
  background: var(--blue-dark);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
}

.section-head__copy {
  max-width: 680px;
}

.section-head p {
  max-width: 600px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.section--blue .section-head p {
  color: #cbd9f4;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.section--blue .eyebrow {
  color: #8fb2ff;
}

.lead {
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  line-height: 1.6;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 700;
}

.text-link::after {
  content: "→";
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 700;
}

.btn--primary {
  color: var(--white);
  background: var(--blue);
}

.btn--dark {
  color: var(--white);
  background: var(--blue-dark);
}

.btn--light {
  color: var(--blue-dark);
  background: var(--white);
}

.btn--outline {
  color: var(--blue);
  border-color: #b9c9e9;
  background: transparent;
}

.btn--wide {
  width: 100%;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  border-radius: 8px;
  background: var(--blue-dark);
  transform: translateY(-150%);
}

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

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

/* Header */
.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid #edf0f5;
  background: rgba(255, 255, 255, 0.98);
}

.site-header__inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.logo img {
  width: 186px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav__links a {
  color: #31415d;
  font-size: 0.95rem;
  font-weight: 600;
}

.site-nav__links a[aria-current="page"] {
  color: var(--blue);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: var(--blue-soft);
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: var(--blue-dark);
  content: "";
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: 88px 104px;
}

.hero::after {
  position: absolute;
  right: -95px;
  bottom: -160px;
  width: 380px;
  height: 380px;
  border: 74px solid var(--blue-soft);
  border-radius: 50%;
  content: "";
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  align-items: center;
  gap: 74px;
}

.hero__copy {
  max-width: 640px;
}

.hero__copy h1 span {
  color: var(--blue);
}

.hero__copy .lead {
  max-width: 590px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 34px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.hero__proof span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero__proof span::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  content: "";
}

.hero-visual {
  position: relative;
  min-height: 510px;
}

.hero-visual__main {
  position: absolute;
  inset: 24px 26px 28px 6px;
  overflow: hidden;
  padding: 34px;
  border-radius: 40px 40px 40px 112px;
  color: var(--white);
  background: var(--blue);
}

.hero-visual__top {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 46px;
}

.hero-visual__top i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
}

.hero-visual__title {
  max-width: 330px;
  margin-bottom: 34px;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.13;
}

.mini-builder {
  padding: 17px;
  border-radius: 16px;
  color: var(--ink);
  background: var(--white);
}

.mini-builder__bar {
  display: flex;
  gap: 6px;
  margin-bottom: 15px;
}

.mini-builder__bar span {
  display: block;
  width: 46px;
  height: 6px;
  border-radius: 4px;
  background: #d8e2f4;
}

.mini-builder__bar span:first-child {
  width: 24px;
  background: var(--blue);
}

.mini-builder__body {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 12px;
}

.mini-builder__text b,
.mini-builder__text i {
  display: block;
  height: 8px;
  margin-bottom: 9px;
  border-radius: 5px;
  background: #b9c9e9;
}

.mini-builder__text b {
  width: 90%;
  height: 13px;
  background: var(--blue-dark);
}

.mini-builder__text i {
  width: 70%;
}

.mini-builder__image {
  min-height: 92px;
  border-radius: 11px 11px 28px 11px;
  background: var(--aqua);
}

.float-card {
  position: absolute;
  z-index: 3;
  padding: 16px 18px;
  border: 1px solid #d6e0f2;
  border-radius: 16px;
  background: var(--white);
}

.float-card--score {
  top: 0;
  right: 0;
}

.float-card--time {
  right: 8px;
  bottom: 2px;
}

.float-card strong {
  display: block;
  color: var(--blue);
  font-size: 1.45rem;
  line-height: 1;
}

.float-card span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
}

/* Cards and grids */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

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

.card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.card--soft {
  border-color: transparent;
  background: var(--blue-pale);
}

.card__icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 26px;
  place-items: center;
  border-radius: 14px;
  color: var(--blue);
  background: var(--blue-soft);
  font-size: 1.1rem;
  font-weight: 800;
}

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

.card p:last-child {
  margin-bottom: 0;
}

.category-card {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  justify-content: space-between;
}

.category-card:nth-child(2) {
  margin-top: 34px;
  background: #f0fbf9;
}

.category-card:nth-child(3) .card__icon {
  color: #8e5800;
  background: #fff4d2;
}

.feature-split {
  display: grid;
  grid-template-columns: 0.93fr 1.07fr;
  align-items: center;
  gap: 72px;
}

.feature-panel {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  padding: 44px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--blue-dark);
}

.feature-panel::before {
  position: absolute;
  top: -62px;
  right: -62px;
  width: 220px;
  height: 220px;
  border: 42px solid #244679;
  border-radius: 50%;
  content: "";
}

.feature-panel__label {
  position: relative;
  z-index: 1;
  color: #a9c3f5;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.feature-panel__number {
  position: absolute;
  right: 34px;
  bottom: -38px;
  color: #244679;
  font-size: 13rem;
  font-weight: 800;
  line-height: 1;
}

.feature-panel__steps {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  max-width: 320px;
  margin-top: 70px;
}

.feature-panel__step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  color: var(--ink);
  background: var(--white);
  font-weight: 700;
}

.feature-panel__step b {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-size: 0.75rem;
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 32px;
}

.check-list li::before {
  position: absolute;
  top: 3px;
  left: 0;
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--mint);
  content: "✓";
  font-size: 0.7rem;
  font-weight: 800;
}

.topic-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.topic-cloud a,
.tag {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border: 1px solid #d5deec;
  border-radius: 999px;
  background: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
}

.topic-cloud a:nth-child(3n + 2) {
  color: var(--blue);
  border-color: #bfd0f4;
  background: var(--blue-soft);
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.blog-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.blog-card__visual {
  display: flex;
  min-height: 170px;
  align-items: end;
  padding: 22px;
  background: var(--blue-soft);
}

.blog-card:nth-child(2) .blog-card__visual,
.blog-card:nth-child(5) .blog-card__visual {
  background: #e3f8f4;
}

.blog-card:nth-child(3) .blog-card__visual,
.blog-card:nth-child(6) .blog-card__visual {
  background: #fff4d6;
}

.blog-card__shape {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  border-radius: 22px 22px 48px 22px;
  color: var(--white);
  background: var(--blue);
  font-size: 1.65rem;
  font-weight: 800;
}

.blog-card__body {
  padding: 24px;
}

.blog-card__meta {
  display: flex;
  gap: 14px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.blog-card h3 {
  font-size: 1.2rem;
}

/* CTA and newsletter */
.newsletter {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 44px;
  padding: 52px;
  border-radius: var(--radius-lg);
  background: var(--blue-soft);
}

.newsletter h2 {
  max-width: 610px;
  margin-bottom: 10px;
}

.newsletter p {
  max-width: 570px;
  margin-bottom: 0;
  color: var(--muted);
}

.newsletter__form {
  display: flex;
  gap: 10px;
}

.newsletter__form input {
  min-width: 250px;
  padding: 14px 16px;
  border: 1px solid #bdcbe2;
  border-radius: var(--radius-sm);
  color: var(--ink);
  background: var(--white);
}

.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 50px 56px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--blue);
}

.cta-band h2 {
  max-width: 670px;
  margin-bottom: 10px;
}

.cta-band p {
  max-width: 630px;
  margin-bottom: 0;
  color: #dbe6ff;
}

/* Footer */
.site-footer {
  padding-block: 76px 28px;
  color: #cbd6e9;
  background: #081a36;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 52px;
}

.site-footer .logo img {
  filter: brightness(0) invert(1);
}

.site-footer__intro {
  max-width: 300px;
  margin-top: 22px;
  color: #9fb0cb;
}

.site-footer h3 {
  margin-bottom: 20px;
  color: var(--white);
  font-size: 1rem;
  letter-spacing: 0;
}

.site-footer ul {
  display: grid;
  gap: 11px;
  padding: 0;
  list-style: none;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 58px;
  padding-top: 24px;
  border-top: 1px solid #213453;
  color: #8294b1;
  font-size: 0.85rem;
}

/* Subpage hero and breadcrumbs */
.breadcrumbs {
  padding-top: 24px;
  color: var(--muted);
  font-size: 0.85rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
  margin-left: 8px;
  color: #aab4c5;
  content: "/";
}

.page-hero {
  padding-block: 62px 90px;
  background: var(--blue-pale);
}

.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: 70px;
}

.page-hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.7rem);
}

.page-hero__visual {
  position: relative;
  min-height: 360px;
  padding: 34px;
  border-radius: 36px 36px 100px 36px;
  color: var(--white);
  background: var(--blue);
}

.page-hero__visual h3 {
  max-width: 280px;
  font-size: 1.8rem;
}

.page-hero__visual .topic-cloud {
  position: absolute;
  right: -22px;
  bottom: 32px;
  max-width: 330px;
}

.page-hero__visual .tag {
  color: var(--ink);
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.meta-row span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.meta-row span::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  content: "";
}

/* Pillar */
.jump-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.jump-nav strong {
  width: 100%;
  margin-bottom: 4px;
}

.jump-nav a {
  padding: 8px 13px;
  border-radius: 8px;
  color: var(--blue);
  background: var(--blue-soft);
  font-size: 0.88rem;
  font-weight: 700;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  align-items: start;
  gap: 70px;
}

.prose h2 {
  margin-top: 64px;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
}

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

.prose h3 {
  margin-top: 34px;
}

.prose p,
.prose li {
  color: #43516a;
}

.prose ul,
.prose ol {
  padding-left: 22px;
}

.prose li {
  margin-bottom: 9px;
}

.prose .callout {
  margin-block: 36px;
}

.sidebar {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 18px;
}

.sidebar-card {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--blue-soft);
}

.sidebar-card h3 {
  font-size: 1.1rem;
}

.sidebar-card p,
.sidebar-card li {
  color: var(--muted);
  font-size: 0.9rem;
}

.sidebar-card ul {
  display: grid;
  gap: 8px;
  padding-left: 18px;
}

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

.route-card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--surface);
}

.route-card:nth-child(2) {
  margin-top: 30px;
  background: var(--blue-soft);
}

.route-card__number {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 32px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-weight: 800;
}

/* Guide */
.guide-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  align-items: start;
  gap: 70px;
}

.toc {
  position: sticky;
  top: 24px;
  padding: 22px;
  border-radius: var(--radius);
  background: var(--surface);
}

.toc h2 {
  font-size: 1rem;
  letter-spacing: 0;
}

.toc ol {
  display: grid;
  gap: 8px;
  padding-left: 20px;
  color: var(--muted);
  font-size: 0.84rem;
}

.guide-step {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 24px;
  padding-block: 50px;
  border-bottom: 1px solid var(--line);
}

.guide-step:first-child {
  padding-top: 0;
}

.guide-step__number {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 18px 18px 30px 18px;
  color: var(--white);
  background: var(--blue);
  font-size: 1.1rem;
  font-weight: 800;
}

.guide-step h2 {
  font-size: clamp(1.55rem, 3vw, 2.15rem);
}

.guide-step p {
  color: #43516a;
}

.callout {
  padding: 24px 26px;
  border-radius: var(--radius);
  background: var(--blue-soft);
}

.callout--tip {
  background: #e8f8f5;
}

.callout--note {
  background: #fff5d9;
}

.callout strong {
  display: block;
  margin-bottom: 5px;
}

.callout p:last-child {
  margin-bottom: 0;
}

/* Comparison */
.comparison-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.winner-card {
  position: relative;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.winner-card--primary {
  color: var(--white);
  border-color: var(--blue);
  background: var(--blue);
}

.winner-card:nth-child(2) {
  margin-top: 28px;
}

.winner-card__label {
  display: inline-flex;
  margin-bottom: 34px;
  padding: 6px 10px;
  border-radius: 8px;
  color: var(--blue);
  background: var(--blue-soft);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.winner-card--primary .winner-card__label {
  color: var(--blue-dark);
  background: var(--white);
}

.winner-card__score {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 2rem;
  font-weight: 800;
}

.winner-card__score--hero {
  color: var(--white);
  font-size: 4.5rem;
}

.winner-card--primary .winner-card__score {
  color: var(--white);
}

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

.winner-card--primary p {
  color: #dce7ff;
}

.table-scroll {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.comparison-table {
  width: 100%;
  min-width: 790px;
  border-collapse: collapse;
  background: var(--white);
}

.comparison-table th,
.comparison-table td {
  padding: 17px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.comparison-table th {
  color: var(--muted);
  background: var(--surface);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.comparison-table tr:last-child td {
  border-bottom: 0;
}

.comparison-table td:first-child {
  color: var(--blue);
  font-weight: 800;
}

.score {
  display: inline-flex;
  min-width: 48px;
  justify-content: center;
  padding: 4px 8px;
  border-radius: 8px;
  color: var(--blue-dark);
  background: var(--blue-soft);
  font-weight: 800;
}

.table-note {
  margin-top: 14px;
  font-size: 0.82rem;
}

.product-list {
  display: grid;
  gap: 26px;
}

.product-card {
  position: relative;
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr) 220px;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.product-card--recommended {
  border-color: #9fb9ef;
}

.product-card__ribbon {
  position: absolute;
  top: 0;
  left: 0;
  padding: 7px 16px;
  border-radius: 0 0 10px 0;
  color: var(--white);
  background: var(--blue);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-card__identity {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 40px 24px 30px;
  border-right: 1px solid var(--line);
  background: var(--blue-pale);
  text-align: center;
}

.product-card__rank {
  position: absolute;
  top: 11px;
  right: 14px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
}

.product-card__brand {
  display: grid;
  width: 82px;
  height: 82px;
  margin-bottom: 20px;
  place-items: center;
  border-radius: 22px 22px 42px 22px;
  color: var(--white);
  background: var(--blue);
  font-size: 1.45rem;
  font-weight: 800;
}

.product-card:nth-child(2) .product-card__brand {
  background: #6546d7;
}

.product-card:nth-child(3) .product-card__brand {
  color: var(--blue-dark);
  background: var(--aqua);
}

.product-card:nth-child(4) .product-card__brand {
  background: #8c54d8;
}

.product-card:nth-child(5) .product-card__brand {
  background: #242424;
}

.product-card:nth-child(6) .product-card__brand {
  background: #2f756c;
}

.product-card:nth-child(7) .product-card__brand {
  background: #e16456;
}

.product-card:nth-child(8) .product-card__brand {
  background: #3758ac;
}

.product-card:nth-child(9) .product-card__brand {
  background: #118b68;
}

.product-card:nth-child(10) .product-card__brand {
  background: #1d72d7;
}

.product-card h3 {
  margin-bottom: 7px;
  font-size: 1.28rem;
}

.product-card__best {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.product-card__content {
  padding: 30px 32px;
}

.product-card__headline {
  margin-bottom: 20px;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.35;
}

.product-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.product-card__feature {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border-radius: 8px;
  color: #34435d;
  background: var(--surface);
  font-size: 0.76rem;
  font-weight: 700;
}

.product-card__feature::before {
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border-radius: 5px;
  color: var(--blue);
  background: var(--blue-soft);
  content: "✓";
  font-size: 0.65rem;
}

.product-card__details {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(170px, 0.85fr);
  gap: 24px;
}

.product-card__pros {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
  color: var(--muted);
  font-size: 0.82rem;
}

.product-card__pros li {
  position: relative;
  padding-left: 19px;
}

.product-card__pros li::before {
  position: absolute;
  left: 0;
  color: var(--mint);
  content: "✓";
  font-weight: 800;
}

.product-card__metrics {
  display: grid;
  gap: 9px;
}

.metric {
  display: grid;
  grid-template-columns: 54px 1fr 26px;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
}

.metric__track {
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: #e8ecf3;
}

.metric__fill {
  height: 100%;
  border-radius: inherit;
  background: var(--blue);
}

.metric__fill--96 { width: 96%; }
.metric__fill--95 { width: 95%; }
.metric__fill--94 { width: 94%; }
.metric__fill--93 { width: 93%; }
.metric__fill--92 { width: 92%; }
.metric__fill--91 { width: 91%; }
.metric__fill--90 { width: 90%; }
.metric__fill--89 { width: 89%; }
.metric__fill--88 { width: 88%; }
.metric__fill--87 { width: 87%; }
.metric__fill--86 { width: 86%; }
.metric__fill--85 { width: 85%; }
.metric__fill--84 { width: 84%; }
.metric__fill--83 { width: 83%; }
.metric__fill--82 { width: 82%; }
.metric__fill--80 { width: 80%; }
.metric__fill--78 { width: 78%; }
.metric__fill--76 { width: 76%; }
.metric__fill--74 { width: 74%; }
.metric__fill--72 { width: 72%; }
.metric__fill--68 { width: 68%; }

.product-card__verdict {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 28px 24px;
  border-left: 1px solid var(--line);
  background: #fbfcfe;
  text-align: center;
}

.product-card__badge {
  margin-bottom: 18px;
  padding: 5px 9px;
  border-radius: 7px;
  color: var(--blue);
  background: var(--blue-soft);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-card__score {
  color: var(--blue-dark);
  font-size: 2.7rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
}

.product-card__stars {
  margin-block: 8px 5px;
  color: #f5aa16;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

.product-card__rating-label {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.product-card__price {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.76rem;
}

.product-card__price strong {
  display: block;
  color: var(--ink);
  font-size: 0.95rem;
}

.product-card__verdict .btn {
  width: 100%;
  min-height: 46px;
  padding: 10px 14px;
}

.product-card__review {
  margin-top: 10px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 700;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.faq-item__question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-weight: 700;
}

.faq-item__question::after {
  display: grid;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  background: var(--blue-soft);
  content: "+";
}

.faq-item.is-open .faq-item__question::after {
  content: "−";
}

.faq-item__answer {
  display: none;
  padding: 0 22px 20px;
  color: var(--muted);
}

.faq-item.is-open .faq-item__answer {
  display: block;
}

.faq-item__answer p:last-child {
  margin-bottom: 0;
}

@media (max-width: 980px) {
  .section {
    padding-block: 86px;
  }

  .site-nav {
    position: fixed;
    inset: 82px 0 0;
    display: none;
    align-items: stretch;
    padding: 28px 20px;
    background: var(--white);
  }

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

  .site-nav__links {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .site-nav__links a {
    padding: 15px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
  }

  .site-nav .btn {
    width: 100%;
    margin-top: 24px;
  }

  .menu-toggle {
    display: block;
  }

  .hero__grid,
  .page-hero__grid,
  .feature-split {
    grid-template-columns: 1fr;
  }

  .hero__grid,
  .feature-split {
    gap: 54px;
  }

  .hero__copy {
    max-width: 760px;
  }

  .hero-visual {
    width: min(100%, 620px);
    min-height: 500px;
    margin-inline: auto;
  }

  .page-hero__visual {
    width: min(100%, 610px);
  }

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

  .category-card:nth-child(2) {
    margin-top: 0;
  }

  .content-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .sidebar {
    position: static;
    grid-template-columns: repeat(2, 1fr);
  }

  .product-card {
    grid-template-columns: 180px minmax(0, 1fr);
  }

  .product-card__identity {
    padding-inline: 18px;
  }

  .product-card__details {
    grid-template-columns: 1fr;
  }

  .product-card__verdict {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto 1fr auto;
    justify-content: initial;
    gap: 8px 22px;
    padding: 20px 24px;
    border-top: 1px solid var(--line);
    border-left: 0;
    text-align: left;
  }

  .product-card__badge {
    grid-column: 1 / -1;
    width: max-content;
    margin-bottom: 2px;
  }

  .product-card__score {
    grid-row: 2 / 5;
  }

  .product-card__stars,
  .product-card__rating-label,
  .product-card__price {
    margin: 0;
  }

  .product-card__verdict .btn {
    grid-column: 3;
    grid-row: 2 / 4;
    min-width: 160px;
  }

  .product-card__review {
    grid-column: 3;
    margin-top: 0;
    text-align: center;
  }

  .site-footer__grid {
    grid-template-columns: 1.4fr repeat(2, 1fr);
  }

  .site-footer__grid > div:last-child {
    grid-column: 2;
  }
}

@media (max-width: 720px) {
  h1 {
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

  .container,
  .container--narrow {
    width: min(calc(100% - 30px), var(--container));
  }

  .section {
    padding-block: 70px;
  }

  .section--compact {
    padding-block: 54px;
  }

  .site-header__inner {
    min-height: 72px;
  }

  .logo img {
    width: 165px;
  }

  .site-nav {
    inset-block-start: 72px;
  }

  .hero {
    padding-block: 60px 72px;
  }

  .hero::after {
    display: none;
  }

  .hero__grid {
    gap: 42px;
  }

  .hero-visual {
    min-height: 420px;
  }

  .hero-visual__main {
    inset: 18px 8px 20px 0;
    padding: 26px;
    border-radius: 30px 30px 30px 80px;
  }

  .hero-visual__title {
    font-size: 1.55rem;
  }

  .float-card--score {
    right: -2px;
  }

  .float-card--time {
    right: 0;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
    margin-bottom: 34px;
  }

  .card-grid,
  .card-grid--2,
  .blog-grid,
  .comparison-summary,
  .route-grid {
    grid-template-columns: 1fr;
  }

  .winner-card:nth-child(2),
  .route-card:nth-child(2) {
    margin-top: 0;
  }

  .feature-split {
    gap: 38px;
  }

  .feature-panel {
    min-height: 410px;
    padding: 30px;
  }

  .feature-panel__number {
    font-size: 9rem;
  }

  .newsletter,
  .cta-band {
    grid-template-columns: 1fr;
    padding: 34px 26px;
  }

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

  .newsletter__form input {
    min-width: 0;
    width: 100%;
  }

  .page-hero {
    padding-block: 44px 68px;
  }

  .page-hero__grid {
    gap: 40px;
  }

  .page-hero__visual {
    min-height: 320px;
  }

  .page-hero__visual .topic-cloud {
    right: 18px;
    bottom: 24px;
    left: 18px;
  }

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

  .guide-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .toc {
    position: static;
  }

  .guide-step {
    grid-template-columns: 44px 1fr;
    gap: 16px;
  }

  .guide-step__number {
    width: 44px;
    height: 44px;
    border-radius: 13px 13px 23px 13px;
  }

  .product-card {
    grid-template-columns: 1fr;
  }

  .product-card__identity {
    min-height: 210px;
    padding: 48px 24px 26px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .product-card__brand {
    width: 70px;
    height: 70px;
    margin-bottom: 14px;
  }

  .product-card__content {
    padding: 26px 22px;
  }

  .product-card__details {
    gap: 20px;
  }

  .product-card__verdict {
    grid-column: auto;
    grid-template-columns: auto 1fr;
    gap: 8px 18px;
    padding: 24px 22px;
  }

  .product-card__score {
    grid-row: 2 / 5;
  }

  .product-card__verdict .btn {
    grid-column: 1 / -1;
    grid-row: auto;
    margin-top: 8px;
  }

  .product-card__review {
    grid-column: 1 / -1;
    text-align: center;
  }

  .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 38px 24px;
  }

  .site-footer__grid > div:first-child {
    grid-column: 1 / -1;
  }

  .site-footer__grid > div:last-child {
    grid-column: auto;
  }

  .site-footer__bottom {
    align-items: start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
