/* ==========================================================================
   INDIVIDUAL ATHLETE PAGE STYLES
   ========================================================================== */

/* Individual Page Base */
body.individual-page {
    background: var(--aro-bg);
    color: var(--aro-text-main);
}

/* Individual Hero - Simplified */
.individual-hero {
    position: relative;
    padding-top: 5rem;
    padding-bottom: 3rem;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.individual-hero .hero-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 0.75rem;
}

.individual-hero .hero-subtitle {
    max-width: 40ch;
    font-size: 1.1rem;
    color: var(--aro-text-muted);
    margin: 0 auto;
}

/* Pricing Section */
.individual-pricing {
    padding: 2rem 0 6rem;
    background: var(--aro-bg);
}

.individual-pricing-inner {
    max-width: 1100px;
    margin: 0 auto;
}

/* Pricing Header */
.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-headline {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* Pricing Controls - Inline */
.pricing-controls {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

/* Billing Toggle */
.billing-toggle {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.billing-label {
    font-size: 0.9rem;
    color: var(--aro-text-muted);
    cursor: pointer;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.billing-label.is-active {
    color: var(--aro-text-main);
    font-weight: 600;
}

.billing-label:hover {
    color: var(--aro-text-main);
}

.billing-save {
    background: rgba(168, 230, 207, 0.2);
    color: var(--aro-mint-soft);
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.billing-switch {
    position: relative;
    width: 48px;
    height: 26px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(190, 219, 223, 0.25);
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.billing-switch:hover {
    border-color: var(--aro-seafoam);
}

.billing-switch-thumb {
    position: absolute;
    top: 3px;
    right: 3px;
    width: 18px;
    height: 18px;
    background: var(--aro-seafoam);
    border-radius: 50%;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.billing-switch.is-monthly .billing-switch-thumb {
    transform: translateX(-22px);
}

/* Currency Select - Inline */
.pricing-controls .currency-select {
    background-color: rgba(255, 255, 255, 0.03);
    color: var(--aro-text-muted);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.5rem 2rem 0.5rem 0.75rem;
    font-size: 0.85rem;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L2 4h8z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    transition: border-color 0.2s ease;
}

.pricing-controls .currency-select:hover {
    border-color: rgba(190, 219, 223, 0.3);
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 2rem;
}

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Pricing Card */
.pricing-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 250ms ease, border-color 250ms ease, box-shadow 250ms ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    border-color: rgba(190, 219, 223, 0.25);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

/* Featured Card */
.pricing-card--featured {
    background: rgba(190, 219, 223, 0.03);
    border-color: rgba(190, 219, 223, 0.2);
}

.pricing-card--featured:hover {
    border-color: rgba(190, 219, 223, 0.35);
}

.pricing-card-badge {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--aro-bg);
    color: var(--aro-seafoam);
    padding: 0.3rem 0.75rem;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: 1px solid rgba(190, 219, 223, 0.3);
}

/* Card Header */
.pricing-card-header {
    text-align: center;
    margin-bottom: 0.5rem;
}

.pricing-tier-name {
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.25rem;
}

.pricing-tier-tagline {
    font-size: 0.9rem;
    color: var(--aro-text-muted);
}

/* Card Price */
.pricing-card-price {
    text-align: center;
    padding: 0.5rem 0;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--aro-text-main);
}

.price-period {
    font-size: 1rem;
    color: var(--aro-text-muted);
    font-weight: 400;
}

.pricing-card-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--aro-text-muted);
    margin-bottom: 0.5rem;
}

/* Card Divider */
.pricing-card-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 0.75rem 0;
}

/* Features List */
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--aro-text-muted);
    line-height: 1.4;
}

.pricing-feature .feature-icon {
    color: var(--aro-seafoam);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.pricing-feature--highlight {
    color: var(--aro-text-main);
    font-weight: 500;
}

/* CTA Button */
.pricing-cta {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

/* Guarantee */
.pricing-guarantee {
    text-align: center;
    color: var(--aro-text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.guarantee-icon {
    color: var(--aro-mint-soft);
}

/* ==========================================================================
   WHY ARO SECTION
   ========================================================================== */

.individual-why {
    padding: 4rem 0;
    background: var(--aro-bg-soft);
    text-align: center;
}

.individual-why-inner {
    max-width: 800px;
    margin: 0 auto;
}

.individual-why-heading {
    font-size: clamp(1.4rem, 2.5vw, 1.75rem);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.individual-why-text {
    font-size: 1rem;
    color: var(--aro-text-muted);
    margin-bottom: 2rem;
}

.individual-why-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.why-stat {
    text-align: center;
}

.why-stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--aro-seafoam);
    margin-bottom: 0.15rem;
}

.why-stat-label {
    font-size: 0.8rem;
    color: var(--aro-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 500px) {
    .individual-why-stats {
        gap: 1.5rem;
    }

    .why-stat-number {
        font-size: 1.25rem;
    }
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */

.individual-faq {
    padding: 4rem 0;
    background: var(--aro-bg);
}

.individual-faq-inner {
    max-width: 640px;
    margin: 0 auto;
}

.individual-faq .section-heading {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

/* ==========================================================================
   FINAL CTA
   ========================================================================== */

.individual-cta {
    padding: 4rem 0;
    background: var(--aro-bg-soft);
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.individual-cta-inner {
    max-width: 480px;
    margin: 0 auto;
}

.individual-cta-heading {
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.individual-cta-text {
    font-size: 1rem;
    color: var(--aro-text-muted);
    margin-bottom: 1.5rem;
}

.individual-cta-btn {
    min-width: 160px;
}

/* ==========================================================================
   MOBILE ADJUSTMENTS
   ========================================================================== */

@media (max-width: 768px) {
    .individual-hero {
        padding-top: 4rem;
        padding-bottom: 2rem;
    }

    .individual-pricing {
        padding: 1rem 0 4rem;
    }

    .pricing-header {
        margin-bottom: 2rem;
    }

    .pricing-controls {
        gap: 1rem;
    }

    .pricing-card {
        padding: 24px 20px;
    }

    .price-amount {
        font-size: 2.75rem;
    }

    .individual-why {
        padding: 3rem 0;
    }

    .individual-faq {
        padding: 3rem 0;
    }

    .individual-cta {
        padding: 3rem 0;
    }
}
