:root {
  --bg: #faf9f5;
  --paper: #ffffff;
  --ink: #142316;
  --muted: rgba(20, 35, 22, .72);
  --olive: #2f4f37;
  --olive-dark: #102417;
  --olive-soft: #ecfdf5;
  --mustard: #d9a62e;
  --orange: #ff6900;
  --orange-dark: #e85f00;
  --green: #16a34a;
  --red: #dc2626;
  --shadow: 0 24px 60px rgba(22, 35, 26, .12);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Poppins", Arial, sans-serif;
}

body.popup-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

button,
a {
  font-family: inherit;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.narrow {
  width: min(820px, calc(100% - 32px));
}

.section {
  padding: 82px 0;
  overflow: hidden;
}

.announcement-bar {
  position: relative;
  z-index: 10;
  overflow: hidden;
  background: var(--red);
  color: #fff;
  padding: 10px 0;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(0, 0, 0, .12);
}

.ticker,
.marquee,
.testimonial-track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  will-change: transform;
}

.ticker {
  gap: 34px;
}

.ticker span {
  padding-left: 34px;
}

.ticker-left,
.track-left {
  animation: scroll-left 46s linear infinite;
}

.track-right {
  animation: scroll-right 50s linear infinite;
}

.hero {
  padding-top: 58px;
  background:
    radial-gradient(circle at 18% 12%, rgba(217, 166, 46, .16), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(47, 79, 55, .12), transparent 28%),
    var(--bg);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, .6fr);
  gap: 36px;
  align-items: center;
}

.badge,
.eyebrow,
.small-label,
.popup-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  background: #f6ead0;
  color: #8a5c00;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.eyebrow.light {
  background: rgba(255, 255, 255, .12);
  color: #f2c85b;
}

.hero h1,
.section-heading h2,
.access h2,
.ideal h2,
.guarantee h2,
.popup h2 {
  margin: 0;
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1.05;
}

.hero h1 {
  margin-top: 18px;
  max-width: 790px;
  font-size: clamp(38px, 5.3vw, 70px);
}

.hero h1 span {
  display: block;
  color: var(--olive);
}

.hero-subtitle {
  max-width: 690px;
  margin: 22px 0 26px;
  color: var(--muted);
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.7;
}

.trust-line {
  margin: 14px 0 0;
  color: rgba(20, 35, 22, .62);
  font-size: 12px;
  font-weight: 600;
}

.cta-button {
  appearance: none;
  border: 0;
  border-radius: 14px;
  background: var(--orange);
  color: #fff;
  padding: 17px 28px;
  font-size: 17px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(255, 105, 0, .28);
  transition: transform .22s ease, background .22s ease, box-shadow .22s ease;
  animation: jumping 1.55s ease-in-out infinite;
}

.cta-button:hover {
  transform: translateY(-2px);
  background: var(--orange-dark);
  box-shadow: 0 18px 34px rgba(255, 105, 0, .35);
}

.hero-panel {
  position: relative;
  min-height: 210px;
  border-radius: 24px;
  background: var(--olive-dark);
  color: #fff;
  padding: 30px;
  box-shadow: var(--shadow);
}

.hero-panel p {
  margin: 80px 0 0;
  color: rgba(255, 255, 255, .78);
  line-height: 1.6;
  font-weight: 600;
}

.seal {
  position: absolute;
  top: 22px;
  left: 22px;
  border-radius: 16px;
  background: var(--mustard);
  color: #17120a;
  padding: 16px 18px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-banner {
  width: min(100%, 1000px);
  margin: 40px auto 0;
  border-radius: 24px;
  box-shadow: 0 28px 70px rgba(44, 28, 12, .22);
  border: 1px solid rgba(255, 255, 255, .72);
}

.hero-seals {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.mini-seal {
  border-radius: 16px;
  background: var(--olive-soft);
  padding: 16px;
  border: 1px solid rgba(47, 79, 55, .13);
  box-shadow: 0 10px 24px rgba(20, 35, 22, .06);
}

.mini-seal strong,
.mini-seal span {
  display: block;
}

.mini-seal strong {
  font-size: 14px;
}

.mini-seal span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.section-heading {
  display: grid;
  gap: 14px;
  place-items: center;
  text-align: center;
  margin-bottom: 46px;
}

.section-heading h2,
.access h2,
.ideal h2,
.guarantee h2 {
  max-width: 760px;
  font-size: clamp(30px, 4vw, 48px);
}

.section-heading p,
.ideal p,
.access p,
.guarantee p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 500;
}

.preview,
.modules,
.offer {
  background: var(--bg);
}

.marquee-wrap,
.testimonial-marquees {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.image-fade::before,
.image-fade::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: min(12vw, 140px);
  pointer-events: none;
}

.image-fade::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), transparent);
}

