:root {
  --font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --color-primary: #1c3f94;
  --color-secondary: #f5704b;
  --color-bg: #f4f6ff;
  --color-surface: #ffffff;
  --color-surface-alt: #eef1ff;
  --color-text: #151f3b;
  --color-muted: #5d678a;
  --color-border: rgba(28, 63, 148, 0.14);
  --shadow-soft: 0 18px 45px rgba(28, 63, 148, 0.18);
  --shadow-elevated: 0 26px 60px rgba(28, 63, 148, 0.14);
  --gradient-hero: linear-gradient(140deg, #f3f6ff 0%, #ffffff 55%, #f9edf2 100%);
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --space-section: clamp(3rem, 8vw, 5.75rem);
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

body.page {
  background-image: radial-gradient(circle at top right, rgba(28, 63, 148, 0.08), transparent 55%),
  radial-gradient(circle at 15% 20%, rgba(245, 112, 75, 0.12), transparent 55%);
  min-height: 100vh;
}

main {
  display: block;
}

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

a:hover,
button:hover {
  cursor: pointer;
}

.section {
  padding: var(--space-section) 1.5rem;
}

.section:nth-of-type(odd) {
  position: relative;
}

.section:nth-of-type(odd)::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0));
  z-index: 0;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(28, 63, 148, 0.08);
  backdrop-filter: blur(16px);
}

.topbar__container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-primary);
  letter-spacing: 0.02em;
}

.brand__logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.95);
  padding: 0.25rem;
  box-shadow: inset 0 0 0 1px rgba(28, 63, 148, 0.15);
}

.topbar__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 0.95rem;
  color: var(--color-muted);
}

.topbar__note {
  white-space: nowrap;
}

.hero {
  padding-top: clamp(4.5rem, 11vw, 8rem);
  padding-bottom: clamp(3.2rem, 9vw, 6rem);
  background: var(--gradient-hero);
}

.hero__grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  justify-content: center;
}

.hero__content {
  display: grid;
  gap: 1.5rem;
  width: min(100%, 960px);
  margin: 0 auto;
  text-align: left;
  justify-items: start;
}

.hero__content > .pillars {
  width: 100%;
}

.hero__content > .cta-group {
  width: min(100%, 520px);
  justify-self: start;
}

.hero__content > .reviews-link,
.hero__content > .micro,
.hero__content > .sublead,
.hero__content > .lead {
  width: 100%;
}

.coach-card {
  margin-top: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.2rem;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.22), transparent 60%), rgba(28, 63, 148, 0.16);
  border-radius: 22px;
  border: 1px solid rgba(28, 63, 148, 0.22);
  box-shadow: 0 12px 30px rgba(28, 63, 148, 0.18);
}

.coach-card__avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 20px rgba(28, 63, 148, 0.25);
  border: 2px solid rgba(255, 255, 255, 0.75);
  flex: 0 0 54px;
}

.coach-card__body {
  display: grid;
  gap: 0.2rem;
}

.coach-card__body span,
.coach-card__body a {
  line-height: 1.4;
}

.coach-card__name {
  font-weight: 600;
  color: var(--color-primary);
}

.coach-card__role {
  font-size: 0.9rem;
  color: var(--color-muted);
}

.coach-card__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.coach-card__link:hover {
  text-decoration: underline;
}

.reviews-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  font-size: 0.98rem;
  margin-top: 0.4rem;
}

.reviews-link:hover {
  text-decoration: underline;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  font-size: 0.92rem;
  background: rgba(28, 63, 148, 0.16);
  color: var(--color-primary);
  padding: 0.42rem 0.8rem;
  border-radius: 14px;
  box-shadow: inset 0 0 0 1px rgba(28, 63, 148, 0.2);
  width: fit-content;
}

.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  line-height: 1.15;
  margin: 0;
  color: var(--color-primary);
}

