:root {
  --ink: #17201d;
  --muted: #5b6863;
  --paper: #fbfaf7;
  --white: #ffffff;
  --teal: #0d6f65;
  --teal-dark: #083f3d;
  --coral: #ce5b45;
  --gold: #c49a41;
  --mist: #e8f1ef;
  --rose: #f8e8e2;
  --line: rgba(23, 32, 29, 0.13);
  --shadow: 0 24px 80px rgba(17, 32, 29, 0.18);
  --radius: 8px;
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
}

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

.topbar {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(251, 250, 247, 0.88);
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(260px, 1fr) auto minmax(120px, 1fr);
  left: 0;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 54px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-size: 0.96rem;
  font-weight: 750;
  gap: 10px;
  grid-column: 1;
  min-width: max-content;
}

.brand img {
  display: block;
  height: auto;
  width: clamp(150px, 12vw, 190px);
}

.topbar-actions {
  align-items: center;
  display: flex;
  gap: 20px;
  grid-column: 3;
  justify-content: flex-end;
}

nav {
  display: flex;
  gap: clamp(14px, 3vw, 32px);
  grid-column: 2;
  justify-self: center;
}

nav a {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-cta {
  background: var(--ink);
  border-radius: 999px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  padding: 12px 20px;
  text-transform: uppercase;
}

.hero {
  background-image:
    linear-gradient(90deg, rgba(7, 31, 29, 0.9) 0%, rgba(7, 31, 29, 0.75) 34%, rgba(7, 31, 29, 0.18) 72%),
    url("assets/hero-vitalnost-mht.png");
  background-position: center;
  background-size: cover;
  color: var(--white);
  min-height: min(92vh, 980px);
  overflow: hidden;
  padding: 130px clamp(20px, 5vw, 72px) 64px;
  position: relative;
}

.hero::after {
  background: linear-gradient(0deg, var(--paper), rgba(251, 250, 247, 0));
  bottom: 0;
  content: "";
  height: 90px;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
}

.hero-content {
  max-width: 780px;
  position: relative;
  width: 100%;
  z-index: 1;
}

.eyebrow {
  color: #f7cfc4;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--coral);
}

.eyebrow.light {
  color: #f6dba4;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-family: inherit;
  font-size: clamp(2.6rem, 4.5vw, 4.8rem);
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 0.98;
  margin-bottom: 18px;
  max-width: 880px;
  overflow-wrap: anywhere;
}

h1 span {
  display: inline;
}

h2 {
  font-family: inherit;
  font-size: clamp(2.1rem, 4.7vw, 4.6rem);
  font-weight: 850;
  line-height: 1.02;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.08rem;
  line-height: 1.25;
  margin-bottom: 10px;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.02rem, 1.55vw, 1.22rem);
  line-height: 1.62;
  max-width: 700px;
  overflow-wrap: break-word;
}

.hero-offer {
  color: #f6dba4;
  font-size: clamp(1.2rem, 2vw, 1.58rem);
  font-weight: 850;
  line-height: 1.35;
  margin-bottom: 16px;
  max-width: 680px;
}

.hero-value {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 22px;
}

.hero-value span {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: rgba(255, 255, 255, 0.78);
  display: inline-flex;
  font-size: 0.86rem;
  font-weight: 800;
  gap: 8px;
  padding: 0;
  text-transform: uppercase;
}

.hero-value span::before {
  background: rgba(246, 219, 164, 0.82);
  border-radius: 999px;
  content: "";
  display: inline-block;
  height: 7px;
  width: 7px;
}

.hero-value .hero-price {
  align-items: center;
  background: #f6dba4;
  border-radius: 999px;
  color: var(--teal-dark);
  display: inline-flex;
  font-size: 0.98rem;
  font-weight: 900;
  gap: 10px;
  padding: 7px 14px;
  text-transform: none;
}

.hero-value .hero-price::before {
  display: none;
}

.hero-value .hero-price s {
  color: rgba(8, 63, 61, 0.55);
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
}

.hero-value .hero-price strong {
  color: var(--teal-dark);
  font-size: 1.05rem;
  font-weight: 900;
}

.hero-value .hero-price em {
  background: var(--coral);
  border-radius: 999px;
  color: var(--white);
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.06em;
  padding: 4px 9px;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 34px 0 28px;
}

.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.96rem;
  font-weight: 850;
  justify-content: center;
  min-height: 54px;
  padding: 16px 24px;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

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

