:root {
  --slate: #1a2332;
  --slate-mid: #2a3648;
  --cobalt: #2457c5;
  --cobalt-deep: #1a3f94;
  --saffron: #f5c542;
  --ice: #f5f7fa;
  --cloud: #e4e9f0;
  --mist: #8b97a8;
  --white: #ffffff;
  --ink: #121820;
  --radius: 6px;
  --font-display: "Bricolage Grotesque", sans-serif;
  --font-body: "Figtree", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background-color: var(--ice);
  background-image:
    linear-gradient(rgba(36, 87, 197, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 87, 197, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  background-position: center top;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.site-nav {
  padding: 1rem 0;
  background: var(--white);
  border-bottom: 1px solid var(--cloud);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
}

.brand:hover,
.brand:focus {
  opacity: 0.88;
}

.brand__icon {
  display: flex;
  width: 2.45rem;
  height: 2.45rem;
  flex-shrink: 0;
}

.brand__icon svg {
  width: 100%;
  height: 100%;
}

.brand__icon-bg {
  fill: var(--cobalt);
}

.brand:hover .brand__icon-bg {
  fill: var(--cobalt-deep);
}

.brand__text {
  display: flex;
  align-items: baseline;
  line-height: 1;
}

.brand__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.22rem;
  letter-spacing: -0.04em;
  color: var(--slate);
}

.brand__tld {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--cobalt);
}

.nav-toggler {
  border: 1px solid var(--cloud);
  border-radius: var(--radius);
  padding: 0.45rem;
  width: 2.55rem;
  height: 2.55rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: var(--ice);
  box-shadow: none;
}

.nav-toggler:focus,
.nav-toggler:focus-visible {
  outline: 2px solid var(--cobalt);
  outline-offset: 2px;
  box-shadow: none;
}

.nav-toggler__line {
  display: block;
  width: 1.2rem;
  height: 2px;
  background: var(--slate);
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.navbar-toggler[aria-expanded="true"] .nav-toggler__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .nav-toggler__line:nth-child(2) {
  opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .nav-toggler__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav__list {
  gap: 0.1rem;
  align-items: center;
  padding-top: 0.85rem;
}

.site-nav .nav-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--slate-mid);
  padding: 0.45rem 0.85rem !important;
  border-radius: 0;
  position: relative;
  border-bottom: 2px solid transparent;
}

.site-nav .nav-link:hover,
.site-nav .nav-link:focus {
  color: var(--cobalt);
  background: transparent;
  border-bottom-color: rgba(36, 87, 197, 0.35);
}

.site-nav .nav-link.active {
  color: var(--cobalt-deep);
  background: transparent;
  border-bottom-color: var(--saffron);
}

.site-nav .nav-link.active:hover {
  color: var(--cobalt-deep);
  background: transparent;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 2.5rem 0 2.35rem;
  background:
    linear-gradient(135deg, var(--slate) 0%, #243044 55%, #1e3a6e 100%);
}

.hero__mesh {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      -18deg,
      transparent,
      transparent 18px,
      rgba(245, 197, 66, 0.045) 18px,
      rgba(245, 197, 66, 0.045) 19px
    );
  pointer-events: none;
}

.hero__content {
  position: relative;
  max-width: 700px;
  padding: 0.35rem 0 0.35rem 1.15rem;
  border-left: 4px solid var(--saffron);
}

.hero__eyebrow {
  margin: 0 0 0.7rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--saffron);
}

.hero__title {
  margin: 0 0 0.8rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.7rem, 4.2vw, 2.55rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
  color: var(--white);
}

.hero__subtitle {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(0.98rem, 2vw, 1.1rem);
  font-weight: 500;
  line-height: 1.55;
  color: rgba(245, 247, 250, 0.78);
  max-width: 36rem;
}

.listing {
  padding: 2.75rem 0 3.5rem;
}

.listing__head {
  margin-bottom: 1.75rem;
  max-width: 560px;
}

.listing__eyebrow {
  margin: 0 0 0.45rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cobalt);
}

.listing__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.45rem, 3vw, 1.9rem);
  letter-spacing: -0.035em;
  color: var(--slate);
  line-height: 1.15;
}