.hero .sublead {
  font-size: clamp(1.05rem, 2.6vw, 1.35rem);
  color: var(--color-text);
  margin: 0.8rem 0 0.4rem;
  max-width: 800px;
}

.hero p.lead {
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
  color: var(--color-muted);
  max-width: 820px;
}

.pillars {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.pillar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 1rem;
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
  border-radius: var(--radius-sm);
  box-shadow: 0 15px 35px rgba(28, 63, 148, 0.12);
  color: var(--color-text);
  font-weight: 500;
  border: 1px solid rgba(28, 63, 148, 0.12);
}

.cta-group {
  display: grid;
  gap: 0.85rem;
  margin-top: 0.5rem;
  max-width: min(100%, 620px);
  grid-template-columns: repeat(2, minmax(300px, 1fr));
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.45rem;
  border-radius: 16px;
  border: none;
  font-weight: 600;
  font-size: 1.05rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  min-height: 54px;
}

.btn-lines {
  flex-direction: column;
  gap: 0.2rem;
}

.btn__label {
  line-height: 1.25;
}

.btn__sub {
  font-size: 0.92rem;
  line-height: 1.15;
  color: currentColor;
  opacity: 0.85;
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: var(--shadow-elevated);
}

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

.btn-secondary {
  background: var(--color-surface);
  color: var(--color-primary);
  border: 2px solid rgba(28, 63, 148, 0.16);
  box-shadow: var(--shadow-soft);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(28, 63, 148, 0.2);
  font-weight: 600;
  color: var(--color-primary);
  background: rgba(255, 255, 255, 0.6);
}

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

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(28, 63, 148, 0.18);
  background: rgba(255, 255, 255, 0.4);
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.theme-toggle:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.7);
}

.theme-toggle:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.micro {
  font-size: 0.9rem;
  color: var(--color-muted);
  padding-left: 0.35rem;
}


.section__header {
  display: grid;
  gap: 0.75rem;
  max-width: 640px;
  margin-bottom: 2.2rem;
}

.section__header h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.5rem);
  margin: 0;
  color: var(--color-primary);
}

.heading-inline {
  white-space: nowrap;
}

.section__header p {
  margin: 0;
  color: var(--color-muted);
}

.cards {
  display: grid;
  gap: 1.8rem;
}

.card {
  background: var(--color-surface);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-border);
  display: grid;
  gap: 1rem;
}

.card h3 {
  margin: 0;
  font-size: 1.4rem;
  color: var(--color-primary);
}

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

.card .btn {
  margin-top: 0.5rem;
}

.list-check {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
}

.list-check li {
  list-style: none;
  padding-left: 2.2rem;
  position: relative;
  color: var(--color-muted);
}

.list-check li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 0;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background: rgba(28, 63, 148, 0.18);
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}


.program-list {
  display: grid;
  gap: 1.35rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.program-step {
  background: var(--color-surface);
  border-radius: 22px;
  border: 1px solid rgba(28, 63, 148, 0.14);
  padding: 1.4rem 1.6rem;
  display: flex;
  gap: 1.2rem;
  align-items: center;
  min-height: 146px;
  box-shadow: 0 18px 38px rgba(28, 63, 148, 0.16);
}

.program-step__index {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), rgba(28, 63, 148, 0.72));
  color: #fff;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex: 0 0 2.6rem;
}

.program-step__body {
  display: grid;
  gap: 0.5rem;
}

.program-step__body h3 {
  margin: 0;
  font-size: 1.18rem;
  color: var(--color-primary);
}

.program-step__body p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.55;
}

.pricing {
  display: grid;
  gap: 1.8rem;
}

.price-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 2.2rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 0.95rem;
}

.price-card.recommended {
  border: 2px solid rgba(28, 63, 148, 0.3);
  box-shadow: var(--shadow-elevated);
}

.price-card h3 {
  margin: 0;
  font-size: 1.45rem;
  color: var(--color-primary);
}

