:root {
    --bg-primary: #fcfcfd;
    --bg-secondary: #f3f4f6;
    --accent: #B026FF;
    --accent-glow: rgba(176, 38, 255, 0.2);
    --text-primary: #0a0a0b;
    --text-secondary: #52525b;
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(0, 0, 0, 0.05);
    --glass-hover: rgba(0, 0, 0, 0.08);
    --hero-overlay: linear-gradient(100deg, #fcfcfd 0%, rgba(252, 252, 253, 0.8) 50%, rgba(252, 252, 253, 0.1) 100%);
    --card-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
}

.dark-theme {
    --bg-primary: #050505;
    --bg-secondary: #0a0a0a;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-hover: rgba(255, 255, 255, 0.12);
    --hero-overlay: linear-gradient(100deg, #050505 0%, rgba(5, 5, 5, 0.7) 60%, rgba(5, 5, 5, 0.2) 100%);
    --card-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

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

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.glass, .navbar, .card, .btn-secondary, #ai-chat-panel, .theme-toggle {
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.theme-toggle {
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s, transform 0.2s;
}

.theme-toggle:hover {
    background: var(--glass-border);
    transform: scale(1.1);
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
}

/* 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: clamp(60px, 10vw, 120px) 5%;
    scroll-margin-top: 80px;
}

.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;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--card-shadow);
}

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

.brand {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    margin-right: 1.5rem;
}

.nav-links {
    display: flex;
    gap: clamp(1rem, 2vw, 1.5rem);
    flex-shrink: 1;
    overflow: hidden;
    white-space: nowrap;
    margin: 0 1rem;
}

@media (max-width: 1200px) {
    .nav-links {
        display: none;
    }
}

#nav-book-btn, .theme-toggle {
    flex-shrink: 0;
}
.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: var(--hero-overlay);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: min(800px, 90%);
    padding-left: 5%;
    padding-top: 120px;
}

.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, 6vw, 4.5rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 2.5rem;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.6;
}

.mouse {
    width: 22px;
    height: 38px;
    border: 2px solid var(--text-secondary);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 2px;
    height: 6px;
    background: var(--accent);
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll-wheel 1.5s infinite;
}

@keyframes scroll-wheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

.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;
    max-width: 1200px;
    margin: 0 auto;
}

.program-card {
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    height: 100%;
    box-shadow: var(--card-shadow);
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
    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 {
    margin-top: 4rem;
    padding: 3rem;
    border-radius: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    box-shadow: var(--card-shadow);
    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: repeat(auto-fit, minmax(320px, 1fr));
    gap: clamp(2rem, 8vw, 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: radial-gradient(circle at center, rgba(176, 38, 255, 0.1) 0%, transparent 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.orbit-container {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(176, 38, 255, 0.2);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.orbit-node {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--accent);
}

.node-1 { top: 0; left: 50%; transform: translateX(-50%); }
.node-2 { bottom: 0; left: 50%; transform: translateX(-50%); }

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.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);
}
.team-card.has-video:hover .team-photo {
    opacity: 0;
}
.team-video {
    opacity: 0;
}
.team-card.has-video:hover .team-video {
    opacity: 1;
}
.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;
    margin-bottom: 2rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3rem 5%;
    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);
}

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

.media-card {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 9/16;
    background: #000;
    transition: transform 0.3s, box-shadow 0.3s;
}

.media-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border-color: var(--accent);
}

.media-card iframe,
.media-card video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover;
    background: #000;
}

/* 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 {
        /* auto-fit handles this naturally now */
    }
    .credibility-grid {
        /* auto-fit handles this naturally now */
    }
    .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, var(--bg-primary) 0%, rgba(5,5,5,0.6) 50%, var(--bg-primary) 100%);
    }
    .team-media-container {
        height: 300px;
    }
    .alumni-list ul {
        grid-template-columns: 1fr;
    }
    .ig-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
}

/* AI Chat Widget Polish */
#ai-chat-widget {
    position: fixed;
    bottom: 30px !important;
    right: 30px !important;
    left: auto !important;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

#ai-chat-toggle {
    background: var(--accent) !important;
    color: white !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 14px 24px !important;
    box-shadow: 0 8px 25px rgba(176, 38, 255, 0.4) !important;
    cursor: pointer !important;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 600;
    transition: all 0.3s ease;
}

#ai-chat-toggle:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(176, 38, 255, 0.5) !important;
}

