
/* === Scoped Dark Landing (header/footer untouched) === */
.landing-scope {
  --bg: #0b1220;
  --panel: #111827;
  --panel-2: #121826;
  --border: #243047;
  --text: #e6e6ea;
  --muted: #a3adc2;
  --primary: #0d6efd;
  --accent: #22d3ee;
  --accent-2: #60a5fa;
  --success: #22c55e;

  background: var(--bg);
  color: var(--text);
  isolation: isolate;
}

/* Containers */
.landing-scope .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Buttons */
.landing-scope .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .65rem 1rem;
  border-radius: .75rem;
  border: 1px solid transparent;
  text-decoration: none;
  transition: all .2s ease;
  cursor: pointer;
  font-weight: 600;
}
.landing-scope .btn-primary-ghost {
  background: transparent;
  border-color: rgba(96,165,250,.35);
  color: var(--accent-2);
}
.landing-scope .btn-primary-ghost:hover {
  background: rgba(96,165,250,.12);
  border-color: rgba(96,165,250,.55);
}
.landing-scope .btn-primary-solid {
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: #0b1220;
  border-color: transparent;
}
.landing-scope .btn-primary-solid:hover {
  filter: brightness(1.08);
}

/* Hero */
.landing-scope .hero {
  padding: 96px 0 56px;
  background:
    radial-gradient(1200px 600px at 15% 0%, rgba(59,130,246,.15), transparent 60%),
    radial-gradient(900px 500px at 85% 10%, rgba(34,197,94,.12), transparent 60%),
    var(--bg);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.landing-scope .hero-title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 0 0 .5rem 0;
  line-height: 1.15;
  color: var(--text);
}
.landing-scope .force-white { color: #fff !important; }
.landing-scope .hero-sub {
  color: var(--muted);
  max-width: 820px;
  margin: 0.5rem 0 1.25rem 0;
}
.landing-scope .hero-cta { margin-top: .5rem; }

/* Sections */
.landing-scope .section { padding: 56px 0; }
.landing-scope .section-title {
  font-size: 1.75rem;
  margin-bottom: 24px;
  color: var(--text);
}

/* Pricing grid */
.landing-scope .pricing-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0,1fr));
  gap: 20px;
}
@media (min-width: 768px) {
  .landing-scope .pricing-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (min-width: 1100px) {
  .landing-scope .pricing-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
}

.landing-scope .card {
  background: linear-gradient(175deg, rgba(96,165,250,.10), rgba(96,165,250,0) 35%) , var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  transition: border-color .2s ease, transform .2s ease;
}
.landing-scope .card:hover { border-color: rgba(96,165,250,.6); transform: translateY(-2px); }

.landing-scope .card-title { margin: 0; color: #fff; font-size: 1.35rem; }
.landing-scope .card-sub { margin: 6px 0 0 0; color: var(--muted); }

.landing-scope .price-wrap { margin: 18px 0 10px; }
.landing-scope .price-display {
  font-size: 2rem;
  font-weight: 800;
  color: #5eead4;
}
.landing-scope .plan-selector {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--panel-2);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px;
}
.landing-scope .plan-selector .unit {
  color: var(--muted);
  font-size: .9rem;
  padding: 0 6px 0 2px;
}
.landing-scope .plan-btn {
  appearance: none;
  background: transparent;
  color: var(--text);
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 6px 10px;
  font-weight: 700;
  line-height: 1;
}
.landing-scope .plan-btn.active {
  background: rgba(96,165,250,.15);
  border-color: rgba(96,165,250,.5);
  color: #cbe3ff;
  outline: 2px solid #0d6efd;
  outline-offset: 0;
}

.landing-scope .feat {
  list-style: none;
  padding: 0;
  margin: 12px 0 0 0;
  color: var(--muted);
}
.landing-scope .feat li { padding: 4px 0; }

.landing-scope .card-cta { margin-top: 14px; }

/* Features */
.landing-scope .features-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0,1fr));
  gap: 16px;
}
@media (min-width: 900px) {
  .landing-scope .features-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
}
.landing-scope .feature {
  padding: 18px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
}
.landing-scope .feature .icn { font-size: 1.25rem; margin-bottom: 8px; }

/* CTA */
.landing-scope .cta {
  padding: 64px 0 80px;
  background:
    radial-gradient(1200px 600px at 15% 0%, rgba(96,165,250,.15), transparent 60%),
    radial-gradient(900px 500px at 85% 10%, rgba(34,197,94,.12), transparent 60%),
    var(--bg);
  border-top: 1px solid rgba(255,255,255,.06);
}
.landing-scope .cta-inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.landing-scope .cta-title { color: #fff; margin: 0 0 8px 0; }
.landing-scope .cta-sub { color: var(--muted); margin-bottom: 16px; }

/* Align Buy Now left, Read More right */
.landing-scope .card-cta {
  display: flex;
  align-items: center;
  gap: 12px;           /* optional spacing */
}

.landing-scope .card-cta a:last-of-type {
  margin-left: auto;   /* pushes Read More to the right */
}

/* Full-screen features section (scoped) */
.landing-scope .features-full {
  padding: 0; /* edges tak */
}

/* Break out of container and use full viewport height */
.landing-scope .features-full .container {
  max-width: 100vw;
  width: 100%;
  padding: 0;
}

/* Title styling + spacing */
.landing-scope .features-full .section-title {
  text-align: center;
  padding: 40px 16px 12px;
}

/* 3 columns, full height */
.landing-scope .features-full .features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;                       /* edge-to-edge feel */
  min-height: 100vh;            /* full screen height */
}

/* Feature cards stretch and center vertically */
.landing-scope .features-full .feature {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 48px 40px;
  background: var(--panel);
  border: 1px solid var(--border);
}

/* Left / Center / Right alignment */
.landing-scope .features-full .feature:nth-child(1) {
  text-align: left;
  align-items: flex-start;
}
.landing-scope .features-full .feature:nth-child(2) {
  text-align: center;
  align-items: center;
}
.landing-scope .features-full .feature:nth-child(3) {
  text-align: right;
  align-items: flex-end;
}

/* Icons a little bigger */
.landing-scope .features-full .feature .icn {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

/* Responsive: stack on mobile */
@media (max-width: 992px) {
  .landing-scope .features-full .features-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .landing-scope .features-full .feature {
    text-align: left;
    align-items: flex-start;
    border-left: none;
    border-right: none;
  }
}
