/* ============================================================
   Landing pages (paid-ad destinations)
   Loaded after site.css and reuses its tokens (--green-700 etc).
   Everything here is namespaced .lp-* so it can never collide
   with the main site styles.
   ============================================================ */

.lp-body { background: var(--cream); }

/* ---------- Header ---------- */
.lp-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(38, 63, 34, .08);
}
.lp-header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .7rem 0; }
.lp-brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; color: var(--ink); font-weight: 700; }
.lp-brand img { height: 40px; width: auto; }
.lp-brand span { font-family: var(--font-head); font-size: 1.05rem; }
.lp-header-actions { display: flex; align-items: center; gap: .6rem; }
.lp-lang {
  font-weight: 700; font-size: .85rem; text-decoration: none; color: var(--green-700);
  border: 1px solid var(--green-300); border-radius: 999px; padding: .3rem .7rem; line-height: 1;
}
.lp-lang:hover { background: var(--green-100); }
.lp-wa-link {
  display: inline-flex; align-items: center; gap: .35rem;
  color: var(--green-700); text-decoration: none; font-weight: 600; font-size: .9rem;
}
.lp-wa-link:hover { color: var(--green-900); }
.lp-header-cta { padding: .55rem 1.1rem; font-size: .92rem; }

@media (max-width: 720px) {
  .lp-brand span { display: none; }
  .lp-wa-link span { display: none; }
}

/* ---------- Shared section rhythm ---------- */
.lp-sec { padding: 4.5rem 0; }
.lp-sec-head { max-width: 760px; margin: 0 auto 2.6rem; text-align: center; }
.lp-sec-head h2 { font-family: var(--font-head); font-size: clamp(1.7rem, 3.4vw, 2.4rem); line-height: 1.22; color: var(--green-900); margin: .5rem 0 .6rem; }
.lp-sec-head p { color: var(--ink-soft); font-size: 1.05rem; margin: 0; }

.lp-eyebrow {
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--green-100); color: var(--green-800);
  border-radius: 999px; padding: .4rem .9rem;
  font-size: .82rem; font-weight: 700; letter-spacing: .02em;
}
.lp-eyebrow-2 {
  display: inline-block; text-transform: uppercase; letter-spacing: .12em;
  font-size: .74rem; font-weight: 800; color: var(--gold-600);
}

/* ---------- Hero ---------- */
.lp-hero {
  background:
    radial-gradient(1100px 500px at 15% -10%, rgba(169, 194, 152, .35), transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
  padding: 3.4rem 0 4rem;
}
.lp-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: center; }
.lp-hero-text h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.6vw, 3.15rem);
  line-height: 1.14; color: var(--green-900);
  margin: 1rem 0 1rem;
}
.lp-hero-text h1 em { color: var(--gold-600); font-style: normal; }
.lp-hero-lead { font-size: 1.12rem; line-height: 1.72; color: var(--ink-soft); margin: 0 0 1.5rem; max-width: 34em; }

.lp-hero-proof { list-style: none; padding: 0; margin: 0 0 1.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: .6rem 1.2rem; }
.lp-hero-proof li { display: flex; align-items: flex-start; gap: .5rem; font-size: .95rem; font-weight: 600; color: var(--green-800); }
.lp-hero-proof .qi { color: var(--green-600); flex: 0 0 auto; margin-top: .12rem; width: 18px; height: 18px; }

/* Repeated below the form on phones only; hidden on larger screens where the
   left-hand column already carries it. */
.lp-hero-aside { display: none; }

.lp-hero-alt { display: flex; align-items: center; gap: .55rem; flex-wrap: wrap; font-size: .95rem; color: var(--ink-soft); }
.lp-hero-alt a { display: inline-flex; align-items: center; gap: .35rem; color: var(--green-700); font-weight: 700; text-decoration: none; border-bottom: 2px solid var(--green-300); }
.lp-hero-alt a:hover { color: var(--green-900); border-bottom-color: var(--green-600); }

