:root {
  --bg: #050509;
  --bg-2: #0c0714;
  --surface: rgba(16, 12, 26, 0.84);
  --surface-strong: rgba(22, 15, 38, 0.94);
  --text: #ffffff;
  --muted: #b8b8c7;
  --line: rgba(255, 255, 255, 0.12);
  --cyan: #8b5cf6;
  --blue: #7c3aed;
  --violet: #8b5cf6;
  --gold: #f5c75b;
  --action: #25d366;
  --action-2: #7cff6b;
  --radius: 8px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 15% 10%, rgba(0, 152, 255, 0.22), transparent 34rem),
    radial-gradient(circle at 85% 12%, rgba(139, 92, 246, 0.22), transparent 34rem),
    linear-gradient(rgba(139, 92, 246, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.035) 1px, transparent 1px),
    var(--bg);
  background-size: auto, auto, 68px 68px, 68px 68px, auto;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: rgba(3, 7, 17, 0.34);
  pointer-events: none;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid transparent;
  background: rgba(3, 7, 17, 0.94);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  border-color: rgba(53, 233, 255, 0.16);
  background: rgba(6, 9, 19, 0.94);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(53, 233, 255, 0.48);
  border-radius: 8px;
  color: var(--cyan);
  box-shadow: 0 0 22px rgba(53, 233, 255, 0.16);
}

.nav-links {
  display: none;
  gap: 24px;
  color: var(--muted);
  font-size: 0.84rem;
}

.nav-links a:hover {
  color: var(--text);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 8px;
  font-weight: 900;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.header-cta {
  padding: 0 15px;
  color: #03130b;
  background: linear-gradient(135deg, var(--action-2), var(--action));
  font-size: 0.84rem;
}

.button {
  padding: 0 20px;
  border: 1px solid transparent;
  text-transform: uppercase;
  font-size: 0.82rem;
}

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

.button.primary {
  color: #03130b;
  background: linear-gradient(135deg, var(--action-2), var(--action));
  box-shadow: 0 18px 42px rgba(37, 211, 102, 0.22);
}

.button.secondary {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.045);
}

.button.wide {
  width: 100%;
}

.button.primary,
.header-cta {
  animation: ctaPulse 2.4s ease-in-out infinite;
}

.hero,
.opportunity-section,
.position-section,
.kit-section,
.map-bonus-section,
.practical-bonus-section,
.author-section,
.testimonials-section,
.offer-section,
.faq-section,
.final-cta {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  scroll-margin-top: 84px;
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 22px;
  align-items: start;
  min-height: calc(100vh - 64px);
  padding: 28px 0 48px;
  text-align: center;
}

.hero-copy h1,
.section-intro h2,
.kit-copy h2,
.author-section h2,
.final-cta h2 {
  margin: 14px 0 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  letter-spacing: 0;
  line-height: 1.02;
}

