* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --accent-color: #B4FF00; /* Lime green from logo */
    --nav-bg: rgba(15, 15, 15, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
}

body, html {
    width: 100%;
    height: 100%;
    font-family: 'Inter', sans-serif;
    background-color: #000;
}

/* Smooth Container */
.scroll-container {
    width: 100%;
}

.section {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Custom Scrollbar (Globally on HTML) */
html::-webkit-scrollbar {
    width: 6px;
}

html::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.5);
}

html::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 100px;
}

html::-webkit-scrollbar-thumb:hover {
    background: #fff;
}

/* Navbar - Dynamic Island */
.navbar {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: auto;
    max-width: calc(100vw - 24px);
}

.nav-content {
    background: var(--nav-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    padding: 5px 10px 5px 8px;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    min-height: 48px;
    width: auto;
    max-width: calc(100vw - 24px);
    justify-content: center;
    gap: 8px;
    overflow: visible;
}

/* Hamburger Styles */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    padding: 10px;
    z-index: 1002;
    margin-right: 4px;
}

.hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 1001;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.1em;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.mobile-menu.active a {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu a:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu a:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu a:nth-child(4) { transition-delay: 0.4s; }
.mobile-menu a:nth-child(5) { transition-delay: 0.5s; }

.mobile-menu a.active {
    color: var(--accent-color);
}

.logo-container {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    height: 38px;
}

.logo {
    height: 38px;
    width: auto;
    display: block;
    position: static;
    transform: none;
    filter: drop-shadow(0 0 15px rgba(180, 255, 0, 0.3));
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex: 0 0 auto;
    overflow: visible;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    padding: 9px 12px;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.8;
    position: relative;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    min-width: max-content;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--accent-color);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scaleX(0);
    transform-origin: center;
    border-radius: 2px;
}

.nav-links a:hover,
.nav-links a.active {
    opacity: 1;
    color: var(--accent-color);
}

.nav-links a.active::after {
    transform: scaleX(0.6);
}

.nav-links a:hover {
    transform: translateY(-1px);
}

/* Center Titles */
.center-content {
    position: relative;
    z-index: 10;
    text-align: center;
    pointer-events: none;
    width: 100%;
}

.center-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(80px, 12vw, 220px);
    color: #fff;
    letter-spacing: 0.1em;
    line-height: 0.8;
    margin: 0;
    text-shadow: 0 0 40px rgba(0, 0, 0, 0.5), 
                 0 0 80px rgba(180, 255, 0, 0.2);
    opacity: 0.95;
}

.center-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: clamp(14px, 1.2vw, 20px);
    color: #fff;
    letter-spacing: 0.1em;
    margin-top: 10px;
    opacity: 0.7;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}



/* Background Images and Overlays */
.image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.image-wrapper picture {
    display: block;
    width: 100%;
    height: 100%;
}

.bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
}

.overlay.darker {
    background: rgba(0,0,0,0.6);
}

/* About Section Layout */
.about-container {
    max-width: 1300px;
    width: 95%;
    display: flex;
    align-items: center;
    gap: 120px;
    z-index: 10;
    position: relative;
}

.about-left {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.img-reveal {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform: translateX(-40px);
}

.about-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    border-radius: 12px;
    transition: transform 0.8s cubic-bezier(0.2, 0, 0.2, 1);
}

.img-reveal:hover .about-img {
    transform: scale(1.05);
}

.about-right {
    flex: 1.2;
}

.about-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 6vw, 90px);
    color: #fff;
    line-height: 1;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}

.about-title .accent {
    color: var(--accent-color);
}

.about-description {
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    max-width: 500px;
}

/* CTA Button - Refined Pill */
.cta-wrapper {
    margin-top: 20px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #9FD900 100%);
    color: #000;
    text-decoration: none;
    padding: 16px 34px;
    border-radius: 50px; /* Back to pill shape */
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: none;
    transition: all 0.4s cubic-bezier(0.2, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(180, 255, 0, 0.15);
}

.cta-button:hover {
    background: #fff;
    color: #000;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 255, 255, 0.2);
}

.btn-arrow {
    font-size: 18px;
    transition: transform 0.4s ease;
}

.cta-button:hover .btn-arrow {
    transform: translateX(5px);
}

/* Section Transitions */
#home::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20vh;
    background: linear-gradient(to top, #000, transparent);
    z-index: 5;
    pointer-events: none;
}

#about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20vh;
    background: linear-gradient(to bottom, #000, transparent);
    z-index: 5;
    pointer-events: none;
}

/* Glassmorphism Divider Effect */
.section-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(180, 255, 0, 0.02);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 6;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

/* Premium About Page Styles */
.premium-about-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-color: #050505;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 140px 20px 80px 20px;
    overflow: hidden;
}