#ai-chat-panel {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 450px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    overflow: hidden;
    z-index: 10000;
    display: none;
    flex-direction: column;
}

#ai-chat-panel.active {
    display: flex;
    animation: fadeUp 0.3s ease-out;
}

.ai-message {
    background: rgba(176, 38, 255, 0.1) !important;
    border: 1px solid rgba(176, 38, 255, 0.2) !important;
    padding: 12px 16px !important;
    border-radius: 12px !important;
    border-bottom-left-radius: 2px !important;
    max-width: 85%;
    color: var(--text-primary);
    align-self: flex-start;
    animation: fadeUp 0.3s ease-out;
    line-height: 1.5;
}

.user-message {
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 16px;
    border-radius: 12px;
    border-bottom-right-radius: 2px;
    align-self: flex-end;
    max-width: 85%;
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    animation: fadeUp 0.3s ease-out;
    line-height: 1.5;
}

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

@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;
    }
}

/* 2026 visual reset: bold sports poster aesthetic */
:root {
    --bg-primary: #f2f6f8;
    --bg-secondary: #ffffff;
    --accent: #ff5a1f;
    --accent-glow: rgba(255, 90, 31, 0.24);
    --text-primary: #12212d;
    --text-secondary: #4b6171;
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
    --glass-bg: rgba(255, 255, 255, 0.82);
    --glass-border: rgba(18, 33, 45, 0.12);
    --glass-hover: rgba(18, 33, 45, 0.08);
    --hero-overlay: linear-gradient(120deg, rgba(242, 246, 248, 0.86) 0%, rgba(242, 246, 248, 0.64) 45%, rgba(242, 246, 248, 0.28) 100%);
    --card-shadow: 0 20px 40px -22px rgba(18, 33, 45, 0.35);
}

.dark-theme {
    --bg-primary: #0d1a22;
    --bg-secondary: #12212d;
    --text-primary: #f0f6f9;
    --text-secondary: #98adba;
    --glass-bg: rgba(18, 33, 45, 0.82);
    --glass-border: rgba(240, 246, 249, 0.14);
    --glass-hover: rgba(240, 246, 249, 0.08);
    --hero-overlay: linear-gradient(120deg, rgba(13, 26, 34, 0.9) 0%, rgba(13, 26, 34, 0.7) 50%, rgba(13, 26, 34, 0.22) 100%);
    --card-shadow: 0 28px 52px -28px rgba(0, 0, 0, 0.75);
}

body {
    background:
        radial-gradient(circle at 18% 8%, rgba(255, 90, 31, 0.18), transparent 38%),
        radial-gradient(circle at 88% 0%, rgba(49, 170, 255, 0.2), transparent 45%),
        var(--bg-primary);
    font-family: var(--font-body);
}

.navbar {
    background: color-mix(in srgb, var(--glass-bg) 86%, transparent);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px -20px rgba(0, 0, 0, 0.45);
}

.brand-cruz {
    font-family: var(--font-display);
    font-size: 2.3rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-right: 4px;
    line-height: 1;
}

.brand-coaching {
    font-family: 'Archivo', sans-serif;
    font-size: 0.76rem;
    letter-spacing: 2.6px;
    font-weight: 700;
}

