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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 0;
  overflow-x: hidden;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

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

button {
  font: inherit;
  cursor: pointer;
}

input,
textarea,
select {
  font: inherit;
}

table {
  border-collapse: collapse;
  width: 100%;
}

:focus-visible {
  outline: 3px solid var(--focus-ring, #1a53ff);
  outline-offset: 2px;
}

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

.skip-link {
  position: absolute;
  left: 8px;
  top: -60px;
  z-index: 200;
  background: #0b0b0c;
  color: #fff;
  padding: 10px 16px;
  border-radius: 6px;
  transition: top .15s ease;
}

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

/* ---------- Layout primitives ---------- */
.container {
  width: 100%;
  max-width: 1260px;
  margin-inline: auto;
  padding-inline: 20px;
}

@media (min-width: 768px) {
  .container {
    padding-inline: 32px;
  }
}

.narrow {
  max-width: 760px;
}

section {
  padding-block: 44px;
}

@media (min-width: 768px) {
  section {
    padding-block: 72px;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid transparent;
  transition: transform .15s ease, background-color .15s ease, color .15s ease, border-color .15s ease, box-shadow .15s ease;
  text-align: center;
}

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

.btn:active {
  transform: translateY(0);
}

.btn-block {
  width: 100%;
}

/* ---------- htmx-driven nav toggle (shared skeleton) ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 68px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text {
  font-weight: 800;
  font-size: 1.08rem;
  letter-spacing: -0.01em;
}

.logo-sub {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.65;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid currentColor;
  background: transparent;
}

.nav-toggle-bars {
  position: relative;
  width: 20px;
  height: 2px;
  background: currentColor;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: currentColor;
}

.nav-toggle-bars::before {
  top: -6px;
}

.nav-toggle-bars::after {
  top: 6px;
}

.site-nav {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  flex-direction: column;
  padding: 8px 20px 20px;
  gap: 4px;
}

.site-header.nav-open .site-nav {
  display: flex;
}

.site-nav a {
  display: block;
  padding: 12px 4px;
  font-weight: 600;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  min-height: 44px;
  display: flex;
  align-items: center;
}

.site-nav .nav-cta {
  border-bottom: none;
  margin-top: 8px;
}

@media (min-width: 1024px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    display: flex !important;
    position: static;
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 28px;
  }

  .site-nav a {
    border-bottom: none;
    padding: 0;
    min-height: auto;
  }
}

/* =========================================================================
   PUBLICATION THEME — Modern Post Weekly (advertorial + about)
   ========================================================================= */
body.pub-theme {
  --pub-bg: #ffffff;
  --pub-surface: #f4f5f8;
  --pub-ink: #0b0b0e;
  --pub-muted: #55575f;
  --pub-accent: #1a4dff;
  --pub-accent-ink: #ffffff;
  --pub-line: #e1e2e7;
  --pub-ribbon: #0b0b0e;
  --focus-ring: #1a4dff;
  background: var(--pub-bg);
  color: var(--pub-ink);
  font-family: "Inter", Arial, Helvetica, sans-serif;
}

.pub-theme h1,
.pub-theme h2,
.pub-theme h3,
.pub-theme h4 {
  font-family: "Space Grotesk", "Arial Black", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--pub-ink);
}

.pub-theme .disclosure-ribbon {
  background: var(--pub-ribbon);
  color: #fff;
}

.pub-theme .ribbon-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  padding-block: 8px;
  font-size: 0.72rem;
}

.pub-theme .ribbon-tag {
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--pub-accent);
  color: #fff;
  padding: 3px 10px;
  border-radius: 4px;
}

.pub-theme .ribbon-note {
  opacity: 0.75;
}

.pub-theme .site-header {
  background: var(--pub-bg);
  border-bottom: 1px solid var(--pub-line);
}

.pub-theme .site-nav {
  background: var(--pub-bg);
  border-bottom: 1px solid var(--pub-line);
}

.pub-theme .site-nav a:hover,
.pub-theme .site-nav a:focus-visible {
  color: var(--pub-accent);
}

.pub-theme .nav-cta {
  background: var(--pub-ink);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
}

.pub-theme .nav-cta:hover {
  background: var(--pub-accent);
}

.pub-theme .breadcrumb {
  font-size: 0.82rem;
  color: var(--pub-muted);
  padding-top: 22px;
}

.pub-theme .breadcrumb .sep {
  margin-inline: 6px;
  opacity: 0.5;
}

.pub-theme .article-head {
  padding-top: 10px;
  padding-bottom: 8px;
}

.pub-theme .kicker {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pub-accent);
  margin-bottom: 14px;
}

.pub-theme .headline {
  font-size: clamp(1.7rem, 4.6vw + 0.6rem, 3.1rem);
  line-height: 1.08;
  margin-bottom: 18px;
}

.pub-theme .standfirst {
  font-size: clamp(1.05rem, 1.4vw + 0.7rem, 1.3rem);
  color: var(--pub-muted);
  max-width: 62ch;
  margin-bottom: 22px;
}

.pub-theme .byline-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  font-size: 0.86rem;
  color: var(--pub-muted);
  border-top: 1px solid var(--pub-line);
  border-bottom: 1px solid var(--pub-line);
  padding-block: 14px;
  margin-bottom: 28px;
}

.pub-theme .byline strong {
  color: var(--pub-ink);
}

.pub-theme .hero-media {
  aspect-ratio: 16 / 10;
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
  background: var(--pub-surface);
  margin-bottom: 8px;
}

.pub-theme .hero-media img,
.pub-theme .hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pub-theme .media-caption {
  font-size: 0.8rem;
  color: var(--pub-muted);
  padding-block: 10px 30px;
}

.pub-theme .article-body {
  padding-top: 6px;
}

.pub-theme .article-body>*+* {
  margin-top: 20px;
}

.pub-theme .article-body h2 {
  font-size: clamp(1.4rem, 2vw + 0.8rem, 2rem);
  margin-top: 46px;
  margin-bottom: 4px;
}

.pub-theme .article-body h3 {
  font-size: 1.2rem;
  margin-top: 30px;
}

.pub-theme .article-body p {
  color: #26272c;
  font-size: 1.04rem;
}

.pub-theme .article-body ul {
  margin-top: 10px;
}

.pub-theme .article-body li {
  position: relative;
  padding-left: 26px;
  margin-top: 10px;
  font-size: 1.02rem;
  color: #26272c;
}

.pub-theme .article-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: var(--pub-accent);
}

.pub-theme .article-figure {
  margin-top: 10px;
}

.pub-theme .article-figure img {
  border-radius: 4px;
}

.pub-theme .article-figure figcaption {
  font-size: 0.8rem;
  color: var(--pub-muted);
  margin-top: 8px;
}

