/* ===== LP Sections ===== */

/* Hero */
.lp-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.lp-hero__heading {
  font-size: 1.8rem;
  line-height: 1.4;
  margin: 0 0 12px;
  letter-spacing: 0.01em;
}
.lp-lead {
  color: #344054;
  line-height: 1.7;
  margin: 8px 0 16px;
  font-size: 0.95rem;
}
.lp-cta-btn {
  padding: 14px 28px;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 12px;
  background: var(--accent-bg);
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.22);
  transition: transform 0.08s ease, box-shadow 0.2s ease;
}
.lp-cta-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(37, 99, 235, 0.32);
}
.lp-trust {
  margin: 12px 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}

/* Hero Screenshot */
.lp-hero__visual {
  display: flex;
  justify-content: center;
}
.lp-hero__screenshot {
  margin: 0;
  width: 100%;
  max-width: 480px;
}
.lp-hero__screenshot img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.14);
}
.lp-hero__caption {
  margin: 8px 0 0;
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
}

/* Problems Section */
.lp-section-title {
  text-align: center;
  font-size: 1.3rem;
  margin: 0 0 24px;
  color: var(--ink);
}
.lp-problems,
.lp-demo,
.lp-features,
.lp-steps,
.lp-compare,
.lp-pricing,
.lp-maker,
.lp-faq {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 22px 0;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.lp-problems__grid,
.lp-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.lp-problem-card,
.lp-feature-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
}
.lp-problem-card {
  padding: 20px;
}
.lp-problem-card__icon {
  color: var(--danger);
  margin-bottom: 10px;
}
.lp-problem-card h3,
.lp-feature-card h3 {
  margin: 0 0 8px;
  color: var(--ink-strong);
}
.lp-problem-card h3 {
  font-size: 0.95rem;
}
.lp-problem-card p,
.lp-feature-card p {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
}

/* Demo Section */
.lp-demo__lead {
  text-align: center;
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin: -12px 0 20px;
}
.lp-demo__tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.lp-demo__tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: none;
  transition: border-color 0.15s ease, color 0.15s ease,
    background-color 0.15s ease;
}
.lp-demo__tab:hover {
  border-color: var(--brand);
  color: var(--brand);
}
.lp-demo__tab[aria-pressed="true"] {
  border-color: var(--brand);
  background: rgba(37, 99, 235, 0.08);
  color: var(--brand-strong);
}
.lp-demo__tab-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-bg);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  flex-shrink: 0;
}
.lp-demo__stage {
  max-width: 860px;
  margin: 0 auto;
}
.lp-demo__panel {
  margin: 0;
}
.lp-demo__panel img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
}
.lp-demo__panel figcaption {
  margin: 12px auto 0;
  max-width: 640px;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--ink-soft);
}
.lp-demo__note {
  margin: 14px 0 0;
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted);
}

/* Features Section */
.lp-features__grid--four {
  grid-template-columns: repeat(2, 1fr);
  max-width: 860px;
  margin: 0 auto;
}
.lp-feature-card {
  padding: 24px 20px;
}
.lp-feature-card__icon {
  color: var(--brand);
  margin-bottom: 12px;
}
.lp-feature-card h3 {
  font-size: 1rem;
}

/* Compare Section */
.lp-compare__wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--panel);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
  max-width: 860px;
  margin: 0 auto;
}
.lp-compare__table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 0.86rem;
}
.lp-compare__table th,
.lp-compare__table td {
  padding: 12px 14px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  color: var(--ink-soft);
}
.lp-compare__table thead th {
  background: #f1f5fb;
  color: var(--ink-strong);
  font-size: 0.84rem;
}
.lp-compare__table tbody th {
  text-align: left;
  font-weight: 600;
  color: var(--ink-strong);
  background: #f8fafc;
  white-space: nowrap;
}
.lp-compare__table tbody tr:last-child th,
.lp-compare__table tbody tr:last-child td {
  border-bottom: none;
}
.lp-compare__table .lp-compare__self {
  background: rgba(37, 99, 235, 0.07);
  color: var(--brand-strong);
  font-weight: 700;
}
.lp-compare__table thead .lp-compare__self {
  background: rgba(37, 99, 235, 0.14);
}
.lp-compare__sub {
  display: block;
  font-size: 0.74rem;
  color: var(--muted);
  font-weight: 400;
}
.lp-compare__note {
  max-width: 720px;
  margin: 16px auto 0;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--ink-soft);
}

