/* =====================================================
   LANDING PAGE — ENEM Master
   ===================================================== */

#screen-landing { bottom: 0; }

.lp-wrap {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  background: var(--bg-primary);
}

/* ---- Sticky nav ---- */
.lp-nav {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5,5,10,.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.lp-nav-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  flex: 1;
}

.lp-nav-logo {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  overflow: hidden;
  flex-shrink: 0;
}
.lp-nav-logo img { display: block; width: 30px; height: 30px; }

.lp-nav-name {
  font-size: 17px;
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: -.3px;
}
.lp-nav-name em  { font-style: normal; font-weight: 400; color: var(--teal); }
.lp-nav-name strong { font-weight: 900; color: #fff; }

.lp-nav-actions { display: flex; align-items: center; gap: 8px; }

.lp-nav-login {
  background: none;
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.65);
  font-size: 13px;
  font-weight: 700;
  font-family: inherit;
  border-radius: 10px;
  padding: 7px 13px;
  cursor: pointer;
  transition: border-color .2s, color .2s;
  white-space: nowrap;
}
.lp-nav-login:hover { border-color: var(--teal); color: var(--teal); }

.lp-nav-cta {
  background: linear-gradient(135deg, #7c3aed 0%, var(--teal) 100%);
  border: none;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  font-family: inherit;
  border-radius: 10px;
  padding: 7px 15px;
  cursor: pointer;
  box-shadow: 0 2px 14px rgba(124,58,237,.3);
  transition: transform .15s, filter .15s;
  white-space: nowrap;
}
.lp-nav-cta:hover { transform: translateY(-1px); filter: brightness(1.1); }

/* ---- Hero ---- */
.lp-hero {
  padding: 52px 24px 48px;
  background:
    radial-gradient(ellipse 180% 65% at 50% -10%, rgba(124,58,237,.30) 0%, transparent 52%),
    radial-gradient(ellipse 90% 40% at 105% 95%, rgba(0,180,166,.18) 0%, transparent 55%),
    radial-gradient(ellipse 60% 30% at -10% 65%, rgba(99,102,241,.12) 0%, transparent 50%);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--teal);
  text-transform: uppercase;
  background: rgba(0,180,166,.08);
  border: 1px solid rgba(0,180,166,.22);
  border-radius: 100px;
  padding: 5px 14px 5px 9px;
  margin-bottom: 22px;
}
.lp-eyebrow-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,180,166,.2);
  animation: pulse-dot 2.4s ease-in-out infinite;
  flex-shrink: 0;
}

.lp-headline {
  font-size: clamp(32px, 9vw, 44px);
  font-weight: 900;
  line-height: 1.07;
  letter-spacing: -1.2px;
  color: #fff;
  margin-bottom: 18px;
  max-width: 340px;
}
.lp-headline-accent {
  background: linear-gradient(125deg, #c4b5fd 0%, #a78bfa 28%, var(--teal) 62%, #00e5d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lp-subheadline {
  font-size: 15px;
  color: rgba(255,255,255,.55);
  line-height: 1.65;
  max-width: 300px;
  margin-bottom: 30px;
}

/* Primary CTA — violet→teal gradient, shimmer */
.lp-cta-primary {
  width: 100%;
  max-width: 380px;
  padding: 17px 24px;
  background: linear-gradient(135deg, #7c3aed 0%, var(--teal) 100%);
  color: #fff;
  border: none;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -.2px;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 6px 28px rgba(124,58,237,.38), inset 0 1px 0 rgba(255,255,255,.13);
  transition: transform .15s, filter .15s, box-shadow .15s;
  position: relative;
  overflow: hidden;
  display: block;
}
.lp-cta-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 35%;
  height: 200%;
  background: rgba(255,255,255,.14);
  transform: skewX(-20deg);
  animation: lp-shimmer 3.5s infinite;
}
@keyframes lp-shimmer {
  0%       { left: -60%; }
  50%, 100%{ left: 160%; }
}
.lp-cta-primary:hover  { transform: translateY(-2px); filter: brightness(1.1); box-shadow: 0 8px 32px rgba(124,58,237,.45); }
.lp-cta-primary:active { transform: translateY(0); }

.lp-cta-micro {
  font-size: 11px;
  color: rgba(255,255,255,.38);
  margin-top: 10px;
  margin-bottom: 24px;
  letter-spacing: .1px;
  max-width: 380px;
}

.lp-social-proof {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}
.lp-social-proof strong { color: rgba(255,255,255,.85); }

.lp-avatars { display: flex; }
.lp-av {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid rgba(5,5,10,.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
}
.lp-av:not(:first-child) { margin-left: -8px; }

/* ---- Stats strip ---- */
.lp-stats-strip {
  display: flex;
  align-items: center;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 20px;
  background: rgba(255,255,255,.025);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  flex-shrink: 0;
}
.lp-stats-strip::-webkit-scrollbar { display: none; }

.lp-strip-item {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 14px 18px;
}
.lp-strip-num {
  font-size: 15px;
  font-weight: 900;
  color: #fff;
  white-space: nowrap;
}
.lp-strip-lbl {
  font-size: 9px;
  font-weight: 700;
  color: rgba(255,255,255,.35);
  text-transform: uppercase;
  letter-spacing: .5px;
  white-space: nowrap;
}
.lp-strip-sep {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,.08);
  flex-shrink: 0;
}

/* ---- Section base ---- */
.lp-section {
  padding: 52px 24px;
}

.lp-animate {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s cubic-bezier(.16,1,.3,1), transform .65s cubic-bezier(.16,1,.3,1);
}
.lp-animate.lp-visible {
  opacity: 1;
  transform: translateY(0);
}

.lp-section-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}
.lp-section-title {
  font-size: clamp(22px, 6vw, 28px);
  font-weight: 900;
  line-height: 1.14;
  letter-spacing: -.6px;
  color: #fff;
  margin-bottom: 10px;
}
.lp-section-sub {
  font-size: 14px;
  color: rgba(255,255,255,.46);
  line-height: 1.65;
  margin-bottom: 32px;
}

