/* ===== RESET & VARIABLES ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --bg: #050507;
    --bg-subtle: #0a0a0f;
    --glass: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-hover: rgba(255, 255, 255, 0.07);
    --glass-strong: rgba(255, 255, 255, 0.1);
    --text: #f5f5f7;
    --text-secondary: rgba(255, 255, 255, 0.6);
    --text-tertiary: rgba(255, 255, 255, 0.35);
    --accent: #c9a96e;
    --accent-light: #e2c99a;
    --accent-glow: rgba(201, 169, 110, 0.2);
    --accent-glow-strong: rgba(201, 169, 110, 0.4);
    --radius: 20px;
    --radius-sm: 12px;
    --radius-xs: 8px;
    --blur: blur(40px);
    --blur-light: blur(20px);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);
    --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

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

a { text-decoration: none; color: inherit; transition: all 0.3s var(--ease); }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select { font-family: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== PRELOADER ===== */
.preloader {
    position: fixed; inset: 0; z-index: 9999;
    background: var(--bg);
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.8s var(--ease), visibility 0.8s var(--ease);
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; }
.preloader-logo { width: 120px; margin: 0 auto 32px; opacity: 0.9; }
.preloader-bar { width: 180px; height: 1px; background: rgba(255,255,255,0.1); border-radius: 1px; overflow: hidden; margin: 0 auto; }
.preloader-progress { height: 100%; width: 0; background: linear-gradient(90deg, var(--accent), var(--accent-light)); animation: preload 1.5s var(--ease) forwards; }
@keyframes preload { to { width: 100%; } }

/* ===== PARTICLE CANVAS ===== */
.particle-canvas { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
.grid-overlay {
    position: fixed; inset: 0; z-index: 0; pointer-events: none;
    background-image:
        linear-gradient(rgba(201,169,110,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201,169,110,0.025) 1px, transparent 1px);
    background-size: 70px 70px;
}

/* ===== FLOATING ORBS ===== */
.orbs { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.12; }
.orb-1 { width: 600px; height: 600px; background: var(--accent); top: -200px; right: -200px; animation: orbFloat1 20s ease-in-out infinite; }
.orb-2 { width: 400px; height: 400px; background: #8b6914; bottom: -200px; left: -200px; animation: orbFloat2 25s ease-in-out infinite; }
.orb-3 { width: 300px; height: 300px; background: var(--accent-light); top: 40%; left: 30%; animation: orbFloat3 30s ease-in-out infinite; }
@keyframes orbFloat1 { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(-80px, 60px) scale(1.1); } }
@keyframes orbFloat2 { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(60px, -80px) scale(1.15); } }
@keyframes orbFloat3 { 0%, 100% { transform: translate(0, 0) scale(0.8); } 50% { transform: translate(40px, -40px) scale(1.2); } }

/* ===== GLASS UTILITIES ===== */
.glass-card {
    background: var(--glass);
    backdrop-filter: var(--blur-light);
    -webkit-backdrop-filter: var(--blur-light);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    transition: all 0.4s var(--ease);
}
.glass-card:hover {
    background: var(--glass-hover);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 40px var(--accent-glow);
}
.glass-pill {
    background: var(--glass);
    backdrop-filter: var(--blur-light);
    -webkit-backdrop-filter: var(--blur-light);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
}

/* ===== NAV ===== */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 16px 0;
    transition: all 0.4s var(--ease);
}
.nav.scrolled {
    padding: 8px 0;
    background: rgba(5, 5, 7, 0.7);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    border-bottom: 1px solid var(--glass-border);
}
.nav-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-logo-img { height: 36px; }
.nav-links { display: flex; gap: 28px; }
.nav-link {
    font-size: 0.82rem; font-weight: 500; color: var(--text-secondary);
    letter-spacing: 0.02em; position: relative; padding: 4px 0;
}
.nav-link::after {
    content: ''; position: absolute; bottom: 0; left: 50%; width: 0; height: 1px;
    background: var(--accent); transition: all 0.3s var(--ease); transform: translateX(-50%);
}
.nav-link:hover { color: var(--text); }
.nav-link:hover::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-cta {
    font-size: 0.8rem; font-weight: 600; color: var(--bg);
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    padding: 10px 24px; border-radius: 100px;
    transition: all 0.3s var(--ease);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 24px var(--accent-glow-strong); }

