/* planes.css — Standalone pricing page at /planes
 * Extends landing_hero.css + landing_pricing.css design tokens.
 * ─────────────────────────────────────────────────────────────────────────── */

/* ── PAGE WRAPPER ────────────────────────────────────────────────────────── */

.planes-page {
  background: var(--lp-bg, #0a0f13);
  min-height: 100vh;
}

/* ── HERO ────────────────────────────────────────────────────────────────── */

.planes-hero {
  padding: 148px 0 96px;
  text-align: center;
}

.planes-hero__trial {
  background: rgba(0, 245, 212, 0.10);
  border: 1px solid rgba(0, 245, 212, 0.22);
  border-radius: 999px;
  color: var(--lp-primary, #00F5D4);
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.10em;
  margin-bottom: 28px;
  padding: 6px 18px;
  text-transform: uppercase;
}

.planes-hero__title {
  color: var(--lp-text, #f1f4fa);
  font-family: "Manrope", "Inter", sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 0 auto 20px;
  max-width: 700px;
}

.planes-hero__title span {
  background: linear-gradient(90deg, #00F5D4 0%, #38BDF8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.planes-hero__sub {
  color: var(--lp-text-muted, #a8abb1);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 480px;
}

/* ── PRICING SECTION (extends .lp-pricing) ───────────────────────────────── */

.planes-pricing {
  padding: 0 0 112px;
}

/* ── INSTALL LINE ────────────────────────────────────────────────────────── */

.planes-install {
  align-items: center;
  color: var(--lp-text-muted, #a8abb1);
  display: flex;
  font-size: 12.5px;
  gap: 6px;
  margin: 0 0 24px;
}

.planes-install__badge {
  background: rgba(56, 189, 248, 0.12);
  border-radius: 6px;
  color: #38BDF8;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
}

/* ── FEATURE GROUP LABEL ─────────────────────────────────────────────────── */

.planes-feature-group {
  color: var(--lp-primary, #00F5D4);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  list-style: none;
  padding: 0;
  text-transform: uppercase;
}

/* ── FOOTER NOTE ─────────────────────────────────────────────────────────── */

.planes-footer-note {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 72px;
  padding-top: 56px;
  text-align: center;
}

.planes-footer-note__text {
  color: var(--lp-text-muted, #a8abb1);
  font-size: 15px;
  margin: 0 0 20px;
}

.planes-footer-note__wa {
  align-items: center;
  background: #25D366;
  border-radius: 12px;
  color: #fff;
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  gap: 8px;
  padding: 12px 24px;
  text-decoration: none;
  transition: opacity 0.15s, transform 0.15s;
}

.planes-footer-note__wa:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* ── NAV ACTIVE LINK ─────────────────────────────────────────────────────── */

.lp-nav__link--active {
  color: var(--lp-primary, #00F5D4) !important;
}

/* ── RESPONSIVE ──────────────────────────────────────────────────────────── */

@media (max-width: 900px) {
  .lp-pricing__grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }

  .lp-pricing-faq {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .planes-hero {
    padding: 128px 0 72px;
  }

  .planes-hero__title {
    font-size: 2rem;
  }
}
