#landingPage {
  height: auto;
  min-height: 100vh;
  overflow: visible;
  align-items: flex-start;
  padding: 18px 24px 36px;
  color: #f8fafc;
}

#landingPage .landing-page-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  max-width: none;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 22px;
}

#landingPage .landing-nav {
  position: sticky;
  top: 14px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 66px;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 18px;
  background: rgba(7, 15, 35, 0.82);
  box-shadow: 0 16px 42px rgba(2, 6, 23, 0.34);
  backdrop-filter: blur(18px);
}

#landingPage .landing-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

#landingPage .landing-brand img {
  width: 42px;
  height: 50px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(59, 130, 246, 0.42));
}

#landingPage .landing-brand strong,
#landingPage .landing-brand small {
  display: block;
}

#landingPage .landing-brand strong {
  color: #fff;
  font-size: 15px;
}

#landingPage .landing-brand small {
  margin-top: 2px;
  color: #818cf8;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

#landingPage .landing-nav-actions,
#landingPage .landing-hero-actions,
#landingPage .landing-plan-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

#landingPage .landing-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: auto;
  min-width: 0;
  min-height: 44px;
  margin: 0;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: 11px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.15;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

#landingPage .landing-button:hover {
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
}

#landingPage .landing-button-primary {
  background: linear-gradient(135deg, #7c3aed, #2563eb);
  box-shadow: 0 9px 24px rgba(79, 70, 229, 0.32);
}

#landingPage .landing-button-primary:hover {
  box-shadow: 0 13px 30px rgba(79, 70, 229, 0.45);
}

#landingPage .landing-button-whatsapp {
  border-color: rgba(74, 222, 128, 0.42);
  background: linear-gradient(135deg, #16a34a, #059669);
  box-shadow: 0 9px 24px rgba(5, 150, 105, 0.22);
}

#landingPage .landing-button-ghost {
  border-color: rgba(148, 163, 184, 0.25);
  background: rgba(255, 255, 255, 0.04);
  color: #dbeafe;
}

#landingPage .landing-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: 48px;
  min-height: 520px;
  padding: 62px 58px;
  border: 1px solid rgba(99, 102, 241, 0.34);
  border-radius: 28px;
  background:
    radial-gradient(500px 300px at 85% 15%, rgba(124, 58, 237, 0.24), transparent 68%),
    radial-gradient(420px 260px at 8% 88%, rgba(6, 182, 212, 0.12), transparent 72%),
    linear-gradient(145deg, rgba(8, 17, 38, 0.92), rgba(18, 14, 48, 0.86));
  box-shadow: 0 24px 70px rgba(2, 6, 23, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px);
}

#landingPage .landing-hero::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  top: -190px;
  left: 42%;
  border: 1px solid rgba(129, 140, 248, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 48px rgba(129, 140, 248, 0.025), 0 0 0 96px rgba(129, 140, 248, 0.018);
  pointer-events: none;
}

#landingPage .landing-hero-copy,
#landingPage .landing-product-card {
  position: relative;
  z-index: 1;
}

#landingPage .landing-eyebrow,
#landingPage .landing-section-kicker,
#landingPage .landing-plan-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 10px;
  border: 1px solid rgba(74, 222, 128, 0.3);
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.1);
  color: #86efac;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

#landingPage .landing-title {
  display: block;
  max-width: 690px;
  margin: 18px 0 16px;
  color: #fff;
  font-size: clamp(38px, 5.2vw, 66px);
  line-height: 1.03;
  letter-spacing: -0.045em;
}

#landingPage .landing-title span {
  color: transparent;
  background: linear-gradient(90deg, #a78bfa, #60a5fa 52%, #2dd4bf);
  background-clip: text;
  -webkit-background-clip: text;
}

#landingPage .landing-subtitle {
  max-width: 650px;
  margin: 0 0 28px;
  color: #b8c7df;
  font-size: 17px;
  line-height: 1.65;
}

#landingPage .landing-hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 26px;
}

#landingPage .landing-hero-proof span {
  padding: 7px 10px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.035);
  color: #b8c7df;
  font-size: 11px;
  font-weight: 650;
}

#landingPage .landing-product-card {
  padding: 20px;
  border: 1px solid rgba(129, 140, 248, 0.34);
  border-radius: 22px;
  background: rgba(10, 18, 41, 0.82);
  box-shadow: 0 26px 54px rgba(2, 6, 23, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.055);
  transform: perspective(900px) rotateY(-3deg) rotateX(1deg);
}

