:root {
  --navy: #123a73;
  --navy-2: #0e2f5f;
  --accent: #cf6a2a;
  --ink: #0f172a;
  --muted: #475569;
  --bg: #f6f2ea;
  --card: #ffffff;
  --border: rgba(15, 23, 42, 0.12);
  --shadow: 0 16px 40px rgba(2, 6, 23, 0.12);
  --shadow-soft: 0 10px 24px rgba(2, 6, 23, 0.1);
  --radius: 18px;
  --radius-lg: 26px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  padding-top: 62px;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial,
    "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--ink);
  background: #fbf7f0;
}

a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  padding: 84px 0;
}
.section.sm {
  padding: 56px 0;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  width: 100%;
  background: #fbf7f0;
  border-bottom: 1px solid var(--border);
}
.header .bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: auto;
  font-weight: 800;
  letter-spacing: 0.2px;
}
.brand img,
.brand .logo {
  height: 55px;
  width: auto;
  display: block;
  object-fit: contain;
}
.mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  display: grid;
  place-items: center;
  box-shadow: 0 10px 18px rgba(18, 58, 115, 0.22);
  color: #fff;
  font-weight: 900;
}
.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--muted);
  align-items: center;
  justify-content: center;
}
.nav a {
  padding: 8px 10px;
  border-radius: 10px;
}
.nav a:hover {
  background: rgba(18, 58, 115, 0.06);
  color: var(--navy);
}
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 800;
  border: 1px solid rgba(18, 58, 115, 0.2);
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: #fff;
  box-shadow: 0 14px 26px rgba(18, 58, 115, 0.22);
  white-space: nowrap;
  gap: 8px;
}
.cta-icon {
  font-size: 28px;
  font-weight: 900;
  display: inline-block;
  transition: transform 0.2s ease;
  color: #ffc107;
}
.cta:hover .cta-icon {
  transform: translateX(4px);
}
.cta:hover {
  filter: brightness(1.03);
}
.cta:active {
  transform: translateY(1px);
}
.cta.secondary {
  background: #fff;
  color: var(--navy);
  box-shadow: none;
}
.hero {
  padding: 64px 0 30px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}
.pill {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(18, 58, 115, 0.08);
  color: var(--navy);
  border: 1px solid rgba(18, 58, 115, 0.14);
  font-weight: 700;
  font-size: 13px;
}
.pill b {
  color: var(--navy-2);
}
h1 {
  margin: 14px 0 10px;
  font-size: 44px;
  line-height: 1.05;
  letter-spacing: -0.8px;
}
.sub {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  max-width: 58ch;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 22px 0 16px;
  align-items: center;
}
.hero-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 20px;
}
.rating-stars {
  color: #ffc107;
  font-size: 18px;
  letter-spacing: 2px;
  font-weight: 900;
}
.rating-score {
  color: var(--ink);
  font-weight: 800;
  font-size: 16px;
}
.rating-dot {
  color: var(--muted);
  font-size: 12px;
}
.rating-count {
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
}
.price-badge {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  font-weight: 800;
}
.price-badge small {
  color: var(--muted);
  font-weight: 700;
}
.trust {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
}
.trust .chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid var(--border);
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(207, 106, 42, 0.15);
}

.note .icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(207, 106, 42, 0.14);
  display: grid;
  place-items: center;
  color: var(--accent);
  font-weight: 900;
}

.cover {
  max-width: 350px;
  margin: 0 auto;
  border-radius: 22px;
  overflow: hidden;
}
.cover img {
  width: 100%;
  height: auto;
  display: block;
}
.kicker {
  color: var(--navy);
  font-weight: 900;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  font-size: 12px;
}
.title {
  margin: 10px 0 10px;
  font-size: 34px;
  letter-spacing: -0.6px;
  line-height: 1.15;
}
.section > .wrap > h1.title {
  text-align: center;
}
#vsl .title {
  text-align: center;
  position: relative;
  margin-bottom: 40px;
}
#vsl .title::after {
  content: "⬇";
  display: block;
  font-size: 48px;
  color: var(--navy);
  margin-top: 20px;
  font-weight: 900;
  animation: bounce 2s infinite;
  line-height: 1;
}
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
.desc {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 16px;
  max-width: 75ch;
}

