/* === Page: Join === */

/* === PAGE: JOIN === */
/* ===== PROGRAM SECTION ===== */
.program-section { background: var(--navy-deep); }

.program-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.program-content p { margin-bottom: 20px; }

.program-badge {
    background: rgba(0,201,167,0.08);
    border: 1px solid rgba(0,201,167,0.2);
    padding: 60px 50px;
    text-align: center;
}
.program-badge-title {
    
    font-size: 14px;
    color: var(--teal);
    letter-spacing: 2px;
    margin-bottom: 12px;
}
.program-badge-name {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 12px;
}
.program-badge-sub {
    font-size: 14px;
    color: var(--muted);
}

/* ===== BENEFITS ===== */
.benefits-section {
    background: linear-gradient(160deg, #0a1628 0%, #0e3630 50%, #0b2830 100%);
}
.benefits-section h2, .benefits-section p { color: #fff; }
.benefits-section .line { background: rgba(255,255,255,0.5); }

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.benefit-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(0,201,167,0.2);
    border-radius: 8px;
    padding: 32px 28px;
    transition: all 0.3s ease;
}
.benefit-card:hover {
    background: rgba(0,201,167,0.08);
    border-color: rgba(0,201,167,0.4);
    transform: translateY(-4px);
}
.benefit-icon {
    width: 44px; height: 44px;
    margin-bottom: 20px; color: #fff;
}
.benefit-icon svg { width: 100%; height: 100%; stroke: currentColor; stroke-width: 1.5; fill: none; }
.benefit-card h3 { color: #fff; font-size: 16px; }
.benefit-card p { font-size: 14px; opacity: 0.85; color: rgba(255,255,255,0.8); }

/* ===== STANDARDS ===== */
.standards-section { background: var(--navy); }

.standards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.standard-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--card-border);
    padding: 36px 24px;
    text-align: center;
    transition: all 0.3s ease;
}
.standard-card:hover { border-color: var(--teal); background: var(--card-hover); }
.standard-value { font-size: 13px; font-weight: 700; color: var(--teal); letter-spacing: 1px; margin-bottom: 12px; }
.standard-label { font-size: 12px; color: var(--muted); line-height: 1.6; }

/* ===== HOW IT WORKS ===== */
.how-section { background: var(--navy-deep); }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.step-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--card-border);
    padding: 40px 30px;
    transition: all 0.3s ease;
    position: relative;
}
.step-card:hover { border-color: var(--teal); background: var(--card-hover); }
.step-number {
    font-size: 48px; font-weight: 800;
    color: rgba(0,201,167,0.15); line-height: 1;
    margin-bottom: 20px;
}
.step-card h3 { color: #fff; font-size: 15px; margin-bottom: 12px; }
.step-card p { font-size: 13px; line-height: 1.7; }

/* ===== CLIENT BENEFITS ===== */
.client-section { background: var(--navy); }

.client-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.client-content p { margin-bottom: 20px; }

.client-example {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--card-border);
    padding: 40px;
}
.client-example h3 { color: var(--teal); font-size: 14px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 24px; }

.example-step {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    align-items: flex-start;
}
.example-num {
    min-width: 28px; height: 28px;
    background: var(--teal);
    color: var(--navy);
    font-size: 12px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}
.example-text { font-size: 14px; color: var(--text); opacity: 0.85; line-height: 1.6; }
.example-note {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--card-border);
    font-size: 13px;
    color: var(--muted);
    font-style: italic;
}

/* ===== CTA ===== */
.cta-section { background: linear-gradient(135deg, #0a1628 0%, #0f2240 100%); padding: 72px 6%; border-top: 1px solid rgba(0,201,167,0.12); }
.cta-content { max-width: 650px; }
.cta-section h2 { color: #fff; }
.cta-section p { color: rgba(232,240,248,0.7); opacity: 1; margin-bottom: 30px; }
.btn-dark {
    display: inline-block; background: var(--navy); color: #fff;
    padding: 16px 40px; font-weight: 600; font-size: 13px;
    text-decoration: none; transition: all 0.3s ease;
}
.btn-dark:hover { background: var(--navy-light); transform: translateY(-2px); }

/* ===== FOOTER ===== */
footer { background: var(--navy-deep); padding: 40px 6%; }
.footer-simple { text-align: center; }
.footer-copy { color: var(--muted); font-size: 13px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
.program-intro { grid-template-columns: 1fr; gap: 50px; }
    .benefits-grid { grid-template-columns: 1fr; }
    .standards-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .client-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    section { padding: 80px 5%; }
    .standards-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .hero-cta { flex-direction: column; align-items: flex-start; }
}

