:root {
  --bg: #f6f8fc;
  --surface: #ffffff;
  --surface-soft: #eef3fa;
  --text: #172033;
  --muted: #61708a;
  --line: rgba(23, 32, 51, 0.12);
  --primary: #174ea6;
  --primary-dark: #0d3473;
  --primary-soft: rgba(23, 78, 166, 0.12);
  --accent: #f0b429;
  --accent-soft: rgba(240, 180, 41, 0.18);
  --danger: #bd2935;
  --footer: #0d1b33;
  --shadow: 0 22px 60px rgba(13, 30, 58, 0.13);
  --shadow-soft: 0 14px 34px rgba(13, 30, 58, 0.08);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

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

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

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

.content-narrow {
  width: min(100% - 32px, 840px);
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 9999;
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  color: var(--primary-dark);
  box-shadow: var(--shadow-soft);
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(23, 32, 51, 0.08);
}

.ad-disclosure {
  font-size: 13px;
  color: #fff;
  background: #10264a;
  padding: 8px 0;
}

.ad-disclosure strong {
  color: var(--accent);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.header-main {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
}

.header-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

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

.brand-mark {
  width: 80px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: #08172d;
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #ffdc6b, #f0b429);
  box-shadow: 0 12px 28px rgba(240, 180, 41, 0.28);
}

.brand-text {
  display: grid;
  line-height: 1.05;
}

.brand-text strong {
  font-size: 18px;
  letter-spacing: -0.03em;
}

.brand-text small {
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 11px;
}

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

.main-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: #334159;
  font-weight: 700;
  font-size: 14px;
  transition: background 0.2s ease, color 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: var(--primary-soft);
  color: var(--primary-dark);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  min-height: 48px;
  padding: 13px 22px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-cta,
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 16px 32px rgba(23, 78, 166, 0.26);
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  color: var(--primary-dark);
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(23, 78, 166, 0.18), var(--shadow-soft);
}

.btn-secondary.dark {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}

.btn-light {
  color: #10264a;
  background: #fff;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.btn-small {
  min-height: 40px;
  padding: 10px 16px;
  font-size: 14px;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--text);
}

.hero {
  position: relative;
  overflow: hidden;
}

/* ==============================
   HERO ADVERTORIAL WITH IMAGE BG
   Kfz Leadgen
   Image path: assets/images/hero-kfz.webp
============================== */

.hero.hero-advertorial {
  position: relative;
  min-height: calc(100svh - var(--header-height, 82px));
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
  color: #ffffff;
  background: #08172d;
  isolation: isolate;
}

.hero.hero-advertorial .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg,
      rgba(8, 23, 45, 0.94) 0%,
      rgba(8, 23, 45, 0.84) 34%,
      rgba(8, 23, 45, 0.58) 63%,
      rgba(8, 23, 45, 0.26) 100%),
    url("/assets/img/741d38bb-ed91-4163-b671-eee1f890334b.png") center center / cover no-repeat;
}

.hero.hero-advertorial .hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 20% 24%, rgba(240, 180, 41, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(8, 23, 45, 0.04), rgba(8, 23, 45, 0.28));
}

.hero.hero-advertorial .hero-grid {
  position: relative;
  z-index: 2;
  width: min(100% - 32px, 1380px);
  min-height: calc(100svh - var(--header-height, 82px));
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  margin-inline: auto;
  padding: clamp(64px, 8vw, 110px) 0;
}

.hero.hero-advertorial .hero-copy {
  width: min(100%, 920px);
  padding: clamp(28px, 4.5vw, 46px);
  border-radius: 34px;
  background: linear-gradient(135deg,
      rgba(8, 23, 45, 0.76),
      rgba(13, 52, 115, 0.42));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(8px);
}

.hero.hero-advertorial .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 0 0 18px;
  padding: 9px 15px;
  border-radius: 999px;
  color: #10264a;
  background: linear-gradient(135deg, #ffe391, var(--accent));
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 14px 32px rgba(240, 180, 41, 0.28);
}