.hero-copy h1 {
  max-width: 840px;
  margin-inline: auto;
  font-size: clamp(1.95rem, 3.1vw, 3.1rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead {
  max-width: 760px;
  margin: 18px auto 0;
  color: #dbe7f7;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.48;
}

.hero-bullets {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.hero-bullets li,
.check-list li {
  position: relative;
  padding-left: 28px;
  color: #e8f2ff;
  font-size: 0.94rem;
  line-height: 1.45;
}

.hero-bullets li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 16px rgba(53, 233, 255, 0.34);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 20px;
}

.vsl-actions {
  margin-top: 18px;
}

.vsl-actions .button {
  min-height: 58px;
  padding-inline: clamp(24px, 4vw, 46px);
  font-size: clamp(0.9rem, 1.6vw, 1.04rem);
}

.cta-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.market-seals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.market-seals span,
.kit-points span,
.authority-points span {
  padding: 10px 12px;
  border: 1px solid rgba(53, 233, 255, 0.2);
  border-radius: 999px;
  color: #dff9ff;
  background: rgba(53, 233, 255, 0.07);
  font-size: 0.82rem;
  font-weight: 800;
}

.video-frame {
  position: relative;
  overflow: hidden;
  width: min(100%, 430px);
  margin: 0 auto;
  border: 1px solid rgba(53, 233, 255, 0.32);
  border-radius: 8px;
  background: #030711;
  box-shadow: var(--shadow), 0 0 58px rgba(0, 152, 255, 0.16);
}

.video-frame video {
  width: 100%;
  aspect-ratio: 9 / 16;
  height: auto;
  max-height: 74vh;
  object-fit: contain;
}

.sound-button {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-height: 66px;
  padding: 0 26px;
  border: 1px solid var(--cyan);
  border-radius: 24px;
  background: rgba(5, 8, 14, 0.88);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.42), 0 0 18px rgba(53, 233, 255, 0.18);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(8px);
}

.sound-button.is-hidden {
  display: none;
}

.sound-button strong {
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.sound-icon {
  width: 46px;
  height: 36px;
  color: #fff;
  flex: 0 0 auto;
}

.opportunity-section,
.position-section,
.kit-section,
.map-bonus-section,
.practical-bonus-section,
.author-section,
.testimonials-section,
.offer-section,
.faq-section,
.final-cta {
  padding: 74px 0;
}

.section-intro {
  max-width: 770px;
  margin-inline: auto;
  text-align: center;
}

.section-intro.narrow {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.section-intro h2,
.kit-copy h2,
.author-section h2,
.final-cta h2 {
  font-size: clamp(1.55rem, 2.8vw, 2.55rem);
}

.section-intro p,
.kit-copy p,
.author-section p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.opportunity-section,
.position-section,
.kit-section,
.map-bonus-section,
.practical-bonus-section,
.experts-section,
.testimonials-section,
.offer-section,
.faq-section {
  text-align: center;
}

.opportunity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.market-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.market-strip span {
  padding: 10px 12px;
  border: 1px solid rgba(53, 233, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #dbe7f7;
  font-size: 0.84rem;
  font-weight: 800;
}

.opportunity-subtitle {
  margin-top: 34px;
}

.opportunity-grid article,
.practical-grid article,
.timeline article,
.offer-plan,
.testimonial-grid article,
.testimonial-video-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(139, 92, 246, 0.12), rgba(255, 255, 255, 0.025)),
    var(--surface);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.opportunity-grid article:hover,
.practical-grid article:hover,
.timeline article:hover,
.offer-plan:hover,
.testimonial-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, 0.55);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38), 0 0 34px rgba(139, 92, 246, 0.14);
}

.opportunity-grid article {
  padding: 22px;
  text-align: center;
}

.practical-grid article {
  padding: 22px;
  text-align: center;
}

.opportunity-grid h3,
.practical-grid h3,
.timeline h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.opportunity-grid p,
.practical-grid p,
.timeline p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.section-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
  text-align: center;
}

.section-cta span,
.plan-microcopy,
.secure-note {
  color: var(--muted);
  font-size: 0.88rem;
}

.map-bonus-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
  margin-top: 34px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(53, 233, 255, 0.3);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 20%, rgba(139, 92, 246, 0.18), transparent 18rem),
    linear-gradient(135deg, rgba(124, 58, 237, 0.18), rgba(139, 92, 246, 0.1)),
    rgba(16, 26, 45, 0.86);
  box-shadow: var(--shadow), 0 0 42px rgba(139, 92, 246, 0.12);
}

.map-bonus-card h3 {
  margin: 14px 0 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.55rem);
  line-height: 1.08;
}

.map-bonus-card p {
  color: var(--muted);
  line-height: 1.62;
}

.map-bonus-card small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

.bonus-price-line,
.bonus-deadline {
  display: block;
}

.bonus-price-line {
  margin-bottom: 8px;
  color: var(--text);
  font-size: 1.12rem;
}

.bonus-price-line s {
  color: #c8ff4d;
  text-decoration-thickness: 2px;
}

.bonus-deadline {
  color: #ffffff;
  font-weight: 900;
}

.map-nodes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.map-nodes span {
  display: grid;
  min-height: 82px;
  place-items: center;
  padding: 12px;
  border: 1px solid rgba(53, 233, 255, 0.18);
  border-radius: 8px;
  background: rgba(7, 10, 19, 0.45);
  color: #dff9ff;
  font-size: 0.86rem;
  font-weight: 900;
  text-align: center;
}

.practical-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 38px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(53, 233, 255, 0.45), transparent);
}

.timeline article {
  position: relative;
  padding: 24px;
  background: rgba(16, 26, 45, 0.86);
  text-align: center;
}

.kit-section {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(30px, 5vw, 76px);
}

.kit-copy {
  text-align: center;
}

.kit-points,
.authority-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 22px 0 26px;
}

.product-showcase {
  display: flex;
  justify-content: center;
}

.product-cover,
.author-visual {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.product-cover {
  width: min(100%, 430px);
}

.product-cover-official {
  width: min(100%, 310px);
  height: auto;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.03);
}

.product-cover-wide {
  width: min(100%, 620px);
}

.author-visual {
  max-width: 390px;
  margin: 0 auto;
  overflow: hidden;
}