.listing__lead {
  margin: 0;
  font-size: 1rem;
  color: var(--mist);
  font-weight: 500;
}

.listing__board {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.offer {
  background: var(--white);
  border: 1px solid var(--cloud);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(26, 35, 50, 0.06);
  position: relative;
}

.offer::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--cloud);
}

.offer--top::before {
  background: linear-gradient(180deg, var(--saffron), var(--cobalt));
}

.offer--top {
  border-color: rgba(36, 87, 197, 0.22);
  box-shadow: 0 14px 36px rgba(36, 87, 197, 0.1);
}

.offer__row {
  display: grid;
  grid-template-columns: 52px 100px minmax(120px, 1.2fr) minmax(160px, 1.4fr) 90px minmax(140px, 160px);
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.15rem 1rem 1.25rem;
}

.offer__rank {
  display: flex;
  align-items: center;
  justify-content: center;
}

.offer__rank-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--slate);
  background: var(--ice);
  border: 1px solid var(--cloud);
  border-radius: 6px;
}

.offer--top .offer__rank-num {
  background: var(--slate);
  color: var(--saffron);
  border-color: var(--slate);
}

.offer__media {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0.35rem 0.5rem;
  background: var(--ice);
  border: 1px solid var(--cloud);
  border-radius: 6px;
}

.offer__media img {
  max-height: 44px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.offer__name h3 {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
  color: var(--slate);
  line-height: 1.2;
}

.offer__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cobalt);
  background: rgba(36, 87, 197, 0.08);
  padding: 0.15rem 0.45rem;
  border-radius: 3px;
}

.offer__bonus .offer__label,
.offer__score .offer__label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 0.2rem;
}

.offer__bonus strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.3;
}

.offer__score-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.1rem;
}

.offer__score-val {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.55rem;
  letter-spacing: -0.04em;
  color: var(--cobalt);
  line-height: 1;
}

.offer--top .offer__score-val {
  color: #c99510;
}

.offer__score-max {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--mist);
}

.offer__cta {
  display: flex;
  justify-content: flex-end;
}

.btn-visit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2.7rem;
  padding: 0.55rem 1rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
  color: var(--white);
  background: var(--cobalt);
  border: 2px solid var(--cobalt);
  border-radius: 6px;
  text-align: center;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn-visit:hover,
.btn-visit:focus {
  background: var(--cobalt-deep);
  border-color: var(--cobalt-deep);
  color: var(--white);
}

.offer--top .btn-visit {
  background: var(--slate);
  border-color: var(--slate);
  color: var(--saffron);
}

.offer--top .btn-visit:hover,
.offer--top .btn-visit:focus {
  background: #0f1620;
  border-color: #0f1620;
  color: var(--saffron);
}

.offer__disclaimer {
  padding: 0.65rem 1.15rem 0.75rem 1.25rem;
  background: linear-gradient(90deg, rgba(36, 87, 197, 0.05), rgba(245, 197, 66, 0.06));
  border-top: 1px dashed rgba(36, 87, 197, 0.18);
}

.offer__disclaimer p {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.45;
  color: #6b7788;
}

@media (min-width: 992px) {
  .site-nav__list {
    padding-top: 0;
    gap: 0.35rem;
  }

  .hero {
    padding: 2.85rem 0 2.7rem;
  }

  .hero__content {
    padding-left: 1.35rem;
  }

  .listing {
    padding: 3.15rem 0 4rem;
  }
}

@media (max-width: 991.98px) {
  .offer__row {
    grid-template-columns: 44px 88px 1fr;
    grid-template-areas:
      "rank media name"
      "bonus bonus bonus"
      "score score cta";
    gap: 0.85rem 0.75rem;
    padding: 1rem 1rem 0.9rem 1.1rem;
  }

  .offer__rank { grid-area: rank; }
  .offer__media { grid-area: media; }
  .offer__name { grid-area: name; }
  .offer__bonus { grid-area: bonus; }
  .offer__score { grid-area: score; align-self: center; }
  .offer__cta { grid-area: cta; }
}