/* Language toggle */
.lang-toggle {
    display: flex; align-items: center; gap: 4px;
    font-size: 0.75rem; font-weight: 600; letter-spacing: 0.05em;
    color: var(--text-tertiary); cursor: pointer;
    padding: 6px 12px; border-radius: 100px;
    border: 1px solid var(--glass-border);
    background: var(--glass);
    backdrop-filter: var(--blur-light); -webkit-backdrop-filter: var(--blur-light);
    transition: all 0.3s var(--ease);
}
.lang-toggle:hover { border-color: var(--accent); }
.lang-divider { color: var(--text-tertiary); opacity: 0.3; }
.lang-option { cursor: pointer; transition: color 0.3s ease; padding: 2px 4px; }
.lang-option:hover { color: var(--text); }
.lang-active { color: var(--accent); }
.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 8px; z-index: 101; }
.nav-burger span { display: block; width: 22px; height: 1.5px; background: var(--text); transition: all 0.3s var(--ease); transform-origin: center; }
.nav-burger.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.nav-burger.active span:nth-child(2) { opacity: 0; }
.nav-burger.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

/* Mobile Menu */
.mobile-menu {
    position: fixed; inset: 0; z-index: 99;
    background: rgba(5, 5, 7, 0.95);
    backdrop-filter: var(--blur);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: all 0.5s var(--ease);
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu-inner { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.mobile-link { font-size: 1.8rem; font-weight: 300; color: var(--text-secondary); letter-spacing: -0.02em; transition: all 0.3s var(--ease); }
.mobile-link:hover { color: var(--accent); }
.mobile-cta { margin-top: 20px; font-size: 0.85rem; font-weight: 600; color: var(--bg); background: linear-gradient(135deg, var(--accent), var(--accent-light)); padding: 14px 40px; border-radius: 100px; }

/* ===== HERO ===== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg-img { width: 100%; height: 110%; object-fit: cover; object-position: center 0%; filter: brightness(1); }
.hero-overlay {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at center 40%, rgba(5,5,7,0.5) 0%, transparent 70%),
        linear-gradient(180deg, rgba(5,5,7,0.15) 0%, rgba(5,5,7,0.3) 30%, rgba(5,5,7,0.6) 60%, var(--bg) 90%);
}
.hero-content { position: relative; z-index: 2; text-align: center; padding: 0 24px; max-width: 860px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--accent); padding: 10px 24px; margin-bottom: 32px;
}
.pulse-dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.5); } }

.hero-title { font-weight: 600; line-height: 1.08; margin-bottom: 20px; letter-spacing: -0.03em; text-shadow: 0 4px 30px rgba(0,0,0,0.7), 0 2px 10px rgba(0,0,0,0.5); }
.hero-line { display: block; font-size: clamp(2.8rem, 6vw, 5.2rem); }
.hero-line-accent {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400; font-style: italic;
    font-size: clamp(3.2rem, 7vw, 5.8rem);
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-desc { font-size: clamp(0.95rem, 1.4vw, 1.1rem); color: var(--text-secondary); max-width: 520px; margin: 0 auto 36px; line-height: 1.7; text-shadow: 0 2px 20px rgba(0,0,0,0.6); }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }

/* ===== HERO COUNTERS ===== */
.hero-counters {
    display: flex; justify-content: center; gap: 16px; flex-wrap: wrap;
}
.hero-counter {
    position: relative; text-align: center;
    padding: 28px 24px 22px;
    min-width: 140px; flex: 1; max-width: 180px;
    background: var(--glass);
    backdrop-filter: var(--blur-light); -webkit-backdrop-filter: var(--blur-light);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.4s var(--ease);
}
.hero-counter:hover {
    border-color: rgba(201,169,110,0.25);
    background: rgba(255,255,255,0.06);
    transform: translateY(-4px);
}
.hero-counter-value {
    display: flex; align-items: baseline; justify-content: center; gap: 2px;
    line-height: 1;
}
.counter-num {
    font-size: 2.8rem; font-weight: 700; letter-spacing: -0.03em;
    color: #f5f5f7;
    display: inline-block;
    transition: all 0.4s ease;
}
.counter-plus {
    font-size: 1.6rem; color: rgba(255,255,255,0.4);
    transition: all 0.4s ease;
}
.counter-plus {
    font-size: 1.6rem; font-weight: 600;
    background: linear-gradient(180deg, #f0dca8, #c9a96e);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-counter-label {
    font-size: 0.65rem; color: var(--text-tertiary);
    text-transform: uppercase; letter-spacing: 0.1em;
    margin-top: 10px; line-height: 1.4;
}
/* Glow element behind number */
.counter-glow {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -60%);
    width: 80px; height: 80px; border-radius: 50%;
    background: radial-gradient(circle, rgba(201,169,110,0) 0%, rgba(201,169,110,0) 100%);
    pointer-events: none;
    transition: all 1s ease;
}
.counter-num.counting { text-shadow: 0 0 20px rgba(201,169,110,0.4); }
.counter-num.counter-done { text-shadow: none; }
.hero-counter:hover .counter-num {
    background: linear-gradient(180deg, #f0dca8, #c9a96e);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    filter: drop-shadow(0 0 16px rgba(201,169,110,0.5));
}
.hero-counter:hover .counter-plus {
    color: var(--accent);
}
.hero-counter.lit .counter-glow {
    background: radial-gradient(circle, rgba(201,169,110,0.12) 0%, rgba(201,169,110,0) 70%);
    width: 120px; height: 120px;
}
.hero-counter.lit { border-color: rgba(201,169,110,0.15); }

.hero-scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); }
.hero-scroll-mouse { width: 24px; height: 38px; border: 2px solid var(--text-tertiary); border-radius: 12px; position: relative; }
.hero-scroll-wheel { width: 3px; height: 8px; background: var(--accent); border-radius: 2px; position: absolute; top: 6px; left: 50%; transform: translateX(-50%); animation: scrollWheel 2s var(--ease) infinite; }
@keyframes scrollWheel { 0% { opacity: 1; transform: translateX(-50%) translateY(0); } 100% { opacity: 0; transform: translateX(-50%) translateY(14px); } }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.85rem; font-weight: 600; padding: 14px 32px;
    border-radius: 100px; transition: all 0.3s var(--ease); position: relative;
}
.btn-glow {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--bg);
}
.btn-glow:hover { transform: translateY(-2px); box-shadow: 0 8px 32px var(--accent-glow-strong); }
.btn-glass {
    background: var(--glass); border: 1px solid var(--glass-border);
    color: var(--text); backdrop-filter: var(--blur-light); -webkit-backdrop-filter: var(--blur-light);
}
.btn-glass:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-glow); }
.btn-sm { font-size: 0.8rem; padding: 10px 24px; }
.btn-lg { font-size: 0.9rem; padding: 16px 40px; }
.btn-full { width: 100%; justify-content: center; }

