/* CFP Page Styles */
.cfp-page {
    position: relative;
    padding: 6rem 0 8rem;
    z-index: 10;
}

.cfp-hero {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.cfp-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
}

.cfp-hero p {
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
    margin: 0;
}

.cfp-container {
    width: 100%;
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Sections spacing */
.cfp-section {
    margin-bottom: 7rem;
}

.cfp-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.cfp-section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cfp-section-desc {
    color: hsl(var(--muted-foreground));
    font-size: 1.1rem;
    line-height: 1.5;
}

/* What We Offer Grid */
.offer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 72rem;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .offer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .offer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.offer-card {
    background: hsl(var(--card) / 0.4);
    backdrop-filter: blur(24px);
    border: 1px solid hsl(var(--border) / 0.5);
    border-radius: 1.25rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-5px);
    border-color: hsl(var(--primary) / 0.5);
    box-shadow: 0 15px 30px hsl(var(--primary) / 0.15);
}

.offer-icon-wrapper {
    background: hsl(var(--primary) / 0.15);
    color: hsl(var(--primary));
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.offer-card:hover .offer-icon-wrapper {
    background: hsl(var(--primary) / 0.25);
    transform: scale(1.05);
}

.offer-icon-wrapper svg {
    width: 1.65rem;
    height: 1.65rem;
}

.offer-card h3 {
    font-size: 1.35rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: hsl(var(--foreground));
}

.offer-card p {
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
    margin: 0;
}

/* Clean Coaches Section */
.coaches-list-clean {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4rem;
    max-width: 70rem;
    margin: 0 auto;
}

.coach-card-clean {
    flex: 1;
    min-width: 200px;
    max-width: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
}

.coach-avatar-wrapper {
    position: relative;
    width: 11rem;
    height: 11rem;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(35 85% 65%));
    box-shadow: 0 8px 25px hsl(var(--primary) / 0.25);
    transition: all 0.3s ease;
}

.coach-card-clean:hover .coach-avatar-wrapper {
    transform: scale(1.05);
    box-shadow: 0 12px 35px hsl(var(--primary) / 0.4);
}

.coach-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid hsl(var(--background));
}

.coach-info {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.coach-name {
    font-size: 1.4rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    margin: 0;
    color: hsl(var(--foreground));
    letter-spacing: 0.01em;
}

.coach-nick {
    font-size: 1.1rem;
    color: hsl(var(--primary));
    font-weight: 600;
    margin: 0;
}

.coach-role {
    font-size: 0.85rem;
    color: hsl(var(--muted-foreground));
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    margin-top: 0.15rem;
    margin-bottom: 0;
}

.coach-socials {
    display: flex;
    gap: 1rem;
    margin-top: 0.25rem;
}

.coach-social-link {
    color: hsl(var(--muted-foreground));
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.coach-social-link:hover {
    color: hsl(var(--primary));
    transform: translateY(-2px);
}

/* Apply Section (Highlight) */
.apply-highlight-section {
    background: radial-gradient(circle at center, hsl(var(--primary) / 0.15) 0%, transparent 70%);
    border: 1px solid hsl(var(--primary) / 0.3);
    border-radius: 2rem;
    padding: 4.5rem 2rem;
    text-align: center;
    max-width: 60rem;
    margin: 0 auto;
    box-shadow: 0 25px 50px -12px hsl(var(--primary) / 0.25);
    position: relative;
    overflow: hidden;
}

.apply-highlight-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, hsl(var(--primary) / 0.1), transparent);
    pointer-events: none;
}

.apply-highlight-title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

.apply-highlight-desc {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: hsl(var(--muted-foreground));
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.apply-btn {
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(35 85% 65%));
    color: #000 !important;
    font-weight: 800;
    font-size: 1.2rem;
    padding: 1.15rem 3.5rem;
    border-radius: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 10px 30px hsl(var(--primary) / 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
}

.apply-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 15px 40px hsl(var(--primary) / 0.6);
}

/* FAQ Accordions */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item {
    background: hsl(var(--card) / 0.3);
    border: 1px solid hsl(var(--border) / 0.5);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question-btn {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.5rem;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Oswald', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: hsl(var(--foreground));
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: hsl(var(--muted) / 0.15);
}

.faq-answer-inner {
    padding: 1.5rem;
    color: hsl(var(--muted-foreground));
    font-size: 0.975rem;
    line-height: 1.6;
    border-top: 1px solid hsl(var(--border) / 0.3);
}

.faq-icon-arrow {
    transition: transform 0.3s ease;
    color: hsl(var(--primary));
}

.faq-item.active .faq-icon-arrow {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}