.purchase-section {
  text-align: center;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-soft);
}
.purchase-section .price-container {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.purchase-section .price-old {
  font-size: 32px;
  color: var(--muted);
  text-decoration: line-through;
  font-weight: 700;
}
.purchase-section .price-new {
  font-size: 56px;
  color: var(--navy);
  font-weight: 1000;
  letter-spacing: -1px;
}
.scarcity {
  font-size: 16px;
  color: #dc2626;
  font-weight: 800;
  margin: 0 0 20px;
}
.social-proof {
  font-size: 18px;
  color: var(--muted);
  margin: 0 0 32px;
  font-weight: 600;
}
.cta.large {
  font-size: 24px;
  padding: 18px 32px;
  margin-bottom: 0;
  display: inline-flex;
}

.guarantee-section {
  text-align: center;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-soft);
}
.guarantee-icon {
  font-size: 64px;
  color: var(--accent);
  margin-bottom: 20px;
  display: block;
  line-height: 1;
  filter: none;
}
.guarantee-title {
  font-size: 22px;
  font-weight: 900;
  color: var(--ink);
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.guarantee-text {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 22px;
}

.week-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.week-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}
.week-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.week-check {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}
.week-card h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  color: var(--ink);
  line-height: 1.3;
}
.week-list {
  margin: 0;
  padding-left: 20px;
  list-style: none;
}
.week-list li {
  position: relative;
  padding-left: 8px;
  margin-bottom: 10px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
}
.week-list li::before {
  content: "•";
  position: absolute;
  left: -16px;
  color: var(--navy);
  font-weight: 900;
  font-size: 18px;
}

.bonuses-section {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 2px solid var(--border);
}
.bonuses-title {
  text-align: center;
  font-size: 32px;
  font-weight: 900;
  color: var(--ink);
  margin: 0 0 32px;
  letter-spacing: -0.5px;
}
.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.bonus-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-soft);
  text-align: center;
}
.bonus-icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}
.bonus-name {
  font-size: 18px;
  font-weight: 900;
  color: var(--ink);
  margin: 0 0 16px;
}
.bonus-list {
  text-align: left;
  margin: 0 0 20px;
  padding-left: 20px;
  list-style: none;
}
.bonus-list li {
  position: relative;
  padding-left: 8px;
  margin-bottom: 10px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}
.bonus-list li::before {
  content: "•";
  position: absolute;
  left: -16px;
  color: var(--navy);
  font-weight: 900;
}
.bonus-value {
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 16px;
  font-weight: 900;
  color: var(--accent);
}

@media (max-width: 980px) {
  .week-grid {
    grid-template-columns: 1fr;
  }
  .bonuses-grid {
    grid-template-columns: 1fr;
  }
}
.card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
}
.card h3 {
  margin: 10px 0 8px;
  font-size: 16px;
}
.card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: var(--navy);
  font-size: 13px;
}
.badge .bicon {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(18, 58, 115, 0.1);
  border: 1px solid rgba(18, 58, 115, 0.12);
  color: var(--navy);
  font-weight: 900;
}

.video-wrap {
  display: flex;
  justify-content: center;
  margin-top: 22px;
  width: 100%;
}
.video-player {
  width: 100%;
  max-width: 95%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: #0b1020;
  display: block;
  aspect-ratio: 16/9;
  cursor: pointer;
  filter: none !important;
  transition: none !important;
}
.video-player::-webkit-media-controls-panel {
  background-color: rgba(11, 16, 32, 0.8);
}
.video-player::-webkit-media-controls-play-button {
  border-radius: 50% !important;
  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
  min-height: 40px !important;
  max-width: 40px !important;
  max-height: 40px !important;
}
.video-player::-webkit-media-controls-enclosure {
  background: transparent !important;
}
.video-player:focus,
.video-player:active {
  outline: none;
  filter: brightness(1);
}
.video-player::-webkit-media-controls-current-time-display,
.video-player::-webkit-media-controls-time-remaining-display {
  color: #fff;
}
.video-player:hover {
  filter: none !important;
  opacity: 1 !important;
  transform: none !important;
}
.video-player:focus:hover {
  filter: brightness(1) !important;
  opacity: 1 !important;
}
.video-player * {
  transition: none !important;
}
.video-player::-webkit-media-controls-panel:hover {
  background-color: rgba(11, 16, 32, 0.8) !important;
}
.transcript {
  padding: 18px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}
