/* =========================================
   LETI — Bepul material (lead magnet) styles
   Built on top of styles.css + bepul.css
   ========================================= */

/* =========================================
   MINIMAL HEADER
   ========================================= */
.lm-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.lm-header__inner {
  display: flex;
  align-items: center;
  height: 56px;
  gap: 20px;
}
.lm-header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.lm-header__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  border-radius: var(--radius-full);
  transition: all var(--transition);
}
.lm-header__back:hover {
  color: var(--brand);
  background: var(--brand-pale);
}
.lm-header__trust {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--brand-pale);
  color: var(--brand);
  border-radius: var(--radius-full);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.lm-header__trust-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
  animation: lm-pulse 2s infinite;
}
@keyframes lm-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2); }
  50%      { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}

/* =========================================
   HERO (offer + form, 2 columns)
   ========================================= */
.lm-hero {
  position: relative;
  padding: 70px 0 90px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff;
  overflow: hidden;
}
.lm-hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 77, 126, 0.30), transparent 45%),
    radial-gradient(circle at 90% 90%, rgba(255, 214, 229, 0.15), transparent 50%);
  pointer-events: none;
}
.lm-hero__shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}
.lm-hero__shape--1 {
  width: 380px; height: 380px;
  top: -140px; right: -80px;
  background: rgba(255, 77, 126, 0.28);
}
.lm-hero__shape--2 {
  width: 320px; height: 320px;
  bottom: -160px; left: -60px;
  background: rgba(255, 214, 229, 0.16);
}
.lm-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}

