/* ===== PATH SELECTOR ===== */
.path-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 560px;
  margin: 0 auto;
}
.path-card {
  background: var(--dark2);
  border: 2px solid var(--border2);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  cursor: pointer;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.path-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(230,57,70,.06), transparent 70%);
  opacity: 0;
  transition: opacity .3s;
}
.path-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(230,57,70,.12);
}
.path-card:hover::before { opacity: 1; }
.path-card.active {
  border-color: var(--red);
  background: rgba(230,57,70,.06);
  box-shadow: 0 0 30px rgba(230,57,70,.12);
}
.path-card-icon {
  font-size: 36px;
  margin-bottom: 12px;
  position: relative;
}
.path-card h3 {
  font-size: 20px;
  margin-bottom: 6px;
  position: relative;
}
.path-card p {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.5;
  position: relative;
}

/* Path content area */
.path-content {
  padding: 80px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--dark);
  display: none;
}
.path-content.visible { display: block; animation: fadeUp .5s ease; }
.path-content-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.path-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}
.path-feature {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 22px;
}
.path-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(230,57,70,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}
.path-feature h4 {
  font-size: 17px;
  margin-bottom: 8px;
}
.path-feature p {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.6;
}
.path-cta {
  text-align: center;
  padding-top: 16px;
}
.path-cta p {
  font-size: 15px;
  color: var(--text2);
  margin-bottom: 24px;
}

@media (max-width: 480px) {
  .path-selector { grid-template-columns: 1fr; max-width: 320px; }
  .path-card { padding: 22px 18px; }
  .path-features { grid-template-columns: 1fr; }
}

/* ===== SOCIAL PROOF BAR ===== */
.proof-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--dark);
  padding: 48px 24px;
}

.proof-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}

.proof-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 32px;
}

.proof-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.proof-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--text);
}
.proof-stat-num .red { color: var(--red); }

.proof-stat-label {
  font-size: 14px;
  color: var(--text2);
  margin-top: 4px;
}



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

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: var(--section-pad) 24px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, var(--border), var(--red), var(--border));
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--dark2);
  border: 2px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--red);
  margin: 0 auto 24px;
}

.step h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.step p {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}

@media (max-width: 700px) {
  .steps { grid-template-columns: 1fr; gap: 48px; }
  .steps::before {
    top: 0;
    bottom: 0;
    left: 36px;
    right: auto;
    width: 2px;
    height: auto;
  }
  .step { text-align: left; padding-left: 80px; }
  .step-num { margin: 0; position: absolute; left: 0; top: 0; width: 56px; height: 56px; font-size: 22px; }
}

/* ===== PRICING ===== */
.pricing {
  padding: var(--section-pad) 24px;
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pricing-toggle {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
  margin-bottom: 48px;
}
.pricing-toggle-btn {
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--border2);
  background: transparent;
  color: var(--text2);
  transition: all .2s;
}
.pricing-toggle-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}
.pricing-grid-4 { grid-template-columns: repeat(4, 1fr); max-width: 1100px; }
.pricing-grid-2 { grid-template-columns: repeat(2, 1fr); max-width: 700px; }
.pricing-grid-1 { grid-template-columns: 1fr; max-width: 420px; }
.price-card-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(230,57,70,.2);
  color: var(--red);
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.pricing-panel { display: none; }
.pricing-panel.active { display: block; }

.pricing-grid {
  grid-template-rows: subgrid;
}
.pricing-grid > .price-card {
  grid-row: span 6;
}
.price-card {
  background: #1c1c1c;
  border: 1px solid rgba(255,255,255,.1);
  color: #f0f0ee;
  border-radius: 16px;
  padding: 36px 28px;
  position: relative;
  transition: all .3s;
  display: grid;
  grid-template-rows: subgrid;
}
.price-card:hover {
  border-color: var(--border2);
  transform: translateY(-4px);
}
.price-card.featured {
  border-color: var(--red);
  box-shadow: 0 0 40px rgba(230,57,70,.12);
}
.price-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.price-card-badge {
  min-height: 24px;
  margin-bottom: 8px;
}

.price-card-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.price-card-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 4px;
}
.price-card-price .period {
  font-size: 16px;
  font-weight: 400;
  color: rgba(240,240,238,.5);
}

.price-card-desc {
  font-size: 14px;
  color: rgba(240,240,238,.6);
  margin-bottom: 24px;
  line-height: 1.5;
}

.price-features {
  margin-bottom: 28px;
  align-self: start;
}
.price-features li {
  font-size: 14px;
  color: rgba(240,240,238,.75);
  padding: 0;
  min-height: 44px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  gap: 10px;
}
.price-features li:last-child { border-bottom: none; }
.price-features li svg { flex-shrink: 0; width: 16px; height: 16px; color: var(--green); }

