/* ------------------------------------------------------------------
   /pricing/standard-vs-pro

   Self-contained, `svp-` prefixed. Deliberately shares the visual
   language of features-index.css (same brand tokens, same compact link
   grid) because the two pages list the same things and a visitor moves
   between them.

   Brand variables come from styles.css, loaded globally by root.tsx.
   ------------------------------------------------------------------ */

/* ---------- The two package cards ---------- */

.svp-packages {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 40px 0 20px;
}

.svp-package {
  display: flex;
  flex-direction: column;
  padding: 32px;
  border-radius: 14px;
  border: 1px solid rgba(47, 72, 80, 0.15);
  background: white;
}

/* Pro is the recommended path (every trial starts there), so it carries the
   accent border rather than being visually identical to Standard. */
.svp-package-pro {
  border-color: var(--green);
  border-width: 2px;
  background: rgba(162, 185, 100, 0.06);
}

.svp-package-name {
  font-size: 1.5rem;
  letter-spacing: -0.015em;
  margin-bottom: 6px;
  color: var(--primary);
}

.svp-package-tagline {
  color: rgba(47, 72, 80, 0.7);
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.5;
}

.svp-package-points {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.svp-package-points li {
  position: relative;
  padding-left: 26px;
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--primary);
}

.svp-package-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(-45deg);
}

/* A point that is a limitation rather than an inclusion — a dash, not a tick,
   so the two never read as the same thing at a glance. */
.svp-package-points li.svp-point-none::before {
  width: 12px;
  height: 0;
  border-left: none;
  border-bottom: 2px solid rgba(47, 72, 80, 0.35);
  transform: none;
  top: 0.72em;
}

/* Pushes the button to the bottom so both cards' CTAs line up regardless of
   how many points each one lists. */
.svp-package-cta {
  margin-top: auto;
}

.svp-btn {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1.02rem;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.svp-btn-primary {
  background: var(--green);
  color: white;
}

.svp-btn-primary:hover {
  background: #8fa557;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(162, 185, 100, 0.3);
}

.svp-btn-ghost {
  background: transparent;
  color: var(--primary);
  border: 2px solid rgba(47, 72, 80, 0.25);
}

.svp-btn-ghost:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* ---------- Shared section furniture ---------- */

.svp-section {
  margin-top: 64px;
}

.svp-section-title {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--primary);
  margin-bottom: 8px;
}

.svp-section-intro {
  color: rgba(47, 72, 80, 0.7);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 760px;
  margin-bottom: 28px;
}

/* ---------- Pro feature cards ---------- */

.svp-pro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.svp-pro-card {
  display: block;
  padding: 22px 24px;
  border-radius: 12px;
  border: 1px solid rgba(47, 72, 80, 0.14);
  background: white;
  text-decoration: none;
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.svp-pro-card:hover {
  border-color: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(47, 72, 80, 0.1);
}

.svp-pro-card h3 {
  font-size: 1.08rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.svp-pro-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(47, 72, 80, 0.68);
}

/* ---------- The full Standard list ---------- */

.svp-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.svp-feature-item {
  display: block;
  height: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--primary);
  transition: background 0.15s ease;
}

.svp-feature-item:hover {
  background: rgba(47, 72, 80, 0.05);
}

.svp-feature-title {
  display: block;
  font-weight: 600;
  font-size: 0.98rem;
  margin-bottom: 2px;
}

.svp-feature-blurb {
  display: block;
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgba(47, 72, 80, 0.6);
}

/* ---------- Closing note + CTA ---------- */

.svp-note {
  margin-top: 64px;
  padding: 28px 32px;
  border-radius: 12px;
  background: rgba(47, 72, 80, 0.04);
}

.svp-note h2 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.svp-note p {
  color: rgba(47, 72, 80, 0.78);
  line-height: 1.7;
  margin-bottom: 12px;
}

.svp-note p:last-child {
  margin-bottom: 0;
}

.svp-final-cta {
  text-align: center;
  margin: 56px 0 20px;
}

.svp-final-cta .svp-btn {
  width: auto;
  padding: 16px 50px;
  font-size: 1.1rem;
}

/* ---------- Responsive ---------- */

@media (max-width: 820px) {
  .svp-packages {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 30px;
  }

  .svp-package {
    padding: 26px;
  }

  .svp-section {
    margin-top: 48px;
  }

  .svp-note {
    margin-top: 48px;
    padding: 24px;
  }
}