/* ---------- Form card ---------- */
.lp-form-card {
  background: var(--white);
  border: 1px solid rgba(38, 63, 34, .09);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.9rem 1.7rem;
}
.lp-form-head { text-align: center; margin-bottom: 1.3rem; }
.lp-form-head h2 { font-family: var(--font-head); font-size: 1.5rem; color: var(--green-900); margin: .5rem 0 .35rem; }
.lp-form-head p { color: var(--ink-soft); font-size: .95rem; margin: 0; }
.lp-form-badge {
  display: inline-flex; align-items: center; gap: .35rem;
  background: var(--gold-500); color: #3a2c05;
  border-radius: 999px; padding: .28rem .8rem; font-size: .78rem; font-weight: 800;
}

.lp-field { margin-bottom: .95rem; }
.lp-field label { display: block; font-size: .87rem; font-weight: 700; color: var(--green-800); margin-bottom: .35rem; }
.lp-req { color: #b4341e; }
.lp-field input[type=text],
.lp-field input[type=tel],
.lp-field select {
  width: 100%; padding: .78rem .9rem;
  border: 1.5px solid rgba(38, 63, 34, .16); border-radius: 12px;
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  background: var(--white); transition: border-color .15s, box-shadow .15s;
}
.lp-field input:focus, .lp-field select:focus {
  outline: none; border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(85, 122, 70, .16);
}
.lp-field .phone-group { display: flex; gap: .5rem; }
.lp-field .phone-group .cc-select { flex: 0 0 8.5rem; }
.lp-field .phone-group input { flex: 1 1 auto; min-width: 0; }

.lp-submit { margin-top: .4rem; }
.lp-form-note {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: .4rem;
  margin: .85rem 0 0; font-size: .84rem; color: var(--ink-soft); text-align: center;
}
.lp-form-note .qi { color: var(--green-600); width: 15px; height: 15px; }
.lp-dot { opacity: .5; }

/* ---------- Trust bar ---------- */
.lp-trustbar { background: var(--green-900); color: #fff; padding: 1.6rem 0; }
.lp-trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; text-align: center; }
.lp-trust-grid b { display: block; font-family: var(--font-head); font-size: 1.85rem; color: var(--gold-300); line-height: 1.1; }
.lp-trust-grid span { font-size: .87rem; opacity: .85; }

/* ---------- Pain ---------- */
.lp-pain-sec { background: var(--white); }
.lp-pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.lp-pain {
  display: flex; align-items: flex-start; gap: .7rem;
  background: var(--cream); border: 1px solid rgba(38, 63, 34, .07);
  border-radius: var(--radius); padding: 1.1rem 1.15rem;
  font-size: .98rem; line-height: 1.6; color: var(--ink);
}
.lp-pain .qi { color: var(--gold-600); flex: 0 0 auto; margin-top: .15rem; }
.lp-pain-turn {
  max-width: 640px; margin: 2.2rem auto 0; text-align: center;
  font-family: var(--font-head); font-size: 1.25rem; line-height: 1.6; color: var(--green-800);
}

/* ---------- Stages ---------- */
.lp-stages-sec { background: var(--cream-2); }
.lp-stages { display: grid; grid-template-columns: 1fr auto 1fr; gap: 1.4rem; align-items: stretch; }
.lp-stage {
  background: var(--white); border: 1px solid rgba(38, 63, 34, .09);
  border-radius: var(--radius-lg); padding: 1.8rem 1.6rem; box-shadow: var(--shadow-sm);
}
.lp-stage-2 { border-color: var(--green-300); }
.lp-stage-num {
  display: inline-block; background: var(--green-700); color: #fff;
  border-radius: 999px; padding: .25rem .85rem; font-size: .76rem; font-weight: 800; letter-spacing: .04em;
}
.lp-stage h3 { font-family: var(--font-head); font-size: 1.5rem; color: var(--green-900); margin: .8rem 0 .5rem; }
.lp-stage-goal { color: var(--ink-soft); font-size: .96rem; line-height: 1.62; margin: 0 0 1.1rem; padding-bottom: 1rem; border-bottom: 1px dashed rgba(38, 63, 34, .14); }
.lp-check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.lp-check-list li { display: flex; align-items: flex-start; gap: .55rem; font-size: .96rem; line-height: 1.55; }
.lp-check-list .qi { color: var(--green-600); flex: 0 0 auto; margin-top: .18rem; width: 17px; height: 17px; }
.lp-stage-arrow { display: flex; align-items: center; color: var(--green-500); }
.lp-stage-arrow .qi { width: 34px; height: 34px; }
[dir=rtl] .lp-stage-arrow .qi { transform: scaleX(-1); }

.lp-character {
  margin-top: 1.6rem; background: var(--green-900); color: #fff;
  border-radius: var(--radius-lg); padding: 2rem 1.9rem;
  display: grid; grid-template-columns: 1.25fr .75fr; gap: 1.8rem; align-items: center;
}
.lp-character .lp-eyebrow-2 { color: var(--gold-300); }
.lp-character h3 { font-family: var(--font-head); font-size: 1.6rem; margin: .5rem 0 .7rem; }
.lp-character p { margin: 0; line-height: 1.72; opacity: .9; }
.lp-character-tags { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .5rem; }
.lp-character-tags li {
  display: inline-flex; align-items: center; gap: .35rem;
  background: rgba(255, 255, 255, .11); border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px; padding: .42rem .85rem; font-size: .88rem; font-weight: 600;
}
.lp-character-tags .qi { color: var(--gold-300); width: 15px; height: 15px; }

/* ---------- Before / After ---------- */
.lp-ba-sec { background: var(--white); }
.lp-ba { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; }
.lp-ba-head { font-weight: 800; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; padding: .5rem .2rem; text-align: center; }
.lp-ba-head.lp-ba-before { color: #a06a5e; }
.lp-ba-head.lp-ba-after { color: var(--green-700); }
.lp-ba-cell { display: flex; align-items: flex-start; gap: .6rem; border-radius: 14px; padding: .95rem 1.1rem; font-size: .97rem; line-height: 1.55; }
.lp-ba-cell.lp-ba-before { background: #faf1ee; color: #6b4a42; }
.lp-ba-cell.lp-ba-before .qi { color: #c08878; }
.lp-ba-cell.lp-ba-after { background: var(--green-100); color: var(--green-900); font-weight: 600; }
.lp-ba-cell.lp-ba-after .qi { color: var(--green-600); }
.lp-ba-cell .qi { flex: 0 0 auto; margin-top: .15rem; width: 18px; height: 18px; }

/* ---------- Steps ---------- */
.lp-steps-sec { background: var(--cream-2); }
.lp-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.lp-step { background: var(--white); border-radius: var(--radius-lg); padding: 1.8rem 1.5rem; text-align: center; box-shadow: var(--shadow-sm); }
.lp-step-num {
  width: 46px; height: 46px; margin: 0 auto .9rem;
  display: grid; place-items: center; border-radius: 50%;
  background: var(--green-700); color: #fff;
  font-family: var(--font-head); font-size: 1.3rem; font-weight: 700;
}
.lp-step h3 { font-family: var(--font-head); font-size: 1.25rem; color: var(--green-900); margin: 0 0 .5rem; }
.lp-step p { color: var(--ink-soft); font-size: .95rem; line-height: 1.62; margin: 0; }
.lp-steps-cta { text-align: center; margin-top: 2.2rem; }
.lp-steps-micro { display: block; margin-top: .7rem; font-size: .86rem; color: var(--ink-soft); }

/* ---------- Teachers ---------- */
.lp-teachers-sec { background: var(--white); }
.lp-teachers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.lp-teacher { text-align: center; background: var(--cream); border-radius: var(--radius-lg); padding: 1.5rem 1.1rem; border: 1px solid rgba(38, 63, 34, .07); }
.lp-teacher img, .lp-teacher-initial {
  width: 96px; height: 96px; border-radius: 50%; object-fit: cover;
  margin: 0 auto .85rem; display: block; border: 3px solid var(--white); box-shadow: var(--shadow-sm);
}
.lp-teacher-initial {
  display: grid; place-items: center; background: var(--green-700); color: #fff;
  font-family: var(--font-head); font-size: 2rem;
}
.lp-teacher h3 { font-size: 1.05rem; color: var(--green-900); margin: 0 0 .3rem; }
.lp-teacher-spec { font-size: .88rem; color: var(--ink-soft); line-height: 1.5; margin: 0 0 .5rem; }
.lp-teacher-qual { display: inline-flex; align-items: flex-start; gap: .3rem; font-size: .8rem; color: var(--green-700); font-weight: 600; margin: 0; }
.lp-teacher-qual .qi { width: 14px; height: 14px; flex: 0 0 auto; margin-top: .12rem; }

/* ---------- Testimonials ---------- */
.lp-testi-sec { background: var(--cream-2); }
.lp-testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.lp-testi { background: var(--white); border-radius: var(--radius-lg); padding: 1.5rem 1.4rem; margin: 0; box-shadow: var(--shadow-sm); }
.lp-stars { display: flex; gap: .12rem; margin-bottom: .7rem; }
.lp-stars .qi { color: var(--gold-500); width: 17px; height: 17px; }
.lp-testi blockquote { margin: 0 0 1rem; font-size: .97rem; line-height: 1.68; color: var(--ink); }
.lp-testi figcaption { display: flex; flex-direction: column; gap: .12rem; border-top: 1px solid rgba(38, 63, 34, .09); padding-top: .8rem; }
.lp-testi figcaption b { color: var(--green-900); font-size: .93rem; }
.lp-testi figcaption span { color: var(--ink-soft); font-size: .82rem; }

/* ---------- FAQ ---------- */
.lp-faq-sec { background: var(--white); }
.lp-faq-container { max-width: 800px; }

/* ---------- Final CTA ---------- */
.lp-final {
  background:
    radial-gradient(900px 420px at 80% 0%, rgba(85, 122, 70, .5), transparent 62%),
    var(--green-900);
  color: #fff;
}
.lp-final-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: center; }
.lp-final-text h2 { font-family: var(--font-head); font-size: clamp(1.8rem, 3.6vw, 2.5rem); line-height: 1.2; margin: 0 0 .9rem; }
.lp-final-text > p { font-size: 1.06rem; line-height: 1.75; opacity: .9; margin: 0 0 1.3rem; }
.lp-final-list { list-style: none; padding: 0; margin: 0 0 1.4rem; display: grid; gap: .65rem; }
.lp-final-list li { display: flex; align-items: flex-start; gap: .6rem; font-size: .98rem; }
.lp-final-list .qi { color: var(--gold-300); flex: 0 0 auto; margin-top: .15rem; width: 18px; height: 18px; }
.lp-final-alt { color: rgba(255, 255, 255, .82); }
.lp-final-alt a { color: var(--gold-300); border-bottom-color: rgba(230, 205, 130, .5); }
.lp-final-alt a:hover { color: #fff; border-bottom-color: #fff; }
.lp-form-card-dark { background: var(--white); }

/* ---------- Thank you ---------- */
.lp-ty { padding: 4.5rem 0 5.5rem; background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%); }
.lp-ty-card {
  max-width: 660px; margin: 0 auto; text-align: center;
  background: var(--white); border-radius: var(--radius-lg);
  padding: 3rem 2.2rem; box-shadow: var(--shadow-lg);
}
.lp-ty-icon { width: 76px; height: 76px; margin: 0 auto 1.2rem; display: grid; place-items: center; border-radius: 50%; background: var(--green-100); }
.lp-ty-icon .qi { width: 40px; height: 40px; color: var(--green-700); }
.lp-ty-card h1 { font-family: var(--font-head); font-size: clamp(1.7rem, 3.6vw, 2.3rem); color: var(--green-900); margin: 0 0 .8rem; }
.lp-ty-lead { font-size: 1.06rem; line-height: 1.72; color: var(--ink-soft); margin: 0 0 2rem; }
.lp-ty-next { text-align: start; background: var(--cream); border-radius: var(--radius); padding: 1.5rem 1.6rem; margin-bottom: 1.8rem; }
.lp-ty-next h2 { font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; color: var(--gold-600); margin: 0 0 1rem; }
.lp-ty-next ol { margin: 0; padding-inline-start: 1.2rem; display: grid; gap: .9rem; }
.lp-ty-next li b { display: block; color: var(--green-900); font-size: .98rem; margin-bottom: .15rem; }
.lp-ty-next li span { color: var(--ink-soft); font-size: .91rem; line-height: 1.55; }
.lp-ty-cta p { margin: 0 0 .8rem; color: var(--ink-soft); font-size: .95rem; }
.lp-ty-back { display: inline-block; margin-top: 1.6rem; color: var(--green-700); font-size: .92rem; }

/* ---------- Footer ---------- */
.lp-footer { background: var(--green-900); color: rgba(255, 255, 255, .78); padding: 2.4rem 0 1.6rem; }
.lp-footer-top { display: flex; align-items: center; justify-content: space-between; gap: 1.4rem; flex-wrap: wrap; padding-bottom: 1.4rem; border-bottom: 1px solid rgba(255, 255, 255, .13); }
.lp-footer-logo { height: 44px; width: auto; }
.lp-footer-contact { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.lp-footer-contact a { display: inline-flex; align-items: center; gap: .4rem; color: rgba(255, 255, 255, .82); text-decoration: none; font-size: .92rem; }
.lp-footer-contact a:hover { color: #fff; }
.lp-footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-top: 1.2rem; font-size: .86rem; }
.lp-footer-bottom a { color: var(--gold-300); text-decoration: none; }
.lp-footer-bottom a:hover { text-decoration: underline; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 992px) {
  .lp-hero-grid,
  .lp-final-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .lp-stages { grid-template-columns: 1fr; }
  .lp-stage-arrow { justify-content: center; }
  .lp-stage-arrow .qi { transform: rotate(90deg); }
  [dir=rtl] .lp-stage-arrow .qi { transform: rotate(90deg); }
  .lp-character { grid-template-columns: 1fr; }
  .lp-pain-grid,
  .lp-testi-grid,
  .lp-teachers { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .lp-sec { padding: 3.2rem 0; }
  .lp-hero { padding: 2.2rem 0 3rem; }
  .lp-hero-proof { grid-template-columns: 1fr; }
  .lp-pain-grid,
  .lp-steps,
  .lp-testi-grid { grid-template-columns: 1fr; }
  .lp-teachers { grid-template-columns: repeat(2, 1fr); }
  .lp-trust-grid { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
  .lp-form-card { padding: 1.5rem 1.2rem; }
  .lp-ty-card { padding: 2.2rem 1.4rem; }
  .lp-footer-top { flex-direction: column; align-items: flex-start; }
  .lp-ba { grid-template-columns: 1fr; gap: .5rem; }
  .lp-ba-head { text-align: start; margin-top: .8rem; }
  .lp-ba-head.lp-ba-before { margin-top: 0; }
}

/* On phones the headline comes first so the visitor confirms they're in the
   right place (message match with the ad), then the form immediately after —
   spacing is tightened so it still lands near the fold. The sticky header CTA
   jumps straight to #register for anyone who is already convinced. */
@media (max-width: 992px) {
  .lp-hero-grid { display: flex; flex-direction: column; gap: 1.6rem; }
  .lp-hero-form { width: 100%; }
}

@media (max-width: 720px) {
  .lp-hero-text h1 { margin: .8rem 0 .7rem; }
  .lp-hero-lead { font-size: 1.02rem; line-height: 1.62; margin-bottom: 0; }
  /* Supporting detail belongs after the form on a small screen. */
  .lp-hero-text .lp-hero-proof,
  .lp-hero-text .lp-hero-alt { display: none; }
  .lp-hero-aside { display: block; margin-top: 1.6rem; }
  .lp-hero-aside .lp-hero-proof { display: grid; grid-template-columns: 1fr; margin-bottom: 1.1rem; }
  .lp-hero-aside .lp-hero-alt { display: flex; }

  /* Give the number itself the room — the dial-code list is short. */
  .lp-field .phone-group .cc-select { flex: 0 0 6.4rem; padding-inline: .4rem; }
}