/* Maker Section */
.lp-maker__card {
  max-width: 680px;
  margin: 0 auto;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 28px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
}
.lp-maker__card p {
  margin: 0 0 12px;
  font-size: 0.92rem;
  line-height: 1.9;
  color: var(--ink-soft);
}
.lp-maker__card p:last-child {
  margin-bottom: 0;
}
.lp-maker__card a {
  color: var(--brand);
  font-weight: 600;
}

/* Steps Section */
.lp-steps__grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
}
.lp-step {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
  flex: 1;
  max-width: 260px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
}
.lp-step__number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-bg);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.lp-step h3 {
  font-size: 0.95rem;
  margin: 0 0 6px;
  color: var(--ink-strong);
}
.lp-step p {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
}
.lp-step__arrow {
  display: flex;
  align-items: center;
  padding-top: 40px;
  color: var(--muted);
}

/* Pricing Section */
.lp-pricing__card {
  max-width: 400px;
  margin: 0 auto;
  background: var(--panel);
  border: 2px solid var(--brand);
  border-radius: 18px;
  padding: 32px 28px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.1);
}
.lp-pricing__trial {
  margin: 0 0 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand);
}
.lp-pricing__price {
  margin-bottom: 4px;
}
.lp-pricing__perday {
  margin: 0 0 20px;
  font-size: 0.82rem;
  color: var(--muted);
}
.lp-pricing__contact {
  margin: 14px 0 0;
  font-size: 0.78rem;
  line-height: 1.7;
  color: var(--muted);
}
.lp-pricing__amount {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.lp-pricing__unit {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-left: 4px;
}
.lp-pricing__list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  text-align: left;
}
.lp-pricing__list li {
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--border);
  position: relative;
  padding-left: 24px;
}
.lp-pricing__list li:last-child {
  border-bottom: none;
}
.lp-pricing__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

/* FAQ Section */
.lp-faq__list {
  max-width: 640px;
  margin: 0 auto;
}
.lp-faq__item {
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 10px;
  background: var(--panel);
  overflow: hidden;
}
.lp-faq__item summary {
  padding: 14px 18px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-strong);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.lp-faq__item summary::-webkit-details-marker {
  display: none;
}
.lp-faq__item summary::after {
  content: "+";
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.lp-faq__item[open] summary::after {
  content: "-";
}
.lp-faq__item p {
  padding: 0 18px 14px;
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* Final CTA */
.lp-final-cta {
  text-align: center;
  background: var(--accent-bg);
  border: none;
  border-radius: 18px;
  padding: 40px 22px;
  box-shadow: 0 10px 40px rgba(37, 99, 235, 0.18);
}
.lp-final-cta h2 {
  color: #fff;
  font-size: 1.3rem;
  margin: 0 0 10px;
}
.lp-final-cta p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 20px;
  font-size: 0.95rem;
}
.lp-final-cta .lp-cta-btn {
  background: #fff;
  color: var(--brand);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.lp-final-cta .lp-cta-btn:hover:not(:disabled) {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* LP Responsive */
@media (max-width: 720px) {
  .lp-hero {
    grid-template-columns: 1fr;
  }
  .lp-hero__heading {
    font-size: 1.5rem;
  }
  .lp-problems__grid,
  .lp-features__grid,
  .lp-features__grid--four {
    grid-template-columns: 1fr;
  }
  .lp-steps__grid {
    flex-direction: column;
    align-items: center;
  }
  .lp-step {
    max-width: 100%;
  }
  .lp-step__arrow {
    transform: rotate(90deg);
    padding-top: 0;
  }
  .lp-demo__tabs {
    flex-direction: column;
    align-items: stretch;
  }
  .lp-demo__tab {
    justify-content: flex-start;
  }
}
@media (max-width: 600px) {
  .lp-hero__heading {
    font-size: 1.3rem;
  }
  .lp-cta-btn {
    width: 100%;
  }
  .lp-pricing__card {
    padding: 24px 18px;
  }
  .lp-maker__card {
    padding: 20px 18px;
  }
}
