:root {
  --orange-1: #f25c05;
  --orange-2: #f24405;
  --brown-1: #2d2119;
  --brown-2: #1c140f;
  --teal: #1a6b64;
  --teal-light: #2fcfc0;
  --cream: #fdf3e7;
  --ink: #2d2119;

  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  --max-width: 1100px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--cream);
  background: var(--brown-2);
  overflow-x: hidden;
}

/* ---------- Fixed full-page background ---------- */

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(100deg, rgba(20, 14, 10, 0.78) 0%, rgba(20, 14, 10, 0.55) 40%, rgba(20, 14, 10, 0.4) 70%, rgba(20, 14, 10, 0.55) 100%),
    url("images/fondo-1.jpg");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

@media (max-width: 860px) {
  .page-bg {
    background-position: 78% 100%;
    background-image:
      linear-gradient(180deg, rgba(20, 14, 10, 0.82) 0%, rgba(20, 14, 10, 0.78) 38%, rgba(20, 14, 10, 0.3) 62%, rgba(20, 14, 10, 0.55) 100%),
      url("images/fondo-1.jpg");
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* ---------- Layout shell ---------- */

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.5rem 1.5rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}

.brand__mark {
  font-size: 1.5rem;
}

main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- Hero ---------- */

.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1.25rem;
  padding: 4rem 0;
  max-width: min(560px, 44vw);
}

.hero__eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--teal-light);
}

.hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.1rem, 5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 100%;
}

.hero__subtitle {
  margin: 0;
  max-width: 100%;
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(253, 243, 231, 0.85);
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero__note {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.75rem;
  color: rgba(253, 243, 231, 0.55);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn--primary {
  background: linear-gradient(120deg, var(--teal-light), var(--teal));
  color: #08201d;
  box-shadow: 0 12px 30px -12px rgba(47, 207, 192, 0.6);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px -12px rgba(47, 207, 192, 0.75);
}

.btn--ghost {
  background: rgba(253, 243, 231, 0.08);
  border-color: rgba(253, 243, 231, 0.25);
  color: var(--cream);
}

.btn--ghost:hover {
  background: rgba(253, 243, 231, 0.16);
}

.btn--block {
  width: 100%;
  margin-top: 0.5rem;
  padding: 1rem;
  font-size: 1rem;
}

/* ---------- Section headings (shared) ---------- */

.problem h2,
.solution h2,
.how h2,
.transformation h2,
.includes h2,
.testimonials h2,
.objections h2,
.final-cta h2 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 1.25rem;
}

/* ---------- Problem ---------- */

.problem {
  padding: 4rem 0 2rem;
  max-width: 720px;
}

.problem h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.1rem);
  line-height: 1.25;
}

.problem p {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(253, 243, 231, 0.8);
}

.problem__result {
  color: var(--cream) !important;
  font-weight: 500;
}

.problem__list {
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.problem__list li {
  position: relative;
  padding-left: 1.4em;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(253, 243, 231, 0.8);
}

.problem__list li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--orange-1);
  font-weight: 700;
}

.problem--compare {
  max-width: 960px;
}

.problem__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

@media (min-width: 700px) {
  .problem__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.problem__col {
  background: rgba(253, 243, 231, 0.05);
  border: 1px solid rgba(253, 243, 231, 0.12);
  border-radius: 16px;
  padding: 1.5rem;
}

.problem__col h3 {
  margin: 0 0 0.9rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.problem__col--no h3 {
  color: rgba(253, 243, 231, 0.55);
}

.problem__col--yes h3 {
  color: var(--teal-light);
}

.problem__col ul {
  margin: 0;
  padding-left: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(253, 243, 231, 0.7);
}

.problem__col--yes ul {
  color: var(--cream);
}

/* ---------- Solution ---------- */

.solution {
  padding: 1rem 0 2rem;
  max-width: 720px;
}

.solution h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.1rem);
  line-height: 1.25;
}

.solution p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(253, 243, 231, 0.8);
}

/* ---------- How it works ---------- */

.how {
  padding: 3rem 0;
}

