/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    background-color: #0a0e1a;
    color: #f9fafb;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Background Grid */
.bg-grid {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(6, 182, 212, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(6, 182, 212, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
    animation: gridPulse 8s ease-in-out infinite;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.main-container {
    position: relative;
    z-index: 10;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-small {
    max-width: 896px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Section */
.section {
    padding: 7rem 1.5rem;
    position: relative;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10, 14, 26, 0.75) 25%, rgba(10, 14, 26, 0.5) 55%, rgba(10, 14, 26, 0.3));
}

.hero-accent {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(6, 182, 212, 0.08), transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(168, 85, 247, 0.08), transparent 50%);
    animation: accentPulse 6s ease-in-out infinite alternate;
}

@keyframes accentPulse {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 8rem 1.5rem;
}

.hero-text {
    max-width: 42rem;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(168, 85, 247, 0.15));
    border: 1px solid rgba(6, 182, 212, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.2);
    animation: badgeGlow 3s ease-in-out infinite;
}

@keyframes badgeGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(6, 182, 212, 0.2); }
    50% { box-shadow: 0 0 30px rgba(6, 182, 212, 0.4); }
}

.badge span {
    font-size: 0.875rem;
    color: #e5e7eb;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.badge-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: #22d3ee;
    box-shadow: 0 0 10px #22d3ee;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

.cyan-badge {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(168, 85, 247, 0.1));
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.cyan-badge span {
    color: #67e8f9;
}

.purple-badge {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(236, 72, 153, 0.1));
    border: 1px solid rgba(168, 85, 247, 0.3);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.2);
}

.purple-badge span {
    color: #d8b4fe;
}

.pink-badge {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15), rgba(168, 85, 247, 0.1));
    border: 1px solid rgba(236, 72, 153, 0.3);
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.2);
}

.pink-badge span {
    color: #fbb6ce;
}

.hero-title {
    font-size: 2.75rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, #22d3ee 0%, #a78bfa 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.purple-gradient {
    background: linear-gradient(135deg, #a78bfa, #f9a8d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pink-gradient {
    background: linear-gradient(135deg, #f9a8d4, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.purple-cyan-gradient {
    background: linear-gradient(135deg, #a78bfa, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.75;
    margin-bottom: 2.5rem;
    color: #d1d5db;
    font-weight: 400;
}

.hero-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #d1d5db;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.info-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.info-item:hover .info-icon {
    transform: scale(1.1);
}

.cyan-icon {
    background-color: rgba(6, 182, 212, 0.15);
    border: 1px solid rgba(6, 182, 212, 0.3);
    color: #22d3ee;
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.2);
}

.purple-icon {
    background-color: rgba(168, 85, 247, 0.15);
    border: 1px solid rgba(168, 85, 247, 0.3);
    color: #a78bfa;
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.2);
}