.button.primary {
  background: var(--coral);
  box-shadow: 0 22px 46px rgba(206, 91, 69, 0.44);
  color: var(--white);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.button.primary:hover {
  background: #b84d39;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.54);
  color: var(--white);
}

.hero-actions .button {
  font-size: 1rem;
  min-height: 64px;
  min-width: min(100%, 270px);
  padding-left: 30px;
  padding-right: 30px;
}

.button.full {
  width: 100%;
}

.hero-proof {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 760px;
}

.hero-proof article {
  background: transparent;
  border: 0;
  border-left: 2px solid rgba(246, 219, 164, 0.48);
  border-radius: 0;
  padding: 4px 0 4px 14px;
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  color: var(--white);
  font-size: 0.92rem;
  margin-bottom: 6px;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
  line-height: 1.35;
}

.section {
  padding: clamp(72px, 10vw, 132px) clamp(20px, 5vw, 72px);
}

.section-inner {
  margin: 0 auto;
  max-width: 1180px;
  width: 100%;
}

.two-column,
.authority-layout,
.offer-layout,
.faq-layout,
.curriculum-header {
  align-items: start;
  display: grid;
  gap: clamp(28px, 5vw, 72px);
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
}

.offer-intro {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  margin-bottom: clamp(36px, 5vw, 56px);
  max-width: 920px;
  padding-bottom: clamp(28px, 4vw, 42px);
}

.offer-intro h2 {
  font-size: clamp(2.1rem, 4.2vw, 4rem);
  line-height: 1.02;
  margin-bottom: 18px;
}

.offer-layout {
  align-items: start;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
}

.offer-bullets {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}

.offer-bullets li {
  border-left: 2px solid rgba(246, 219, 164, 0.55);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  padding: 4px 0 4px 16px;
}

.offer-bullets strong {
  color: #f6dba4;
  font-weight: 850;
  margin-right: 4px;
}

.faq-layout {
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 1fr);
}

.faq-layout > div:first-child {
  position: sticky;
  top: 100px;
}

.two-column > *,
.authority-layout > *,
.offer-layout > *,
.faq-layout > *,
.curriculum-header > * {
  min-width: 0;
}

.empathy {
  background: var(--paper);
}

.empathy-panel {
  border-left: 5px solid var(--coral);
  padding-left: clamp(22px, 4vw, 42px);
}

.empathy-panel p:first-child,
.empathy-panel p:nth-child(2) {
  font-family: inherit;
  font-size: clamp(1.45rem, 2.7vw, 2.28rem);
  font-weight: 800;
  line-height: 1.16;
}

.body-copy,
.section-heading p,
.curriculum-header p,
.offer-layout > div > p,
.faq-list p,
.footer-cta p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.72;
}

.benefits {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbfa 100%);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.section-heading {
  max-width: min(780px, 100%);
}

.benefit-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 42px;
  min-width: 0;
}

.benefit-grid > article {
  grid-column: span 2;
}

.benefit-grid > article:nth-child(4) {
  grid-column: 2 / span 2;
}

.benefit-grid > article:nth-child(5) {
  grid-column: 4 / span 2;
}

.benefit-grid article,
.module-list article,
.authority-card,
.price-box,
.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 38px rgba(23, 32, 29, 0.06);
}

.benefit-grid article {
  min-height: 272px;
  min-width: 0;
  padding: 24px 22px;
  position: relative;
  transition:
    border-color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.benefit-grid article:hover {
  border-color: rgba(206, 91, 69, 0.36);
  box-shadow: 0 18px 46px rgba(23, 32, 29, 0.1);
  transform: translateY(-3px);
}

.benefit-grid article p {
  color: var(--muted);
  line-height: 1.58;
  margin-bottom: 0;
}

.benefit-grid article h3 {
  font-size: 1.12rem;
  margin-bottom: 12px;
}

.benefit-label {
  color: var(--coral) !important;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  margin-bottom: 10px !important;
  text-transform: uppercase;
}

.icon {
  align-items: center;
  background: var(--mist);
  border-radius: 999px;
  color: var(--teal-dark);
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 900;
  height: 42px;
  justify-content: center;
  margin-bottom: 24px;
  width: 42px;
}

.curriculum,
.offer {
  background: var(--teal-dark);
  color: var(--white);
}

.curriculum {
  padding-bottom: clamp(58px, 7vw, 86px);
  padding-top: clamp(58px, 7vw, 86px);
}

.curriculum-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  display: block;
  max-width: 960px;
  padding-bottom: 30px;
}

.curriculum-header p,
.offer-layout > div > p {
  color: rgba(255, 255, 255, 0.74);
}

.curriculum-copy {
  border-left: 4px solid #f6dba4;
  padding-left: clamp(20px, 3vw, 34px);
}