.pub-theme .methodology-box {
  background: var(--pub-surface);
  border: 1px solid var(--pub-line);
  border-left: 5px solid var(--pub-accent);
  border-radius: 6px;
  padding: 24px;
}

.pub-theme .box-heading {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.pub-theme .methodology-box ul {
  margin-top: 4px;
}

.pub-theme .methodology-box li {
  position: relative;
  padding-left: 22px;
  font-size: 0.98rem;
  margin-top: 10px;
  color: #26272c;
}

.pub-theme .methodology-box li::before {
  /* content: "✓"; */
  position: absolute;
  left: 0;
  color: var(--pub-accent);
  font-weight: 800;
}

.pub-theme .progress-entries {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pub-theme .entry {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 16px;
  padding: 18px;
  background: var(--pub-surface);
  border-radius: 6px;
  border: 1px solid var(--pub-line);
}

.pub-theme .entry-date {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--pub-accent);
}

.pub-theme .entry-title {
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 1.02rem;
}

.pub-theme .entry-body p {
  color: #26272c;
  font-size: 0.98rem;
  margin: 0;
}

.pub-theme .callout {
  background: var(--pub-ink);
  color: #fff;
  border-radius: 10px;
  padding: 28px 24px;
}

.pub-theme .callout .box-heading {
  color: var(--pub-accent);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pub-theme .callout h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-top: 8px;
  margin-bottom: 12px;
}

.pub-theme .callout p {
  color: #f7f587;
  font-size: 1.02rem;
  margin: 0;
}

.pub-theme .score-bars {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pub-theme .score-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 14px;
  align-items: center;
}

.pub-theme .score-label {
  font-weight: 600;
  font-size: 0.96rem;
}

.pub-theme .score-value {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-weight: 800;
  color: var(--pub-accent);
}

.pub-theme .score-track {
  grid-column: 1 / -1;
  height: 10px;
  background: var(--pub-surface);
  border: 1px solid var(--pub-line);
  border-radius: 999px;
  overflow: hidden;
}

.pub-theme .score-fill {
  height: 100%;
  background: var(--pub-accent);
  border-radius: 999px;
}

.pub-theme .table-wrap {
  overflow-x: auto;
  border-radius: 6px;
  border: 1px solid var(--pub-line);
}

.pub-theme table {
  min-width: 480px;
}

.pub-theme th,
.pub-theme td {
  text-align: left;
  padding: 13px 16px;
  font-size: 0.94rem;
  border-bottom: 1px solid var(--pub-line);
  white-space: normal;
}

.pub-theme thead th {
  background: var(--pub-ink);
  color: #fff;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pub-theme tbody tr:last-child td {
  border-bottom: none;
}

.pub-theme tbody tr:nth-child(even) {
  background: var(--pub-surface);
}

.pub-theme td.emph {
  font-weight: 800;
  color: var(--pub-accent);
}

.pub-theme .deliverables-list {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

.pub-theme .deliverable-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--pub-line);
  border-radius: 8px;
  background: #fff;
}

.pub-theme .deliverable-num {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--pub-accent);
}

.pub-theme .deliverable-item h4 {
  font-size: 1.02rem;
  margin-bottom: 6px;
}

.pub-theme .deliverable-item p {
  font-size: 0.94rem;
  color: var(--pub-muted);
  margin: 0;
}

.pub-theme .gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.pub-theme .gallery-item {
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  overflow: hidden;
}

.pub-theme .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

.pub-theme .gallery-item:hover img {
  transform: scale(1.04);
}

.pub-theme .verdict-box {
  border: 2px solid var(--pub-ink);
  border-radius: 10px;
  padding: 28px 24px;
  background: var(--pub-surface);
}

.pub-theme .verdict-heading {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pub-accent);
  margin-bottom: 10px;
}

.pub-theme .verdict-box h3 {
  font-size: clamp(1.3rem, 2vw + 0.7rem, 1.7rem);
  margin-bottom: 12px;
}

.pub-theme .verdict-box p {
  color: #26272c;
  font-size: 1.02rem;
  margin-bottom: 20px;
}

.pub-theme .btn-primary {
  background: var(--pub-accent);
  color: #fff;
}

.pub-theme .btn-primary:hover {
  background: #1240d1;
}

.pub-theme .btn-secondary {
  background: transparent;
  color: var(--pub-ink);
  border-color: var(--pub-ink);
}

.pub-theme .btn-secondary:hover {
  background: var(--pub-ink);
  color: #fff;
}

.pub-theme .disclaimer-note {
  font-size: 0.84rem;
  color: var(--pub-muted);
  border-top: 1px dashed var(--pub-line);
  padding-top: 14px;
  margin-top: 20px;
}

.pub-theme .disclaimer-note a {
  color: var(--pub-accent);
  text-decoration: underline;
}

.pub-theme .article-footer {
  border-top: 1px solid var(--pub-line);
  padding-top: 26px;
  margin-top: 46px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.pub-theme .author-box {
  display: flex;
  gap: 12px;
  align-items: center;
}

.pub-theme .author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: var(--pub-ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: "Space Grotesk", Arial, sans-serif;
}

.pub-theme .author-box strong {
  display: block;
  font-size: 0.94rem;
}

.pub-theme .author-box span {
  font-size: 0.82rem;
  color: var(--pub-muted);
}

/* about page (pub theme) */
.pub-theme .about-hero {
  padding-top: 40px;
}

.pub-theme .about-hero .headline {
  max-width: 20ch;
}

.pub-theme .values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 30px;
}

.pub-theme .value-card {
  background: var(--pub-surface);
  border: 1px solid var(--pub-line);
  border-radius: 8px;
  padding: 22px;
}

.pub-theme .value-card h3 {
  font-size: 1.08rem;
  margin-bottom: 8px;
}

.pub-theme .value-card p {
  font-size: 0.96rem;
  color: var(--pub-muted);
  margin: 0;
}

.pub-theme .standards-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 16px;
}

.pub-theme .standards-list li {
  position: relative;
  padding-left: 24px;
  font-size: 1rem;
  color: #26272c;
}

.pub-theme .standards-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--pub-accent);
  font-weight: 800;
}

/* ---------- Publication footer ---------- */
.pub-theme .site-footer {
  background: var(--pub-ink);
  color: #d6d8e0;
  padding-block: 44px 28px;
  margin-top: 40px;
}

.pub-theme .footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}

.pub-theme .footer-col h4 {
  color: #fff;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.pub-theme .footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pub-theme .footer-links a {
  font-size: 0.92rem;
  color: #b7b9c4;
}

.pub-theme .footer-links a:hover {
  color: #fff;
}

.pub-theme .footer-legal {
  font-size: 0.78rem;
  color: #8c8ea0;
  margin-top: 26px;
  border-top: 1px solid #26272f;
  padding-top: 20px;
}

.pub-theme .footer-legal p+p {
  margin-top: 6px;
}