.transcript ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}
.transcript li {
  margin: 8px 0;
}

.compare {
  margin-top: 22px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.72);
}
.compare .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.compare .cell {
  padding: 18px;
  border-top: 1px solid var(--border);
}
.compare .head {
  padding: 18px;
  background: linear-gradient(
    135deg,
    rgba(18, 58, 115, 0.1),
    rgba(207, 106, 42, 0.1)
  );
  font-weight: 900;
  color: var(--ink);
  border-top: none;
}
.compare .cell h4 {
  margin: 0 0 8px;
  font-size: 15px;
}
.compare .cell ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}
.compare .cell:nth-child(odd) {
  border-right: 1px solid var(--border);
}

.modules {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
  align-items: start;
}
.list {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.list .item {
  display: flex;
  gap: 14px;
  padding: 16px 18px;
  border-top: 1px solid var(--border);
}
.list .item:first-child {
  border-top: none;
}
.num {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(18, 58, 115, 0.1);
  border: 1px solid rgba(18, 58, 115, 0.14);
  color: var(--navy);
  font-weight: 1000;
  flex: 0 0 auto;
}
.item h4 {
  margin: 0 0 4px;
  font-size: 15px;
}
.item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

.bonus {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(207, 106, 42, 0.22);
  background: linear-gradient(
    180deg,
    rgba(207, 106, 42, 0.12),
    rgba(255, 255, 255, 0.72)
  );
  box-shadow: var(--shadow-soft);
  padding: 18px;
}
.bonus h3 {
  margin: 0 0 8px;
}
.bonus ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}
.bonus li {
  margin: 8px 0;
}

.split {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.good,
.bad {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
  padding: 18px;
}
.good {
  border-color: rgba(18, 58, 115, 0.18);
}
.bad {
  border-color: rgba(207, 106, 42, 0.22);
}
.good h3,
.bad h3 {
  margin: 0 0 8px;
}
.good ul,
.bad ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}
.good li,
.bad li {
  margin: 8px 0;
}

