/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #18181b;
    background: #fafafa;
    line-height: 1.6;
    overflow-x: hidden;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== ADMIN PANEL ===== */
.admin-panel { position: fixed; inset: 0; z-index: 10001; display: none; align-items: center; justify-content: center; }
.admin-panel.active { display: flex; }
.admin-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.7); backdrop-filter: blur(5px); }
.admin-content { position: relative; background: #fff; border-radius: 20px; padding: 0; width: 90%; max-width: 480px; box-shadow: 0 25px 80px rgba(0,0,0,0.3); animation: modalIn 0.3s ease; overflow: hidden; }
.admin-header { display: flex; align-items: center; justify-content: space-between; padding: 24px 28px; background: linear-gradient(135deg, #312e81, #4338ca); color: #fff; }
.admin-header h2 { font-size: 1.2rem; font-weight: 600; }
.admin-close { background: none; border: none; color: #fff; font-size: 1.3rem; cursor: pointer; width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.admin-close:hover { background: rgba(255,255,255,0.15); }
#admin-login, #admin-dashboard { padding: 28px; }
.admin-status { display: flex; align-items: center; gap: 10px; padding: 14px 18px; border-radius: 12px; margin-bottom: 24px; font-weight: 600; font-size: 0.95rem; }
.admin-status.inactive { background: #fef2f2; color: #dc2626; }
.admin-status.active { background: #f0fdf4; color: #16a34a; }
.status-dot { width: 10px; height: 10px; border-radius: 50%; }
.admin-status.inactive .status-dot { background: #dc2626; }
.admin-status.active .status-dot { background: #16a34a; animation: pulseDot 2s infinite; }
@keyframes pulseDot { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.admin-buttons { display: flex; gap: 12px; margin-bottom: 20px; }
.admin-buttons .btn { flex: 1; justify-content: center; padding: 12px 16px; font-size: 0.9rem; }
.btn-reject { background: linear-gradient(135deg, #ef4444, #dc2626); color: #fff; }
.btn-reject:hover { transform: translateY(-2px); box-shadow: 0 4px 15px rgba(239,68,68,0.3); }
.admin-info { background: #f8fafc; border-radius: 12px; padding: 16px; }
.admin-info p { color: #64748b; font-size: 0.85rem; line-height: 1.6; margin-bottom: 8px; }
.admin-info p:last-child { margin-bottom: 0; }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0;
    background: linear-gradient(135deg, #312e81 0%, #4338ca 100%);
    color: #fff; z-index: 9999;
    padding: 20px 0; transform: translateY(0);
    transition: transform 0.4s ease, opacity 0.4s ease;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}
.cookie-banner.hidden { transform: translateY(100%); opacity: 0; pointer-events: none; }
.cookie-content { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; justify-content: space-between; }
.cookie-text { flex: 1; min-width: 280px; }
.cookie-text p:first-child { font-size: 1.1rem; margin-bottom: 6px; }
.cookie-text p:last-child { color: #c7d2fe; font-size: 0.9rem; line-height: 1.5; }
.cookie-buttons { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-btn { padding: 10px 20px; border-radius: 8px; border: none; font-size: 0.9rem; font-weight: 600; cursor: pointer; transition: all 0.2s; font-family: inherit; }
.cookie-btn:hover { transform: translateY(-2px); }
.cookie-accept { background: linear-gradient(135deg, #6366f1, #4f46e5); color: #fff; }
.cookie-reject { background: rgba(255,255,255,0.1); color: #fff; border: 1px solid rgba(255,255,255,0.2); }
.cookie-config { background: transparent; color: #c7d2fe; border: 1px solid rgba(255,255,255,0.15); }

/* Cookie Modal */
.cookie-modal { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 10000; display: none; align-items: center; justify-content: center; padding: 20px; }
.cookie-modal.active { display: flex; }
.cookie-modal-content { background: #fff; border-radius: 16px; padding: 32px; max-width: 520px; width: 100%; box-shadow: 0 25px 50px rgba(0,0,0,0.15); animation: modalIn 0.3s ease; }
@keyframes modalIn { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }
.cookie-modal-content h2 { font-size: 1.4rem; margin-bottom: 8px; color: #18181b; }
.cookie-modal-content > p { color: #71717a; margin-bottom: 20px; }
.cookie-option { display: flex; align-items: center; justify-content: space-between; padding: 16px; background: #fafafa; border-radius: 12px; margin-bottom: 12px; }
.cookie-option > div { flex: 1; }
.cookie-option strong { display: block; color: #18181b; margin-bottom: 4px; }
.cookie-option p { color: #71717a; font-size: 0.85rem; }
.toggle { position: relative; width: 48px; height: 26px; }
.toggle input { opacity: 0; width: 0; height: 0; }
.toggle-slider { position: absolute; inset: 0; background: #e4e4e7; border-radius: 26px; cursor: pointer; transition: 0.3s; }
.toggle-slider::after { content: ''; position: absolute; width: 20px; height: 20px; left: 3px; top: 3px; background: #fff; border-radius: 50%; transition: 0.3s; box-shadow: 0 2px 4px rgba(0,0,0,0.1); }
.toggle input:checked + .toggle-slider { background: #6366f1; }
.toggle input:checked + .toggle-slider::after { transform: translateX(22px); }
.toggle input:disabled + .toggle-slider { opacity: 0.6; cursor: not-allowed; }
.cookie-modal-buttons { display: flex; gap: 10px; justify-content: flex-end; margin-top: 20px; }

/* ===== NAVIGATION ===== */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 16px 0; transition: all 0.3s ease; }
.navbar.scrolled { background: rgba(255,255,255,0.95); backdrop-filter: blur(20px); box-shadow: 0 1px 3px rgba(0,0,0,0.05); }
.navbar.scrolled .logo-text, .navbar.scrolled .nav-links a { color: #18181b; }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; cursor: pointer; }
.logo-icon { font-size: 1.8rem; }
.logo-text { font-family: 'Space Grotesk', sans-serif; font-size: 1.4rem; font-weight: 700; color: #fff; transition: color 0.3s; }
.nav-links { display: flex; list-style: none; gap: 32px; }
.nav-links a { color: rgba(255,255,255,0.85); text-decoration: none; font-weight: 500; font-size: 0.95rem; transition: color 0.2s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: #6366f1; transition: width 0.3s; }
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }
.mobile-menu-btn { display: none; background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; }
.navbar.scrolled .mobile-menu-btn { color: #18181b; }

/* ===== HERO ===== */
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; background: linear-gradient(135deg, #1e1b4b 0%, #312e81 30%, #6366f1 60%, #06b6d4 100%); }
.hero-bg { position: absolute; inset: 0; }
.hero-gradient { position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 50%, rgba(99,102,241,0.3) 0%, transparent 60%), radial-gradient(ellipse at 70% 80%, rgba(6,182,212,0.2) 0%, transparent 50%); }
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 800px; padding: 0 24px; color: #fff; }
.hero-badge { display: inline-block; background: rgba(255,255,255,0.15); backdrop-filter: blur(10px); padding: 8px 20px; border-radius: 50px; font-size: 0.85rem; font-weight: 500; margin-bottom: 24px; border: 1px solid rgba(255,255,255,0.2); }
.hero-title { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 700; line-height: 1.1; margin-bottom: 20px; }
.hero-title .highlight { background: linear-gradient(135deg, #22d3ee, #06b6d4); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-subtitle { font-size: clamp(1rem, 2.5vw, 1.25rem); color: rgba(255,255,255,0.85); max-width: 600px; margin: 0 auto 40px; line-height: 1.7; }
.hero-stats { display: flex; justify-content: center; gap: 40px; margin-bottom: 40px; flex-wrap: wrap; }
.stat { text-align: center; }
.stat-number { display: block; font-size: 2rem; font-weight: 700; color: #22d3ee; }
.stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.7); }
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: 12px; font-weight: 600; font-size: 1rem; text-decoration: none; transition: all 0.3s; cursor: pointer; border: none; font-family: inherit; }
.btn-primary { background: linear-gradient(135deg, #6366f1, #4f46e5); color: #fff; box-shadow: 0 4px 15px rgba(99,102,241,0.3); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(99,102,241,0.4); }
.btn-secondary { background: rgba(255,255,255,0.15); color: #fff; border: 1px solid rgba(255,255,255,0.3); backdrop-filter: blur(10px); }
.btn-secondary:hover { background: rgba(255,255,255,0.25); transform: translateY(-3px); }
.btn-full { width: 100%; justify-content: center; }
.hero-scroll { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); text-align: center; color: rgba(255,255,255,0.6); font-size: 0.8rem; }
.hero-scroll span { display: block; margin-bottom: 8px; }
.scroll-line { width: 1px; height: 40px; background: rgba(255,255,255,0.3); margin: 0 auto; animation: scrollPulse 2s infinite; }
@keyframes scrollPulse { 0%, 100% { opacity: 0.3; transform: scaleY(0.5); } 50% { opacity: 1; transform: scaleY(1); } }

/* ===== SECTIONS COMMON ===== */
section { padding: 100px 0; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.section-header.light { color: #fff; }
.section-tag { display: inline-block; background: linear-gradient(135deg, #6366f1, #4f46e5); color: #fff; padding: 6px 18px; border-radius: 50px; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.section-title { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: #18181b; margin-bottom: 16px; line-height: 1.2; }
.section-header.light .section-title { color: #fff; }
.section-title .highlight { background: linear-gradient(135deg, #6366f1, #4f46e5); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.section-desc { color: #71717a; font-size: 1.1rem; line-height: 1.7; }
.section-header.light .section-desc { color: rgba(255,255,255,0.8); }

/* ===== ABOUT ===== */
.about { background: #fff; }
.about-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.about-card { background: #fafafa; border-radius: 20px; padding: 40px 30px; text-align: center; transition: all 0.3s; border: 1px solid #e4e4e7; }
.about-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); border-color: #6366f1; }
.about-icon { font-size: 3rem; margin-bottom: 20px; }
.about-card h3 { font-size: 1.2rem; font-weight: 700; color: #18181b; margin-bottom: 12px; }
.about-card p { color: #71717a; font-size: 0.95rem; line-height: 1.6; }

/* ===== TYPES ===== */
.types { background: linear-gradient(180deg, #fafafa 0%, #fff 100%); }
.types-content { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.type-card { background: #fff; border-radius: 20px; overflow: hidden; border: 1px solid #e4e4e7; transition: all 0.3s; }
.type-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.type-card.featured { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; }
.type-image { height: 220px; overflow: hidden; }
.type-card.featured .type-image { height: 100%; }
.type-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.type-img-emoji { font-size: 5rem; opacity: 0.8; }
.type-info { padding: 30px; }
.type-tag { display: inline-block; background: #e0e7ff; color: #4338ca; padding: 4px 12px; border-radius: 50px; font-size: 0.75rem; font-weight: 600; margin-bottom: 12px; }
.type-info h3 { font-size: 1.4rem; font-weight: 700; color: #18181b; margin-bottom: 12px; }
.type-info p { color: #71717a; font-size: 0.95rem; line-height: 1.7; margin-bottom: 16px; }
.type-info p strong { color: #6366f1; }
.type-facts { display: flex; flex-wrap: wrap; gap: 10px; }
.fact { background: #f4f4f5; padding: 8px 14px; border-radius: 8px; font-size: 0.85rem; color: #52525b; }
.fact span { margin-right: 4px; }

/* ===== TRANSPORT ===== */
.transport { background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #4338ca 100%); position: relative; overflow: hidden; }
.transport::before { content: ''; position: absolute; top: -200px; right: -200px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(99,102,241,0.1) 0%, transparent 70%); }
.transport-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.transport-visual { position: relative; height: 500px; display: flex; align-items: center; justify-content: center; }
.transport-orb { position: relative; width: 200px; height: 200px; }
.transport-core { position: absolute; inset: 0; border-radius: 50%; background: radial-gradient(circle at 30% 30%, #818cf8, #6366f1, #4f46e5); box-shadow: 0 0 60px rgba(99,102,241,0.5), 0 0 120px rgba(99,102,241,0.2); animation: orbPulse 4s ease-in-out infinite; }
@keyframes orbPulse { 0%, 100% { transform: scale(1); box-shadow: 0 0 60px rgba(99,102,241,0.5); } 50% { transform: scale(1.05); box-shadow: 0 0 80px rgba(99,102,241,0.7); } }
.transport-rays { position: absolute; inset: -40px; }
.transport-rays span { position: absolute; top: 50%; left: 50%; width: 4px; height: 30px; background: linear-gradient(to bottom, rgba(129,140,248,0.6), transparent); border-radius: 2px; transform-origin: center; }
.transport-rays span:nth-child(1) { transform: translate(-50%, -50%) rotate(0deg) translateY(-130px); }
.transport-rays span:nth-child(2) { transform: translate(-50%, -50%) rotate(45deg) translateY(-130px); }
.transport-rays span:nth-child(3) { transform: translate(-50%, -50%) rotate(90deg) translateY(-130px); }
.transport-rays span:nth-child(4) { transform: translate(-50%, -50%) rotate(135deg) translateY(-130px); }
.transport-rays span:nth-child(5) { transform: translate(-50%, -50%) rotate(180deg) translateY(-130px); }
.transport-rays span:nth-child(6) { transform: translate(-50%, -50%) rotate(225deg) translateY(-130px); }
.transport-rays span:nth-child(7) { transform: translate(-50%, -50%) rotate(270deg) translateY(-130px); }
.transport-rays span:nth-child(8) { transform: translate(-50%, -50%) rotate(315deg) translateY(-130px); }
.transport-data-ring { position: absolute; inset: 0; }
.ring-data { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(var(--angle)) translateX(160px) rotate(calc(-1 * var(--angle))); text-align: center; }
.ring-data span { display: block; font-size: 1.2rem; font-weight: 700; color: #a5b4fc; }
.ring-data label { font-size: 0.75rem; color: rgba(255,255,255,0.6); }
.transport-info { display: flex; flex-direction: column; gap: 20px; }
.transport-fact-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 24px; backdrop-filter: blur(10px); transition: all 0.3s; }
.transport-fact-card:hover { background: rgba(255,255,255,0.08); transform: translateX(8px); }
.transport-fact-icon { font-size: 2rem; margin-bottom: 12px; }
.transport-fact-card h3 { color: #fff; font-size: 1.1rem; margin-bottom: 8px; }
.transport-fact-card p { color: rgba(255,255,255,0.7); font-size: 0.9rem; line-height: 1.6; }
.transport-fact-card p strong { color: #a5b4fc; }

/* ===== LOGISTICS ===== */
.logistics { background: #fff; }
.logistics-timeline { position: relative; max-width: 800px; margin: 0 auto; }
.timeline-line { position: absolute; left: 50%; top: 0; bottom: 0; width: 3px; background: linear-gradient(to bottom, #6366f1, #06b6d4); transform: translateX(-50%); }
.timeline-item { display: flex; align-items: center; margin-bottom: 60px; position: relative; }
.timeline-item:nth-child(odd) { flex-direction: row-reverse; }
.timeline-item:nth-child(odd) .timeline-content { text-align: right; padding-right: 60px; padding-left: 0; }
.timeline-item:nth-child(even) .timeline-content { padding-left: 60px; }
.timeline-dot { width: 50px; height: 50px; border-radius: 50%; background: linear-gradient(135deg, #6366f1, #4f46e5); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.2rem; position: absolute; left: 50%; transform: translateX(-50%); z-index: 2; box-shadow: 0 4px 15px rgba(99,102,241,0.3); }
.timeline-content { flex: 1; padding: 0 60px; }
.timeline-content h3 { font-size: 1.3rem; color: #18181b; margin-bottom: 8px; }
.timeline-content p { color: #71717a; font-size: 0.95rem; line-height: 1.6; margin-bottom: 12px; }
.timeline-stat { display: inline-block; background: linear-gradient(135deg, #6366f1, #4f46e5); color: #fff; padding: 6px 16px; border-radius: 50px; font-size: 0.85rem; font-weight: 600; }

/* ===== DATA SECTION ===== */
.data-section { background: linear-gradient(180deg, #fafafa 0%, #fff 100%); }
.data-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.data-card { background: #fff; border-radius: 20px; padding: 40px 30px; text-align: center; border: 1px solid #e4e4e7; transition: all 0.3s; }
.data-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.06); }
.data-icon { font-size: 3rem; margin-bottom: 16px; }
.data-number { font-size: 3rem; font-weight: 800; background: linear-gradient(135deg, #6366f1, #4f46e5); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.data-suffix { font-size: 1.2rem; font-weight: 600; color: #6366f1; }
.data-label { color: #71717a; font-size: 0.9rem; margin-top: 8px; margin-bottom: 16px; }
.data-bar { width: 100%; height: 6px; background: #e4e4e7; border-radius: 3px; overflow: hidden; }
.data-bar-fill { height: 100%; background: linear-gradient(90deg, #6366f1, #06b6d4); border-radius: 3px; transition: width 1.5s ease; }

/* ===== CONTACT ===== */
.contact { background: #fff; }
.contact-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon { width: 50px; height: 50px; border-radius: 12px; background: linear-gradient(135deg, #6366f1, #4f46e5); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.contact-item h4 { font-size: 1rem; color: #18181b; margin-bottom: 4px; }
.contact-item p { color: #71717a; font-size: 0.95rem; }
.contact-disclaimer { background: #fef3c7; border: 1px solid #fbbf24; border-radius: 12px; padding: 20px; margin-top: 20px; }
.contact-disclaimer p { color: #92400e; font-size: 0.9rem; line-height: 1.6; }
.contact-form-wrapper { background: #fafafa; border-radius: 20px; padding: 40px; border: 1px solid #e4e4e7; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.9rem; font-weight: 600; color: #18181b; margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 1px solid #e4e4e7; border-radius: 10px; font-size: 0.95rem; font-family: inherit; background: #fff; transition: all 0.2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: #6366f1; box-shadow: 0 0 0 3px rgba(99,102,241,0.1); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-privacy { margin-bottom: 20px; }
.checkbox-label { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; font-size: 0.85rem; color: #71717a; line-height: 1.5; }
.checkbox-label input { display: none; }
.checkmark { width: 20px; height: 20px; border: 2px solid #d4d4d8; border-radius: 4px; flex-shrink: 0; margin-top: 2px; position: relative; transition: all 0.2s; }
.checkbox-label input:checked + .checkmark { background: #6366f1; border-color: #6366f1; }
.checkbox-label input:checked + .checkmark::after { content: '✓'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: #fff; font-size: 0.75rem; font-weight: bold; }
.checkbox-label a { color: #6366f1; text-decoration: none; }
.checkbox-label a:hover { text-decoration: underline; }

/* ===== FOOTER ===== */
.footer { background: linear-gradient(135deg, #1e1b4b, #312e81); color: #fff; padding: 80px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 60px; }
.footer-brand .logo { margin-bottom: 20px; }
.footer-brand .logo-text { color: #fff; }
.footer-brand p { color: #c7d2fe; font-size: 0.9rem; line-height: 1.6; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: #fff; text-decoration: none; font-size: 1rem; transition: all 0.2s; }
.footer-social a:hover { background: #6366f1; transform: translateY(-3px); }
.footer-links h4 { font-size: 1rem; font-weight: 600; margin-bottom: 20px; color: #fff; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #c7d2fe; text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: #6366f1; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; text-align: center; }
.footer-bottom p { color: #a1a1aa; font-size: 0.85rem; }
.footer-disclaimer { color: #c7d2fe !important; margin-top: 8px; font-style: italic; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.animate-in { animation: fadeInUp 0.6s ease forwards; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: repeat(2, 1fr); }
    .data-grid { grid-template-columns: repeat(2, 1fr); }
    .transport-grid { grid-template-columns: 1fr; }
    .transport-visual { height: 400px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .nav-links { display: none; position: absolute; top: 70px; left: 0; right: 0; background: rgba(255,255,255,0.98); flex-direction: column; padding: 20px; gap: 16px; box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
    .nav-links.active { display: flex; }
    .nav-links a { color: #18181b !important; }
    .mobile-menu-btn { display: block; }
    .navbar.scrolled .nav-links { background: #fff; }
    .hero-stats { gap: 20px; }
    .about-grid { grid-template-columns: 1fr; }
    .types-content { grid-template-columns: 1fr; }
    .type-card.featured { grid-template-columns: 1fr; }
    .type-card.featured .type-image { height: 220px; }
    .timeline-item, .timeline-item:nth-child(odd) { flex-direction: column; text-align: center; }
    .timeline-item:nth-child(odd) .timeline-content, .timeline-item:nth-child(even) .timeline-content { text-align: center; padding: 0; margin-top: 30px; }
    .timeline-dot { position: relative; left: auto; transform: none; }
    .timeline-line { left: 50%; }
    .data-grid { grid-template-columns: 1fr; }
    .contact-content { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-social { justify-content: center; }
    .transport-data-ring { display: none; }
    .cookie-content { flex-direction: column; text-align: center; }
    .admin-buttons { flex-direction: column; }
}
@media (max-width: 480px) {
    section { padding: 60px 0; }
    .hero-title { font-size: 2rem; }
    .contact-form-wrapper { padding: 24px; }
    .admin-content { width: 95%; }
}