#landingPage .landing-product-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  color: #e2e8f0;
  font-size: 12px;
  font-weight: 800;
}

#landingPage .landing-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #86efac;
  font-size: 10px;
}

#landingPage .landing-live::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.12);
}

#landingPage .landing-platforms,
#landingPage .landing-product-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

#landingPage .landing-platforms span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid rgba(96, 165, 250, 0.2);
  border-radius: 10px;
  background: rgba(30, 41, 59, 0.58);
  color: #dbeafe;
  font-size: 10px;
  font-weight: 750;
}

#landingPage .landing-product-metrics {
  margin: 12px 0;
}

#landingPage .landing-product-metrics div {
  padding: 13px 10px;
  border: 1px solid rgba(148, 163, 184, 0.13);
  border-radius: 11px;
  background: rgba(15, 23, 42, 0.78);
}

#landingPage .landing-product-metrics small,
#landingPage .landing-product-metrics strong {
  display: block;
}

#landingPage .landing-product-metrics small {
  color: #8292aa;
  font-size: 9px;
}

#landingPage .landing-product-metrics strong {
  margin-top: 5px;
  color: #fff;
  font-size: 18px;
}

#landingPage .landing-product-chart {
  position: relative;
  height: 112px;
  overflow: hidden;
  border: 1px solid rgba(45, 212, 191, 0.16);
  border-radius: 13px;
  background: linear-gradient(180deg, rgba(45, 212, 191, 0.1), rgba(15, 23, 42, 0.18));
}

#landingPage .landing-product-chart svg {
  position: absolute;
  inset: 12px 10px 8px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
}

#landingPage .landing-product-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 12px;
  padding: 10px 11px;
  border-radius: 10px;
  background: rgba(124, 58, 237, 0.13);
  color: #c4b5fd;
  font-size: 10px;
  line-height: 1.45;
}

#landingPage .landing-section {
  width: 100%;
  padding: 38px;
  border: 1px solid rgba(148, 163, 184, 0.15);
  border-radius: 22px;
  background: rgba(8, 17, 38, 0.82);
  box-shadow: 0 18px 46px rgba(2, 6, 23, 0.28);
  color: #e2e8f0;
  backdrop-filter: blur(16px);
}

#landingPage .landing-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

#landingPage .landing-section-title {
  margin: 9px 0 0;
  color: #fff;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.025em;
}

#landingPage .landing-section-description {
  max-width: 560px;
  margin: 0;
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.65;
}

#landingPage .landing-benefits,
#landingPage .landing-audience-tags,
#landingPage .landing-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

#landingPage .landing-benefit {
  padding: 20px;
  border: 1px solid rgba(148, 163, 184, 0.13);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.025);
}

#landingPage .landing-benefit-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 11px;
  background: rgba(99, 102, 241, 0.14);
  font-size: 19px;
}

#landingPage .landing-benefit h3 {
  margin: 0 0 8px;
  color: #f8fafc;
  font-size: 14px;
}

#landingPage .landing-benefit p {
  margin: 0;
  color: #94a3b8;
  font-size: 12px;
  line-height: 1.6;
}

#landingPage .landing-audience-tags,
#landingPage .landing-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

#landingPage .landing-audience-tags li {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 13px 15px;
  border: 1px solid rgba(96, 165, 250, 0.24);
  border-radius: 13px;
  background: rgba(37, 99, 235, 0.09);
  color: #dbeafe;
  font-size: 12px;
  font-weight: 700;
}

#landingPage .landing-steps {
  counter-reset: landing-step;
}

#landingPage .landing-steps li {
  position: relative;
  min-height: 162px;
  padding: 52px 20px 20px;
  border: 1px solid rgba(148, 163, 184, 0.13);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.025);
  color: #94a3b8;
  font-size: 12px;
  line-height: 1.6;
  counter-increment: landing-step;
}

#landingPage .landing-steps li::before {
  content: counter(landing-step, decimal-leading-zero);
  position: absolute;
  top: 16px;
  left: 20px;
  color: #818cf8;
  font-size: 20px;
  font-weight: 900;
}

#landingPage .landing-steps li strong {
  display: block;
  margin-bottom: 7px;
  color: #f8fafc;
  font-size: 14px;
}

#landingPage .landing-plan-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  gap: 30px;
  align-items: center;
  border-color: rgba(245, 158, 11, 0.32);
  background:
    radial-gradient(360px 240px at 92% 0%, rgba(245, 158, 11, 0.14), transparent 72%),
    rgba(8, 17, 38, 0.88);
}