@media (min-width: 640px) {
  .pub-theme .deliverables-list {
    grid-template-columns: 1fr 1fr;
  }

  .pub-theme .values-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 768px) {
  .pub-theme .entry {
    grid-template-columns: 110px 1fr;
  }

  .pub-theme .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (min-width: 1024px) {
  .pub-theme .deliverables-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* =========================================================================
   OFFER THEME — Presentations & Proposal Support (clinical-clean / serif-news)
   ========================================================================= */
body.offer-theme {
  --offer-bg: #f4f7f7;
  --offer-surface: #ffffff;
  --offer-tint: #eaf1f0;
  --offer-ink: #101c22;
  --offer-muted: #55636a;
  --offer-accent: #0e7c66;
  --offer-accent-ink: #ffffff;
  --offer-navy: #142a3c;
  --offer-line: #dbe4e3;
  --focus-ring: #0e7c66;
  background: var(--offer-bg);
  color: var(--offer-ink);
}

.offer-theme h1,
.offer-theme h2,
.offer-theme h3,
.offer-theme h4 {
  font-family: Georgia, "Iowan Old Style", "Times New Roman", serif;
  font-weight: 700;
  color: var(--offer-ink);
  letter-spacing: -0.01em;
}

.offer-theme .site-header {
  background: var(--offer-surface);
  border-bottom: 1px solid var(--offer-line);
}

.offer-theme .site-nav {
  background: var(--offer-surface);
  border-bottom: 1px solid var(--offer-line);
}

.offer-theme .logo-text {
  font-family: Georgia, serif;
}

.offer-theme .site-nav a:hover,
.offer-theme .site-nav a:focus-visible {
  color: var(--offer-accent);
}

.offer-theme .nav-cta {
  background: var(--offer-accent);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
}

.offer-theme .nav-cta:hover {
  background: var(--offer-navy);
}

.offer-theme .btn-primary {
  background: var(--offer-accent);
  color: #fff;
}

.offer-theme .btn-primary:hover {
  background: var(--offer-navy);
}

.offer-theme .btn-secondary {
  background: transparent;
  border-color: var(--offer-ink);
  color: var(--offer-ink);
}

.offer-theme .btn-secondary:hover {
  background: var(--offer-ink);
  color: #fff;
}

.offer-theme .section--surface {
  background: var(--offer-surface);
}

.offer-theme .section--tint {
  background: var(--offer-tint);
}

.offer-theme .section--navy {
  background: var(--offer-navy);
  color: #eef3f2;
}

.offer-theme .section--navy h2,
.offer-theme .section--navy h3 {
  color: #fff;
}

.offer-theme .section--navy p {
  color: #c9d6d3;
}

.offer-theme .eyebrow {
  display: inline-block;
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--offer-accent);
  margin-bottom: 14px;
}

.offer-theme .section-head {
  max-width: 68ch;
  margin-bottom: 30px;
}

.offer-theme .section-head h2 {
  font-size: clamp(1.5rem, 2.6vw + 0.8rem, 2.3rem);
  margin-bottom: 12px;
}

.offer-theme .section-head p {
  font-size: 1.02rem;
  color: var(--offer-muted);
}

.offer-theme .section--navy .section-head p {
  color: #c9d6d3;
}

/* hero */
.offer-theme .offer-hero {
  padding-top: 40px;
  padding-bottom: 40px;
}

.offer-theme .hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
}

.offer-theme .hero-question {
  font-size: clamp(1.65rem, 4.4vw + 0.5rem, 2.9rem);
  line-height: 1.12;
  margin-bottom: 16px;
}

.offer-theme .hero-answer {
  font-size: clamp(1.02rem, 1vw + 0.8rem, 1.2rem);
  color: var(--offer-muted);
  margin-bottom: 24px;
  max-width: 56ch;
}

.offer-theme .hero-h2 {
  font-size: clamp(1.2rem, 1.6vw + 0.8rem, 1.6rem);
  margin-bottom: 10px;
  color: var(--offer-accent);
}

.offer-theme .hero-leverage-copy {
  font-size: 1rem;
  color: #33424a;
  max-width: 56ch;
  margin-bottom: 24px;
}

.offer-theme .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
}

.offer-theme .hero-media {
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  overflow: hidden;
  background: var(--offer-tint);
}

.offer-theme .hero-media img,
.offer-theme .hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-theme .stat-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.offer-theme .stat-chip {
  font-size: 0.84rem;
  font-weight: 600;
  background: var(--offer-surface);
  border: 1px solid var(--offer-line);
  border-radius: 999px;
  padding: 8px 16px;
  color: var(--offer-ink);
}

/* cards grid (deliverables) */
.offer-theme .cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.offer-theme .deliverable-card {
  background: var(--offer-surface);
  border-radius: 16px;
  border: 1px solid var(--offer-line);
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(16, 28, 34, 0.04);
}

.offer-theme .card-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.offer-theme .card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-theme .card-body {
  padding: 20px;
}

.offer-theme .deliverable-card h3 {
  font-size: 1.12rem;
  margin-bottom: 8px;
}

.offer-theme .deliverable-card p {
  font-size: 0.94rem;
  color: var(--offer-muted);
  margin-bottom: 12px;
}

.offer-theme .card-price-tag {
  display: inline-block;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 700;
  font-size: 0.86rem;
  background: var(--offer-tint);
  color: var(--offer-navy);
  border-radius: 8px;
  padding: 6px 12px;
}

/* rate callout */
.offer-theme .rate-callout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  background: var(--offer-surface);
  border: 1px solid var(--offer-line);
  border-radius: 16px;
  padding: 26px;
}

.offer-theme .rate-figure {
  text-align: left;
}

.offer-theme .rate-figure .amount {
  display: block;
  font-family: Georgia, serif;
  font-size: clamp(1.6rem, 3vw + 1rem, 2.2rem);
  color: var(--offer-accent);
  font-weight: 700;
}

.offer-theme .rate-figure .label {
  font-size: 0.86rem;
  color: var(--offer-muted);
}

.offer-theme .table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid var(--offer-line);
  background: var(--offer-surface);
}

.offer-theme table {
  min-width: 460px;
}

.offer-theme th,
.offer-theme td {
  text-align: left;
  padding: 14px 18px;
  font-size: 0.94rem;
  border-bottom: 1px solid var(--offer-line);
  font-family: "Inter", Arial, sans-serif;
}

.offer-theme thead th {
  background: var(--offer-tint);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.78rem;
}

.offer-theme tbody tr:last-child td {
  border-bottom: none;
}

.offer-theme td.emph {
  font-weight: 800;
  color: var(--offer-accent);
}

.offer-theme .rate-note {
  font-size: 0.84rem;
  color: var(--offer-muted);
}

