/* plus.css — Altstart Plus page-specific styles */

/* ================================================================
   HERO SPLIT — text left, CTA right
   ================================================================ */
.hero-split {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2.5rem;
  align-items: center;
  margin-top: 1rem;
}
.hero-split__text .lead {
  font-size: var(--fs-base);
  line-height: 1.65;
  max-width: 44rem;
  margin-bottom: 0.5rem;
}
.hero-split__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .hero-split { grid-template-columns: 1fr; gap: 1.25rem; }
  .hero-split__text .lead { font-size: var(--fs-base); }
  .hero-split__cta { align-items: flex-start; }
}

/* Hero metric pills */
.hero .chips,
.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 100%;
}
.hero .badge,
.hero-metric-pill {
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
}
.hero-metric-pill {
  background: transparent !important;
  border: 1px solid rgba(255,192,0,0.5);
  color: var(--text-default);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: var(--fs-sm);
  font-weight: 500;
}
.hero-metric-value {
  color: var(--color-yellow) !important;
  font-weight: 600;
  font-size: 1.02em;
}

/* ================================================================
   V3 CHAPTER — plus-specific: tighter padding
   ================================================================ */
.v3-chapter {
  padding: clamp(1.75rem, 3.5vw, 2.5rem) 0;
}

/* Plus eyebrow: smaller kicker style */
.v3-eyebrow {
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.v3-eyebrow::before {
  width: 24px;
  height: 2px;
}

.v3-tier-lead {
  font-size: var(--fs-base);
  line-height: 1.75;
  max-width: 52rem;
}

/* ================================================================
   CÂND AI NEVOIE — numbered items
   ================================================================ */
.plus-needs {
  display: grid;
  gap: 0;
  max-width: 52rem;
}
.plus-need {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(15,23,42,0.07);
}
.plus-need:last-child { border-bottom: none; }
.plus-need__num {
  font-weight: 800;
  font-size: var(--fs-sm);
  color: var(--color-yellow);
  text-align: center;
}
.plus-need__text {
  font-size: var(--fs-sm);
  color: var(--text-default);
  line-height: 1.55;
}

/* ================================================================
   FOUNDERS
   ================================================================ */
.founders-section {
  padding: clamp(1.5rem, 3vw, 2rem) 0;
  background: var(--color-warm-grey);
}
.founders-grid {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.founders-text h2 {
  font-size: clamp(1.375rem, 1rem + 1vw, 1.75rem);
  font-weight: 700;
  color: var(--color-petrol);
  line-height: 1.3;
  margin: 0 0 0.75rem;
}
.founders-text p {
  font-size: var(--fs-base);
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 0 1rem;
  max-width: 40rem;
}
.founders-link {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--color-petrol);
  text-decoration: none;
  border-bottom: 2px solid var(--color-yellow);
  padding-bottom: 2px;
  transition: all 0.2s;
}
.founders-link:hover {
  color: var(--color-petrol);
  border-color: var(--color-petrol);
}
.founders-photos {
  display: flex;
  align-items: center;
}
.founders-photos img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  margin-left: -8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
.founders-photos img:first-child {
  margin-left: 0;
}

/* ================================================================
   CUM LUCRĂM — 3 steps
   ================================================================ */
.how-steps {
  display: grid;
  gap: 0;
  max-width: 52rem;
}
.how-step {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: start;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(15,23,42,0.07);
}
.how-step:last-child { border-bottom: none; }
.how-step__num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--color-yellow);
  color: var(--text-strong);
  font-size: var(--fs-base);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.how-step__title {
  font-weight: 700;
  font-size: var(--fs-base);
  color: var(--text-strong);
  margin-bottom: 0.35rem;
}
.how-step__desc {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  line-height: 1.7;
}

/* Decision point — visual break between steps */
.how-decision {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0 0.75rem 54px;
  margin: 0.25rem 0;
  border-left: 2px solid var(--color-yellow);
  margin-left: 16px;
}
.how-decision__label {
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-yellow);
  white-space: nowrap;
  flex-shrink: 0;
}
.how-decision__text {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.5;
}

/* Summary pills */
.summary-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(15,23,42,0.07);
}
.pill--benefit {
  padding: 6px 14px;
  border-radius: 999px;
  font-size: var(--fs-sm);
  font-weight: 500;
  background: transparent;
  border: 1.5px solid rgba(15,23,42,0.22);
  color: var(--text-default);
  white-space: nowrap;
}
@media (max-width: 480px) {
  .pill--benefit { white-space: normal; }
}

/* ================================================================
   INVESTIȚIE
   ================================================================ */
.invest-text {
  max-width: 52rem;
}
.invest-text p {
  font-size: var(--fs-base);
  color: var(--text-default);
  line-height: 1.75;
  margin: 0 0 1rem;
}
.invest-text p:last-child { margin-bottom: 0; }
.invest-note {
  font-size: var(--fs-base);
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.65;
}

/* ================================================================
   CTA — plus-specific secondary card override
   ================================================================ */
.cta-secondary {
  padding: 2rem 1.75rem;
  align-items: center;
  max-width: 280px;
}