.hero.hero-advertorial h1 {
  max-width: 680px;
  margin: 0 0 20px;
  color: #ffffff;
  font-size: clamp(36px, 5.5vw, 66px);
  line-height: 1.02;
  letter-spacing: -0.065em;
  text-wrap: balance;
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.34);
}

.hero.hero-advertorial .hero-lead {
  max-width: 640px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.7;
}

.hero.hero-advertorial .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0 0 30px;
}

.hero.hero-advertorial .hero-actions .btn {
  min-height: 54px;
  padding-inline: 24px;
}

.hero.hero-advertorial .hero-actions .btn-primary {
  color: #10264a;
  background: linear-gradient(135deg, #ffe391, var(--accent));
  box-shadow: 0 18px 38px rgba(240, 180, 41, 0.32);
}

.hero.hero-advertorial .hero-actions .btn-primary:hover,
.hero.hero-advertorial .hero-actions .btn-primary:focus-visible {
  box-shadow: 0 22px 44px rgba(240, 180, 41, 0.42);
}

.hero.hero-advertorial .hero-actions .btn-secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}

.hero.hero-advertorial .hero-actions .btn-secondary:hover,
.hero.hero-advertorial .hero-actions .btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.18);
}

.hero.hero-advertorial .hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero.hero-advertorial .hero-points li {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px 8px 36px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 14px;
  font-weight: 800;
}

.hero.hero-advertorial .hero-points li::before {
  content: "✓";
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #10264a;
  background: var(--accent);
  font-size: 11px;
  font-weight: 900;
}

.hero.hero-advertorial .hero-panel {
  display: grid;
  gap: 18px;
  align-self: center;
}

.hero.hero-advertorial .panel-card,
.hero.hero-advertorial .metric-card {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
}

.hero.hero-advertorial .panel-card-main {
  min-height: 330px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.94)),
    radial-gradient(circle at 28% 12%, rgba(240, 180, 41, 0.38), transparent 30%),
    #ffffff;
}

.hero.hero-advertorial .panel-card p,
.hero.hero-advertorial .metric-card small {
  color: var(--muted);
}

.hero.hero-advertorial .metric-card span {
  color: var(--primary-dark);
}

@media (max-width: 980px) {
  .hero.hero-advertorial {
    min-height: auto;
    padding: 0;
  }

  .hero.hero-advertorial .hero-bg {
    background:
      linear-gradient(180deg,
        rgba(8, 23, 45, 0.9) 0%,
        rgba(8, 23, 45, 0.76) 46%,
        rgba(8, 23, 45, 0.92) 100%),
      url("/assets/img/741d38bb-ed91-4163-b671-eee1f890334b.png") center center / cover no-repeat;
  }

  .hero.hero-advertorial .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 72px 0;
  }

  .hero.hero-advertorial .hero-copy {
    width: 100%;
  }

  .hero.hero-advertorial .hero-panel {
    max-width: 680px;
  }
}

@media (max-width: 640px) {
  .hero.hero-advertorial {
    min-height: auto;
    padding: 0;
  }

  .hero.hero-advertorial .hero-bg {
    background:
      linear-gradient(180deg,
        rgba(8, 23, 45, 0.92) 0%,
        rgba(8, 23, 45, 0.78) 45%,
        rgba(8, 23, 45, 0.96) 100%),
      url("../images/hero-kfz.webp") center center / cover no-repeat;
  }

  .hero.hero-advertorial .hero-grid {
    width: min(100% - 24px, 1180px);
    padding: 52px 0;
  }

  .hero.hero-advertorial .hero-copy {
    padding: 22px;
    border-radius: 24px;
  }

  .hero.hero-advertorial .eyebrow {
    font-size: 11px;
    padding: 8px 12px;
  }

  .hero.hero-advertorial h1 {
    font-size: clamp(32px, 11vw, 44px);
    letter-spacing: -0.055em;
  }

  .hero.hero-advertorial .hero-lead {
    font-size: 16px;
    line-height: 1.65;
  }

  .hero.hero-advertorial .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero.hero-advertorial .hero-actions .btn {
    width: 100%;
  }

  .hero.hero-advertorial .hero-points {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero.hero-advertorial .hero-points li {
    width: 100%;
    border-radius: 16px;
  }

  .hero.hero-advertorial .panel-card-main {
    min-height: auto;
  }
}

.panel-card,
.metric-card,
.benefit-card,
.qa-card,
.process-card,
.placeholder-card,
.contact-info,
.contact-form,
.legal-content,
.legal-nav {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(23, 32, 51, 0.1);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-lg);
}

