/* Design system */
:root {
  --black: #050505;
  --ink: #101114;
  --panel: #15171b;
  --muted: #aeb5c2;
  --text: #f7f8fa;
  --body: #d6dbe5;
  --soft: #f4f5f7;
  --line: rgba(255, 255, 255, 0.13);
  --line-dark: rgba(8, 9, 11, 0.12);
  --red: #f21d32;
  --red-dark: #c91123;
  --green: #19b96f;
  --radius: 8px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--black);
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
}

section {
  scroll-margin-top: 96px;
}

h1,
h2,
h3 {
  overflow-wrap: anywhere;
}

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

.section-dark {
  color: var(--text);
  background: var(--black);
}

.section-light {
  background: var(--soft);
}

.section-light h1,
.section-light h2,
.section-light h3 {
  color: var(--ink);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.transformation h2,
.projects h2,
.comparison h2,
.offer h2,
.income h2,
.final-cta h2 {
  color: #fff;
}

.section-head {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-head h2,
.split-grid h2,
.faq h2,
.final-box h2 {
  margin: 0;
  font-family: "Poppins", "Inter", sans-serif;
  font-size: clamp(1.9rem, 2.75vw, 3rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.section-head p,
.split-grid p,
.final-box p {
  color: #66707f;
  font-size: 1.08rem;
}

.section-dark .section-head p,
.section-dark .split-grid p,
.section-dark .final-box p {
  color: var(--body);
}

.method .section-head {
  max-width: 860px;
}

.method .section-head h2 {
  max-width: 820px;
  font-size: clamp(1.9rem, 2.65vw, 2.9rem);
  line-height: 1.12;
}

.method .section-head p {
  max-width: 760px;
}

.section-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.section-kicker::before,
.eyebrow span {
  content: "";
  width: 30px;
  height: 2px;
  background: currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-red {
  background: linear-gradient(180deg, #ff3348, var(--red));
  box-shadow: 0 18px 46px rgba(242, 29, 50, 0.34);
}

.btn-red:hover {
  background: linear-gradient(180deg, #ff4558, var(--red-dark));
}

.btn-large {
  min-height: 58px;
  padding-inline: 32px;
}

.btn-xl {
  min-height: 66px;
  width: min(100%, 430px);
}

.hero-action {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 8px;
}

.hero-price {
  width: auto;
  min-width: 170px;
  margin-top: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.hero-price span,
.hero-price small,
.final-price span {
  display: block;
  color: #c7ceda;
}

.hero-price span {
  font-size: 0.88rem;
  line-height: 1.2;
}

.hero-price strong,
.final-price strong {
  display: block;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  line-height: 1;
  white-space: nowrap;
}

.hero-price small {
  margin-top: 5px;
  font-size: 0.78rem;
  line-height: 1.35;
}

/* Header */
.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 100;
  width: min(var(--container), calc(100% - 32px));
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 0 14px 0 18px;
  color: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(8, 9, 11, 0.88);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.brand img {
  width: auto;
  height: 34px;
  max-width: 160px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 26px;
  color: #c8ced8;
  font-weight: 700;
}

.nav-links a:hover {
  color: #fff;
}

.nav-buy {
  display: none;
}

.header-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 20px;
  border-radius: 8px;
  background: var(--red);
  color: #fff;
  font-weight: 900;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
}

/* Hero */
.hero {
  position: relative;
  padding: 96px 0 26px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 18%, rgba(25, 185, 111, 0.16), transparent 26%),
    radial-gradient(circle at 76% 22%, rgba(242, 29, 50, 0.16), transparent 28%),
    linear-gradient(135deg, #050505, #111216 52%, #050505);
}

.hero-grid,
.tool-strip {
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 48px;
}

.hero h1 {
  max-width: 600px;
  margin: 0;
  font-family: "Poppins", "Inter", sans-serif;
  font-size: clamp(2.2rem, 2.55vw, 3.1rem);
  line-height: 1.06;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 560px;
  margin: 16px 0 0;
  color: var(--body);
  font-size: 1rem;
}

.hero-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
  margin: 20px 0 22px;
  padding: 0;
  list-style: none;
}

.hero-checks li {
  position: relative;
  padding-left: 26px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
}

.hero-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
}

.hero-proof {
  margin: 16px 0 0;
  color: #c7ceda;
  font-weight: 700;
}

.hero-art {
  position: relative;
  display: block;
}

.hero-person {
  position: relative;
  width: 100%;
}

.hero-person img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: 64% center;
  border-radius: 8px;
  filter: none;
}

.tool-strip {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}

.tool-strip span {
  min-height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: #c7ceda;
  font-weight: 900;
}

/* Sections */
.video-section,
.transformation,
.method,
.projects,
.deliverables,
.tools,
.comparison,
.offer,
.income,
.faq,
.final-cta {
  padding: 96px 0;
}

.video-frame {
  width: min(980px, 100%);
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #000;
  box-shadow: var(--shadow);
}

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

.split-grid,
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 58px;
}

.transformation {
  color: #fff;
  background: #050505;
}

.transformation .split-grid {
  align-items: center;
  gap: clamp(34px, 5vw, 72px);
}

.transformation h2 {
  max-width: 620px;
  color: #fff;
  font-size: clamp(1.95rem, 2.85vw, 3rem);
  line-height: 1.1;
}

.transformation .split-grid p {
  max-width: 600px;
  color: #c7ceda;
}

.before-after,
.cards-grid,
.project-grid,
.tools-grid,
.compare-grid {
  display: grid;
  gap: 16px;
}

.before-after,
.compare-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.before-after {
  align-items: stretch;
}

.cards-grid,
.tools-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tools-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.tools .section-head {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.tools .section-head h2 {
  font-size: clamp(1.9rem, 2.7vw, 2.9rem);
}

.project-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.projects {
  color: #fff;
  background: #050505;
}

.projects .section-head {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.projects .section-head h2 {
  color: #fff;
  font-size: clamp(1.9rem, 2.7vw, 2.9rem);
}

.comparison {
  color: #fff;
  background: #050505;
}

.comparison .section-head h2 {
  color: #fff;
}

.projects .section-head p {
  color: var(--green);
}

.before-after article,
.info-card,
.project-card,
.tool-card,
.compare-card {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: #fff;
}

.before-after article {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.before-after article:first-child {
  background: #f7f8fa;
}

.before-after article:last-child {
  background:
    linear-gradient(135deg, rgba(25, 185, 111, 0.12), transparent 52%),
    #fff;
}

.before-after span,
.info-card span {
  color: var(--red);
  font-weight: 900;
}

.before-after strong,
.info-card h3,
.project-card span,
.tool-card strong,
.compare-card h3 {
  display: block;
  margin: 22px 0 10px;
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
  line-height: 1.1;
}

.before-after strong {
  margin-top: 26px;
  color: #050505;
  font-size: clamp(1.15rem, 1.45vw, 1.45rem);
}

.project-card {
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.04)),
    #111216;
  border-color: var(--line);
}

.project-card strong,
.tool-card p,
.info-card p,
.compare-card p {
  color: #66707f;
}

.project-card strong {
  color: #c7ceda;
}

.tool-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 20px;
  text-align: center;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.tool-card:hover {
  transform: translateY(-4px);
  border-color: rgba(242, 29, 50, 0.3);
  box-shadow: 0 22px 60px rgba(8, 9, 11, 0.08);
}

.tool-logo {
  width: 64px;
  height: 64px;
  display: block;
  margin-bottom: 14px;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
}

.tool-card strong {
  margin: 8px 0 8px;
  font-size: 1.05rem;
}

.tool-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
}

.project-thumb {
  position: relative;
  height: 190px;
  margin-bottom: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: #0b0c0f;
}

.project-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 420ms ease;
}

.project-card:hover .project-thumb img {
  transform: scale(1.035);
}

.deliverable-mockup {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 16px;
}

.mockup-book,
.mockup-screen,
.mockup-phone {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #111216;
  box-shadow: var(--shadow);
}

.mockup-book {
  grid-row: span 2;
  min-height: 390px;
  background:
    linear-gradient(150deg, #f7f8fa 0 14%, #111216 14% 100%),
    radial-gradient(circle at 72% 20%, rgba(242, 29, 50, 0.22), transparent 30%);
}

.mockup-book span,
.mockup-screen span,
.mockup-phone span {
  color: var(--red);
  font-weight: 900;
}

.mockup-book strong,
.mockup-screen strong,
.mockup-phone strong {
  display: block;
  margin-top: 28px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 1.4rem;
  line-height: 1.1;
}

.featured {
  color: #fff;
  background: #111216;
  border-color: var(--line);
}

.featured p {
  color: #c7ceda;
}

/* Offer */
.offer {
  color: #fff;
  background:
    radial-gradient(circle at 78% 18%, rgba(242, 29, 50, 0.16), transparent 28%),
    radial-gradient(circle at 8% 82%, rgba(25, 185, 111, 0.12), transparent 24%),
    #050505;
}

.offer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  align-items: center;
  gap: 42px;
}

.offer-copy h2 {
  max-width: 720px;
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.9rem, 2.75vw, 3rem);
  line-height: 1.1;
}

.offer-copy p {
  max-width: 660px;
  color: var(--body);
  font-size: 1.08rem;
}

.offer-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.offer-list li {
  position: relative;
  padding-left: 28px;
  color: #fff;
  font-weight: 800;
}

.offer-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
}

