/* ============================================================
   TOKENS — extracted and used only
   ============================================================ */
:root {
  --bg-page: #FFFFFF;
  --bg-warm: #F6F8FB;
  --bg-surface: #FFFFFF;
  --bg-muted: #F1F5FA;
  --text-primary: #13294D;
  --text-secondary: #334155;
  --text-muted: #64748B;
  --text-hint: #64748B;
  --text-on-btn: #1A3A6B;
  --text-inverse: #ffffff;
  --border-default: #E3E8EF;
  --border-subtle: #F1F5FA;
  --brand-primary: #2C6FC2;
  --brand-primary-dark: #1A3A6B;
  --font-heading: "Be Vietnam Pro", system-ui, sans-serif;
  --font-body: "Lexend", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;
  --layout-content: 1280px;
  --layout-header-height: 64px;
  --button-height-md: 2.5rem;
  --button-height-lg: 3rem;
  --button-radius: 9999px;
  --gradient-cta: linear-gradient(135deg, #F5D98A 0%, #D4A84B 45%, #B8862C 70%, #E8C56B 100%);
  --shadow-accent: 0 10px 15px -3px rgba(212, 168, 75, 0.28), 0 4px 6px -4px rgba(184, 134, 44, 0.24);
  --roadmap-before-bg: rgba(239, 68, 68, 0.06);
  --roadmap-before-border: rgba(239, 68, 68, 0.18);
  --roadmap-after-bg: rgba(23, 207, 84, 0.06);
  --roadmap-after-border: rgba(23, 207, 84, 0.18);
}

/* ============================================================
   LANDING PAGE STYLES
   ============================================================ */
.landing-page {
  overflow-x: clip;
}

@media (max-width: 768px) {
  .landing-page button,
  .landing-page .btn-primary,
  .landing-page .btn-cta,
  .landing-page .btn-cta-gold {
    min-height: 44px;
  }
}

.lp-sticky-cta {
  padding-bottom: calc(var(--space-3) + env(safe-area-inset-bottom, 0px));
}

.landing-page *,
.landing-page *::before,
.landing-page *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.landing-page img {
  max-width: 100%;
  height: auto;
  display: block;
}

.landing-page__container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 1.5rem);
}

.landing-page__container--narrow {
  max-width: 740px;
}

.landing-page__section {
  padding-block: clamp(3.5rem, 8vw, 6rem);
}

.landing-page .lp-section--light {
  background: var(--bg-page);
  color: var(--text-primary);
}

.landing-page .lp-section--warm {
  background: var(--bg-warm);
  color: var(--text-primary);
}