.offer-theme .rate-note a {
  color: var(--offer-accent);
  text-decoration: underline;
}

/* leverage block */
.offer-theme .leverage-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
}

.offer-theme .leverage-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.offer-theme .leverage-step {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  background: var(--offer-surface);
  border: 1px solid var(--offer-line);
  border-radius: 12px;
  padding: 16px 18px;
}

.offer-theme .step-number {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--offer-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: "Inter", Arial, sans-serif;
}

.offer-theme .leverage-step h3 {
  font-size: 1rem;
  margin-bottom: 4px;
  font-family: "Inter", Arial, sans-serif;
}

.offer-theme .leverage-step p {
  font-size: 0.92rem;
  color: var(--offer-muted);
  margin: 0;
}

.offer-theme .loop-frame {
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  overflow: hidden;
  background: var(--offer-tint);
}

.offer-theme .loop-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* curriculum */
.offer-theme .curriculum-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}

.offer-theme .curriculum-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.offer-theme .curriculum-list li {
  position: relative;
  padding-left: 26px;
  font-size: 0.98rem;
  color: #2b3a41;
}

.offer-theme .curriculum-list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--offer-accent);
}

.offer-theme .curriculum-col h3 {
  font-size: 1.05rem;
  margin-bottom: 14px;
  font-family: "Inter", Arial, sans-serif;
}

/* pricing */
.offer-theme .pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  container-type: inline-size;
}

.offer-theme .pricing-card {
  background: var(--offer-surface);
  border: 1px solid var(--offer-line);
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.offer-theme .pricing-card.is-highlight {
  background: var(--offer-navy);
  color: #fff;
  border-color: var(--offer-navy);
  box-shadow: 0 18px 40px rgba(20, 42, 60, 0.28);
  transform: scale(1.01);
  position: relative;
}

.offer-theme .pricing-card.is-highlight .pricing-hours,
.offer-theme .pricing-card.is-highlight .pricing-list li {
  color: #d7e2df;
}

.offer-theme .highlight-tag {
  position: absolute;
  top: -14px;
  left: 24px;
  background: var(--offer-accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}

.offer-theme .pricing-name {
  font-size: 1.2rem;
}

.offer-theme .pricing-price {
  font-family: Georgia, serif;
  font-size: 2.1rem;
  font-weight: 700;
}

.offer-theme .pricing-price span {
  font-size: 1rem;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 500;
  opacity: 0.7;
}

.offer-theme .pricing-hours {
  font-size: 0.86rem;
  color: var(--offer-muted);
  font-family: "Inter", Arial, sans-serif;
}

.offer-theme .pricing-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}

.offer-theme .pricing-list li {
  position: relative;
  padding-left: 24px;
  font-size: 0.92rem;
  font-family: "Inter", Arial, sans-serif;
  color: #2b3a41;
}

.offer-theme .pricing-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--offer-accent);
  font-weight: 800;
}

.offer-theme .pricing-card.is-highlight .pricing-list li::before {
  color: #6fe3c6;
}

/* add-ons */
.offer-theme .addons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.offer-theme .addon-card {
  background: var(--offer-surface);
  border: 1px solid var(--offer-line);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.offer-theme .addon-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.offer-theme .addon-head h3 {
  font-size: 1.02rem;
  font-family: "Inter", Arial, sans-serif;
}

.offer-theme .addon-price {
  font-family: Georgia, serif;
  font-weight: 700;
  color: var(--offer-accent);
  font-size: 1.1rem;
  white-space: nowrap;
}

.offer-theme .addon-card p {
  font-size: 0.92rem;
  color: var(--offer-muted);
  margin: 0;
}

/* perks */
.offer-theme .perks-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.offer-theme .perk-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  background: var(--offer-surface);
  border: 1px solid var(--offer-line);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 0.94rem;
  align-items: start;
}

.offer-theme .perk-icon {
  color: var(--offer-accent);
  font-weight: 800;
}

/* arithmetic / value block */
.offer-theme .arithmetic-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.offer-theme .arithmetic-item {
  background: var(--offer-surface);
  border: 1px solid var(--offer-line);
  border-radius: 14px;
  padding: 20px;
}

.offer-theme .arithmetic-item .big {
  font-family: Georgia, serif;
  font-size: 1.5rem;
  color: var(--offer-accent);
  display: block;
  margin-bottom: 6px;
}

.offer-theme .arithmetic-item p {
  font-size: 0.92rem;
  color: var(--offer-muted);
  margin: 0;
}

.offer-theme .waiting-note {
  margin-top: 18px;
  font-size: 0.94rem;
  color: #c9d6d3;
}

/* limits */
.offer-theme .limits-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.offer-theme .limits-list li {
  position: relative;
  padding-left: 26px;
  font-size: 0.96rem;
  color: #2b3a41;
}

.offer-theme .limits-list li::before {
  content: "•";
  position: absolute;
  left: 4px;
  color: var(--offer-navy);
  font-weight: 800;
}

/* lead form */
.offer-theme .lead-section {
  background: var(--offer-navy);
  color: #eef3f2;
}

.offer-theme .lead-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.offer-theme .lead-intro h2 {
  color: #fff;
}

.offer-theme .lead-intro p {
  color: #c9d6d3;
  margin-top: 12px;
  font-size: 0.98rem;
}

.offer-theme .lead-intro ul {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.offer-theme .lead-intro li {
  position: relative;
  padding-left: 22px;
  font-size: 0.92rem;
  color: #c9d6d3;
}

.offer-theme .lead-intro li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #6fe3c6;
}

.offer-theme .lead-form {
  background: #fff;
  border-radius: 20px;
  padding: 26px;
  color: var(--offer-ink);
}

.offer-theme .form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.offer-theme .field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.offer-theme .field label {
  font-size: 0.86rem;
  font-weight: 700;
  font-family: "Inter", Arial, sans-serif;
}

.offer-theme .field input,
.offer-theme .field textarea {
  border: 1px solid var(--offer-line);
  border-radius: 10px;
  padding: 13px 14px;
  font-size: 1rem;
  min-height: 48px;
  font-family: "Inter", Arial, sans-serif;
  background: #fbfdfd;
}

.offer-theme .field textarea {
  min-height: 100px;
  resize: vertical;
}

.offer-theme .field input:focus,
.offer-theme .field textarea:focus {
  border-color: var(--offer-accent);
  background: #fff;
}

.offer-theme .consent-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.86rem;
  color: var(--offer-muted);
}

.offer-theme .consent-row input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

.offer-theme .consent-row a {
  color: var(--offer-accent);
  text-decoration: underline;
}

.offer-theme .form-actions {
  margin-top: 4px;
}

.offer-theme .form-note {
  font-size: 0.78rem;
  color: var(--offer-muted);
  margin-top: 14px;
}