/* ===== SECTIONS ===== */
.section { position: relative; z-index: 1; padding: 120px 0; }
.section-dark { background: rgba(255,255,255,0.01); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
    display: inline-block; font-size: 0.7rem; font-weight: 600;
    letter-spacing: 0.25em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px;
}
.section-title { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 600; letter-spacing: -0.03em; line-height: 1.15; }
.section-desc { color: var(--text-secondary); margin-top: 12px; font-size: 1rem; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ===== FEATURES ===== */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card { padding: 36px 28px; }
.feature-icon {
    width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
    border-radius: 14px; background: var(--accent-glow); color: var(--accent); margin-bottom: 20px;
}
.feature-card h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 8px; letter-spacing: -0.01em; }
.feature-card p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; }

/* ===== EVENTS ===== */
.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.event-card { overflow: hidden; }
.event-card:hover { transform: translateY(-4px); }
.event-image { position: relative; height: 220px; overflow: hidden; border-radius: var(--radius) var(--radius) 0 0; }
.event-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.event-card:hover .event-image img { transform: scale(1.05); }
.event-badge {
    position: absolute; top: 14px; left: 14px;
    font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    background: var(--accent); color: var(--bg); padding: 6px 14px; border-radius: 100px;
}
.event-body { padding: 24px; }
.event-date { display: flex; align-items: baseline; gap: 8px; margin-bottom: 10px; }
.event-day { font-size: 1.8rem; font-weight: 700; color: var(--accent); letter-spacing: -0.02em; }
.event-month { font-size: 0.8rem; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.05em; }
.event-title { font-size: 1.15rem; font-weight: 600; margin-bottom: 6px; letter-spacing: -0.01em; }
.event-venue { font-size: 0.82rem; color: var(--text-tertiary); display: flex; align-items: center; gap: 6px; margin-bottom: 14px; }
.event-venue svg { color: var(--accent); flex-shrink: 0; opacity: 0.7; }
.event-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.event-tag {
    font-size: 0.7rem; font-weight: 500; color: var(--text-secondary);
    padding: 4px 12px; border-radius: 100px; background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
}
.event-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
/* Past event */
.event-card-past { opacity: 0.5; filter: grayscale(0.4); }
.event-card-past:hover { opacity: 0.7; filter: grayscale(0.2); }
.event-badge-past { background: rgba(0,0,0,0.7) !important; color: var(--text) !important; backdrop-filter: blur(8px); }
.event-past-label { font-size: 0.78rem; color: var(--text-tertiary); font-weight: 500; font-style: italic; }

