/* Pricing Page Specific Styles */

/* Pricing Hero */
.pricing-hero {
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-secondary) 100%
  );
  color: white;
  text-align: center;
  padding: 4rem 2rem;
}

.pricing-title {
  font-size: clamp(3rem, 6vw, 4.5rem);
  margin-bottom: 1rem;
}

.pricing-subtitle {
  font-size: 1.3rem;
  font-weight: 300;
  max-width: 600px;
}

/* Process Overview */
.process-overview {
  padding: 3rem 2rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.process-intro {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
}

/* Roadmap */
.roadmap {
  padding: 3rem 2rem;
  background: var(--color-cream);
}

.roadmap-container {
  max-width: 1200px;
  margin: 0 auto;
}

.roadmap-step {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(15, 23, 41, 0.1);
}

.roadmap-step.start-step,
.roadmap-step.end-step {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
}

.step-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.roadmap-step h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
}

.roadmap-step p {
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* Fork Decision */
.fork-decision {
  text-align: center;
  margin: 3rem 0;
  padding: 2rem;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.1),
    rgba(26, 40, 71, 0.1)
  );
  border-radius: 15px;
}

.fork-header h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--color-accent);
}
.fork-header p {
  color: #000000;
}

.fork-arrows {
  display: flex;
  justify-content: space-around;
  margin-top: 2rem;
  gap: 1rem;
}

.arrow {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-primary);
}

/* Dual Paths */
.dual-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 3rem 0;
}

.path {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 8px 30px rgba(15, 23, 41, 0.15);
  color: var(--color-primary);
}

.path p,
.path li {
  color: var(--color-secondary);
}

.custom-ai-path {
  border-top: 5px solid #4a90e2;
}

.squarespace-path {
  border-top: 5px solid #d4af37;
}

.path-header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--color-cream);
}

.path-header h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
}

.path-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-accent);
}

.path-features,
.path-included {
  margin: 1.5rem 0;
}

.path-features h4,
.path-included h4 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--color-primary);
}

.path-features ul,
.path-included ul {
  list-style: none;
  padding: 0;
}

.path-features li,
.path-included li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.path-features li::before,
.path-included li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

.path-process {
  margin: 1.5rem 0;
}

.process-step {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  align-items: flex-start;
}

.step-number {
  min-width: 30px;
  height: 30px;
  background: var(--color-accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.process-step strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--color-primary);
}

.process-step p {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.4;
}

.path-timeline {
  margin: 1.5rem 0;
  padding: 1rem;
  background: var(--color-cream);
  border-radius: 10px;
  text-align: center;
}

.path-timeline strong {
  color: var(--color-primary);
}
/* ── Billing Toggle ───────────────────────────────── */
.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0 3rem;
}

.billing-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-secondary, #a8b2c1);
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.billing-label.active {
  color: #ffffff;
}

.save-badge {
  font-size: 0.7rem;
  font-weight: 700;
  background: rgba(212, 175, 55, 0.15);
  color: #d4af37;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 20px;
  padding: 0.15rem 0.5rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.toggle-switch {
  position: relative;
  width: 52px;
  height: 28px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  cursor: pointer;
  padding: 0;
  transition:
    background 0.3s ease,
    border-color 0.3s ease;
}

.toggle-switch.on {
  background: rgba(212, 175, 55, 0.25);
  border-color: rgba(212, 175, 55, 0.6);
}

.toggle-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #a8b2c1;
  border-radius: 50%;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.toggle-switch.on .toggle-knob {
  transform: translateX(24px);
  background: #d4af37;
}

/* Animate price change */
.tier-price {
  display: inline-block;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.tier-price.switching {
  opacity: 0;
  transform: translateY(-4px);
}
/* Maintenance Tiers */
.maintenance-tiers {
  padding: 3rem 2rem;
  text-align: center;
  background: white;
}

.maintenance-tiers .section-title {
  color: var(--color-primary);
}

.tiers-intro {
  font-size: 1.1rem;
  color: var(--color-secondary);
  margin-bottom: 3rem;
}

.tiers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.tier-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(15, 23, 41, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  color: var(--color-primary);
}

.tier-card p,
.tier-card li {
  color: var(--color-secondary);
}

.tier-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(15, 23, 41, 0.2);
}

.tier-card.featured {
  border: 3px solid var(--color-accent);
  transform: scale(1.05);
}

.tier-badge {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.tier-price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 2rem;
}

.tier-price span {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--color-text-secondary);
}

.tier-features {
  list-style: none;
  padding: 0;
  text-align: left;
}

.tier-features li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  border-bottom: 1px solid var(--color-cream);
}

.tier-features li:last-child {
  border-bottom: none;
}

.tier-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
  font-size: 1.2rem;
}

/* Add-Ons */
.add-ons {
  padding: 3rem 2rem;
  background: var(--color-cream);
}

.add-ons .section-title {
  color: var(--color-primary);
}

.add-ons-intro {
  text-align: center;
  font-size: 1.1rem;
  color: var(--color-secondary);
  margin-bottom: 2rem;
}

.add-ons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.add-on-card {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(15, 23, 41, 0.08);
}

.add-on-card h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
}

.add-on-card p {
  font-size: 0.95rem;
  color: var(--color-secondary);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.add-on-price {
  display: block;
  font-weight: 700;
  color: var(--color-accent);
  margin-top: 1rem;
}

/* Pricing CTA */
.pricing-cta {
  padding: 4rem 2rem;
  text-align: center;
  background: linear-gradient(
    135deg,
    var(--color-secondary) 0%,
    var(--color-primary) 100%
  );
  color: white;
}

.pricing-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white;
}

.pricing-cta p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive */
@media (max-width: 968px) {
  .dual-paths {
    grid-template-columns: 1fr;
  }

  .fork-arrows {
    flex-direction: column;
  }

  .tiers-grid {
    grid-template-columns: 1fr;
  }

  .tier-card.featured {
    transform: scale(1);
  }
}

@media (max-width: 640px) {
  .pricing-hero {
    padding: 3rem 1rem;
  }

  .pricing-title {
    font-size: 2.5rem;
  }

  .pricing-subtitle {
    font-size: 1.1rem;
  }

  .path {
    padding: 1.5rem;
  }

  .path-header h3 {
    font-size: 1.5rem;
  }

  .path-price {
    font-size: 1.8rem;
  }
}
