:root {
  --bg: #f4f7fd;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-solid: #ffffff;
  --text: #12224c;
  --muted: #5f6d92;
  --line: rgba(22, 45, 108, 0.1);
  --primary: #0a5bff;
  --primary-dark: #0a2f8d;
  --shadow: 0 30px 70px rgba(19, 44, 110, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(37, 212, 255, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(10, 91, 255, 0.12), transparent 24%),
    linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

button,
input,
textarea {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding-top: 18px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 32px rgba(20, 44, 100, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(10, 47, 141, 0.08), rgba(37, 212, 255, 0.14));
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-copy strong {
  font-size: 1.05rem;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.82rem;
}

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

.language-switcher {
  display: inline-flex;
  align-items: center;
  padding: 4px;
  border: 1px solid rgba(17, 35, 76, 0.08);
  border-radius: 999px;
  background: rgba(10, 91, 255, 0.05);
}

.language-switcher a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.language-switcher a.is-active {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
  box-shadow: 0 10px 18px rgba(10, 91, 255, 0.2);
}

.site-nav a {
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-cta {
  padding: 12px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff !important;
  box-shadow: 0 18px 30px rgba(10, 91, 255, 0.2);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--surface-solid);
  box-shadow: var(--shadow);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto 5px;
  border-radius: 999px;
  background: var(--text);
}

.menu-toggle span:last-child {
  margin-bottom: 0;
}

.mobile-nav-contact {
  display: none;
}

.section {
  padding: 110px 0;
}

.hero-section {
  padding: 60px 0 90px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border: 1px solid rgba(10, 91, 255, 0.12);
  border-radius: 999px;
  color: var(--primary-dark);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-copy h1,
.section-head h2 {
  margin: 20px 0 18px;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero-copy h1 {
  font-size: clamp(3.3rem, 6vw, 6.2rem);
  max-width: 12ch;
}

.hero-title-compact {
  font-size: clamp(2.3rem, 4.3vw, 4.4rem) !important;
  max-width: 11ch;
}

.hero-text,
.section-head p,
.problem-card p,
.step-card p,
.advantage-card p,
.pricing-card p,
.testimonial-card p,
.faq-item p,
.contact-copy p,
.footer-text {
  color: var(--muted);
  line-height: 1.75;
}

.hero-text {
  max-width: 60ch;
  font-size: 1.08rem;
}

.hero-form {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 22px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}

.input-wrap,
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1 1 260px;
}

.input-wrap span,
.contact-form span {
  font-size: 0.88rem;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(17, 35, 76, 0.12);
  border-radius: 16px;
  background: #fff;
  color: var(--text);
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

button:disabled {
  cursor: wait;
  opacity: 0.72;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 26px;
  border: 0;
  border-radius: 18px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.primary-button {
  background: linear-gradient(135deg, var(--primary), #167bff);
  color: #fff;
  box-shadow: 0 18px 32px rgba(10, 91, 255, 0.28);
}

.secondary-button {
  background: rgba(10, 91, 255, 0.08);
  color: var(--primary-dark);
}

.primary-button:hover,
.primary-button:focus-visible,
.secondary-button:hover,
.secondary-button:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-3px);
}

.primary-button:hover,
.primary-button:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
  box-shadow: 0 24px 36px rgba(10, 91, 255, 0.34);
}

.secondary-button:hover,
.secondary-button:focus-visible {
  background: rgba(10, 91, 255, 0.14);
  box-shadow: 0 18px 28px rgba(10, 91, 255, 0.12);
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-points li,
.platform-cloud span {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(17, 35, 76, 0.08);
}

.hero-visual {
  position: relative;
  min-height: 640px;
  display: grid;
  place-items: center;
}

.hero-card {
  position: relative;
  width: min(92%, 540px);
  aspect-ratio: 1;
  border-radius: 50%;
  padding: 48px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.95), rgba(240, 246, 255, 0.86)),
    linear-gradient(145deg, rgba(255, 255, 255, 0.85), rgba(221, 234, 255, 0.7));
  box-shadow: 0 40px 90px rgba(12, 42, 113, 0.16);
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.hero-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(10, 91, 255, 0.1);
}

.orbit-one {
  width: 88%;
  height: 88%;
}

.orbit-two {
  width: 68%;
  height: 68%;
  border-style: dashed;
}

.floating-badge {
  position: absolute;
  max-width: 220px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.floating-badge strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.35rem;
}

.floating-badge span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.badge-top {
  top: 10%;
  right: 0;
}

.badge-bottom {
  left: 0;
  bottom: 10%;
}

.section-head {
  max-width: 700px;
  margin-bottom: 42px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(2.4rem, 4vw, 4.4rem);
}

.card,
.comparison-card,
.advantage-card,
.contact-form {
  border: 1px solid rgba(17, 35, 76, 0.08);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.card:hover,
.comparison-card:hover,
.advantage-card:hover,
.contact-form:hover,
.faq-item:hover,
.platform-cloud span:hover {
  transform: translateY(-6px);
  box-shadow: 0 36px 74px rgba(19, 44, 110, 0.16);
}

.card:hover,
.comparison-card:hover,
.contact-form:hover,
.faq-item:hover {
  border-color: rgba(10, 91, 255, 0.16);
}

.steps-grid,
.problem-grid,
.pricing-grid,
.testimonials-grid,
.advantage-grid {
  display: grid;
  gap: 22px;
}

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

.step-card,
.problem-card,
.pricing-card,
.testimonial-card {
  padding: 30px;
}

.step-card h3,
.problem-card h3,
.pricing-card h3,
.testimonial-card h3,
.comparison-card h3,
.advantage-card h3,
.site-footer h3 {
  margin: 18px 0 12px;
  font-size: 1.4rem;
}

.step-icon {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(10, 91, 255, 0.12), rgba(37, 212, 255, 0.18));
  position: relative;
}

.step-icon::before,
.step-icon::after {
  content: "";
  position: absolute;
}

.search-icon::before {
  top: 16px;
  left: 16px;
  width: 26px;
  height: 26px;
  border: 4px solid var(--primary);
  border-radius: 50%;
}

.search-icon::after {
  right: 14px;
  bottom: 16px;
  width: 18px;
  height: 4px;
  background: var(--primary);
  border-radius: 999px;
  transform: rotate(45deg);
}

.card-icon::before {
  top: 18px;
  left: 14px;
  width: 42px;
  height: 28px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), #4e9bff);
}

.card-icon::after {
  top: 28px;
  left: 22px;
  width: 18px;
  height: 4px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 0 rgba(255, 255, 255, 0.75);
}

.check-icon::before {
  inset: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #18c983, #62e7ba);
}

.check-icon::after {
  top: 30px;
  left: 24px;
  width: 24px;
  height: 12px;
  border-left: 4px solid #fff;
  border-bottom: 4px solid #fff;
  transform: rotate(-45deg);
}

.report-cta-section {
  padding: 0 0 110px;
}

.report-cta-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: 28px;
  align-items: center;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 36px;
  background:
    radial-gradient(circle at 14% 10%, rgba(37, 212, 255, 0.28), transparent 28%),
    radial-gradient(circle at 92% 14%, rgba(10, 91, 255, 0.26), transparent 30%),
    linear-gradient(145deg, #07183f, #0b3f9e 58%, #0d78e8);
  color: #fff;
  box-shadow: 0 34px 84px rgba(8, 39, 112, 0.28);
}

.report-cta-panel::before {
  content: "";
  position: absolute;
  inset: auto -80px -120px auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.report-cta-copy,
.report-cta-form,
.report-cta-badges {
  position: relative;
  z-index: 1;
}

.report-cta-copy h2 {
  max-width: 10ch;
  margin: 18px 0 14px;
  font-size: clamp(2rem, 4.2vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.report-cta-copy p {
  max-width: 54ch;
  margin: 0;
  color: rgba(244, 248, 255, 0.78);
  line-height: 1.7;
}

.report-cta-form {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
}

.report-cta-form label {
  display: grid;
  gap: 10px;
}

.report-cta-form span {
  color: rgba(244, 248, 255, 0.86);
  font-size: 0.88rem;
  font-weight: 800;
}

.report-cta-form input {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.92);
}

.report-cta-form .primary-button {
  background: #fff;
  color: var(--primary-dark);
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.18);
}

.report-cta-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  grid-column: 1 / -1;
}

.report-cta-badges span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(244, 248, 255, 0.88);
  font-weight: 800;
}

.muted-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.36), rgba(233, 240, 255, 0.65));
}