.how h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.how__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.how__steps--5 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.how__step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(253, 243, 231, 0.05);
  border: 1px solid rgba(253, 243, 231, 0.12);
  border-radius: 18px;
  padding: 1.5rem;
}

.how__num {
  flex: none;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  background: linear-gradient(120deg, var(--teal-light), var(--teal));
  color: #08201d;
}

.how__step h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.how__step p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(253, 243, 231, 0.75);
}

/* ---------- Transformation ---------- */

.transformation {
  padding: 1rem 0 2rem;
  max-width: 720px;
}

.transformation h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.1rem);
  line-height: 1.25;
}

.transformation p {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(253, 243, 231, 0.8);
}

.transformation__result {
  color: var(--cream) !important;
  font-weight: 500;
}

.transformation__quote {
  margin: 0;
  max-width: 720px;
  border-left: 3px solid var(--orange-1);
  padding-left: 1.4rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.3rem, 2.4vw + 0.7rem, 1.9rem);
  line-height: 1.25;
  color: var(--cream);
}

/* ---------- Includes ---------- */

.includes {
  padding: 3rem 0;
}

.includes h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.includes__tag {
  color: rgba(253, 243, 231, 0.55);
  font-weight: 500;
  font-size: 0.6em;
}

.includes__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
  max-width: 640px;
}

.includes__list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(253, 243, 231, 0.9);
}

.includes__icon {
  flex: none;
}

.includes__note {
  margin: 1.25rem 0 0;
  max-width: 640px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(253, 243, 231, 0.55);
}

.includes__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.1rem;
}

.includes__card {
  background: rgba(253, 243, 231, 0.05);
  border: 1px solid rgba(253, 243, 231, 0.12);
  border-radius: 16px;
  padding: 1.3rem 1.4rem;
}

.includes__eyebrow {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--teal-light);
  margin-bottom: 0.5rem;
}

.includes__card h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.includes__card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(253, 243, 231, 0.75);
}

/* ---------- Testimonials ---------- */

.testimonials {
  padding: 3rem 0;
}

.testimonials h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.testimonials__note {
  margin: 1.25rem 0 0;
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(253, 243, 231, 0.5);
}

.testimonial {
  margin: 0;
  background: rgba(253, 243, 231, 0.06);
  border: 1px solid rgba(253, 243, 231, 0.14);
  border-radius: 18px;
  padding: 1.5rem;
}

.testimonial p {
  margin: 0 0 0.75rem;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--cream);
}

.testimonial cite {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--teal-light);
}

/* ---------- Generate section ---------- */

.generate {
  padding: 3rem 0 6rem;
  display: grid;
  gap: 2.5rem;
}

.generate__intro h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0 0 0.5rem;
}

.generate__intro p {
  margin: 0;
  color: rgba(253, 243, 231, 0.75);
}

.card {
  max-width: 620px;
  background: rgba(253, 243, 231, 0.06);
  border: 1px solid rgba(253, 243, 231, 0.14);
  border-radius: 24px;
  padding: 2rem;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.55);
}

.field {
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.field label {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(253, 243, 231, 0.9);
}

.field input,
.field textarea,
.field select {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--cream);
  background: rgba(20, 14, 10, 0.5);
  border: 1px solid rgba(253, 243, 231, 0.18);
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  resize: vertical;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(253, 243, 231, 0.4);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--teal-light);
  background: rgba(20, 14, 10, 0.75);
}

.field__label {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(253, 243, 231, 0.9);
}

/* ---------- Form sections ---------- */

.form-section {
  border: 0;
  margin: 0 0 2rem;
  padding: 0;
  min-width: 0;
}

.form-section + .form-section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(253, 243, 231, 0.12);
}

.form-section legend {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--teal-light);
  padding: 0;
  margin-bottom: 1.25rem;
}

/* ---------- Choice chips (checkbox groups) ---------- */

.choice-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.choice {
  position: relative;
  cursor: pointer;
}

.choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.choice span {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(253, 243, 231, 0.18);
  background: rgba(20, 14, 10, 0.5);
  font-size: 0.85rem;
  color: rgba(253, 243, 231, 0.85);
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.choice input:checked + span {
  border-color: var(--teal-light);
  background: rgba(47, 207, 192, 0.16);
  color: var(--teal-light);
}

.choice input:focus-visible + span {
  outline: 2px solid var(--teal-light);
  outline-offset: 2px;
}

/* ---------- Success panel ---------- */

.success-panel {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.success-panel[hidden] {
  display: none;
}

.success-panel__mark {
  font-size: 2.5rem;
}

.success-panel h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.4rem;
}

.success-panel p {
  margin: 0;
  color: rgba(253, 243, 231, 0.8);
  max-width: 40ch;
}

/* ---------- Objections ---------- */

.objections {
  padding: 3rem 0;
}

.objections h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.objections__list {
  display: grid;
  gap: 0.75rem;
  max-width: 720px;
}

.objection {
  background: rgba(253, 243, 231, 0.05);
  border: 1px solid rgba(253, 243, 231, 0.12);
  border-radius: 14px;
  padding: 1rem 1.25rem;
}

.objection summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--cream);
  list-style: none;
}

.objection summary::-webkit-details-marker {
  display: none;
}

.objection summary::before {
  content: "+";
  display: inline-block;
  width: 1.2em;
  color: var(--teal-light);
  font-weight: 700;
}

.objection[open] summary::before {
  content: "–";
}

.objection p {
  margin: 0.75rem 0 0 1.2em;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(253, 243, 231, 0.8);
}

/* ---------- Pricing ---------- */

.pricing {
  padding: 3rem 0;
  display: flex;
  justify-content: center;
}

.pricing__card {
  text-align: center;
  max-width: 480px;
  width: 100%;
  background: linear-gradient(160deg, rgba(242, 92, 5, 0.16), rgba(253, 243, 231, 0.05));
  border: 1px solid rgba(242, 92, 5, 0.35);
  border-radius: 24px;
  padding: 2.5rem 2rem;
}

.pricing__eyebrow {
  margin: 0 0 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--teal-light);
}

.pricing__was {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  text-decoration: line-through;
  color: rgba(253, 243, 231, 0.5);
}

.pricing__card h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3rem;
  color: var(--cream);
}

.pricing__period {
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(253, 243, 231, 0.6);
}

.pricing__card p {
  margin: 0 0 1rem;
  color: rgba(253, 243, 231, 0.8);
  line-height: 1.5;
}

.pricing__offer {
  font-size: 1.1rem;
  color: var(--cream) !important;
}

.pricing__offer strong {
  color: var(--orange-1);
}

.pricing__card .btn {
  margin-top: 0.5rem;
}

/* ---------- Guarantee ---------- */

.guarantee {
  padding: 1.5rem 0;
  max-width: 620px;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.guarantee__icon {
  font-size: 1.75rem;
  flex: none;
}

.guarantee p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(253, 243, 231, 0.85);
}

/* ---------- Urgency ---------- */

.urgency {
  padding: 1.5rem 0;
  max-width: 620px;
}

.urgency p {
  margin: 0;
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--orange-1);
  background: rgba(242, 92, 5, 0.08);
  border-radius: 0 12px 12px 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(253, 243, 231, 0.85);
}

/* ---------- Final CTA ---------- */

.final-cta {
  padding: 4rem 0 5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.final-cta h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  line-height: 1.25;
  max-width: 30ch;
}

.final-cta__note {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(253, 243, 231, 0.6);
}

/* ---------- Footer ---------- */

.footer {
  text-align: center;
  padding: 2rem 1.5rem 3rem;
  color: rgba(253, 243, 231, 0.5);
  font-size: 0.85rem;
}

/* ---------- Responsive ---------- */

@media (max-width: 860px) {
  .topbar {
    padding: 1.25rem 1.25rem 0;
  }

  .hero {
    min-height: 78vh;
    max-width: 100%;
    justify-content: flex-start;
    padding: 3.5rem 0 2.5rem;
  }

  .hero__subtitle {
    max-width: 34ch;
  }

  .card {
    padding: 1.5rem;
  }

  .how__steps,
  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .pricing__card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .page-bg {
    background-position: 50% 100%;
  }

  .hero__title {
    font-size: clamp(1.9rem, 8vw, 2.5rem);
  }
}