.curriculum-copy .eyebrow {
  margin-bottom: 14px;
}

.curriculum-header h2 {
  font-size: clamp(2.35rem, 4.35vw, 4.55rem);
  line-height: 0.98;
  margin-bottom: 18px;
  max-width: 880px;
}

.curriculum-copy > p:not(.eyebrow) {
  font-size: clamp(1.05rem, 1.6vw, 1.34rem);
  line-height: 1.55;
  margin-bottom: 0;
  max-width: 760px;
}

.module-list {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  margin-top: 28px;
  min-width: 0;
}

.module-list > article {
  grid-column: span 3;
}

.module-list > article:nth-child(5) {
  grid-column: 2 / span 3;
}

.module-list > article:nth-child(6),
.module-list > article:nth-child(7) {
  grid-column: span 3;
}

.module-list article {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: none;
  min-height: 176px;
  min-width: 0;
  overflow-wrap: anywhere;
  padding: 18px;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.module-list article:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(246, 219, 164, 0.68);
  box-shadow:
    0 18px 46px rgba(2, 19, 18, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
}

.module-list span {
  color: #f6dba4;
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.module-list article p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.58;
  margin-bottom: 0;
}

.authority {
  background:
    radial-gradient(circle at 12% 18%, rgba(13, 111, 101, 0.14), transparent 24%),
    var(--paper);
}

.authority-photo {
  aspect-ratio: 4 / 5;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 0;
  overflow: hidden;
}

.authority-photo img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.authority-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.authority-badges span {
  background: var(--mist);
  border-radius: 999px;
  color: var(--teal-dark);
  font-size: 0.86rem;
  font-weight: 800;
  padding: 10px 14px;
}

.instant-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  margin-top: 30px;
  padding: 22px;
}

.instant-box p {
  color: #f6dba4;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.instant-box div {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.instant-box span {
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  display: flex;
  font-size: 0.9rem;
  font-weight: 800;
  justify-content: center;
  line-height: 1.2;
  min-height: 72px;
  padding: 10px 12px;
  text-align: center;
}

.offer {
  background:
    linear-gradient(135deg, rgba(13, 111, 101, 0.92), rgba(8, 63, 61, 1)),
    var(--teal-dark);
}

.price-box {
  color: var(--ink);
  padding: clamp(26px, 4vw, 42px);
}

.price-box-head {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  margin-bottom: 4px;
}

.price-label {
  color: var(--coral);
  font-size: 0.83rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin: 0;
  text-transform: uppercase;
}

.promo-badge {
  background: var(--coral);
  border-radius: 999px;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 5px 11px;
  text-transform: uppercase;
}

.price-box ul {
  display: grid;
  gap: 13px;
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}

.price-box li {
  align-items: center;
  display: flex;
  gap: 12px;
  line-height: 1.4;
}

.price-box li::before {
  background: var(--teal);
  border-radius: 999px;
  color: var(--white);
  content: "✓";
  display: inline-flex;
  flex: 0 0 24px;
  font-size: 0.82rem;
  font-weight: 900;
  height: 24px;
  justify-content: center;
  width: 24px;
}

.price {
  align-items: baseline;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  font-family: inherit;
  font-weight: 850;
  gap: 14px;
  line-height: 1;
  margin: 20px 0 14px;
  padding: 24px 0 22px;
}

.price-old {
  color: var(--muted);
  font-size: clamp(1.2rem, 2.4vw, 1.85rem);
  font-weight: 750;
  text-decoration: line-through;
  text-decoration-color: var(--coral);
  text-decoration-thickness: 2px;
}