.nav-link {
    font-family: 'Archivo', sans-serif;
    letter-spacing: 0.5px;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.btn-primary, .btn-secondary {
    border-radius: 14px;
    font-family: 'Archivo', sans-serif;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1.1px;
    padding: 0.86rem 1.28rem;
}

.btn-primary {
    background: linear-gradient(135deg, #ff5a1f 0%, #ff7f32 100%);
    color: #08141d;
    box-shadow: 0 18px 30px -20px rgba(255, 90, 31, 0.92);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 32px -18px rgba(255, 90, 31, 0.8);
}

.btn-secondary {
    border: 1px solid color-mix(in srgb, var(--text-primary) 24%, transparent);
}

.hero {
    min-height: 96vh;
}

.hero-bg {
    background-image:
      radial-gradient(circle at 14% 18%, rgba(49, 170, 255, 0.32), transparent 34%),
      radial-gradient(circle at 82% 16%, rgba(255, 90, 31, 0.34), transparent 32%),
      repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0 12px, rgba(0, 0, 0, 0.06) 12px 24px),
      linear-gradient(130deg, #0f202b 0%, #1a3444 45%, #132631 100%);
    background-position: center;
    filter: saturate(1.08) contrast(1.04);
}

.hero-content {
    max-width: 860px;
    padding-left: 0;
}

.badge {
    border-radius: 999px;
    font-family: 'Archivo', sans-serif;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    background: color-mix(in srgb, var(--glass-bg) 78%, transparent);
}

.display-title {
    font-size: clamp(3.2rem, 9vw, 7.2rem);
    line-height: 0.95;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    text-wrap: balance;
}

.hero-subtitle {
    max-width: 680px;
    font-size: clamp(1rem, 2vw, 1.22rem);
}

.proof-number {
    font-family: var(--font-display);
    font-size: 2.8rem;
    line-height: 0.9;
}

.program-card,
.pricing-card,
.testimonial-card,
.alumni-list,
.team-card,
.cred-item,
.media-card {
    border-radius: 22px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--card-shadow);
    backdrop-filter: blur(8px);
}

.program-card {
    background:
        linear-gradient(155deg, color-mix(in srgb, var(--glass-bg) 92%, transparent), color-mix(in srgb, var(--bg-secondary) 82%, transparent));
    transform-origin: center;
}

.program-card::before {
    height: 5px;
    background: linear-gradient(90deg, #31aaff 0%, #ff5a1f 60%, #ffae2b 100%);
}

.program-card:hover {
    transform: translateY(-8px) rotate(-0.4deg);
}

.program-icon {
    border-radius: 14px;
    width: 62px;
    height: 62px;
    font-size: 0.95rem;
    font-family: 'Archivo', sans-serif;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    background: linear-gradient(140deg, rgba(49, 170, 255, 0.14), rgba(255, 90, 31, 0.18));
}

.section-title {
    font-size: clamp(2.7rem, 7vw, 5rem);
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 0.92;
}

.section-subtitle {
    font-size: 1rem;
    max-width: 680px;
}

.exos-banner {
    border-left: none;
    border: 1px solid var(--glass-border);
    background:
        linear-gradient(132deg, rgba(49, 170, 255, 0.14), rgba(255, 90, 31, 0.18)),
        var(--glass-bg);
}

.timeline::before {
    width: 4px;
    border-radius: 999px;
    background: linear-gradient(180deg, #31aaff 0%, #ff5a1f 100%);
}

.step-marker {
    width: 30px;
    height: 30px;
    left: -36px;
    font-family: 'Archivo', sans-serif;
    border-width: 1px;
}

.international-visual {
    border-radius: 28px;
    border: 1px solid var(--glass-border);
    background:
      linear-gradient(180deg, rgba(49, 170, 255, 0.16) 0%, rgba(255, 90, 31, 0.18) 100%);
}

.orbit-container {
    border: 2px dashed rgba(255, 255, 255, 0.32);
}

.stats-card {
    border-radius: 14px;
}

.results-grid {
    grid-template-columns: 1.1fr 1fr 1fr;
}

.alumni-list li::before {
    content: '>';
}

.team-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem;
}

.team-media-container {
    height: 220px;
    background: linear-gradient(145deg, rgba(49, 170, 255, 0.18), rgba(255, 90, 31, 0.18));
}

.team-photo {
    padding: 0;
}

.team-info h3 {
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.team-info .role {
    font-family: 'Archivo', sans-serif;
    font-size: 0.76rem;
    text-transform: uppercase;
}

.cred-check {
    border-radius: 10px;
    background: linear-gradient(140deg, rgba(49, 170, 255, 0.2), rgba(255, 90, 31, 0.22));
}

.pricing-card.featured {
    background:
      linear-gradient(165deg, rgba(255, 90, 31, 0.22), rgba(49, 170, 255, 0.22)),
      var(--glass-bg);
}

.price {
    font-size: 4.2rem;
    line-height: 0.86;
}

.footer-bottom {
    border-top: 2px solid var(--glass-border);
}

#ai-chat-toggle {
    background: linear-gradient(135deg, #31aaff 0%, #1f87e6 100%) !important;
    color: #fff !important;
    box-shadow: 0 16px 28px -16px rgba(49, 170, 255, 0.78) !important;
}

.ai-message {
    background: rgba(49, 170, 255, 0.16) !important;
    border: 1px solid rgba(49, 170, 255, 0.3) !important;
}

@media (max-width: 1000px) {
    .results-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 88vh;
    }

    .display-title {
        font-size: clamp(2.6rem, 12vw, 4.2rem);
    }

    .program-card:hover {
        transform: translateY(-4px);
    }
}