.price-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    #111216;
  box-shadow: var(--shadow);
}

.price-label {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(242, 29, 50, 0.18);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price-old {
  color: #c7ceda;
  font-weight: 800;
}

.price-main {
  margin: 4px 0 14px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: clamp(3rem, 5vw, 4.6rem);
  font-weight: 900;
  line-height: 1;
}

.price-card p {
  margin: 0 0 22px;
  color: var(--body);
}

.safe-buy {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 18px;
}

.safe-buy span {
  min-height: 44px;
  display: grid;
  place-items: center;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #d6dbe5;
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
}

/* FAQ */
.accordion {
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: #fff;
}

.faq-item {
  width: 100%;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 22px;
  border: 0;
  border-bottom: 1px solid var(--line-dark);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  font-weight: 900;
}

.faq-item strong {
  color: var(--red);
  font-size: 1.5rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--line-dark);
  transition: max-height 220ms ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 22px 22px;
  color: #66707f;
}

/* Income opportunity */
.income {
  color: #fff;
  background:
    radial-gradient(circle at 20% 18%, rgba(25, 185, 111, 0.14), transparent 26%),
    radial-gradient(circle at 84% 70%, rgba(242, 29, 50, 0.12), transparent 28%),
    #050505;
}

.income-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 42px;
}

