/* How It Works Page */

.feature-section-title {
    font-family: var(--serif);
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--dark);
    max-width: 700px;
    margin-bottom: 1rem;
}

.steps-detailed {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.step-detail {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: start;
}

.step-detail-number {
    font-family: var(--sans);
    font-size: 6rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    width: 100px;
    text-align: center;
}

.step-detail-content h2 {
    font-family: var(--sans);
    font-weight: 700;
    font-size: 1.75rem;
    color: var(--dark);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.step-lead {
    font-family: var(--sans);
    font-size: 1.125rem;
    color: var(--mid);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.step-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.step-list li {
    font-family: var(--sans);
    font-size: 1rem;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    line-height: 1.5;
}

.step-list li i {
    color: var(--gold);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.step-note {
    font-family: var(--ui);
    font-size: 0.875rem;
    color: var(--mid);
    font-style: italic;
}

.timeline-heading {
    max-width: 700px;
    margin: 0 auto 3rem;
}

.faq-heading {
    text-align: center;
    margin: 0 auto 3rem;
    max-width: 100%;
}

/* Timeline */
.timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    margin-top: 2rem;
}

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

.timeline-day {
    font-family: var(--ui);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.timeline-label {
    font-family: var(--sans);
    font-size: 0.9375rem;
    color: var(--tan);
    max-width: 180px;
    line-height: 1.5;
}

.timeline-connector {
    width: 60px;
    height: 2px;
    background: rgba(251, 249, 247, 0.15);
    flex-shrink: 0;
}

/* After Launch */
.after-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.after-card {
    padding: 2.5rem 2rem;
    background: var(--cream);
    border-radius: 12px;
    border: 1px solid rgba(43, 38, 28, 0.08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.after-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
}

.after-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.after-card h3 {
    font-family: var(--sans);
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.after-card p {
    font-family: var(--sans);
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--mid);
}

/* FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid rgba(43, 38, 28, 0.1);
}

.faq-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    font-family: var(--sans);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--dark);
    padding: 1.5rem 2rem 1.5rem 0;
    cursor: pointer;
    position: relative;
    transition: color 0.3s;
}

.faq-q:hover {
    color: var(--gold);
}

.faq-q::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--mid);
    transition: transform 0.3s;
}

.faq-item.active .faq-q::after {
    content: '\2212';
    transform: translateY(-50%);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s;
    padding: 0 0;
}

.faq-item.active .faq-a {
    max-height: 300px;
    padding: 0 0 1.5rem 0;
}

.faq-a p {
    font-family: var(--sans);
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--mid);
}

@media (max-width: 768px) {
    .step-detail {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .step-detail-number {
        font-size: 4rem;
        width: auto;
        text-align: left;
    }
    .after-grid {
        grid-template-columns: 1fr;
    }
    .timeline {
        flex-direction: column;
    }
    .timeline-connector {
        width: 2px;
        height: 40px;
    }
}