.author-visual img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.experts-section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 74px 0;
  scroll-margin-top: 84px;
}

.experts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.expert-card {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 20px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
  text-align: left;
}

.expert-card img {
  width: 170px;
  height: 220px;
  border-radius: 8px;
  object-fit: cover;
  object-position: top center;
}

.expert-card h3 {
  margin: 12px 0 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.2rem;
  line-height: 1.18;
}

.expert-card p,
.expert-card li {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.52;
}

.expert-card ul {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.expert-card li {
  position: relative;
  padding-left: 22px;
}

.expert-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
}

.expert-card strong {
  display: block;
  margin-top: 14px;
  color: var(--gold);
  font-size: 0.9rem;
  line-height: 1.45;
}

.community-panel {
  max-width: 860px;
  margin: 26px auto 0;
  padding: 24px;
  border: 1px solid rgba(53, 233, 255, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 152, 255, 0.11), rgba(142, 92, 255, 0.09)),
    rgba(16, 26, 45, 0.78);
  text-align: center;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
}

.community-panel h3 {
  margin: 12px auto 0;
  max-width: 720px;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(1.25rem, 2.4vw, 1.85rem);
  line-height: 1.15;
}

.community-panel p {
  max-width: 760px;
  margin: 14px auto 0;
  color: var(--muted);
  line-height: 1.62;
}

.community-panel strong {
  display: inline-flex;
  margin-top: 18px;
  padding: 10px 14px;
  border: 1px solid rgba(245, 199, 91, 0.34);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(245, 199, 91, 0.08);
  font-size: 0.9rem;
}

.testimonials-section {
  width: min(1080px, calc(100% - 40px));
}

.testimonial-feature {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.testimonial-grid article {
  overflow: hidden;
}

.testimonial-image-button {
  display: block;
  width: 100%;
  height: 270px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: #fff;
  cursor: zoom-in;
}

.testimonial-grid img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.testimonial-grid strong,
.testimonial-grid span,
.testimonial-video-card strong {
  display: block;
  padding-inline: 16px;
}

.testimonial-grid strong,
.testimonial-video-card strong {
  padding-top: 16px;
  font-size: 0.95rem;
}

.testimonial-grid span {
  padding-bottom: 16px;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.82rem;
}

.testimonial-video-card {
  overflow: hidden;
  width: min(100%, 280px);
  background: rgba(7, 10, 19, 0.9);
}

.testimonial-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #030711;
}

.testimonial-video-frame video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sound-button.compact {
  min-height: 58px;
  padding: 0 18px;
}

.sound-button.compact .sound-icon {
  width: 38px;
  height: 30px;
}

.sound-button.compact strong {
  padding: 0;
  font-size: 0.78rem;
}

.offer-intro {
  margin-bottom: 34px;
}

.offer-options {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 18px;
}

.offer-single {
  max-width: 760px;
  margin: 0 auto;
}

.offer-plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 3vw, 34px);
}

.featured-plan {
  border-color: rgba(139, 92, 246, 0.68);
  background:
    linear-gradient(135deg, rgba(124, 58, 237, 0.24), rgba(139, 92, 246, 0.11)),
    var(--surface-strong);
  box-shadow: var(--shadow), 0 0 42px rgba(139, 92, 246, 0.18);
}

.ebook-plan {
  align-self: start;
}

