/* ============================================================
   THE PERSONAL BRAND TO ASSET BLUEPRINT — Single-Page Sales Site
   Premium, modern, mobile-first
   ============================================================ */

:root {
  --bg: #ffffff;
  --bg-warm: #f5f1e8;      /* Premium Cream (Lazy Millionaire style) */
  --bg-ivory: #faf6ed;
  --bg-soft: #ede7da;      /* Subtle cream */
  --bg-dark: #111111;      /* Deep black */
  --ink: #111111;          /* Ink black */
  --ink-soft: #4a4742;
  --muted: #7a756c;
  --line: #ddd6c4;
  --primary: #111111;      /* Headings = black for premium minimal feel */
  --primary-d: #000000;
  --primary-soft: #f0eadb;
  --accent: #4a7043;       /* Sage Green */
  --accent-soft: #eaf0e7;
  --cta: #ff6b35;          /* Vibrant Orange (CTA) */
  --cta-d: #e85a28;
  --cta-soft: #fff0e9;
  --secondary: #1e3a5f;
  --warn: #ff5a5f;
  --gold: #ffb800;
  --radius: 16px;
  --radius-sm: 12px;
  --shadow: 0 30px 60px -30px rgba(17, 17, 17, 0.35);
  --shadow-sm: 0 12px 30px -16px rgba(17, 17, 17, 0.25);
  --maxw: 1200px;
  --maxw-narrow: 760px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg-warm);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  letter-spacing: -0.005em;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: var(--maxw-narrow); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  border-radius: 999px;
  cursor: pointer;
  border: none;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s;
  font-family: inherit;
  text-align: center;
  line-height: 1.2;
}
.btn--primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 12px 30px -8px rgba(0, 0, 0, 0.4);
}
.btn--primary:hover { background: var(--cta); transform: translateY(-2px); box-shadow: 0 18px 40px -10px rgba(255, 107, 53, 0.45); }
.btn--lg { padding: 17px 34px; font-size: 18px; }
.btn--xl { padding: 22px 40px; font-size: 21px; width: 100%; }
.btn--sm { padding: 10px 20px; font-size: 14px; }
.btn--block { display: flex; width: 100%; }

