/* =========================================================
   Landing page — focused, single-CTA layout
   Reuses tokens + components from /assets/style.css
   ========================================================= */

.landing { background: #000; }

/* ---------- top bar ---------- */
.lp-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem var(--pad-x);
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.lp-bar__brand { display: flex; align-items: center; }
.lp-bar__right { display: flex; align-items: center; gap: 0.9rem; }

.lp-bar__wa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  color: var(--fg);
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}
.lp-bar__wa:hover { background: var(--fg); color: var(--bg); border-color: var(--fg); }
.lp-bar__wa-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  animation: pulseDot 1.6s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50%      { box-shadow: 0 0 0 8px rgba(37, 211, 102, 0); }
}

@media (max-width: 640px) {
  .lp-bar__wa span:last-child { display: none; }
  .lp-bar__wa { padding: 0.55rem; }
  .lp-bar__cta .btn__arrow { display: none; }
}

/* ---------- hero (split layout) ---------- */
.lp-hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: clamp(3rem, 7vw, 6rem) var(--pad-x) clamp(4rem, 7vw, 6rem);
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  isolation: isolate;
}
.lp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 60% 50% at 20% 30%, rgba(184, 255, 92, 0.06), transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(255, 255, 255, 0.04), transparent 70%);
  pointer-events: none;
}

.lp-hero__copy { display: flex; flex-direction: column; gap: 1.5rem; }

.lp-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  align-self: flex-start;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--fg-soft);
}
.lp-tag__pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-2);
  animation: pulse 2s ease-in-out infinite;
}

.lp-hero__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.6rem, 6.4vw, 6.4rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin: 0.5rem 0 0.5rem;
}
.lp-hero__title .reveal-mask { display: block; }

.lp-hero__sub {
  font-size: clamp(1rem, 1.15vw, 1.15rem);
  line-height: 1.55;
  color: var(--fg-soft);
  opacity: 0.85;
  max-width: 48ch;
  margin: 0;
}

.lp-bullets {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.lp-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.95rem;
  color: var(--fg-soft);
  line-height: 1.5;
}
.lp-tick {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(184, 255, 92, 0.12);
  color: var(--accent-2);
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.lp-trust {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 0.5rem;
}
.lp-trust__stars {
  color: var(--accent-2);
  letter-spacing: 0.1em;
  font-size: 0.9rem;
}
.lp-trust__text {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* ---------- form card ---------- */
.lp-form-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  padding: clamp(1.6rem, 2.4vw, 2.4rem);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.lp-form-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(184, 255, 92, 0.25), transparent 40%, rgba(255,255,255,0.08) 100%);
  z-index: -1;
  pointer-events: none;
  -webkit-mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  padding: 1px;
}

.lp-form-card__head { margin-bottom: 1.5rem; }
.lp-form-card__eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 0.8rem;
  font-weight: 600;
}
.lp-form-card__head h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0 0 0.6rem;
}
.lp-form-card__head p { margin: 0; font-size: 0.9rem; color: var(--muted); }

.lp-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.lp-form .field input,
.lp-form .field textarea {
  padding: 1.1rem 0 0.55rem;
  font-size: 0.95rem;
}
.lp-form__submit { width: 100%; justify-content: center; margin-top: 0.4rem; }
.lp-form__submit { justify-content: space-between; }
.lp-form__fine {
  font-size: 0.72rem;
  color: var(--muted);
  text-align: center;
  margin: 0.6rem 0 0;
  letter-spacing: 0.04em;
}