/* ---- Problem section ---- */
.lp-problem { background: rgba(255,255,255,.01); }

.lp-problem-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.lp-problem-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px;
  padding: 18px;
  transition: border-color .2s;
}
.lp-problem-card:hover { border-color: rgba(255,255,255,.12); }

.lp-problem-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.lp-problem-body h3 {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 5px;
  line-height: 1.3;
}
.lp-problem-body p {
  font-size: 13px;
  color: rgba(255,255,255,.46);
  line-height: 1.6;
  margin: 0;
}
.lp-problem-bridge {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  line-height: 1.65;
  text-align: center;
  font-style: italic;
  padding: 18px 20px;
  border: 1px solid rgba(0,180,166,.2);
  border-radius: 14px;
  background: rgba(0,180,166,.04);
}

/* ---- How it works ---- */
.lp-how {
  background:
    radial-gradient(ellipse 110% 45% at 105% 0%, rgba(124,58,237,.1) 0%, transparent 60%),
    transparent;
}
.lp-steps { display: flex; flex-direction: column; }
.lp-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  position: relative;
  padding-bottom: 32px;
}
.lp-step:last-child { padding-bottom: 0; }
.lp-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 21px;
  top: 46px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, rgba(124,58,237,.5), rgba(0,180,166,.3), transparent);
}
.lp-step-num {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(124,58,237,.2), rgba(0,180,166,.15));
  border: 1px solid rgba(124,58,237,.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 900;
  color: #c4b5fd;
  flex-shrink: 0;
  letter-spacing: -.4px;
}
.lp-step-content { padding-top: 6px; }
.lp-step-content h3 {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 7px;
  line-height: 1.3;
}
.lp-step-content p {
  font-size: 13px;
  color: rgba(255,255,255,.46);
  line-height: 1.65;
  margin: 0;
}

/* ---- Features ---- */
.lp-features { background: rgba(255,255,255,.01); }
.lp-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.lp-feat-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .2s, border-color .2s;
}
.lp-feat-card:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.12); }

.lp-feat-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.lp-fi-teal   { background: rgba(0,180,166,.15);  box-shadow: 0 0 14px rgba(0,180,166,.1); }
.lp-fi-violet { background: rgba(124,58,237,.15); box-shadow: 0 0 14px rgba(124,58,237,.1); }
.lp-fi-blue   { background: rgba(99,102,241,.15); box-shadow: 0 0 14px rgba(99,102,241,.1); }
.lp-fi-orange { background: rgba(249,115,22,.15); box-shadow: 0 0 14px rgba(249,115,22,.08); }
.lp-fi-gold   { background: rgba(245,197,24,.15); box-shadow: 0 0 14px rgba(245,197,24,.08); }
.lp-fi-green  { background: rgba(34,197,94,.15);  box-shadow: 0 0 14px rgba(34,197,94,.08); }

