/* ═══════════════════════════════════════════════════════════
   CoachClub Modern — Responsive Breakpoints
   Mobile-first adjustments
   ═══════════════════════════════════════════════════════════ */

/* ── Tablet (≤ 1024px) ───────────────────────────────────── */
@media (max-width: 1024px) {
    /* Header */
    .header-nav,
    .header-cta .btn--primary {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    /* Grids */
    .grid--4 { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .pricing-card--featured { transform: none; }
    .pricing-card--featured:hover { transform: translateY(-8px); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .coaches-grid { grid-template-columns: repeat(3, 1fr); }

    /* Footer */
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Stats */
    .stats-bar {
        gap: var(--space-2xl);
    }

    .stat__number {
        font-size: var(--fs-4xl);
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Mobile (≤ 768px) ────────────────────────────────────── */
@media (max-width: 768px) {
    /* Grids */
    .grid--2,
    .grid--3,
    .grid--4 {
        grid-template-columns: 1fr;
    }

    .objectives-grid {
        grid-template-columns: 1fr;
    }

    .disciplines-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .coaches-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xl);
    }

    /* Stats */
    .stats-bar {
        flex-wrap: wrap;
        gap: var(--space-xl);
    }

    .stat {
        flex: 0 0 calc(50% - var(--space-md));
    }

    .stat__number {
        font-size: var(--fs-3xl);
    }

    /* Hero */
    .hero {
        min-height: 90vh;
    }

    .hero__content {
        padding-top: 100px;
    }

    .hero__buttons {
        flex-direction: column;
    }

    .hero__buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .hero__scroll {
        display: none;
    }

    /* Page hero */
    .page-hero {
        padding: calc(100px + var(--space-3xl)) 0 var(--space-3xl);
    }

    /* Footer */
    .footer-top {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }

    /* CTA Banner */
    .cta-banner {
        padding: var(--space-3xl) var(--space-xl);
    }

    .cta-banner .btn-group {
        flex-direction: column;
    }

    .cta-banner .btn-group .btn {
        width: 100%;
    }

    /* Filter tabs scroll */
    .filter-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: var(--space-sm);
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .filter-tabs::-webkit-scrollbar {
        display: none;
    }

    .filter-tab {
        flex-shrink: 0;
    }

    /* Pricing */
    .pricing-grid {
        max-width: 100%;
    }

    .pricing-card {
        padding: var(--space-2xl) var(--space-lg);
    }

    .pricing-card .btn--lg {
        white-space: normal;
        padding: 16px 24px;
        font-size: var(--fs-sm);
    }

    /* Discipline card */
    .discipline-card {
        aspect-ratio: 4/3;
    }

    /* Objective card */
    .objective-card {
        min-height: 250px;
    }

    /* Coach card */
    .coach-card__photo {
        width: 140px;
        height: 140px;
    }

    /* Swiper buttons hide on mobile */
    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }
}

/* ── Small mobile (≤ 480px) ──────────────────────────────── */
@media (max-width: 480px) {
    .coaches-grid {
        grid-template-columns: 1fr;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .page-hero__title {
        font-size: 2.5rem;
    }

    .stat {
        flex: 0 0 100%;
    }

    .card__body {
        padding: var(--space-lg);
    }

    .pricing-card {
        padding: var(--space-xl) var(--space-md);
    }

    .pricing-card__name {
        font-size: var(--fs-3xl);
    }

    .pricing-card__price {
        font-size: var(--fs-2xl);
    }
}
