:root {
  --navy: #08172e;
  --navy-2: #0f2d4c;
  --cyan: #12a9d8;
  --cyan-bright: #17c8f3;
  --white: #ffffff;
  --gray-25: #f8fbfd;
  --gray-50: #f3f7fa;
  --gray-100: #e7eef4;
  --gray-200: #d7e1ec;
  --gray-500: #65768a;
  --gray-700: #33465d;
  --green: #2fbf71;
  --amber: #f2b84b;
  --red: #d95b5b;
  --ink: #12243a;
  --shadow: 0 18px 45px rgba(8, 23, 46, .12);
  --radius: 8px;
  --max: 1180px;
  --font: Inter, Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

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

a:hover {
  color: var(--cyan);
}

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

:focus-visible {
  outline: 3px solid rgba(18, 169, 216, .45);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 2000;
  padding: 10px 14px;
  background: var(--cyan);
  color: var(--navy);
  border-radius: var(--radius);
  font-weight: 800;
}

.skip-link:focus {
  top: 16px;
}

.top-bar {
  background: var(--navy);
  color: var(--white);
  font-size: .86rem;
  letter-spacing: 0;
}

.top-bar__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
  transition: box-shadow .2s ease, border-color .2s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 32px rgba(8, 23, 46, .1);
  border-bottom-color: transparent;
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 184px;
}

.brand img {
  width: 214px;
  max-height: 52px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 10px 12px;
  color: var(--gray-700);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .95rem;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--navy);
  background: var(--gray-50);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  border-radius: var(--radius);
  align-items: center;
  justify-content: center;
  color: var(--navy);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle span::before {
  transform: translateY(-7px);
}

.menu-toggle span::after {
  transform: translateY(5px);
}

.menu-open .menu-toggle span {
  transform: rotate(45deg);
}

.menu-open .menu-toggle span::before {
  transform: translateY(0) rotate(90deg);
}

.menu-open .menu-toggle span::after {
  opacity: 0;
}

.hero {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(8, 23, 46, .96), rgba(15, 45, 76, .92)),
    var(--navy);
  overflow: hidden;
}

.hero__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 56px 20px 42px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
  align-items: center;
  gap: 36px;
}

.hero h1 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: clamp(2.1rem, 6vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.hero p {
  max-width: 710px;
  margin: 0 0 24px;
  color: #e9f4fb;
  font-size: 1.08rem;
}

.hero__visual {
  position: relative;
}

.hero__visual img {
  display: block;
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .28);
}

.hero__note {
  position: absolute;
  right: 18px;
  bottom: 18px;
  max-width: 250px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, .92);
  color: var(--navy);
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-size: .9rem;
  font-weight: 700;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--cyan-bright);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan-bright);
  box-shadow: 0 0 0 5px rgba(23, 200, 243, .14);
}

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

.button,
.button-outline,
.button-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 800;
  text-align: center;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, color .16s ease;
}

.button {
  background: var(--cyan);
  color: var(--navy);
  box-shadow: 0 10px 24px rgba(18, 169, 216, .24);
}

.button:hover {
  transform: translateY(-1px);
  color: var(--navy);
  background: var(--cyan-bright);
}

.button-outline {
  border-color: rgba(255, 255, 255, .36);
  color: var(--white);
  background: rgba(255, 255, 255, .08);
}

.button-outline:hover {
  color: var(--white);
  background: rgba(255, 255, 255, .16);
}

.button-light {
  background: var(--white);
  color: var(--navy);
  border-color: var(--gray-200);
}

.button-light:hover {
  color: var(--navy);
  border-color: var(--cyan);
  box-shadow: var(--shadow);
}

.research-strip {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px 36px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.research-indicator {
  min-height: 112px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  border-radius: var(--radius);
}

.research-indicator strong {
  display: block;
  font-size: 1.35rem;
  line-height: 1.1;
}

.research-indicator span {
  display: block;
  margin-top: 6px;
  color: #d6e9f4;
  font-size: .9rem;
}

.section {
  padding: 58px 20px;
}

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

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

.container {
  max-width: var(--max);
  margin: 0 auto;
}

.section-head {
  max-width: 780px;
  margin: 0 0 28px;
}

.section-head h2,
.content h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  line-height: 1.14;
  letter-spacing: 0;
}

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

.section-head p,
.lead {
  margin: 0;
  color: var(--gray-700);
  font-size: 1.04rem;
}

.section--navy .section-head p,
.section--navy .lead {
  color: #d7e7f2;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

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

.card {
  padding: 22px;
  border: 1px solid var(--gray-100);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 8px 22px rgba(8, 23, 46, .05);
}

.card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.16rem;
  line-height: 1.24;
}

.card p {
  margin: 0 0 14px;
  color: var(--gray-700);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 16px 0;
}

.metric {
  padding: 12px;
  border: 1px solid var(--gray-100);
  background: var(--gray-25);
  border-radius: var(--radius);
}

.metric span {
  display: block;
  color: var(--gray-500);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.metric strong {
  display: block;
  color: var(--navy);
  font-size: 1.32rem;
  line-height: 1.2;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.tag-list li,
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 9px;
  color: var(--navy);
  background: #eaf8fc;
  border: 1px solid #cceef7;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 800;
}

.analysis-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.analysis-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.score {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  height: 44px;
  padding: 0 10px;
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius);
  font-weight: 900;
}

.analysis-card .button-light {
  margin-top: auto;
  width: 100%;
}

.feature-list,
.check-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li,
.check-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  color: var(--gray-700);
}

.feature-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
}

.content {
  max-width: 880px;
}

.content h1 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.content h2 {
  margin-top: 38px;
}

