:root {
  --brand: #00155b;
  --brand-2: #061f74;
  --ink: #09111f;
  --muted: #5d6678;
  --line: #dbe2ee;
  --surface: #f4f7fb;
  --white: #ffffff;
  --cyan: #37d5f3;
  --green: #91df4f;
  --shadow: 0 24px 70px rgba(0, 21, 91, 0.18);
  --radius: 8px;
  --page-max: 1220px;
  --page-pad: clamp(20px, 4vw, 64px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 14px var(--page-pad);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(0, 21, 91, 0.1);
  backdrop-filter: blur(14px);
}

.brand img {
  width: min(230px, 45vw);
  height: auto;
}

.main-nav {
  display: flex;
  gap: 22px;
  margin-left: auto;
  color: #26344d;
  font-size: 0.95rem;
  font-weight: 650;
}

.main-nav a,
.text-link {
  text-decoration: none;
}

.main-nav a:hover,
.text-link:hover {
  color: var(--brand);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--brand);
  color: var(--brand);
  font-size: 0.92rem;
  font-weight: 750;
  text-decoration: none;
}

.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(55, 213, 243, 0.18), transparent 28%),
    linear-gradient(135deg, #00104a 0%, var(--brand) 48%, #031035 100%);
}

.hero {
  min-height: calc(100vh - 76px);
  padding: clamp(52px, 8vw, 108px) var(--page-pad) 58px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  align-items: center;
  gap: clamp(28px, 5vw, 78px);
  width: 100%;
  max-width: var(--page-max);
  margin: 0 auto;
}

.hero-copy h1 {
  max-width: 790px;
  margin: 0 0 24px;
  font-size: 4.75rem;
  line-height: 0.96;
  letter-spacing: 0;
  overflow-wrap: normal;
  hyphens: manual;
}

.hero-copy,
.lead-panel,
.split-copy,
.fact-list,
.warning-copy,
.leadmagnet-copy,
.expert-copy {
  min-width: 0;
}

.hero-subline {
  max-width: 710px;
  margin: 0 0 32px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 0;
  font: inherit;
  font-size: 0.98rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #00113f;
  background: linear-gradient(90deg, var(--green), var(--cyan));
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
}

.button-secondary-dark {
  color: var(--brand);
  border-color: var(--brand);
  background: var(--white);
}

.soft-contact {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.soft-contact a {
  color: var(--brand);
  font-weight: 850;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  gap: 12px;
  max-width: 760px;
  margin: 0;
  padding: 0;
  list-style: none;
}

  .hero-points li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 12px;
    border-left: 2px solid var(--cyan);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.84);
  font-size: 0.94rem;
  font-weight: 650;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-points li::before,
  .leadmagnet-copy li::before,
  .fact-item::before {
    content: "";
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    margin-top: 1px;
    background-color: currentColor;
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
  }

  .hero-points li[data-icon="shield"]::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2 4 5v7c0 6 8 10 8 10s8-4 8-10V5z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2 4 5v7c0 6 8 10 8 10s8-4 8-10V5z'/%3E%3C/svg%3E");
  }

  .hero-points li[data-icon="scale"]::before,
  .leadmagnet-copy li[data-icon="scale"]::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M11 2h2v2h5v2h-4.2l3.95 7.9a3.5 3.5 0 0 1-6.5 0L15.2 6H13v12h4v2H7v-2h4V6H8.8l3.95 7.9a3.5 3.5 0 0 1-6.5 0L10.2 6H6V4h5zM5.1 14a1.5 1.5 0 0 0 2.8 0zM16.1 14a1.5 1.5 0 0 0 2.8 0z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M11 2h2v2h5v2h-4.2l3.95 7.9a3.5 3.5 0 0 1-6.5 0L15.2 6H13v12h4v2H7v-2h4V6H8.8l3.95 7.9a3.5 3.5 0 0 1-6.5 0L10.2 6H6V4h5zM5.1 14a1.5 1.5 0 0 0 2.8 0zM16.1 14a1.5 1.5 0 0 0 2.8 0z'/%3E%3C/svg%3E");
  }

  .hero-points li[data-icon="calendar"]::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7 2h2v2h6V2h2v2h3a2 2 0 0 1 2 2v13a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3V6a2 2 0 0 1 2-2h3zm13 8H4v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1zM5 6a1 1 0 0 0-1 1v1h16V7a1 1 0 0 0-1-1z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7 2h2v2h6V2h2v2h3a2 2 0 0 1 2 2v13a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3V6a2 2 0 0 1 2-2h3zm13 8H4v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1zM5 6a1 1 0 0 0-1 1v1h16V7a1 1 0 0 0-1-1z'/%3E%3C/svg%3E");
  }

