:root {
    --primary: #0284c7;
    --primary-light: #0ea5e9;
    --primary-dark: #0369a1;
    --accent: #22d3ee;
    --text: #0f172a;
    --text-light: #475569;
    --bg: #f0f9ff;
    --bg-dark: #e0f2fe;
    --white: #ffffff;
    --border: #bae6fd;
    --shadow: 0 4px 20px rgba(2, 132, 199, 0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; line-height: 1.6; color: var(--text); background: var(--bg); }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.nav128 { position: fixed; top: 0; left: 0; right: 0; background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%); z-index: 1000; box-shadow: 0 4px 15px rgba(2, 132, 199, 0.3); }
.nav-container128 { max-width: 1200px; margin: 0 auto; padding: 0 20px; height: 70px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo128 { display: flex; align-items: center; gap: 10px; font-size: 20px; font-weight: 700; color: var(--white); }
.nav-logo128 svg { width: 32px; height: 32px; color: var(--accent); }
.nav-menu128 { display: flex; gap: 35px; }
.nav-menu128 a { font-size: 15px; color: rgba(255, 255, 255, 0.9); font-weight: 500; transition: all 0.3s; }
.nav-menu128 a:hover, .nav-menu128 a.active { color: var(--white); text-shadow: 0 0 10px rgba(255, 255, 255, 0.5); }
.nav-btn128 { padding: 10px 24px; background: var(--accent); color: var(--primary-dark) !important; border-radius: 8px; font-weight: 600; transition: all 0.3s; }
.nav-btn128:hover { background: var(--white); transform: translateY(-2px); }
.mobile-toggle128 { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 5px; }
.mobile-toggle128 span { width: 25px; height: 3px; background: var(--white); border-radius: 3px; transition: all 0.3s; }

.hero128 { padding: 140px 20px 80px; background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg) 100%); text-align: center; position: relative; overflow: hidden; }
.hero128::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 30h60M30 0v60' stroke='%230284c7' stroke-width='0.5' fill='none' opacity='0.1'/%3E%3C/svg%3E"); animation: moveBackground 20s linear infinite; }
@keyframes moveBackground { 0% { transform: translate(0, 0); } 100% { transform: translate(60px, 60px); } }
.hero-container128 { max-width: 900px; margin: 0 auto; position: relative; }
.hero128 h1 { font-size: 48px; color: var(--primary-dark); margin-bottom: 20px; line-height: 1.2; }
.hero128 h1 span { color: var(--primary); }
.hero128 p { font-size: 20px; color: var(--text-light); margin-bottom: 40px; }
.hero-buttons128 { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn128 { padding: 14px 32px; border-radius: 8px; font-size: 16px; font-weight: 600; cursor: pointer; transition: all 0.3s; border: none; }
.btn-primary128 { background: var(--primary); color: var(--white); }
.btn-primary128:hover { background: var(--primary-dark); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(2, 132, 199, 0.3); }
.btn-secondary128 { background: var(--white); color: var(--primary); border: 2px solid var(--primary); }
.btn-secondary128:hover { background: var(--primary); color: var(--white); }

.map-section128 { padding: 60px 20px; background: var(--white); position: relative; }
.map-container128 { max-width: 1000px; margin: 0 auto; text-align: center; }
.map-visual128 { background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg) 100%); border-radius: 20px; padding: 40px; position: relative; min-height: 300px; display: flex; align-items: center; justify-content: center; border: 2px solid var(--border); }
.map-route128 { position: absolute; width: 80%; height: 4px; background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 50%, var(--accent) 100%); border-radius: 2px; animation: pulseLine 2s ease-in-out infinite; }
@keyframes pulseLine { 0%, 100% { opacity: 0.6; transform: scaleX(1); } 50% { opacity: 1; transform: scaleX(1.02); } }
.map-point128 { width: 20px; height: 20px; background: var(--primary); border-radius: 50%; position: absolute; animation: pulseDot 1.5s ease-in-out infinite; }
.map-point128.start { top: 50%; left: 10%; }
.map-point128.end { top: 50%; right: 10%; background: var(--accent); }
@keyframes pulseDot { 0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(2, 132, 199, 0.4); } 50% { transform: scale(1.2); box-shadow: 0 0 0 10px rgba(2, 132, 199, 0); } }

