@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


:root {
  --bg: #F8F7F4;
  --bg-alt: #FFFFFF;
  --text: #1A1A1A;
  --text-muted: #5A5A5A;
  --accent: #E07B39;
  --accent-dark: #C4621E;
  --accent-light: #FFF0E6;
  --green: #2D8A4E;
  --green-light: #E6F4EC;
  --red-light: #FEF0F0;
  --red: #C0392B;
  --border: #E8E4DC;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}




* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  font-family: "Montserrat", sans-serif;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

/* ─── HEADER BANNER ─── */
.lp-top-bar {
  background: var(--text);
  color: #FFF;
  text-align: center;
  padding: 8px 16px;
  font-size: 12px;
  letter-spacing: 0;
  font-weight: 500;
}

.lp-top-bar span {
  color: var(--accent);
  font-weight: 700;
}

/* ─── HERO ─── */
.lp-hero {
  background: var(--bg-alt);
  padding: 56px 20px 64px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.lp-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(224, 123, 57, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.lp-hero .badge {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.lp-hero h1 {
  font-size: clamp(26px, 4.5vw, 46px);
  font-weight: 800;
  max-width: 760px;
  margin: 0 auto 16px;
  color: var(--text);
}

.lp-hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.lp-hero .hero-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 28px;
  font-weight: 400;
  line-height: 1.6;
}

.lp-hero .checklist {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  max-width: 560px;
  margin: 0 auto 32px;
  list-style: none;
}

.lp-hero .checklist li {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 5px;
}

.lp-hero .checklist li::before {
  content: '✔';
  color: var(--green);
  font-size: 12px;
}

.lp-hero .price-line {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 14px;
  font-weight: 500;
}

.lp-hero .price-line strong {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  color: var(--text);
  font-weight: 700;
}

/* ─── CTA BUTTON ─── */
.btn-cta {
  display: inline-block;
  background: var(--accent);
  color: #FFF;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 32px;
  border-radius: 7px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  cursor: pointer;
  border: none;
  letter-spacing: 0;
}

.btn-cta:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.btn-cta.btn-large {
  font-size: 16px;
  padding: 15px 40px;
}

.btn-cta.btn-green {
  background: var(--green);
}

.btn-cta.btn-green:hover {
  background: #236B3E;
}

.btn-sub {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 8px;
  text-align: center;
  letter-spacing: 0;
}

/* ─── SECTIONS ─── */
.lp-section {
  padding: 64px 20px;
}

.lp-section.alt {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.lp-container {
  max-width: 820px;
  margin: 0 auto;
}

.lp-container.wide {
  max-width: 1000px;
}

.section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text);
}

.section-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.6;
}

/* ─── PAIN SECTION ─── */
.lp-pain {
  background: var(--text);
  color: #FFF;
  padding: 64px 20px;
}

.lp-pain .section-label {
  color: var(--accent);
}

.lp-pain .section-title {
  color: #FFF;
}

.lp-pain .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
  margin-bottom: 36px;
}

.pain-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.pain-card::before {
  content: '→';
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 1px;
  font-weight: 700;
}

.lp-pain .conclusion {
  background: rgba(224, 123, 57, 0.12);
  border-left: 3px solid var(--accent);
  padding: 16px 22px;
  border-radius: 0 8px 8px 0;
  font-size: 15px;
  color: #FFF;
  max-width: 680px;
}

.lp-pain .conclusion strong {
  color: var(--accent);
}

/* ─── WHAT IS ─── */
.what-is-box {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 36px;
  text-align: center;
  max-width: 620px;
  margin: 0 auto 36px;
}

.what-is-box p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.6;
}

.what-is-box p:last-child {
  margin-bottom: 0;
}

.what-is-box strong {
  color: var(--text);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.pillar {
  text-align: center;
  padding: 24px 16px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-alt);
}

.pillar .icon {
  font-size: 26px;
  margin-bottom: 10px;
}

.pillar h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.pillar p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ─── MODULES ─── */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}

.module-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 24px 20px;
  transition: box-shadow 0.2s;

  img {
    width: 100%;
    object-fit: contain;
    border-radius: 12px;
  }
}

.module-card:hover {
  box-shadow: var(--shadow);
}

.module-card .module-num {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent-dark);
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}

.module-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.module-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.module-card ul li {
  font-size: 13px;
  color: var(--text-muted);
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}

.module-card ul li::before {
  content: '·';
  position: absolute;
  left: 4px;
  color: var(--accent);
  font-weight: 700;
}

/* ─── PLACEHOLDER ─── */
.img-placeholder {
  img {
    border-radius: 14px;

    @media (max-width: 700px) {
      width: 100%;
    }
  }
}

/* .img-placeholder svg {
  opacity: 0.35;
} */

/* ─── FOR WHO ─── */
.forwho-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.forwho-box {
  border-radius: 12px;
  padding: 24px 22px;
}

.forwho-box.yes {
  background: var(--green-light);
  border: 1px solid #B8DFC6;
}

.forwho-box.no {
  background: var(--red-light);
  border: 1px solid #F5C2BE;
}

