/* ============================================================
   SoorgaAI — Home Page Styles
   Extends global style.css
   ============================================================ */

/* ── Hero badge ──────────────────────────────────────────── */
.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(92,197,167,0.15);
    border: 1px solid rgba(92,197,167,0.4);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-green);
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* ── Hero CTA group ──────────────────────────────────────── */
.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.hero-cta-sub {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ── Maturity ladder visual ──────────────────────────────── */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 280px;
}

.maturity-ladder {
    position: relative;
    display: flex;
    flex-direction: column-reverse;
    gap: 12px;
    padding: 20px;
}

.ladder-line {
    position: absolute;
    left: 20px;
    top: 20px;
    bottom: 20px;
    width: 3px;
    background: linear-gradient(to top, #E74C3C, #3498DB);
    border-radius: 2px;
    z-index: 0;
}

.stage-pill {
    position: relative;
    z-index: 1;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-secondary);
    margin-left: 16px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.stage-pill.active-stage {
    background: rgba(92,197,167,0.1);
    border-color: var(--accent-green);
    color: var(--text-primary);
}

.stage-5 { border-left: 3px solid #3498DB; }
.stage-4 { border-left: 3px solid #2ECC71; }
.stage-3 { border-left: 3px solid #F1C40F; }
.stage-2 { border-left: 3px solid #E67E22; }
.stage-1 { border-left: 3px solid #E74C3C; }

/* ── Section shared ──────────────────────────────────────── */
.how-it-works,
.domains-section,
.stages-section,
.final-cta {
    padding: 80px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}

h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.section-sub {
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 48px;
}

/* ── Steps grid ──────────────────────────────────────────── */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.step-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 28px;
    transition: border-color 0.3s;
}

.step-card:hover { border-color: var(--accent-green); }

.step-number {
    font-size: 40px;
    font-weight: 800;
    color: var(--accent-green);
    opacity: 0.4;
    margin-bottom: 16px;
    line-height: 1;
}

.step-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.step-card p { color: var(--text-secondary); font-size: 15px; }

/* ── Domains grid ────────────────────────────────────────── */
.domains-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.domain-chip {
    padding: 12px 20px;
    background: rgba(92,197,167,0.08);
    border: 1px solid rgba(92,197,167,0.25);
    border-radius: 40px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.3s;
}

.domain-chip:hover {
    background: rgba(92,197,167,0.18);
    border-color: var(--accent-green);
    transform: translateY(-2px);
}

/* ── Stages list ─────────────────────────────────────────── */
.stages-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
    max-width: 700px;
}

.stage-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.stage-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 4px;
}

.stage-row strong {
    display: block;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 4px;
}

.stage-row p { color: var(--text-secondary); font-size: 15px; margin: 0; }

/* ── Final CTA ───────────────────────────────────────────── */
.final-cta { text-align: center; }

.final-cta h2 { margin-bottom: 16px; }

.final-cta p {
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 32px;
}

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 32px 0;
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
    .hero-visual { display: none; }
    .hero-cta-group { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
    h2 { font-size: 28px; }
    .steps-grid { grid-template-columns: 1fr; }
    .domains-grid { gap: 10px; }
}