.stats128 { padding: 60px 20px; background: var(--white); }
.stats-container128 { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.stat-item128 { text-align: center; padding: 30px 20px; background: var(--bg); border-radius: 16px; border: 2px solid var(--border); transition: all 0.3s; }
.stat-item128:hover { border-color: var(--primary); transform: translateY(-5px); }
.stat-icon128 { width: 50px; height: 50px; background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 15px; }
.stat-icon128 svg { width: 24px; height: 24px; color: var(--white); }
.stat-number128 { font-size: 36px; font-weight: 800; color: var(--primary); margin-bottom: 8px; }
.stat-label128 { font-size: 14px; color: var(--text-light); }

.module128 { padding: 80px 20px; }
.module-container128 { max-width: 1200px; margin: 0 auto; }
.module-header128 { text-align: center; margin-bottom: 50px; }
.module-header128 h2 { font-size: 36px; color: var(--text); margin-bottom: 15px; }
.module-header128 p { font-size: 18px; color: var(--text-light); }

.features-grid128 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.feature-card128 { background: var(--white); padding: 35px 30px; border-radius: 16px; box-shadow: var(--shadow); transition: all 0.3s; border: 1px solid var(--border); }
.feature-card128:hover { transform: translateY(-8px); box-shadow: 0 8px 30px rgba(2, 132, 199, 0.2); }
.feature-icon128 { width: 60px; height: 60px; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.feature-icon128 svg { width: 30px; height: 30px; color: var(--white); }
.feature-card128 h3 { font-size: 20px; color: var(--text); margin-bottom: 12px; }
.feature-card128 p { font-size: 15px; color: var(--text-light); line-height: 1.7; }

.process-grid128 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.process-card128 { background: var(--white); padding: 35px 25px; border-radius: 16px; text-align: center; box-shadow: var(--shadow); transition: all 0.3s; border: 1px solid var(--border); }
.process-card128:hover { transform: translateY(-5px); }
.process-icon128 { width: 70px; height: 70px; background: var(--bg-dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 28px; font-weight: 800; color: var(--primary); border: 3px solid var(--border); }
.process-card128 h3 { font-size: 18px; color: var(--text); margin-bottom: 10px; }
.process-card128 p { font-size: 14px; color: var(--text-light); }

.contact-grid128 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.contact-card128 { background: var(--white); padding: 40px 30px; border-radius: 16px; text-align: center; box-shadow: var(--shadow); transition: all 0.3s; border: 1px solid var(--border); }
.contact-card128:hover { transform: translateY(-5px); }
.contact-icon128 { width: 70px; height: 70px; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.contact-icon128 svg { width: 32px; height: 32px; color: var(--white); }
.contact-card128 h3 { font-size: 20px; color: var(--text); margin-bottom: 10px; }
.contact-card128 p { font-size: 16px; color: var(--primary); font-weight: 600; }

.footer128 { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%); color: var(--white); padding: 60px 20px 30px; }
.footer-container128 { max-width: 1200px; margin: 0 auto; }
.footer-main128 { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; margin-bottom: 40px; }
.footer-brand128 h3 { font-size: 24px; margin-bottom: 15px; color: var(--white); }
.footer-brand128 p { color: rgba(255, 255, 255, 0.8); font-size: 15px; }
.footer-links128 h4 { font-size: 16px; margin-bottom: 20px; color: var(--white); }
.footer-links128 ul li { margin-bottom: 12px; }
.footer-links128 a { color: rgba(255, 255, 255, 0.8); font-size: 14px; transition: color 0.3s; }
.footer-links128 a:hover { color: var(--accent); }
.footer-bottom128 { border-top: 1px solid rgba(255, 255, 255, 0.2); padding-top: 25px; text-align: center; color: rgba(255, 255, 255, 0.6); font-size: 14px; }

@media (max-width: 1024px) { .features-grid128 { grid-template-columns: repeat(2, 1fr); } .process-grid128 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .nav-menu128 { position: fixed; top: 70px; left: 0; right: 0; background: var(--primary-dark); flex-direction: column; padding: 20px; gap: 15px; transform: translateY(-150%); transition: transform 0.3s; } .nav-menu128.active { transform: translateY(0); } .mobile-toggle128 { display: flex; } .hero128 h1 { font-size: 32px; } .stats-container128 { grid-template-columns: repeat(2, 1fr); } .features-grid128, .process-grid128, .contact-grid128 { grid-template-columns: 1fr; } .footer-main128 { grid-template-columns: 1fr; gap: 30px; } }