/* Promo MAC button — purple */
.btn-promo-mac {
    color: #a78bfa !important; border-color: rgba(167, 139, 250, 0.3) !important;
    font-weight: 700; letter-spacing: 0.1em; position: relative;
}
.btn-promo-mac svg { stroke: #a78bfa; }
.btn-promo-mac:hover { background: rgba(167, 139, 250, 0.12) !important; border-color: #a78bfa !important; }
.promo-mac-label {
    font-size: 0.6rem; font-weight: 800; letter-spacing: 0.12em;
    background: linear-gradient(135deg, #8b5cf6, #a78bfa); color: #fff;
    padding: 2px 7px; border-radius: 4px; line-height: 1;
}

/* Event actions alignment */
.event-body { display: flex; flex-direction: column; }
.event-actions { margin-top: auto; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

/* ===== VIDEOS ===== */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px; margin-bottom: 40px;
}
.video-item {
    position: relative; overflow: hidden; border-radius: var(--radius);
    aspect-ratio: 16/9;
}
.video-item video {
    width: 100%; height: 100%; object-fit: cover;
    display: block;
}
.video-label {
    position: absolute; bottom: 14px; left: 14px; z-index: 2;
    font-size: 0.72rem; font-weight: 600; color: white;
    background: rgba(0,0,0,0.55); backdrop-filter: blur(10px);
    padding: 6px 14px; border-radius: 100px; pointer-events: none;
}
@media (max-width: 768px) {
    .videos-grid { grid-template-columns: 1fr; }
    .video-item { aspect-ratio: 16/9; }
}

/* ===== GALLERY ===== */
.gallery { overflow: hidden; margin-bottom: 16px; border-radius: var(--radius-sm); }
.gallery-track {
    display: flex; gap: 16px; width: max-content;
    animation: galleryScroll 40s linear infinite;
}
.gallery-reverse .gallery-track { animation: galleryScrollReverse 45s linear infinite; }
.gallery-img {
    height: 200px; width: auto; border-radius: var(--radius-sm);
    object-fit: cover; flex-shrink: 0;
    transition: all 0.4s var(--ease);
}
.gallery-img:hover { transform: scale(1.03); filter: brightness(1.1); }
@keyframes galleryScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes galleryScrollReverse { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }

/* ===== PARTNERS BG ===== */
.section-partners { position: relative; overflow: hidden; }
.section-partners-bg { position: absolute; inset: 0; }
.section-partners-bg-img { width: 100%; height: 100%; object-fit: cover; }
.section-partners-overlay { position: absolute; inset: 0; background: rgba(5,5,7,0.82); backdrop-filter: blur(4px); }

/* ===== GUESTS ===== */
.guests-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
.guest-card { display: flex; align-items: center; gap: 14px; padding: 14px 18px; }
.guest-card:hover { transform: translateY(-2px) translateX(2px); }
.guest-photo {
    width: 64px; height: 64px; border-radius: 50%; object-fit: cover; object-position: top; flex-shrink: 0;
    border: 2px solid rgba(201,169,110,0.2);
    transition: all 0.3s var(--ease);
}
.guest-card:hover .guest-photo { border-color: var(--accent); box-shadow: 0 0 20px var(--accent-glow); }
.guest-info h4 { font-size: 0.88rem; font-weight: 600; letter-spacing: -0.01em; }
.guest-company { font-size: 0.78rem; color: var(--accent); font-weight: 500; }
.guest-info small { display: block; font-size: 0.68rem; color: var(--text-tertiary); text-transform: uppercase; letter-spacing: 0.05em; }

/* ===== PARTNERS ===== */
.partners-marquee { overflow: hidden; border-radius: var(--radius); margin-bottom: 16px; }
.partners-track { display: flex; gap: 0; width: max-content; animation: partnersScroll 35s linear infinite; }
.partners-marquee-reverse .partners-track { animation: partnersScrollReverse 40s linear infinite; }
.partners-img { height: 80px; width: auto; opacity: 0.7; transition: opacity 0.3s var(--ease); filter: grayscale(0.3) brightness(1.1); }
.partners-img:hover { opacity: 1; filter: grayscale(0) brightness(1.2); }
@keyframes partnersScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes partnersScrollReverse { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }

/* ===== CTA ===== */
.section-cta { position: relative; overflow: hidden; padding: 100px 0; }
.section-cta-bg { position: absolute; inset: 0; }
.section-cta-bg-img { width: 100%; height: 100%; object-fit: cover; }
.section-cta-overlay { position: absolute; inset: 0; background: rgba(5,5,7,0.8); backdrop-filter: blur(6px); }
.cta-box { position: relative; z-index: 1; text-align: center; padding: 72px 48px; }
.cta-box h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; line-height: 1.2; margin-bottom: 16px; letter-spacing: -0.02em; }
.cta-box > p { color: var(--text-secondary); max-width: 460px; margin: 0 auto 32px; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-desc { color: var(--text-secondary); margin: 12px 0 32px; line-height: 1.7; }
.contact-channels { display: flex; flex-direction: column; gap: 12px; }
.contact-channel { display: flex; align-items: center; gap: 14px; padding: 16px 20px; }
.contact-channel svg { color: var(--accent); flex-shrink: 0; }
.contact-channel strong { display: block; font-size: 0.88rem; }
.contact-channel span { font-size: 0.8rem; color: var(--text-secondary); }
.contact-channel:hover { border-color: var(--accent); }
.contact-manager-photo { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }

.contact-form { padding: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.75rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.08em; }
.form-group input, .form-group select {
    width: 100%; background: rgba(255,255,255,0.03); border: 1px solid var(--glass-border);
    border-radius: var(--radius-xs); padding: 13px 16px; font-size: 0.9rem; color: var(--text);
    transition: all 0.3s var(--ease); outline: none; -webkit-appearance: none; appearance: none;
}
.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.35)' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px;
}
.form-group input::placeholder { color: var(--text-tertiary); }
.form-group input:focus, .form-group select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow); }