.content h3 {
  margin: 28px 0 8px;
  color: var(--navy);
  font-size: 1.26rem;
}

.content p {
  color: var(--gray-700);
}

.content a {
  color: var(--navy);
  font-weight: 800;
  border-bottom: 2px solid rgba(18, 169, 216, .34);
}

.content a:hover {
  color: var(--cyan);
}

.page-hero {
  padding: 58px 20px 42px;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-100);
}

.page-hero__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: end;
}

.page-hero .content {
  max-width: 820px;
}

.page-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  color: var(--gray-700);
  font-size: .94rem;
  font-weight: 700;
}

.summary-panel {
  padding: 20px;
  border: 1px solid var(--gray-100);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.summary-panel strong {
  display: block;
  color: var(--navy);
  font-size: 1rem;
}

.summary-panel span {
  display: block;
  color: var(--gray-700);
  font-size: .92rem;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 22px rgba(8, 23, 46, .05);
}

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

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

th {
  color: var(--navy);
  background: var(--gray-50);
  font-size: .84rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}

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

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
}

.filter-button {
  min-height: 40px;
  padding: 8px 13px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--navy);
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
}

.filter-button.is-active,
.filter-button:hover {
  border-color: var(--cyan);
  background: #eaf8fc;
}

.accordion {
  display: grid;
  gap: 10px;
}

.accordion-item {
  border: 1px solid var(--gray-100);
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
}

.accordion-button {
  width: 100%;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 0;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  text-align: left;
  font-weight: 900;
}

.accordion-button::after {
  content: "+";
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  background: var(--gray-50);
  border-radius: 50%;
  font-size: 1.1rem;
}

.accordion-button[aria-expanded="true"]::after {
  content: "-";
}

.accordion-panel {
  display: none;
  padding: 0 20px 18px;
  color: var(--gray-700);
}

.accordion-button[aria-expanded="true"] + .accordion-panel {
  display: block;
}

.form {
  display: grid;
  gap: 14px;
}

.form label {
  display: grid;
  gap: 6px;
  color: var(--navy);
  font-weight: 800;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
}

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

.notice {
  padding: 16px 18px;
  border-left: 4px solid var(--cyan);
  background: var(--gray-50);
  color: var(--gray-700);
  border-radius: var(--radius);
}

.breadcrumb {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 20px 0;
  color: var(--gray-500);
  font-size: .9rem;
}

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

.breadcrumb span {
  color: var(--navy);
  font-weight: 800;
}

.site-footer {
  background: var(--navy);
  color: #d7e7f2;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 44px 20px 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(140px, .6fr));
  gap: 28px;
}

.footer-logo {
  width: 220px;
  filter: brightness(0) invert(1);
  opacity: .95;
}

.site-footer h2,
.site-footer h3 {
  color: var(--white);
  margin: 0 0 12px;
  font-size: 1rem;
}

.site-footer p {
  margin: 12px 0 0;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a:hover {
  color: var(--cyan-bright);
}

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

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1500;
  max-width: 760px;
  margin: 0 auto;
  padding: 18px;
  display: none;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

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

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1200;
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-200);
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  cursor: pointer;
  box-shadow: var(--shadow);
}

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

.rating-line {
  display: grid;
  grid-template-columns: 150px 1fr 52px;
  align-items: center;
  gap: 10px;
  margin: 12px 0;
}

.rating-line span {
  color: var(--gray-700);
  font-weight: 800;
}

.rating-bar {
  height: 10px;
  overflow: hidden;
  background: var(--gray-100);
  border-radius: 999px;
}

.rating-bar i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--green));
}

.legal-list {
  margin: 18px 0;
  padding-left: 22px;
  color: var(--gray-700);
}

.legal-list li {
  margin-bottom: 10px;
}

.hidden {
  display: none !important;
}

@media (max-width: 940px) {
  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px 18px;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
    box-shadow: 0 20px 32px rgba(8, 23, 46, .08);
  }

  .menu-open .main-nav {
    display: flex;
  }

  .nav-link {
    padding: 12px;
  }

  .hero__inner,
  .page-hero__inner {
    grid-template-columns: 1fr;
  }

  .research-strip,
  .grid-4,
  .grid-3,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .header-inner {
    padding: 12px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 184px;
  }

  .hero__inner {
    padding: 44px 16px 30px;
  }

  .hero__note {
    position: static;
    margin-top: 12px;
    max-width: none;
  }

  .research-strip,
  .grid-2,
  .grid-3,
  .grid-4,
  .metric-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .page-hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .content h1 {
    font-size: 2.1rem;
  }

  .rating-line {
    grid-template-columns: 1fr;
    gap: 6px;
  }

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

  .back-to-top {
    right: 14px;
    bottom: 14px;
  }
}

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

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

.analysis-card{
    position:relative;
    background:#fff;
    border:1px solid #e6ebf2;
    border-radius:12px;
    padding:24px;
    box-shadow:0 10px 30px rgba(10,37,87,.06);
}

.analysis-rank{
    position:absolute;
    top:16px;
    right:16px;
    background:#081f4d;
    color:#fff;
    padding:6px 12px;
    border-radius:8px;
    font-weight:700;
}

.analysis-card__top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}

.analysis-score{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#f4f7fb;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    color:#0b5fff;
    font-size:1.2rem;
}

.operator-logo{
    width:120px;
    height:60px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.operator-logo img{
    width:100%;
    height:100%;
    object-fit:contain;
}

@media(max-width:980px){
    .analysis-grid{
        grid-template-columns:1fr;
    }
}

.footer-logos {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.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: .8;
  transition: opacity .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;
}