.price-new {
  color: var(--ink);
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.promo-note {
  align-items: center;
  background: rgba(206, 91, 69, 0.08);
  border-radius: 8px;
  color: var(--coral);
  display: flex;
  font-size: 0.86rem;
  font-weight: 800;
  gap: 8px;
  justify-content: center;
  line-height: 1.4;
  margin: 0 0 18px;
  padding: 10px 14px;
  text-align: center;
}

.promo-note::before {
  content: "★";
  font-size: 0.9rem;
}

.microcopy {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 14px 0 0;
  text-align: center;
}

.microcopy strong {
  color: var(--teal-dark);
  font-weight: 850;
}

.offer-note {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
  margin: 20px 0 0;
  padding-top: 16px;
}

.faq {
  background: #ffffff;
}

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

.faq-list details {
  padding: 22px 24px;
}

.faq-group {
  display: grid;
  gap: 12px;
}

.faq-category {
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin: 0 0 2px;
  text-transform: uppercase;
}

.faq-list summary {
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 850;
  list-style: none;
  padding-right: 34px;
  position: relative;
}

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

.faq-list summary::after {
  color: var(--coral);
  content: "+";
  font-size: 1.5rem;
  position: absolute;
  right: 0;
  top: -4px;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin: 16px 0 0;
}

.medical-note {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 42px auto 0;
  max-width: 820px;
  padding: 20px 20px 0;
  text-align: center;
}

.sticky-cta {
  align-items: center;
  background: var(--coral);
  border-radius: 999px;
  bottom: 18px;
  box-shadow: var(--shadow);
  color: var(--white);
  display: none;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0.03em;
  left: 18px;
  opacity: 0;
  padding: 14px 20px;
  pointer-events: none;
  position: fixed;
  right: 18px;
  text-align: center;
  text-transform: uppercase;
  transform: translateY(18px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
  z-index: 18;
}

.site-footer {
  background:
    linear-gradient(135deg, rgba(8, 63, 61, 0.96), rgba(16, 34, 31, 1)),
    var(--teal-dark);
  color: var(--white);
  overflow: hidden;
  padding: clamp(64px, 9vw, 110px) clamp(20px, 5vw, 72px) 34px;
  position: relative;
}

.site-footer::before {
  background: linear-gradient(90deg, rgba(246, 219, 164, 0.52), rgba(206, 91, 69, 0.34), transparent);
  content: "";
  height: 1px;
  left: clamp(20px, 5vw, 72px);
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  top: 0;
}

.footer-cta {
  align-items: center;
  display: grid;
  gap: clamp(28px, 5vw, 68px);
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.62fr);
}

.footer-cta > *,
.footer-bottom > * {
  min-width: 0;
}

.footer-cta h2 {
  font-size: clamp(2.3rem, 5vw, 5rem);
  line-height: 0.98;
  margin-bottom: 20px;
  max-width: 780px;
  overflow-wrap: anywhere;
}

.footer-cta p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
  max-width: 640px;
}

.footer-offer {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(2, 19, 18, 0.28);
  padding: clamp(24px, 3.5vw, 36px);
}

.footer-promo-badge {
  background: var(--coral);
  border-radius: 999px;
  color: var(--white);
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  padding: 6px 12px;
  text-transform: uppercase;
}

.footer-price-row {
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 14px;
}

.footer-price-old {
  color: rgba(255, 255, 255, 0.55);
  font-size: clamp(1.2rem, 2.2vw, 1.85rem);
  font-weight: 750;
  text-decoration: line-through;
  text-decoration-color: var(--coral);
  text-decoration-thickness: 2px;
}

.footer-price {
  color: #f6dba4;
  font-size: clamp(2.2rem, 4.6vw, 4.2rem);
  font-weight: 900;
  line-height: 1;
}

.footer-offer p {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 750;
  margin-bottom: 24px;
  overflow-wrap: anywhere;
}

.footer-bottom {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(160px, 0.7fr) minmax(0, 1fr) minmax(240px, 0.9fr);
  margin-top: clamp(48px, 7vw, 84px);
  padding-top: 28px;
}

.footer-brand img {
  display: block;
  height: auto;
  width: clamp(142px, 13vw, 188px);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  justify-content: center;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: #f6dba4;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.84rem;
  line-height: 1.5;
  margin: 0;
  text-align: right;
}

.sticky-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .benefit-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .benefit-grid > article {
    grid-column: span 3;
  }

  .benefit-grid > article:nth-child(4) {
    grid-column: 1 / span 3;
  }

  .benefit-grid > article:nth-child(5) {
    grid-column: 4 / span 3;
  }

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

  .module-list > article {
    grid-column: span 2;
  }

  .module-list > article:nth-child(4) {
    grid-column: 1 / span 2;
  }

  .module-list > article:nth-child(5) {
    grid-column: 3 / span 2;
  }

  .module-list > article:nth-child(6) {
    grid-column: 5 / span 2;
  }

  .module-list > article:nth-child(7) {
    grid-column: 3 / span 2;
  }

  .offer-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .faq-layout {
    grid-template-columns: minmax(0, 0.36fr) minmax(0, 1fr);
  }

  .hero-proof {
    grid-template-columns: 1fr;
    max-width: 520px;
  }
}