.form-radios { display: flex; flex-wrap: wrap; gap: 8px; }
.form-radio {
    display: flex; align-items: center; gap: 6px;
    font-size: 0.82rem; color: var(--text-secondary); cursor: pointer;
    padding: 8px 16px; border-radius: 100px;
    background: rgba(255,255,255,0.03); border: 1px solid var(--glass-border);
    transition: all 0.3s var(--ease);
}
.form-radio input { display: none; }
.form-radio:has(input:checked) { border-color: var(--accent); color: var(--accent); background: var(--accent-glow); }

/* ===== FOOTER ===== */
.footer { border-top: 1px solid var(--glass-border); padding: 48px 0 32px; position: relative; z-index: 1; }
.footer-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; }
.footer-logo-reveal {
    display: flex; flex-direction: column; align-items: center; gap: 16px;
    margin-bottom: 12px;
}
.footer-logo { height: 48px; opacity: 0.9; transition: all 0.6s var(--ease); }
.footer-logo-reveal:hover .footer-logo { transform: scale(1.05); filter: drop-shadow(0 0 20px var(--accent-glow-strong)); }
.footer-logo-text {
    display: flex; align-items: center; gap: 0; overflow: hidden;
}
.footer-logo-letter {
    display: inline-block;
    font-size: 1.8rem; font-weight: 700; letter-spacing: 0.15em;
    background: linear-gradient(180deg, var(--accent-light), var(--accent));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.footer-logo-space { width: 12px; }
.footer-logo-reveal.visible .footer-logo-letter { opacity: 1; transform: translateY(0); }
.footer-logo-reveal.visible .footer-logo-letter:nth-child(1) { transition-delay: 0.05s; }
.footer-logo-reveal.visible .footer-logo-letter:nth-child(2) { transition-delay: 0.1s; }
.footer-logo-reveal.visible .footer-logo-letter:nth-child(3) { transition-delay: 0.15s; }
.footer-logo-reveal.visible .footer-logo-letter:nth-child(4) { transition-delay: 0.2s; }
.footer-logo-reveal.visible .footer-logo-letter:nth-child(5) { transition-delay: 0.25s; }
.footer-logo-reveal.visible .footer-logo-letter:nth-child(6) { transition-delay: 0.3s; }
.footer-logo-reveal.visible .footer-logo-letter:nth-child(7) { transition-delay: 0.35s; }
.footer-logo-reveal.visible .footer-logo-space { transition-delay: 0.4s; }
.footer-logo-reveal.visible .footer-logo-letter:nth-child(9) { transition-delay: 0.45s; }
.footer-logo-reveal.visible .footer-logo-letter:nth-child(10) { transition-delay: 0.5s; }
.footer-logo-reveal.visible .footer-logo-letter:nth-child(11) { transition-delay: 0.55s; }
.footer-logo-reveal.visible .footer-logo-letter:nth-child(12) { transition-delay: 0.6s; }
.footer-logo-reveal.visible .footer-logo-letter:nth-child(13) { transition-delay: 0.65s; }
.footer-logo-reveal.visible .footer-logo-letter:nth-child(14) { transition-delay: 0.7s; }
.footer-brand p { font-size: 0.78rem; color: var(--text-tertiary); margin-top: 6px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 0.82rem; color: var(--text-tertiary); }
.footer-links a:hover { color: var(--accent); }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
    width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--glass-border); border-radius: 50%; color: var(--text-tertiary);
    transition: all 0.3s var(--ease);
}
.footer-socials a:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-glow); }
.footer-bottom { text-align: center; padding-top: 24px; border-top: 1px solid var(--glass-border); }
.footer-bottom span { font-size: 0.72rem; color: var(--text-tertiary); }

