:root {
  color-scheme: light;
  --blue-950: #071f3d;
  --blue-900: #083a73;
  --blue-800: #0b4f9c;
  --blue-100: #dcecff;
  --blue-50: #eef6ff;
  --green-600: #0f9f74;
  --green-500: #12b981;
  --green-100: #dff8ee;
  --gray-950: #0f172a;
  --gray-800: #1f2937;
  --gray-700: #334155;
  --gray-600: #475569;
  --gray-300: #d7dee8;
  --gray-200: #e7edf5;
  --gray-100: #f3f6fa;
  --white: #ffffff;
  --amber: #f5a524;
  --red: #dc2626;
  --shadow: 0 18px 45px rgba(7, 31, 61, 0.12);
  --shadow-soft: 0 10px 25px rgba(7, 31, 61, 0.08);
  --radius: 8px;
  --radius-sm: 6px;
  --container: 1180px;
  --header-height: 74px;
  --font-body:
    "Inter", "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  --font-heading:
    "Poppins", "Inter", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--gray-800);
  font-family: var(--font-body);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--blue-800);
  text-decoration: none;
}

a:hover {
  color: var(--green-600);
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  z-index: 999;
  padding: 0.65rem 0.9rem;
  background: var(--green-500);
  color: var(--gray-950);
  border-radius: var(--radius-sm);
  transform: translateY(-150%);
}

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

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

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

.rg-bar {
  background: var(--blue-950);
  color: var(--white);
  font-size: 0.88rem;
}

.rg-bar__inner {
  min-height: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.35rem 0;
  text-align: center;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 26px;
  padding: 0.1rem 0.45rem;
  border: 2px solid #ffccd0;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 800;
  line-height: 1;
}

.rg-icon {
  width: 22px;
  height: 22px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--gray-200);
  backdrop-filter: blur(14px);
  transition:
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-soft);
  border-color: transparent;
}

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

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

.brand img {
  width: 214px;
  height: auto;
  display: block;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--blue-900);
  cursor: pointer;
}

.nav-toggle__lines {
  position: relative;
  width: 20px;
  height: 14px;
}

.nav-toggle__lines::before,
.nav-toggle__lines::after,
.nav-toggle__lines span {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease,
    top 0.2s ease;
}

.nav-toggle__lines::before {
  top: 0;
}

.nav-toggle__lines span {
  top: 6px;
}

.nav-toggle__lines::after {
  top: 12px;
}

body.menu-open .nav-toggle__lines::before {
  top: 6px;
  transform: rotate(45deg);
}

body.menu-open .nav-toggle__lines span {
  opacity: 0;
}

body.menu-open .nav-toggle__lines::after {
  top: 6px;
  transform: rotate(-45deg);
}

.site-nav {
  position: fixed;
  inset: calc(var(--header-height) + 40px) 16px auto 16px;
  display: none;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

body.menu-open .site-nav {
  display: flex;
}

.site-nav a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  color: var(--gray-800);
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: var(--blue-50);
  color: var(--blue-900);
}

.nav-cta {
  background: var(--blue-900);
  color: var(--white) !important;
}

