* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --black: #0b0b0b;
  --dark: #1b1b1b;
  --card: #222;
  --line: #2e2e2e;
  --green: #9fd443;
  --green-dark: #7ab52e;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.55);
  --gold: #c9a84c;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  font-family: "Poppins", sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(159, 212, 67, 0.5);
  }

  70% {
    box-shadow: 0 0 0 18px rgba(159, 212, 67, 0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.d1 {
  transition-delay: 0.1s;
}

.d2 {
  transition-delay: 0.2s;
}

.d3 {
  transition-delay: 0.3s;
}

.d4 {
  transition-delay: 0.4s;
}

.d5 {
  transition-delay: 0.5s;
}

.wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* HEADER */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(11, 11, 11, 0);
  backdrop-filter: blur(0);
  border-bottom: 1px solid transparent;
  transition: all 0.35s ease;
}

header.scrolled {
  background: rgba(11, 11, 11, 0.96);
  backdrop-filter: blur(20px);
  padding: 13px 0;
  border-bottom-color: var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.logo {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.logo span {
  color: var(--green);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-cta {
  background: var(--green);
  color: var(--black);
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 13px;
  padding: 11px 22px;
  border-radius: 999px;
  transition: transform 0.15s, box-shadow 0.15s;
  white-space: nowrap;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px -4px rgba(159, 212, 67, 0.55);
}

/* HERO */
.hero-section {
  background: var(--black);
}

.hero {
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 560px);
  justify-content: center;
  justify-items: center;
  align-items: start;
  text-align: center;
  gap: 0;
  padding: 145px 0 78px;
}

.hero-content {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(159, 212, 67, 0.1);
  border: 1px solid rgba(159, 212, 67, 0.25);
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.07em;
  padding: 7px 16px;
  border-radius: 999px;
  text-transform: uppercase;
  margin: 0 auto 22px;
}

.hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.hero h1 {
  max-width: 560px;
  margin: 0 auto 18px;
  text-align: center;
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.hero h1 .hl {
  color: var(--green);
  display: inline-block;
}

.hero-sub {
  max-width: 520px;
  margin: 0 auto 30px;
  text-align: center;
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
}

.vsl-container {
  width: 100%;
  max-width: 430px;
  margin: 0 auto 26px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px -12px rgba(0, 0, 0, 0.8);
  border: 2px solid rgba(159, 212, 67, 0.3);
  position: relative;
  background: #111;
}

.vsl-container iframe {
  width: 100%;
  aspect-ratio: 9 / 16;
  border: none;
  display: block;
}

.vsl-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: rgba(159, 212, 67, 0.95);
  color: var(--black);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 999px;
  text-transform: uppercase;
}

.price-block {
  width: 100%;
  margin: 0 auto 20px;
  text-align: center;
}

.price-from {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: line-through;
  margin-bottom: 4px;
  text-align: center;
}

.price-row {
  width: 100%;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  text-align: center;
}

.price-cur {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--green);
}

.price-val {
  font-family: "Poppins", sans-serif;
  font-size: 60px;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  letter-spacing: -0.04em;
}

.price-cents {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--green);
}

.price-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 6px;
  text-align: center;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--green);
  color: var(--black);
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-size: 16px;
  padding: 20px 40px;
  border-radius: 16px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: pulse 2.5s infinite;
  width: 100%;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -10px rgba(159, 212, 67, 0.55);
}

.cta-btn.outline {
  background: transparent;
  color: var(--green);
  border: 2px solid rgba(159, 212, 67, 0.4);
  animation: none;
}

.cta-btn.outline:hover {
  background: rgba(159, 212, 67, 0.08);
  border-color: var(--green);
}

.trust-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px 20px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
}

/* TRUST BAND */
.trust-band {
  background: var(--dark);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}

.trust-band-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
}

.trust-badge .icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(159, 212, 67, 0.1);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* SECTION */
.section {
  padding: 96px 0;
}

.section.alt {
  background: var(--dark);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}

.sec-label::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--green);
  border-radius: 999px;
}

.sec-title {
  font-size: clamp(26px, 3.8vw, 38px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.sec-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.7;
}

.text-center {
  text-align: center;
}

.text-center .sec-label {
  justify-content: center;
}

.text-center .sec-sub {
  margin: 0 auto;
}

/* BENEFITS */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 56px;
}

.benefit-card {
  min-height: 260px;
  background-color: var(--card);
  background-image:
    linear-gradient(180deg, rgba(11, 11, 11, 0.3), rgba(11, 11, 11, 0.96)),
    var(--bg);
  background-size: cover;
  background-position: center;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 26px;
  transition: border-color 0.25s, transform 0.25s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.benefit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(159, 212, 67, 0.08), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}

.benefit-card:hover {
  border-color: rgba(159, 212, 67, 0.45);
  transform: translateY(-4px);
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(159, 212, 67, 0.14);
  border: 1px solid rgba(159, 212, 67, 0.22);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
  backdrop-filter: blur(8px);
}