/* ===== VIDEO MODAL ===== */
.video-modal { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all 0.4s var(--ease); }
.video-modal.active { opacity: 1; visibility: visible; }
.video-modal-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.85); backdrop-filter: blur(20px); }
.video-modal-content { position: relative; width: 90%; max-width: 900px; aspect-ratio: 16/9; border-radius: var(--radius); overflow: hidden; }
.video-modal-close { position: absolute; top: -40px; right: 0; color: white; font-size: 2rem; z-index: 10; opacity: 0.7; transition: opacity 0.3s; }
.video-modal-close:hover { opacity: 1; }
.video-modal-iframe { width: 100%; height: 100%; }
.video-modal-iframe iframe { width: 100%; height: 100%; border: none; }

/* ===== ANIMATIONS ===== */
[data-animate] { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
[data-animate].visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
/* ===== RESPONSIVE — TABLET ===== */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .videos-grid { grid-template-columns: 1fr 1fr; }
}

/* ===== RESPONSIVE — MOBILE ===== */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-right .nav-cta { display: none; }
    .lang-toggle { font-size: 0.68rem; padding: 5px 10px; }
    .nav-burger { display: flex; }

    .section { padding: 48px 0; }
    .container { padding: 0 16px; }
    .section-header { margin-bottom: 28px; }
    .section-title { font-size: 1.4rem; }
    .section-desc { font-size: 0.82rem; }

    /* ---- HERO ---- */
    .hero { min-height: 100vh; align-items: flex-end; padding-bottom: 24px; }
    .hero-content { padding: 0 16px; width: 100%; max-width: 100%; box-sizing: border-box; }
    .hero-badge { font-size: 0.5rem; padding: 5px 12px; margin-bottom: 12px; }
    .hero-title { margin-bottom: 8px; }
    .hero-line { font-size: 1.8rem !important; line-height: 1.1; }
    .hero-line-accent { font-size: 2rem !important; line-height: 1.1; }
    .hero-desc { font-size: 0.75rem; margin-bottom: 16px; line-height: 1.5; }
    .hero-desc br { display: none; }
    .hero-actions { flex-direction: row; gap: 8px; justify-content: center; margin-bottom: 16px; }
    .hero-actions .btn { padding: 10px 18px; font-size: 0.75rem; }
    .hero-scroll { display: none; }

    /* Counters */
    .hero-counters { display: flex; gap: 4px; justify-content: center; width: 100%; }
    .hero-counter { flex: 1; min-width: 0; padding: 10px 2px 8px; border-radius: 8px; }
    .counter-num { font-size: 1.2rem; }
    .counter-plus { font-size: 0.7rem; }
    .hero-counter-label { font-size: 0.42rem; letter-spacing: 0; margin-top: 2px; line-height: 1.15; }
    .counter-glow { display: none; }

    /* Events — swipe */
    .events-grid {
        display: flex !important; gap: 10px; max-width: none !important;
        overflow-x: auto; -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory; scrollbar-width: none;
    }
    .events-grid::-webkit-scrollbar { display: none; }
    .event-card { min-width: 78vw !important; max-width: 82vw !important; flex-shrink: 0; scroll-snap-align: center; }
    .event-image { height: 150px; }
    .event-body { padding: 14px; }
    .event-day { font-size: 1.2rem; }
    .event-title { font-size: 0.9rem; }
    .event-tag { font-size: 0.58rem; padding: 2px 6px; }
    .btn-sm { font-size: 0.68rem; padding: 7px 12px; }

    /* Features */
    .features-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .feature-card { padding: 14px 10px; border-radius: 10px; }
    .feature-icon { width: 32px; height: 32px; margin-bottom: 8px; border-radius: 8px; }
    .feature-icon svg { width: 18px; height: 18px; }
    .feature-card h3 { font-size: 0.78rem; margin-bottom: 3px; }
    .feature-card p { font-size: 0.68rem; line-height: 1.35; }

    /* Videos */
    .videos-grid { grid-template-columns: 1fr; gap: 8px; }
    .video-item { aspect-ratio: 16/9; border-radius: 10px; }

    /* Gallery */
    .gallery-img { height: 110px; }

    /* Guests */
    .guests-grid { display: grid !important; grid-template-columns: 1fr 1fr; gap: 6px; overflow: visible !important; }
    .guest-card { min-width: 0 !important; padding: 8px 10px; border-radius: 8px; gap: 8px; }
    .guest-photo { width: 34px; height: 34px; }
    .guest-info h4 { font-size: 0.72rem; }
    .guest-company { font-size: 0.62rem; }
    .guest-info small { font-size: 0.52rem; }

    /* Partners */
    .partners-img { height: 36px; }

    /* Contact */
    .contact-layout { grid-template-columns: 1fr; gap: 20px; }
    .contact-info .section-title { text-align: center !important; font-size: 1.2rem; }
    .contact-info .section-tag { text-align: center; display: block; }
    .contact-desc { text-align: center; font-size: 0.78rem; }
    .contact-form { padding: 16px; border-radius: 12px; }
    .form-row { grid-template-columns: 1fr; }
    .form-group input, .form-group select { padding: 10px 12px; font-size: 0.8rem; }
    .form-radios { gap: 4px; flex-wrap: wrap; }
    .form-radio { font-size: 0.7rem; padding: 5px 8px; }

    /* Footer */
    .footer-top { flex-direction: column; gap: 14px; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; gap: 10px; }

    /* Perf */
    .grid-overlay { display: none; }
    .orb-1 { width: 200px; height: 200px; }
    .orb-2 { width: 150px; height: 150px; }
    .orb-3 { display: none; }
    .glass-card { backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
}

/* ===== SMALL PHONES ===== */
@media (max-width: 380px) {
    .hero-line { font-size: 1.5rem !important; }
    .hero-line-accent { font-size: 1.7rem !important; }
    .hero-desc { font-size: 0.7rem; }
    .hero-actions .btn { padding: 8px 14px; font-size: 0.7rem; }
    .counter-num { font-size: 1rem; }
    .hero-counter { padding: 8px 2px 6px; }
    .features-grid { grid-template-columns: 1fr; }
    .guests-grid { grid-template-columns: 1fr !important; }
}