.price-card .btn { width: 100%; align-self: end; }

/* org pricing */
.org-pricing {
  max-width: 700px;
  margin: 0 auto;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px 40px;
  text-align: center;
}
.org-pricing h3 {
  font-size: 30px;
  margin-bottom: 12px;
}
.org-pricing p {
  font-size: 16px;
  color: var(--text2);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.org-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 36px;
}
.org-feature-tag {
  background: rgba(230,57,70,.08);
  border: 1px solid rgba(230,57,70,.15);
  color: var(--text2);
  font-size: 13px;
  padding: 8px 18px;
  border-radius: 100px;
}
.org-note {
  font-size: 13px;
  color: var(--text3);
  margin-top: 16px;
}

@media (max-width: 1000px) {
  .pricing-grid-4 { grid-template-columns: repeat(2, 1fr); max-width: 700px; }
}
@media (max-width: 800px) {
  .pricing-grid, .pricing-grid-4, .pricing-grid-2 { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .org-pricing { padding: 36px 24px; }
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: var(--section-pad) 24px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.testimonial-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  transition: all .3s;
}
.testimonial-card:hover {
  border-color: var(--border2);
  transform: translateY(-2px);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}
.testimonial-stars svg { width: 16px; height: 16px; color: #f59e0b; }

.testimonial-quote {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), #ff6b6b);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}
.testimonial-name {
  font-size: 14px;
  font-weight: 600;
}
.testimonial-role {
  font-size: 12px;
  color: var(--text3);
  margin-top: 2px;
}

@media (max-width: 800px) {
  .testimonial-grid { grid-template-columns: 1fr; max-width: 500px; margin: 56px auto 0; }
}

/* ===== CTA ===== */
.cta-section {
  padding: var(--section-pad) 24px;
  background: var(--dark);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 100%, rgba(230,57,70,.08), transparent);
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.cta-inner h2 {
  font-size: clamp(32px, 5vw, 44px);
  margin-bottom: 16px;
}

.cta-inner p {
  font-size: 17px;
  color: var(--text2);
  line-height: 1.6;
  margin-bottom: 36px;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--border);
  padding: 60px 24px 32px;
  background: var(--black);
}

.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p {
  font-size: 14px;
  color: var(--text3);
  line-height: 1.6;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--dark2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}
.footer-social a:hover {
  border-color: var(--border2);
  background: var(--dark3);
}
.footer-social a svg { width: 16px; height: 16px; color: var(--text2); }

.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text3);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--text2);
  padding: 6px 0;
  transition: color .2s;
}
.footer-col a:hover { color: var(--text); }

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 13px;
  color: var(--text3);
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-size: 13px;
  color: var(--text3);
  transition: color .2s;
}
.footer-legal a:hover { color: var(--text2); }

/* ===== MOBILE (below-fold sections) ===== */
@media (max-width: 768px) {
  .proof-bar { padding: 32px 20px; }
  .proof-stats { gap: 24px; }
  .proof-stat-num { font-size: 32px; }
  .proof-stat-label { font-size: 12px; }
  [class*="section-pad"], .how-it-works, .pricing, .testimonials { padding-top: 60px; padding-bottom: 60px; }
  .steps { gap: 32px; margin-top: 36px; }
  .pricing-toggle { margin-top: 28px; margin-bottom: 32px; }
  .pricing-toggle-btn { font-size: 13px; padding: 8px 18px; }
  .pricing-grid, .pricing-grid-4, .pricing-grid-2 { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .price-card { padding: 28px 22px; }
  .testimonial-grid { margin-top: 36px; }
  .testimonial-card { padding: 24px 20px; }
  .testimonial-quote { font-size: 14px; }
  .cta-section { padding: 60px 20px; }
  .cta-inner h2 { font-size: clamp(26px, 5vw, 36px); }
  .cta-inner p { font-size: 15px; }
  .cta-buttons { gap: 12px; }
  .cta-buttons .btn { width: 100%; }
  .footer { padding: 40px 20px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}
@media (max-width: 480px) {
  .proof-stats { gap: 16px; }
  .proof-stat-num { font-size: 28px; }
  .step p { max-width: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 20px; }
  .footer-legal { gap: 16px; }
  .price-card { padding: 24px 18px; }
  .price-card-price { font-size: 40px; }
  .price-card-name { font-size: 20px; }
}
@media (max-width: 360px) {
  .proof-stats { flex-direction: column; gap: 20px; }
}