.author {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: 16px;
  margin-top: 22px;
  align-items: stretch;
}
.avatar {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.photo {
  width: 100%;
  border-radius: 22px;
  aspect-ratio: 4/3;
  background: radial-gradient(
      400px 200px at 30% 20%,
      rgba(18, 58, 115, 0.18),
      transparent 60%
    ),
    radial-gradient(
      400px 200px at 70% 80%,
      rgba(207, 106, 42, 0.18),
      transparent 60%
    ),
    #fff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 800;
}
.bio {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
  padding: 18px;
}
.bio p {
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.8;
}
.bio .highlights {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.hl {
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
}

.quote {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 170px;
}
.quote .who {
  margin-bottom: 0;
}
.quote .name {
  font-weight: 900;
  color: var(--ink);
  font-size: 16px;
  margin-bottom: 4px;
}
.quote .role {
  color: var(--muted);
  font-size: 14px;
}
.stars {
  letter-spacing: 2px;
  color: #ffc107;
  font-weight: 900;
  font-size: 18px;
}
.quote p {
  margin-top: 4px;
}

.testimonials-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.slider-container {
  flex: 1;
  overflow: hidden;
}

.slider-track {
  display: flex;
  gap: 16px;
  transition: transform 0.3s ease;
  will-change: transform;
}

.testimonials-slider .card {
  flex: 0 0 calc(33.333% - 11px);
  min-width: 0;
  box-sizing: border-box;
}

.slider-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font-size: 24px;
  font-weight: 300;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
  z-index: 2;
}

.slider-btn:hover {
  background: #fff;
  border-color: var(--navy);
  color: var(--navy);
  box-shadow: var(--shadow-soft);
}

.slider-btn:active {
  transform: scale(0.95);
}

@media (max-width: 980px) {
  .testimonials-slider .card {
    flex: 0 0 calc(50% - 8px);
  }
}

@media (max-width: 520px) {
  .testimonials-slider .card {
    flex: 0 0 100%;
  }
  .slider-btn {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }
}

.faq {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
details {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
  padding: 14px 16px;
}
summary {
  cursor: pointer;
  font-weight: 900;
  color: var(--ink);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
summary::-webkit-details-marker {
  display: none;
}
summary::after {
  content: "▼";
  font-size: 12px;
  color: var(--muted);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
details[open] summary::after {
  content: "▲";
}
details p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}

.pricing {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
  align-items: start;
}
.offer {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(18, 58, 115, 0.18);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  padding: 20px;
}
.offer .top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}
.offer h3 {
  margin: 0;
  font-size: 18px;
}
.price {
  text-align: right;
  font-weight: 1000;
  color: var(--navy);
}
.price .old {
  display: block;
  font-size: 13px;
  color: var(--muted);
  text-decoration: line-through;
  font-weight: 800;
}
.price .now {
  font-size: 34px;
  letter-spacing: -0.8px;
}
.offer ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}
.payrow {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
  align-items: center;
}
.pay {
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  font-weight: 900;
  color: var(--ink);
}

.guarantee {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(207, 106, 42, 0.22);
  background: linear-gradient(
    180deg,
    rgba(207, 106, 42, 0.12),
    rgba(255, 255, 255, 0.72)
  );
  box-shadow: var(--shadow-soft);
  padding: 18px;
}
.guarantee h3 {
  margin: 0 0 10px;
}
.guarantee p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.final {
  border-radius: var(--radius-lg);
  padding: 26px;
  background: radial-gradient(
      900px 300px at 10% 20%,
      rgba(18, 58, 115, 0.18),
      transparent 55%
    ),
    radial-gradient(
      900px 300px at 90% 80%,
      rgba(207, 106, 42, 0.18),
      transparent 55%
    ),
    rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.final h3 {
  margin: 0;
  font-size: 20px;
}
.final p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

footer {
  padding: 26px 0 40px;
  color: var(--muted);
  font-size: 13px;
  border-top: 1px solid var(--border);
  background: #fbf7f0;
}

.cookie-consent {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.cookie-consent-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
}
.cookie-consent-content {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  text-align: center;
  z-index: 1001;
}
.cookie-consent-title {
  font-size: 24px;
  font-weight: 900;
  color: var(--ink);
  margin: 0 0 16px;
  letter-spacing: -0.3px;
}
.cookie-consent-text {
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
  margin: 0 0 16px;
}
.cookie-consent-link {
  color: var(--navy);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-consent-link:hover {
  color: var(--navy-2);
}
.cookie-consent-note {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  margin: 0 0 24px;
}
.cookie-consent-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 40px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}
.cookie-consent-btn-accept {
  border: 1px solid rgba(18, 58, 115, 0.2);
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: #fff;
  box-shadow: 0 14px 26px rgba(18, 58, 115, 0.22);
}
.cookie-consent-btn-accept:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(18, 58, 115, 0.28);
}
.cookie-consent-btn-accept:active {
  transform: translateY(0);
}

@media (max-width: 520px) {
  .cookie-consent-content {
    padding: 24px;
  }
  .cookie-consent-title {
    font-size: 20px;
  }
  .cookie-consent-text {
    font-size: 14px;
  }
  .cookie-consent-btn {
    font-size: 16px;
    padding: 16px 32px;
    max-width: 100%;
  }
}
.foot {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.links a {
  padding: 8px 10px;
  border-radius: 12px;
}
.links a:hover {
  background: rgba(18, 58, 115, 0.06);
  color: var(--navy);
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .modules {
    grid-template-columns: 1fr;
  }
  .author {
    grid-template-columns: 1fr;
  }
  .pricing {
    grid-template-columns: 1fr;
  }
  .faq {
    grid-template-columns: 1fr;
  }
  h1 {
    font-size: 38px;
  }
  .nav {
    display: none;
  }
  .brand {
    min-width: auto;
  }
}
@media (max-width: 520px) {
  h1 {
    font-size: 34px;
  }
  .section {
    padding: 64px 0;
  }
}