.noise-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

.premium-about-section::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(180, 255, 0, 0.03) 0%, rgba(5, 5, 5, 0) 70%);
    z-index: 2;
    pointer-events: none;
}

.premium-about-container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.editorial-intro {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: start;
    width: 100%;
    margin-bottom: 20px;
    animation: fadeUpReveal 1.2s cubic-bezier(0.2, 0, 0.2, 1) forwards;
}

.editorial-left {
    text-align: left;
}

.editorial-right {
    position: relative;
    padding-top: 15px;
}

.editorial-line {
    width: 60px;
    height: 2px;
    background: var(--accent-color);
    margin-bottom: 40px;
}

.editorial-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

@keyframes fadeUpReveal {
    0% {
        opacity: 0;
        transform: translateY(40px);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.premium-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(60px, 10vw, 120px);
    color: #fff;
    line-height: 0.85;
    letter-spacing: 0.02em;
    margin: 0;
    text-align: left;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.premium-description {
    font-family: 'Inter', sans-serif;
    color: #B5B5B5;
    font-size: clamp(15px, 1.1vw, 18px);
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
}

.premium-description.highlight {
    color: #fff;
    font-size: clamp(18px, 1.4vw, 22px);
    font-weight: 600;
    line-height: 1.4;
}

.trainers-header {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 30px;
    animation: fadeUpReveal 1.2s cubic-bezier(0.2, 0, 0.2, 1) 0.4s forwards;
    opacity: 0;
}

.section-spaced {
    margin-top: 100px;
}

.trainers-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(40px, 6vw, 80px);
    color: #fff;
    letter-spacing: 0.05em;
    margin: 0;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    position: relative;
}

.trainers-heading .accent {
    color: var(--accent-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    margin-top: 40px;
    margin-bottom: 100px;
}

.service-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s cubic-bezier(0.2, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(180, 255, 0, 0.08);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 20px rgba(180, 255, 0, 0.02);
}

.service-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) contrast(1.1);
    transition: transform 0.8s cubic-bezier(0.2, 0, 0.2, 1), filter 0.8s ease;
}

.service-card:hover .service-img {
    transform: scale(1.1);
    filter: brightness(0.8) contrast(1.1);
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(5,5,5,0.95) 0%, rgba(5,5,5,0.2) 60%, transparent 100%);
    z-index: 2;
}

.service-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px;
    z-index: 3;
}

.service-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    color: #fff;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    line-height: 1;
}

.service-desc {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #B5B5B5;
    line-height: 1.5;
    margin: 0;
}

.pricing-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding: 60px 0 120px;
    width: 100%;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
    width: 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: all 0.6s cubic-bezier(0.2, 0, 0.2, 1);
    z-index: 1;
    backdrop-filter: blur(10px);
}

.pricing-card.basic {
    transform: perspective(1000px) rotateY(15deg) scale(0.9);
    margin-right: -40px;
    opacity: 0.8;
}

.pricing-card.pro {
    transform: perspective(1000px) rotateY(-15deg) scale(0.9);
    margin-left: -40px;
    opacity: 0.8;
}

.pricing-card.featured {
    background: #0A0A0A;
    border-color: var(--accent-color);
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.8), 
                0 0 50px rgba(180, 255, 0, 0.05);
    padding: 60px 40px;
    opacity: 1;
}

.plan-tag {
    position: absolute;
    top: 25px;
    background: var(--accent-color);
    color: #000;
    font-size: 10px;
    font-weight: 900;
    padding: 5px 14px;
    border-radius: 100px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.plan-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    color: #fff;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}

.plan-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 64px;
    color: #fff;
    margin-bottom: 40px;
    line-height: 1;
}

.plan-price span {
    font-size: 20px;
    color: #666;
    letter-spacing: 0;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    width: 100%;
}