.hero-points li:last-child {
  grid-column: 1 / -1;
}

.lead-panel {
  position: relative;
  padding: 30px;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
}

.lead-panel-mark {
  width: 52px;
  margin-bottom: 20px;
}

.lead-panel h2,
.leadmagnet-copy h2,
.expert-copy h2,
.final-cta h2 {
  margin: 0 0 14px;
  font-size: 2.35rem;
  line-height: 1.04;
  letter-spacing: 0;
}

.lead-panel p {
  color: var(--muted);
}

.signup-form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.signup-form label {
  display: grid;
  gap: 7px;
  color: #26344d;
  font-size: 0.9rem;
  font-weight: 750;
}

.signup-form input,
.signup-form select {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid #cbd5e5;
  border-radius: 0;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
}

.signup-form input:focus,
.signup-form select:focus {
  outline: 2px solid rgba(55, 213, 243, 0.55);
  outline-offset: 2px;
}

.consent {
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 550;
}

.consent input {
  min-height: auto;
  margin-top: 3px;
}

.form-button {
  width: 100%;
}

.form-note,
.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.privacy-note {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.45;
}

.privacy-note a {
  color: var(--brand);
  font-weight: 750;
}

.form-status.success {
  color: #197047;
}

.form-status.error {
  color: #9b1c1c;
}

.trust-strip {
  padding: 0 var(--page-pad);
  background: var(--white);
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  width: 100%;
  max-width: var(--page-max);
  margin: 0 auto;
  background: var(--line);
}

.trust-strip p {
  margin: 0;
  padding: 18px 10px;
  background: #fff;
  color: var(--brand);
  text-align: center;
  font-size: 0.9rem;
  font-weight: 850;
  text-transform: uppercase;
}

.section {
  padding: clamp(66px, 9vw, 118px) var(--page-pad);
}

.section-heading {
  max-width: 900px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading.narrow {
  max-width: 720px;
}

.section-heading h2,
.split-copy h2,
.warning-copy h2 {
  margin: 0 0 16px;
  color: var(--brand);
  font-size: 3.55rem;
  line-height: 1.02;
  letter-spacing: 0;
}

.section-heading p,
.split-copy p,
.warning-copy p,
.leadmagnet-copy p,
.expert-copy p,
.final-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 1.14rem;
}

.three-columns,
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.three-columns article,
.audience-grid article {
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--white);
}

.number {
  display: block;
  margin-bottom: 32px;
  color: var(--cyan);
  font-size: 0.85rem;
  font-weight: 900;
}

h3 {
  margin: 0 0 10px;
  color: var(--brand);
  font-size: 1.25rem;
  line-height: 1.15;
}

article p {
  margin: 0;
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  max-width: var(--page-max);
  margin: 0 auto;
  background: var(--surface);
}

.text-link {
  display: inline-flex;
  margin-top: 26px;
  color: var(--brand);
  font-weight: 850;
}