.lp-feat-badge {
  display: inline-flex;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 100px;
  width: fit-content;
}
.lp-fb-teal   { background: rgba(0,180,166,.12);  color: var(--teal); border: 1px solid rgba(0,180,166,.2); }
.lp-fb-violet { background: rgba(124,58,237,.12); color: #a78bfa;     border: 1px solid rgba(124,58,237,.2); }
.lp-fb-blue   { background: rgba(99,102,241,.12); color: #818cf8;     border: 1px solid rgba(99,102,241,.2); }
.lp-fb-orange { background: rgba(249,115,22,.12); color: #fb923c;     border: 1px solid rgba(249,115,22,.2); }
.lp-fb-gold   { background: rgba(245,197,24,.12); color: var(--gold); border: 1px solid rgba(245,197,24,.2); }
.lp-fb-green  { background: rgba(34,197,94,.12);  color: #4ade80;     border: 1px solid rgba(34,197,94,.2); }

.lp-feat-card h3 {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin: 0;
}
.lp-feat-card p {
  font-size: 12px;
  color: rgba(255,255,255,.42);
  line-height: 1.55;
  margin: 0;
}

/* ---- Testimonials ---- */
.lp-testimonials {
  background:
    radial-gradient(ellipse 110% 45% at 0% 55%, rgba(0,180,166,.08) 0%, transparent 60%),
    transparent;
}
.lp-tcard {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(0,180,166,.14);
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 12px;
}
.lp-tcard:last-child { margin-bottom: 0; }

.lp-tcard-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.lp-tcard-av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
}
.lp-tcard-info { flex: 1; min-width: 0; }
.lp-tcard-name {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
}
.lp-tcard-city {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,.4);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lp-tcard-stars {
  display: block;
  font-size: 11px;
  color: var(--gold);
  margin-top: 3px;
  letter-spacing: 1px;
}
.lp-tcard-result {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
  gap: 1px;
}
.lp-tcard-before { font-size: 13px; color: rgba(255,255,255,.28); text-decoration: line-through; }
.lp-tcard-arrow  { font-size: 12px; color: #4ade80; }
.lp-tcard-after  { font-size: 22px; font-weight: 900; color: #4ade80; letter-spacing: -.5px; }
.lp-tcard-area   { font-size: 9px; font-weight: 700; color: rgba(255,255,255,.3); text-transform: uppercase; letter-spacing: .5px; text-align: right; }
.lp-tcard-highlight {
  font-size: 22px;
  font-weight: 900;
  color: #4ade80;
  letter-spacing: -.5px;
}
.lp-tcard-sub { font-size: 9px; font-weight: 700; color: rgba(255,255,255,.3); text-transform: uppercase; letter-spacing: .5px; text-align: right; }

.lp-tcard-quote {
  font-size: 13px;
  color: rgba(255,255,255,.62);
  line-height: 1.65;
  font-style: italic;
}
.lp-tcard-quote::before { content: '\201C'; }
.lp-tcard-quote::after  { content: '\201D'; }

.lp-proof-count {
  font-size: 12px;
  color: rgba(255,255,255,.35);
  text-align: center;
  margin-top: 20px;
  line-height: 1.5;
}
.lp-proof-count strong { color: rgba(255,255,255,.65); }

/* ---- Compare table ---- */
.lp-compare { background: rgba(255,255,255,.01); }

.lp-compare-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.08);
}
.lp-compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 280px;
}
.lp-compare-table th {
  padding: 12px 14px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .07em;
  text-align: center;
}
.lp-compare-table th:first-child { text-align: left; }
.lp-th-others { color: rgba(255,255,255,.3); }
.lp-th-us {
  color: var(--teal);
  background: rgba(0,180,166,.06);
  border-left: 1px solid rgba(0,180,166,.18);
  border-right: 1px solid rgba(0,180,166,.18);
}
.lp-compare-table td {
  padding: 10px 14px;
  border-top: 1px solid rgba(255,255,255,.05);
  font-size: 13px;
  color: rgba(255,255,255,.55);
  vertical-align: middle;
}
.lp-compare-table td:first-child { font-weight: 600; color: rgba(255,255,255,.75); }
.lp-compare-table td:nth-child(2) { text-align: center; }
.lp-compare-table td:nth-child(3) {
  text-align: center;
  background: rgba(0,180,166,.04);
  border-left: 1px solid rgba(0,180,166,.15);
  border-right: 1px solid rgba(0,180,166,.15);
}
.lp-compare-yes { color: var(--teal); font-weight: 900; font-size: 15px; }
.lp-compare-no  { color: rgba(255,255,255,.18); font-size: 15px; }
.lp-compare-price-row td { border-top: 2px solid rgba(255,255,255,.08); padding-top: 14px; font-weight: 800; }
.lp-compare-price-others { text-decoration: line-through; color: rgba(255,255,255,.22); }
.lp-compare-price-us { color: #4ade80; font-size: 14px; background: rgba(0,180,166,.04); }

/* ---- Pricing ---- */
.lp-pricing {
  background:
    radial-gradient(ellipse 130% 55% at 50% 100%, rgba(124,58,237,.12) 0%, transparent 55%),
    transparent;
}
.lp-plan-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 12px;
}
.lp-plan-premium {
  background: rgba(0,180,166,.05);
  border-color: rgba(0,180,166,.28);
  box-shadow: 0 0 48px rgba(0,180,166,.1);
}
.lp-plan-popular {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #7c3aed, var(--teal));
  border-radius: 100px;
  padding: 4px 12px;
  margin-bottom: 14px;
}
.lp-plan-name {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 4px;
}
.lp-plan-price-old {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,.28);
  text-decoration: line-through;
  margin-bottom: 2px;
  font-weight: 600;
}
.lp-plan-price {
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1.2px;
  line-height: 1;
  margin-bottom: 4px;
}
.lp-plan-price-period {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,.45);
  letter-spacing: 0;
}
.lp-plan-discount {
  display: inline-flex;
  font-size: 11px;
  font-weight: 800;
  color: #4ade80;
  background: rgba(34,197,94,.1);
  border: 1px solid rgba(34,197,94,.22);
  border-radius: 100px;
  padding: 3px 10px;
  margin: 8px 0 18px;
}
.lp-plan-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.lp-plan-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  line-height: 1.45;
}
.lp-plan-yes {
  color: rgba(255,255,255,.75);
}
.lp-plan-yes::before {
  content: '✓';
  color: var(--teal);
  font-weight: 900;
  flex-shrink: 0;
  font-size: 13px;
}
.lp-plan-no {
  color: rgba(255,255,255,.22);
}
.lp-plan-no::before {
  content: '✗';
  color: rgba(255,255,255,.15);
  font-weight: 700;
  flex-shrink: 0;
}
.lp-plan-cta-free {
  width: 100%;
  padding: 14px 20px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.7);
  border-radius: 14px;
  font-size: 15px;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.lp-plan-cta-free:hover { background: rgba(255,255,255,.11); color: #fff; }

.lp-guarantee {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px;
  margin-top: 16px;
}
.lp-guarantee-icon { font-size: 24px; flex-shrink: 0; line-height: 1; }
.lp-guarantee-text strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 3px;
}
.lp-guarantee-text span {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  line-height: 1.5;
}
.lp-urgency {
  text-align: center;
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255,255,255,.38);
}
.lp-urgency strong { color: rgba(255,255,255,.68); }