.image-fade::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg), transparent);
}

.marquee {
  gap: 24px;
  padding: 10px 0 24px;
}

.marquee:hover,
.testimonial-track:hover {
  animation-play-state: paused;
}

.marquee img {
  width: 245px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 18px 36px rgba(20, 35, 22, .14);
  border: 1px solid rgba(20, 35, 22, .08);
  background: #fff;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.benefits,
.what-you-get,
.faq {
  background: #fff;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.info-card {
  border-radius: var(--radius);
  background: var(--olive-soft);
  padding: 26px;
  border: 1px solid rgba(47, 79, 55, .12);
  transition: transform .25s ease, box-shadow .25s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(47, 79, 55, .1);
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #fff;
  color: var(--mustard);
  font-weight: 900;
  margin-bottom: 16px;
}

.info-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.info-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 14px;
}

.access,
.guarantee,
.footer {
  background: var(--olive-dark);
  color: #fff;
}

.access .narrow {
  display: grid;
  gap: 22px;
  place-items: center;
  text-align: center;
}

.access p,
.guarantee p,
.footer p,
.footer small {
  color: rgba(255, 255, 255, .74);
}

.access-grid,
.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
  margin: 10px 0 8px;
}

.access-grid div,
.security-grid div {
  text-align: left;
  border-radius: 16px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .1);
  padding: 18px;
}

.access-grid strong,
.access-grid span,
.security-grid strong,
.security-grid span {
  display: block;
}

.access-grid span,
.security-grid span {
  margin-top: 6px;
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
  line-height: 1.55;
}

.two-col {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 42px;
  align-items: center;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.check-grid div {
  border-radius: 16px;
  background: var(--olive-soft);
  border: 1px solid rgba(47, 79, 55, .14);
  padding: 18px;
}

.check-grid strong,
.check-grid span {
  display: block;
}

.check-grid span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.module-list {
  display: grid;
  gap: 14px;
}

.module-card {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 18px;
  align-items: center;
  border-radius: 18px;
  background: var(--olive-soft);
  border: 1px solid rgba(47, 79, 55, .14);
  padding: 22px;
  box-shadow: 0 8px 18px rgba(47, 79, 55, .05);
}

.module-card > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: #fff;
  color: var(--olive);
  font-weight: 900;
}

.module-card h3,
.module-card p {
  margin: 0;
}

.module-card h3 {
  font-size: 19px;
}

.module-card p {
  margin-top: 5px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}

.module-card strong {
  border-radius: 999px;
  background: rgba(255, 255, 255, .8);
  padding: 8px 12px;
  font-size: 12px;
  color: var(--olive);
  white-space: nowrap;
}

.module-card.bonus {
  background: var(--orange);
  color: #fff;
}

.module-card.bonus p {
  color: rgba(255, 255, 255, .9);
}

.module-card.bonus strong,
.module-card.bonus > span {
  color: var(--orange);
}

.highlight-box {
  margin-top: 30px;
  border-radius: 24px;
  background: var(--olive-dark);
  color: #fff;
  text-align: center;
  padding: 34px;
  box-shadow: var(--shadow);
}

.highlight-box h3 {
  margin: 0 auto 12px;
  max-width: 780px;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.15;
}

.highlight-box p {
  margin: 0 auto;
  max-width: 700px;
  color: rgba(255, 255, 255, .72);
}

.testimonials {
  background: #fff;
}

.testimonials .image-fade::before {
  background: linear-gradient(90deg, #fff, transparent);
}

.testimonials .image-fade::after {
  background: linear-gradient(270deg, #fff, transparent);
}

.testimonial-marquees {
  display: grid;
  gap: 22px;
}

.testimonial-track {
  gap: 22px;
}

.testimonial-track img {
  width: 245px;
  height: 435px;
  object-fit: cover;
  object-position: top center;
  border-radius: 22px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, .18);
  border: 1px solid rgba(255, 255, 255, .7);
  background: #111;
}

.offer-card {
  width: min(460px, calc(100% - 32px));
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(20, 35, 22, .08);
}

.offer-top {
  background: var(--olive-dark);
  color: #f2c85b;
  text-align: center;
  padding: 15px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.offer-body {
  padding: 30px;
}

.offer-body h3 {
  margin: 8px 0 18px;
  font-size: 24px;
  line-height: 1.15;
}

.offer-body ul,
.popup-benefits ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.offer-body li,
.popup-benefits li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 600;
}

.offer-body li::before,
.popup-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .58em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
}