.nav-cta:hover {
  background: var(--green-600) !important;
  color: var(--white) !important;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(130deg, rgba(8, 58, 115, 0.97), rgba(7, 31, 61, 0.95)),
    linear-gradient(90deg, #083a73, #0f9f74);
  color: var(--white);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  padding: clamp(3rem, 8vw, 5.6rem) 0;
}

.breadcrumb {
  padding: 1rem 0 0;
  color: var(--gray-600);
  font-size: 0.92rem;
}

.breadcrumb a {
  color: var(--blue-800);
  font-weight: 700;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  padding: 0.35rem 0.65rem;
  border: 1px solid rgba(18, 185, 129, 0.32);
  border-radius: 999px;
  background: rgba(18, 185, 129, 0.1);
  color: var(--green-500);
  font-size: 0.86rem;
  font-weight: 800;
}

.hero .eyebrow {
  background: rgba(255, 255, 255, 0.1);
  color: #c7ffe9;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--gray-950);
  font-family: var(--font-heading);
  line-height: 1.15;
  letter-spacing: 0;
}

.hero h1,
.hero h2,
.hero h3 {
  color: var(--white);
}

h1 {
  max-width: 820px;
  font-size: clamp(2.1rem, 6vw, 4.4rem);
  overflow-wrap: anywhere;
}

h2 {
  font-size: clamp(1.65rem, 3.4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

p {
  margin: 0;
}

.lead {
  max-width: 760px;
  color: var(--gray-600);
  font-size: clamp(1rem, 2vw, 1.18rem);
  overflow-wrap: anywhere;
}

.hero .lead {
  color: rgba(255, 255, 255, 0.87);
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 46px;
  padding: 0.78rem 1.05rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
  text-align: center;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--green-500);
  color: var(--gray-950);
}

.btn-primary:hover {
  background: #18d092;
  color: var(--gray-950);
  box-shadow: 0 12px 22px rgba(18, 185, 129, 0.24);
}

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

.btn-secondary:hover {
  background: var(--blue-800);
  color: var(--white);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.btn-outline:hover {
  border-color: var(--white);
  color: var(--white);
}

.btn-quiet {
  border-color: var(--gray-300);
  background: var(--white);
  color: var(--blue-900);
}

.btn-quiet:hover {
  background: var(--blue-50);
  color: var(--blue-900);
}

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

.trust-pill {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  min-height: 62px;
  padding: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.trust-pill strong {
  display: block;
  line-height: 1.2;
}

.trust-pill span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.83rem;
}

.mini-icon {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(18, 185, 129, 0.16);
  color: var(--green-500);
  font-weight: 900;
}

.update-note {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.55rem;
  max-width: 680px;
  padding: 0.85rem 1rem;
  border-left: 4px solid var(--green-500);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.94rem;
}

.section {
  padding: clamp(3rem, 7vw, 5.4rem) 0;
}

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

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

.section-blue h2,
.section-blue h3 {
  color: var(--white);
}

.section-blue .lead,
.section-blue p {
  color: rgba(255, 255, 255, 0.78);
}

.section-header {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.6rem;
}

.section-header--split {
  grid-template-columns: 1fr;
}

.ranking-list,
.offer-list,
.review-list {
  display: grid;
  gap: 1rem;
}

.ranking-card {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.ranking-card__top {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.rank-number {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: var(--radius-sm);
  background: var(--blue-900);
  color: var(--white);
  font-weight: 900;
}

.operator-mark {
  width: 58px;
  height: 58px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--blue-100);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--blue-50), var(--white));
  color: var(--blue-900);
  font-weight: 900;
  font-size: 1.05rem;
}

.operator-meta {
  display: grid;
  gap: 0.2rem;
}

.operator-meta strong {
  color: var(--gray-950);
  font-size: 1.08rem;
}

.operator-meta span {
  color: var(--gray-600);
  font-size: 0.92rem;
}

.bonus-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: var(--green-100);
  color: #067452;
  font-size: 0.8rem;
  font-weight: 900;
}

.offer-copy {
  display: grid;
  gap: 0.55rem;
}

.offer-copy h3 {
  color: var(--gray-950);
}

.score-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  padding: 0.75rem;
  border-radius: var(--radius);
  background: var(--gray-100);
}

.score {
  display: grid;
  gap: 0.1rem;
}

.score strong {
  color: var(--blue-900);
  font-size: 1.45rem;
  line-height: 1;
}

.stars {
  color: var(--amber);
  font-size: 1.05rem;
  letter-spacing: 0;
}

.card-actions {
  display: grid;
  gap: 0.65rem;
}

.review-link {
  display: inline-flex;
  justify-content: center;
  min-height: 40px;
  align-items: center;
  color: var(--blue-900);
  font-weight: 800;
}

.disclaimer {
  color: var(--gray-600);
  font-size: 0.85rem;
}

.notice {
  padding: 1rem;
  border-left: 4px solid var(--green-500);
  border-radius: var(--radius-sm);
  background: var(--blue-50);
  color: var(--gray-700);
}

.notice strong {
  color: var(--blue-900);
}

.feature-grid,
.criteria-grid,
.legal-grid,
.stats-grid {
  display: grid;
  gap: 1rem;
}

.feature-card,
.info-card,
.criteria-card,
.legal-card,
.stat-card,
.contact-card {
  padding: 1.1rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
}

.feature-card,
.criteria-card,
.stat-card {
  display: grid;
  gap: 0.55rem;
}

.feature-card h3,
.info-card h3,
.criteria-card h3,
.legal-card h3,
.contact-card h3 {
  color: var(--blue-900);
}

.two-col {
  display: grid;
  gap: 1.4rem;
}

.content-flow {
  display: grid;
  gap: 1rem;
}

.content-flow ul,
.check-list,
.plain-list {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding-left: 1.25rem;
}

.check-list {
  list-style: none;
  padding-left: 0;
}

.check-list li {
  position: relative;
  padding-left: 1.65rem;
  color: #000;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green-600);
  font-weight: 900;
}

.offer-card,
.review-card {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.offer-card__header,
.review-card__header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.tag-row,
.metric-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: var(--gray-100);
  color: var(--gray-700);
  font-size: 0.82rem;
  font-weight: 800;
}

.tag-green {
  background: var(--green-100);
  color: #067452;
}

.metric {
  flex: 1 1 160px;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  background: var(--gray-100);
}

.metric span {
  display: block;
  color: var(--gray-600);
  font-size: 0.82rem;
  font-weight: 700;
}

.metric strong {
  color: var(--gray-950);
  font-size: 1.05rem;
}

.review-score {
  margin-left: auto;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: var(--radius);
  background: var(--blue-900);
  color: var(--white);
  font-weight: 900;
}

.review-score span {
  display: block;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.76);
}

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

.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  overflow: clip;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 60px;
  padding: 1rem;
  border: 0;
  background: transparent;
  color: var(--gray-950);
  cursor: pointer;
  font-weight: 900;
  text-align: left;
}