.problem-card strong {
  font-size: 0.92rem;
  color: var(--primary);
}

.platform-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.platform-cloud span {
  font-weight: 700;
  color: var(--primary-dark);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.platform-table-wrap {
  overflow-x: auto;
}

.platform-table {
  min-width: 720px;
  border: 1px solid rgba(17, 35, 76, 0.08);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.76);
  overflow: hidden;
}

.platform-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 18px;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(17, 35, 76, 0.07);
}

.platform-row:last-child {
  border-bottom: 0;
}

.platform-head {
  font-weight: 800;
  background: rgba(10, 91, 255, 0.05);
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.comparison-card {
  position: relative;
  padding: 34px;
  overflow: hidden;
}

.before-card {
  background: linear-gradient(180deg, rgba(255, 235, 238, 0.95), rgba(255, 255, 255, 0.84));
}

.after-card {
  background: linear-gradient(180deg, rgba(232, 255, 245, 0.95), rgba(255, 255, 255, 0.84));
}

.comparison-label {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.82rem;
}

.comparison-label.bad {
  background: rgba(235, 81, 96, 0.12);
  color: #c63f53;
}

.comparison-label.good {
  background: rgba(31, 201, 128, 0.14);
  color: #0d9a5f;
}

.comparison-card ul,
.pricing-card ul {
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.dark-panel {
  background: linear-gradient(145deg, #082060, #0f2f82);
}

.light,
.light h2,
.light p {
  color: #f4f8ff;
}

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

.advantage-card {
  padding: 28px;
  color: #f4f8ff;
  background: rgba(255, 255, 255, 0.08);
}

.advantage-card p {
  color: rgba(234, 242, 255, 0.75);
}

.pricing-card {
  position: relative;
}

.featured {
  transform: translateY(-10px);
  border-color: rgba(10, 91, 255, 0.18);
}

.pricing-name {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--primary-dark);
  font-weight: 800;
}

.pricing-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(10, 91, 255, 0.1);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  padding: 0 24px;
  border: 1px solid rgba(17, 35, 76, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 0;
  font-weight: 800;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0 0 24px;
}

.contact-section {
  padding-top: 40px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  padding: 34px;
  border: 1px solid rgba(17, 35, 76, 0.08);
  border-radius: 36px;
  background:
    radial-gradient(circle at top right, rgba(37, 212, 255, 0.12), transparent 30%),
    rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}

.contact-channels {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.contact-channels span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-channels a {
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 28px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  padding: 36px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 22px;
  padding: 34px;
  border-radius: 32px;
  background: #07183f;
  color: #f2f6ff;
}

.footer-brand {
  margin-bottom: 18px;
}

.site-footer a,
.site-footer p {
  display: block;
  margin: 0 0 10px;
  color: rgba(242, 246, 255, 0.76);
}

.site-footer a:hover,
.site-footer a:focus-visible,
.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--primary);
}

.reveal {
  opacity: 0;
}

.reveal.is-visible {
  opacity: 1;
}

.footer-bottom {
  padding-top: 18px;
}

.footer-bottom p {
  margin: 0;
  color: var(--muted);
  text-align: center;
}

.page-hero {
  padding: 72px 0 46px;
}

.page-hero.compact {
  padding-bottom: 16px;
}

.page-hero-grid,
.split-section,
.story-grid,
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.page-hero-card,
.info-panel,
.metric-card,
.service-row,
.contact-card,
.legal-panel,
.table-card,
.story-card,
.timeline-card {
  border: 1px solid rgba(17, 35, 76, 0.08);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.page-hero-card,
.info-panel,
.legal-panel,
.table-card,
.story-card,
.timeline-card {
  padding: 30px;
}

.page-hero-card h1,
.content-prose h2 {
  margin: 16px 0 14px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.page-hero-card h1 {
  font-size: clamp(1.8rem, 3vw, 2.9rem);
}

.page-hero-card p,
.content-prose p,
.content-prose li,
.timeline-card p,
.contact-card p,
.service-row p,
.table-card p,
.info-panel p {
  color: var(--muted);
  line-height: 1.75;
}

.metric-grid,
.contact-cards,
.story-metrics,
.mini-grid {
  display: grid;
  gap: 18px;
}

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

.metric-card,
.contact-card,
.service-row {
  padding: 24px;
}

.metric-card strong,
.story-metrics strong {
  display: block;
  margin-bottom: 8px;
  font-size: 2rem;
  line-height: 1;
  color: var(--primary-dark);
}

.service-detail-grid {
  display: grid;
  gap: 22px;
}

.service-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: center;
}

.service-row ul,
.legal-list,
.content-prose ul {
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.table-card {
  overflow: hidden;
}

.large-table-wrap {
  overflow-x: auto;
}

.large-table {
  min-width: 960px;
  width: 100%;
  border-collapse: collapse;
}

.large-table th,
.large-table td {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(17, 35, 76, 0.08);
  text-align: left;
  vertical-align: top;
}

.large-table th {
  background: rgba(10, 91, 255, 0.06);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.large-table tr:hover td {
  background: rgba(10, 91, 255, 0.03);
}

.platform-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--primary-dark);
  font-weight: 800;
}

.platform-logo-mini,
.platform-logo-large {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 20%, rgba(37, 212, 255, 0.85), transparent 34%),
    linear-gradient(145deg, #07183f, #0a5bff);
  color: #fff;
  font-weight: 900;
  letter-spacing: -0.05em;
  box-shadow: 0 14px 26px rgba(10, 91, 255, 0.18);
}

.platform-logo-mini {
  width: 38px;
  height: 38px;
  font-size: 0.78rem;
}

.platform-logo-large {
  width: 96px;
  height: 96px;
  font-size: 2rem;
}

.platform-detail-title {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 18px 0;
}

.platform-detail-title h1 {
  margin: 0;
}

.platform-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.platform-facts {
  display: grid;
  gap: 16px;
}

.platform-facts div {
  padding: 18px;
  border: 1px solid rgba(17, 35, 76, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.62);
}

.platform-facts span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.platform-facts strong,
.platform-facts a {
  color: var(--primary-dark);
  font-size: 1.08rem;
  font-weight: 900;
}

.platform-facts p {
  margin: 0;
}

.table-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 14px;
  background: rgba(10, 91, 255, 0.08);
  color: var(--primary-dark);
  font-weight: 800;
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.badge-list li {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(10, 91, 255, 0.08);
  color: var(--primary-dark);
  font-weight: 700;
}

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

.contact-card a {
  font-weight: 800;
}

.contact-highlight-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.contact-highlight-item {
  display: block;
  padding: 20px 22px;
  border: 1px solid rgba(10, 91, 255, 0.12);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(10, 91, 255, 0.08), rgba(37, 212, 255, 0.08));
  box-shadow: 0 18px 40px rgba(10, 91, 255, 0.1);
}

.contact-highlight-item strong {
  display: block;
  margin-top: 6px;
  font-size: clamp(1.15rem, 2vw, 1.7rem);
  line-height: 1.15;
  color: var(--primary-dark);
  letter-spacing: -0.03em;
}

.contact-highlight-label {
  display: inline-block;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-highlight-item:hover,
.contact-highlight-item:focus-visible {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 26px 48px rgba(10, 91, 255, 0.16);
  border-color: rgba(10, 91, 255, 0.22);
}

.report-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: start;
}

.buy-report-hero,
.report-result-hero {
  padding: 42px 0 52px;
}

.buy-report-hero .page-hero-grid,
.report-result-hero .page-hero-grid {
  align-items: stretch;
}

.buy-report-hero .page-hero-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.buy-report-hero .page-hero-card,
.report-result-hero .page-hero-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.buy-report-hero .page-hero-card h1,
.report-result-hero .page-hero-card h1 {
  max-width: 10ch;
  font-size: clamp(2.15rem, 3.2vw, 3.25rem);
}

.report-check-inline {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: end;
  margin-top: 32px;
}

.report-check-inline label {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.report-check-inline span {
  font-size: 0.88rem;
  font-weight: 800;
}

.report-check-inline .primary-button {
  min-width: 170px;
}

.report-help-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
}

.report-help-panel h3 {
  font-size: clamp(1.65rem, 2.4vw, 2.2rem);
}

.report-check-form h2,
.report-order-form h2,
.report-result-card h2 {
  margin: 0 0 16px;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  letter-spacing: -0.04em;
}

.report-side {
  display: grid;
  gap: 18px;
  align-content: start;
}

.report-order-form {
  gap: 14px;
  padding: 24px;
}

.report-alert {
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(10, 91, 255, 0.08);
  color: var(--primary-dark);
  font-weight: 800;
}

.report-alert.error {
  background: rgba(235, 81, 96, 0.12);
  color: #b83447;
}

.report-alert p {
  margin: 0 0 8px;
}

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

.report-vehicle {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(10, 91, 255, 0.06);
}

.report-vehicle span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.report-vehicle strong {
  font-size: 1rem;
}

.report-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.report-option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(17, 35, 76, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.report-option:hover,
.report-option:focus-within {
  transform: translateY(-3px);
  border-color: rgba(10, 91, 255, 0.22);
  box-shadow: 0 20px 34px rgba(10, 91, 255, 0.12);
}

.report-option input {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
}

.report-option strong,
.report-option b {
  font-size: 0.98rem;
}

.report-option small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
}

.report-option b {
  display: block;
  grid-column: 2;
  color: var(--primary-dark);
}

.report-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(10, 91, 255, 0.1), rgba(37, 212, 255, 0.1));
}