.benefit-content {
  position: relative;
  z-index: 2;
}

.benefit-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* WHAT YOU GET */
.get-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.get-list {
  list-style: none;
  margin: 28px 0 36px;
}

.get-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.get-list li:last-child {
  border-bottom: none;
}

.get-check {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  flex-shrink: 0;
  margin-top: 1px;
  background: rgba(159, 212, 67, 0.12);
  border: 1px solid rgba(159, 212, 67, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--green);
}

.mockup {
  background: var(--black);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 32px 60px -16px rgba(0, 0, 0, 0.7);
}

.mockup-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 22px;
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mockup-title {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  margin-left: 8px;
}

.mockup-progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 8px;
}

.prog-track {
  height: 6px;
  background: var(--line);
  border-radius: 999px;
  overflow: hidden;
}

.prog-fill {
  height: 100%;
  background: var(--green);
  border-radius: 999px;
  width: 65%;
}

.mockup-module {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.mockup-module:last-child {
  border-bottom: none;
}

.mod-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.mod-icon.green {
  background: rgba(159, 212, 67, 0.12);
}

.mod-icon.gray {
  background: rgba(255, 255, 255, 0.05);
}

.mod-text {
  flex: 1;
}

.mod-text .title {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 2px;
}

.mod-text .sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
}

.mod-status.done {
  color: var(--green);
  font-size: 11px;
}

.mod-status.progress {
  color: var(--gold);
  font-size: 11px;
}

.mod-status.lock {
  color: rgba(255, 255, 255, 0.25);
  font-size: 11px;
}

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}

.gallery-item {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: var(--card);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(11, 11, 11, 0.88));
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-name {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  font-size: 13px;
  font-weight: 800;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s;
}

.gallery-item:hover .gallery-name {
  opacity: 1;
  transform: translateY(0);
}

.gallery-cta {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

/* MODULES */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 52px;
}

.mod-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
}

.mod-card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
}

.mod-thumb {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  background: #111;
}

.mod-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.mod-card:hover .mod-thumb img {
  transform: scale(1.08);
}

.mod-num-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  background: rgba(11, 11, 11, 0.85);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--green);
  padding: 4px 10px;
  border-radius: 999px;
}

.mod-body {
  padding: 18px;
}

.mod-cat {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 5px;
}

.mod-body h3 {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 4px;
}

.mod-body .count {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

/* BONUS BANNER */
.bonus-banner-section {
  padding: 0;
}

.bonus-banner-img {
  width: 100%;
  display: block;
  max-height: 500px;
  object-fit: cover;
  object-position: center;
}

/* ORDER BUMP */
.bump-section {
  background: var(--dark);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 80px 0;
}

.bump-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 860px;
  margin: 48px auto 0;
}

.bump-card {
  background: var(--black);
  border: 1.5px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}

.bump-card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
}

.bump-thumb {
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 320px;
  object-fit: cover;
  object-position: top;
  display: block;
}

.bump-body {
  padding: 26px;
}

.bump-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
}

.bump-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 16px;
}

.bump-features {
  list-style: none;
  margin-bottom: 20px;
}

.bump-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 8px;
}

.bump-features li::before {
  content: "✓";
  color: var(--green);
  font-weight: 800;
  flex-shrink: 0;
}

.bump-price-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 4px;
}

.bump-price {
  font-family: "Poppins", sans-serif;
  font-size: 34px;
  font-weight: 900;
  color: var(--green);
  margin-bottom: 16px;
}

.bump-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(159, 212, 67, 0.1);
  border: 1px solid rgba(159, 212, 67, 0.3);
  color: var(--green);
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 14px;
  padding: 14px;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.bump-btn:hover {
  background: var(--green);
  color: var(--black);
  transform: translateY(-2px);
}

/* TESTIMONIALS */
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.test-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}

.test-card:hover {
  border-color: rgba(159, 212, 67, 0.3);
  transform: translateY(-3px);
}

.test-stars {
  color: #fbbf24;
  font-size: 16px;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.test-card blockquote {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 22px;
  font-style: italic;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.test-av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-size: 15px;
  color: var(--black);
  flex-shrink: 0;
}

.test-name {
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 2px;
}

.test-city {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

/* COUNTER */
.counter-band {
  background: var(--green);
  padding: 60px 0;
  text-align: center;
}

.counter-lead {
  font-family: "Poppins", sans-serif;
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 900;
  color: var(--black);
  margin-bottom: 40px;
  letter-spacing: -0.02em;
}

.counter-stats {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.counter-stat .num {
  font-family: "Poppins", sans-serif;
  font-size: clamp(44px, 6vw, 64px);
  font-weight: 900;
  color: var(--black);
  line-height: 1;
}

.counter-stat .lbl {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
  margin-top: 6px;
  font-weight: 700;
}

/* GUARANTEE */
.guarantee-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.guarantee-img-wrap {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 32px 60px -16px rgba(0, 0, 0, 0.6);
}

.guarantee-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.guarantee-seal {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #e8c068);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  margin-bottom: 28px;
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.35);
}

.guarantee-box h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  margin-bottom: 16px;
}

.guarantee-box p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* FAQ */
.faq-list {
  max-width: 740px;
  margin: 52px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  transition: color 0.2s;
  user-select: none;
}

.faq-q:hover {
  color: var(--green);
}

.faq-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-left: 16px;
  background: rgba(159, 212, 67, 0.1);
  border: 1px solid rgba(159, 212, 67, 0.2);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 300;
  transition: transform 0.25s, background 0.2s, color 0.2s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--green);
  color: var(--black);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 26px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