.fact-list {
  display: grid;
  gap: 12px;
}

  .fact-list div {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    column-gap: 14px;
    gap: 6px;
    padding: 22px;
    border-left: 4px solid var(--cyan);
    background: var(--white);
  }

  .fact-item::before {
    grid-row: 1 / span 2;
    color: var(--brand);
  }

  .fact-list strong {
    color: var(--brand);
    font-size: 1.05rem;
  }

.fact-list span {
  color: var(--muted);
}

.audience-section {
  background: #fff;
}

.audience-grid {
  grid-template-columns: repeat(2, 1fr);
}

.audience-grid article {
  min-height: 155px;
  background: linear-gradient(180deg, #fff, #f7faff);
}

.comparison-section {
  background: var(--brand);
}

.comparison-section h2,
.comparison-section p {
  color: var(--white);
}

.comparison-section .section-heading p {
  color: rgba(255, 255, 255, 0.74);
}

.comparison-table {
  max-width: var(--page-max);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.table-row {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1.25fr;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.table-row:last-child {
  border-bottom: 0;
}

.table-row > div {
  padding: 18px;
  color: rgba(255, 255, 255, 0.82);
}

.table-row > div:first-child {
  color: var(--white);
  font-weight: 850;
}

.table-head {
  background: rgba(255, 255, 255, 0.11);
}

.table-head > div {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
}

.warning-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.78fr);
  gap: clamp(28px, 5vw, 66px);
  align-items: center;
  max-width: var(--page-max);
  margin: 0 auto;
}

.warning-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.warning-list li {
  padding: 16px 18px;
  border-left: 4px solid var(--green);
  background: var(--surface);
  color: var(--brand);
  font-weight: 800;
}

.myth-section {
  background: #fff;
}

.myth-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: var(--page-max);
  margin: 0 auto;
}

.myth-list article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #f7faff);
}

.myth-list article:first-child {
  grid-column: 1 / -1;
  min-height: auto;
  border-left: 4px solid var(--cyan);
}

.myth-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: var(--page-max);
  margin: 22px auto 0;
  padding: 22px 24px;
  background: var(--brand);
  color: #fff;
}

.myth-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 750;
}

.leadmagnet-section {
  background: var(--surface);
}

.leadmagnet-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 430px);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  max-width: var(--page-max);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px);
  background: var(--white);
  box-shadow: 0 22px 60px rgba(9, 17, 31, 0.08);
}