@media (max-width: 900px) {
  .lp-hero { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ---------- stack strip ---------- */
.lp-stack {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.4rem var(--pad-x);
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: var(--container);
  margin: 0 auto;
  flex-wrap: wrap;
}
.lp-stack__label {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
}
.lp-stack__row {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  flex: 1;
}
.lp-stack__row span {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  color: var(--fg-soft);
  opacity: 0.7;
  transition: opacity 0.3s ease, color 0.3s ease;
}
.lp-stack__row span:hover { opacity: 1; color: var(--accent-2); }

/* ---------- steps ---------- */
.lp-steps {
  padding: clamp(4rem, 8vw, 7rem) var(--pad-x);
  max-width: var(--container);
  margin: 0 auto;
}
.lp-steps__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.4rem, 6vw, 6rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
  margin: 0;
}
.lp-step-grid {
  list-style: none;
  margin: 3rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.lp-step {
  background: var(--bg);
  padding: 2rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: background 0.4s ease;
}
.lp-step:hover { background: #050505; }
.lp-step__num {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}
.lp-step h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.3rem, 1.8vw, 1.6rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0;
}
.lp-step p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 760px) {
  .lp-step-grid { grid-template-columns: 1fr; }
}

/* ---------- numbers ---------- */
.lp-numbers {
  padding: clamp(3rem, 6vw, 5rem) var(--pad-x);
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.lp-num {
  background: var(--bg);
  padding: 2rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.lp-num__big {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
}
.lp-num__lbl { font-size: 0.82rem; color: var(--muted); line-height: 1.4; }
@media (max-width: 760px) {
  .lp-numbers { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- quote ---------- */
.lp-quote {
  padding: clamp(4rem, 8vw, 7rem) var(--pad-x);
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}
.lp-quote blockquote {
  margin: 0;
}
.lp-quote p {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 3.6vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 1.5rem;
  font-style: italic;
}
.lp-quote footer {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- final CTA ---------- */
.lp-final {
  padding: clamp(5rem, 9vw, 8rem) var(--pad-x);
  max-width: var(--container);
  margin: 0 auto;
  text-align: center;
  border-top: 1px solid var(--line);
}
.lp-final__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.6rem, 7vw, 7rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
  margin: 0 0 1.5rem;
}
.lp-final__title .reveal-mask { display: block; }
.lp-final__sub {
  font-size: clamp(1rem, 1.15vw, 1.15rem);
  color: var(--fg-soft);
  opacity: 0.8;
  max-width: 50ch;
  margin: 0 auto 2.5rem;
  line-height: 1.55;
}
.lp-final__ctas {
  display: inline-flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ---------- why-us / authority strip ---------- */
.lp-why {
  padding: clamp(3rem, 6vw, 5rem) var(--pad-x);
  max-width: var(--container);
  margin: 0 auto;
}
.lp-why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.lp-why__cell {
  background: var(--bg);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: background 0.4s ease;
}
.lp-why__cell:hover { background: #050505; }
.lp-why__icon {
  font-size: 1.4rem;
  color: var(--accent-2);
  line-height: 1;
}
.lp-why__cell h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0.3rem 0 0.3rem;
}
.lp-why__cell p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
}
@media (max-width: 900px) {
  .lp-why__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .lp-why__grid { grid-template-columns: 1fr; }
}

/* ---------- FAQ ---------- */
.lp-faq {
  padding: clamp(4rem, 8vw, 7rem) var(--pad-x);
  max-width: 980px;
  margin: 0 auto;
}
.lp-faq__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.4rem, 5.6vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 0;
}
.lp-faq__list {
  margin-top: 3rem;
  border-top: 1px solid var(--line);
}
.lp-faq__item {
  border-bottom: 1px solid var(--line);
  padding: 0;
  transition: background 0.4s ease;
}
.lp-faq__item[open] { background: rgba(255,255,255,0.015); }
.lp-faq__item summary {
  list-style: none;
  cursor: none;
  padding: 1.4rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.05rem, 1.8vw, 1.4rem);
  letter-spacing: -0.01em;
  line-height: 1.3;
  transition: color 0.3s ease, padding 0.4s var(--ease);
}
.lp-faq__item summary::-webkit-details-marker { display: none; }
.lp-faq__item summary:hover { color: var(--accent-2); padding-left: 0.5rem; }
.lp-faq__plus {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  position: relative;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.4s var(--ease);
}
.lp-faq__plus::before,
.lp-faq__plus::after {
  content: "";
  position: absolute;
  background: var(--fg);
  border-radius: 1px;
  transition: transform 0.4s var(--ease), background 0.3s ease;
}
.lp-faq__plus::before { top: 50%; left: 25%; right: 25%; height: 1.2px; transform: translateY(-50%); }
.lp-faq__plus::after  { left: 50%; top: 25%; bottom: 25%; width: 1.2px; transform: translateX(-50%); }
.lp-faq__item[open] .lp-faq__plus { background: var(--accent-2); border-color: var(--accent-2); transform: rotate(90deg); }
.lp-faq__item[open] .lp-faq__plus::before,
.lp-faq__item[open] .lp-faq__plus::after { background: var(--bg); }
.lp-faq__item[open] .lp-faq__plus::after { transform: translateX(-50%) scaleY(0); }
.lp-faq__item p {
  margin: 0 0 1.4rem;
  padding-right: 3rem;
  font-size: 0.95rem;
  color: var(--fg-soft);
  opacity: 0.85;
  line-height: 1.6;
  max-width: 60ch;
}

/* ---------- form success ---------- */
.lp-form__success {
  text-align: center;
  padding: 2rem 1rem;
  border: 1px solid rgba(184, 255, 92, 0.3);
  border-radius: 14px;
  background: rgba(184, 255, 92, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.lp-form__success h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.6rem;
  margin: 0.6rem 0 0;
  letter-spacing: -0.02em;
}
.lp-form__success p { margin: 0; color: var(--muted); font-size: 0.9rem; }
.lp-form__wa-cta {
  display: inline-block;
  margin-top: 0.8rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background 0.3s ease, transform 0.3s var(--ease);
}
.lp-form__wa-cta:hover { background: #1ebd5b; transform: translateY(-2px); }
.lp-tick--lg {
  width: 36px;
  height: 36px;
  font-size: 1rem;
  background: var(--accent-2);
  color: var(--bg);
  font-weight: 700;
}

/* ---------- footer ---------- */
.lp-footer {
  padding: 2.5rem var(--pad-x) 3rem;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.lp-footer__lines {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.6rem;
}
.lp-footer p {
  margin: 0;
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.lp-footer p a {
  color: var(--muted);
  border-bottom: 1px solid transparent;
  transition: color 0.3s, border-color 0.3s;
}
.lp-footer p a:hover { color: var(--fg); border-color: var(--fg); }
.lp-footer__links {
  display: flex;
  gap: 1.2rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.lp-footer__links a {
  color: var(--muted);
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: color 0.3s, border-color 0.3s;
}
.lp-footer__links a:hover { color: var(--accent-2); border-color: var(--accent-2); }
@media (max-width: 560px) {
  .lp-footer__lines { align-items: center; }
}

@media (max-width: 560px) {
  .lp-footer { flex-direction: column; text-align: center; }
}

/* =========================================================
   Landing — mobile pass
   ========================================================= */

/* Top bar — single row, tighter on small phones */
@media (max-width: 720px) {
  .lp-bar { padding: 0.7rem var(--pad-x); gap: 0.6rem; }
  .lp-bar__right { gap: 0.5rem; }
  .lp-bar__wa { font-size: 0.65rem; letter-spacing: 0.1em; padding: 0.45rem 0.7rem; }
  .lp-bar__cta { padding: 0.7rem 0.9rem; font-size: 0.7rem; }
}
@media (max-width: 420px) {
  /* On the tiniest screens, the brand + CTA do the job; drop the
     duplicate WhatsApp pill — there's a big FAB at the bottom. */
  .lp-bar__wa { display: none; }
}

/* Hero */
@media (max-width: 900px) {
  .lp-hero { padding-top: 2rem; padding-bottom: 3rem; }
  .lp-hero__title { font-size: clamp(2.4rem, 10vw, 5rem); }
}
@media (max-width: 480px) {
  .lp-hero__title { font-size: clamp(2.2rem, 11vw, 3.6rem); }
  .lp-hero__sub { font-size: 0.95rem; }
  .lp-bullets li { font-size: 0.9rem; }
  .lp-trust { flex-wrap: wrap; gap: 0.5rem; }
  .lp-trust__text { font-size: 0.72rem; }
}

/* Form card — tighter padding on mobile */
@media (max-width: 480px) {
  .lp-form-card { padding: 1.4rem 1.1rem; border-radius: 18px; }
  .lp-form-card__head h2 { font-size: 1.5rem; }
  .lp-form-card__head { margin-bottom: 1rem; }
}

/* Stack strip — wrap nicely */
@media (max-width: 720px) {
  .lp-stack { padding: 1rem var(--pad-x); gap: 0.8rem; flex-direction: column; align-items: flex-start; }
  .lp-stack__row { gap: 1rem 1.3rem; }
  .lp-stack__row span { font-size: 0.95rem; }
}

/* Why grid — already responsive; tighten cell padding */
@media (max-width: 720px) {
  .lp-why__cell { padding: 1.5rem 1.2rem; }
  .lp-why { padding-top: 2rem; padding-bottom: 2rem; }
}

/* Steps */
@media (max-width: 760px) {
  .lp-step { padding: 1.6rem 1.2rem; }
}

/* Numbers */
@media (max-width: 720px) {
  .lp-num { padding: 1.5rem 1.1rem; }
  .lp-num__big { font-size: clamp(2rem, 9vw, 3rem); }
  .lp-num__lbl { font-size: 0.75rem; }
}

/* FAQ */
@media (max-width: 720px) {
  .lp-faq { padding-top: 3rem; padding-bottom: 3rem; }
  .lp-faq__list { margin-top: 1.8rem; }
  .lp-faq__item summary { padding: 1.1rem 0; font-size: 1.05rem; gap: 1rem; }
  .lp-faq__item summary:hover { padding-left: 0; color: inherit; }
  .lp-faq__item p { font-size: 0.92rem; padding-right: 0; }
}

/* Quote */
@media (max-width: 720px) {
  .lp-quote { padding-top: 3rem; padding-bottom: 3rem; }
  .lp-quote p { font-size: clamp(1.3rem, 6vw, 2rem); line-height: 1.25; }
}

/* Final CTA */
@media (max-width: 720px) {
  .lp-final { padding: 4rem var(--pad-x); }
  .lp-final__title { font-size: clamp(2.2rem, 10vw, 4.5rem); }
  .lp-final__ctas { flex-direction: column; align-items: stretch; width: 100%; max-width: 380px; margin: 0 auto; }
  .lp-final__ctas .btn { width: 100%; justify-content: space-between; }
}

/* Footer */
@media (max-width: 560px) {
  .lp-footer { padding: 2rem var(--pad-x) 5rem; /* leave room for WA FAB */ gap: 1rem; }
  .lp-footer p { font-size: 0.7rem; }
}