.faq-item.open .faq-a {
  max-height: 220px;
  padding-bottom: 22px;
}

/* FINAL CTA */
.final-cta {
  position: relative;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://images.hostinger.com/c7697c98-2002-456f-a2d1-d3cbbee3d945.png");
  background-size: cover;
  background-position: center;
  filter: brightness(0.15);
}

.final-cta .wrap {
  position: relative;
  z-index: 2;
}

.final-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(159, 212, 67, 0.15);
  border: 1px solid rgba(159, 212, 67, 0.3);
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.07em;
  padding: 7px 18px;
  border-radius: 999px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.final-cta h2 {
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.final-cta .price-old {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: line-through;
  margin-bottom: 8px;
}

.final-cta .price-new {
  font-family: "Poppins", sans-serif;
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  margin-bottom: 32px;
}

.final-trust {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.final-trust .item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

/* FOOTER */
footer {
  background: var(--black);
  border-top: 1px solid var(--line);
  padding: 52px 0 28px;
}

.foot-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 40px;
}

.foot-logo {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-size: 18px;
  margin-bottom: 10px;
}

.foot-logo span {
  color: var(--green);
}

.foot-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  max-width: 240px;
  line-height: 1.6;
}

.foot-col h4 {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 16px;
}

.foot-col a {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 10px;
  transition: color 0.15s;
}

.foot-col a:hover {
  color: var(--white);
}

.foot-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.foot-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.2);
}

.foot-secure {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(159, 212, 67, 0.06);
  border: 1px solid rgba(159, 212, 67, 0.12);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: minmax(0, 560px);
    padding: 120px 0 70px;
    text-align: center;
  }

  .hero-content {
    max-width: 560px;
  }

  .get-grid {
    grid-template-columns: 1fr;
  }

  .guarantee-wrap {
    grid-template-columns: 1fr;
  }

  .guarantee-img-wrap {
    display: none;
  }

  .modules-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  header {
    padding: 14px 0;
  }

  header.scrolled {
    padding: 12px 0;
  }

  .nav {
    gap: 12px;
  }

  .nav-links {
    display: none;
  }

  .logo {
    font-size: 16px;
  }

  .nav-cta {
    font-size: 11px;
    padding: 10px 16px;
  }

  .section {
    padding: 72px 0;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 108px 0 58px;
  }

  .hero-content {
    max-width: 430px;
  }

  .hero h1 {
    max-width: 380px;
    font-size: clamp(31px, 8.5vw, 42px);
    line-height: 1.03;
    margin-bottom: 14px;
  }

  .hero-sub {
    max-width: 350px;
    font-size: 14.5px;
    line-height: 1.65;
    margin-bottom: 26px;
  }

  .vsl-container {
    max-width: 330px;
    border-radius: 16px;
    margin-bottom: 22px;
  }

  .price-block {
    margin-top: 0;
    margin-bottom: 18px;
  }

  .price-row {
    justify-content: center;
  }

  .price-val {
    font-size: 52px;
  }

  .price-cur,
  .price-cents {
    font-size: 20px;
  }

  .cta-btn {
    max-width: 340px;
    padding: 17px 20px;
    font-size: 13px;
    border-radius: 14px;
  }

  .trust-row {
    max-width: 340px;
    gap: 10px 14px;
  }

  .trust-item {
    font-size: 11px;
  }

  .trust-band-inner {
    gap: 24px;
  }

  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }

  .test-grid {
    grid-template-columns: 1fr;
  }

  .bump-grid {
    grid-template-columns: 1fr;
  }

  .modules-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .counter-stats {
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .wrap {
    padding: 0 18px;
  }

  .hero {
    padding: 100px 0 52px;
  }

  .hero-eyebrow {
    font-size: 10px;
    padding: 7px 13px;
    margin-bottom: 20px;
  }

  .hero h1 {
    max-width: 335px;
    font-size: clamp(29px, 9vw, 36px);
  }

  .hero-sub {
    max-width: 315px;
    font-size: 13.5px;
  }

  .vsl-container {
    max-width: 310px;
  }

  .price-val {
    font-size: 50px;
  }

  .price-row {
    justify-content: center;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .modules-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .mod-body {
    padding: 14px;
  }

  .mod-body h3 {
    font-size: 12.5px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .gallery-name {
    font-size: 11px;
  }

  .foot-top {
    flex-direction: column;
  }

  .foot-bottom {
    flex-direction: column;
    text-align: center;
  }
}