:root {
  --bg: #fffaf5;
  --surface: #ffffff;
  --surface-strong: #fff2e8;
  --ink: #21302f;
  --muted: #63716f;
  --line: #eaded5;
  --teal: #0f766e;
  --teal-dark: #115e59;
  --coral: #f9735b;
  --coral-dark: #df553d;
  --cream: #fff7ed;
  --shadow: 0 18px 50px rgba(33, 48, 47, 0.12);
  --radius: 8px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.has-sticky {
  padding-bottom: 76px;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 20;
  background: var(--ink);
  color: #fff;
  padding: 10px 12px;
  border-radius: 6px;
}

.skip-link:focus {
  top: 16px;
}

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

.section {
  padding: 72px 0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(234, 222, 213, 0.9);
  background: rgba(255, 250, 245, 0.92);
  backdrop-filter: blur(14px);
}

.topbar__inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
}

.brand__mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--teal);
  color: #fff;
  font-size: 0.78rem;
}

.desktop-nav {
  display: none;
  gap: 22px;
  font-size: 0.95rem;
  color: var(--muted);
}

.desktop-nav a,
.topbar__cta {
  text-decoration: none;
}

.topbar__cta {
  display: none;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
}

.hero {
  padding-top: 34px;
  background:
    linear-gradient(180deg, rgba(255, 242, 232, 0.7), rgba(255, 250, 245, 0) 70%),
    var(--bg);
}

.hero__grid,
.kit-grid,
.fit-grid,
.split {
  display: grid;
  gap: 32px;
}

.hero__copy {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: 2.2rem;
  line-height: 1.02;
  max-width: 850px;
}

h2 {
  margin-bottom: 16px;
  font-size: 1.9rem;
  line-height: 1.05;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
  line-height: 1.2;
}

.hero__lead {
  color: var(--muted);
  font-size: 1.08rem;
}

.check-list,
.x-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.check-list li,
.x-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before,
.x-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 900;
}

.check-list li::before {
  content: "✓";
  background: rgba(15, 118, 110, 0.12);
  color: var(--teal-dark);
}

.x-list li::before {
  content: "×";
  background: rgba(249, 115, 91, 0.14);
  color: var(--coral-dark);
}

.hero__actions,
.stack {
  display: grid;
  gap: 14px;
}

.hero__actions {
  margin-top: 26px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 14px 20px;
  border: 0;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  font-weight: 900;
  line-height: 1.15;
  box-shadow: var(--shadow);
}

.button--primary {
  background: var(--coral);
  color: #fff;
}

.button--primary:hover {
  background: var(--coral-dark);
}

.button--secondary {
  width: fit-content;
  background: var(--teal);
  color: #fff;
}

.button--large {
  width: 100%;
  max-width: 460px;
}

.microcopy {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero__visual {
  width: 100%;
  max-width: 520px;
  display: grid;
  gap: 14px;
  align-items: start;
  justify-self: center;
}

.hero-card,
.delivery-card,
.proof-image {
  border: 1px dashed rgba(17, 94, 89, 0.38);
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.11), rgba(249, 115, 91, 0.13)),
    var(--surface);
}

.hero-card {
  padding: 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card--image {
  padding: 0;
  border: 0;
  overflow: hidden;
  background: var(--surface);
}

.hero-card--image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: 260px;
  display: block;
  object-fit: contain;
  background: var(--surface-strong);
}

.hero-card--photo img {
  object-fit: cover;
}

.hero-card--image figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-card span,
.delivery-card span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 900;
}

.hero-card strong,
.delivery-card strong {
  display: block;
  font-size: 1.2rem;
}

.hero-card p,
.delivery-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.hero-card--photo {
  min-height: 0;
}

.hero-card--pattern,
.hero-card--pdf {
  margin-top: 0;
}