.best-badge,
.plan-label {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.best-badge {
  position: absolute;
  right: 18px;
  top: 18px;
  color: #06101a;
  background: var(--gold);
}

.plan-label {
  color: var(--cyan);
  background: rgba(53, 233, 255, 0.09);
  border: 1px solid rgba(53, 233, 255, 0.22);
}

.main-product-label {
  color: #03130b;
  background: linear-gradient(135deg, var(--action-2), var(--action));
  border-color: rgba(37, 211, 102, 0.55);
}

.offer-plan h3 {
  margin: 18px 0 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(1.45rem, 2.8vw, 2.35rem);
  line-height: 1.08;
}

.main-product-box {
  position: relative;
  margin: 14px 0 16px;
  padding: 28px 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    rgba(139, 92, 246, 0.1);
}

.main-product-box::before,
.main-product-box::after {
  content: "";
  position: absolute;
  width: 92px;
  height: 64px;
  pointer-events: none;
}

.main-product-box::before {
  left: -1px;
  top: -1px;
  border-left: 4px solid rgba(255, 255, 255, 0.86);
  border-top: 4px solid rgba(255, 255, 255, 0.86);
}

.main-product-box::after {
  right: -1px;
  bottom: -1px;
  border-right: 4px solid rgba(255, 255, 255, 0.86);
  border-bottom: 4px solid rgba(255, 255, 255, 0.86);
}

.main-product-box .main-product-label {
  position: absolute;
  left: 18px;
  top: -14px;
}

.main-product-box h3 {
  margin-top: 0;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
}

.main-product-box p {
  max-width: 650px;
  margin: 16px auto 0;
}

.surprise-bonus-banner {
  display: grid;
  gap: 5px;
  margin: 14px 0 18px;
  padding: 14px 16px;
  border: 1px solid rgba(200, 255, 77, 0.34);
  border-radius: 8px;
  background:
    radial-gradient(circle at 10% 50%, rgba(200, 255, 77, 0.16), transparent 14rem),
    rgba(200, 255, 77, 0.06);
}

.surprise-bonus-banner strong {
  color: #c8ff4d;
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.surprise-bonus-banner span {
  color: #e9ffd0;
  font-size: 0.9rem;
}

.product-format-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.product-format-badges span {
  padding: 8px 10px;
  border: 1px solid rgba(37, 211, 102, 0.32);
  border-radius: 999px;
  color: #d9ffd8;
  background: rgba(37, 211, 102, 0.08);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.offer-plan p,
.offer-plan small {
  color: var(--muted);
}

.offer-plan p {
  font-size: 0.96rem;
  line-height: 1.62;
}

.plan-price {
  margin: 24px 0 14px;
}

.old-price {
  display: block;
  color: var(--muted);
  font-weight: 800;
}

.ebook-plan .old-price {
  text-decoration: line-through;
}

.plan-price strong {
  display: block;
  margin-top: 6px;
  color: var(--gold);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1;
}

.offer-plan h4 {
  margin: 22px 0 12px;
}

.combo-deliverables,
.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.combo-deliverables li,
.check-list li {
  position: relative;
  padding: 14px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.combo-deliverables li::before {
  content: none;
}

.check-list li::before {
  display: none;
}

.combo-deliverables strong,
.check-list li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
  color: #f7fbff;
  font-size: 0.95rem;
  line-height: 1.35;
}

.whatsapp-mini-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: #25d366 !important;
  vertical-align: middle;
  flex: 0 0 18px;
}

.whatsapp-mini-icon svg {
  width: 100%;
  height: 100%;
  color: #25d366 !important;
}

.combo-deliverables span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.48;
}

.combo-deliverables em {
  display: block;
  margin-top: 6px;
  color: var(--gold);
  font-style: normal;
  font-weight: 900;
  font-size: 0.86rem;
}

.combo-deliverables s {
  color: #c8ff4d;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(200, 255, 77, 0.9);
  white-space: nowrap;
}

.offer-plan .button {
  margin-top: 24px;
}

.plan-microcopy,
.offer-secure {
  text-align: center;
}

.offer-support {
  display: flex;
  justify-content: center;
  margin-top: 14px;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 860px;
  margin: 34px auto 0;
}

.faq-item {
  width: 100%;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 26, 45, 0.75);
  color: var(--text);
  text-align: left;
  cursor: pointer;
}

.faq-item span {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-weight: 900;
}

.faq-item span::after {
  content: "+";
  color: var(--cyan);
  font-size: 1.25rem;
}

.faq-item[aria-expanded="true"] span::after {
  content: "-";
}

.faq-item p {
  display: none;
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.faq-item[aria-expanded="true"] p {
  display: block;
}

.support-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  max-width: 860px;
  margin: 24px auto 0;
  padding: 22px;
  border: 1px solid rgba(53, 233, 255, 0.22);
  border-radius: 8px;
  background:
    radial-gradient(circle at 14% 10%, rgba(53, 233, 255, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(10, 28, 48, 0.92), rgba(14, 18, 36, 0.92));
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
}

.support-box h3 {
  margin: 8px 0 8px;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  letter-spacing: 0;
}

.support-box p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.whatsapp-button {
  color: #03130b;
  border-color: rgba(37, 211, 102, 0.55);
  background: linear-gradient(135deg, var(--action-2), var(--action));
  box-shadow: 0 18px 44px rgba(37, 211, 102, 0.22);
}

.whatsapp-button:hover {
  box-shadow: 0 22px 52px rgba(37, 211, 102, 0.3);
}

.final-cta {
  text-align: center;
}

.final-cta h2 {
  max-width: 920px;
  margin-inline: auto;
}

.final-cta .button {
  margin-top: 26px;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 60px;
  z-index: 42;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  padding: 0;
  border: 1px solid rgba(37, 211, 102, 0.55);
  border-radius: 50%;
  color: var(--action);
  background: #050509;
  box-shadow: 0 0 0 5px rgba(37, 211, 102, 0.1), 0 14px 34px rgba(37, 211, 102, 0.24);
}

.floating-whatsapp span {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
}

.floating-whatsapp svg {
  width: 30px;
  height: 30px;
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 7px rgba(37, 211, 102, 0.13), 0 18px 42px rgba(37, 211, 102, 0.32);
}

.site-footer {
  margin-top: 36px;
  padding: 54px 20px 34px;
  border-top: 1px solid rgba(53, 233, 255, 0.16);
  background: linear-gradient(135deg, rgba(6, 9, 19, 0.98), rgba(10, 30, 58, 0.98));
}

.footer-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 1.35rem;
  font-weight: 900;
}