.plan-features li {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #B5B5B5;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.plan-features li .check {
    color: var(--accent-color);
    font-weight: bold;
}

.plan-features li.disabled {
    opacity: 0.25;
}

.plan-button {
    width: 100%;
    padding: 18px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-align: center;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.plan-button.accent-btn {
    background: var(--accent-color);
    color: #000;
    border: none;
    box-shadow: 0 10px 20px rgba(180, 255, 0, 0.1);
}

.plan-button:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
}

.trainers-header {
    text-align: center;
    margin-bottom: 40px;
    width: 100%;
}

.trainers-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(40px, 8vw, 80px);
    color: #fff;
    letter-spacing: 0.05em;
    margin: 0;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: -10px;
    opacity: 0.9;
}

.stars {
    color: #FFD700;
    font-size: 18px;
    display: flex;
    gap: 2px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.trust-text {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #fff;
    opacity: 0.8;
}

.trainers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    margin-top: 10px;
}

.trainer-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.5s cubic-bezier(0.2, 0, 0.2, 1);
    animation: fadeUpReveal 1.2s cubic-bezier(0.2, 0, 0.2, 1) forwards;
    opacity: 0;
}

.trainer-card:nth-child(1) { animation-delay: 0.2s; }
.trainer-card:nth-child(2) { animation-delay: 0.4s; }
.trainer-card:nth-child(3) { animation-delay: 0.6s; }

.trainer-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.1);
}

.trainer-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

.trainer-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0, 0.2, 1), filter 0.8s ease;
    filter: grayscale(100%) contrast(1.1);
}

.trainer-card:hover .trainer-img {
    transform: scale(1.05);
    filter: grayscale(30%) contrast(1.1);
}

.trainer-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(5,5,5,0.9) 0%, transparent 100%);
    z-index: 2;
}

.trainer-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.trainer-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    color: #fff;
    letter-spacing: 0.05em;
    margin: 0;
    text-shadow: 0 5px 15px rgba(0,0,0,0.8);
}

.trainer-exp {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--accent-color);
    font-weight: 600;
    letter-spacing: 0.05em;
    margin: 0;
    text-shadow: 0 5px 15px rgba(0,0,0,0.8);
}

.carousel-outer-wrapper {
    position: relative;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.reviews-carousel {
    overflow: hidden;
    width: 100%;
    cursor: grab;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.reviews-track {
    display: flex;
    gap: 30px;
    padding: 40px 0;
    width: max-content;
    will-change: transform;
}

.review-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
    width: 350px;
    flex-shrink: 0;
    transition: all 0.5s cubic-bezier(0.2, 0, 0.2, 1);
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--accent-color);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.review-stars {
    color: var(--accent-color);
    font-size: 14px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.review-text {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #fff;
    line-height: 1.7;
    margin-bottom: 30px;
    font-style: italic;
    opacity: 0.85;
}

.review-author {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    color: var(--accent-color);
    letter-spacing: 0.05em;
    margin-top: auto;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    z-index: 100;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: var(--accent-color);
    color: #000;
    border-color: var(--accent-color);
    transform: scale(1.1);
}

.carousel-btn.prev { left: 40px; }
.carousel-btn.next { right: 40px; }

.legacy-section {
    margin-top: 120px;
    padding: 100px 40px;
    text-align: center;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(60px, 8vw, 100px);
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #fff;
    opacity: 0.5;
}

.legacy-text {
    font-family: 'Inter', sans-serif;
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.8;
    color: #fff;
    opacity: 0.8;
    max-width: 800px;
    margin: 0 auto;
}

.legacy-highlight {
    margin-top: 20px;
    font-weight: 700;
    color: var(--accent-color);
}

.legacy-cta {
    margin-top: 60px;
}

.cta-button-large {
    display: inline-block;
    padding: 14px 40px;
    background: var(--accent-color);
    color: #000;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    text-decoration: none;
    border-radius: 100px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    letter-spacing: 0.05em;
    box-shadow: 0 10px 25px rgba(186, 255, 41, 0.2);
}

.cta-button-large:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 50px rgba(186, 255, 41, 0.5);
    background: #fff;
    color: #000;
}

/* Mobile Responsiveness for Legacy */
@media (max-width: 640px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    margin-top: 80px;
    padding-bottom: 100px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.info-item svg {
    color: var(--accent-color);
    width: 28px;
    height: 28px;
    margin-top: 4px;
}

.info-item h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 14px;
    letter-spacing: 0.15em;
    color: var(--accent-color);
    margin-bottom: 8px;
}

.info-item a {
    color: #fff;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: clamp(16px, 1.5vw, 20px);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.info-item a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.social-links-grid {
    display: flex;
    gap: 25px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.social-links-grid a {
    color: #fff;
    opacity: 0.5;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-links-grid a:hover {
    color: var(--accent-color);
    opacity: 1;
    transform: translateY(-3px);
}

.premium-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    padding: 50px;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.premium-form input, 
.premium-form textarea {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 18px 22px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
}

.premium-form input:focus, 
.premium-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 20px rgba(186, 255, 41, 0.1);
}

.premium-form .cta-button-large {
    border: none;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
}

.premium-form .cta-button-large:disabled {
    cursor: wait;
    opacity: 0.65;
}

.form-status {
    min-height: 22px;
    margin-top: 14px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
    color: #B5B5B5;
}

.form-status.success {
    color: var(--accent-color);
}

.form-status.error {
    color: #ff6b6b;
}

.blog-container {
    max-width: 1100px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 20px;
    padding-bottom: 80px;
}

.blog-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 34px;
    color: #fff;
}

.blog-meta {
    color: var(--accent-color);
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.blog-card h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(30px, 3vw, 42px);
    line-height: 1;
    margin-bottom: 18px;
    letter-spacing: 0.04em;
}

.blog-card p {
    font-family: 'Inter', sans-serif;
    color: #B5B5B5;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.blog-card p:last-child {
    margin-bottom: 0;
}

.blog-longform {
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding-bottom: 70px;
}

.blog-feature {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: clamp(28px, 4vw, 48px);
    color: #fff;
}

.blog-feature h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 0.95;
    letter-spacing: 0.04em;
    margin-bottom: 22px;
}

