:root {
    --bg-primary: #050505;
    --bg-secondary: #0a0a0a;
    --accent: #B026FF; /* Neon Purple */
    --accent-glow: rgba(176, 38, 255, 0.3);
    --text-primary: #ffffff;
    --text-secondary: #a3a3a3;
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-hover: rgba(255, 255, 255, 0.08);
}

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

body.dark-theme {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Utilities */
.accent {
    color: var(--accent);
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
}

.section-padding {
    padding: 100px 5%;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 3rem;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 4px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    font-family: var(--font-display);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--bg-primary);
    box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(176, 38, 255, 0.5);
    background-color: #c44dff;
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    background-color: var(--glass-hover);
    border-color: rgba(255,255,255,0.2);
}

.large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 5%;
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.brand {
    display: flex;
    align-items: baseline;
    text-decoration: none;
}

.brand-cruz {
    font-family: 'Alex Brush', cursive;
    font-size: 2.6rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-right: 6px;
}

.brand-coaching {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--accent);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover {
    color: var(--accent);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 30px;
    height: 3px;
    background-color: var(--text-primary);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-size: cover;
    background-position: 75% 15%;
    background-image: url('assets/cruz.jpg');
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(100deg, rgba(5,5,5,0.93) 0%, rgba(5,5,5,0.8) 40%, rgba(5,5,5,0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-top: 5rem;
}

.badge {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.display-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtext, .hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 3rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.social-proof {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.proof-item {
    display: flex;
    flex-direction: column;
}

.proof-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--accent);
}

.proof-label {
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

.divider {
    width: 1px;
    height: 40px;
    background-color: var(--glass-border);
}

/* Programs Section */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.program-card {
    padding: 2.5rem;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    background: rgba(255,255,255,0.06);
}

.program-card:hover::before {
    transform: scaleX(1);
}

.program-icon {
    width: 50px;
    height: 50px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.program-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.age-group {
    color: var(--accent);
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.program-desc {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.card-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    display: inline-block;
}

.card-link:hover {
    color: var(--accent);
}

.exos-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3rem;
    border-radius: 12px;
    background: linear-gradient(90deg, var(--glass-bg), rgba(252, 163, 17, 0.05));
    border-left: 4px solid var(--accent);
}

.exos-content h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.exos-content p {
    color: var(--text-secondary);
    max-width: 500px;
}

/* International Section */
.international-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.timeline {
    margin: 3rem 0;
    position: relative;
    padding-left: 20px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background-color: var(--glass-border);
}

.timeline-step {
    position: relative;
    margin-bottom: 2.5rem;
    padding-left: 30px;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.step-marker {
    position: absolute;
    left: -32px;
    top: 0;
    width: 24px;
    height: 24px;
    background-color: var(--bg-primary);
    border: 2px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 2;
    transition: all 0.3s;
}

.timeline-step.active .step-marker, .timeline-step:hover .step-marker {
    border-color: var(--accent);
    background-color: var(--accent);
    color: var(--bg-primary);
}

.step-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.international-visual {
    height: 500px;
    border-radius: 12px;
    position: relative;
    background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats-card {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.stat-highlight {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--accent);
}

/* Results Section */
.results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.alumni-list {
    padding: 3rem;
    border-radius: 12px;
}

.alumni-list h3 {
    margin-bottom: 1.5rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
}

.alumni-list ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.alumni-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--glass-border);
    color: var(--text-secondary);
    position: relative;
    padding-left: 20px;
}

.alumni-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.testimonial-card {
    padding: 3rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quote {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.author {
    color: var(--text-secondary);
    font-weight: 600;
}

.stat-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.big-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 600;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 1rem;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}
.team-card {
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
}
.team-media-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: #000;
}
.team-photo, .team-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: opacity 0.4s ease;
}
.team-card:hover .team-photo {
    transform: scale(1.05);
    opacity: 0;
}
.team-video {
    opacity: 0;
}
.team-card:hover .team-video {
    opacity: 1;
}
.team-card:hover .team-photo {
    opacity: 0;
}
.team-info {
    padding: 2rem;
}
.team-info h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}
.team-info .role {
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

/* Why Cruz / Credibility Section */
.credibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.cred-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cred-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.cred-check {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(176, 38, 255, 0.15);
    border: 1px solid rgba(176, 38, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-weight: 600;
    font-size: 1rem;
}

.cred-item h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom: 4px;
}

.cred-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.pricing-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}
.pricing-card:hover {
    border-color: var(--accent);
    transform: translateY(-10px);
}
.pricing-card.featured {
    border-color: var(--accent);
    box-shadow: 0 10px 40px var(--accent-glow);
}
.pricing-card h3 {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}
.price {
    font-size: 3.5rem;
    font-weight: 700;
    font-family: var(--font-display);
    margin-bottom: 1rem;
}
.price span {
    font-size: 1rem;
    color: var(--text-secondary);
}
.pricing-features {
    list-style: none;
    margin: 2rem 0;
    flex-grow: 1;
}
.pricing-features li {
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
}

.footer {
    border-top: 1px solid var(--glass-border);
    border-radius: 40px 40px 0 0;
    text-align: center;
}

.footer-cta {
    max-width: 600px;
    margin: 0 auto 5rem;
}

.footer-cta .section-subtitle {
    margin: 0 auto 2rem;
}

.booking-options {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 3rem;
    border-top: 1px solid var(--glass-border);
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--text-primary);
}

.copyright {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.fade-left {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Instagram Feed */
.ig-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 6px;
    max-width: 1100px;
    margin: 0 auto;
}

.ig-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 1;
    background: #111;
}

.ig-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.ig-item:hover img {
    transform: scale(1.04);
    opacity: 0.85;
}

.ig-video-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 3px;
    pointer-events: none;
    z-index: 1;
}

/* Responsive */
@media (max-width: 900px) {
    .section-padding {
        padding: 60px 5%;
    }
    .display-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    .hero-actions {
        flex-direction: column;
        gap: 0.8rem;
    }
    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        text-align: center;
    }
    .social-proof {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .social-proof .divider {
        display: none;
    }
    .proof-number {
        font-size: 1.6rem;
    }
    .booking-options {
        flex-direction: column;
        align-items: center;
    }
    .international-container, .results-grid, .team-grid {
        grid-template-columns: 1fr;
    }
    .credibility-grid {
        grid-template-columns: 1fr;
    }
    .exos-banner {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        padding: 2rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    .hero-bg {
        background-position: 60% 15%;
    }
    .hero-overlay {
        background: linear-gradient(180deg, rgba(5,5,5,0.85) 0%, rgba(5,5,5,0.65) 40%, rgba(5,5,5,0.9) 100%);
    }
    .team-media-container {
        height: 300px;
    }
    .alumni-list ul {
        grid-template-columns: 1fr;
    }
    .ig-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(5,5,5,0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 1.5rem 2rem;
        gap: 0.5rem;
        border-bottom: 1px solid var(--glass-border);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-link {
        padding: 0.6rem 0;
    }

    .mobile-toggle {
        display: flex;
    }

    .btn-primary#nav-book-btn {
        display: none;
    }

    .badge {
        font-size: 0.75rem;
    }
}
