@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,600;12..96,700;12..96,800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  --color-bg: #eef3f8;
  --color-surface: #ffffff;
  --color-ink: #0b1f3a;
  --color-ink-soft: #3d4f66;
  --color-muted: #6b7c90;
  --color-azure: #1a6ef5;
  --color-azure-deep: #0d4ec4;
  --color-coral: #ff5c4d;
  --color-line: rgba(11, 31, 58, 0.1);
  --color-topbar: #081628;
  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --container: 1140px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: auto;
}

body {
  font-family: var(--font-body);
  background:
    radial-gradient(ellipse 80% 50% at 100% -10%, rgba(26, 110, 245, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 40% at 0% 20%, rgba(255, 92, 77, 0.06), transparent 50%),
    linear-gradient(180deg, #f5f8fc 0%, var(--color-bg) 100%);
  color: var(--color-ink);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.topbar {
  background: var(--color-topbar);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8rem;
  font-weight: 500;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.5rem 0;
  text-align: center;
}

.topbar__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.1rem;
  height: 1.3rem;
  padding: 0 0.35rem;
  border-radius: 4px;
  background: var(--color-coral);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.topbar__text {
  color: rgba(255, 255, 255, 0.78);
}

.navbar {
  position: relative;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--color-line);
  z-index: 100;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.4rem;
  padding: 0.7rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--color-ink);
}

.brand__icon {
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 10px;
  background: linear-gradient(160deg, var(--color-azure) 0%, var(--color-azure-deep) 100%);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.brand__icon svg {
  width: 1.3rem;
  height: 1.3rem;
  fill: none;
  stroke: #ffffff;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand__name {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--color-ink);
}

.brand__tag {
  font-size: 0.66rem;
  font-weight: 600;
  color: var(--color-azure);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

.nav-toggle {
  display: none;
  width: 2.7rem;
  height: 2.7rem;
  border: 1px solid var(--color-line);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}

.nav-toggle__bar {
  width: 1.1rem;
  height: 2px;
  background: var(--color-ink);
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.is-active .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav-menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.7rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-ink-soft);
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.15rem;
  height: 2px;
  background: var(--color-azure);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--color-ink);
  outline: none;
}

.nav-menu a:hover::after,
.nav-menu a:focus-visible::after,
.nav-menu a.is-active::after {
  transform: scaleX(1);
}

.nav-menu a.is-active {
  color: var(--color-azure-deep);
}

.hero {
  position: relative;
  min-height: clamp(210px, 30vw, 300px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #0b1f3a;
  background-image:
    linear-gradient(105deg, rgba(8, 22, 40, 0.9) 0%, rgba(11, 31, 58, 0.72) 42%, rgba(13, 78, 196, 0.35) 100%),
    url('../images/hero-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__inner {
  position: relative;
  z-index: 1;
  padding: 2.2rem 0 2.4rem;
  max-width: 40rem;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  padding: 0.28rem 0.7rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #b8d4ff;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.04em;
  color: #ffffff;
  margin-bottom: 0.8rem;
  max-width: 16ch;
}

.hero h2 {
  font-family: var(--font-body);
  font-size: clamp(0.98rem, 1.45vw, 1.1rem);
  font-weight: 400;
  line-height: 1.65;
  color: rgba(232, 240, 255, 0.82);
  max-width: 36rem;
}

.listing {
  padding: 2.6rem 0 3.4rem;
}

.listing__head {
  margin-bottom: 1.6rem;
  max-width: 40rem;
}

.listing__eyebrow {
  display: inline-block;
  margin-bottom: 0.55rem;
  color: var(--color-azure);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.listing__head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.6vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--color-ink);
  margin-bottom: 0.55rem;
}

.listing__lead {
  color: var(--color-muted);
  font-size: 1rem;
  max-width: 38rem;
}

.offer-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.offer {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 249, 255, 0.98));
  border: 1px solid var(--color-line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(11, 31, 58, 0.06);
}

.offer__row {
  display: grid;
  grid-template-columns: 64px 120px minmax(110px, 1fr) minmax(180px, 1.5fr) 100px 180px;
  align-items: center;
  gap: 0.85rem 1rem;
  padding: 1rem 1.1rem;
}

.offer__rank {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-azure-deep);
  background:
    linear-gradient(160deg, rgba(26, 110, 245, 0.14), rgba(26, 110, 245, 0.04));
  border: 1px solid rgba(26, 110, 245, 0.18);
}