.pain-band,
.choice,
.categories,
.process,
.guarantee {
  background: var(--surface);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-heading p:last-child {
  color: var(--muted);
}

.pain-grid,
.choice-grid,
.category-grid,
.proof-grid,
.process-grid,
.bonus-grid,
.chat-grid,
.testimonial-grid {
  display: grid;
  gap: 14px;
}

.pain-card,
.choice-card,
.bonus-card,
.testimonial-card,
.fit-card,
.offer-box,
.value-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 8px 24px rgba(33, 48, 47, 0.06);
}

.pain-card {
  padding: 18px;
  font-weight: 750;
}

.choice-grid {
  grid-template-columns: 1fr;
}

.choice-card {
  padding: 20px;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.choice-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.choice-card span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  place-items: center;
  border-radius: 8px;
  background: rgba(15, 118, 110, 0.12);
  color: var(--teal-dark);
  font-weight: 900;
}

.choice-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.solution p,
.value-box p,
.guarantee p {
  color: var(--muted);
  font-size: 1.03rem;
}

.delivery-card {
  min-height: 360px;
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.delivery-steps {
  margin: 0;
  padding-left: 22px;
  color: var(--ink);
  font-weight: 750;
}

.delivery-steps li + li {
  margin-top: 10px;
}

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

.category-grid span {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  font-weight: 750;
}

.proof {
  background: #f7fffc;
}

.access-delivery {
  background: #ffffff;
}

.access-delivery p {
  color: var(--muted);
}

.access-preview {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.09), rgba(249, 115, 91, 0.1)),
    var(--surface);
  box-shadow: var(--shadow);
}

.access-preview span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 900;
}

.access-preview strong {
  display: block;
  font-size: 1.25rem;
}

.access-file-grid,
.access-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0;
}

.access-file-grid div {
  min-height: 118px;
  display: grid;
  align-content: end;
  gap: 4px;
  padding: 12px;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.92)),
    repeating-linear-gradient(45deg, rgba(15, 118, 110, 0.1) 0 2px, transparent 2px 10px),
    #fff;
}

.access-file-grid b,
.access-file-grid small {
  display: block;
}

.access-file-grid small {
  color: var(--muted);
  font-weight: 800;
}

.access-proof-grid {
  grid-template-columns: 1fr;
}

.access-proof-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 8px;
  background: #fff;
}

.access-proof-grid img {
  width: 100%;
  height: 220px;
  display: block;
  object-fit: contain;
  object-position: center;
  background: #fffaf5;
}

.access-proof-grid figcaption {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.proof-card {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 8px 24px rgba(33, 48, 47, 0.08);
}

.proof-image {
  min-height: 210px;
  display: grid;
  place-items: center;
  padding: 18px;
  color: var(--teal-dark);
  text-align: center;
  font-weight: 900;
}

.proof-card--real img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: 220px;
  display: block;
  object-fit: contain;
  background: var(--surface-strong);
}

.proof-card figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

.process-grid .proof-card--real img {
  aspect-ratio: 5 / 4;
  height: 260px;
}

.creator {
  background: var(--bg);
}

.creator-box {
  display: grid;
  gap: 14px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  padding: 14px;
}

.creator-media {
  width: min(112px, 38vw);
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: var(--surface-strong);
  box-shadow: 0 8px 22px rgba(33, 48, 47, 0.08);
}

.creator-media > img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  display: block;
  object-fit: contain;
  object-position: center center;
  background: var(--surface-strong);
}

.creator-media figcaption {
  padding: 7px 8px 8px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 750;
  text-align: center;
  line-height: 1.25;
}

.creator-copy p {
  color: var(--muted);
}