.panel-card-main {
  padding: 30px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.94)),
    radial-gradient(circle at 28% 12%, rgba(240, 180, 41, 0.34), transparent 30%),
    #fff;
}

.panel-kicker {
  color: var(--primary);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
}

.panel-card strong {
  display: block;
  margin-top: 8px;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

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

.metric-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.metric-card {
  padding: 24px;
}

.metric-card span {
  display: block;
  color: var(--primary-dark);
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.metric-card small {
  color: var(--muted);
  font-weight: 700;
}

.section {
  padding: 88px 0;
}

.section-soft {
  background: #edf3fb;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading.left {
  margin-inline: 0;
  text-align: left;
}

.section-heading h2,
.advertorial-story h2,
.split-copy h2,
.legal-content h2,
.placeholder-card h2,
.contact-info h2,
.contact-form h2 {
  margin: 0;
  color: #10203c;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.section-heading p,
.advertorial-story p,
.split-copy p {
  color: var(--muted);
  font-size: 18px;
}

.advertorial-story {
  background: #fff;
}

.advertorial-story p {
  font-size: 19px;
}

.article-callout,
.notice-box {
  margin: 26px 0;
  padding: 20px 22px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(240, 180, 41, 0.45);
  background: var(--accent-soft);
  color: #4d3810;
}

.inline-cta,
.center-action {
  margin-top: 30px;
  text-align: center;
}

.inline-cta {
  text-align: left;
}

.qa-list {
  display: grid;
  gap: 18px;
}

.qa-card {
  padding: 28px;
}

.qa-card h3 {
  margin: 0 0 12px;
  color: #10203c;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.qa-card p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.benefit-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.benefit-card,
.process-card {
  padding: 30px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefit-card:hover,
.process-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.icon-bubble,
.process-card span,
.placeholder-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #10264a;
  background: linear-gradient(135deg, #ffe391, var(--accent));
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(240, 180, 41, 0.26);
}

.benefit-card h3,
.process-card h3 {
  margin: 24px 0 10px;
  color: #10203c;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.benefit-card p,
.process-card p {
  margin: 0;
  color: var(--muted);
}

.check-points {
  color: #fff;
  background:
    radial-gradient(circle at 88% 20%, rgba(240, 180, 41, 0.28), transparent 28%),
    linear-gradient(135deg, #0d1b33, #14376f);
}

.check-points .eyebrow,
.check-points .split-copy h2,
.check-points .split-copy p {
  color: #fff;
}

.split-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 44px;
  align-items: center;
}

.checklist-card {
  padding: 34px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.checklist li {
  position: relative;
  padding-left: 34px;
  font-weight: 800;
}

.process-section {
  background: #fff;
}

.process-card span {
  border-radius: 50%;
  font-size: 24px;
}

.compare-section {
  padding-top: 0;
}

.compare-box {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 42px;
  border-radius: var(--radius-lg);
  color: #fff;
  background:
    radial-gradient(circle at 92% 8%, rgba(240, 180, 41, 0.38), transparent 32%),
    linear-gradient(135deg, #174ea6, #0d3473);
  box-shadow: var(--shadow);
}

.compare-box h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.compare-box p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.86);
}

.faq-section {
  background: #fff;
}

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

.accordion-trigger {
  width: 100%;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  color: #10203c;
  background: #fff;
  text-align: left;
  font-weight: 900;
  cursor: pointer;
}

.accordion-trigger span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary-dark);
}

.accordion-panel {
  display: none;
  margin: -6px 0 8px;
  padding: 0 22px 20px;
  color: var(--muted);
}

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

.final-cta {
  padding: 72px 0;
  color: #fff;
  background:
    radial-gradient(circle at 80% 18%, rgba(240, 180, 41, 0.3), transparent 28%),
    linear-gradient(135deg, #08172d, #10264a);
}

.final-cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}

.final-cta h2,
.final-cta .eyebrow {
  color: #fff;
}

.final-cta p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.page-hero {
  padding: 86px 0 70px;
  background:
    radial-gradient(circle at 84% 10%, rgba(240, 180, 41, 0.24), transparent 30%),
    linear-gradient(135deg, #f9fbff, #eaf1fb);
}

.page-hero h1 {
  font-size: clamp(38px, 6vw, 68px);
}

.page-hero p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 20px;
}

.quiz-placeholder {
  display: grid;
  place-items: center;
}

.placeholder-card {
  width: min(100%, 760px);
  padding: 38px;
  background: #fff;
}

.placeholder-card ol {
  color: var(--muted);
  padding-left: 22px;
}

.placeholder-card .btn {
  margin-top: 16px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: start;
}

.contact-info,
.contact-form {
  padding: 32px;
  background: #fff;
}

.contact-info p,
.legal-content p,
.legal-content li {
  color: var(--muted);
}

.contact-info a,
.legal-content a {
  color: var(--primary);
  font-weight: 800;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field label,
.contact-form>h2+.field label {
  color: #26354f;
  font-weight: 800;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid rgba(23, 32, 51, 0.15);
  border-radius: 16px;
  background: #fff;
  color: var(--text);
  padding: 15px 16px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-soft);
}

.checkbox-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

.checkbox-line input {
  margin-top: 5px;
}

.form-status {
  margin: 0;
  min-height: 24px;
  color: var(--primary-dark);
  font-weight: 800;
}

.legal-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: 132px;
  padding: 18px;
  display: grid;
  gap: 8px;
  background: #fff;
}

.legal-nav a {
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--muted);
  font-weight: 800;
}

.legal-nav a:hover {
  background: var(--primary-soft);
  color: var(--primary-dark);
}

.legal-content {
  padding: 34px;
  background: #fff;
}

.legal-content section+section {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  font-size: clamp(26px, 3vw, 36px);
}

.thanks-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 32px;
  background:
    radial-gradient(circle at 82% 12%, rgba(240, 180, 41, 0.26), transparent 28%),
    linear-gradient(135deg, #eaf1fb, #fff);
}

.thanks-card {
  width: min(100%, 620px);
  padding: 42px;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
  text-align: center;
}

.thanks-card .placeholder-icon {
  margin: 0 auto 20px;
}

.thanks-card h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.thanks-card p {
  color: var(--muted);
  font-size: 18px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.82);
  background: var(--footer);
  padding: 56px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.65fr 0.75fr;
  gap: 38px;
}

.footer-logo .brand-text strong,
.footer-logo .brand-text small {
  color: #fff;
}

.footer-brand p {
  max-width: 440px;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 16px;
}

.site-footer a:not(.brand) {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.74);
}

