/* ===== CUERVO TOUR OFICIAL - Styles ===== */

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

:root {
    --orange: #FF6B00;
    --orange-light: #FF8C33;
    --orange-dark: #CC5500;
    --orange-glow: rgba(255,107,0,.25);
    --black: #0a0a0a;
    --dark-1: #111111;
    --dark-2: #1a1a1a;
    --dark-3: #222222;
    --dark-4: #2a2a2a;
    --gray-600: #666;
    --gray-400: #999;
    --gray-300: #bbb;
    --white: #ffffff;
    --white-90: rgba(255,255,255,.9);
    --white-70: rgba(255,255,255,.7);
    --white-50: rgba(255,255,255,.5);
    --white-20: rgba(255,255,255,.2);
    --white-10: rgba(255,255,255,.1);
    --white-05: rgba(255,255,255,.05);
    --red: #ff3333;
    --green: #25D366;
    --shadow: 0 4px 30px rgba(0,0,0,.4);
    --shadow-orange: 0 4px 30px rgba(255,107,0,.3);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: 'Inter', sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: 'Bebas Neue', sans-serif; letter-spacing: 2px; line-height: 1.1; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* --- Tags & Titles --- */
.section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--orange);
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
}
.section-tag.light { color: var(--orange-light); }
.section-title {
    font-size: clamp(36px, 5vw, 64px);
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: 3px;
}
.accent { color: var(--orange); }
.section-desc { font-size: 16px; color: var(--white-70); max-width: 560px; font-weight: 300; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-desc { margin: 0 auto; }

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    justify-content: center;
}
.btn-icon { width: 20px; height: 20px; flex-shrink: 0; }
.btn-primary {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}
.btn-primary:hover {
    background: var(--orange-light);
    border-color: var(--orange-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-orange);
}
.btn-ghost {
    background: transparent;
    color: var(--white);
    border-color: var(--white-20);
}
.btn-ghost:hover {
    border-color: var(--orange);
    color: var(--orange);
    transform: translateY(-3px);
}
.btn-disabled {
    background: var(--dark-4);
    color: var(--gray-600);
    border-color: var(--dark-4);
    cursor: not-allowed;
}
.btn-full { width: 100%; }
.btn-lg { padding: 20px 48px; font-size: 16px; }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10,10,10,.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--white-05);
    transition: var(--transition);
}
.navbar.scrolled { background: rgba(10,10,10,.95); border-bottom-color: var(--orange-glow); }
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-img { height: 50px; width: auto; object-fit: contain; mix-blend-mode: screen; }
.logo-emoji { font-size: 28px; }
.logo-text { display: flex; flex-direction: column; }
.logo-name { font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: var(--orange); letter-spacing: 3px; line-height: 1; }
.logo-sub { font-size: 8px; text-transform: uppercase; letter-spacing: 5px; color: var(--white-50); font-weight: 600; }
.nav-links { display: flex; align-items: center; list-style: none; gap: 4px; }
.nav-links a {
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--white-70);
    border-radius: 8px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: .5px;
}
.nav-links a:hover { color: var(--orange); background: var(--white-05); }
.nav-cta {
    background: var(--orange) !important;
    color: var(--white) !important;
    border-radius: 50px !important;
    padding: 10px 24px !important;
}
.nav-cta:hover { background: var(--orange-light) !important; }
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--black);
    overflow: hidden;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(255,107,0,.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(255,107,0,.05) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(255,60,0,.04) 0%, transparent 50%);
}
.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 24px 80px;
    position: relative;
    z-index: 2;
}
.hero-content { max-width: 720px; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white-05);
    border: 1px solid var(--white-10);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 28px;
    animation: fadeIn .8s ease;
}
.hb-dot {
    width: 8px;
    height: 8px;
    background: var(--orange);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}
