:root {
  --ink: #20140f;
  --brown: #1a0e0a;
  --brown-2: #2a1710;
  --wine: #671e31;
  --wine-dark: #48101f;
  --gold: #c99646;
  --gold-light: #e6c17d;
  --cream: #f6f0e7;
  --paper: #fffaf2;
  --muted: #75685f;
  --line: rgba(80, 50, 31, .14);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --shadow: 0 22px 70px rgba(34, 16, 9, .15);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); line-height: 1.6; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.narrow { max-width: 820px; }
.centered { text-align: center; }
.section { padding: 110px 0; }

.topbar { position: absolute; z-index: 10; top: 0; left: 0; width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 28px max(28px, calc((100vw - 1160px) / 2)); color: #fff; }
.brand { font-family: var(--serif); font-size: 20px; letter-spacing: .12em; text-transform: uppercase; }
.brand span { display: block; margin-bottom: -9px; font-family: var(--sans); font-size: 8px; letter-spacing: .3em; color: var(--gold-light); }
.topbar-cta { padding: 10px 20px; border: 1px solid rgba(255,255,255,.35); border-radius: 999px; font-size: 13px; font-weight: 600; transition: .25s ease; }
.topbar-cta:hover { background: #fff; color: var(--brown); }

.hero { position: relative; overflow: hidden; min-height: 100vh; padding: 145px 0 75px; color: #fff; background: radial-gradient(circle at 50% 20%, #4a2316 0, var(--brown) 43%, #0d0705 100%); }
.hero::before { content: ""; position: absolute; inset: 0; opacity: .3; background: url("assets/hero.png") center/cover no-repeat; mix-blend-mode: screen; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,6,4,.15), rgba(12,6,4,.55)); }
.hero-glow { position: absolute; z-index: 1; width: 600px; height: 600px; top: 12%; left: 50%; transform: translateX(-50%); border: 1px solid rgba(213,162,83,.2); border-radius: 50%; box-shadow: 0 0 140px rgba(201,150,70,.08), inset 0 0 120px rgba(201,150,70,.05); }
.hero-inner { position: relative; z-index: 2; text-align: center; }
.eyebrow, .section-kicker { font-size: 12px; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; color: var(--wine); }
.eyebrow { display: inline-flex; align-items: center; gap: 12px; color: var(--gold-light); }
.eyebrow span { width: 35px; height: 1px; background: currentColor; }
h1, h2 { margin: 0; font-family: var(--serif); font-weight: 600; line-height: 1.08; letter-spacing: -.025em; }
h1 { max-width: 900px; margin: 24px auto 20px; font-size: clamp(44px, 6.5vw, 80px); }
h1 em, h2 em { color: var(--gold-light); font-weight: inherit; }
.hero-lead { max-width: 810px; margin: 0 auto 34px; color: rgba(255,255,255,.82); font-size: clamp(17px, 2vw, 21px); line-height: 1.55; }
.vsl-wrap { position: relative; max-width: 850px; aspect-ratio: 16 / 9; margin: 0 auto 28px; padding: 7px; border: 1px solid rgba(219,176,106,.48); border-radius: 16px; background: rgba(255,255,255,.08); box-shadow: 0 30px 90px rgba(0,0,0,.55); }
.vsl-stage { position: relative; overflow: hidden; width: 100%; height: 100%; border-radius: 10px; background: #000; }
.vsl-player { width: 100%; height: 100%; display: block; border: 0; background: #000; pointer-events: none; }
.vsl-click-shield { position: absolute; z-index: 2; inset: 0; }
.vsl-poster {
  position: absolute;
  z-index: 4;
  inset: 0;
  display: flex;
  align-items: center;
  padding: clamp(24px, 5vw, 62px);
  text-align: left;
  background:
    linear-gradient(90deg, rgba(12,6,4,.2), rgba(12,6,4,0) 62%),
    url("assets/vsl-cover.png") center/cover no-repeat;
  transition: opacity .4s ease, visibility .4s ease;
}
.vsl-poster.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.vsl-poster-copy { width: min(47%, 390px); display: flex; flex-direction: column; align-items: flex-start; }
.vsl-poster-kicker { margin-bottom: 12px; color: var(--gold-light); font-size: 10px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; }
.vsl-poster-copy > strong { margin-bottom: 24px; font-family: var(--serif); font-size: clamp(24px, 3.2vw, 40px); font-weight: 600; line-height: 1.1; }
.vsl-start {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px 12px 12px;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 999px;
  color: #fff;
  background: rgba(106,59,67,.92);
  box-shadow: 0 14px 45px rgba(0,0,0,.45);
  backdrop-filter: blur(8px);
  transition: transform .2s ease, opacity .2s ease, background .2s ease;
}
.vsl-start:hover:not(:disabled) { transform: scale(1.035); background: var(--wine); }
.vsl-start:disabled { cursor: wait; opacity: .68; }
.vsl-start-icon { width: 42px; height: 42px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; color: var(--wine); background: #fff; font-size: 15px; text-indent: 2px; }
.vsl-start > span:last-child { display: flex; flex-direction: column; align-items: flex-start; }
.vsl-start b { font-size: 13px; line-height: 1.2; }
.vsl-start small { color: rgba(255,255,255,.72); font-size: 9px; }
.vsl-toggle {
  position: absolute;
  z-index: 3;
  left: 16px;
  bottom: 16px;
  width: 44px;
  height: 44px;
  place-items: center;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,.36);
  border-radius: 50%;
  color: #fff;
  background: rgba(26,16,8,.74);
  backdrop-filter: blur(6px);
  font-size: 16px;
}
.vsl-toggle:not([hidden]) { display: grid; }
.button { min-height: 56px; display: inline-flex; align-items: center; justify-content: center; padding: 15px 28px; border: 1px solid transparent; border-radius: 8px; font-size: 14px; font-weight: 700; letter-spacing: .04em; text-align: center; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: linear-gradient(135deg, #8a2943, var(--wine)); box-shadow: 0 14px 35px rgba(103,30,49,.34); }
.button-primary:hover { box-shadow: 0 18px 40px rgba(103,30,49,.45); }
.hero-button { min-width: 310px; }
.microcopy { margin: 13px 0 0; color: rgba(255,255,255,.58); font-size: 12px; }

.trust-strip { color: #fff; background: var(--wine-dark); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid div { padding: 25px 30px; border-right: 1px solid rgba(255,255,255,.12); text-align: center; }
.trust-grid div:last-child { border: 0; }
.trust-grid strong { display: block; font-family: var(--serif); font-size: 22px; color: var(--gold-light); }
.trust-grid span { display: block; color: rgba(255,255,255,.66); font-size: 12px; }

.section-kicker { margin: 0 0 18px; }
.section-kicker.light { color: var(--gold-light); }
h2 { font-size: clamp(37px, 5vw, 58px); }
.section-intro { max-width: 760px; margin: 25px auto 0; color: var(--muted); font-size: 18px; }
.pain-section { background: var(--cream); }
.pain-section h2 em { color: var(--wine); }
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 60px; }
.pain-grid article { position: relative; padding: 35px; border: 1px solid var(--line); border-radius: 12px; background: rgba(255,255,255,.5); }
.pain-grid article > span { display: block; margin-bottom: 36px; color: var(--gold); font-family: var(--serif); font-size: 16px; }
.pain-grid h3 { margin: 0 0 12px; font-family: var(--serif); font-size: 25px; }
.pain-grid p { margin: 0; color: var(--muted); }
.bridge-copy { margin: 55px auto 0; text-align: center; font-family: var(--serif); font-size: 24px; line-height: 1.45; }
.bridge-copy strong { color: var(--wine); }

.proof-section { background: #fff; }
.proof-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: center; }
.proof-copy h2 em { color: var(--wine); }
blockquote { margin: 35px 0 18px; padding-left: 23px; border-left: 2px solid var(--gold); font-family: var(--serif); font-size: 21px; font-style: italic; color: #55453b; }
.stars { color: var(--gold); letter-spacing: .15em; }
.proof-note { color: var(--muted); font-size: 12px; }
.proof-cards { display: grid; grid-template-columns: 1.2fr .8fr; grid-template-rows: 1fr 1fr; gap: 14px; height: 590px; }
.proof-card { overflow: hidden; padding: 0; cursor: zoom-in; border: 1px solid var(--line); border-radius: 14px; background: #eee; box-shadow: var(--shadow); }
.proof-card-main { grid-row: 1 / 3; }
.proof-card img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .35s ease; }
.proof-card:hover img { transform: scale(1.025); }

.solution-section { color: #fff; background: var(--brown); }
.solution-header { display: grid; grid-template-columns: 1.2fr .8fr; gap: 70px; align-items: end; }
.solution-header h2 em { color: var(--gold-light); }
.solution-header > p { margin: 0 0 7px; color: rgba(255,255,255,.66); font-size: 17px; }
.steps-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin-top: 65px; background: rgba(255,255,255,.13); }
.steps-grid article { display: flex; gap: 25px; padding: 36px; background: var(--brown); }
.steps-grid article > span { color: var(--gold-light); font-family: var(--serif); font-size: 15px; }
.steps-grid h3 { margin: 0 0 8px; font-family: var(--serif); font-size: 25px; }
.steps-grid p { margin: 0; color: rgba(255,255,255,.62); }

.programs-section { overflow: hidden; background: var(--cream); }
.programs-heading { max-width: 850px; }
.programs-heading .section-intro { margin-bottom: 48px; }
.programs-carousel { position: relative; width: min(1280px, calc(100% - 28px)); margin-inline: auto; }
.programs-viewport {
  overflow-x: auto;
  padding: 15px 4px 28px;
  cursor: grab;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.programs-viewport::-webkit-scrollbar { display: none; }
.programs-viewport.is-dragging { cursor: grabbing; scroll-behavior: auto; scroll-snap-type: none; user-select: none; }
.programs-track { width: max-content; display: flex; gap: 15px; }
.programs-track img { width: 250px; aspect-ratio: 3 / 4; object-fit: cover; border-radius: 9px; box-shadow: 0 15px 35px rgba(44,24,14,.18); scroll-snap-align: start; }
.carousel-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  cursor: pointer;
  border: 1px solid rgba(103,30,49,.14);
  border-radius: 50%;
  color: #fff;
  background: var(--wine);
  box-shadow: 0 12px 30px rgba(50,20,24,.24);
  font-family: Georgia, serif;
  font-size: 35px;
  line-height: 1;
  transition: transform .2s ease, opacity .2s ease, background .2s ease;
}
.carousel-arrow:hover { transform: translateY(-50%) scale(1.07); background: var(--wine-dark); }
.carousel-arrow:disabled { opacity: .28; cursor: default; transform: translateY(-50%); }
.carousel-prev { left: -24px; }
.carousel-next { right: -24px; }
.included-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 65px; }
.included-grid div { padding: 23px; border-top: 1px solid var(--gold); }
.included-grid span { color: var(--wine); }
.included-grid strong, .included-grid small { display: block; }
.included-grid strong { margin: 8px 0 5px; font-family: var(--serif); font-size: 18px; }
.included-grid small { color: var(--muted); font-size: 12px; }

.about-section { padding-bottom: 0; background: #fff; }
.about-layout { display: grid; grid-template-columns: 1fr 1fr; align-items: center; }
.about-image { align-self: end; }
.about-image img { width: 100%; max-height: 690px; object-fit: contain; object-position: bottom; }
.about-copy { padding: 50px 20px 100px 70px; }
.about-copy h2 { margin-bottom: 22px; }
.about-copy .credential { padding-bottom: 22px; border-bottom: 1px solid var(--line); color: var(--wine); font-weight: 600; }
.about-copy p:not(.section-kicker) { color: var(--muted); }
.signature { margin-top: 30px; font-family: var(--serif); font-size: 26px; font-style: italic; color: var(--wine); }

.pricing-section { color: #fff; background: linear-gradient(150deg, var(--wine-dark), #250d14); }
.pricing-heading { max-width: 760px; }
.pricing-heading > p:last-child { color: rgba(255,255,255,.68); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; margin-top: 55px; }
.price-card { position: relative; display: flex; flex-direction: column; padding: 38px 32px; border: 1px solid rgba(255,255,255,.15); border-radius: 14px; background: rgba(255,255,255,.06); }
.price-card.featured { transform: translateY(-12px); border-color: var(--gold-light); background: var(--paper); color: var(--ink); box-shadow: 0 30px 70px rgba(0,0,0,.24); }
.badge { position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%); padding: 7px 16px; border-radius: 999px; color: var(--brown); background: var(--gold-light); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; white-space: nowrap; }
.plan-name { margin: 0 0 15px; color: var(--gold-light); font-weight: 700; text-transform: uppercase; letter-spacing: .18em; font-size: 12px; }
.featured .plan-name { color: var(--wine); }
.price { display: flex; align-items: baseline; gap: 3px; }
.price sup { align-self: flex-start; margin-top: 13px; font-size: 14px; }
.price strong { font-family: var(--serif); font-size: 58px; line-height: 1; }
.price span { color: rgba(255,255,255,.57); font-size: 13px; }
.featured .price span { color: var(--muted); }
.plan-detail, .installments { min-height: 26px; color: rgba(255,255,255,.6); font-size: 13px; }
.featured .plan-detail, .featured .installments { color: var(--muted); }
.saving { color: var(--gold-light); font-size: 12px; font-weight: 700; text-transform: uppercase; }
.featured .saving { color: var(--wine); }
.price-card ul { flex: 1; margin: 23px 0 30px; padding: 22px 0 0; border-top: 1px solid rgba(255,255,255,.14); list-style: none; }
.featured ul { border-color: var(--line); }
.price-card li { position: relative; margin: 10px 0; padding-left: 24px; color: rgba(255,255,255,.76); font-size: 14px; }
.featured li { color: #574b43; }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--gold-light); font-weight: 700; }
.featured li::before { color: var(--wine); }
.button-outline { border-color: rgba(255,255,255,.35); color: #fff; }
.button-outline:hover { background: #fff; color: var(--brown); }
.secure-line { margin: 34px 20px 0; text-align: center; color: rgba(255,255,255,.6); font-size: 12px; }

.faq-section { background: var(--cream); }
.faq-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 80px; }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 23px 40px 23px 0; cursor: pointer; font-family: var(--serif); font-size: 19px; list-style: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 5px; color: var(--wine); font-family: var(--sans); font-size: 24px; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin: -8px 0 23px; color: var(--muted); }

.final-cta { position: relative; overflow: hidden; padding: 110px 0; color: #fff; background: var(--brown); }
.final-cta::before { content: ""; position: absolute; inset: 0; opacity: .16; background: url("assets/hero.png") center/cover no-repeat; }
.final-cta .container { position: relative; }
.final-cta h2 em { color: var(--gold-light); }
.final-cta p:not(.section-kicker) { margin-bottom: 30px; color: rgba(255,255,255,.65); }
footer { padding: 42px 0; color: rgba(255,255,255,.7); background: #0b0604; font-size: 12px; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer-inner .brand { color: #fff; font-size: 15px; }
.footer-inner p { margin: 8px 0 0; }
.footer-links { display: flex; gap: 24px; }
.footer-links a:hover { color: #fff; }
.mobile-sticky { display: none; }
.whatsapp-float {
  position: fixed;
  z-index: 19;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 10px 17px 10px 12px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 999px;
  color: #fff;
  background: #1fa855;
  box-shadow: 0 14px 35px rgba(5,55,25,.3);
  font-size: 13px;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.whatsapp-float:hover { transform: translateY(-3px); background: #168f47; box-shadow: 0 18px 42px rgba(5,55,25,.38); }
.whatsapp-float svg { width: 31px; height: 31px; flex: 0 0 auto; }

.proof-modal { max-width: min(500px, calc(100% - 30px)); max-height: 90vh; padding: 0; border: 0; border-radius: 14px; background: transparent; box-shadow: 0 30px 100px rgba(0,0,0,.6); }
.proof-modal::backdrop { background: rgba(11,6,4,.85); backdrop-filter: blur(5px); }
.proof-modal img { max-height: 86vh; object-fit: contain; }
.proof-modal button { position: fixed; top: 18px; right: 24px; width: 42px; height: 42px; cursor: pointer; border: 0; border-radius: 50%; color: #fff; background: rgba(255,255,255,.15); font-size: 26px; }

@media (max-width: 900px) {
  .section { padding: 80px 0; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid div:nth-child(2) { border-right: 0; }
  .trust-grid div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.12); }
  .pain-grid, .pricing-grid { grid-template-columns: 1fr; max-width: 620px; }
  .proof-layout, .solution-header, .about-layout, .faq-layout { grid-template-columns: 1fr; gap: 50px; }
  .proof-cards { height: 520px; }
  .included-grid { grid-template-columns: repeat(2, 1fr); }
  .about-copy { padding: 0 0 80px; }
  .about-image { order: 2; }
  .price-card.featured { transform: none; }
}

@media (max-width: 620px) {
  body { padding-bottom: 64px; }
  .container { width: min(100% - 28px, 1160px); }
  .topbar { padding: 20px 18px; }
  .topbar-cta { display: none; }
  .hero { min-height: auto; padding: 112px 0 58px; }
  .hero::before { opacity: .2; background-position: 64% center; }
  h1 { font-size: 43px; }
  .hero-lead { font-size: 16px; }
  .vsl-wrap { width: calc(100% + 8px); margin-left: -4px; }
  .vsl-poster { align-items: flex-end; padding: 18px; background-position: 58% center; }
  .vsl-poster::before { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(15,7,4,.94), rgba(15,7,4,.08) 72%); }
  .vsl-poster-copy { position: relative; width: 100%; align-items: center; text-align: center; }
  .vsl-poster-kicker { margin-bottom: 5px; font-size: 8px; }
  .vsl-poster-copy > strong { max-width: 290px; margin-bottom: 12px; font-size: 22px; }
  .vsl-start { padding: 8px 15px 8px 8px; }
  .vsl-start-icon { width: 34px; height: 34px; font-size: 12px; }
  .vsl-start b { font-size: 11px; }
  .vsl-start small { font-size: 8px; }
  .vsl-toggle { left: 10px; bottom: 10px; width: 38px; height: 38px; }
  .hero-button { width: 100%; min-width: 0; }
  .trust-grid strong { font-size: 18px; }
  .trust-grid div { padding: 19px 10px; }
  h2 { font-size: 36px; }
  .pain-grid { gap: 12px; margin-top: 40px; }
  .pain-grid article { padding: 25px; }
  .pain-grid article > span { margin-bottom: 20px; }
  .proof-cards { grid-template-columns: 1fr 1fr; grid-template-rows: 340px 180px; height: auto; }
  .proof-card-main { grid-column: 1 / 3; grid-row: auto; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid article { padding: 26px 18px; }
  .programs-track {
    width: min(100% - 28px, 560px);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-inline: auto;
    padding: 0;
    animation: none;
    transform: none;
  }
  .programs-carousel { width: 100%; }
  .programs-viewport { overflow: visible; padding: 0; cursor: default; scroll-snap-type: none; }
  .carousel-arrow { display: none; }
  .programs-track img {
    width: 100%;
    aspect-ratio: 3 / 4;
    scroll-snap-align: none;
  }
  .programs-track img:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 6px);
    justify-self: center;
  }
  .included-grid { grid-template-columns: 1fr; gap: 0; }
  .pricing-grid { width: min(100% - 22px, 620px); }
  .price-card { padding: 35px 24px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .mobile-sticky { position: fixed; z-index: 20; display: flex; align-items: center; justify-content: center; left: 10px; right: 10px; bottom: 8px; min-height: 50px; border-radius: 7px; color: #fff; background: var(--wine); box-shadow: 0 10px 35px rgba(0,0,0,.35); font-size: 14px; font-weight: 700; }
  .whatsapp-float {
    right: 14px;
    bottom: 72px;
    width: 52px;
    min-height: 52px;
    padding: 10px;
    justify-content: center;
  }
  .whatsapp-float span { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