.leadmagnet-copy ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

  .leadmagnet-copy li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--brand);
    font-weight: 800;
  }

  .leadmagnet-copy li[data-icon="search"]::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M10 2a8 8 0 1 0 4.9 14.3l4.4 4.4 1.4-1.4-4.4-4.4A8 8 0 0 0 10 2m0 2a6 6 0 1 1 0 12 6 6 0 0 1 0-12'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M10 2a8 8 0 1 0 4.9 14.3l4.4 4.4 1.4-1.4-4.4-4.4A8 8 0 0 0 10 2m0 2a6 6 0 1 1 0 12 6 6 0 0 1 0-12'/%3E%3C/svg%3E");
  }

  .leadmagnet-copy li[data-icon="users"]::before,
  .fact-item[data-icon="users"]::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 11a4 4 0 1 1 0-8 4 4 0 0 1 0 8m8 1a3 3 0 1 0-2.95-3.5A3 3 0 0 0 17 12m-8 1c-4.42 0-8 2.24-8 5v2h16v-2c0-2.76-3.58-5-8-5m8 1c-.73 0-1.43.08-2.08.24 1.84 1.06 3.08 2.66 3.08 4.76v1h5v-1c0-2.2-2.69-4-6-4'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 11a4 4 0 1 1 0-8 4 4 0 0 1 0 8m8 1a3 3 0 1 0-2.95-3.5A3 3 0 0 0 17 12m-8 1c-4.42 0-8 2.24-8 5v2h16v-2c0-2.76-3.58-5-8-5m8 1c-.73 0-1.43.08-2.08.24 1.84 1.06 3.08 2.66 3.08 4.76v1h5v-1c0-2.2-2.69-4-6-4'/%3E%3C/svg%3E");
  }

  .leadmagnet-copy li[data-icon="alert"]::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 3 1 21h22zm1 14h-2v-2h2zm0-4h-2v-4h2z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 3 1 21h22zm1 14h-2v-2h2zm0-4h-2v-4h2z'/%3E%3C/svg%3E");
  }

  .fact-item[data-icon="chart"]::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3 3h2v16h16v2H3zm14 4 3 3-7 7-4-4-4 4-1-1 5-5 4 4z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3 3h2v16h16v2H3zm14 4 3 3-7 7-4-4-4 4-1-1 5-5 4 4z'/%3E%3C/svg%3E");
  }

  .fact-item[data-icon="lock"]::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M17 9V7a5 5 0 0 0-10 0v2H5v13h14V9zm-8 0V7a3 3 0 1 1 6 0v2z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M17 9V7a5 5 0 0 0-10 0v2H5v13h14V9zm-8 0V7a3 3 0 1 1 6 0v2z'/%3E%3C/svg%3E");
  }

  .fact-item[data-icon="wallet"]::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3 7a3 3 0 0 1 3-3h12v2H6a1 1 0 0 0 0 2h13a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H6a3 3 0 0 1-3-3zm14 6a2 2 0 1 0 0 4h4v-4z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3 7a3 3 0 0 1 3-3h12v2H6a1 1 0 0 0 0 2h13a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H6a3 3 0 0 1-3-3zm14 6a2 2 0 1 0 0 4h4v-4z'/%3E%3C/svg%3E");
  }

.signup-form-light {
  margin-top: 0;
}

.expert-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  max-width: var(--page-max);
  margin: 0 auto;
}

.expert-image {
  background: var(--surface);
  overflow: hidden;
}

.expert-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 16%;
}

blockquote {
  margin: 28px 0;
  padding-left: 22px;
  border-left: 4px solid var(--cyan);
  color: var(--brand);
  font-size: 1.62rem;
  font-weight: 850;
  line-height: 1.18;
}

.faq-section {
  background: var(--surface);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 860px;
  margin: 0 auto;
}

details {
  padding: 22px 24px;
  background: #fff;
  border: 1px solid var(--line);
}

summary {
  color: var(--brand);
  font-size: 1.08rem;
  font-weight: 850;
  cursor: pointer;
}

details p {
  margin: 14px 0 0;
  color: var(--muted);
}

.final-cta {
  padding: clamp(44px, 7vw, 76px) var(--page-pad);
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: 100%;
  max-width: var(--page-max);
  margin: 0 auto;
}

.final-cta-inner > div {
  max-width: 760px;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.76);
}

.site-footer {
  padding: 42px var(--page-pad) 28px;
  border-top: 1px solid var(--line);
  background: #fbfcff;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 56px;
  width: 100%;
  max-width: var(--page-max);
  margin: 0 auto;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  gap: 36px;
  align-content: start;
}

.footer-brand img {
  width: min(260px, 100%);
  margin-bottom: 14px;
}

.footer-brand p,
.footer-column h3 {
  margin: 0;
  color: var(--brand);
}