#landingPage .landing-plan-copy p {
  color: #aab8cc;
  font-size: 14px;
  line-height: 1.7;
}

#landingPage .landing-plan-badge {
  border-color: rgba(245, 158, 11, 0.34);
  background: rgba(245, 158, 11, 0.1);
  color: #fcd34d;
}

#landingPage .landing-plan-card {
  padding: 26px;
  border: 1px solid rgba(245, 158, 11, 0.28);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.7);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

#landingPage .landing-plan-card h3 {
  margin: 0;
  color: #fff;
  font-size: 22px;
}

#landingPage .landing-plan-card > p {
  margin: 6px 0 18px;
  color: #fcd34d;
  font-size: 12px;
  font-weight: 750;
}

#landingPage .landing-plan-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

#landingPage .landing-plan-list li {
  position: relative;
  padding-left: 22px;
  color: #d5deeb;
  font-size: 12px;
  line-height: 1.45;
}

#landingPage .landing-plan-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4ade80;
  font-weight: 900;
}

#landingPage .landing-final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 32px 38px;
  border: 1px solid rgba(45, 212, 191, 0.25);
  border-radius: 22px;
  background: linear-gradient(120deg, rgba(13, 148, 136, 0.16), rgba(37, 99, 235, 0.13));
}

#landingPage .landing-final-cta h2 {
  margin: 0 0 7px;
  color: #fff;
  font-size: 24px;
}

#landingPage .landing-final-cta p {
  margin: 0;
  color: #aab8cc;
  font-size: 13px;
}

#landingPage .landing-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
  padding: 22px 8px 4px;
  color: #8492a8;
  font-size: 10px;
  line-height: 1.65;
}

#landingPage .landing-footer strong {
  color: #cbd5e1;
}

#landingPage .landing-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 14px;
}

#landingPage .landing-footer a {
  color: #a5b4fc;
  text-decoration: none;
}

#landingPage .landing-footer a:hover {
  color: #fff;
  text-decoration: underline;
}

@media (max-width: 980px) {
  #landingPage .landing-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 48px 38px;
  }

  #landingPage .landing-product-card {
    transform: none;
  }

  #landingPage .landing-benefits,
  #landingPage .landing-audience-tags,
  #landingPage .landing-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #landingPage .landing-plan-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  #landingPage {
    padding: 10px 10px 24px;
  }

  #landingPage .landing-page-inner {
    gap: 14px;
  }

  #landingPage .landing-nav {
    top: 8px;
    min-height: 58px;
    padding: 8px 9px 8px 12px;
    border-radius: 14px;
  }

  #landingPage .landing-brand img {
    width: 32px;
    height: 39px;
  }

  #landingPage .landing-brand small,
  #landingPage .landing-nav .landing-button-whatsapp {
    display: none;
  }

  #landingPage .landing-nav .landing-button {
    min-height: 38px;
    padding: 8px 12px;
  }

  #landingPage .landing-hero {
    gap: 34px;
    padding: 38px 22px 24px;
    border-radius: 20px;
  }

  #landingPage .landing-title {
    font-size: clamp(36px, 12vw, 48px);
  }

  #landingPage .landing-subtitle {
    font-size: 15px;
  }

  #landingPage .landing-hero-actions,
  #landingPage .landing-plan-actions {
    align-items: stretch;
    flex-direction: column;
  }

  #landingPage .landing-hero-actions .landing-button,
  #landingPage .landing-plan-actions .landing-button {
    width: 100%;
  }

  #landingPage .landing-product-card {
    padding: 14px;
  }

  #landingPage .landing-platforms,
  #landingPage .landing-product-metrics,
  #landingPage .landing-benefits,
  #landingPage .landing-audience-tags,
  #landingPage .landing-steps,
  #landingPage .landing-plan-list {
    grid-template-columns: 1fr;
  }

  #landingPage .landing-section {
    padding: 26px 20px;
    border-radius: 18px;
  }

  #landingPage .landing-section-head {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 18px;
  }

  #landingPage .landing-steps li {
    min-height: 0;
  }

  #landingPage .landing-final-cta {
    align-items: stretch;
    flex-direction: column;
    padding: 26px 20px;
  }

  #landingPage .landing-final-cta .landing-button {
    width: 100%;
  }

  #landingPage .landing-footer {
    grid-template-columns: 1fr;
    padding-inline: 6px;
  }

  #landingPage .landing-footer-links {
    justify-content: flex-start;
  }
}