.forwho-box h3 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 16px;
}

.forwho-box.yes h3 {
  color: var(--green);
}

.forwho-box.no h3 {
  color: var(--red);
}

.forwho-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.forwho-box ul li {
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--text);
  line-height: 1.5;
}

.forwho-box.yes ul li::before {
  content: '✔';
  color: var(--green);
  flex-shrink: 0;
  font-weight: 700;
}

.forwho-box.no ul li::before {
  content: '✖';
  color: var(--red);
  flex-shrink: 0;
  font-weight: 700;
}

/* ─── AUTHORITY ─── */
.authority-bar {
  background: var(--text);
  color: #FFF;
  padding: 56px 20px;
  text-align: center;
}

.stats-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px 52px;
  margin-bottom: 40px;
}

.stat {
  text-align: center;
}

.stat .num {
  font-family: 'Syne', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}

.stat .label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 500;
}

.authority-bar .quote-block {
  max-width: 580px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 24px 28px;
  text-align: left;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  font-style: italic;
}

.authority-bar .quote-block strong {
  display: block;
  margin-top: 12px;
  color: var(--accent);
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ─── OFFER ─── */
.offer-box {
  background: var(--bg-alt);
  border: 2px solid var(--accent);
  border-radius: 16px;
  padding: 36px 40px;
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.offer-box .offer-label {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 14px;
  display: block;
}

.offer-box h2 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 22px;
}

.offer-includes {
  list-style: none;
  text-align: left;
  max-width: 380px;
  margin: 0 auto 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.offer-includes li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.offer-includes li::before {
  content: '✔';
  color: var(--green);
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 700;
}

.offer-price-row {
  margin-bottom: 22px;
}

.offer-price-row .from {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: line-through;
  display: block;
  margin-bottom: 4px;
}

.offer-price-row .price {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.offer-price-row .price sup {
  font-size: 20px;
  vertical-align: top;
  margin-top: 8px;
  display: inline-block;
}

.offer-price-row .installment {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
  display: block;
}

/* ─── GUARANTEE ─── */
.guarantee-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--green-light);
  border: 1px solid #B8DFC6;
  border-radius: 14px;
  padding: 24px 28px;
  max-width: 600px;
  margin: 0 auto;
}

.guarantee-box .g-icon {
  font-size: 36px;
  flex-shrink: 0;
  margin-top: -2px;
}

.guarantee-box h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--green);
}

.guarantee-box p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── CTA FINAL ─── */
.lp-cta-final {
  background: linear-gradient(135deg, #1A1A1A 0%, #2D1A08 100%);
  color: #FFF;
  padding: 72px 20px;
  text-align: center;
}

.lp-cta-final h2 {
  font-size: clamp(22px, 4vw, 38px);
  font-weight: 800;
  max-width: 620px;
  margin: 0 auto 16px;
  color: #FFF;
}

.lp-cta-final h2 em {
  font-style: normal;
  color: var(--accent);
}

.lp-cta-final p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 440px;
  margin: 0 auto 32px;
}

/* ─── FOOTER ─── */
.lp-footer {
  padding: 24px 20px;
  text-align: center;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── DIVIDER ─── */
.divider {
  width: 40px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin-bottom: 20px;
}

.divider.center {
  margin-left: auto;
  margin-right: auto;
}

/* ─── PLACEHOLDER ─── */
.img-placeholder {
  /* background: var(--border);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 2px dashed #D0C8BE; */
}

/* .img-placeholder svg {
  opacity: 0.35;
} */

/* ─── RESPONSIVE ─── */
@media (max-width: 700px) {
  .lp-section {
    padding: 48px 16px;
  }

  .lp-hero {
    padding: 40px 16px 52px;
  }

  .lp-pain {
    padding: 48px 16px;
  }

  .authority-bar {
    padding: 48px 16px;
  }

  .lp-cta-final {
    padding: 56px 16px;
  }

  .pillars {
    grid-template-columns: 1fr;
  }

  .forwho-grid {
    grid-template-columns: 1fr;
  }

  .modules-grid {
    grid-template-columns: 1fr;
  }

  .stats-row {
    gap: 20px;
  }

  .stat .num {
    font-size: 32px;
  }

  .what-is-box {
    padding: 22px 20px;
  }

  .offer-box {
    padding: 24px 20px;
  }

  .offer-price-row .price {
    font-size: 40px;
  }

  .guarantee-box {
    flex-direction: column;
    gap: 14px;
    padding: 20px;
  }

  .btn-cta.btn-large {
    font-size: 15px;
    padding: 13px 28px;
    width: 100%;
    text-align: center;
  }

  .pain-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lp-hero>* {
  animation: fadeUp 0.5s ease both;
}

.lp-hero .badge {
  animation-delay: 0s;
}

.lp-hero h1 {
  animation-delay: 0.08s;
}

.lp-hero .hero-sub {
  animation-delay: 0.16s;
}

.lp-hero .checklist {
  animation-delay: 0.24s;
}

.lp-hero .cta-wrap {
  animation-delay: 0.32s;
}