/* ============================================================
   for.css — Platform landing page styles
   Used by: /for/*.html (individual platform pages)
   NOT for /for/index.html (hub page keeps inline CSS)
   ============================================================ */

/* ============ SECONDARY BUTTON (hero pair with .btn-cta) ============ */
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--cream);
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

/* ============ HERO ============ */
.hero {
    padding: 8rem 0 4rem;
    position: relative;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200%;
    height: 100%;
    background: radial-gradient(ellipse at center top, rgba(184, 148, 28, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.75rem;
    margin-bottom: 1.25rem;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

/* ============ STATS BAR ============ */
.stats-bar {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 3rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-top: 3rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: 'Cinzel', serif;
    font-size: 1.75rem;
    color: var(--gold);
    font-weight: 700;
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.35rem;
    display: block;
}

/* ============ SECTION HEADER ============ */
.section-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

.section-header h2 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ============ PROBLEM / SOLUTION ============ */
.problem-solution {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2rem 0 3rem;
}

.ps-grid {
    background: var(--card);
    border-radius: 16px;
    padding: 1.75rem;
}

.ps-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.ps-icon { font-size: 1.5rem; }

.ps-title {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    color: var(--gold);
}

.ps-list {
    list-style: none;
}

.ps-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.ps-list li:last-child { border-bottom: none; }

.solution-box {
    background: linear-gradient(135deg, rgba(184, 148, 28, 0.1), rgba(184, 148, 28, 0.03));
    border: 1px solid rgba(184, 148, 28, 0.3);
    border-radius: 16px;
    padding: 1.75rem;
}

/* ============ FEATURES GRID ============ */
.features {
    padding: 4rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.75rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.65rem;
}

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

/* ============ HOW IT WORKS ============ */
.how-it-works {
    padding: 4rem 0;
    background: var(--card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.how-it-works h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.step {
    text-align: center;
    padding: 1.5rem;
}

.step-number {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: var(--background);
    -webkit-text-fill-color: var(--background);
    font-weight: 700;
    margin: 0 auto 1.25rem;
}

.step h3 {
    font-size: 1.05rem;
    margin-bottom: 0.6rem;
}

.step p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ============ FAQ (for/ variant) ============ */
.faq-section {
    padding: 4rem 0;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 0;
}

.faq-item:last-child { border-bottom: none; }

.faq-question {
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
    line-height: 1.4;
}

.faq-answer {
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============ FINAL CTA ============ */
.final-cta {
    padding: 5rem 0;
    text-align: center;
    background: linear-gradient(180deg, transparent, rgba(184, 148, 28, 0.08));
}

.final-cta h2 { font-size: 2rem; margin-bottom: 1rem; }
.final-cta p  { color: var(--text-muted); margin-bottom: 2rem; max-width: 560px; margin-left: auto; margin-right: auto; }

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}

.cta-features span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ============ TRUST BADGES ============ */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--card);
    border: 1px solid var(--border);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 968px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: 1fr; }
    .problem-solution { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2rem; }
    .stats-bar { gap: 1.5rem; }
    .features-grid { grid-template-columns: 1fr; }
    .hero-cta { flex-direction: column; align-items: center; }
    .cta-features { gap: 1rem; }
}
