:root {
  --bg: #0b1020;
  --bg-2: #0f1730;
  --surface: #121a36;
  --surface-2: #18224a;
  --border: rgba(255, 255, 255, 0.08);
  --text: #eef1ff;
  --text-muted: #a8b0d3;
  --primary: #1a5fb4;
  --primary-2: #26c6da;
  --accent: #00d68f;
  --danger: #e85d75;
  --gold: #26c6da;
  --gradient-hero:
    radial-gradient(1200px 600px at 80% -10%, #18224a, transparent 60%),
    radial-gradient(900px 500px at 0% 10%, #18224a, transparent 60%),
    linear-gradient(180deg, #0b1020 0%, #0a0f1f 100%);
  --gradient-cta: linear-gradient(135deg, #1a5fb4 0%, #26c6da 100%);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.35);
  --shadow-cta: 0 14px 30px #18224a;
  --radius: 16px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.lp-bg-grid {
  position: fixed;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  pointer-events: none;
}
.lp-bg-grid::before {
  content: "";
  position: absolute;
  inset: -50%;
  width: 200%;
  height: 200%;
  background-image:
    linear-gradient(rgba(38, 198, 218, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38, 198, 218, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  animation: lp-grid-move 24s linear infinite;
}
.lp-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.12;
  z-index: -2;
  pointer-events: none;
  animation: lp-orb-float 10s ease-in-out infinite;
}
.lp-orb-1 {
  width: 380px;
  height: 380px;
  background: #26c6da;
  top: -120px;
  right: -120px;
}
.lp-orb-2 {
  width: 320px;
  height: 320px;
  background: #1a5fb4;
  bottom: 10%;
  left: -120px;
  animation-delay: 3s;
}
.lp-orb-3 {
  width: 220px;
  height: 220px;
  background: #26c6da;
  top: 38%;
  right: 18%;
  animation-delay: 5s;
}
@keyframes lp-grid-move {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(56px, 56px);
  }
}
@keyframes lp-orb-float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-24px) scale(1.04);
  }
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
h1,
h2,
h3,
h4 {
  font-family: "Poppins", sans-serif;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 1rem;
}
h3 {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
p {
  color: var(--text-muted);
}
.nowrap {
  white-space: nowrap;
}
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  padding: 32px 0;
  position: relative;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #18224a;
  color: #26c6da;
  border: 1px solid #18224a;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 18px;
}
.text-center {
  text-align: center;
}
.text-danger {
  color: var(--danger);
}
.text-primary {
  color: var(--primary-2);
}
.intro-narrow {
  max-width: 720px;
  margin: 0 auto;
}
.topbar {
  background: var(--gradient-cta);
  color: #fff;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 16px;
}
.topbar span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.pulse {
  width: 8px;
  height: 8px;
  min-width: 8px;
  min-height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  animation: pulse 1.6s infinite;
  display: inline-block;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(140%) blur(10px);
  background: rgba(11, 16, 32, 0.75);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: var(--container);
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
}
.logo-image {
  width: auto;
  max-width: 260px;
  height: 46px;
  object-fit: contain;
}
.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--gradient-cta);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  box-shadow: var(--shadow-cta);
}
.nav-cta {
  background: var(--gradient-cta);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--shadow-cta);
  transition: transform 0.2s ease;
}
.nav-cta:hover {
  transform: translateY(-2px);
}
.hero {
  background: var(--gradient-hero);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  font-weight: 900;
  line-height: 1.05;
  background: linear-gradient(180deg, #fff 30%, #cfd6ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 18px;
}
.hero h1 em {
  font-style: normal;
  background: var(--gradient-cta);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: #cfd5ee;
  max-width: 560px;
  margin-bottom: 28px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gradient-cta);
  color: #fff;
  padding: 16px 26px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: var(--shadow-cta);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px #18224a;
}
.btn-primary.large {
  padding: 20px 30px;
  font-size: 1.05rem;
}
.btn-ghost {
  color: #fff;
  padding: 14px 20px;
  border-radius: 14px;
  font-weight: 600;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
  color: #b9c0e0;
  font-size: 0.9rem;
}
.trust-row div {
  display: flex;
  align-items: center;
  gap: 8px;
}
.trust-row .dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}
.hero-card {
  position: relative;
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow-soft);
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, #1a5fb4, #26c6da, transparent);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.hero-card h3 {
  color: #fff;
}
.hero-schedule {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  display: grid;
  gap: 6px;
  color: #dce2ff;
  font-size: 0.92rem;
}
.hero-schedule strong {
  color: #fff;
}
.hero-card ul,
.offer-list {
  list-style: none;
  margin-top: 14px;
  display: grid;
  gap: 12px;
}
.hero-card li,
.offer-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #dce2ff;
}
.check {
  flex: 0 0 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(0, 214, 143, 0.15);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 900;
}
.hero-pill {
  display: inline-block;
  background: #18224a;
  border: 1px solid #1a5fb4;
  color: var(--gold);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.pain {
  background: linear-gradient(180deg, #0a0f1f, #0b1020);
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}
.pain-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}
.pain-card:hover {
  transform: translateY(-4px);
  border-color: #18224a;
}
.pain-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #18224a;
  color: var(--danger);
  font-size: 1.1rem;
  margin-bottom: 14px;
}
.pain-card h3 {
  color: #fff;
}
.pain-card p {
  font-size: 0.95rem;
}
.pain-cta {
  margin-top: 30px;
  text-align: center;
  font-size: 1.05rem;
  color: #fff;
  background: #18224a;
  border: 1px dashed #18224a;
  padding: 18px;
  border-radius: 14px;
}
.solution {
  background:
    radial-gradient(900px 400px at 50% -20%, #18224a, transparent 60%), #0b1020;
}
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}
.feature:hover {
  transform: translateY(-6px);
  border-color: #18224a;
}
.feature .badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gradient-cta);
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}
.feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #1a5fb4, #18224a);
  color: var(--primary-2);
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.feature h3 {
  color: #fff;
}
.feature ul {
  list-style: none;
  margin-top: 10px;
  display: grid;
  gap: 8px;
}
.feature li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #cfd6ee;
  font-size: 0.95rem;
}
.feature li::before {
  content: "OK";
  color: var(--accent);
  font-weight: 900;
  font-size: 0.75rem;
}
.feature-link-subtle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: #9edff2;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  opacity: 0.92;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}
.feature-link-subtle::after {
  content: "↗";
  font-size: 0.95rem;
}
.feature-link-subtle:hover {
  opacity: 1;
  transform: translateX(2px);
}
.audience {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 30px;
}
.aud-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
}
.aud-card.yes {
  border-color: #18224a;
}
.aud-card.no {
  border-color: #18224a;
}
.aud-card h3 {
  color: #fff;
}
.aud-card ul {
  list-style: none;
  margin-top: 16px;
  display: grid;
  gap: 12px;
}
.aud-card li {
  display: flex;
  gap: 10px;
  color: #dce2ff;
  align-items: flex-start;
}
.aud-card.yes li::before {
  content: "OK";
  color: var(--accent);
  font-weight: 900;
  font-size: 0.75rem;
}
.aud-card.no li::before {
  content: "X";
  color: var(--danger);
  font-weight: 900;
}
.results {
  background: linear-gradient(180deg, #0a0f1f, #0b1020);
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}
.result {
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.result .num {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-size: 2rem;
  background: var(--gradient-cta);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.imagine {
  margin-top: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
}
.imagine h3 {
  color: #fff;
  margin-bottom: 14px;
}
.imagine ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 12px;
}
.imagine li {
  display: flex;
  gap: 10px;
  color: #dce2ff;
}
.imagine li::before {
  content: "OK";
  color: var(--accent);
  font-weight: 900;
  font-size: 0.75rem;
}
.imagine-highlight {
  margin-top: 14px;
  color: #fff;
  font-weight: 700;
}
.difference {
  background:
    radial-gradient(700px 320px at 50% -10%, #18224a, transparent 65%), #0a0f1f;
}
.difference-grid,
.bonus-grid,
.mentors-grid {
  display: grid;
  gap: 20px;
  margin-top: 32px;
}
.difference-grid {
  grid-template-columns: repeat(3, 1fr);
}
.difference-card,
.bonus-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.difference-card h3,
.bonus-card h3 {
  color: #fff;
}
.offer {
  background:
    radial-gradient(700px 300px at 50% 0, #18224a, transparent 60%), #0b1020;
}
.capture-layout {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.price-card,
.lead-form-card {
  background: linear-gradient(180deg, #13193a, #0f1430);
  border: 1px solid #18224a;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}
.lead-form-card {
  border-color: #18224a;
}
.price-tag {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 14px 0 6px;
}
.price-old {
  color: #9aa2c5;
  font-size: 1rem;
}
.price-new {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-size: clamp(2.35rem, 5.5vw, 3.2rem);
  color: #fff;
  line-height: 1;
}
.price-total {
  color: #dce2ff;
  font-size: 1rem;
  font-weight: 700;
}
.price-installments {
  color: #ffd6b3;
  font-weight: 600;
  margin-bottom: 18px;
}
.schedule-box {
  margin-top: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 16px;
}
.schedule-box h4 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 1rem;
}
.schedule-box p + p {
  margin-top: 6px;
}
.campaigns-schedule-list {
  margin: 18px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: #dce2ff;
}
.campaigns-schedule-list li {
  line-height: 1.6;
}
.reminder-card .price-installments {
  color: #dce2ff;
}
.reminder-form-card .feedback-box {
  margin: 16px 0 0;
}
.launch-simple-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}
.launch-simple-shell {
  width: 100%;
  max-width: 760px;
}
.launch-simple-card {
  background: linear-gradient(180deg, #13193a, #0f1430);
  border: 1px solid #18224a;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}
.launch-simple-card h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin: 12px 0 12px;
  color: #fff;
}
.launch-simple-card p {
  color: #cfd6ee;
  margin: 0 0 18px;
}
.launch-simple-actions {
  margin-top: 20px;
}
.launch-simple-actions .btn-primary {
  width: 100%;
}
.countdown {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 22px 0 8px;
  flex-wrap: wrap;
}
.cd-box {
  background: #18224a;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 14px;
  min-width: 72px;
  text-align: center;
}
.cd-num {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: #fff;
}
.cd-label {
  font-size: 0.7rem;
  color: #a8b0d3;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.lead-form-card h3 {
  color: #fff;
}
.lead-form {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}
.form-group {
  display: grid;
  gap: 8px;
}
.form-group label {
  color: #fff;
  font-weight: 600;
}
.form-group input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid #18224a;
  border-radius: 14px;
  background: #1a5fb4;
  color: #fff;
  font: inherit;
}
.form-group input:focus {
  outline: 2px solid #18224a;
  border-color: #1a5fb4;
}
.choice-grid {
  display: grid;
  gap: 10px;
}
.choice-card {
  display: flex;
  gap: 12px;
  align-items: center;
  border: 1px solid #1a5fb4;
  border-radius: 14px;
  padding: 14px;
  background: #18224a;
  color: #dce2ff;
  cursor: pointer;
}
.choice-card input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 0;
  padding: 0;
  flex: 0 0 18px;
  accent-color: #26c6da;
  border: none;
  background: transparent;
}
.choice-card span {
  flex: 1 1 auto;
}
.check-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #dce2ff;
  font-size: 0.92rem;
}
.check-row input {
  margin-top: 4px;
}
.check-row a {
  color: #26c6da;
  text-decoration: underline;
}
.form-submit {
  margin-top: 6px;
}
.lead-form-support {
  margin-top: 16px;
  display: flex;
  justify-content: center;
}
.lead-form-support a {
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  gap: 14px;
  color: #26c6da;
  text-decoration: none;
  text-align: center;
  font-weight: 700;
}
.lead-form-support a svg {
  width: 34px;
  height: 34px;
  fill: #25d366;
  flex: 0 0 34px;
  margin-top: 2px;
}
.feedback-box {
  max-width: 980px;
  margin: 20px auto 0;
  border-radius: 16px;
  padding: 18px 20px;
  border: 1px solid transparent;
}
.feedback-box p + p {
  margin-top: 8px;
}
.feedback-success {
  background: #18224a;
  border-color: #1a5fb4;
  color: #d9fff0;
}
.feedback-error {
  background: #18224a;
  border-color: #18224a;
  color: #ffe0e8;
}
.author {
  background: #0a0f1f;
}
.bonus {
  background: linear-gradient(180deg, #0b1020, #0a0f1f);
}
.author-card {
  display: grid;
  grid-template-columns: minmax(170px, 220px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  margin-top: 30px;
}
.mentors-grid {
  grid-template-columns: 1fr;
  align-items: stretch;
}
.mentor-photo-placeholder,
.mentor-photo {
  width: 100%;
  max-width: 200px;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
}
.mentor-photo-placeholder {
  border: 1px dashed rgba(255, 255, 255, 0.28);
  background:
    linear-gradient(135deg, rgba(26, 95, 180, 0.18), rgba(38, 198, 218, 0.08)),
    rgba(255, 255, 255, 0.03);
  display: grid;
  place-items: center;
  color: #cfd6ee;
  font-weight: 700;
  text-align: center;
  padding: 18px;
}
.mentor-photo {
  display: block;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-cta);
}
.mentor-copy {
  min-width: 0;
}
.mentor-copy h3,
.mentor-copy p,
.mentor-copy .role,
.final-note {
  overflow-wrap: anywhere;
  word-break: normal;
}
.avatar {
  width: 200px;
  height: 200px;
  border-radius: 24px;
  background: linear-gradient(135deg, #1a5fb4, #26c6da, #00d6d6);
  display: grid;
  place-items: center;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-size: 4rem;
  box-shadow: var(--shadow-cta);
}
.author-card h3 {
  color: #fff;
  font-size: 1.4rem;
}
.author-card .role {
  color: var(--primary-2);
  font-weight: 700;
  margin-bottom: 10px;
}
.author-extra {
  margin-top: 8px;
}
.faq {
  background: #0b1020;
}
.faq-list {
  margin-top: 24px;
  display: grid;
  gap: 12px;
  max-width: 820px;
  margin-inline: auto;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: #fff;
  padding: 18px 22px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: inherit;
}
.faq-q .ico {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #18224a;
  color: var(--primary-2);
  display: grid;
  place-items: center;
  font-weight: 900;
  transition: transform 0.25s ease;
}
.faq-item.open .faq-q .ico {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 22px;
  color: var(--text-muted);
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 22px 18px;
}
.final {
  background:
    radial-gradient(700px 300px at 50% 0, #18224a, transparent 60%),
    linear-gradient(180deg, #0b1020, #0a0f1f);
  text-align: center;
}
.final h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}
.final p {
  max-width: 680px;
  margin: 14px auto 26px;
  color: #cfd6ee;
  font-size: 1.05rem;
}
.final-note {
  margin-top: 14px;
  font-size: 0.85rem;
  color: #a8b0d3;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  text-wrap: balance;
}
.final-note a {
  color: #26c6da;
  text-decoration: none;
  font-weight: 700;
}
footer {
  background: #070b18;
  border-top: 1px solid var(--border);
  padding: 30px 20px;
  color: #8a92b6;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.7;
}
footer a {
  color: #26c6da;
}
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  padding: 10px 14px;
  background: rgba(11, 16, 32, 0.92);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--border);
  display: none;
}
.sticky-cta .btn-primary {
  width: 100%;
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
@media (max-width: 1199px) {
  .container {
    max-width: 992px;
  }
}
@media (max-width: 991px) {
  .container {
    max-width: 760px;
  }
  .hero {
    padding: 60px 0 40px;
  }
  .hero-grid,
  .mentors-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .capture-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .author-card {
    grid-template-columns: minmax(170px, 220px) minmax(0, 1fr);
  }
  .features,
  .difference-grid,
  .bonus-grid,
  .pain-grid,
  .results-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .section {
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .nav-cta {
    display: none;
  }
  .features,
  .audience,
  .difference-grid,
  .bonus-grid,
  .mentors-grid,
  .pain-grid,
  .results-grid {
    grid-template-columns: 1fr;
  }
  .author-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .mentor-photo-placeholder {
    margin: 0 auto;
  }
  .avatar {
    margin: 0 auto;
  }
  .sticky-cta {
    display: block;
  }
  body {
    padding-bottom: 80px;
  }
  .section {
    padding: 50px 0;
  }
}
@media (max-width: 577px) {
  .lp-orb-1 {
    width: 260px;
    height: 260px;
    top: -80px;
    right: -90px;
  }
  .lp-orb-2 {
    width: 220px;
    height: 220px;
    left: -90px;
  }
  .lp-orb-3 {
    width: 150px;
    height: 150px;
    right: 8%;
  }
  .topbar {
    font-size: 0.8rem;
    padding: 8px 12px;
  }
  .hero {
    padding: 40px 0 30px;
  }
  .btn-primary,
  .btn-ghost {
    width: 100%;
    justify-content: center;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .cd-box {
    min-width: 62px;
    padding: 8px 10px;
  }
}
@media (max-width: 320px) {
  .topbar span {
    gap: 6px;
    align-items: flex-start;
  }
  .pulse {
    margin-top: 8px;
  }
  .nav {
    padding: 12px 14px;
  }
  .logo {
    font-size: 0.9rem;
  }
  .logo-image {
    max-width: 190px;
    height: 34px;
  }
  .logo-mark {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }
  .hero {
    padding: 30px 0 20px;
  }
  .container {
    padding: 0 14px;
  }
  .eyebrow {
    font-size: 0.72rem;
    padding: 6px 10px;
    line-height: 1.3;
    word-break: break-word;
  }
  .hero h1 {
    font-size: 1.72rem;
    line-height: 1.08;
    margin-bottom: 14px;
  }
  .hero p.lead {
    font-size: 0.94rem;
    line-height: 1.55;
    max-width: 100%;
    margin-bottom: 22px;
  }
  .hero-ctas {
    gap: 10px;
  }
  .btn-primary.large,
  .btn-primary,
  .btn-ghost {
    padding: 15px 16px;
    font-size: 0.92rem;
    line-height: 1.3;
  }
  .trust-row {
    gap: 10px;
    font-size: 0.84rem;
  }
  .trust-row div {
    width: 100%;
  }
  h2 {
    font-size: 1.45rem;
  }
  .section {
    padding: 40px 0;
  }
  .hero-card,
  .price-card,
  .lead-form-card,
  .author-card,
  .imagine,
  .difference-card,
  .bonus-card,
  .aud-card,
  .result,
  .pain-card {
    padding: 18px;
  }
  .hero-card {
    border-radius: 20px;
  }
  .hero-card ul,
  .offer-list {
    gap: 10px;
  }
  .hero-card li,
  .offer-list li {
    gap: 10px;
    font-size: 0.95rem;
    min-width: 0;
  }
  .hero-schedule {
    font-size: 0.86rem;
  }
  .lead-form-support a {
    flex-wrap: wrap;
    gap: 8px;
  }
  .lead-form-support a svg {
    width: 28px;
    height: 28px;
    flex-basis: 100%;
    margin: 0 auto;
  }
  .lead-form-support a span {
    width: 100%;
  }
  .hero-schedule .nowrap,
  .final-note .nowrap,
  .lead-form-support .nowrap {
    white-space: normal;
  }
  .nowrap {
    white-space: normal;
  }
  .countdown {
    gap: 8px;
  }
  .cd-box {
    min-width: 0;
    width: calc(50% - 4px);
    padding: 8px 6px;
  }
  .mentor-photo-placeholder {
    max-width: 160px;
  }
  footer {
    padding: 22px 14px;
    font-size: 0.82rem;
  }
}

.price-card-action {
  margin-top: 24px;
}
.price-card-action .btn-primary {
  display: flex;
  width: 100%;
}