.report-total span {
  color: var(--muted);
  font-weight: 800;
}

.report-total strong {
  color: var(--primary-dark);
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
}

.report-loading-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(7, 24, 63, 0.58);
  backdrop-filter: blur(12px);
}

.report-loading-overlay[hidden] {
  display: none;
}

.report-loader-card {
  width: min(100%, 420px);
  padding: 34px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  text-align: center;
}

.report-loader-card strong {
  display: block;
  margin: 18px 0 8px;
  font-size: 1.45rem;
}

.report-loader-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.report-spinner {
  display: inline-block;
  width: 58px;
  height: 58px;
  border: 5px solid rgba(10, 91, 255, 0.12);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: report-spin 0.8s linear infinite;
}

.report-result-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.report-result-card {
  display: grid;
  gap: 16px;
  padding: 30px;
}

.report-result-hero .report-result-grid {
  grid-template-columns: 1fr;
}

.report-mail-panel {
  padding: 24px;
}

@keyframes report-spin {
  to {
    transform: rotate(360deg);
  }
}

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

.timeline-card h3,
.service-row h3,
.contact-card h3,
.story-card h3,
.info-panel h3,
.legal-panel h3 {
  margin: 0 0 12px;
  font-size: 1.3rem;
}

.note-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding: 16px 18px;
  margin-top: 18px;
  border-radius: 18px;
  background: rgba(10, 91, 255, 0.06);
  color: var(--primary-dark);
  font-weight: 700;
}

