/* Sports Coaching Consumer-Focused Styles */

/* Hero Section - Consumer */
.coaching-hero-consumer {
    position: relative;
    min-height: 95vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 50%, #667eea 100%);
    z-index: -1;
}

.hero-content-consumer {
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title-consumer {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle-consumer {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-social-proof {
    display: flex;
    justify-content: center;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.proof-avatars {
    display: flex;
    margin-left: -10px;
}

.avatar {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    border: 3px solid #4facfe;
    margin-left: -10px;
}

.proof-item p, .rating-badge p {
    font-size: 0.95rem;
    margin: 0;
}

.rating-badge {
    text-align: center;
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

/* Value Prop Consumer */
.value-prop-consumer {
    padding: 100px 0;
    background: white;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.value-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(0,0,0,0.05);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.value-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.value-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.value-card p {
    color: #666;
    line-height: 1.7;
}

/* Impact Section */
.impact-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.impact-stat-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 15px;
    border-left: 4px solid transparent;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.impact-stat-card:hover {
    border-left-color: #667eea;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.stat-number-large {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1;
}

.stat-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.stat-description {
    color: #666;
    line-height: 1.7;
    font-size: 1.05rem;
}

.impact-cta-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 3rem 2.5rem;
    border-radius: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.impact-cta-card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.cta-icon {
    font-size: 4rem;
}

.impact-cta-card h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.btn-partner {
    display: inline-block;
    background: white;
    color: #667eea;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

.btn-partner:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.5);
    color: #764ba2;
}

/* How It Works - Consumer */
.how-it-works-consumer {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.steps-consumer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.step-consumer {
    text-align: center;
    padding: 2rem;
}

.step-visual {
    position: relative;
    margin-bottom: 2rem;
}

.step-badge {
    position: absolute;
    top: 0;
    right: 50%;
    transform: translateX(50%);
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff4757 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1rem;
    z-index: 2;
    box-shadow: 0 3px 10px rgba(255, 75, 87, 0.4);
}

.step-emoji {
    font-size: 5rem;
    margin-top: 1rem;
}

.step-consumer h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.step-consumer p {
    color: #666;
    line-height: 1.7;
}

/* Features Consumer */
.features-consumer {
    padding: 100px 0;
    background: white;
}

.features-showcase {
    margin-top: 4rem;
}

.feature-showcase-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.feature-showcase-item.reverse {
    direction: rtl;
}

.feature-showcase-item.reverse > * {
    direction: ltr;
}

.feature-badge-lg {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.showcase-content h3 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.showcase-content p {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.feature-list-consumer {
    list-style: none;
    padding: 0;
}

.feature-list-consumer li {
    padding: 0.8rem 0;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1rem;
}

.feature-list-consumer li:before {
    content: "✓ ";
    color: #27ae60;
    font-weight: bold;
    margin-right: 0.8rem;
}

.showcase-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-mockup, .video-mockup, .analytics-mockup, .venue-mockup {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* Coaches Preview */
.coaches-preview {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.coach-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.coach-card-preview {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.coach-card-preview:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.coach-image-placeholder {
    height: 180px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
}

.coach-info {
    padding: 1.8rem;
}

.coach-info h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.coach-sport {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.coach-rating {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.coach-experience {
    color: #777;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.coach-price {
    font-size: 1.5rem;
    color: #27ae60;
    font-weight: 700;
}

.coach-cta-center {
    text-align: center;
    margin-top: 3rem;
}

/* Sports Coverage */
.sports-coverage {
    padding: 100px 0;
    background: white;
}

.sports-grid-consumer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.sport-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: #2c3e50;
    border: 2px solid #e0e0e0;
    transition: all 0.3s;
}

.sport-item:hover {
    border-color: #667eea;
    transform: scale(1.05);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

/* Testimonials Consumer */
.testimonials-consumer {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.testimonials-consumer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.testimonial-consumer-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-consumer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.testimonial-name {
    font-weight: 700;
    color: #2c3e50;
    font-size: 1.05rem;
}

.testimonial-sport {
    color: #666;
    font-size: 0.9rem;
}

.testimonial-stars {
    margin-left: auto;
    font-size: 0.9rem;
}

.testimonial-quote {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.testimonial-metric {
    text-align: center;
}

.metric-badge {
    display: inline-block;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

/* Pricing */
.pricing-preview {
    padding: 100px 0;
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    border: 2px solid #e0e0e0;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border-color: #667eea;
}

.featured-pricing {
    border-color: #667eea;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.2);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.pricing-tier {
    font-size: 1.5rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.pricing-amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.pricing-amount span {
    font-size: 1.2rem;
    color: #999;
    font-weight: 500;
}

.pricing-description {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
}

.pricing-features li {
    padding: 0.8rem 0;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-features li:before {
    content: "✓ ";
    color: #27ae60;
    font-weight: bold;
    margin-right: 0.8rem;
}

.btn-pricing {
    display: block;
    width: 100%;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    text-align: center;
    transition: all 0.3s;
}

.btn-pricing-free {
    background: #f8f9fa;
    color: #2c3e50;
    border: 2px solid #e0e0e0;
}

.btn-pricing-free:hover {
    background: #e9ecef;
    border-color: #667eea;
}

.btn-pricing-pro {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.btn-pricing-pro:hover {
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.6);
    transform: translateY(-2px);
}

.btn-pricing-elite {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    border: none;
    box-shadow: 0 5px 20px rgba(245, 87, 108, 0.4);
}

.btn-pricing-elite:hover {
    box-shadow: 0 10px 30px rgba(245, 87, 108, 0.6);
    transform: translateY(-2px);
}

.pricing-note {
    text-align: center;
    color: #777;
    font-size: 0.95rem;
    margin-top: 2.5rem;
}

/* All Products Ecosystem */
.all-products-section {
    padding: 100px 0;
    background: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.product-card-eco {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid #e0e0e0;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    position: relative;
}

.product-card-eco:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.featured-product {
    border-color: #667eea;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.featured-product:hover {
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.3);
}

.eco-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.product-icon-eco {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
}

.product-card-eco h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.product-tagline-eco {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

.product-desc-eco {
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.product-highlights-eco {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2rem;
    text-align: left;
    justify-content: center;
}

.eco-highlight {
    color: #555;
    font-size: 0.9rem;
    padding: 0.5rem;
}

.btn-eco {
    display: block;
    width: 100%;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    text-align: center;
    transition: all 0.3s;
}

.btn-eco-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.btn-eco-primary:hover {
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.6);
    transform: translateY(-2px);
}

.btn-eco-secondary {
    background: white;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-eco-secondary:hover {
    background: #667eea;
    color: white;
}

/* Final CTA */
.cta-final {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-content-final h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.cta-content-final > p {
    font-size: 1.3rem;
    opacity: 0.95;
    margin-bottom: 2.5rem;
}

.cta-buttons-final {
    margin-bottom: 2rem;
}

.btn-cta-primary-large {
    display: inline-block;
    background: white;
    color: #667eea;
    padding: 1.2rem 3rem;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.3rem;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 10px 40px rgba(0,0,0,0.25);
}

.btn-cta-primary-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.cta-small-print {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.app-store-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.store-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.8rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Other Platforms */
.other-platforms {
    padding: 80px 0;
    background: #f8f9fa;
    border-top: 1px solid #e0e0e0;
}

.other-platforms-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.other-platforms-content h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.other-platforms-content > p {
    color: #666;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.platform-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.platform-link {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.platform-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.link-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.platform-link strong {
    display: block;
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.platform-link p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .feature-showcase-item {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .feature-showcase-item.reverse {
        direction: ltr;
    }

    .phone-mockup, .video-mockup, .analytics-mockup {
        width: 280px;
        height: 280px;
        font-size: 6rem;
    }
}

@media (max-width: 768px) {
    .hero-title-consumer {
        font-size: 2.8rem;
    }

    .hero-subtitle-consumer {
        font-size: 1.2rem;
    }

    .hero-social-proof {
        flex-direction: column;
        gap: 1.5rem;
    }

    .steps-consumer {
        grid-template-columns: 1fr;
    }

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

    .stat-number-large {
        font-size: 3rem;
    }

    .coach-cards-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-consumer-grid {
        grid-template-columns: 1fr;
    }

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

    .showcase-content h3 {
        font-size: 1.8rem;
    }

    .cta-content-final h2 {
        font-size: 2.2rem;
    }
}