.offer-theme .form-success {
  background: var(--offer-tint);
  border: 1px solid var(--offer-accent);
  border-radius: 12px;
  padding: 20px;
  font-size: 0.98rem;
}

.offer-theme .form-success strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Inter", Arial, sans-serif;
}

.offer-theme [hidden] {
  display: none !important;
}

/* legal / prose (shared, mostly on offer theme) */
.offer-theme .legal-hero {
  padding-block: 44px 10px;
}

.offer-theme .legal-hero h1 {
  font-size: clamp(1.7rem, 3.4vw + 0.8rem, 2.6rem);
  margin-bottom: 14px;
}

.offer-theme .legal-hero p {
  color: var(--offer-muted);
  max-width: 62ch;
  font-size: 1.02rem;
}

.offer-theme .prose>*+* {
  margin-top: 18px;
}

.offer-theme .prose h2 {
  font-size: 1.3rem;
  margin-top: 34px;
}

.offer-theme .prose h3 {
  font-size: 1.08rem;
  font-family: "Inter", Arial, sans-serif;
  margin-top: 22px;
}

.offer-theme .prose p {
  font-size: 0.98rem;
  color: #2b3a41;
}

.offer-theme .prose ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}

.offer-theme .prose li {
  position: relative;
  padding-left: 22px;
  font-size: 0.96rem;
  color: #2b3a41;
}

.offer-theme .prose li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--offer-accent);
}

.offer-theme .company-block {
  background: var(--offer-surface);
  border: 1px solid var(--offer-line);
  border-radius: 14px;
  padding: 20px;
  font-size: 0.92rem;
  color: var(--offer-muted);
}

.offer-theme .company-block p+p {
  margin-top: 6px;
}

.offer-theme .company-block strong {
  color: var(--offer-ink);
}

/* offer footer */
.offer-theme .site-footer {
  background: var(--offer-surface);
  border-top: 1px solid var(--offer-line);
  padding-block: 40px 26px;
  margin-top: 20px;
}

.offer-theme .footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}

.offer-theme .footer-col h4 {
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--offer-ink);
  margin-bottom: 12px;
  font-family: "Inter", Arial, sans-serif;
}

.offer-theme .footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.offer-theme .footer-links a {
  font-size: 0.92rem;
  color: var(--offer-muted);
}

.offer-theme .footer-links a:hover {
  color: var(--offer-accent);
}

.offer-theme .footer-legal {
  font-size: 0.78rem;
  color: #7c8a8f;
  margin-top: 26px;
  border-top: 1px solid var(--offer-line);
  padding-top: 20px;
}

.offer-theme .footer-legal p+p {
  margin-top: 6px;
}