.hero h1 {
    margin-bottom: 24px;
}
.hero-line1 {
    display: block;
    font-size: clamp(40px, 7vw, 80px);
    color: var(--white);
    animation: slideRight .8s ease .1s both;
}
.hero-line2 {
    display: block;
    font-size: clamp(50px, 9vw, 110px);
    background: linear-gradient(135deg, var(--orange), var(--orange-light), #ffaa44);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideRight .8s ease .2s both;
}
.hero-desc {
    font-size: 17px;
    color: var(--white-70);
    margin-bottom: 36px;
    max-width: 540px;
    font-weight: 300;
    line-height: 1.8;
    animation: fadeIn .8s ease .3s both;
}
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
    animation: fadeIn .8s ease .4s both;
}
.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    animation: fadeIn .8s ease .5s both;
}
.hs { text-align: center; }
.hs-num {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    color: var(--orange);
    letter-spacing: 2px;
}
.hs-label { font-size: 11px; color: var(--white-50); text-transform: uppercase; letter-spacing: 2px; font-weight: 600; }
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
}
.hero-scroll span { font-size: 10px; text-transform: uppercase; letter-spacing: 3px; color: var(--white-50); }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--orange), transparent); animation: scrollBounce 2s infinite; }

/* ===== EVENTS ===== */
.events { padding: 100px 0; background: var(--dark-1); }
.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.event-card {
    background: var(--dark-2);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    transition: var(--transition);
    border: 1px solid var(--white-05);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--orange-light));
    opacity: 0;
    transition: var(--transition);
}
.event-card:hover { transform: translateY(-8px); border-color: var(--orange-glow); }
.event-card:hover::before { opacity: 1; }
.event-card.featured { border-color: var(--orange); }
.event-card.featured::before { opacity: 1; }
.ec-badge {
    display: inline-block;
    background: var(--orange);
    color: var(--white);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    align-self: flex-start;
}
.ec-badge.hot { background: var(--red); animation: pulse-badge 1.5s infinite; }
.ec-badge.sold { background: var(--gray-600); }
.ec-type { font-size: 12px; color: var(--white-50); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 2px; }
.ec-header h3 { font-size: 32px; color: var(--white); margin-bottom: 4px; }
.ec-venue { font-size: 13px; color: var(--white-50); font-weight: 400; }
.ec-date {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 20px 0;
    padding: 16px;
    background: var(--white-05);
    border-radius: var(--radius);
    border-left: 3px solid var(--orange);
}
.ec-day { font-family: 'Bebas Neue', sans-serif; font-size: 42px; color: var(--orange); line-height: 1; }
.ec-month { font-size: 14px; font-weight: 700; color: var(--white-70); text-transform: uppercase; line-height: 1.3; }
.ec-month span { font-weight: 400; font-size: 12px; color: var(--white-50); }
.ec-time { margin-left: auto; font-size: 13px; color: var(--orange); font-weight: 700; }
.ec-price { margin-bottom: 16px; }
.ec-from { display: block; font-size: 11px; color: var(--white-50); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px; }
.ec-amount { font-family: 'Bebas Neue', sans-serif; font-size: 48px; color: var(--orange); letter-spacing: 2px; }
.ec-per { font-size: 12px; color: var(--white-50); margin-left: 4px; }
.ec-includes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}
.ec-includes span {
    font-size: 11px;
    padding: 4px 10px;
    background: var(--white-05);
    border-radius: 50px;
    color: var(--white-70);
}
.ec-apart {
    font-size: 12px;
    color: var(--orange-light);
    font-weight: 600;
    margin-bottom: 16px;
    padding: 8px 0;
    border-top: 1px solid var(--white-05);
}
.event-card .btn { margin-top: auto; }

/* MULTIPLE ZONES/PACKAGES */
.ec-zones {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 12px;
    padding: 10px;
    background: var(--white-05);
    border-radius: 8px;
}
.ec-zone-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    padding: 4px 0;
    border-bottom: 1px solid var(--white-05);
}
.ec-zone-row:last-child { border-bottom: none; }
.ec-zone-row span:first-child { color: var(--white-70); }
.ec-zone-row span:last-child { color: var(--orange-light); font-weight: 700; }