.income-copy h2 {
  max-width: 680px;
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.9rem, 2.75vw, 3rem);
  line-height: 1.1;
}

.income-copy p {
  max-width: 660px;
  color: var(--body);
  font-size: 1.05rem;
}

.income-cards {
  display: grid;
  gap: 14px;
}

.income-cards article {
  min-height: 142px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    #111216;
}

.income-cards span {
  color: var(--green);
  font-weight: 900;
}

.income-cards strong {
  display: block;
  margin: 10px 0 6px;
  font-family: "Poppins", sans-serif;
  font-size: 1.18rem;
}

.income-cards p {
  margin: 0;
  color: #c7ceda;
}

.final-box {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.final-box p {
  max-width: 720px;
  margin: 20px auto 28px;
}

.final-price {
  margin: 0 auto 22px;
}

.final-box span {
  display: block;
  margin-top: 18px;
  color: #c7ceda;
}

/* Footer */
.footer {
  padding: 42px 0;
  color: #fff;
  background: #050505;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: #c7ceda;
}

.copyright {
  margin-top: 22px;
  color: #858d9a;
  font-size: 0.9rem;
}

/* Payment page */
.payment-page {
  min-height: 100vh;
  color: #fff;
  background:
    radial-gradient(circle at 18% 10%, rgba(25, 185, 111, 0.14), transparent 26%),
    radial-gradient(circle at 82% 22%, rgba(242, 29, 50, 0.16), transparent 30%),
    #050505;
}

.payment-header {
  width: min(var(--container), calc(100% - 32px));
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 14px auto 0;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 9, 11, 0.86);
}

.payment-back {
  color: #c7ceda;
  font-weight: 800;
}

.payment-hero {
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
  padding: 26px 0 42px;
}

.payment-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(390px, 0.55fr);
  align-items: center;
  gap: clamp(34px, 5vw, 72px);
}

.payment-copy h1 {
  max-width: 610px;
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.1rem, 2.75vw, 3.05rem);
  line-height: 1.05;
}

.payment-copy p {
  max-width: 610px;
  color: var(--body);
  font-size: 0.96rem;
  line-height: 1.5;
}

.security-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 760px;
  margin-top: 18px;
}

.security-list span {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-weight: 900;
  text-align: left;
}

.security-list strong {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #050505;
  background: var(--green);
  font-size: 0.82rem;
}

.payment-trust {
  max-width: 610px;
  margin-top: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(25, 185, 111, 0.22);
  border-radius: 8px;
  background: rgba(25, 185, 111, 0.07);
}

.payment-trust p {
  margin: 0;
  font-size: 0.92rem;
}

.payment-card {
  position: relative;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    #111216;
  box-shadow: var(--shadow);
}

.payment-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 4px;
  border-radius: 0 0 999px 999px;
  background: var(--red);
}

.payment-card h2 {
  margin: 0 0 10px;
  font-family: "Poppins", sans-serif;
  font-size: 1.42rem;
}

.payment-card p,
.payment-card small {
  color: #c7ceda;
}

.payment-card p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.45;
}

.payment-price {
  margin: 16px 0;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.payment-price span {
  display: block;
  color: #c7ceda;
  font-weight: 800;
}

.payment-price strong {
  display: block;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.55rem, 3.65vw, 3.05rem);
  line-height: 1;
}

.payment-price em {
  display: block;
  margin-top: 4px;
  color: #19b96f;
  font-style: normal;
  font-weight: 900;
}

.payment-includes {
  display: grid;
  gap: 7px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.payment-includes li {
  position: relative;
  padding-left: 24px;
  color: #fff;
  font-weight: 800;
  font-size: 0.96rem;
}

.payment-includes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
}

.payment-card small {
  display: block;
  margin-top: 10px;
  font-size: 0.86rem;
  text-align: center;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 640ms ease, transform 640ms ease;
}

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