@media (min-width: 768px) {
  .offer-theme .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .offer-theme .cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .offer-theme .rate-callout {
    grid-template-columns: 240px 1fr;
  }

  .offer-theme .leverage-block {
    grid-template-columns: 1fr 1fr;
  }

  .offer-theme .curriculum-grid {
    grid-template-columns: 1fr 1fr;
  }

  .offer-theme .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .offer-theme .pricing-card.is-highlight {
    transform: scale(1.04);
  }

  .offer-theme .addons-grid {
    grid-template-columns: 1fr 1fr;
  }

  .offer-theme .perks-stack {
    grid-template-columns: 1fr 1fr;
  }

  .offer-theme .arithmetic-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .offer-theme .limits-list {
    grid-template-columns: 1fr 1fr;
  }

  .offer-theme .lead-grid {
    grid-template-columns: 1fr 1fr;
  }

  .offer-theme .form-grid {
    grid-template-columns: 1fr 1fr;
  }

  .offer-theme .form-grid .field-full {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1024px) {
  .offer-theme .pricing-card.is-highlight {
    transform: scale(1.06);
  }
}

/* =========================================================================
   Shared media helpers
   ========================================================================= */
.media-credit {
  font-size: 0.72rem;
  color: var(--offer-muted, #6b6b6b);
}


/* =========================================================================
   2026 visual refresh — white / blue / navy / amber
   Visual-only override layer. Existing page content and layout remain intact.
   ========================================================================= */
:root {
  --brand-navy: #0d2f4f;
  --brand-navy-2: #09243d;
  --brand-blue: #2f6fa3;
  --brand-blue-soft: #eaf3fa;
  --brand-blue-pale: #f4f8fc;
  --brand-amber: #f3aa2c;
  --brand-amber-dark: #d98c0d;
  --brand-white: #ffffff;
  --brand-line: #d7e4ee;
  --brand-shadow: 0 14px 36px rgba(13, 47, 79, 0.10);
}

/* Shared header treatment */
.pub-theme .site-header,
.offer-theme .site-header {
  background: rgba(13, 47, 79, 0.98);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 24px rgba(9, 36, 61, 0.10);
  backdrop-filter: blur(10px);
}

.pub-theme .site-nav,
.offer-theme .site-nav {
  background: var(--brand-navy);
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.pub-theme .logo-sub,
.offer-theme .logo-sub {
  color: #c9dceb;
  opacity: 1;
}

.pub-theme .site-nav a,
.offer-theme .site-nav a {
  color: #eef6fb;
}

.pub-theme .site-nav a:hover,
.pub-theme .site-nav a:focus-visible,
.offer-theme .site-nav a:hover,
.offer-theme .site-nav a:focus-visible {
  color: #ffd071;
}

.pub-theme .nav-toggle,
.offer-theme .nav-toggle {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.pub-theme .nav-cta,
.offer-theme .nav-cta {
  background: var(--brand-amber);
  color: var(--brand-navy-2);
  box-shadow: 0 7px 18px rgba(243, 170, 44, 0.23);
}

.pub-theme .nav-cta:hover,
.offer-theme .nav-cta:hover {
  background: #ffc252;
  color: var(--brand-navy-2);
}

/* Publication family */
body.pub-theme {
  --pub-bg: #ffffff;
  --pub-surface: #f1f6fa;
  --pub-ink: #0d2f4f;
  --pub-muted: #526a7d;
  --pub-accent: #e79a18;
  --pub-accent-ink: #0d2f4f;
  --pub-line: #d7e4ee;
  --pub-ribbon: #2f6fa3;
  --focus-ring: #f3aa2c;
  background: #fff;
}

.pub-theme .disclosure-ribbon {
  background: var(--brand-blue);
}

.pub-theme .ribbon-tag {
  background: var(--brand-amber);
  color: var(--brand-navy-2);
}

.pub-theme .breadcrumb {
  color: #61788a;
}

.pub-theme .article-body p,
.pub-theme .article-body li,
.pub-theme .standards-list li {
  color: #29465d;
}

.pub-theme .methodology-box,
.pub-theme .entry,
.pub-theme .value-card,
.pub-theme .verdict-box,
.pub-theme .deliverable-item {
  border-color: var(--brand-line);
  box-shadow: 0 8px 24px rgba(13, 47, 79, 0.05);
}

.pub-theme .methodology-box {
  background: #f4f8fc;
  border-left-color: var(--brand-amber);
}

.pub-theme .callout {
  background: linear-gradient(135deg, var(--brand-navy), #184e79);
  box-shadow: var(--brand-shadow);
}

.pub-theme .callout .box-heading {
  color: #ffc45b;
}

.pub-theme .score-track {
  background: #eaf3fa;
}

.pub-theme .score-fill {
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-amber));
}

.pub-theme thead th {
  background: var(--brand-navy);
}

.pub-theme tbody tr:nth-child(even) {
  background: #f5f9fc;
}

.pub-theme .btn-primary {
  background: var(--brand-amber);
  color: var(--brand-navy-2);
  box-shadow: 0 9px 22px rgba(243, 170, 44, .2);
}

.pub-theme .btn-primary:hover {
  background: var(--brand-amber-dark);
  color: #fff;
}

.pub-theme .btn-secondary {
  color: var(--brand-navy);
  border-color: var(--brand-blue);
}

.pub-theme .btn-secondary:hover {
  background: var(--brand-blue);
  color: #fff;
}

.pub-theme .site-footer {
  background: var(--brand-navy-2);
  color: #dbe8f1;
}

.pub-theme .footer-links a {
  color: #bfd0dc;
}

.pub-theme .footer-legal {
  color: #90a9bb;
  border-top-color: rgba(255, 255, 255, .12);
}

/* Offer / legal family */
body.offer-theme {
  --offer-bg: #f4f8fc;
  --offer-surface: #ffffff;
  --offer-tint: #eaf3fa;
  --offer-ink: #0d2f4f;
  --offer-muted: #566f82;
  --offer-accent: #e79a18;
  --offer-accent-ink: #0d2f4f;
  --offer-navy: #0d2f4f;
  --offer-line: #d7e4ee;
  --focus-ring: #f3aa2c;
  background: var(--offer-bg);
}

.offer-theme h1,
.offer-theme h2,
.offer-theme h3,
.offer-theme h4 {
  color: var(--brand-navy);
}

.offer-theme .offer-hero {
  background:
    radial-gradient(circle at 92% 12%, rgba(243, 170, 44, .14), transparent 25%),
    linear-gradient(180deg, #ffffff 0%, #f2f8fc 100%);
}

.offer-theme .eyebrow {
  color: var(--brand-blue);
}

.offer-theme .hero-h2 {
  color: var(--brand-blue);
}

.offer-theme .hero-leverage-copy,
.offer-theme .curriculum-list li,
.offer-theme .prose p,
.offer-theme .prose li {
  color: #35556d;
}

.offer-theme .hero-media,
.offer-theme .loop-frame {
  border: 1px solid var(--brand-line);
  box-shadow: var(--brand-shadow);
}

.offer-theme .stat-chip {
  border-color: #cbdde9;
  box-shadow: 0 4px 14px rgba(13, 47, 79, .05);
}

.offer-theme .btn-primary {
  background: var(--brand-amber);
  color: var(--brand-navy-2);
  box-shadow: 0 9px 22px rgba(243, 170, 44, .22);
}

.offer-theme .btn-primary:hover {
  background: var(--brand-amber-dark);
  color: #fff;
}

.offer-theme .btn-secondary {
  border-color: var(--brand-blue);
  color: var(--brand-blue);
}

.offer-theme .btn-secondary:hover {
  background: var(--brand-blue);
  color: #fff;
}

.offer-theme .section--tint {
  background: #eaf3fa;
}

.offer-theme .section--navy,
.offer-theme .lead-section {
  background: linear-gradient(135deg, var(--brand-navy-2), var(--brand-navy));
}

.offer-theme .section--navy p,
.offer-theme .lead-intro p,
.offer-theme .lead-intro li {
  color: #c8d9e6;
}

.offer-theme .lead-intro li::before {
  color: #ffc45b;
}

.offer-theme .deliverable-card,
.offer-theme .rate-callout,
.offer-theme .leverage-step,
.offer-theme .pricing-card,
.offer-theme .addon-card,
.offer-theme .perk-item,
.offer-theme .arithmetic-item,
.offer-theme .company-block,
.offer-theme .lead-form {
  border-color: var(--brand-line);
  box-shadow: 0 10px 28px rgba(13, 47, 79, .07);
}

.offer-theme .card-price-tag {
  background: #edf5fb;
  color: var(--brand-blue);
}

.offer-theme .rate-figure .amount,
.offer-theme td.emph,
.offer-theme .addon-price,
.offer-theme .arithmetic-item .big {
  color: var(--brand-blue);
}

.offer-theme .step-number {
  background: var(--brand-blue);
  color: #fff;
}

.offer-theme .curriculum-list li::before,
.offer-theme .pricing-list li::before,
.offer-theme .perk-icon,
.offer-theme .prose li::before {
  color: var(--brand-amber-dark);
}

.offer-theme .pricing-card.is-highlight {
  background: linear-gradient(145deg, var(--brand-navy-2), #174d76);
  border-color: #174d76;
  box-shadow: 0 20px 48px rgba(13, 47, 79, .25);
}

.offer-theme .pricing-card.is-highlight h3,
.offer-theme .pricing-card.is-highlight .pricing-price {
  color: #fff;
}

.offer-theme .pricing-card.is-highlight .pricing-list li::before {
  color: #ffc45b;
}

.offer-theme .highlight-tag {
  background: var(--brand-amber);
  color: var(--brand-navy-2);
}

.offer-theme .lead-form {
  border: 1px solid rgba(255, 255, 255, .35);
}

.offer-theme .field input,
.offer-theme .field textarea {
  background: #f8fbfd;
  border-color: #cbdde9;
}

.offer-theme .field input:focus,
.offer-theme .field textarea:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(47, 111, 163, .12);
}

.offer-theme .consent-row a,
.offer-theme .rate-note a {
  color: var(--brand-blue);
}

.offer-theme .form-success {
  border-color: #c8dcec;
  background: #f0f7fc;
}

.offer-theme .site-footer {
  background: var(--brand-navy-2);
  border-top-color: rgba(255, 255, 255, .08);
  color: #dbe8f1;
}

.offer-theme .site-footer h4,
.offer-theme .site-footer .footer-col h4 {
  color: #fff;
}

.offer-theme .site-footer p {
  color: #bdd0dd !important;
}

.offer-theme .footer-links a {
  color: #c4d5e1;
}

.offer-theme .footer-links a:hover {
  color: #ffc45b;
}

.offer-theme .footer-legal {
  color: #8fa9bb;
  border-top-color: rgba(255, 255, 255, .12);
}

/* Human-only honeypot: occupies no visual space. */
.hp-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

/* Thank-you page */
.thankyou-page main {
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
  padding: 52px 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(243, 170, 44, .16), transparent 24%),
    linear-gradient(150deg, #edf6fc 0%, #ffffff 48%, #eaf3fa 100%);
}

.thankyou-card {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--brand-line);
  border-radius: 24px;
  padding: 34px 26px;
  box-shadow: 0 24px 60px rgba(13, 47, 79, .14);
  text-align: center;
}

.thankyou-mark {
  width: 68px;
  height: 68px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--brand-amber);
  color: var(--brand-navy-2);
  font-size: 2rem;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(243, 170, 44, .25);
}

.thankyou-card .eyebrow {
  margin-bottom: 10px;
}

.thankyou-card h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.08;
  margin-bottom: 16px;
}

.thankyou-card>p {
  max-width: 60ch;
  margin: 0 auto;
  color: var(--offer-muted);
}

.thankyou-summary {
  margin: 28px 0;
  text-align: left;
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid var(--brand-line);
  border-radius: 16px;
  overflow: hidden;
}

.thankyou-summary div {
  padding: 14px 16px;
  background: #f8fbfd;
  border-bottom: 1px solid var(--brand-line);
}

.thankyou-summary div:last-child {
  border-bottom: 0;
}

.thankyou-summary dt {
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #6d8292;
  font-weight: 800;
}

.thankyou-summary dd {
  margin: 4px 0 0;
  color: var(--brand-navy);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.thankyou-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}

.thankyou-actions .btn {
  min-width: 190px;
}

.thankyou-status {
  margin-top: 18px !important;
  font-size: .86rem;
}

@media (min-width:640px) {
  .thankyou-card {
    padding: 48px;
  }

  .thankyou-summary {
    grid-template-columns: 1fr 1fr;
  }

  .thankyou-summary div {
    border-right: 1px solid var(--brand-line);
  }

  .thankyou-summary div:nth-child(2n) {
    border-right: 0;
  }

  .thankyou-summary div:nth-last-child(-n+2) {
    border-bottom: 0;
  }
}
/* ═════════════════════════════════════════════
   HEADER — logo left / navigation right
═════════════════════════════════════════════ */

.site-header .header-inner {
  display: flex;
  align-items: center;
  width: 100%;
}

/* Логотип всегда слева */
.site-header .logo {
  flex: 0 0 auto;
  margin-right: auto;
}

/* Вся навигация уходит вправо */
.site-header .site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;

  margin-left: auto;
}