/* ---------- Eyebrow / Headings ---------- */
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.eyebrow--alt { background: #fff; color: var(--warn); }

.section { padding: 80px 0; position: relative; }
.section--bg-overlay { padding: 100px 0; }
.section__head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section__title {
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--primary);
}
.section__lead { margin-top: 18px; color: var(--ink-soft); font-size: 18px; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(245, 241, 232, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.nav.scrolled { border-color: var(--line); }
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav__brand { font-weight: 700; font-size: 15px; letter-spacing: 0.02em; color: var(--ink); text-transform: uppercase; }
.nav__logo { color: var(--cta); margin-right: 6px; }
.nav__cta { background: var(--ink); color: #fff; box-shadow: 0 10px 25px -10px rgba(0,0,0,0.4); }
.nav__cta:hover { background: var(--cta); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 160px 0 130px;
  background: var(--bg-warm);
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(700px 400px at 90% 0%, rgba(255,107,53,0.08), transparent 60%),
    radial-gradient(600px 400px at 5% 30%, rgba(74,112,67,0.06), transparent 55%);
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 56px;
}
.hero__title {
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.0;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin: 6px 0 26px;
  color: var(--ink);
}
.hero__title em { font-style: italic; color: var(--cta); font-family: 'Inter', serif; font-weight: 700; }
.hero__sub { font-size: 19px; color: var(--ink-soft); margin-bottom: 36px; max-width: 540px; line-height: 1.6; }
.hero__sub strong { color: var(--ink); font-weight: 600; }
.hero__micro { margin-top: 14px; font-size: 14px; color: var(--muted); font-weight: 600; }
.hero__device { font-size: 13px; color: var(--muted); }

/* Phone mockup */
.hero__visual { position: relative; display: flex; justify-content: center; }
.phone-mockup {
  width: 280px; height: 560px;
  background: var(--bg-dark);
  border-radius: 42px;
  padding: 14px;
  box-shadow: 0 40px 80px -30px rgba(15,23,42,0.55), 0 0 0 2px rgba(255,255,255,0.06) inset;
  position: relative; z-index: 2;
}
.phone-mockup__screen {
  background: linear-gradient(180deg, #ffffff 0%, #f3f4f0 100%);
  border-radius: 30px;
  height: 100%;
  padding: 22px 18px;
  display: flex; flex-direction: column; align-items: center;
  position: relative; overflow: hidden;
}
.phone-mockup__bar { width: 90px; height: 5px; background: #d9dbe8; border-radius: 999px; margin-bottom: 18px; }
.phone-mockup__avatar {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--cta), var(--accent));
  box-shadow: 0 8px 20px -6px rgba(255,107,53,0.5);
}
.phone-mockup__name { font-weight: 800; margin-top: 10px; font-size: 15px; }
.phone-mockup__handle { font-size: 12px; color: var(--muted); margin-bottom: 16px; }
.phone-mockup__stats { display: flex; gap: 26px; margin-bottom: 18px; }
.phone-mockup__stats div { text-align: center; }
.phone-mockup__stats strong { display: block; font-size: 16px; }
.phone-mockup__stats span { font-size: 11px; color: var(--muted); }
.phone-mockup__post {
  width: 100%; height: 110px; border-radius: 12px;
  background: linear-gradient(135deg, #fdeee4, #eaf0e7);
  margin-bottom: 10px;
}
.phone-mockup__post:nth-child(7) { background: linear-gradient(135deg, #fdeee4, #e6eef4); }

.graph { position: absolute; background: #fff; border-radius: 14px; padding: 10px 14px; box-shadow: var(--shadow-sm); }
.graph svg { width: 120px; height: 50px; display: block; }
.graph svg polyline { fill: none; stroke: var(--accent); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.graph--2 svg polyline { stroke: var(--cta); }
.graph__label { display: block; font-size: 11px; font-weight: 800; color: var(--accent); margin-top: 2px; }
.graph--2 .graph__label { color: var(--cta); }
.graph--1 { top: 30px; right: -10px; }
.graph--2 { bottom: 60px; left: -20px; }

.hero__wave { position: absolute; bottom: -1px; left: 0; right: 0; line-height: 0; }
.hero__wave svg { width: 100%; height: 70px; display: block; }
.hero__wave path { fill: var(--bg-soft); }

/* ============================================================
   FULL-BLEED SECTION BACKGROUNDS WITH OVERLAYS
   ============================================================ */
.section--bg-overlay {
  position: relative;
  background-color: var(--ink);
  background-image: var(--bg-img);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  overflow: hidden;
}
.section--bg-overlay::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(17,17,17,0.78) 0%, rgba(17,17,17,0.82) 100%);
  pointer-events: none;
}
/* Solution section: smaller slanted image behind the before/after, visible but subtle */
.section--solution.section--bg-overlay {
  background-image: none;
  background-color: var(--ink);
}
.section--solution.section--bg-overlay::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 60%; height: 75%;
  background-image: var(--bg-img);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: translate(-50%, -50%) rotate(-8deg);
  transform-origin: center;
  opacity: 0.55;
  z-index: 0;
  pointer-events: none;
  border-radius: 8px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
}
.section--solution.section--bg-overlay::before {
  background: linear-gradient(135deg, rgba(17,17,17,0.55) 0%, rgba(17,17,17,0.72) 100%);
  z-index: 1;
}
.section--solution.section--bg-overlay > .container { position: relative; z-index: 2; }

@media (max-width: 980px) {
  .section--solution.section--bg-overlay::after { width: 80%; height: 70%; opacity: 0.45; }
}
.section--bg-overlay > .container { position: relative; z-index: 2; }
.section--bg-overlay .section__title { color: #fff; }
.section--bg-overlay .section__lead { color: rgba(255,255,255,0.82); }
.section--bg-overlay .eyebrow { background: rgba(255,107,53,0.2); color: var(--cta); border: 1px solid rgba(255,107,53,0.35); }
.section--bg-overlay .transform__col { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); backdrop-filter: blur(8px); }
.section--bg-overlay .transform__col--before { background: rgba(255,90,95,0.12); border-color: rgba(255,90,95,0.3); }
.section--bg-overlay .transform__col--after { background: rgba(74,112,67,0.20); border-color: rgba(74,112,67,0.4); }
.section--bg-overlay .transform__col li { color: rgba(255,255,255,0.9); }
.section--bg-overlay .transform__arrow { background: rgba(255,107,53,0.25); color: #fff; }
.section--bg-overlay .transform__col--before .transform__label { color: #ff8a8d; }
.section--bg-overlay .transform__col--after .transform__label { color: #a8d49a; }
.section--bg-overlay .testimonial { background: rgba(255,255,255,0.95); }
.section--bg-overlay .monetize__item { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); color: #fff; backdrop-filter: blur(8px); }
.section--bg-overlay .monetize__item h3 { color: #fff; }
.section--bg-overlay .monetize__item p { color: rgba(255,255,255,0.78); }
.section--bg-overlay .monetize__cta p { color: #fff; }
.section--bg-overlay .section--final { background-color: transparent; }
.section--final.section--bg-overlay { padding: 100px 0; }

@media (max-width: 980px) {
  .section--bg-overlay { background-attachment: scroll; }
}

/* ============================================================
   PROBLEM
   ============================================================ */
.section--problem { background: var(--bg); }
.section--solution { background: var(--bg-warm); }
.section--inside { background: var(--bg); }
.section--for { background: var(--bg-warm); }
.section--proof { background: var(--bg); }
.section--monetize { background: var(--bg-warm); }
.section--pricing { background: var(--bg-soft); }
.section--faq { background: var(--bg); }
.section--final { background: var(--bg-dark); }
.problem__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.problem__list li {
  position: relative; padding: 18px 0 18px 38px; border-bottom: 1px solid var(--line);
  font-size: 18px; color: var(--ink-soft);
}
.problem__list li::before {
  content: "✕"; position: absolute; left: 0; top: 18px;
  width: 26px; height: 26px; background: #fff0f0; color: var(--warn);
  border-radius: 50%; display: grid; place-items: center; font-size: 13px; font-weight: 800;
}
.problem__callout {
  background: #fff; border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.problem__callout p { color: var(--ink-soft); margin-bottom: 18px; }
.problem__callout strong { color: var(--ink); }
.problem__warning { color: var(--warn) !important; font-weight: 600; }
.problem__punch { font-size: 20px !important; font-weight: 700; color: var(--primary) !important; }
.problem__punch span { color: var(--cta); }

/* ============================================================
   SOLUTION / TRANSFORMATION
   ============================================================ */
.transform {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: stretch;
  max-width: 920px; margin: 0 auto;
}
.transform__col {
  border-radius: var(--radius); padding: 24px 24px; border: 1px solid var(--line);
  background: #fff;
}
.transform__col--before { background: #fff7f7; }
.transform__col--after { background: var(--accent-soft); border-color: #d6e4d0; }
.transform__label {
  font-size: 12px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 14px;
}
.transform__col--before .transform__label { color: var(--warn); }
.transform__col--after .transform__label { color: var(--accent); }
.transform__col li {
  position: relative; padding: 6px 0 6px 24px; color: var(--ink-soft); font-size: 15px; line-height: 1.4;
}
.transform__col--before li::before { content: "✕"; position: absolute; left: 0; top: 6px; color: var(--warn); font-weight: 800; }
.transform__col--after li::before { content: "✓"; position: absolute; left: 0; top: 6px; color: var(--accent); font-weight: 800; }
.transform__bridge { display: grid; place-items: center; }
.transform__arrow {
  font-size: 28px; color: var(--cta); font-weight: 800;
  background: var(--cta-soft); width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center;
}

/* ============================================================
   WHAT'S INSIDE
   ============================================================ */
.inside__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.card {
  background: #fff; border-radius: var(--radius); padding: 30px 26px;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card--wide { grid-column: span 3; display: flex; align-items: center; gap: 20px; }
.card__icon {
  width: 44px; height: 44px; border-radius: 12px; background: var(--accent-soft);
  color: var(--accent); font-weight: 800; font-size: 20px; display: grid; place-items: center; margin-bottom: 16px;
}
.card--wide .card__icon { margin-bottom: 0; flex-shrink: 0; }
.card h3 { font-size: 18px; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.01em; }
.card p { color: var(--ink-soft); font-size: 15px; }
.inside__pages { text-align: center; margin: 40px 0 8px; font-size: 19px; color: var(--ink-soft); }
.inside__pages strong { color: var(--cta); }

/* Preview screenshots */
.previews { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; margin-top: 40px; }
.preview { perspective: 1000px; }
.preview__page {
  width: 150px; height: 200px; background: #fff; border-radius: 10px;
  box-shadow: var(--shadow); border: 1px solid var(--line);
  padding: 16px 14px; position: relative; overflow: hidden;
  transform: rotate(var(--rot, -2deg));
}
.preview:nth-child(even) .preview__page { --rot: 2deg; }
.preview__tag {
  font-size: 10px; font-weight: 800; color: var(--cta); background: var(--cta-soft);
  padding: 3px 8px; border-radius: 999px; display: inline-block; margin-bottom: 12px;
}
.preview__lines { display: flex; flex-direction: column; gap: 8px; }
.preview__lines::before, .preview__lines::after,
.preview__lines { --w: 100%; }
.preview__lines::before { content: ""; height: 10px; width: 70%; background: var(--cta-soft); border-radius: 4px; }
.preview__lines::after { content: ""; height: 6px; width: 90%; background: var(--line); border-radius: 4px; margin-top: 4px; }
.preview__lines { position: relative; }
.preview__lines { background: repeating-linear-gradient(180deg, transparent 0 14px, var(--line) 14px 15px); height: 120px; border-radius: 4px; opacity: .7; }
.preview__lines--alt { background: repeating-linear-gradient(180deg, transparent 0 10px, var(--accent-soft) 10px 11px); }
.preview__img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 6px; display: block;
}

/* ============================================================
   WHO IT'S FOR
   ============================================================ */
.for__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 920px; margin: 0 auto; }
.for__col { border-radius: var(--radius); padding: 36px 30px; border: 1px solid var(--line); }
.for__col--yes { background: var(--accent-soft); border-color: #d6e4d0; }
.for__col--no { background: #fff7f7; border-color: #ffe0e0; }
.for__title { font-size: 18px; font-weight: 800; margin-bottom: 18px; }
.for__col--yes .for__title { color: var(--accent); }
.for__col--no .for__title { color: var(--warn); }
.for__col li { padding: 12px 0; color: var(--ink-soft); border-bottom: 1px solid rgba(0,0,0,0.05); }
.for__col li:last-child { border-bottom: none; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; margin-top: 48px; }
.testimonial {
  background: #fff; border-radius: var(--radius-sm); padding: 28px 30px;
  border: 1px solid var(--line); box-shadow: 0 8px 20px -16px rgba(0,0,0,0.12);
  text-align: left; display: flex; flex-direction: column;
}
.testimonial__stars { color: var(--gold); font-size: 18px; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial blockquote { font-size: 17px; color: var(--ink); line-height: 1.55; margin-bottom: 20px; font-weight: 500; flex: 1; }
.testimonial figcaption { font-size: 14px; color: var(--muted); }
.testimonial figcaption strong { color: var(--ink); font-weight: 700; }
/* Real Results: heading + image on top row, full-width testimonials below */
.section--proof .proof__top { align-items: center; }
.section--proof .testimonials { margin-top: 56px; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing__wrap { max-width: 560px; margin: 0 auto; }
.price-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px; padding: 44px 36px; text-align: center;
  box-shadow: var(--shadow);
  position: relative;
}
.price-card__badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--ink); color: #fff;
  font-size: 11px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 7px 18px; border-radius: 999px; white-space: nowrap;
}
.price-card__price { margin: 18px 0 26px; display: flex; align-items: baseline; justify-content: center; gap: 12px; }
.price-card__old { font-size: 24px; color: var(--muted); text-decoration: line-through; }
.price-card__now { font-size: 72px; font-weight: 800; color: var(--ink); letter-spacing: -0.04em; line-height: 1; }
.price-card__list { text-align: left; margin: 0 auto 30px; max-width: 360px; }
.price-card__list li { position: relative; padding: 11px 0 11px 32px; border-bottom: 1px solid var(--line); color: var(--ink-soft); }
.price-card__list li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 800; }
.price-card__note { margin-top: 14px; font-size: 13px; color: var(--muted); }

.guarantee {
  display: flex; gap: 22px; align-items: center; margin-top: 32px;
  background: var(--bg-soft); border-radius: var(--radius); padding: 28px 30px;
  border: 1px solid var(--line);
}
.guarantee__seal {
  flex-shrink: 0; width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #3a5a34); color: #fff;
  display: grid; place-items: center; font-size: 26px; font-weight: 900;
  box-shadow: 0 10px 24px -8px rgba(74,112,67,0.5);
}
.guarantee__title { font-size: 18px; font-weight: 800; margin-bottom: 6px; }
.guarantee p { color: var(--ink-soft); font-size: 15px; }
.guarantee strong { color: var(--ink); }

.urgency { text-align: center; margin-top: 30px; font-size: 16px; color: var(--ink-soft); }
.urgency strong { color: var(--cta); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 0; overflow: hidden; transition: box-shadow .25s;
}
.faq__item[open] { box-shadow: var(--shadow-sm); }
.faq__item summary {
  list-style: none; cursor: pointer; padding: 22px 24px; font-weight: 700; font-size: 17px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; font-size: 24px; color: var(--cta); font-weight: 400; transition: transform .3s;
  flex-shrink: 0;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { padding: 0 24px 22px; color: var(--ink-soft); }

/* ============================================================
   FINAL CTA
   ============================================================ */
.section--final {
  background: var(--bg-dark);
  color: #fff; text-align: center;
  padding: 100px 0;
}
.final { max-width: 640px; margin: 0 auto; }
.final__title { font-size: clamp(32px, 5vw, 56px); line-height: 1.05; font-weight: 800; letter-spacing: -0.03em; }
.final__lead { margin: 22px 0 14px; font-size: 19px; color: rgba(255,255,255,0.7); }
.final__punch { font-size: 22px; font-weight: 700; color: var(--cta); margin-bottom: 34px; letter-spacing: -0.01em; }
.final__micro { margin-top: 16px; font-size: 14px; color: rgba(255,255,255,0.55); }
.section--final .btn--primary { background: #fff; color: var(--ink); }
.section--final .btn--primary:hover { background: var(--cta); color: #fff; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--bg-dark); color: rgba(255,255,255,0.6); padding: 40px 0; }
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; }
.footer__brand { color: #fff; font-weight: 800; }
.footer__links a { color: rgba(255,255,255,0.7); }
.footer__links a:hover { color: #fff; }

/* ============================================================
   IMAGE + COPY SIDE-BY-SIDE LAYOUT
   ============================================================ */
.transform-row {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.transform-row--reverse .transform-row__copy { order: 2; }
.transform-row--reverse .transform-row__img { order: 1; }
/* Polaroid-style image card for side-by-side sections */
.transform-row__img {
  position: relative;
  background: #ffffff;
  padding: 16px 16px 60px;
  border-radius: 6px;
  box-shadow: 0 35px 70px -25px rgba(0,0,0,0.30), 0 10px 20px -8px rgba(0,0,0,0.12);
  width: 100%;
  max-width: 520px;
  justify-self: end;
  transform: rotate(-1.5deg);
}
.transform-row--reverse .transform-row__img { justify-self: start; transform: rotate(1.5deg); }
.transform-row__img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  border-radius: 3px;
  position: relative; z-index: 1;
}
.transform-row__img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 3px;
  overflow: hidden;
}
.transform-row__img--tall .transform-row__img-wrap { aspect-ratio: 3 / 4; }
.transform-row__img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(17,17,17,0) 30%, rgba(17,17,17,0.85) 100%);
  pointer-events: none;
  z-index: 2;
  border-radius: 6px;
}
.transform-row__img .transform-row__overlay { z-index: 3; }
.transform-row__overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 36px 32px;
  color: #fff;
  z-index: 2;
}
.overlay__eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--cta);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,107,53,0.4);
  padding: 5px 12px; border-radius: 999px;
  margin-bottom: 14px;
}
.overlay__title {
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  color: #fff;
}
.overlay__title span { color: var(--cta); }
.overlay__sub {
  font-size: 16px; font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.01em;
}

/* Hero polaroid-style image card (Lazy Millionaire feel) */
.hero__card {
  position: relative;
  width: 100%;
  max-width: 460px;
  background: #ffffff;
  padding: 18px 18px 70px;
  border-radius: 6px;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.35), 0 12px 24px -10px rgba(0,0,0,0.15);
  transform: rotate(2deg);
  z-index: 2;
}
.hero__card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
}
.hero__card-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero__card-overlay {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 28px 22px;
  background: linear-gradient(180deg, rgba(17,17,17,0) 0%, rgba(17,17,17,0.92) 100%);
  color: #fff;
  z-index: 2;
}
.hero__card-eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase;
  color: #fff;
  background: var(--cta);
  padding: 5px 11px; border-radius: 999px;
  margin-bottom: 12px;
}
.hero__card-stat { font-size: 48px; font-weight: 900; line-height: 1; color: #fff; letter-spacing: -0.04em; }
.hero__card-label { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.9); margin-top: 6px; }
.hero__card-caption {
  position: absolute;
  bottom: 20px; left: 0; right: 0;
  text-align: center;
  font-style: italic;
  font-size: 16px;
  color: var(--ink-soft);
  font-family: 'Inter', serif;
}

@media (max-width: 980px) {
  .transform-row { grid-template-columns: 1fr; gap: 40px; }
  .transform-row__img { max-width: 460px; margin: 0 auto; min-height: 0; aspect-ratio: 4 / 5; justify-self: center; }
  .transform-row__img--tall { aspect-ratio: 3 / 4; }
  .transform-row--reverse .transform-row__img { justify-self: center; }
  .transform-row--reverse .transform-row__copy { order: 2; }
  .hero__card { max-width: 360px; margin: 0 auto; }
}

/* ============================================================
   MONETIZE SECTION
   ============================================================ */
.section--monetize { color: var(--ink); }
.monetize__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-bottom: 36px;
}
.monetize__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.monetize__item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.monetize__icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--cta), var(--cta-d));
  color: #fff; font-size: 20px; font-weight: 900;
  display: grid; place-items: center; margin-bottom: 14px;
  box-shadow: 0 8px 20px -6px rgba(255,107,53,0.5);
}
.monetize__item h3 { color: var(--ink); font-size: 17px; font-weight: 800; margin-bottom: 6px; }
.monetize__item p { color: var(--ink-soft); font-size: 14px; }
.monetize__cta { text-align: center; }
.monetize__cta p { color: var(--ink); font-size: 19px; font-weight: 700; margin-bottom: 18px; }
.monetize__cta .btn { display: inline-flex; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__visual { order: -1; }
  .problem__grid { grid-template-columns: 1fr; }
  .transform { grid-template-columns: 1fr; }
  .transform__bridge { padding: 8px 0; }
  .transform__arrow { transform: rotate(90deg); }
  .inside__grid { grid-template-columns: 1fr 1fr; }
  .card--wide { grid-column: span 2; }
  .testimonials { grid-template-columns: 1fr; }
  .for__grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .section { padding: 68px 0; }
  .section__head { margin-bottom: 40px; }
  .inside__grid { grid-template-columns: 1fr; }
  .card--wide { grid-column: span 1; flex-direction: column; align-items: flex-start; }
  .card--wide .card__icon { margin-bottom: 16px; }
  .price-card { padding: 36px 22px; }
  .price-card__now { font-size: 52px; }
  .guarantee { flex-direction: column; text-align: center; gap: 16px; }
  .nav__brand { font-size: 15px; }
  .phone-mockup { width: 240px; height: 480px; }
  .graph svg { width: 90px; height: 40px; }
  .graph--1 { right: 0; }
  .graph--2 { left: 0; }
  .previews { gap: 12px; }
  .preview__page { width: 130px; height: 170px; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