.offer__logo {
  width: 120px;
  height: 56px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--color-line);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.55rem;
}

.offer__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.offer__label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 0.22rem;
}

.offer__name strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-ink);
}

.offer__bonus p {
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-ink-soft);
}

.score-chip {
  display: inline-flex;
  align-items: baseline;
  gap: 0.15rem;
  padding: 0.35rem 0.65rem;
  border-radius: 10px;
  background: linear-gradient(160deg, #0b1f3a, #16345a);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 600;
}

.score-chip span {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
}

.offer__cta {
  display: flex;
  justify-content: flex-end;
}

.btn-visit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  padding: 0.7rem 1rem;
  border-radius: 12px;
  background: linear-gradient(160deg, var(--color-azure) 0%, var(--color-azure-deep) 100%);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-align: center;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.btn-visit:hover,
.btn-visit:focus-visible {
  filter: brightness(1.06);
  transform: translateY(-1px);
  outline: none;
}

.offer__disclaimer {
  padding: 0.7rem 1.1rem 0.85rem;
  border-top: 1px dashed rgba(11, 31, 58, 0.12);
  background: linear-gradient(90deg, rgba(26, 110, 245, 0.05), rgba(255, 92, 77, 0.04));
  color: var(--color-muted);
  font-size: 0.76rem;
  line-height: 1.5;
}

.offer:nth-child(1) .offer__rank {
  background: linear-gradient(160deg, #ffd76a, #f0b429);
  color: #5a3d00;
  border-color: rgba(240, 180, 41, 0.45);
}

.offer:nth-child(2) .offer__rank {
  background: linear-gradient(160deg, #e8eef5, #c5d0de);
  color: #334155;
  border-color: rgba(100, 116, 139, 0.28);
}

.offer:nth-child(3) .offer__rank {
  background: linear-gradient(160deg, #f3c7a5, #d98b58);
  color: #5c3010;
  border-color: rgba(217, 139, 88, 0.4);
}

@media (max-width: 1100px) {
  .offer__row {
    grid-template-columns: 56px 100px minmax(100px, 1fr) minmax(160px, 1.4fr) 90px 160px;
    gap: 0.7rem;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
    padding: 0.75rem 1rem 1rem;
    background: #ffffff;
    border-bottom: 1px solid var(--color-line);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    padding: 0.9rem 0.85rem;
    border-radius: 8px;
  }

  .nav-menu a::after {
    display: none;
  }

  .nav-menu a.is-active,
  .nav-menu a:hover {
    background: rgba(26, 110, 245, 0.08);
  }

  .hero {
    min-height: 230px;
  }

  .hero__inner {
    padding: 1.9rem 0 2.1rem;
  }

  .offer__row {
    grid-template-columns: 48px 1fr;
    grid-template-areas:
      'rank name'
      'logo logo'
      'bonus bonus'
      'score cta';
  }

  .offer__rank { grid-area: rank; }
  .offer__logo { grid-area: logo; width: 100%; height: 64px; }
  .offer__name { grid-area: name; }
  .offer__bonus { grid-area: bonus; }
  .offer__score { grid-area: score; }
  .offer__cta { grid-area: cta; justify-content: stretch; }
}

@media (max-width: 540px) {
  .topbar__inner {
    flex-direction: column;
    gap: 0.28rem;
    padding: 0.6rem 0;
  }

  .topbar__text {
    font-size: 0.72rem;
    line-height: 1.4;
  }

  .brand__tag {
    display: none;
  }

  .brand__name {
    font-size: 1.1rem;
  }

  .hero h1 {
    max-width: none;
  }

  .offer__row {
    grid-template-columns: 1fr;
    grid-template-areas:
      'rank'
      'logo'
      'name'
      'bonus'
      'score'
      'cta';
    padding: 1rem;
  }

  .offer__rank {
    width: 44px;
    height: 44px;
  }

  .offer__cta {
    justify-content: stretch;
  }

  .btn-visit {
    width: 100%;
  }
}

.site-footer {
  margin-top: 1rem;
  background:
    linear-gradient(180deg, #0a1628 0%, #07111d 100%);
  color: rgba(232, 240, 255, 0.82);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer .brand__name {
  color: #fff;
}

.site-footer .brand__tag {
  color: #8eb6ff;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #fff;
  outline: none;
}

.footer-safe {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.5rem;
  padding: 2rem 0 1.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-safe__text {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.footer-safe__badge {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--color-coral);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
}

.footer-safe h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}

.footer-safe p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(232, 240, 255, 0.72);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
}

.footer-badges a,
.footer-badges > img {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.25rem;
  background: transparent;
  border: 0;
}

.footer-badges img {
  width: auto;
  max-width: 110px;
  height: 36px;
  object-fit: contain;
  padding: 0;
  border: 0;
  background: transparent;
  min-height: 0;
}

.footer-badges a img {
  max-width: 110px;
  height: 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 1.5rem;
  padding: 2rem 0 1.5rem;
}

.footer-brand p,
.footer-cert {
  margin-top: 0.85rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(232, 240, 255, 0.7);
}

.footer-col h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.85rem;
  letter-spacing: -0.02em;
}

.footer-col ul {
  display: grid;
  gap: 0.45rem;
}

.footer-col a {
  color: rgba(232, 240, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 500;
}

.footer-notes {
  display: grid;
  gap: 0.85rem;
  padding: 1.25rem 0 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-notes p {
  font-size: 0.8rem;
  line-height: 1.55;
  color: rgba(232, 240, 255, 0.62);
}

.footer-notes strong {
  color: #cfe0ff;
  font-weight: 700;
}

.footer-bottom {
  padding: 1.1rem 0 1.5rem;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(232, 240, 255, 0.5);
  text-align: center;
}

.age-gate,
.age-block {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background:
    radial-gradient(ellipse at top, rgba(26, 110, 245, 0.25), transparent 50%),
    rgba(5, 12, 22, 0.92);
}

.age-gate[hidden],
.age-block[hidden],
.cookie-bar[hidden] {
  display: none !important;
}

.age-gate__panel,
.age-block__panel {
  width: min(100%, 440px);
  padding: 1.75rem 1.5rem;
  border-radius: 18px;
  background: #fff;
  color: var(--color-ink);
  border: 1px solid var(--color-line);
  text-align: center;
}

.age-gate__mark,
.age-block__mark {
  width: 3.2rem;
  height: 3.2rem;
  margin: 0 auto 0.9rem;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--color-coral);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
}

.age-gate__panel h2,
.age-block__panel h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.65rem;
}

.age-gate__panel p,
.age-block__panel p {
  font-size: 0.95rem;
  color: var(--color-ink-soft);
  line-height: 1.55;
  margin-bottom: 0.7rem;
}

.age-gate__ask {
  font-weight: 700 !important;
  color: var(--color-ink) !important;
  margin-top: 0.4rem !important;
}

.age-gate__actions {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
}

.age-btn,
.cookie-btn {
  border: 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: 12px;
  min-height: 46px;
  padding: 0.7rem 1rem;
}

.age-btn--yes {
  background: linear-gradient(160deg, var(--color-azure), var(--color-azure-deep));
  color: #fff;
}

.age-btn--no {
  background: #eef3f8;
  color: var(--color-ink-soft);
  border: 1px solid var(--color-line);
}

.age-block__panel a {
  color: var(--color-azure-deep);
  font-weight: 700;
  text-decoration: underline;
}

body.age-locked,
body.age-restricted {
  overflow: hidden;
}

body.age-restricted .navbar,
body.age-restricted .hero,
body.age-restricted .topbar,
body.age-restricted .listing,
body.age-restricted .site-footer,
body.age-restricted .cookie-bar {
  display: none !important;
}

.cookie-bar {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 3500;
}

.cookie-bar__inner {
  width: min(100%, var(--container));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border-radius: 16px;
  background: rgba(8, 22, 40, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(232, 240, 255, 0.88);
}

.cookie-bar__copy strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
  color: #fff;
}

.cookie-bar__copy p {
  font-size: 0.82rem;
  line-height: 1.45;
  color: rgba(232, 240, 255, 0.7);
}

.cookie-bar__copy a {
  color: #9fc2ff;
  text-decoration: underline;
}

.cookie-bar__actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.cookie-btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.cookie-btn--solid {
  background: linear-gradient(160deg, var(--color-azure), var(--color-azure-deep));
  color: #fff;
}

@media (max-width: 980px) {
  .footer-safe,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-badges {
    justify-content: flex-start;
  }
}

@media (max-width: 700px) {
  .footer-safe,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cookie-bar__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-bar__actions {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
  }
}

.page-hero {
  position: relative;
  min-height: clamp(160px, 22vw, 220px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #0b1f3a;
  background-image:
    linear-gradient(105deg, rgba(8, 22, 40, 0.92) 0%, rgba(11, 31, 58, 0.78) 48%, rgba(13, 78, 196, 0.38) 100%),
    url('../images/hero-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-hero__inner {
  padding: 1.8rem 0 1.9rem;
  max-width: 44rem;
}

.page-hero__eyebrow {
  display: inline-flex;
  margin-bottom: 0.65rem;
  padding: 0.28rem 0.7rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #b8d4ff;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.035em;
  color: #fff;
  margin-bottom: 0.55rem;
}

.page-hero p {
  color: rgba(232, 240, 255, 0.82);
  font-size: 1rem;
  line-height: 1.55;
  max-width: 38rem;
}

.page-section {
  padding: 2.4rem 0 3rem;
}

.page-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--color-line);
  border-radius: 18px;
  padding: 1.4rem 1.35rem;
  margin-bottom: 1rem;
}

.page-card h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-ink);
  margin-bottom: 0.55rem;
}

.page-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-ink);
  margin: 1rem 0 0.4rem;
}

.page-card p,
.page-card li {
  color: var(--color-ink-soft);
  font-size: 0.96rem;
  line-height: 1.65;
}

.page-card p + p {
  margin-top: 0.7rem;
}

.page-card ul {
  list-style: disc;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.4rem;
  margin-top: 0.55rem;
}

.page-card a {
  color: var(--color-azure-deep);
  font-weight: 600;
  text-decoration: underline;
}

.contact-mail {
  display: inline-flex;
  margin-top: 0.85rem;
  padding: 0.85rem 1.1rem;
  border-radius: 12px;
  background: linear-gradient(160deg, rgba(26, 110, 245, 0.12), rgba(26, 110, 245, 0.04));
  border: 1px solid rgba(26, 110, 245, 0.2);
  color: var(--color-azure-deep);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  text-decoration: none;
}

.contact-mail:hover,
.contact-mail:focus-visible {
  filter: brightness(1.05);
  outline: none;
}

.faq-item + .faq-item {
  margin-top: 0.85rem;
}

.review-grid,
.platform-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

@media (max-width: 760px) {
  .review-grid,
  .platform-grid {
    grid-template-columns: 1fr;
  }
}