/* Кнопка Training */
.site-header .site-nav .nav-cta {
  margin-left: 8px;
}


/* ══ DESKTOP ══ */

@media (min-width: 769px) {

  .site-header .nav-toggle {
    display: none;
  }

  .site-header .site-nav {
    position: static;
    width: auto;
    flex: 0 0 auto;
  }
}


/* ══ MOBILE ══ */

@media (max-width: 768px) {

  .site-header .logo {
    margin-right: 0;
  }

  /* Burger остаётся справа */
  .site-header .nav-toggle {
    display: flex;
    margin-left: auto;
  }

  .site-header .site-nav {
    margin-left: 0;
  }
}
/* ═════════════════════════════════════════════
   HEADER FIX
   Desktop: logo left / navigation right
   Mobile: compact dropdown, no page overlay
═════════════════════════════════════════════ */

/* CTA hover — белый текст → тёмно-синий */
.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  color: #0e2f4d !important;
}


/* ═════════════════════════════════════════════
   DESKTOP
═════════════════════════════════════════════ */

@media (min-width: 769px) {

  .site-header .header-inner {
    display: flex;
    align-items: center;
    width: 100%;
  }

  .site-header .logo {
    flex: 0 0 auto;
    margin-right: auto;
  }

  .site-header .site-nav {
    position: static;
    display: flex;
    align-items: center;
    justify-content: flex-end;

    width: auto;
    margin-left: auto;
    gap: 28px;
  }

  .site-header .nav-toggle {
    display: none;
  }

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


/* ═════════════════════════════════════════════
   MOBILE HEADER
═════════════════════════════════════════════ */

@media (max-width: 768px) {

  /*
   * Не даём шапке висеть поверх страницы.
   * Если выше в CSS установлен fixed/sticky —
   * эти правила его отменяют.
   */
  .site-header {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;

    width: 100%;
    z-index: 20;

    background: #0e2f4d;
  }


  /* Шапка */
  .site-header .header-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;

    width: 100%;
    min-height: 68px;

    padding: 12px 18px;
    margin: 0 auto;

    box-sizing: border-box;
  }


  /* Логотип */
  .site-header .logo {
    display: flex;
    flex-direction: column;
    justify-content: center;

    flex: 1 1 auto;

    margin: 0;
    padding: 0;

    text-decoration: none;
  }

  .site-header .logo-text {
    font-size: 18px;
    line-height: 1.05;
  }

  .site-header .logo-sub {
    margin-top: 2px;

    font-size: 10px;
    line-height: 1.1;

    letter-spacing: 0.12em;
  }


  /* Burger */
  .site-header .nav-toggle {
    position: relative !important;

    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 44px;

    width: 44px;
    height: 44px;

    margin: 0 0 0 14px;
    padding: 0;

    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 10px;

    background: transparent;

    cursor: pointer;
  }


  /*
   * Меню ЗАКРЫТО.
   *
   * Важно:
   * position: static убирает старое абсолютное меню,
   * из-за которого оно перекрывало страницу.
   */
  .site-header .site-nav {
    position: static !important;
    inset: auto !important;

    display: none;

    flex: 0 0 100%;
    flex-direction: column;
    align-items: stretch;

    width: 100%;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;

    margin: 12px 0 0;
    padding: 8px 0 4px;

    gap: 0;

    background: #0e2f4d;

    border-top: 1px solid rgba(255, 255, 255, 0.12);

    box-shadow: none;
    overflow: visible;
  }


  /* Меню открыто */
  .site-header.nav-open .site-nav {
    display: flex;
  }


  /* Обычные пункты */
  .site-header .site-nav > a:not(.nav-cta) {
    display: flex;
    align-items: center;
    justify-content: flex-start;

    width: 100%;
    min-height: 48px;

    margin: 0;
    padding: 0 4px;

    box-sizing: border-box;

    color: #ffffff;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 600;

    text-decoration: none;

    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }


  .site-header .site-nav > a:not(.nav-cta):hover,
  .site-header .site-nav > a:not(.nav-cta):focus-visible {
    color: #f6ae2d;
  }


  /* Training */
  .site-header .site-nav .nav-cta {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    min-height: 48px;

    margin: 12px 0 4px;
    padding: 12px 20px;

    box-sizing: border-box;

    border-radius: 9px;

    background: #f6ae2d;

    color: #ffffff;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 700;

    text-align: center;
    text-decoration: none;

    transition:
      background-color 0.2s ease,
      color 0.2s ease,
      transform 0.2s ease;
  }


  /* Нужная тебе смена цвета текста */
  .site-header .site-nav .nav-cta:hover,
  .site-header .site-nav .nav-cta:focus-visible {
    background: #ffc24b;
    color: #0e2f4d !important;
  }


  /* Убираем возможные старые transform/absolute эффекты */
  .site-header.nav-open .site-nav,
  .site-header .site-nav {
    transform: none !important;
    translate: none !important;
  }
}