.footer-brand-copy {
  max-width: 205px;
  color: var(--muted) !important;
  font-size: 0.65rem;
  font-weight: 410;
  line-height: 1.48;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

  .footer-column h3 {
    margin-bottom: 4px;
    font-size: 0.69rem;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }

  .footer-column a {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 500;
    text-decoration: none;
  }

.footer-column a:hover {
  color: var(--brand);
}

.footer-legal,
.footer-meta {
  width: 100%;
  max-width: var(--page-max);
  margin-left: auto;
  margin-right: auto;
}

.footer-legal {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.footer-note,
.footer-meta-copy,
.footer-meta-link {
  margin: 0;
  color: var(--muted) !important;
  font-size: 0.8rem;
  font-weight: 480 !important;
}

.footer-note {
  max-width: none;
  line-height: 1.6;
  text-align: center;
  font-size: 0.68rem;
}

.footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding-top: 14px;
}

.footer-meta-copy {
  white-space: nowrap;
  font-size: 0.78rem;
}

.footer-meta-link {
  text-align: right;
  font-size: 0.78rem;
}

.footer-meta-link a {
  color: var(--muted);
  text-decoration: none;
}

.footer-settings {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  cursor: pointer;
}

.footer-meta-link a:hover {
  color: var(--brand);
}

.footer-settings:hover {
  color: var(--brand);
}

.consent-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  width: min(450px, calc(100vw - 28px));
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 18px 44px rgba(9, 17, 31, 0.12);
}

.consent-banner__inner {
  display: grid;
  gap: 16px;
  padding: 20px 22px;
}

.consent-banner__copy strong {
  color: var(--brand);
  font-size: 1rem;
}

.consent-banner__copy p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.81rem;
  line-height: 1.5;
}

.consent-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.consent-banner__button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--brand);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
}

.consent-banner__button--primary {
  color: #00113f;
  background: linear-gradient(90deg, var(--green), var(--cyan));
  border-color: transparent;
  min-width: 118px;
}

.consent-banner__button--secondary {
  color: var(--muted);
  border-color: transparent;
  background: transparent;
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  .site-header {
    justify-content: space-between;
  }

  .hero-grid,
  .split-section,
  .warning-section,
  .leadmagnet-card,
  .expert-section {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    min-height: auto;
  }

  .three-columns,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-strip-inner p:last-child {
    grid-column: 1 / -1;
  }

  .table-row {
    grid-template-columns: 1fr;
  }

  .table-head {
    display: none;
  }

  .table-row > div {
    padding: 12px 16px;
  }

  .final-cta-inner {
    display: grid;
  }

  .myth-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .myth-list article:first-child {
    grid-column: auto;
  }

  .myth-cta {
    display: grid;
  }

  .footer-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  .footer-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }

  .footer-meta {
    display: grid;
    justify-content: start;
  }

  .consent-banner {
    right: 16px;
    left: 16px;
    width: auto;
  }

  .hero-copy h1 {
    font-size: 4rem;
  }

  .section-heading h2,
  .split-copy h2,
  .warning-copy h2 {
    font-size: 2.85rem;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 68px;
    gap: 12px;
  }

  .brand img {
    width: 178px;
  }

  .header-cta {
    display: none;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: 1.9rem;
    line-height: 1;
    overflow-wrap: anywhere;
  }

  .hero-subline,
  .section-heading p,
  .split-copy p,
  .warning-copy p,
  .leadmagnet-copy p,
  .expert-copy p,
  .final-cta p {
    font-size: 1.02rem;
  }

  .lead-panel h2,
  .leadmagnet-copy h2,
  .expert-copy h2,
  .final-cta h2 {
    font-size: 2rem;
  }

  .section-heading h2,
  .split-copy h2,
  .warning-copy h2 {
    font-size: 2.18rem;
  }

  blockquote {
    font-size: 1.28rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-points {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-points li {
    width: 100%;
    font-size: 0.88rem;
  }

  .lead-panel,
  .leadmagnet-card,
  .three-columns article,
  .audience-grid article {
    padding: 22px;
  }

  .trust-strip {
    padding: 0 var(--page-pad);
  }

  .trust-strip-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .trust-strip-inner p:last-child {
    grid-column: auto;
  }

  .section-heading {
    text-align: left;
  }

  .footer-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-links {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
  }

  .footer-meta-copy,
  .footer-meta-link {
    white-space: normal;
  }

  .footer-meta-link {
    text-align: left;
  }

  .consent-banner__actions,
  .consent-banner__button {
    width: 100%;
  }
}