.price-box {
  margin: 24px 0;
  text-align: center;
}

.old-price {
  display: block;
  color: var(--red);
  text-decoration: line-through;
  font-weight: 800;
  font-size: 15px;
}

.new-price {
  margin-top: 4px;
  color: var(--green);
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -.04em;
}

.new-price span {
  display: block;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.price-box small {
  display: block;
  margin-top: 5px;
  color: rgba(20, 35, 22, .5);
  font-weight: 600;
}

.offer-card .cta-button {
  width: 100%;
}

.payment-tags {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.payment-tags span {
  border-radius: 8px;
  background: #ecfdf5;
  border: 1px solid #cdebd9;
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 900;
}

.offer-security-scroll {
  width: min(560px, calc(100% - 32px));
  margin: 34px auto 0;
  overflow: hidden;
  background: #ecfdf5;
  border: 1px solid #9ee7c1;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(16, 185, 129, .12);
  padding: 13px 0;
}

.offer-security-track {
  display: flex;
  width: max-content;
  gap: 30px;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 900;
  color: #0f1f14;
  letter-spacing: .04em;
  text-transform: uppercase;
  animation: scroll-left 18s linear infinite;
}

.offer-security-track:hover {
  animation-play-state: paused;
}

.offer-security-track span:nth-child(even) {
  color: #059669;
}

.text-reviews {
  background: #fff;
  padding-top: 68px;
}

.text-reviews .image-fade::before {
  background: linear-gradient(90deg, #fff, transparent);
}

.text-reviews .image-fade::after {
  background: linear-gradient(270deg, #fff, transparent);
}

.text-review-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 6px 0 22px;
}

.text-review-track {
  display: flex;
  gap: 18px;
  width: max-content;
  will-change: transform;
}

.text-review-track:hover {
  animation-play-state: paused;
}

.text-review-card {
  width: 330px;
  min-height: 210px;
  border-radius: 18px;
  background: var(--olive-soft);
  border: 1px solid rgba(47, 79, 55, .14);
  padding: 22px;
  box-shadow: 0 14px 30px rgba(47, 79, 55, .08);
  white-space: normal;
}

.stars {
  color: var(--mustard);
  letter-spacing: .12em;
  font-size: 17px;
  font-weight: 900;
}

.text-review-card p {
  margin: 14px 0 16px;
  color: var(--muted);
  line-height: 1.62;
  font-size: 14px;
  font-weight: 600;
}

.text-review-card strong {
  color: var(--olive);
  font-size: 14px;
}

.guarantee {
  background: #0b1528;
}

.guarantee-medal {
  justify-self: center;
  display: grid;
  place-items: center;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 34%, rgba(125, 211, 252, .16), transparent 38%),
    linear-gradient(145deg, #13223c, #0d1b31);
  border: 4px solid rgba(88, 166, 255, .28);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, .34),
    inset 0 0 0 1px rgba(255, 255, 255, .08);
  text-align: center;
  position: relative;
  gap: 6px;
  padding: 28px 18px;
}

.guarantee-medal::before {
  content: "";
  position: absolute;
  inset: 13px;
  border: 1px dashed rgba(125, 211, 252, .32);
  border-radius: 50%;
}

.shield-mark {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: rgba(125, 211, 252, .12);
  border: 1px solid rgba(125, 211, 252, .28);
  box-shadow: inset 0 0 18px rgba(125, 211, 252, .08);
}

.shield-mark svg {
  width: 38px;
  height: 38px;
}

.shield-mark path:first-child {
  fill: none;
  stroke: #7dd3fc;
  stroke-width: 4;
  stroke-linejoin: round;
}

.shield-mark path:last-child {
  fill: none;
  stroke: #f2c85b;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.guarantee-medal strong {
  display: block;
  position: relative;
  z-index: 1;
  font-size: 36px;
  line-height: 1;
  text-transform: uppercase;
}

.guarantee-medal span {
  display: block;
  position: relative;
  z-index: 1;
  margin-top: 0;
  color: #7dd3fc;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.security-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 24px;
}

.faq-list {
  display: grid;
  gap: 12px;
  width: min(820px, calc(100% - 32px));
}

.faq-item {
  border-radius: 16px;
  background: var(--bg);
  border: 1px solid rgba(20, 35, 22, .08);
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  padding: 20px;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
}

.faq-item div {
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s ease;
}

.faq-item p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  line-height: 1.65;
  font-size: 14px;
}

.faq-item.open div {
  max-height: 220px;
}

.footer {
  padding: 42px 0;
  text-align: center;
}

.footer strong {
  display: block;
  color: #f2c85b;
  font-size: 20px;
  margin-bottom: 12px;
}

.footer p {
  margin: 0 auto 12px;
  max-width: 660px;
}

.footer small {
  display: block;
  max-width: 760px;
  margin: 0 auto;
}

.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(0, 0, 0, .72);
  backdrop-filter: blur(4px);
}