.landing-page .lp-section--dark {
  background: linear-gradient(160deg, #0B1A33 0%, #1A3A6B 50%, #13294D 100%);
  color: #ffffff;
}

.landing-page .lp-section--has-deco {
  position: relative;
  overflow: hidden;
}

.landing-page .lp-deco {
  pointer-events: none;
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.landing-page .lp-deco__grid {
  position: absolute;
  inset: 0;
  opacity: 0.6;
  background-image: linear-gradient(rgba(44, 111, 194, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(44, 111, 194, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.landing-page .lp-deco__blob {
  position: absolute;
  border-radius: 50%;
}

.landing-page .lp-deco__blob--top-right {
  top: -10rem;
  right: -6rem;
  width: 26rem;
  height: 26rem;
  background: radial-gradient(circle, rgba(44, 111, 194, 0.10) 0%, transparent 70%);
}

.landing-page .lp-deco__blob--bottom-left {
  bottom: -9rem;
  left: -6rem;
  width: 21rem;
  height: 21rem;
  background: radial-gradient(circle, rgba(44, 111, 194, 0.15) 0%, transparent 60%);
}

.landing-page .lp-deco__blob--gold {
  background: radial-gradient(circle, rgba(212, 168, 75, 0.10) 0%, transparent 70%);
}

.landing-page .section__header {
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.landing-page .section__header--centered {
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
}

.landing-page .section__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.15;
  font-weight: 800;
  color: var(--text-primary);
}

.landing-page .section__title--light {
  color: #ffffff;
}

.landing-page .section__subtitle {
  margin-top: 0.875rem;
  font-family: var(--font-body);
  color: var(--text-secondary);
  line-height: 1.65;
}

.landing-page .section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid;
  padding: 0.375rem 1rem;
  font-size: 0.6875rem;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.landing-page .section__eyebrow--blue {
  color: var(--brand-primary);
  background: rgba(44, 111, 194, 0.08);
  border-color: rgba(44, 111, 194, 0.18);
}

.landing-page .section__eyebrow--gold {
  color: #E8C56B;
  background: rgba(212, 168, 75, 0.15);
  border-color: rgba(212, 168, 75, 0.30);
}

.landing-page .eyebrow__dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

@keyframes lp-eyebrow-ping {
  0% { transform: scale(1); opacity: 0.3; }
  100% { transform: scale(2.2); opacity: 0; }
}

.landing-page .eyebrow__dot--pulse {
  position: relative;
}

.landing-page .eyebrow__dot--pulse::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: currentColor;
  animation: lp-eyebrow-ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.landing-page .hero__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
  position: relative;
  max-width: 820px;
  margin-inline: auto;
}

.landing-page .hero__content {
  text-align: center;
}

.landing-page .hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.landing-page .hero__title-accent {
  background-image: linear-gradient(135deg, #2C6FC2 0%, #1A3A6B 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.landing-page .hero__description {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 540px;
  margin-inline: auto;
}

.landing-page .hero__trust {
  margin-top: 0.625rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.8);
  padding: 0.625rem 1rem;
  margin-inline: auto;
}

.landing-page .hero__title + .hero__trust {
  margin-top: 1.5rem;
}

.landing-page .trust__avatars { display: flex; }
.landing-page .trust__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: var(--bg-muted);
}
.landing-page .trust__avatar + .trust__avatar { margin-left: -8px; }
.landing-page .trust__check { color: #17cf54; font-weight: 700; }
.landing-page .trust__text { font-family: var(--font-body); font-size: 0.8125rem; color: var(--text-secondary); }

.landing-page .hero__cta-group {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.landing-page .hero__cta-group--centered { justify-content: center; }

.landing-page .card-grid { display: grid; gap: 1.25rem; }
.landing-page .card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.landing-page .card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.landing-page .card-grid--pricing { max-width: 960px; margin-inline: auto; gap: 1.5rem; }

.landing-page .card {
  border-radius: 20px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  position: relative;
  transition: transform 200ms ease;
}

@media (hover: hover) {
  .landing-page .card:hover { transform: translateY(-4px); }
}

.landing-page .card--glass {
  background: rgba(255, 255, 255, 0.70);
  border: 1px solid rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px) saturate(1.8);
  box-shadow: 0 4px 16px rgba(19, 41, 77, 0.06), 0 1px 4px rgba(19, 41, 77, 0.04);
}

.landing-page .card--highlight {
  background: linear-gradient(135deg, #1A3A6B 0%, #2C6FC2 100%);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 8px 32px rgba(26, 58, 107, 0.35), 0 2px 8px rgba(44, 111, 194, 0.20);
}

.landing-page .card--dark-stat {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(12px);
}

.landing-page .card__title { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--text-primary); line-height: 1.3; }
.landing-page .card__title--light { color: #ffffff; }
.landing-page .card__body { font-family: var(--font-body); font-size: 0.875rem; line-height: 1.65; color: var(--text-secondary); }
.landing-page .card__body--light { color: rgba(255, 255, 255, 0.75); }
.landing-page .card__body--muted { color: rgba(255, 255, 255, 0.65); }

.landing-page .card__icon-wrap {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}
.landing-page .card__icon-wrap--blue { background: rgba(44,111,194,0.10); }
.landing-page .card__icon-wrap--gold { background: rgba(212,168,75,0.10); }
.landing-page .card__icon-wrap--green { background: rgba(23,207,84,0.10); }

.landing-page .card__step-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  background-image: linear-gradient(135deg, #2C6FC2 0%, #1A3A6B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.landing-page .card__step-number--gold {
  background-image: linear-gradient(135deg, #E8C56B 0%, #D4A84B 100%);
}

.landing-page .card__badge-top {
  position: absolute;
  top: 0;
  right: 1.25rem;
  border-radius: 0 0 8px 8px;
  padding: 0.25rem 0.75rem;
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.landing-page .card__badge-top--gold {
  background: linear-gradient(135deg, #E8C56B 0%, #D4A84B 100%);
  color: #1A3A6B;
}

.landing-page .split-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4rem;
  align-items: center;
}

.landing-page .instructor__photo-card {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: 0 8px 32px rgba(19, 41, 77, 0.12), 0 2px 8px rgba(19, 41, 77, 0.06);
}

.landing-page .instructor__photo { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.landing-page .instructor__bio { font-family: var(--font-body); font-size: 0.9375rem; line-height: 1.7; color: var(--text-secondary); margin-bottom: 1rem; }
.landing-page .instructor__achievements { display: flex; flex-direction: column; gap: 0.625rem; margin-bottom: 1.5rem; }
.landing-page .achievement-chip { display: flex; align-items: center; gap: 0.625rem; padding: 0.625rem 1rem; background: rgba(44,111,194,0.06); border: 1px solid rgba(44,111,194,0.12); border-radius: 10px; font-family: var(--font-body); font-size: 0.875rem; color: var(--text-primary); }

.landing-page .transform-table {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(19, 41, 77, 0.08), 0 1px 4px rgba(19, 41, 77, 0.04);
}

.landing-page .transform-table__header, .landing-page .transform-table__row { display: grid; grid-template-columns: 1fr 1fr; }
.landing-page .transform-table__col { padding: 1rem 1.75rem; font-family: var(--font-heading); font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.landing-page .transform-table__col--before { background: #F4F0EA; color: var(--text-secondary); border-right: 2px solid var(--bg-page); }
.landing-page .transform-table__col--after { background: linear-gradient(135deg, #1A3A6B 0%, #2C6FC2 100%); color: #ffffff; }
.landing-page .transform-table__row + .transform-table__row { border-top: 1px solid var(--border-subtle); }
.landing-page .transform-table__cell { padding: 1.25rem 1.75rem; }
.landing-page .transform-table__cell--before { background: #FDFAF6; border-right: 2px solid var(--bg-page); }
.landing-page .transform-table__cell--after { background: var(--bg-surface); }
.landing-page .transform-cell__label { font-family: var(--font-body); font-size: 0.8125rem; font-weight: 600; margin-bottom: 0.375rem; }
.landing-page .transform-table__cell--before .transform-cell__label { color: #8B7355; }
.landing-page .transform-table__cell--after .transform-cell__label { color: var(--brand-primary); }
.landing-page .transform-cell__body { font-family: var(--font-body); font-size: 0.875rem; line-height: 1.65; color: var(--text-secondary); }

.landing-page .transform-mobile { display: none; flex-direction: column; gap: 1.25rem; }
.landing-page .transform-pair { border-radius: 16px; overflow: hidden; box-shadow: 0 2px 12px rgba(19, 41, 77, 0.06); }
.landing-page .transform-pair__before { padding: 1rem 1.25rem; background: #FDFAF6; }
.landing-page .transform-pair__after { padding: 1rem 1.25rem; background: linear-gradient(135deg, rgba(44,111,194,0.04) 0%, rgba(255,255,255,1) 100%); border-top: 2px solid var(--bg-page); }

.landing-page .guarantee-card {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: rgba(255,255,255,0.70);
  border: 1px solid rgba(255,255,255,0.85);
  backdrop-filter: blur(24px) saturate(1.8);
  border-radius: 20px;
  padding: 2rem 2.5rem;
}

.landing-page .guarantee-card__badge { font-size: 2.5rem; line-height: 1; }
.landing-page .guarantee-card__title { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.625rem; }
.landing-page .guarantee-card__body { font-family: var(--font-body); font-size: 0.9375rem; line-height: 1.65; color: var(--text-secondary); margin-bottom: 0.75rem; }

.landing-page .faq__list { display: flex; flex-direction: column; gap: 0.5rem; }
.landing-page .faq-item { background: rgba(255,255,255,0.70); border: 1px solid rgba(19, 41, 77, 0.08); border-radius: 14px; overflow: hidden; }
.landing-page .faq-item.is-open { border-color: rgba(44,111,194,0.18); background: rgba(255,255,255,0.90); }
.landing-page .faq-item__trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.25rem 1.5rem; border: none; background: none; text-align: left; cursor: pointer; font-family: var(--font-heading); font-size: 0.9375rem; color: var(--text-primary); }
.landing-page .faq-item__icon { width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; color: var(--brand-primary); font-size: 1.25rem; transition: transform 250ms ease; }
.landing-page .faq-item.is-open .faq-item__icon { transform: rotate(45deg); }
.landing-page .faq-item__answer { padding: 0 1.5rem 1.25rem; font-family: var(--font-body); font-size: 0.9375rem; line-height: 1.7; color: var(--text-secondary); }

.landing-page .glass-panel {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.70);
  backdrop-filter: blur(24px) saturate(1.8);
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 5rem);
}

.landing-page .glass-panel__content {
  position: relative;
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
}

.landing-page .final-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
  margin-top: 0.75rem;
}

.landing-page .final-cta__description {
  margin-top: 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.landing-page .btn-primary,
.landing-page .btn-cta-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

.landing-page .btn-primary {
  background: var(--gradient-cta);
  color: var(--text-on-btn);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  padding: 0.875rem 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow-accent);
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.landing-page .btn-cta-gold {
  background: linear-gradient(135deg, #E8C56B 0%, #D4A84B 100%);
  color: #1A3A6B;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  padding: 0.875rem 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(212,168,75,0.35);
  transition: transform 150ms ease, box-shadow 150ms ease;
}

@keyframes lp-cta-wiggle {
  0%, 40%, 100% { transform: translateY(0) rotate(0deg); }
  43% { transform: translateY(-3px) rotate(-2deg); }
  46% { transform: translateY(-3px) rotate(2deg); }
  49% { transform: translateY(-3px) rotate(-1.5deg); }
  52% { transform: translateY(-3px) rotate(1.5deg); }
  55% { transform: translateY(0) rotate(0deg); }
}

.landing-page .btn-cta {
  animation: lp-cta-wiggle 4s ease-in-out 3s infinite;
}

@media (hover: hover) {
  .landing-page .btn-primary:hover {
    transform: translateY(-2px);
  }

  .landing-page .btn-cta:hover {
    animation: none;
    transform: translateY(-2px);
  }

  .landing-page .btn-cta-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212,168,75,0.45);
  }
}

.landing-page .pricing-card { display: flex; flex-direction: column; gap: 1.25rem; }
.landing-page .pricing-card__header { padding-bottom: 1.25rem; border-bottom: 1px solid rgba(19,41,77,0.08); }
.landing-page .card--highlight .pricing-card__header { border-bottom-color: rgba(255,255,255,0.12); }
.landing-page .pricing-card__name { font-family: var(--font-heading); font-size: 1.125rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.75rem; }
.landing-page .pricing-card__name--light { color: #ffffff; }
.landing-page .pricing-card__price-wrap { display: flex; align-items: baseline; gap: 0.5rem; flex-wrap: wrap; }
.landing-page .pricing-card__original { font-family: var(--font-body); font-size: 0.9375rem; color: var(--text-hint); text-decoration: line-through; }
.landing-page .pricing-card__original--light { color: rgba(255,255,255,0.45); }
.landing-page .pricing-card__sale { font-family: var(--font-heading); font-size: 1.75rem; font-weight: 800; color: var(--brand-primary); }
.landing-page .pricing-card__sale--gold { background-image: linear-gradient(135deg, #E8C56B 0%, #D4A84B 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.landing-page .pricing-card__features { list-style: none; display: flex; flex-direction: column; gap: 0.625rem; flex: 1; }
.landing-page .pricing-card__feature { display: flex; align-items: flex-start; gap: 0.5rem; font-family: var(--font-body); font-size: 0.875rem; line-height: 1.5; color: var(--text-secondary); }
.landing-page .pricing-card__features--light .pricing-card__feature { color: rgba(255,255,255,0.75); }
.landing-page .pricing-card__check { color: var(--brand-primary); font-weight: 700; margin-top: 0.1rem; line-height: 1.4; }
.landing-page .pricing-card__feature-text { flex: 1; min-width: 0; }
.landing-page .pricing-card__feature strong { font-weight: 700; }
.landing-page .card--glass .pricing-card__check { color: #B42318; }
.landing-page .pricing-card__check--gold { color: #D4A84B; }
.landing-page .pricing-card__cta { width: 100%; margin-top: auto; }

.landing-page .animate-on-scroll { opacity: 0; transform: translateY(24px); transition: opacity 500ms ease, transform 500ms ease; }
.landing-page .animate-on-scroll.is-visible { opacity: 1; transform: translateY(0); }

.lp-sticky-cta {
  display: none;
  position: fixed;
  left: 0.75rem;
  right: 0.75rem;
  bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
  z-index: 800;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.32));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.68),
    inset 0 -1px 0 rgba(19, 41, 77, 0.05),
    0 18px 44px rgba(19, 41, 77, 0.18),
    0 4px 14px rgba(19, 41, 77, 0.08);
  padding: 0.625rem;
  -webkit-backdrop-filter: blur(24px) saturate(1.65);
  backdrop-filter: blur(24px) saturate(1.65);
}

@media (max-width: 768px) {
  .lp-sticky-cta.is-visible {
    display: flex;
  }
}

.lp-sticky-cta__inner {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  width: 100%;
  max-width: 420px;
  margin-inline: auto;
}

.lp-sticky-cta__price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.625rem 0.75rem;
  border-radius: 12px;
  background: rgba(44, 111, 194, 0.08);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  color: var(--brand-primary-dark);
  white-space: nowrap;
}

.lp-sticky-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-height: 44px;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  background: var(--gradient-cta);
  box-shadow: var(--shadow-accent);
  color: var(--text-on-btn);
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .landing-page .card-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .landing-page .split-layout { grid-template-columns: 1fr 360px; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .landing-page .split-layout {
    grid-template-columns: 1fr;
  }

  .landing-page .hero__cta-group {
    flex-direction: column;
  }

  .landing-page .hero__cta-group .btn-primary {
    width: 100%;
  }

  .landing-page .card-grid--2,
  .landing-page .card-grid--3 {
    grid-template-columns: 1fr;
  }

  .landing-page .transform-table {
    display: none;
  }

  .landing-page .transform-mobile {
    display: flex;
  }
}

@media (max-width: 480px) {
  .landing-page .stat-grid { gap: 0.5rem; }
  .landing-page .guarantee-card { flex-direction: column; padding: 1.5rem; gap: 1rem; }
}

@media (max-width: 380px) {
  .landing-page .btn-primary,
  .landing-page .btn-cta-gold {
    width: 100%;
  }

  .lp-sticky-cta {
    left: 0.5rem;
    right: 0.5rem;
    bottom: calc(0.5rem + env(safe-area-inset-bottom, 0px));
    padding: 0.5rem;
  }

  .lp-sticky-cta__inner {
    gap: 0.5rem;
  }

  .lp-sticky-cta__price {
    font-size: 0.875rem;
    padding-inline: 0.625rem;
  }

  .lp-sticky-cta__btn {
    font-size: 0.875rem;
    padding-inline: 0.75rem;
  }
}