.footer-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 8px;
  color: #06101a;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
}

.footer-specialty {
  margin-top: 28px;
}

.footer-specialty span {
  color: var(--cyan);
  font-weight: 900;
}

.footer-specialty p,
.footer-made,
.footer-bottom,
.legal-box {
  color: rgba(255, 255, 255, 0.72);
}

.footer-divider {
  height: 1px;
  margin: 32px 0;
  background: rgba(53, 233, 255, 0.16);
}

.legal-box {
  max-width: 900px;
  margin: 34px auto 0;
  padding: 20px 24px;
  border: 1px solid rgba(53, 233, 255, 0.25);
  border-radius: 8px;
  background: rgba(0, 152, 255, 0.07);
  line-height: 1.6;
  text-align: left;
}

.legal-box strong {
  color: var(--gold);
}

.footer-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(53, 233, 255, 0.16);
  font-size: 0.84rem;
}

.image-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.image-modal.is-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(3, 7, 17, 0.86);
  cursor: zoom-out;
}

.modal-dialog {
  position: relative;
  z-index: 1;
  width: min(94vw, 920px);
  max-height: 92vh;
  padding: 14px;
  border: 1px solid rgba(53, 233, 255, 0.28);
  border-radius: 8px;
  background: rgba(6, 9, 19, 0.96);
  box-shadow: var(--shadow);
}

.modal-dialog img {
  width: 100%;
  max-height: calc(92vh - 28px);
  object-fit: contain;
  border-radius: 6px;
}

.modal-close {
  position: absolute;
  right: 8px;
  top: 8px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(6, 9, 19, 0.88);
  color: #fff;
  cursor: pointer;
  font-size: 1.35rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes ctaPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.028);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero,
  .kit-section,
  .map-bonus-card,
  .experts-grid,
  .offer-options {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-media {
    order: 2;
  }

  .opportunity-grid,
  .practical-grid,
  .timeline,
  .testimonial-grid,
  .footer-bottom {
    grid-template-columns: 1fr 1fr;
  }

  .timeline::before {
    display: none;
  }

  .ebook-plan {
    align-self: stretch;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 12px 14px;
  }

  .brand span:last-child {
    display: none;
  }

  .hero,
  .opportunity-section,
  .position-section,
  .kit-section,
  .experts-section,
  .testimonials-section,
  .offer-section,
  .faq-section,
  .final-cta {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    padding-top: 28px;
  }

  .hero-copy h1 {
    font-size: 2.08rem;
  }

  .hero-bullets,
  .opportunity-grid,
  .practical-grid,
  .timeline,
  .testimonial-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .hero-actions .button,
  .section-cta .button,
  .support-box .button {
    width: 100%;
  }

  .support-box {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .video-frame {
    width: min(100%, 340px);
  }

  .market-seals {
    display: grid;
  }

  .opportunity-section,
  .position-section,
  .kit-section,
  .experts-section,
  .testimonials-section,
  .offer-section,
  .faq-section,
  .final-cta {
    padding: 56px 0;
  }

  .testimonial-image-button {
    height: auto;
  }

  .testimonial-grid img {
    height: auto;
  }

  .testimonial-video-card {
    width: min(100%, 330px);
    margin: 0 auto;
  }

  .market-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 360px);
    margin-inline: auto;
  }

  .map-nodes {
    grid-template-columns: 1fr;
  }

  .expert-card {
    grid-template-columns: 1fr;
  }

  .expert-card img {
    width: 100%;
    height: auto;
    max-height: 420px;
  }

  .best-badge {
    position: static;
    margin-bottom: 10px;
  }

  .sticky-buy {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
  }

  .sticky-buy span,
  .sticky-buy a {
    text-align: center;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 60px;
    width: 54px;
    height: 54px;
  }
}