@media (max-width: 780px) {
  html {
    scroll-padding-top: 12px;
  }

  .topbar {
    display: none;
  }

  .hero {
    background-image:
      linear-gradient(180deg, rgba(7, 31, 29, 0.92) 0%, rgba(7, 31, 29, 0.84) 58%, rgba(7, 31, 29, 0.56) 100%),
      url("assets/hero-vitalnost-mht.png");
    background-position: 64% center;
    min-height: auto;
    padding-bottom: 64px;
    padding-top: 36px;
  }

  .hero-content,
  .hero-actions,
  .hero-proof {
    max-width: 100%;
    width: 100%;
  }

  h1 {
    font-size: clamp(1.85rem, 7.95vw, 2.15rem);
    font-weight: 850;
    letter-spacing: -0.01em;
    line-height: 1.05;
    margin-bottom: 18px;
    max-width: 100%;
    word-break: normal;
  }

  h1 span {
    display: block;
  }

  .eyebrow {
    font-size: 0.66rem;
    letter-spacing: 0.06em;
    line-height: 1.35;
    margin-bottom: 12px;
  }

  .hero-copy {
    font-size: 0.92rem;
    line-height: 1.5;
    max-width: 100%;
  }

  .hero-offer {
    font-size: 0.98rem;
    font-weight: 800;
    line-height: 1.42;
    margin-bottom: 12px;
    max-width: 100%;
  }

  .hero-value {
    gap: 12px;
    margin-top: 16px;
  }

  .hero-value span {
    font-size: 0.7rem;
    padding: 0;
  }

  .hero-value .hero-price {
    flex-wrap: wrap;
    font-size: 0.86rem;
    gap: 8px;
    padding: 6px 11px;
    row-gap: 6px;
  }

  .hero-value .hero-price s {
    font-size: 0.74rem;
  }

  .hero-value .hero-price strong {
    font-size: 0.94rem;
  }

  .hero-value .hero-price em {
    font-size: 0.6rem;
    padding: 3px 7px;
  }

  .hero-actions .button,
  .button.full {
    max-width: 100%;
    width: 100%;
  }

  .hero-actions {
    gap: 10px;
    margin: 22px 0 22px;
  }

  .hero-actions .button {
    font-size: 0.92rem;
    min-height: 52px;
    padding-left: 22px;
    padding-right: 22px;
  }

  .button {
    min-height: 50px;
    padding: 13px 18px;
    text-align: center;
  }

  .hero-proof {
    gap: 8px;
    grid-template-columns: 1fr;
    margin-top: 6px;
  }

  .hero-proof article {
    padding: 3px 0 3px 12px;
  }

  .hero-proof strong {
    font-size: 0.84rem;
    margin-bottom: 3px;
  }

  .hero-proof span {
    font-size: 0.76rem;
    line-height: 1.32;
  }

  .section {
    max-width: 100vw;
    overflow: hidden;
  }

  .section-inner {
    max-width: 100%;
    width: 100%;
  }

  .two-column,
  .authority-layout,
  .offer-layout,
  .faq-layout,
  .curriculum-header {
    grid-template-columns: 1fr;
  }

  .faq-layout > div:first-child {
    position: static;
    top: auto;
  }

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

  .benefit-grid > article,
  .benefit-grid > article:nth-child(n),
  .module-list > article,
  .module-list > article:nth-child(n) {
    grid-column: auto;
  }

  .benefit-grid article,
  .module-list article {
    min-height: auto;
  }

  .benefit-grid article {
    padding: 22px;
  }

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

  .instant-box span {
    justify-content: center;
    text-align: center;
  }

  .faq-list summary {
    font-size: 1rem;
    line-height: 1.35;
  }

  .empathy-panel {
    padding-left: 22px;
  }

  .empathy-panel p:first-child,
  .empathy-panel p:nth-child(2) {
    font-size: clamp(1.2rem, 5.2vw, 1.48rem);
    line-height: 1.2;
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: clamp(2rem, 9vw, 2.75rem);
  }

  .body-copy,
  .section-heading p,
  .curriculum-header p,
  .offer-layout > div > p,
  .faq-list p,
  .footer-cta p {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .site-footer {
    padding-bottom: 54px;
  }

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

  .footer-cta h2 {
    font-size: clamp(1.9rem, 8vw, 2.28rem);
    line-height: 1.03;
  }

  .footer-offer {
    padding: 24px;
  }

  .footer-offer .button.full {
    max-width: 100%;
    width: 100%;
  }

  .footer-bottom {
    align-items: start;
    grid-template-columns: 1fr;
    text-align: left;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-bottom p {
    text-align: left;
  }

  .sticky-cta {
    display: flex;
  }

  body {
    padding-bottom: 80px;
  }

  html {
    scroll-padding-bottom: 90px;
  }
}

@media (max-width: 420px) {
  .hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .brand img {
    width: 112px;
  }

  .section,
  .site-footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .button {
    padding-left: 18px;
    padding-right: 18px;
  }
}