.blog-feature p,
.faq-list p {
    font-family: 'Inter', sans-serif;
    color: #B5B5B5;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.blog-callout {
    margin-top: 28px;
    padding: 22px 24px;
    border-left: 3px solid var(--accent-color);
    background: rgba(180, 255, 0, 0.05);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.7;
}

.blog-faq {
    padding-bottom: 100px;
}

.faq-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-top: 10px;
}

.faq-list article {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 28px;
}

.faq-list h3 {
    font-family: 'Bebas Neue', sans-serif;
    color: #fff;
    font-size: 30px;
    line-height: 1;
    letter-spacing: 0.04em;
    margin-bottom: 14px;
}

.faq-list p {
    font-size: 15px;
    margin-bottom: 0;
}

.blog-cta-row {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 42px;
    flex-wrap: wrap;
}

.secondary-cta {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: none;
}

.secondary-cta:hover {
    background: #fff;
    color: #000;
}

/* Mobile Responsiveness */
@media (max-width: 640px) {
    .navbar {
        top: 16px;
        width: 90%;
        padding: 0;
    }

    .nav-content {
        height: 48px;
        width: 100%;
        padding: 0 4px 0 0;
        justify-content: space-between;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .logo-container {
        width: 80px;
        flex-basis: 80px;
        padding-left: 8px;
    }

    .logo {
        height: 40px;
    }

    .nav-links a {
        font-size: 11px;
        padding: 8px 10px;
        letter-spacing: 0;
    }

    .center-title {
        font-size: 18vw;
    }

    .premium-heading {
        font-size: 18vw;
    }

    .editorial-intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

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

    .faq-list {
        grid-template-columns: 1fr;
    }

    .pricing-container {
        flex-direction: column;
        gap: 30px;
        padding: 40px 0;
    }

    .pricing-card.basic, .pricing-card.pro, .pricing-card.featured {
        transform: none !important;
        margin: 0;
        width: 100%;
        max-width: 360px;
        opacity: 1;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        padding-bottom: 60px;
    }

    .premium-form {
        padding: 30px 20px;
    }

    /* About Section Mobile */
    .about-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding: 80px 0;
    }

    .about-right {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .about-description {
        margin-bottom: 30px;
    }

    .img-reveal {
        transform: translateX(0);
        padding: 8px;
    }

    .about-img {
        max-width: 280px;
    }
}