.trust-grid {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.trust-grid span,
.offer-stack span {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  font-weight: 750;
}

.trust-grid i,
.offer-stack i {
  font-style: normal;
}

.bonus-card,
.testimonial-card,
.fit-card {
  padding: 20px;
}

.bonus-card p,
.testimonial-card span {
  color: var(--muted);
}

.bonus-card--wide {
  background: var(--surface-strong);
}

.value-box,
.offer-box,
.final-cta__box {
  padding: 28px;
}

.value-box {
  background: var(--ink);
  color: #fff;
}

.value-box .eyebrow,
.value-box .microcopy,
.value-box p {
  color: rgba(255, 255, 255, 0.78);
}

.fit-card--muted {
  background: var(--cream);
}

.testimonials {
  background: var(--surface);
}

.whatsapp-proof {
  background: var(--surface);
}

.chat-card {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #eefcf7;
  box-shadow: 0 8px 24px rgba(33, 48, 47, 0.06);
}

.chat-label {
  width: fit-content;
  margin: 0;
  padding: 5px 8px;
  border-radius: 6px;
  background: rgba(17, 94, 89, 0.1);
  color: var(--teal-dark);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.bubble {
  max-width: 92%;
  padding: 11px 13px;
  border-radius: 8px;
  font-size: 0.95rem;
  box-shadow: 0 6px 16px rgba(33, 48, 47, 0.06);
}

.bubble--client {
  justify-self: start;
  background: #fff;
  color: var(--ink);
}

.bubble--answer {
  justify-self: end;
  background: #d9fdd3;
  color: #17342d;
}

.testimonial-card p {
  color: var(--coral-dark);
  font-weight: 900;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.offer {
  background: linear-gradient(180deg, var(--bg), var(--surface-strong));
}

.offer-box {
  text-align: center;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.offer-list {
  max-width: 360px;
  margin: 0 auto 24px;
  text-align: left;
}

.price-row {
  display: grid;
  gap: 2px;
  margin: 18px 0;
}

.price-row span {
  color: var(--muted);
  font-weight: 750;
}

.price-row strong {
  font-size: 2.8rem;
  line-height: 1;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

summary {
  cursor: pointer;
  padding: 16px;
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 16px 16px;
  color: var(--muted);
}

.final-cta {
  padding-bottom: 96px;
}

.final-cta__box {
  border-radius: var(--radius);
  background: var(--teal-dark);
  color: #fff;
  text-align: center;
}

.final-cta__box h2 {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta__box .microcopy {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
}

.footer {
  padding: 28px 0;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
}

.footer__inner {
  display: grid;
  gap: 8px;
  font-size: 0.9rem;
}

.mobile-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 15;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 -12px 30px rgba(33, 48, 47, 0.12);
}

.mobile-sticky div {
  display: grid;
  gap: 0;
}

.mobile-sticky span {
  color: var(--muted);
  font-size: 0.9rem;
}

.mobile-sticky a {
  min-width: 126px;
  padding: 11px 14px;
  border-radius: 8px;
  background: var(--coral);
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-weight: 900;
}

@media (min-width: 680px) {
  .pain-grid,
  .choice-grid,
  .proof-grid,
  .process-grid,
  .chat-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (min-width: 960px) {
  body.has-sticky {
    padding-bottom: 0;
  }

  .section {
    padding: 78px 0;
  }

  h1 {
    font-size: 3.28rem;
  }

  h2 {
    font-size: 2.9rem;
  }

  .price-row strong {
    font-size: 4.1rem;
  }

  .desktop-nav,
  .topbar__cta {
    display: inline-flex;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.72fr);
    align-items: start;
  }

  .hero-card--image img {
    height: 360px;
  }

  .kit-grid,
  .fit-grid,
  .split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }

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

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

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

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

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

  .creator-box {
    grid-template-columns: 124px minmax(0, 1fr);
    gap: 18px;
  }

  .creator-media {
    width: 118px;
  }

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

  .bonus-card--wide {
    grid-column: span 3;
  }

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

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

  .hero__visual {
    justify-self: end;
  }

  .hero-card--pattern,
  .hero-card--pdf {
    width: 100%;
  }

  .mobile-sticky {
    display: none !important;
  }
}

@media (max-width: 959px) {
  .mobile-sticky.is-visible {
    display: flex;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .section {
    padding: 56px 0;
  }

  .button {
    width: 100%;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .value-box,
  .offer-box,
  .final-cta__box {
    padding: 22px;
  }
}