@media (max-width: 575.98px) {
  .brand__name {
    font-size: 1.05rem;
  }

  .brand__tld {
    font-size: 0.85rem;
  }

  .brand__icon {
    width: 2.15rem;
    height: 2.15rem;
  }

  .hero {
    padding: 1.85rem 0 1.75rem;
  }

  .hero__content {
    padding-left: 0.95rem;
  }

  .site-nav .nav-link {
    border-bottom: none;
    border-left: 3px solid transparent;
    padding-left: 0.75rem !important;
  }

  .site-nav .nav-link:hover,
  .site-nav .nav-link:focus {
    border-left-color: rgba(36, 87, 197, 0.35);
    border-bottom-color: transparent;
  }

  .site-nav .nav-link.active {
    border-left-color: var(--saffron);
    border-bottom-color: transparent;
    background: rgba(36, 87, 197, 0.06);
  }

  .listing {
    padding: 2rem 0 2.75rem;
  }

  .offer__row {
    grid-template-columns: 40px 1fr;
    grid-template-areas:
      "rank name"
      "media media"
      "bonus bonus"
      "score cta";
  }

  .offer__media {
    height: 64px;
  }

  .offer__cta {
    justify-content: stretch;
  }

  .btn-visit {
    font-size: 0.82rem;
    min-height: 2.5rem;
  }
}

.site-footer {
  margin-top: 1rem;
  background: var(--slate);
  color: rgba(245, 247, 250, 0.82);
}

.footer-badges {
  background: #121a26;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.35rem 0;
}

.footer-badges__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem 1.25rem;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  height: 56px;
  padding: 0.4rem 0.65rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.footer-badge:hover,
.footer-badge:focus {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(245, 197, 66, 0.45);
}

.footer-badge img {
  max-height: 40px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.footer-main {
  padding: 2.75rem 0 2.25rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2rem 1.75rem;
}

.brand--footer .brand__name {
  color: var(--white);
}

.brand--footer .brand__tld {
  color: var(--saffron);
}

.footer-brand__text {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(245, 247, 250, 0.68);
  max-width: 280px;
}

.footer-col__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(245, 247, 250, 0.72);
}

.footer-links a:hover,
.footer-links a:focus {
  color: var(--saffron);
}

.footer-col__text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(245, 247, 250, 0.68);
}

.footer-disclosure {
  padding: 1.1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.18);
}

.footer-disclosure p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(245, 247, 250, 0.62);
  text-align: center;
  max-width: 920px;
  margin-inline: auto;
}

.footer-age {
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-age__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  text-align: left;
}

.footer-age__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  height: 3rem;
  padding: 0 0.45rem;
  border-radius: 8px;
  background: var(--saffron);
  color: var(--slate);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(245, 197, 66, 0.25);
}

.footer-age p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: rgba(245, 247, 250, 0.78);
  max-width: 640px;
}

.footer-copy {
  padding: 0.95rem 0 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-copy p {
  margin: 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(245, 247, 250, 0.5);
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.age-gate[hidden] {
  display: none !important;
}

.age-gate__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 22, 0.82);
}

.age-gate__dialog {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--cloud);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.age-gate__panel {
  padding: 2rem 1.75rem 1.75rem;
  text-align: center;
}

.age-gate__panel[hidden] {
  display: none !important;
}

.age-gate__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.4rem;
  height: 2.1rem;
  padding: 0 0.65rem;
  margin-bottom: 1rem;
  border-radius: 6px;
  background: var(--saffron);
  color: var(--slate);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
}

.age-gate__badge--restrict {
  background: #c44536;
  color: var(--white);
  min-width: auto;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.age-gate__panel h2 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
  color: var(--slate);
}

.age-gate__panel p {
  margin: 0 0 1.35rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--mist);
}

.age-gate__actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.age-gate__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  border: 2px solid transparent;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.age-gate__btn--yes {
  background: var(--cobalt);
  border-color: var(--cobalt);
  color: var(--white);
}

.age-gate__btn--yes:hover,
.age-gate__btn--yes:focus {
  background: var(--cobalt-deep);
  border-color: var(--cobalt-deep);
}

.age-gate__btn--no {
  background: transparent;
  border-color: var(--cloud);
  color: var(--slate-mid);
}

.age-gate__btn--no:hover,
.age-gate__btn--no:focus {
  border-color: var(--mist);
  color: var(--slate);
}

body.is-age-locked {
  overflow: hidden;
}

