/* ==============================
   Page Hero (shared with features.css pattern)
   ============================== */
.page-hero {
  padding: 100px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-orb--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 0, 208, 0.08) 0%, transparent 68%);
  top: -160px;
  right: -140px;
  animation: orbFloat 10s ease-in-out infinite;
}

.hero-orb--2 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(38, 71, 255, 0.06) 0%, transparent 68%);
  bottom: -100px;
  left: -100px;
  animation: orbFloat 12s ease-in-out infinite;
  animation-delay: -5s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(18px, -28px) scale(1.04); }
  66%       { transform: translate(-12px, 18px) scale(0.96); }
}

.page-hero-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-hero .hero-badge {
  opacity: 0;
  animation: fadeUp 0.65s ease forwards 0.05s;
}

.page-hero h1 {
  opacity: 0;
  animation: fadeUp 0.65s ease forwards 0.15s;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--text);
}

.page-hero .hero-sub {
  opacity: 0;
  animation: fadeUp 0.65s ease forwards 0.25s;
}

.page-hero .hero-actions {
  opacity: 0;
  animation: fadeUp 0.65s ease forwards 0.35s;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ==============================
   Pricing Plan Cards
   ============================== */
.plan-cards {
  display: flex;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
  align-items: flex-start;
  flex-wrap: wrap;
}

.plan-card {
  flex: 1;
  min-width: 300px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.plan-card--featured {
  border-color: var(--brand);
  box-shadow: 0 0 0 1px var(--brand), var(--shadow-lg);
}

.plan-card:not(.plan-card--featured):hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.plan-name {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 16px;
}

.plan-price {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  margin-bottom: 16px;
  line-height: 1;
}

.plan-from {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-right: 4px;
  padding-bottom: 8px;
}

.plan-dollar {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  padding-bottom: 8px;
}

.plan-num {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.04em;
  line-height: 1;
}

.plan-period {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
  padding-bottom: 10px;
}

.plan-tagline {
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}

.plan-cta {
  width: 100%;
  justify-content: center;
}

.plan-divider {
  height: 1px;
  background: var(--border);
  margin: 28px 0;
}

.plan-features-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.plan-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.plan-feature-list li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding-left: 26px;
  position: relative;
  line-height: 1.55;
}

.plan-feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--brand-light);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%233b00d0' 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: 9px;
}

/* ==============================
   No Hidden Fees Grid
   ============================== */
.no-fees-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
  text-align: left;
}

.no-fee-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;

  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease, box-shadow 0.25s ease;
}

.no-fee-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: var(--shadow-lg);
}

.no-fees-grid.visible .no-fee-card           { opacity: 1; transform: translateY(0); }
.no-fees-grid.visible .no-fee-card:nth-child(1) { transition-delay: 0.00s; }
.no-fees-grid.visible .no-fee-card:nth-child(2) { transition-delay: 0.08s; }
.no-fees-grid.visible .no-fee-card:nth-child(3) { transition-delay: 0.16s; }

.no-fee-icon {
  width: 48px;
  height: 48px;
  background: var(--brand-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  margin-bottom: 16px;
  transition: background 0.25s ease, color 0.25s ease;
}

.no-fee-card:hover .no-fee-icon {
  background: var(--brand);
  color: #fff;
}

.no-fee-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.no-fee-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ==============================
   Budget-Adjusted Callout Block
   ============================== */
.budget-callout {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.budget-callout-icon {
  width: 56px;
  height: 56px;
  background: var(--brand-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
}

.budget-callout-quote {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  border-left: 3px solid var(--brand);
  padding-left: 20px;
}

.budget-callout-action p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

/* Feature list (reused from features.css pattern) */
.feature-list {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-list li {
  font-size: 0.95rem;
  color: var(--text-muted);
  padding-left: 22px;
  position: relative;
  line-height: 1.6;
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--accent));
}

/* Split visual column */
.split-visual {
  flex: 1.3;
  min-width: 0;
}

/* Active nav indicator */
.nav-current {
  color: var(--text) !important;
}

/* ==============================
   Responsive
   ============================== */
@media (max-width: 900px) {
  .plan-cards {
    flex-direction: column;
    align-items: stretch;
  }

  .plan-card {
    min-width: unset;
  }

  .no-fees-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-visual {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .page-hero {
    padding: 64px 20px 48px;
  }

  .plan-card {
    padding: 28px 24px;
  }

  .no-fees-grid {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .budget-callout {
    padding: 28px 24px;
  }
}