.price-card .price {
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--color-text);
}

.accordion {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(28, 63, 148, 0.16);
  box-shadow: var(--shadow-soft);
  background: var(--color-surface);
}

.accordion details + details {
  border-top: 1px solid rgba(28, 63, 148, 0.12);
}

.accordion summary {
  font-weight: 600;
  padding: 1.15rem 1.6rem;
  cursor: pointer;
  list-style: none;
  color: var(--color-text);
  position: relative;
  transition: background 0.25s ease, color 0.25s ease;
}

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

.accordion summary::after {
  content: '\002B';
  position: absolute;
  right: 1.6rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  color: var(--color-primary);
}

.accordion details[open] summary::after {
  content: '\2212';
}

.accordion details[open] summary {
  background: rgba(28, 63, 148, 0.08);
}

.accordion__content {
  height: 0;
  overflow: hidden;
  padding: 0 1.6rem;
  opacity: 0;
}

.accordion__content p {
  margin: 0;
  color: var(--color-muted);
}

.accordion details[open] .accordion__content {
  height: auto;
  opacity: 1;
  padding: 0.85rem 1.6rem 1rem;
}

.final-cta {
  background: linear-gradient(160deg, rgba(28, 63, 148, 0.12), rgba(245, 112, 75, 0.1));
}

.final-cta .cta-group {
  max-width: 520px;
  margin-top: 1.5rem;
}

.footer-note {
  padding: 1.6rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--color-muted);
  background: rgba(255, 255, 255, 0.72);
  border-top: 1px solid rgba(28, 63, 148, 0.08);
}

@media (min-width: 720px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
  }

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

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

