.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.sticky-nav { position: fixed; top: 20px; left: 50%; transform: translateX(-50%); z-index: 100; }
.nav-container { display: flex; gap: 8px; padding: 10px; border-radius: 100px; }
.nav-chip { text-decoration: none; color: var(--primary-color); font-weight: 600; padding: 10px 20px; border-radius: 100px; transition: 0.3s; display: flex; align-items: center; gap: 8px; font-size: 0.95rem; }
.nav-chip:hover, .nav-chip.active { background: rgba(16, 185, 129, 0.1); color: var(--accent-color); }

.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 16px; }
.section-header p { color: var(--secondary-color); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

.hero-section { min-height: 100vh; display: flex; align-items: center; padding: 120px 0; }
.hero-container { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
.hero-text-content h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 24px; color: var(--primary-color); }
.hero-text-content p { font-size: 1.1rem; color: var(--secondary-color); margin-bottom: 32px; }
.trust-indicators { display: flex; gap: 20px; flex-wrap: wrap; }
.trust-item { font-weight: 700; font-size: 0.95rem; display: flex; align-items: center; gap: 8px; }
.trust-item i { color: var(--accent-color); }

.form-card { padding: 40px; width: 100%; }

.step { display: none; }
.step.active { display: block; animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.buttons { display: flex; justify-content: space-between; margin-top: 32px; }
.single-btn { justify-content: flex-end; }

.map-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; align-items: center; }
.hub-wrapper { padding: 40px; overflow: visible; }
.ticker-wrapper { width: 100%; overflow: hidden; padding: 16px 0; border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); }
.ticker-track { display: flex; width: max-content; animation: scrollTicker 30s linear infinite; }
.ticker-item { display: inline-flex; align-items: center; gap: 12px; font-weight: 700; color: var(--primary-color); padding: 0 40px; font-size: 1.1rem; white-space: nowrap; }
.ticker-item i { color: var(--accent-color); font-size: 1.4rem; }
@keyframes scrollTicker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

@media (max-width: 992px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-text-content h1 { font-size: 2.8rem; }
    .trust-indicators { justify-content: center; }
    .map-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .sticky-nav { width: 90%; }
    .nav-chip { padding: 8px 12px; font-size: 0.85rem; }
    .form-card { padding: 24px; }
}