.faq-question::after {
  content: "+";
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-50);
  color: var(--blue-900);
  font-size: 1.2rem;
}

.faq-question[aria-expanded="true"]::after {
  content: "−";
  background: var(--green-100);
  color: var(--green-600);
}

.faq-answer {
  display: none;
  padding: 0 1rem 1rem;
  color: var(--gray-700);
}

.faq-question[aria-expanded="true"] + .faq-answer {
  display: block;
}

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

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

.form-row label {
  color: var(--gray-950);
  font-weight: 800;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  min-height: 46px;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--gray-950);
}

.form-row textarea {
  min-height: 150px;
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus,
.faq-question:focus,
.btn:focus,
.nav-toggle:focus,
.back-to-top:focus,
.cookie-banner button:focus {
  outline: 3px solid rgba(18, 185, 129, 0.35);
  outline-offset: 2px;
}

.form-status {
  min-height: 24px;
  color: var(--green-600);
  font-weight: 800;
}

.site-footer {
  padding: 2.4rem 0 1.2rem;
  background: var(--blue-950);
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  display: grid;
  gap: 1.4rem;
}

.footer-brand img {
  width: 210px;
  padding: 0.45rem;
  border-radius: var(--radius);
  background: var(--white);
}

.footer-brand p,
.footer-note {
  margin-top: 0.8rem;
}

.footer-col {
  display: grid;
  gap: 0.55rem;
}

.footer-col h2,
.footer-col h3 {
  color: var(--white);
  font-size: 1rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.82);
}

.footer-col a:hover {
  color: var(--green-500);
}

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

.cookie-banner {
  position: fixed;
  z-index: 120;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: none;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-height: calc(100vh - 32px);
  overflow: auto;
}

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

.cookie-banner p {
  color: var(--gray-700);
  font-size: 0.92rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.back-to-top {
  position: fixed;
  z-index: 100;
  right: 16px;
  bottom: 16px;
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--blue-900);
  color: var(--white);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}

.back-to-top.is-visible {
  display: grid;
}

.cookie-banner.is-visible + .back-to-top {
  bottom: 126px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

th,
td {
  padding: 0.9rem;
  border-bottom: 1px solid var(--gray-200);
  text-align: left;
  vertical-align: top;
}

th {
  background: var(--blue-50);
  color: var(--blue-900);
  font-weight: 900;
}

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

.page-hero {
  background: var(--blue-50);
}

.page-hero__inner {
  display: grid;
  gap: 0.9rem;
  padding: clamp(2.2rem, 6vw, 4rem) 0;
}

.page-hero h1 {
  color: var(--blue-950);
}

.page-hero .lead {
  color: var(--gray-700);
}

@media (min-width: 720px) {
  .trust-grid,
  .feature-grid,
  .criteria-grid,
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ranking-card {
    grid-template-columns: minmax(210px, 1.1fr) minmax(220px, 1.4fr) minmax(
        170px,
        0.8fr
      ) minmax(170px, 0.7fr);
    align-items: center;
  }

  .card-actions {
    justify-items: stretch;
  }

  .section-header--split {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.65fr);
    align-items: end;
  }

  .two-col {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.75fr);
    align-items: start;
  }

  .offer-card,
  .review-card {
    padding: 1.25rem;
  }

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

  .cookie-banner.is-visible {
    grid-template-columns: 1fr auto;
  }
}

@media (min-width: 960px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.15rem;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
  }

  .site-nav a {
    min-height: 40px;
    padding: 0.55rem 0.75rem;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.8fr);
    align-items: center;
  }

  .hero-copy {
    display: grid;
    gap: 1.2rem;
  }

  .trust-panel {
    display: grid;
    gap: 0.85rem;
  }

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

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

  .footer-grid {
    grid-template-columns: 1.6fr 0.7fr 0.7fr 0.9fr;
  }
}

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

  .brand img {
    width: 180px;
  }

  .rg-bar__inner {
    justify-content: flex-start;
    text-align: left;
  }

  .hero__inner {
    padding: 2.4rem 0 3rem;
  }

  h1 {
    font-size: 2rem;
  }

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

  .hero-actions .btn,
  .button-row .btn,
  .card-actions .btn {
    width: 100%;
  }

  .review-score {
    width: 64px;
    height: 64px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(130deg, rgba(8, 58, 115, 0.88), rgba(7, 31, 61, 0.78)),
    url("../images/hero-bg.jpg") center center / cover no-repeat;
  color: var(--white);
}

.brand {
  font-size: 32px;
  font-weight: 700;
  text-decoration: none;
  color: #000;
  font-family: Arial, sans-serif;
}

.footer-logos {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logos-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logos-grid img,
.footer-svg-18 {
  height: 42px;
  width: auto;
  display: block;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.footer-svg-18 {
  fill: currentColor;
}

.footer-logos-grid a:hover img,
.footer-logos-grid a:hover .footer-svg-18 {
  opacity: 1;
}

.footer-logo-item {
  display: flex;
  align-items: center;
}