.content-prose {
  max-width: 900px;
}

.content-prose h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

#privacy-note {
  scroll-margin-top: 110px;
}

@media (max-width: 1080px) {
  .hero-grid,
  .report-cta-panel,
  .faq-layout,
  .contact-grid,
  .advantage-grid,
  .page-hero-grid,
  .split-section,
  .story-grid,
  .contact-page-grid,
  .report-layout,
  .service-row {
    grid-template-columns: 1fr;
  }

  .steps-grid,
  .problem-grid,
  .pricing-grid,
  .testimonials-grid,
  .footer-grid,
  .metric-grid,
  .story-metrics,
  .contact-cards,
  .mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-copy h1 {
    max-width: none;
  }

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

  .buy-report-hero .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .buy-report-hero .page-hero-card h1,
  .report-result-hero .page-hero-card h1 {
    max-width: none;
  }
}

@media (max-width: 820px) {
  .site-header {
    padding-top: 12px;
  }

  .header-inner {
    border-radius: 28px;
  }

  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px) scale(0.985);
    transform-origin: top center;
    transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .language-switcher {
    width: 100%;
    justify-content: flex-start;
    margin-bottom: 6px;
  }

  .language-switcher a {
    min-width: 54px;
  }

  .site-nav .nav-cta {
    margin-top: 6px;
  }

  .mobile-nav-contact {
    display: grid;
    gap: 8px;
    width: 100%;
    margin-top: 10px;
    padding-top: 16px;
    border-top: 1px solid rgba(17, 35, 76, 0.08);
  }

  .mobile-nav-contact span {
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  .mobile-nav-contact a {
    color: var(--text);
    font-weight: 700;
  }

  .section {
    padding: 88px 0;
  }

  .report-cta-section {
    padding-bottom: 88px;
  }

  .hero-section {
    padding-top: 34px;
  }

  .hero-points,
  .report-check-inline,
  .report-options,
  .steps-grid,
  .problem-grid,
  .pricing-grid,
  .testimonials-grid,
  .comparison-grid,
    .footer-grid,
    .metric-grid,
    .story-metrics,
    .contact-cards,
    .report-result-grid,
    .mini-grid {
    grid-template-columns: 1fr;
  }

  .platform-row {
    grid-template-columns: 1.7fr 1fr 1fr 1.2fr;
  }
}

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

  .brand-copy small {
    display: none;
  }

  .hero-copy h1 {
    font-size: 2.8rem;
  }

  .section-head h2 {
    font-size: 2.15rem;
  }

  .hero-form,
  .contact-grid,
  .contact-form,
  .step-card,
  .problem-card,
  .pricing-card,
  .testimonial-card,
  .comparison-card {
    padding: 22px;
  }

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

  .report-check-inline {
    margin-top: 24px;
  }

  .report-check-inline .primary-button {
    width: 100%;
  }

  .report-cta-panel {
    padding: 24px;
    border-radius: 28px;
  }

  .platform-detail-title {
    align-items: flex-start;
    flex-direction: column;
  }

  .platform-logo-large {
    width: 78px;
    height: 78px;
    font-size: 1.55rem;
  }

  .report-cta-copy h2 {
    max-width: none;
    font-size: 2.3rem;
  }

  .floating-badge {
    max-width: 160px;
    padding: 14px;
  }

  .platform-table {
    min-width: 620px;
  }
}