/* ---- FAQ ---- */
.lp-faq { background: rgba(255,255,255,.01); }
.lp-faq-list { display: flex; flex-direction: column; gap: 8px; }
.lp-faq-item {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .2s;
}
.lp-faq-item.open { border-color: rgba(0,180,166,.25); }
.lp-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 16px;
  background: none;
  border: none;
  color: rgba(255,255,255,.82);
  font-size: 14px;
  font-weight: 700;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  line-height: 1.4;
}
.lp-faq-plus {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: rgba(255,255,255,.45);
  font-weight: 300;
  transition: transform .25s, background .2s, color .2s;
  line-height: 1;
}
.lp-faq-item.open .lp-faq-plus {
  transform: rotate(45deg);
  background: rgba(0,180,166,.15);
  color: var(--teal);
}
.lp-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .38s ease, padding .3s ease;
  font-size: 13px;
  color: rgba(255,255,255,.52);
  line-height: 1.7;
  padding: 0 16px;
}
.lp-faq-item.open .lp-faq-a { max-height: 220px; padding: 2px 16px 16px; }

/* ---- Final CTA ---- */
.lp-final {
  padding: 64px 24px 60px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  background:
    radial-gradient(ellipse 170% 60% at 50% 0%, rgba(124,58,237,.22) 0%, transparent 55%),
    radial-gradient(ellipse 110% 45% at 50% 100%, rgba(0,180,166,.14) 0%, transparent 55%),
    rgba(124,58,237,.03);
}
.lp-final-eyebrow {
  font-size: 13px;
  color: rgba(255,255,255,.38);
  margin-bottom: 8px;
  letter-spacing: .1px;
}
.lp-final-days {
  font-size: clamp(42px, 12vw, 64px);
  font-weight: 900;
  display: block;
  background: linear-gradient(125deg, #c4b5fd, var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 4px;
}
.lp-final-days-label {
  font-size: 13px;
  color: rgba(255,255,255,.38);
  margin-bottom: 24px;
  letter-spacing: .5px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 10px;
}
.lp-final-title {
  font-size: clamp(20px, 5.5vw, 24px);
  font-weight: 900;
  line-height: 1.22;
  letter-spacing: -.5px;
  color: #fff;
  max-width: 300px;
  margin-bottom: 28px;
}

/* ---- Footer ---- */
.lp-footer {
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 10px;
  font-size: 12px;
  color: rgba(255,255,255,.22);
  width: 100%;
}
.lp-footer-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,.28);
  font-size: 12px;
  font-family: inherit;
  cursor: pointer;
  padding: 3px 6px;
  transition: color .2s;
}
.lp-footer-btn:hover { color: rgba(255,255,255,.6); }
.lp-footer-sep { width: 1px; height: 10px; background: rgba(255,255,255,.1); }