/* ===== INCLUDES ===== */
.includes { padding: 100px 0; background: var(--black); }
.includes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.inc-card {
    background: var(--dark-2);
    border-radius: var(--radius-lg);
    padding: 36px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--white-05);
    position: relative;
    overflow: hidden;
}
.inc-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--orange);
    transition: var(--transition);
}
.inc-card:hover { transform: translateY(-6px); border-color: var(--orange-glow); }
.inc-card:hover::after { width: 60px; }
.inc-icon { font-size: 42px; margin-bottom: 20px; }
.inc-card h3 { font-size: 24px; margin-bottom: 12px; letter-spacing: 1px; }
.inc-card p { font-size: 14px; color: var(--white-70); font-weight: 300; }

/* ===== EXPERIENCE ===== */
.experience {
    padding: 120px 0;
    position: relative;
    background: var(--dark-1);
    overflow: hidden;
}
.exp-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(255,107,0,.06) 0%, transparent 70%);
}
.exp-content { position: relative; z-index: 1; text-align: center; }
.section-title.light { color: var(--white); }
.exp-desc { font-size: 17px; color: var(--white-70); max-width: 600px; margin: 0 auto 48px; font-weight: 300; }
.exp-numbers { display: flex; justify-content: center; gap: 60px; flex-wrap: wrap; }
.exp-num { text-align: center; }
.en-val {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 64px;
    color: var(--orange);
    line-height: 1;
    letter-spacing: 2px;
}
.en-suffix { font-family: 'Bebas Neue', sans-serif; font-size: 40px; color: var(--orange-light); }
.en-label { display: block; font-size: 12px; color: var(--white-50); text-transform: uppercase; letter-spacing: 2px; margin-top: 4px; font-weight: 600; }

/* ===== HOW IT WORKS ===== */
.how-it-works { padding: 100px 0; background: var(--black); }
.steps-grid { display: flex; align-items: flex-start; gap: 16px; justify-content: center; }
.step-card {
    background: var(--dark-2);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    flex: 1;
    max-width: 260px;
    transition: var(--transition);
    border: 1px solid var(--white-05);
}
.step-card:hover { transform: translateY(-6px); border-color: var(--orange-glow); }
.sc-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    color: var(--orange);
    opacity: .3;
    margin-bottom: 12px;
    letter-spacing: 2px;
}
.step-card:hover .sc-num { opacity: 1; }
.step-card h3 { font-size: 22px; margin-bottom: 8px; }
.step-card p { font-size: 13px; color: var(--white-70); font-weight: 300; }
.step-arrow {
    font-size: 28px;
    color: var(--orange);
    padding-top: 50px;
    opacity: .3;
}

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 100px 0; background: var(--dark-1); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.test-card {
    background: var(--dark-2);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: var(--transition);
    border: 1px solid var(--white-05);
}
.test-card:hover { transform: translateY(-4px); border-color: var(--orange-glow); }
.tc-rating { margin-bottom: 16px; font-size: 14px; }
.tc-text { font-size: 15px; color: var(--white-70); line-height: 1.8; margin-bottom: 24px; font-style: italic; font-weight: 300; }
.tc-author { display: flex; align-items: center; gap: 12px; }
.tc-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
}
.tc-name { display: block; font-weight: 700; font-size: 14px; }
.tc-trip { display: block; font-size: 11px; color: var(--orange-light); text-transform: uppercase; letter-spacing: 1px; }

/* ===== FAQ ===== */
.faq { padding: 100px 0; background: var(--black); }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
    border-bottom: 1px solid var(--white-05);
}
.faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    background: none;
    border: none;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
}
.faq-q:hover { color: var(--orange); }
.faq-icon {
    font-size: 24px;
    color: var(--orange);
    transition: var(--transition);
    flex-shrink: 0;
    width: 30px;
    text-align: center;
}
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .4s ease;
}
.faq-a p { font-size: 14px; color: var(--white-70); line-height: 1.8; font-weight: 300; padding-bottom: 24px; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-item.open .faq-q { color: var(--orange); }

/* ===== CTA FINAL ===== */
.cta-final {
    padding: 120px 0;
    position: relative;
    background: var(--dark-1);
    overflow: hidden;
}
.cta-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(255,107,0,.1) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 50%, rgba(255,60,0,.06) 0%, transparent 50%);
}
.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}
.cta-content h2 { font-size: clamp(36px, 5vw, 72px); margin-bottom: 16px; letter-spacing: 3px; }
.cta-content p { font-size: 17px; color: var(--white-70); margin-bottom: 36px; font-weight: 300; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.cta-payment {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 12px;
    color: var(--white-50);
}
.cta-payment span:first-child { font-weight: 700; color: var(--white-70); }

/* ===== WA FLOAT ===== */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse-wa 2s infinite;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 30px; height: 30px; fill: white; }