.popup-overlay.active {
  display: flex;
}

.popup {
  position: relative;
  width: min(540px, 100%);
  max-height: calc(100vh - 36px);
  overflow: auto;
  border-radius: 26px;
  background: linear-gradient(135deg, var(--orange), #ffb13d);
  color: #fff;
  padding: 28px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .34);
  animation: popup-in .28s ease both;
}

.popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, .16);
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  cursor: pointer;
}

.popup-badge {
  background: rgba(255, 255, 255, .16);
  color: #fff7df;
}

.popup h2 {
  margin-top: 16px;
  font-size: clamp(28px, 6vw, 38px);
}

.popup > p {
  margin: 12px auto 18px;
  color: rgba(255, 255, 255, .92);
  line-height: 1.6;
  font-weight: 600;
}

.popup-benefits,
.popup-price {
  border-radius: 18px;
  background: #fff;
  color: var(--ink);
  padding: 20px;
  text-align: left;
  margin: 16px 0;
}

.popup-benefits h3 {
  margin: 0 0 12px;
}

.popup-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.popup-old {
  color: var(--red);
  text-decoration: line-through;
  font-weight: 900;
}

.popup-price strong {
  color: var(--green);
  font-size: 34px;
  letter-spacing: -.04em;
}

.popup-cta,
.popup-decline {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.popup-cta {
  min-height: 58px;
  border-radius: 14px;
  background: var(--green);
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(22, 163, 74, .35);
}

.popup-decline {
  margin-top: 12px;
  color: rgba(255, 255, 255, .86);
  font-size: 13px;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.soft-jump {
  animation: soft-jump 3.2s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

.jumping {
  animation: jumping 1.55s ease-in-out infinite;
}

@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes scroll-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

@keyframes soft-jump {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes jumping {
  0%, 100% { transform: translateY(0) scale(1); }
  42% { transform: translateY(-7px) scale(1.025); }
  58% { transform: translateY(0) scale(1); }
}

@keyframes popup-in {
  from {
    opacity: 0;
    transform: translateY(22px) scale(.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 900px) {
  .section {
    padding: 64px 0;
  }

  .hero-grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: auto;
  }

  .hero-panel p {
    margin-top: 72px;
  }

  .hero-seals,
  .cards-grid,
  .access-grid,
  .check-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .module-card {
    grid-template-columns: 58px 1fr;
  }

  .module-card strong {
    grid-column: 2;
    width: fit-content;
  }
}

@media (max-width: 620px) {
  .container,
  .narrow,
  .faq-list {
    width: min(100% - 24px, 1120px);
  }

  .hero {
    padding-top: 42px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .cta-button {
    width: 100%;
    padding: 16px 18px;
    font-size: 15px;
  }

  .hero-seals,
  .cards-grid,
  .access-grid,
  .check-grid,
  .security-grid {
    grid-template-columns: 1fr;
  }

  .hero-banner {
    border-radius: 16px;
    margin-top: 30px;
  }

  .marquee {
    gap: 16px;
  }

  .marquee img {
    width: 190px;
    border-radius: 14px;
  }

  .testimonial-track {
    gap: 16px;
  }

  .testimonial-track img {
    width: 190px;
    height: 338px;
    border-radius: 16px;
  }

  .offer-body,
  .popup {
    padding: 22px;
  }

  .new-price {
    font-size: 38px;
  }

  .popup-price {
    display: grid;
    text-align: center;
    justify-content: center;
  }
}
