/* ============================================
   PRICING PAGE — HERO
   ============================================ */
.pricing-hero {
  background: var(--navy);
  padding: calc(80px + 3rem) 0 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black 20%, transparent 70%);
}

.pricing-hero-inner {
  position: relative;
  z-index: 1;
}

.pricing-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.pricing-hero p {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.6);
  max-width: 540px;
  margin: 0 auto;
}

/* ============================================
   PRICING PAGE — CARD SECTION
   ============================================ */
.pricing-page-card {
  padding: var(--section-pad) 0;
  background: var(--off-white);
}

/* ============================================
   PRICING PAGE — WHAT'S INCLUDED
   ============================================ */
.included {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.included-header {
  text-align: center;
  margin-bottom: 3rem;
}

.included-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.included-card {
  padding: 1.75rem;
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.included-card:hover {
  border-color: var(--grey-200);
  box-shadow: var(--shadow-md);
}

.included-card-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-glow);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--blue);
}

.included-card-icon svg { width: 22px; height: 22px; }

.included-card h3 {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.included-card p {
  font-size: var(--text-sm);
  color: var(--muted);
  line-height: 1.65;
}

@media (min-width: 640px) {
  .included-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .included-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================
   PRICING PAGE — FAQ SECTION
   ============================================ */
.pricing-faq {
  padding: var(--section-pad) 0;
  background: var(--off-white);
}

.pricing-faq .faq-header {
  text-align: center;
  margin-bottom: 3rem;
}