body.is-age-restricted .site-nav,
body.is-age-restricted .hero,
body.is-age-restricted main,
body.is-age-restricted .site-footer,
body.is-age-restricted .cookie-consent {
  filter: blur(6px);
  pointer-events: none;
  user-select: none;
}

.cookie-consent {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 3500;
  max-width: 720px;
  margin: 0 auto;
}

.cookie-consent[hidden] {
  display: none !important;
}

.cookie-consent__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.15rem;
  background: var(--white);
  border: 1px solid var(--cloud);
  border-radius: 10px;
  box-shadow: 0 16px 40px rgba(26, 35, 50, 0.18);
}

.cookie-consent__inner p {
  margin: 0;
  flex: 1 1 260px;
  font-size: 0.86rem;
  line-height: 1.45;
  color: var(--slate-mid);
}

.cookie-consent__inner a {
  color: var(--cobalt);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-consent__actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}

.cookie-consent__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.4rem;
  padding: 0.45rem 0.95rem;
  border-radius: 6px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.86rem;
  border: 2px solid transparent;
  cursor: pointer;
}

.cookie-consent__btn--accept {
  background: var(--slate);
  border-color: var(--slate);
  color: var(--saffron);
}

.cookie-consent__btn--accept:hover,
.cookie-consent__btn--accept:focus {
  background: #0f1620;
  border-color: #0f1620;
  color: var(--saffron);
}

.cookie-consent__btn--link {
  background: transparent;
  border-color: var(--cloud);
  color: var(--slate-mid);
}

.cookie-consent__btn--link:hover,
.cookie-consent__btn--link:focus {
  border-color: var(--cobalt);
  color: var(--cobalt);
}

@media (max-width: 991.98px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 575.98px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-brand__text {
    max-width: none;
  }

  .footer-age__inner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-consent {
    left: 0.65rem;
    right: 0.65rem;
    bottom: 0.65rem;
  }

  .cookie-consent__actions {
    width: 100%;
  }

  .cookie-consent__btn--accept {
    flex: 1;
  }
}

.page-section {
  padding: 2.5rem 0 3.25rem;
}

.page-card {
  background: var(--white);
  border: 1px solid var(--cloud);
  border-radius: 10px;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 10px 28px rgba(26, 35, 50, 0.06);
}

.page-card h2 {
  margin: 1.75rem 0 0.65rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  color: var(--slate);
}

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

.page-card h3 {
  margin: 1.25rem 0 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--slate-mid);
}

.page-card p,
.page-card li {
  font-size: 0.96rem;
  line-height: 1.65;
  color: rgba(18, 24, 32, 0.78);
}

.page-card p {
  margin: 0 0 0.9rem;
}

.page-card ul,
.page-card ol {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
}

.page-card li {
  margin-bottom: 0.4rem;
}

.page-card a {
  color: var(--cobalt);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.page-card a:hover,
.page-card a:focus {
  color: var(--cobalt-deep);
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.35rem;
  padding: 0.85rem 1.1rem;
  background: var(--ice);
  border: 1px solid var(--cloud);
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--cobalt) !important;
  text-decoration: none !important;
}

.contact-email:hover,
.contact-email:focus {
  border-color: var(--cobalt);
  background: rgba(36, 87, 197, 0.06);
}

.about-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem 0 0.5rem;
}

.about-point {
  padding: 1.1rem 1rem;
  background: var(--ice);
  border: 1px solid var(--cloud);
  border-radius: 8px;
  border-top: 3px solid var(--saffron);
}

.about-point h3 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
}

.about-point p {
  margin: 0;
  font-size: 0.9rem;
}

.platform-guide {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

.platform-guide__item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 1rem 1.05rem;
  background: var(--ice);
  border: 1px solid var(--cloud);
  border-radius: 8px;
}

.platform-guide__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 6px;
  background: var(--slate);
  color: var(--saffron);
  font-family: var(--font-display);
  font-weight: 800;
}

.platform-guide__item h3 {
  margin: 0 0 0.3rem;
}

.platform-guide__item p {
  margin: 0;
}

@media (max-width: 991.98px) {
  .about-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .page-card {
    padding: 1.35rem 1.1rem;
  }
}