@media (min-width: 960px) {
  body {
    font-size: 18px;
  }

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

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

@media (max-width: 820px) {
  .topbar__note {
    display: none;
  }
}

@media (max-width: 640px) {
  .topbar__container {
    padding: 0.65rem 1rem;
  }

  .topbar {
    backdrop-filter: none;
    background: var(--color-surface);
  }

  .topbar__actions {
    gap: 0.55rem;
    flex-wrap: nowrap;
  }

  .badge {
    font-size: 0.9rem;
  }

  .cta-group {
    max-width: none;
  }

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

  .theme-toggle__label {
    display: none;
  }

  .topbar .theme-toggle {
    width: auto;
    min-width: 44px;
    padding: 0.45rem;
  }
}

@media (max-width: 520px) {
  .section {
    padding-inline: 1.1rem;
  }

  .btn,
  .btn-ghost {
    width: 100%;
    text-align: center;
  }

  .hero__grid {
    gap: 2.2rem;
  }

  .price-card,
  .card {
    padding: 1.7rem;
  }

  .heading-inline {
    white-space: normal;
  }

  .cta-group {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .accordion__content,
  .accordion summary,
  .btn,
  .theme-toggle {
    transition: none !important;
  }
}

@media (prefers-color-scheme: dark) {
  body:not(.theme-light) {
    --color-bg: #0f1729;
    --color-surface: #18233d;
    --color-surface-alt: #1f2d4d;
    --color-text: #f1f5ff;
    --color-muted: #c0cae8;
    --color-border: rgba(115, 138, 193, 0.3);
    --shadow-soft: 0 18px 45px rgba(4, 9, 20, 0.55);
    --shadow-elevated: 0 28px 65px rgba(4, 9, 20, 0.65);
    --gradient-hero: linear-gradient(150deg, #14203a 0%, #111a32 55%, #1c2b4f 100%);
    background: var(--color-bg);
    color: var(--color-text);
  }

  body:not(.theme-light).page {
    background-image: radial-gradient(circle at top right, rgba(28, 63, 148, 0.32), transparent 55%),
    radial-gradient(circle at 15% 20%, rgba(245, 112, 75, 0.22), transparent 55%);
  }

  body:not(.theme-light) .topbar {
    background: rgba(15, 23, 41, 0.88);
    border-bottom: 1px solid rgba(115, 138, 193, 0.3);
  }

  body:not(.theme-light) .brand {
    color: #d4defc;
  }

  body:not(.theme-light) .topbar__actions {
    color: var(--color-muted);
  }

  body:not(.theme-light) .btn-ghost,
  body:not(.theme-light) .theme-toggle {
    background: rgba(28, 63, 148, 0.18);
    color: #d4defc;
    border-color: rgba(115, 138, 193, 0.45);
  }

  body:not(.theme-light) .hero h1,
  body:not(.theme-light) .section__header h2,
  body:not(.theme-light) .price-card h3,
  body:not(.theme-light) .card h3,
  body:not(.theme-light) .program-step__body h3 {
    color: #e6ecff;
  }

  body:not(.theme-light) .hero .sublead,
  body:not(.theme-light) .hero p.lead,
  body:not(.theme-light) .card p,
  body:not(.theme-light) .list-check li,
  body:not(.theme-light) .accordion__content p,
  body:not(.theme-light) .program-step__body p,
  body:not(.theme-light) .price-card p,
  body:not(.theme-light) .section__header p {
    color: var(--color-muted);
  }

  body:not(.theme-light) .pillar {
    background: linear-gradient(130deg, rgba(24, 35, 61, 0.95), rgba(28, 63, 148, 0.35));
    border-color: rgba(115, 138, 193, 0.32);
    box-shadow: 0 18px 32px rgba(4, 9, 20, 0.55);
  }

  body:not(.theme-light) .coach-card {
    background: radial-gradient(circle at top left, rgba(61, 86, 139, 0.35), transparent 55%), rgba(24, 35, 61, 0.9);
    border-color: rgba(115, 138, 193, 0.32);
    box-shadow: 0 10px 24px rgba(4, 9, 20, 0.55);
  }

  body:not(.theme-light) .coach-card__link {
    color: #d4defc;
  }

  body:not(.theme-light) .brand__logo {
    background: rgba(255, 255, 255, 0.95);
  }

  body:not(.theme-light) .section:nth-of-type(odd)::before {
    background: linear-gradient(180deg, rgba(24, 35, 61, 0.7), rgba(24, 35, 61, 0));
  }

  body:not(.theme-light) .card,
  body:not(.theme-light) .price-card,
  body:not(.theme-light) .accordion,
  body:not(.theme-light) .program-step {
    background: rgba(24, 35, 61, 0.92);
    border-color: rgba(115, 138, 193, 0.28);
  }

  body:not(.theme-light) .panel-note {
    background: linear-gradient(130deg, rgba(28, 63, 148, 0.32), rgba(245, 112, 75, 0.26));
    color: #f1f5ff;
  }

  body:not(.theme-light) .btn-secondary {
    background: rgba(24, 35, 61, 0.92);
    color: #d4defc;
    border-color: rgba(115, 138, 193, 0.45);
  }


  body:not(.theme-light) .list-check li::before {
    background: rgba(28, 63, 148, 0.32);
    color: #e6ecff;
  }

  body:not(.theme-light) .accordion details[open] summary {
    background: rgba(28, 63, 148, 0.24);
  }

  body:not(.theme-light) .final-cta {
    background: linear-gradient(160deg, rgba(28, 63, 148, 0.28), rgba(245, 112, 75, 0.18));
  }

  body:not(.theme-light) .footer-note {
    background: rgba(24, 35, 61, 0.85);
    color: var(--color-muted);
    border-top-color: rgba(115, 138, 193, 0.28);
  }
}

body.theme-light {
  color-scheme: light;
}

body.theme-dark {
  --color-bg: #0f1729;
  --color-surface: #18233d;
  --color-surface-alt: #1f2d4d;
  --color-text: #f1f5ff;
  --color-muted: #c0cae8;
  --color-border: rgba(115, 138, 193, 0.3);
  --shadow-soft: 0 18px 45px rgba(4, 9, 20, 0.55);
  --shadow-elevated: 0 28px 65px rgba(4, 9, 20, 0.65);
  --gradient-hero: linear-gradient(150deg, #14203a 0%, #111a32 55%, #1c2b4f 100%);
  color-scheme: dark;
  background: var(--color-bg);
  color: var(--color-text);
}

body.theme-dark.page {
  background-image: radial-gradient(circle at top right, rgba(28, 63, 148, 0.32), transparent 55%),
  radial-gradient(circle at 15% 20%, rgba(245, 112, 75, 0.22), transparent 55%);
}

body.theme-dark .topbar {
  background: rgba(15, 23, 41, 0.88);
  border-bottom: 1px solid rgba(115, 138, 193, 0.3);
}

body.theme-dark .brand {
  color: #d4defc;
}

body.theme-dark .topbar__actions {
  color: var(--color-muted);
}

body.theme-dark .btn-ghost,
body.theme-dark .theme-toggle {
  background: rgba(28, 63, 148, 0.18);
  color: #d4defc;
  border-color: rgba(115, 138, 193, 0.45);
}

body.theme-dark .hero h1,
body.theme-dark .section__header h2,
body.theme-dark .price-card h3,
body.theme-dark .card h3,
body.theme-dark .program-step__body h3 {
  color: #e6ecff;
}

body.theme-dark .hero .sublead,
body.theme-dark .hero p.lead,
body.theme-dark .card p,
body.theme-dark .list-check li,
body.theme-dark .accordion__content p,
body.theme-dark .program-step__body p,
body.theme-dark .price-card p,
body.theme-dark .section__header p {
  color: var(--color-muted);
}

body.theme-dark .pillar {
  background: linear-gradient(130deg, rgba(24, 35, 61, 0.95), rgba(28, 63, 148, 0.35));
  border-color: rgba(115, 138, 193, 0.32);
  box-shadow: 0 18px 32px rgba(4, 9, 20, 0.55);
}

body.theme-dark .coach-card {
  background: radial-gradient(circle at top left, rgba(61, 86, 139, 0.35), transparent 55%), rgba(24, 35, 61, 0.9);
  border-color: rgba(115, 138, 193, 0.32);
  box-shadow: 0 10px 24px rgba(4, 9, 20, 0.55);
}

body.theme-dark .coach-card__link {
  color: #d4defc;
}

body.theme-dark .btn,
body.theme-dark .btn-ghost {
  text-align: center;
}

body.theme-dark .section:nth-of-type(odd)::before {
  background: linear-gradient(180deg, rgba(24, 35, 61, 0.7), rgba(24, 35, 61, 0));
}

body.theme-dark .card,
body.theme-dark .price-card,
body.theme-dark .accordion,
body.theme-dark .program-step {
  background: rgba(24, 35, 61, 0.92);
  border-color: rgba(115, 138, 193, 0.28);
}

body.theme-dark .panel-note {
  background: linear-gradient(130deg, rgba(28, 63, 148, 0.32), rgba(245, 112, 75, 0.26));
  color: #f1f5ff;
}

body.theme-dark .btn-secondary {
  background: rgba(24, 35, 61, 0.92);
  color: #d4defc;
  border-color: rgba(115, 138, 193, 0.45);
}


body.theme-dark .list-check li::before {
  background: rgba(28, 63, 148, 0.32);
  color: #e6ecff;
}

body.theme-dark .accordion details[open] summary {
  background: rgba(28, 63, 148, 0.24);
}

body.theme-dark .final-cta {
  background: linear-gradient(160deg, rgba(28, 63, 148, 0.28), rgba(245, 112, 75, 0.18));
}

body.theme-dark .footer-note {
  background: rgba(24, 35, 61, 0.85);
  color: var(--color-muted);
  border-top-color: rgba(115, 138, 193, 0.28);
}
