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

:root {
    --primary: #FF6B35;
    --secondary: #F7931E;
    --accent: #00D9FF;
    --dark: #1a1a2e;
    --light: #ffffff;
    --gradient-1: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    --gradient-2: linear-gradient(135deg, #F7931E 0%, #FF6B35 100%);
    --gradient-3: linear-gradient(135deg, #00D9FF 0%, #0099CC 100%);
}

body {
    font-family: 'Montserrat', 'Poppins', 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
    background: #000;
}

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

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

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 107, 53, 0.8), 0 0 60px rgba(247, 147, 30, 0.6);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Navigation */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 2px 20px rgba(255, 107, 53, 0.3);
}

.top-nav a {
    color: var(--light);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

.top-nav a:hover {
    color: var(--accent);
    transform: translateY(-2px);
}

.top-nav .nav-cta {
    background: var(--gradient-1);
    color: var(--light);
    padding: 1rem 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

.top-nav .nav-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.6);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 2rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -2px;
    font-family: 'Montserrat', sans-serif;
}

.hero h2 {
    font-size: clamp(1.5rem, 4vw, 3rem);
    color: var(--accent);
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
    font-family: 'Montserrat', sans-serif;
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: var(--light);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 1.5rem 3rem;
    background: var(--gradient-1);
    color: var(--light);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    animation: pulse 2s infinite, glow 2s infinite;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    font-family: 'Montserrat', sans-serif;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
}

.cta-secondary {
    background: var(--gradient-3);
    animation: pulse 2s infinite 0.5s;
    margin-left: 1rem;
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.4);
}

.cta-secondary:hover {
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.6);
}

/* Profile Gallery */
.profile-gallery {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, #0f3460 0%, #1a1a2e 100%);
    position: relative;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.section-subtitle {
    text-align: center;
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: var(--accent);
    margin-bottom: 3rem;
    font-weight: 600;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.profile-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    animation: fadeInUp 0.6s ease-out;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.profile-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.4);
}

.profile-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

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

.profile-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    padding: 2rem 1.5rem;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.profile-card:hover .profile-overlay {
    background: linear-gradient(to top, rgba(255, 107, 53, 0.95) 0%, rgba(247, 147, 30, 0.8) 100%);
}

.profile-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 0.5rem;
}

.profile-bio {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Success Stories */
.success-stories {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.story-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(247, 147, 30, 0.3);
    transition: all 0.4s ease;
    animation: fadeInUp 0.8s ease-out;
}

.story-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
    box-shadow: 0 20px 40px rgba(247, 147, 30, 0.3);
}

.story-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    object-position: center 20%;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.story-text {
    color: var(--light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-style: italic;
}

.story-author {
    color: var(--accent);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Video Section */
.video-section {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, #16213e 0%, #0f3460 100%);
    text-align: center;
}

.video-container {
    max-width: 900px;
    margin: 3rem auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.4);
    animation: fadeInUp 1s ease-out;
}

.video-container video {
    width: 100%;
    display: block;
}

/* Ebook Section */
.ebook-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    position: relative;
    overflow: hidden;
}

.ebook-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

.ebook-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.ebook-content h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    color: var(--light);
    margin-bottom: 1rem;
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    font-family: 'Montserrat', sans-serif;
}

.ebook-content p {
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: var(--light);
    margin-bottom: 2rem;
    opacity: 0.95;
}

.ebook-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

/* Ebook Cover Hover Effect */
.ebook-section img:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.feature-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--light);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 0.5rem;
}

.feature-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

/* Benefits Section */
.benefits-section {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, #0f3460 0%, #1a1a2e 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 3rem auto;
}

.benefit-card {
    background: rgba(247, 147, 30, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(247, 147, 30, 0.3);
    transition: all 0.4s ease;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-10px);
    background: rgba(247, 147, 30, 0.2);
    border-color: var(--secondary);
    box-shadow: 0 20px 40px rgba(247, 147, 30, 0.3);
}

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

.benefit-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1rem;
}

.benefit-desc {
    color: var(--light);
    font-size: 1.1rem;
    line-height: 1.8;
}

.coach-cta-section {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(0, 217, 255, 0.1);
    border-radius: 20px;
    border: 2px solid rgba(0, 217, 255, 0.3);
}

.coach-cta-button {
    display: inline-block;
    padding: 2rem 5rem;
    background: var(--gradient-3);
    color: var(--light);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.5);
    font-family: 'Montserrat', sans-serif;
}

.coach-cta-button:hover {
    transform: translateY(-8px) scale(1.08);
    box-shadow: 0 20px 50px rgba(0, 217, 255, 0.7);
}

/* Final CTA */
.final-cta {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #FF6B35 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="2"/></svg>');
    animation: float 8s ease-in-out infinite;
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.final-cta h2 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    color: var(--light);
    margin-bottom: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    font-family: 'Montserrat', sans-serif;
}

.final-cta p {
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: var(--accent);
    margin-bottom: 2rem;
    font-weight: 600;
}

.urgency-text {
    font-size: 1.2rem;
    color: var(--light);
    margin-top: 2rem;
    animation: pulse 2s infinite;
}

/* Responsive */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ebook-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-nav {
        padding: 1rem 1.5rem;
        gap: 1rem;
    }
    
    .top-nav a {
        font-size: 0.9rem;
        padding: 0.6rem 1.5rem;
    }
    
    .cta-secondary {
        margin-left: 0;
        margin-top: 1rem;
    }
    
    .gallery-grid,
    .stories-grid,
    .benefits-grid,
    .ebook-features {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .coach-cta-button {
        padding: 1.5rem 3rem;
        font-size: 1.3rem;
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}