.info-label {
    font-size: 0.75rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.info-value {
    font-size: 0.875rem;
    font-weight: 500;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn-primary {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #06b6d4, #a855f7);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(34, 211, 238, 0.3);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    box-shadow: 0 10px 25px rgba(6, 182, 212, 0.3);
    text-decoration: none;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #22d3ee, #c084fc);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(6, 182, 212, 0.4);
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-decoration: none;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: rgba(34, 211, 238, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.hero-border {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(6, 182, 212, 0.5), transparent);
}

/* Legacy Section */
.legacy-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.legacy-images {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.image-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.image-column.offset {
    padding-top: 2rem;
}

.image-wrapper {
    border-radius: 1.25rem;
    overflow: hidden;
    border: 1px solid rgba(6, 182, 212, 0.25);
    position: relative;
    transition: all 0.4s ease;
}

.image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(168, 85, 247, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.image-wrapper:hover {
    transform: translateY(-5px);
    border-color: rgba(6, 182, 212, 0.5);
    box-shadow: 0 20px 40px rgba(6, 182, 212, 0.2);
}

.image-wrapper:hover::after {
    opacity: 1;
}

.image-wrapper.tall {
    aspect-ratio: 4 / 5;
}

.image-wrapper.square {
    aspect-ratio: 1 / 1;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.legacy-glow {
    position: absolute;
    inset: -2rem;
    background: radial-gradient(circle at center, rgba(6, 182, 212, 0.1), transparent 70%);
    filter: blur(3rem);
    z-index: -1;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.section-title {
    font-size: 2.25rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.section-text {
    font-size: 1.125rem;
    color: #9ca3af;
    margin-bottom: 2rem;
    line-height: 1.75;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.25rem;
    transition: all 0.4s ease;
    position: relative;
}

.stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    padding: 1px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.5), rgba(168, 85, 247, 0.5));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.08);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card svg {
    width: 1.75rem;
    height: 1.75rem;
    color: #22d3ee;
    margin-bottom: 0.75rem;
}

.stat-value {
    font-size: 1.875rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 500;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-description {
    font-size: 1.125rem;
    color: #9ca3af;
    max-width: 42rem;
    margin: 0 auto;
    line-height: 1.75;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.feature-card {
    position: relative;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    padding: 2rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1.25rem;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(168, 85, 247, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    border-color: rgba(34, 211, 238, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(6, 182, 212, 0.15);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(168, 85, 247, 0.2));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(6, 182, 212, 0.3);
    transition: all 0.4s ease;
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.2);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.4);
}

.feature-icon svg {
    color: #22d3ee;
}

.feature-title {
    color: white;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.feature-description {
    color: #9ca3af;
    font-size: 0.875rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Programs Section */
.programs-section {
    background: linear-gradient(to bottom, transparent, rgba(10, 14, 26, 0.8));
}

.programs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.program-card {
    position: relative;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 1.25rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.program-card:hover {
    border-color: rgba(168, 85, 247, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(168, 85, 247, 0.2);
}

.program-image {
    position: relative;
    height: 18rem;
    overflow: hidden;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.program-card:hover .program-image img {
    transform: scale(1.1);
}

.program-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #0a0e1a, rgba(10, 14, 26, 0.4), transparent);
}

.program-age-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.program-content {
    padding: 1.75rem;
}

.program-title {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.program-description {
    color: #9ca3af;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.btn-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #a78bfa;
    background: none;
    border: none;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-link:hover {
    color: #c084fc;
    gap: 0.75rem;
}

.btn-link svg {
    transition: transform 0.3s ease;
}

.btn-link:hover svg {
    transform: translateX(0.25rem);
}

.program-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0.25rem;
    background: linear-gradient(to right, #a855f7, #ec4899);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.program-card:hover .program-accent {
    opacity: 1;
}

/* Coaches Grid */
.coaches-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.coach-card {
    position: relative;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 1.25rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.coach-card:hover {
    border-color: rgba(34, 211, 238, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(34, 211, 238, 0.2);
}

.coach-image {
    position: relative;
    height: 20rem;
    overflow: hidden;
}

.coach-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.coach-card:hover .coach-image img {
    transform: scale(1.1);
}

.coach-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #0a0e1a, rgba(10, 14, 26, 0.6), transparent);
}

.coach-info {
    padding: 1.75rem;
}

.coach-name {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.coach-title {
    color: #22d3ee;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.coach-experience {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.coach-specialty {
    display: inline-block;
    font-size: 0.75rem;
    color: #67e8f9;
    font-weight: 600;
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.review-card {
    position: relative;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    padding: 2rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.review-card:hover {
    border-color: rgba(236, 72, 153, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(236, 72, 153, 0.15);
}

.quote-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    opacity: 0.08;
    transition: opacity 0.4s ease;
}

.review-card:hover .quote-icon {
    opacity: 0.12;
}

.quote-icon svg {
    color: #ec4899;
}

.review-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.review-rating svg {
    color: #ec4899;
    filter: drop-shadow(0 0 5px rgba(236, 72, 153, 0.5));
}

.review-content {
    color: #d1d5db;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    position: relative;
    z-index: 10;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.review-author img {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 2px solid rgba(236, 72, 153, 0.4);
    object-fit: cover;
    transition: all 0.3s ease;
}

.review-card:hover .review-author img {
    transform: scale(1.1);
    border-color: rgba(236, 72, 153, 0.6);
}

.author-name {
    color: white;
    font-weight: 600;
}

.author-role {
    color: #6b7280;
    font-size: 0.875rem;
}

/* YouTube Shorts-style video testimonial card */
.review-card.shorts-card {
    padding: 0;
    aspect-ratio: 9 / 16;
    height: 480px;
    flex: 0 1 270px;
    overflow: hidden;
    background: #000;
    border-color: rgba(236, 72, 153, 0.2);
    cursor: pointer;
}

.review-card.shorts-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(236, 72, 153, 0.25);
}

.shorts-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shorts-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    padding: 1.25rem;
    z-index: 2;
}

.shorts-overlay .author-name {
    font-size: 0.95rem;
    margin-bottom: 0.15rem;
}

.shorts-overlay .author-role {
    color: #d1d5db;
    font-size: 0.78rem;
    margin-bottom: 0.5rem;
}

.shorts-description {
    color: #e5e7eb;
    font-size: 0.8rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.shorts-rating {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 0.4rem;
}

.shorts-rating svg {
    color: #ec4899;
}

.shorts-play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: opacity 0.2s ease;
}

.shorts-play-btn svg {
    width: 56px;
    height: 56px;
    color: white;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.6));
    transition: transform 0.2s ease;
}

.shorts-card:hover .shorts-play-btn svg {
    transform: scale(1.1);
}

.shorts-card.playing .shorts-play-btn {
    opacity: 0;
}

/* Pricing Section */
.pricing-section {
    background: linear-gradient(to bottom, rgba(10, 14, 26, 0.8), transparent);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.pricing-card {
    position: relative;
}

.pricing-card.popular {
    transform: translateY(0);
}

.popular-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #a855f7, #ec4899);
    padding: 0.35rem 1.15rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    z-index: 20;
    box-shadow: 0 8px 20px rgba(168, 85, 247, 0.4);
}

.pricing-content {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 1.25rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.pricing-card.popular .pricing-content {
    border-color: rgba(168, 85, 247, 0.5);
    box-shadow: 0 20px 40px rgba(168, 85, 247, 0.2);
}

.pricing-content:hover {
    border-color: rgba(168, 85, 247, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(168, 85, 247, 0.2);
}

.pricing-header {
    padding: 2rem;
}

.pricing-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(6, 182, 212, 0.15));
    border: 1px solid rgba(168, 85, 247, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 1.1rem;
    color: #e9d5ff;
    margin-bottom: 1rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
    letter-spacing: 0.02em;
}

.pricing-age {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.pricing-time {
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 500;
}

.pricing-price {
    padding: 0 2rem 2rem;
    display: flex;
    align-items: flex-start;
    gap: 0.25rem;
    margin-bottom: 2rem;
}

.price-currency {
    color: #9ca3af;
    font-size: 1.5rem;
    margin-top: 0.5rem;
    font-weight: 600;
}

.price-amount {
    font-size: 3rem;
    color: white;
    line-height: 1;
    font-weight: 800;
}

.price-period {
    color: #6b7280;
    font-size: 0.875rem;
    margin-top: 1rem;
    font-weight: 500;
}

.pricing-button {
    width: 100%;
    padding: 0.875rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    margin: 0 2rem 2rem;
    max-width: calc(100% - 4rem);
    cursor: pointer;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    text-align: center;
    display: block;
}

.pricing-button.primary {
    background: linear-gradient(135deg, #a855f7, #ec4899);
    color: white;
    border: none;
    box-shadow: 0 10px 25px rgba(168, 85, 247, 0.3);
}

.pricing-button.primary:hover {
    background: linear-gradient(135deg, #c084fc, #f9a8d4);
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(168, 85, 247, 0.4);
}

.pricing-button.secondary {
    background-color: rgba(255, 255, 255, 0.08);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.pricing-button.secondary:hover {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: rgba(168, 85, 247, 0.4);
    transform: translateY(-2px);
}

.pricing-features {
    padding: 0 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.pricing-feature svg {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
    padding: 0.25rem;
    border-radius: 50%;
    background-color: rgba(168, 85, 247, 0.2);
    border: 1px solid rgba(168, 85, 247, 0.4);
    color: #a78bfa;
}

.pricing-feature span {
    color: #d1d5db;
    font-size: 0.875rem;
    line-height: 1.5;
}

.pricing-discounts {
    padding: 0 2rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pricing-discount-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 999px;
    padding: 0.3rem 0.75rem;
    width: fit-content;
}

.pricing-discount-tag svg {
    color: #10b981;
    flex-shrink: 0;
}

.pricing-discount-tag span {
    color: #34d399;
    font-size: 0.75rem;
    font-weight: 600;
}

.pricing-footer {
    margin-top: 3rem;
    text-align: center;
}

.pricing-footer p {
    color: #9ca3af;
    font-size: 0.875rem;
}

.link {
    color: #22d3ee;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.link:hover {
    color: #67e8f9;
    text-decoration: underline;
}

/* FAQ Section */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-item:hover {
    border-color: rgba(34, 211, 238, 0.3);
}

.faq-item.open {
    border-color: rgba(34, 211, 238, 0.4);
    box-shadow: 0 10px 30px rgba(34, 211, 238, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    background: none;
    border: none;
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #22d3ee;
}

.faq-icon {
    flex-shrink: 0;
    color: #22d3ee;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer {
    max-height: 24rem;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #9ca3af;
    line-height: 1.7;
}

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

.faq-cta-text {
    color: #9ca3af;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

/* Footer */
.footer {
    position: relative;
    padding: 4rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(to bottom, transparent, rgba(10, 14, 26, 0.5));
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-about {
    grid-column: span 1;
}

.footer-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #22d3ee, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.footer-text {
    color: #9ca3af;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #9ca3af;
}

.social-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(34, 211, 238, 0.4);
    color: #22d3ee;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(34, 211, 238, 0.2);
}

.footer-heading {
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.125rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #9ca3af;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.contact-item:hover {
    color: #22d3ee;
}

.contact-item svg {
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: #9ca3af;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #22d3ee;
    padding-left: 0.5rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.footer-bottom p {
    color: #6b7280;
    font-size: 0.875rem;
}

.footer-legal-links {
    margin-top: 0.6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.4rem 0.75rem;
}

.footer-legal-links a {
    color: #6b7280;
    font-size: 0.8rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal-links a:hover {
    color: #22d3ee;
}

.footer-legal-sep {
    color: #374151;
    font-size: 0.8rem;
}

/* Floating Book Button */
.floating-book-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, #06b6d4, #a855f7);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(34, 211, 238, 0.3);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.4);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 50;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 700;
    text-decoration: none;
    animation: floatButton 3s ease-in-out infinite;
}

@keyframes floatButton {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.floating-book-btn:hover {
    background: linear-gradient(135deg, #22d3ee, #c084fc);
    box-shadow: 0 20px 40px rgba(6, 182, 212, 0.5);
    transform: scale(1.05);
    animation: none;
}

.floating-book-btn svg {
    transition: transform 0.3s ease;
}

.floating-book-btn:hover svg {
    transform: scale(1.2) rotate(5deg);
}

/* Carousel */
.carousel-wrapper {
    position: relative;
}

.carousel-btn {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(10, 14, 26, 0.8);
    backdrop-filter: blur(10px);
    color: white;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: rgba(6, 182, 212, 0.3);
    border-color: rgba(6, 182, 212, 0.5);
}

.carousel-btn.prev { left: -0.5rem; }
.carousel-btn.next { right: -0.5rem; }

.carousel-dots {
    display: none;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

.carousel-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: #22d3ee;
    width: 1.5rem;
    border-radius: 0.25rem;
}

/* Mobile: reduce section gaps + carousel */
@media (max-width: 639px) {
    .hero {
        min-height: auto;
    }

    .hero-content {
        padding: 4rem 1rem 3rem;
    }

    .section {
        padding: 3rem 1rem;
    }

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

    .footer {
        padding: 2.5rem 1rem;
    }

    .features-grid,
    .reviews-grid,
    .coaches-grid,
    .pricing-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 1rem;
        padding-bottom: 0.5rem;
    }

    .features-grid::-webkit-scrollbar,
    .reviews-grid::-webkit-scrollbar,
    .coaches-grid::-webkit-scrollbar,
    .pricing-grid::-webkit-scrollbar {
        display: none;
    }

    .features-grid > .feature-card,
    .reviews-grid > .review-card,
    .coaches-grid > .coach-card,
    .pricing-grid > .pricing-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
    }

    .pricing-card.popular {
        transform: none;
    }

    .pricing-grid {
        padding-top: 1.25rem;
    }

    .carousel-btn {
        display: flex;
    }

    .carousel-dots {
        display: flex;
    }
}

/* Responsive Design */
@media (min-width: 640px) {
    .hero-info {
        flex-direction: row;
        gap: 1.5rem;
    }

    .hero-cta {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 3.75rem;
    }

    .legacy-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .feature-card {
        flex: 0 1 calc(50% - 0.75rem);
    }

    .programs-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .coaches-grid,
    .reviews-grid,
    .pricing-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .coach-card,
    .review-card,
    .pricing-card {
        flex: 0 1 calc(33.333% - 1.334rem);
    }

    .pricing-card.popular {
        transform: translateY(-1rem);
    }

    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-about {
        grid-column: span 2;
    }
}

@media (min-width: 1024px) {
    .feature-card {
        flex: 0 1 calc(25% - 1.125rem);
    }
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

body {
    animation: fadeIn 0.5s ease-in;
}