/* ═════════════════════════════════════════════
   SMALL PHONES
═════════════════════════════════════════════ */

@media (max-width: 430px) {

  .site-header .header-inner {
    min-height: 64px;
    padding: 10px 14px;
  }

  .site-header .logo-text {
    font-size: 16px;
  }

  .site-header .logo-sub {
    font-size: 9px;
  }

  .site-header .nav-toggle {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
  }

  .site-header .site-nav {
    margin-top: 10px;
  }

  .site-header .site-nav > a:not(.nav-cta) {
    min-height: 45px;
    font-size: 15px;
  }

  .site-header .site-nav .nav-cta {
    min-height: 46px;
    margin-top: 10px;
  }
}
/* ═════════════════════════════════════════════
   SITE FOOTER
═════════════════════════════════════════════ */

.site-footer {
  width: 100%;
  margin-top: 0;

  background:
    linear-gradient(
      180deg,
      #10395f 0%,
      #0c2f50 48%,
      #092744 100%
    );

  color: #ffffff;

  border-top: 4px solid #f5aa28;
}


/* Main footer grid */
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.65fr 0.75fr 0.9fr;
  gap: 70px;

  padding-top: 50px;
  padding-bottom: 40px;
}


/* Columns */
.site-footer .footer-col {
  min-width: 0;
}

.site-footer .footer-col h4 {
  margin: 0 0 17px;

  color: #ffffff;

  font-size: 15px;
  line-height: 1.3;
  font-weight: 700;

  letter-spacing: 0.015em;
}


/* Company information */
.site-footer .footer-company__details {
  max-width: 470px;

  margin: 0;

  color: #b9cee0;

  font-size: 13px;
  line-height: 1.7;
  font-weight: 400;
}


/* ═════════════════════════════════════════════
   FOOTER LINKS
═════════════════════════════════════════════ */

.site-footer .footer-links {
  display: flex;
  flex-direction: column;
  gap: 9px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.site-footer .footer-links li {
  margin: 0;
  padding: 0;
}

.site-footer .footer-links a {
  position: relative;

  display: inline-block;

  color: #c4d6e5;

  font-size: 13px;
  line-height: 1.45;
  font-weight: 500;

  text-decoration: none;

  transition:
    color 0.18s ease,
    transform 0.18s ease;
}

.site-footer .footer-links a:hover,
.site-footer .footer-links a:focus-visible {
  color: #f7b538;
  transform: translateX(3px);
}


/* ═════════════════════════════════════════════
   ADVERTISING DISCLOSURE
═════════════════════════════════════════════ */

.site-footer .footer-disclosure {
  padding-top: 30px;
  padding-bottom: 31px;

  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}


/* Badge */
.footer-disclosure__head {
  margin-bottom: 17px;
}

.footer-disclosure__badge {
  display: inline-flex;
  align-items: center;

  padding: 7px 12px;

  border-radius: 5px;

  background: #f5aa28;
  color: #092744;

  font-size: 11px;
  line-height: 1;
  font-weight: 800;

  letter-spacing: 0.08em;
  text-transform: uppercase;
}


/* Disclosure text */
.site-footer .footer-disclosure p {
  max-width: 1120px;

  margin: 0 0 13px;

  color: #adc5d8;

  font-size: 12.5px;
  line-height: 1.65;
  font-weight: 400;
}

.site-footer .footer-disclosure p:last-child {
  margin-bottom: 0;
}

.site-footer .footer-disclosure strong {
  color: #dbe8f2;
  font-weight: 700;
}


/* ═════════════════════════════════════════════
   BOTTOM LEGAL
═════════════════════════════════════════════ */

.site-footer .footer-legal {
  padding-top: 24px;
  padding-bottom: 30px;
}

.site-footer .footer-legal p {
  margin: 0 0 6px;

  color: #829fb7;

  font-size: 11.5px;
  line-height: 1.55;
  font-weight: 400;
}

.site-footer .footer-legal p:last-child {
  margin-bottom: 0;
}


/* ═════════════════════════════════════════════
   TABLET
═════════════════════════════════════════════ */

@media (max-width: 900px) {

  .site-footer .footer-grid {
    grid-template-columns: 1.4fr 0.8fr 0.9fr;
    gap: 35px;

    padding-top: 42px;
    padding-bottom: 34px;
  }

  .site-footer .footer-disclosure {
    padding-top: 27px;
    padding-bottom: 27px;
  }
}


/* ═════════════════════════════════════════════
   MOBILE
═════════════════════════════════════════════ */

@media (max-width: 700px) {

  .site-footer {
    border-top-width: 3px;
  }

  .site-footer .footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;

    padding-top: 35px;
    padding-bottom: 32px;
  }

  /*
   * Company takes whole first row.
   * Site + Legal sit beside each other below.
   */
  .site-footer .footer-company {
    grid-column: 1 / -1;
  }

  .site-footer .footer-col h4 {
    margin-bottom: 13px;
    font-size: 14px;
  }

  .site-footer .footer-company__details {
    font-size: 12.5px;
    line-height: 1.65;
  }

  .site-footer .footer-links {
    gap: 10px;
  }

  .site-footer .footer-links a {
    font-size: 13px;
  }


  /* Disclosure */
  .site-footer .footer-disclosure {
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .footer-disclosure__head {
    margin-bottom: 15px;
  }

  .footer-disclosure__badge {
    padding: 7px 10px;
    font-size: 10px;
  }

  .site-footer .footer-disclosure p {
    margin-bottom: 14px;

    font-size: 11.5px;
    line-height: 1.65;
  }


  /* Bottom copyright */
  .site-footer .footer-legal {
    padding-top: 21px;
    padding-bottom: 25px;
  }

  .site-footer .footer-legal p {
    font-size: 10.5px;
    line-height: 1.55;
  }
}


/* ═════════════════════════════════════════════
   SMALL MOBILE
═════════════════════════════════════════════ */

@media (max-width: 430px) {

  .site-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 27px;

    padding-top: 31px;
  }

  .site-footer .footer-company {
    grid-column: auto;
  }

  .site-footer .footer-col {
    padding-bottom: 1px;
  }

  .site-footer .footer-company__details {
    max-width: none;
  }

  .site-footer .footer-links a:hover {
    transform: none;
  }
}