/* Coaching page */
.coaching-hero .hero-content { padding-bottom: 5rem; }

.values-section { padding: 5rem 2rem; background: white; }
.values-container { max-width: 1280px; margin: 0 auto; }

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.value-card { padding: 2.5rem 2rem; text-align: center; }
.value-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.value-card { position: relative; overflow: hidden; }

.value-icon {
    width: 64px; height: 64px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.5rem;
    color: var(--bg-deep);
}

.value-card h3 { font-size: 1.2rem; margin-bottom: 0.75rem; color: var(--primary); }
.value-card p { color: #6B7280; font-size: 0.95rem; }

.methods-section {
    padding: 5rem 2rem;
    background: var(--bg-surface);
}

.methods-section .section-header h2 { color: var(--cream); }
.methods-section .section-header p { color: rgba(245,240,230,0.65); }

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
}

.method-card { padding: 2.5rem 2rem; text-align: center; }
.method-icon { font-size: 2.5rem; color: var(--gold); margin-bottom: 1rem; }
.method-card h3 { color: var(--primary); margin-bottom: 0.75rem; font-size: 1.15rem; }
.method-card p { color: #6B7280; font-size: 0.95rem; }

.topics-section { padding: 5rem 2rem; background: white; }
.topics-content { max-width: 800px; margin: 0 auto; text-align: center; }
.topics-content h2 { font-size: 2rem; color: var(--primary); margin-bottom: 1.25rem; }
.topics-content > p { color: #6B7280; font-size: 1.05rem; margin-bottom: 1rem; line-height: 1.8; }

.topics-examples {
    background: var(--cream);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    margin: 2rem 0;
    border: 1px solid rgba(201,169,98,0.15);
    text-align: left;
}

.topics-examples h3 { color: var(--gold-dark); margin-bottom: 1.25rem; font-family: var(--font-body); font-size: 1rem; text-transform: uppercase; letter-spacing: 0.1em; }

.topics-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 0.5rem;
    list-style: none;
}

.topics-list li {
    padding: 0.5rem 0;
    color: #5A5A66;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
}
.topics-list i { color: var(--success); }

.booking-section { padding: 5rem 2rem; background: var(--cream-muted); }
.booking-container { max-width: 1000px; margin: 0 auto; text-align: center; }
.booking-container h2 { font-size: 2rem; color: var(--primary); margin-bottom: 0.75rem; }
.booking-container > p { color: #6B7280; margin-bottom: 2.5rem; }

.booking-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.step-number {
    width: 48px; height: 48px;
    background: var(--gradient-gold);
    color: var(--bg-deep);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 0.75rem;
    font-weight: 700;
    font-size: 1.1rem;
}

.step h4 { color: var(--primary); margin-bottom: 0.4rem; font-family: var(--font-body); }
.step p { color: #6B7280; font-size: 0.9rem; }

.calendly-wrapper {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(201,169,98,0.12);
}

.hero-cta { margin-top: 2.5rem; }

@media (max-width: 768px) {
    .booking-steps { grid-template-columns: 1fr; }
    .values-grid, .methods-grid { grid-template-columns: 1fr; }
}