/* ===== FOOTER ===== */
.footer { background: var(--dark-2); padding: 60px 0 0; border-top: 1px solid var(--white-05); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--white-05); }
.f-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo-img { height: 90px; width: auto; object-fit: contain; mix-blend-mode: screen; }

/* ---- GALERIA EXPERIENCIAS ---- */
.galeria { padding: 80px 0; background: var(--dark); }
.galeria-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 48px; }
.galeria-item { position: relative; aspect-ratio: 1; overflow: hidden; border-radius: 12px; cursor: pointer; }
.galeria-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; display: block; }
.galeria-item:hover img { transform: scale(1.07); }
.galeria-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,.85)); padding: 16px 12px 12px; opacity: 0; transition: opacity .3s; }
.galeria-item:hover .galeria-overlay { opacity: 1; }
.galeria-evento { display: inline-block; background: var(--orange); color: #fff; font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 20px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.galeria-caption { color: #fff; font-size: 13px; margin: 0; line-height: 1.4; }
@media (max-width: 768px) { .galeria-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; } }
.footer-brand p { font-size: 14px; color: var(--white-50); line-height: 1.7; margin-bottom: 16px; }
.f-social { display: flex; gap: 12px; }
.f-social-link { font-size: 13px; padding: 6px 16px; background: var(--white-05); border-radius: 50px; transition: var(--transition); }
.f-social-link:hover { background: var(--orange); }
.footer-col h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    color: var(--orange);
    margin-bottom: 16px;
    letter-spacing: 2px;
}
.footer-col a { display: block; font-size: 13px; padding: 4px 0; color: var(--white-50); transition: var(--transition); }
.footer-col a:hover { color: var(--orange); transform: translateX(4px); }
.f-location { font-size: 13px; color: var(--white-50); margin-top: 8px; }
.footer-bottom { padding: 24px 0; display: flex; justify-content: space-between; font-size: 12px; color: var(--white-20); }

/* ===== ANIMATIONS ===== */
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideRight { from { opacity: 0; transform: translateX(-40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes pulse-dot { 0%,100% { opacity: 1; } 50% { opacity: .3; } }
@keyframes pulse-badge { 0%,100% { transform: scale(1); } 50% { transform: scale(1.05); } }
@keyframes pulse-wa { 0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); } 50% { box-shadow: 0 4px 30px rgba(37,211,102,.6), 0 0 0 12px rgba(37,211,102,.1); } }
@keyframes scrollBounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(8px); } }
@keyframes particleFloat {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
}

.reveal { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .events-grid { grid-template-columns: 1fr 1fr; }
    .events-grid .event-card:last-child { grid-column: 1 / -1; max-width: 500px; margin: 0 auto; }
    .includes-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { flex-wrap: wrap; }
    .step-arrow { display: none; }
    .step-card { max-width: 100%; flex: 0 0 calc(50% - 8px); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(10,10,10,.98);
        flex-direction: column;
        padding: 24px;
        gap: 4px;
        border-top: 1px solid var(--white-05);
    }
    .nav-links.open { display: flex; }
    .nav-links a { padding: 14px 20px !important; font-size: 16px !important; border-radius: 10px !important; }
    .nav-toggle { display: flex; }
    .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; }
    .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
    .hero-stats { gap: 24px; }
    .events-grid { grid-template-columns: 1fr; }
    .events-grid .event-card:last-child { max-width: 100%; }
    .includes-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .exp-numbers { gap: 32px; }
    .en-val { font-size: 48px; }
    .step-card { flex: 0 0 100%; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
    .hero-scroll { display: none; }
}