.site-footer a:hover {
  color: var(--accent);
}

.footer-bottom {
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

.cookie-box {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 120;
  transform: translateX(-50%);
  width: min(100% - 28px, 760px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.cookie-box p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(8, 23, 45, 0.62);
  backdrop-filter: blur(10px);
}

.modal-box {
  width: min(100%, 440px);
  padding: 34px;
  border-radius: var(--radius-lg);
  background: #fff;
  text-align: center;
  box-shadow: var(--shadow);
}

.loader {
  width: 58px;
  height: 58px;
  margin: 0 auto 20px;
  border-radius: 50%;
  border: 5px solid rgba(23, 78, 166, 0.15);
  border-top-color: var(--primary);
  animation: spin 0.9s linear infinite;
}

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

@media (max-width: 980px) {
  .header-grid {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .main-nav,
  .nav-toggle {
    display: none;
  }


  .header-cta {

    display: inline-flex;
    min-height: 42px;
    padding: 10px 14px;
    font-size: 13px;

  }

  .main-nav.is-open {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: grid;
    gap: 8px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open a {
    justify-content: flex-start;
    border-radius: 14px;
  }

  .hero {
    min-height: auto;
    padding: 62px 0;
  }

  .hero-grid,
  .split-layout,
  .contact-grid,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 620px;
  }

  .benefit-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .compare-box,
  .final-cta-grid {
    grid-template-columns: 1fr;
  }

  .legal-nav {
    position: static;
    display: flex;
    flex-wrap: wrap;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {

  .container,
  .content-narrow {
    width: min(100% - 24px, 1180px);
  }

  .ad-disclosure {
    font-size: 12px;
  }

  .header-main {
    min-height: 70px;
  }

  .brand-mark {
    width: 80px;
    height: 42px;
    border-radius: 13px;
  }

  .brand-text strong {
    font-size: 16px;
  }

  .hero h1,
  .page-hero h1 {
    letter-spacing: -0.055em;
  }

  .hero-actions,
  .hero-actions .btn,
  .final-cta .btn,
  .compare-box .btn {
    width: 100%;
  }

  .metric-row,
  .checklist {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 62px 0;
  }

  .panel-card-main,
  .benefit-card,
  .process-card,
  .placeholder-card,
  .contact-info,
  .contact-form,
  .legal-content,
  .compare-box {
    padding: 24px;
    border-radius: 22px;
  }

  .cookie-box {
    grid-template-columns: 1fr;
  }

  .cookie-box .btn {
    width: 100%;
  }

  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
    display: grid;
  }

  .footer-bottom {
    justify-content: start;
  }
}

/* ==============================
   Legal Notes / Footnotes
============================== */

.footnote-link {
  color: var(--accent);
  font-weight: 900;
  text-decoration: none;
  margin-left: 2px;
}

.footnote-link:hover,
.footnote-link:focus-visible {
  color: #ffffff;
  text-decoration: underline;
}

.hero-lead sup {
  font-size: 0.65em;
  line-height: 0;
  vertical-align: super;
}

.legal-notes {
  padding: 42px 0;
  background: #edf3fb;
}

.legal-notes__box {
  padding: 26px 30px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(23, 32, 51, 0.1);
  box-shadow: var(--shadow-soft);
}

.legal-notes__box h2 {
  margin: 0 0 14px;
  color: #10203c;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.legal-notes__box p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.legal-notes__box p+p {
  margin-top: 12px;
}

.legal-notes__box sup {
  margin-right: 4px;
  color: var(--primary-dark);
  font-weight: 900;
}

@media (max-width: 640px) {
  .legal-notes {
    padding: 32px 0;
  }

  .legal-notes__box {
    padding: 22px;
    border-radius: 18px;
  }

  .legal-notes__box p {
    font-size: 12px;
  }
}

.trigger-highlight {
  color: var(--primary-dark);
  font-weight: 900;
  background: linear-gradient(180deg,
      transparent 58%,
      rgba(240, 180, 41, 0.42) 58%);
  padding: 0 2px;
}

.advertorial-story .article-callout strong {
  color: #10203c;
}

/*  */
/* ==============================
   Steps Preview Cards
============================== */

.steps-preview-section {
  background: #ffffff;
  padding: 72px 0;
}

.steps-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.steps-preview-card {
  position: relative;
  min-height: 356px;
  padding: 26px 28px 24px;
  border-radius: 6px;
  background: #f0f2f4;
  color: #002747;
  text-align: center;
  border: 1px solid rgba(0, 39, 71, 0.04);
  box-shadow: none;
}

.steps-preview-number {
  position: relative;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: -10px auto 24px;
  border-radius: 50%;
  background: #ffffff;
  color: #002747;
  border: 8px solid #002747;
  font-size: 21px;
  font-weight: 900;
  line-height: 1;
}

.steps-preview-number::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -19px;
  transform: translateX(-50%) rotate(45deg);
  width: 18px;
  height: 18px;
  background: #002747;
  border-radius: 0 0 3px 0;
  z-index: -1;
}

.steps-preview-card h3 {
  margin: 0 0 22px;
  color: #002747;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.steps-preview-icon {
  width: 112px;
  height: 86px;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
}

.steps-preview-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.steps-preview-card p {
  max-width: 270px;
  margin: 0 auto;
  color: #002747;
  font-size: 18px;
  line-height: 1.7;
  font-weight: 900;
  letter-spacing: -0.015em;
}

.steps-preview-action {
  margin-top: 34px;
  text-align: center;
}

/* Hover */
.steps-preview-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.steps-preview-card:hover {
  transform: translateY(-5px);
  background: #eef1f4;
  box-shadow: 0 18px 42px rgba(0, 39, 71, 0.11);
}

/* Tablet */
@media (max-width: 980px) {
  .steps-preview-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .steps-preview-card {
    min-height: auto;
    padding: 30px 24px;
  }

  .steps-preview-card p {
    max-width: 520px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .steps-preview-section {
    padding: 54px 0;
  }

  .steps-preview-card {
    padding: 28px 20px 24px;
    border-radius: 8px;
  }

  .steps-preview-number {
    width: 54px;
    height: 54px;
    border-width: 7px;
    font-size: 19px;
    margin-bottom: 22px;
  }

  .steps-preview-card h3 {
    font-size: 18px;
  }

  .steps-preview-card p {
    font-size: 16px;
    line-height: 1.65;
  }

  .steps-preview-action .btn {
    width: 100%;
  }
}

/*  */
/* ==============================
   Advertorial Split Block
============================== */

.advertorial-split {
  background:
    radial-gradient(circle at 12% 18%, rgba(240, 180, 41, 0.16), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #edf3fb 100%);
}

.advertorial-split-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.advertorial-speaker {
  position: relative;
  min-height: 620px;
  margin: 0;
  overflow: hidden;
  border-radius: 30px;
  background: #dfe7f0;
  box-shadow: var(--shadow);
}

.advertorial-speaker img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: center;
}

.advertorial-speaker::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(8, 23, 45, 0.02) 0%,
      rgba(8, 23, 45, 0.18) 48%,
      rgba(8, 23, 45, 0.78) 100%);
  pointer-events: none;
}

.advertorial-speaker figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  padding: 20px 22px;
  border-radius: 22px;
  color: #ffffff;
  background: rgba(8, 23, 45, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.advertorial-speaker figcaption span {
  display: block;
  margin-bottom: 6px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.advertorial-speaker figcaption strong {
  display: block;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.advertorial-text-card {
  padding: clamp(28px, 4vw, 44px);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(23, 32, 51, 0.1);
  box-shadow: var(--shadow-soft);
}

.advertorial-text-card h2 {
  margin: 0 0 24px;
  color: #10203c;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.advertorial-text-card p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.advertorial-text-card p+p {
  margin-top: 18px;
}

.advertorial-text-card .article-callout {
  margin: 26px 0;
}

.advertorial-text-card .inline-cta {
  margin-top: 30px;
}

/* Highlight */
.trigger-highlight {
  color: var(--primary-dark);
  font-weight: 900;
  background: linear-gradient(180deg,
      transparent 58%,
      rgba(240, 180, 41, 0.42) 58%);
  padding: 0 2px;
}

/* Tablet */
@media (max-width: 980px) {
  .advertorial-split-grid {
    grid-template-columns: 1fr;
  }

  .advertorial-speaker {
    min-height: 460px;
  }

  .advertorial-speaker img {
    min-height: 460px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .advertorial-split {
    padding: 54px 0;
  }

  .advertorial-split-grid {
    gap: 22px;
  }

  .advertorial-speaker {
    min-height: 360px;
    border-radius: 22px;
  }

  .advertorial-speaker img {
    min-height: 360px;
  }

  .advertorial-speaker figcaption {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 16px;
    border-radius: 18px;
  }

  .advertorial-speaker figcaption strong {
    font-size: 19px;
  }

  .advertorial-text-card {
    padding: 24px;
    border-radius: 22px;
  }

  .advertorial-text-card h2 {
    font-size: 31px;
  }

  .advertorial-text-card p {
    font-size: 16px;
    line-height: 1.7;
  }

  .advertorial-text-card .inline-cta .btn {
    width: 100%;
  }
}

/* ==============================
   Trust Benefits Strip
============================== */

.trust-benefits-strip {
  position: relative;
  z-index: 5;
  padding: 22px 0;
  background: #ffffff;
  border-bottom: 1px solid rgba(23, 32, 51, 0.08);
  box-shadow: 0 10px 26px rgba(13, 30, 58, 0.06);
}

.trust-benefits-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(34px, 7vw, 120px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-benefit-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #061a33;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.35;
  font-weight: 500;
  white-space: nowrap;
}

.trust-check {
  color: #68a611;
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
}

.info-footnote {
  width: 14px;
  height: 14px;
  display: inline-grid;
  place-items: center;
  margin-left: 3px;
  border-radius: 50%;
  color: #6d7684;
  border: 1.5px solid #8d96a3;
  font-size: 10px;
  line-height: 1;
  font-weight: 800;
  font-style: normal;
  text-decoration: none;
  vertical-align: middle;
  transform: translateY(-1px);
}

.info-footnote:hover,
.info-footnote:focus-visible {
  color: var(--primary-dark);
  border-color: var(--primary-dark);
  background: var(--primary-soft);
}

.trust-benefit-item sup {
  line-height: 0;
}

/* Tablet */
@media (max-width: 980px) {
  .trust-benefits-list {
    gap: 22px;
    justify-content: space-between;
  }

  .trust-benefit-item {
    font-size: 15px;
    white-space: normal;
  }

  .trust-check {
    font-size: 25px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .trust-benefits-strip {
    padding: 16px 0;
  }

  .trust-benefits-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .trust-benefit-item {
    justify-content: flex-start;
    padding: 12px 14px;
    border-radius: 16px;
    background: #f4f7fb;
    font-size: 15px;
  }

  .trust-check {
    font-size: 24px;
  }
}

.footer-company-line {
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.6;
}

.footer-company-line strong {
  color: #ffffff;
  font-weight: 800;
}

.site-footer .footer-company-line a {
  display: inline;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer .footer-company-line a:hover {
  color: var(--accent);
}

.ad-disclosure {
  text-align: center;
}

.ad-disclosure .container {
  display: flex;
  justify-content: center;
  align-items: center;
}

/*  */
/* ==============================
   Tariff Compare CTA
============================== */

.tariff-compare-cta {
  position: relative;
  padding: 86px 0;
  overflow: hidden;
  isolation: isolate;
  background: #edf3fb;
}

.tariff-compare-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    url("/assets/img/2.avif") center center / cover no-repeat;
}

.tariff-compare-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg,
      rgba(237, 243, 251, 0.94) 0%,
      rgba(237, 243, 251, 0.82) 38%,
      rgba(237, 243, 251, 0.62) 68%,
      rgba(237, 243, 251, 0.78) 100%);
}

.tariff-cta-card {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: clamp(26px, 4vw, 42px);
  border-radius: 7px;
  background: #062a47;
  color: #ffffff;
  box-shadow: 0 22px 60px rgba(6, 42, 71, 0.22);
}

.tariff-cta-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: start;
}

.tariff-cta-copy h2 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.tariff-cta-list {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tariff-cta-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: clamp(16px, 2vw, 21px);
  line-height: 1.35;
}

.tariff-cta-list strong {
  font-weight: 900;
}

.tariff-check {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: #062a47;
  background: #ff9800;
  font-size: 14px;
  font-weight: 900;
}

.tariff-info {
  width: 15px;
  height: 15px;
  display: inline-grid;
  place-items: center;
  margin-left: 2px;
  border-radius: 50%;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  font-size: 10px;
  line-height: 1;
  font-weight: 900;
  text-decoration: none;
  transform: translateY(-1px);
}

.tariff-info:hover,
.tariff-info:focus-visible {
  color: #062a47;
  background: #ffffff;
}

.tariff-badges {
  display: flex;
  gap: 16px;
  align-items: center;
  padding-top: 4px;
}

.tariff-badge {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  text-align: center;
  color: #062a47;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.tariff-badge span {
  display: block;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
}

.tariff-badge small {
  display: block;
  margin-top: 3px;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.tariff-badge-shield {
  clip-path: polygon(50% 0%, 92% 18%, 92% 63%, 50% 100%, 8% 63%, 8% 18%);
  background: linear-gradient(135deg, #eef6ff, #ffffff);
}

.tariff-badge-box {
  border-radius: 0;
  position: relative;
}

.tariff-badge-box::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -9px;
  transform: translateX(-50%) rotate(45deg);
  width: 16px;
  height: 16px;
  background: #ffffff;
  border-right: 1px solid rgba(6, 42, 71, 0.18);
  border-bottom: 1px solid rgba(6, 42, 71, 0.18);
}

.tariff-choice-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 24px;
  overflow: hidden;
  border: 2px solid #ff9800;
  border-radius: 6px;
  background: #ffffff;
}

.tariff-choice {
  position: relative;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 12px 18px;
  color: #062a47;
  cursor: pointer;
}

.tariff-choice+.tariff-choice {
  border-left: 1px solid #ff9800;
}

.tariff-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.tariff-radio {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 5px;
  border: 1.5px solid #062a47;
  background: #ffffff;
}

.tariff-choice input:checked+.tariff-radio::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: #062a47;
}

.tariff-choice strong {
  display: block;
  color: #062a47;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 500;
}

.tariff-choice small {
  display: block;
  margin-top: 4px;
  color: #9b9da4;
  font-size: 15px;
  line-height: 1.2;
}

.tariff-choice:hover {
  background: #f7fbff;
}

.tariff-submit-btn {
  width: 100%;
  min-height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 20px;
  border: 0;
  border-radius: 7px;
  color: #ffffff;
  background: linear-gradient(100deg, #ff9800 0%, #ff7a18 38%, #ec008c 100%);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.2;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.tariff-submit-btn span {
  font-size: 28px;
  line-height: 1;
  transform: translateY(-1px);
}

.tariff-submit-btn:hover,
.tariff-submit-btn:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 18px 40px rgba(236, 0, 140, 0.22);
}

/* Tablet */
@media (max-width: 980px) {
  .tariff-cta-head {
    grid-template-columns: 1fr;
  }

  .tariff-badges {
    justify-content: flex-start;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .tariff-compare-cta {
    padding: 58px 0;
  }

  .tariff-compare-cta::before {
    background-position: center center;
  }

  .tariff-compare-cta::after {
    background:
      linear-gradient(180deg,
        rgba(237, 243, 251, 0.94) 0%,
        rgba(237, 243, 251, 0.84) 45%,
        rgba(237, 243, 251, 0.96) 100%);
  }

  .tariff-cta-card {
    padding: 24px 18px;
    border-radius: 12px;
  }

  .tariff-cta-list li {
    align-items: flex-start;
  }

  .tariff-check {
    margin-top: 2px;
  }

  .tariff-badges {
    gap: 12px;
  }

  .tariff-badge {
    width: 62px;
    height: 62px;
  }

  .tariff-choice-box {
    grid-template-columns: 1fr;
  }

  .tariff-choice {
    justify-content: flex-start;
    min-height: 74px;
    padding: 15px 16px;
  }

  .tariff-choice+.tariff-choice {
    border-left: 0;
    border-top: 1px solid #ff9800;
  }

  .tariff-choice strong {
    font-size: 17px;
  }

  .tariff-choice small {
    font-size: 14px;
  }

  .tariff-submit-btn {
    min-height: 62px;
    font-size: 17px;
  }
}
.legal-updated {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--primary-dark);
  background: var(--primary-soft);
  font-size: 14px;
  line-height: 1.3;
  font-weight: 800;
}
.cookie-box[hidden] {
  display: none !important;
}