/* ----- LEFT: offer ----- */
.lm-offer .section-tag {
  margin-bottom: 18px;
}
.lm-offer__title {
  font-size: clamp(32px, 4.6vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.lm-offer__title-hl {
  background: linear-gradient(120deg, #FFD6E5, #fff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lm-offer__sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 540px;
}

.lm-offer__bullets {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.lm-offer__bullets li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.lm-offer__check {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  margin-top: 2px;
}
.lm-offer__bullets strong {
  display: block;
  font-size: 15.5px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.lm-offer__bullets small {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}

.lm-offer__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.lm-offer__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}
.lm-offer__meta-icon { font-size: 15px; }

/* ----- RIGHT: form card ----- */
.lm-formcard {
  position: sticky;
  top: 80px;
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
  color: var(--text-primary);
}
.lm-formcard__top {
  text-align: center;
  padding-bottom: 22px;
  border-bottom: 1px dashed var(--border);
  margin-bottom: 22px;
}
.lm-formcard__price {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 14px;
}
.lm-formcard__price-old {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: line-through;
}
.lm-formcard__price-new {
  font-size: 24px;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -0.01em;
}
.lm-formcard__title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.lm-formcard__sub {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.lm-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lm-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lm-form__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}
.lm-form__field input {
  padding: 14px 16px;
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 15px;
  font-family: var(--font);
  color: var(--text-primary);
  transition: all var(--transition);
}
.lm-form__field input::placeholder { color: var(--text-muted); }
.lm-form__field input:focus {
  outline: none;
  border-color: var(--brand);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(139, 15, 62, 0.08);
}

.lm-form__submit {
  margin-top: 6px;
  width: 100%;
  justify-content: center;
}

/* =========================================
   INSIDE (what's in the PDF)
   ========================================= */
.lm-inside {
  padding: 100px 0;
  background: var(--bg);
}
.lm-inside__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.lm-inside__card {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.lm-inside__card:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 15, 62, 0.25);
  box-shadow: var(--shadow-md);
}
.lm-inside__card--accent {
  background: linear-gradient(180deg, #fff 0%, var(--brand-pale) 100%);
  border-color: var(--brand);
}
.lm-inside__icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-pale);
  color: var(--brand);
  border-radius: var(--radius-md);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 18px;
  font-family: 'Inter', serif;
}
.lm-inside__icon--brand  { background: var(--brand-pale); color: var(--brand); }
.lm-inside__icon--blue   { background: #E6F1FB; color: #1E6FC4; }
.lm-inside__icon--green  { background: #E6F7EE; color: #1A8B4C; }
.lm-inside__icon--purple { background: #EFE6FB; color: #6B3FBF; }
.lm-inside__icon--orange { background: #FFEFE0; color: #D8700A; }
.lm-inside__icon--brand-solid { background: var(--brand); color: #fff; }

.lm-inside__card h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.lm-inside__card p {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* =========================================
   FOR WHOM
   ========================================= */
.lm-for {
  padding: 100px 0;
  background: var(--bg-light);
}
.lm-for__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.lm-for__card {
  display: flex;
  gap: 16px;
  padding: 24px 26px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.lm-for__card:hover {
  transform: translateY(-3px);
  border-color: var(--brand);
  box-shadow: var(--shadow-sm);
}
.lm-for__check {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-pale);
  color: var(--brand);
  border-radius: 50%;
  font-weight: 800;
  font-size: 16px;
}
.lm-for__card h3 {
  font-size: 16.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.lm-for__card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* =========================================
   TRUST (minimal)
   ========================================= */
.lm-trust {
  padding: 80px 0;
  background: var(--bg);
}
.lm-trust__stats {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
  max-width: 820px;
  margin: 0 auto 50px;
  padding: 28px 20px;
  background: var(--brand-pale);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(139, 15, 62, 0.12);
}
.lm-trust__stat {
  text-align: center;
  flex: 1;
}
.lm-trust__stat strong {
  display: block;
  font-size: 30px;
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.lm-trust__stat span {
  font-size: 13px;
  color: var(--text-secondary);
}
.lm-trust__stat-divider {
  width: 1px;
  height: 38px;
  background: rgba(139, 15, 62, 0.2);
  flex-shrink: 0;
}

.lm-trust__reviews {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 900px;
  margin: 0 auto;
}

/* =========================================
   FAQ override (tighter on this page)
   ========================================= */
.lm-faq { padding: 90px 0; background: var(--bg-light); }
.lm-faq__list { max-width: 780px; margin: 0 auto; }

/* =========================================
   FINAL CTA (simplified)
   ========================================= */
.lm-final {
  position: relative;
  padding: 90px 0;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff;
  overflow: hidden;
  text-align: center;
}
.lm-final__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 77, 126, 0.25), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(255, 214, 229, 0.15), transparent 45%);
  pointer-events: none;
}
.lm-final .container { position: relative; z-index: 1; }
.lm-final__inner {
  max-width: 640px;
  margin: 0 auto;
}
.lm-final__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-full);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 22px;
}
.lm-final__eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FFD6E5;
  box-shadow: 0 0 10px rgba(255, 214, 229, 0.8);
}
.lm-final h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.lm-final p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
}
.lm-final__cta {
  min-width: 240px;
}
.lm-final__note {
  margin-top: 18px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}

/* =========================================
   MINIMAL FOOTER
   ========================================= */
.lm-footer {
  padding: 28px 0;
  background: #0F0A14;
  color: rgba(255, 255, 255, 0.65);
}
.lm-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.lm-footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
}
.lm-footer__brand img { opacity: 0.8; }
.lm-footer__nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.lm-footer__nav a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition);
}
.lm-footer__nav a:hover { color: #fff; }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .lm-hero { padding: 56px 0 72px; }
  .lm-hero__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .lm-formcard {
    position: static;
    max-width: 560px;
    margin: 0 auto;
    width: 100%;
  }
  .lm-inside__grid { grid-template-columns: repeat(2, 1fr); }
  .lm-trust__reviews { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .lm-header__trust { display: none; }
  .lm-header__inner { gap: 12px; height: 56px; }
  .lm-header__back { font-size: 13px; }

  .lm-hero { padding: 36px 0 52px; }
  .lm-offer__title { font-size: clamp(24px, 7vw, 30px); line-height: 1.15; }
  .lm-offer__sub { font-size: 15px; }
  .lm-offer__meta { gap: 8px; flex-wrap: wrap; }
  .lm-offer__bullets li { font-size: 14px; }

  .lm-formcard { padding: 22px 18px; border-radius: var(--radius-lg); }
  .lm-formcard__title { font-size: 18px; }
  .lm-formcard__field input,
  .lm-formcard__field select,
  .lm-formcard__field textarea { font-size: 15px; padding: 12px 14px; }
  .lm-formcard__submit { width: 100%; justify-content: center; }

  .lm-inside,
  .lm-for,
  .lm-trust,
  .lm-faq,
  .lm-final { padding: 52px 0; }

  .lm-inside__grid { grid-template-columns: 1fr; }
  .lm-for__grid { grid-template-columns: 1fr; }

  .lm-trust__stats {
    flex-direction: column;
    gap: 18px;
    padding: 22px 16px;
  }
  .lm-trust__stat-divider {
    width: 60%;
    height: 1px;
  }
  .lm-trust__stat strong { font-size: 26px; }

  .lm-final h2 { font-size: clamp(22px, 6vw, 28px); }
  .lm-final__cta { width: 100%; justify-content: center; }

  .lm-footer__inner {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }
  .lm-footer__nav {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 18px;
  }
}

@media (max-width: 420px) {
  .lm-hero { padding: 28px 0 40px; }
  .lm-offer__title { font-size: 22px; }
  .lm-formcard { padding: 20px 16px; }
}
