@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
    --primary: #2d8a4e;
    --primary-dark: #1a5c32;
    --primary-light: #4CAF50;
    --primary-glow: rgba(76, 175, 80, 0.3);
    --accent: #81C784;
    --accent-light: #A5D6A7;
    --bg-main: #f4f9f6;
    --bg-section: #eaf5ee;
    --bg-card: #ffffff;
    --bg-card-hover: #f0f7f2;
    --text-primary: #1a2e23;
    --text-secondary: #4a6355;
    --text-muted: #7a9e8a;
    --border: rgba(76, 175, 80, 0.18);
    --border-hover: rgba(76, 175, 80, 0.5);
    --shadow: 0 8px 32px rgba(45, 138, 78, 0.08);
    --shadow-glow: 0 0 40px rgba(76, 175, 80, 0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: 'Inter', sans-serif; background: var(--bg-main); color: var(--text-primary); line-height: 1.6; overflow-x: hidden; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-main); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.8); } to { opacity: 1; transform: scale(1); } }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes slideIn { from { transform: translateX(-100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes particleFloat { 0%, 100% { transform: translate(0, 0); opacity: 0.5; } 50% { transform: translate(10px, -30px); opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(80px); } to { opacity: 1; transform: translateY(0); } }
@keyframes countUp { from { opacity: 0; transform: scale(0.5); } to { opacity: 1; transform: scale(1); } }
@keyframes pulseBtn { 0%, 100% { box-shadow: 0 0 0 0 rgba(76,175,80,0.4); } 50% { box-shadow: 0 0 0 15px rgba(76,175,80,0); } }

.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }
.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }
.animate-delay-5 { transition-delay: 0.5s; }

/* ========== NAVBAR ========== */
.navbar { position: fixed; top: 0; width: 100%; z-index: 1000; padding: 1rem 2rem; transition: all 0.4s ease; background: transparent; }
.navbar.scrolled { background: rgba(255,255,255,0.92); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); padding: 0.7rem 2rem; box-shadow: var(--shadow); }
.nav-container { max-width: 1300px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--text-primary); }
.nav-logo-icon { width: 45px; height: 45px; background: var(--primary); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; font-weight: 800; color: white; }
.nav-logo-text { font-family: 'Space Grotesk', sans-serif; font-size: 1.3rem; font-weight: 700; letter-spacing: -0.5px; }
.nav-logo-text span { color: var(--primary-light); }
.nav-links { display: flex; list-style: none; gap: 2rem; align-items: center; }
.nav-links a { color: var(--text-secondary); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: all 0.3s ease; position: relative; padding: 0.5rem 0; }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--primary-light); transition: width 0.3s ease; }
.nav-links a:hover { color: var(--primary-light); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { background: var(--primary) !important; color: white !important; padding: 0.6rem 1.5rem !important; border-radius: 8px; font-weight: 600 !important; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 4px 20px var(--primary-glow); }
.nav-cta::after { display: none !important; }
.mobile-toggle { display: none; flex-direction: column; cursor: pointer; gap: 5px; padding: 5px; }
.mobile-toggle span { width: 25px; height: 2px; background: var(--text-primary); transition: all 0.3s ease; }
.mobile-nav { display: none; position: fixed; top: 0; left: 0; width: 280px; height: 100vh; background: var(--bg-card); z-index: 2000; padding: 2rem; box-shadow: var(--shadow); transform: translateX(-100%); transition: transform 0.3s ease; }
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-close { background: none; border: none; font-size: 1.5rem; color: var(--text-primary); cursor: pointer; margin-bottom: 2rem; }
.mobile-nav-links { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.mobile-nav-links a { color: var(--text-secondary); text-decoration: none; font-size: 1.1rem; font-weight: 500; transition: color 0.3s ease; }
.mobile-nav-links a:hover { color: var(--primary-light); }
.mobile-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 1999; }
.mobile-overlay.active { display: block; }

/* ========== HERO ========== */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; padding: 6rem 2rem 4rem; }
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-bg::before { content: ''; position: absolute; width: 600px; height: 600px; background: rgba(76, 175, 80, 0.06); border-radius: 50%; top: -200px; right: -200px; }
.hero-bg::after { content: ''; position: absolute; width: 500px; height: 500px; background: rgba(76, 175, 80, 0.04); border-radius: 50%; bottom: -150px; left: -150px; }
.hero-particles { position: absolute; inset: 0; overflow: hidden; }
.particle { position: absolute; width: 4px; height: 4px; background: var(--primary-light); border-radius: 50%; opacity: 0.3; animation: particleFloat 8s ease-in-out infinite; }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(76, 175, 80, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(76, 175, 80, 0.03) 1px, transparent 1px); background-size: 60px 60px; }
.hero-content { max-width: 1300px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 2; }
.hero-text { animation: fadeInLeft 1s ease-out; }
.hero-title { font-family: 'Space Grotesk', sans-serif; font-size: 4rem; font-weight: 800; line-height: 1.1; margin-bottom: 1.5rem; letter-spacing: -2px; }
.hero-title .highlight { color: var(--primary-light); }
.hero-subtitle { font-size: 1.15rem; color: var(--text-secondary); margin-bottom: 2rem; max-width: 500px; line-height: 1.8; }
.hero-slogan { font-family: 'Space Grotesk', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--primary-light); margin-bottom: 2rem; display: flex; align-items: center; gap: 10px; }
.hero-buttons { display: flex; gap: 1rem; margin-bottom: 3rem; flex-wrap: wrap; }
.btn { padding: 0.9rem 2rem; border-radius: 10px; font-weight: 600; font-size: 0.95rem; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: all 0.3s ease; cursor: pointer; border: none; font-family: 'Inter', sans-serif; }
.btn-primary { background: var(--primary); color: white; box-shadow: 0 4px 20px var(--primary-glow); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px var(--primary-glow); background: var(--primary-dark); }
.btn-outline { background: transparent; color: var(--primary-light); border: 2px solid var(--border-hover); }
.btn-outline:hover { background: rgba(76, 175, 80, 0.1); border-color: var(--primary-light); transform: translateY(-3px); }
.hero-visual { display: flex; justify-content: center; align-items: center; animation: fadeInRight 1s ease-out; }
.hero-card { background: rgba(255,255,255,0.9); backdrop-filter: blur(20px); border: 1px solid rgba(76,175,80,0.15); border-radius: 24px; padding: 2rem; width: 100%; max-width: 450px; box-shadow: var(--shadow); animation: float 6s ease-in-out infinite; }
.hero-card-candidates { display: flex; justify-content: center; gap: 1.5rem; margin-bottom: 1.5rem; }
.hero-candidates-slider { display: flex; justify-content: center; gap: 1.5rem; }
.hero-candidate-slide { display: flex; flex-direction: column; align-items: center; gap: 4px; text-align: center; }
.hero-slider-dots { display: none; }
.hero-candidate { text-align: center; }
.hero-candidate-img { width: 90px; height: 90px; border-radius: 50%; object-fit: cover; border: 3px solid var(--primary); display: block; margin: 0 auto 0.5rem; background: var(--bg-section); }
.hero-candidate-placeholder { display: flex; align-items: center; justify-content: center; background: var(--primary); color: white; font-size: 2rem; }
.hero-candidate-name { font-family: 'Space Grotesk', sans-serif; font-size: 0.95rem; font-weight: 700; }
.hero-candidate-position { color: var(--primary-light); font-weight: 500; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; }
.hero-card-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.hero-stat { background: rgba(76, 175, 80, 0.08); border: 1px solid var(--border); border-radius: 12px; padding: 1rem; text-align: center; transition: all 0.3s ease; }
.hero-stat:hover { border-color: var(--primary-light); background: rgba(76, 175, 80, 0.15); transform: translateY(-2px); }
.hero-stat-number { font-family: 'Space Grotesk', sans-serif; font-size: 1.8rem; font-weight: 700; color: var(--primary-light); }
.hero-stat-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* Hero counters */
.hero-counters { display: flex; gap: 1.5rem; margin-top: 1rem; flex-wrap: wrap; }
.hero-counter { display: flex; align-items: center; gap: 8px; background: rgba(76,175,80,0.08); border: 1px solid var(--border); border-radius: 50px; padding: 0.5rem 1rem; font-size: 0.85rem; color: var(--text-secondary); }
.hero-counter i { color: var(--primary-light); font-size: 1rem; }
.hero-counter strong { color: var(--primary-light); font-family: 'Space Grotesk', sans-serif; }

/* Support btn in hero */
.hero-support { display: flex; align-items: center; gap: 1rem; margin-top: 1.5rem; }
.thumb-btn-sm { width: 50px; height: 50px; border-radius: 50%; border: 2px solid var(--border); background: var(--bg-card); color: var(--primary-light); font-size: 1.3rem; cursor: pointer; transition: all 0.3s ease; display: flex; align-items: center; justify-content: center; }
.thumb-btn-sm:hover { border-color: var(--primary-light); background: rgba(76, 175, 80, 0.1); transform: scale(1.1); }
.thumb-btn-sm.voted { background: var(--primary); color: white; border-color: var(--primary); animation: pulseBtn 2s infinite; }
.support-text { font-size: 0.85rem; color: var(--text-muted); }
.support-text strong { color: var(--primary-light); font-family: 'Space Grotesk', sans-serif; font-size: 1.1rem; }

/* ========== STATS ========== */
.stats-section { padding: 5rem 2rem; background: var(--bg-section); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-grid { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.stat-card { text-align: center; padding: 2rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; transition: all 0.4s ease; }
.stat-card:hover { border-color: var(--primary-light); transform: translateY(-5px); box-shadow: var(--shadow-glow); }
.stat-icon { width: 60px; height: 60px; background: rgba(76, 175, 80, 0.1); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-size: 1.5rem; color: var(--primary-light); transition: all 0.3s ease; }
.stat-card:hover .stat-icon { background: var(--primary); color: white; transform: scale(1.1); }
.stat-number { font-family: 'Space Grotesk', sans-serif; font-size: 2.5rem; font-weight: 700; color: var(--primary-light); margin-bottom: 0.5rem; }
.stat-label { color: var(--text-muted); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }

/* ========== SECTIONS ========== */
.section { padding: 6rem 2rem; }
.section-dark { background: var(--bg-section); }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 4rem; }
.section-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(76, 175, 80, 0.1); border: 1px solid var(--border); padding: 0.4rem 1rem; border-radius: 50px; font-size: 0.8rem; color: var(--primary-light); margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 2px; }
.section-title { font-family: 'Space Grotesk', sans-serif; font-size: 2.8rem; font-weight: 800; margin-bottom: 1rem; letter-spacing: -1px; }
.section-subtitle { color: var(--text-secondary); font-size: 1.1rem; line-height: 1.8; }

/* ========== CANDIDATES ========== */
.candidates-grid { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.candidate-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px; padding: 2.5rem; text-align: center; transition: all 0.4s ease; position: relative; overflow: hidden; }
.candidate-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--primary); transform: scaleX(0); transition: transform 0.4s ease; }
.candidate-card:hover::before { transform: scaleX(1); }
.candidate-card:hover { border-color: var(--primary-light); transform: translateY(-8px); box-shadow: var(--shadow-glow); }
.candidate-avatar { width: 130px; height: 130px; border-radius: 50%; background: var(--primary); margin: 0 auto 1.5rem; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; color: white; }
.candidate-name { font-family: 'Space Grotesk', sans-serif; font-size: 1.4rem; font-weight: 700; margin-bottom: 0.5rem; }
.candidate-position { color: var(--primary-light); font-weight: 600; font-size: 0.9rem; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 2px; }
.candidate-bio { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.7; }

/* ========== MANIFESTO ========== */
.manifesto-grid { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.manifesto-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 2rem; transition: all 0.4s ease; position: relative; overflow: hidden; }
.manifesto-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 0; background: var(--primary-light); transition: height 0.4s ease; }
.manifesto-card:hover::before { height: 100%; }
.manifesto-card:hover { border-color: var(--primary-light); transform: translateY(-5px); box-shadow: var(--shadow-glow); }
.manifesto-icon { width: 50px; height: 50px; background: rgba(76, 175, 80, 0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--primary-light); margin-bottom: 1.2rem; transition: all 0.3s ease; }
.manifesto-card:hover .manifesto-icon { background: var(--primary); color: white; transform: scale(1.1) rotate(5deg); }
.manifesto-number { font-family: 'Space Grotesk', sans-serif; font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 0.5rem; }
.manifesto-title { font-family: 'Space Grotesk', sans-serif; font-size: 1.15rem; font-weight: 700; margin-bottom: 0.8rem; }
.manifesto-desc { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1rem; }
.manifesto-deliverable { background: rgba(76, 175, 80, 0.06); border: 1px solid var(--border); border-radius: 8px; padding: 0.8rem; font-size: 0.8rem; color: var(--text-muted); }
.manifesto-deliverable strong { color: var(--primary-light); display: block; margin-bottom: 4px; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; }

/* ========== TRACKER ========== */
.tracker-grid { max-width: 1000px; margin: 0 auto; display: flex; flex-direction: column; gap: 1.5rem; }
.tracker-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 1.5rem 2rem; transition: all 0.3s ease; }
.tracker-item:hover { border-color: var(--primary-light); box-shadow: var(--shadow-glow); }
.tracker-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.tracker-title { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 1rem; }
.tracker-status { padding: 0.3rem 0.8rem; border-radius: 20px; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.tracker-status.planned { background: rgba(76, 175, 80, 0.1); color: var(--accent); border: 1px solid rgba(76, 175, 80, 0.2); }
.tracker-status.in-progress { background: rgba(255, 193, 7, 0.1); color: #FFC107; border: 1px solid rgba(255, 193, 7, 0.2); }
.tracker-status.completed { background: rgba(76, 175, 80, 0.2); color: #81C784; border: 1px solid rgba(76, 175, 80, 0.3); }
.tracker-bar { height: 8px; background: rgba(76, 175, 80, 0.1); border-radius: 4px; overflow: hidden; }
.tracker-fill { height: 100%; background: var(--primary); border-radius: 4px; transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1); }
.tracker-percent { font-family: 'Space Grotesk', sans-serif; font-weight: 700; color: var(--primary-light); margin-top: 0.5rem; font-size: 0.9rem; }

/* ========== SUGGESTION ========== */
.suggestion-section { background: var(--bg-section); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.suggestion-container { max-width: 700px; margin: 0 auto; }
.suggestion-form { background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px; padding: 2.5rem; }
.form-group { margin-bottom: 1.5rem; }
.form-label { display: block; font-weight: 600; margin-bottom: 0.5rem; color: var(--text-primary); font-size: 0.9rem; }
.form-label .required { color: #ef5350; }
.form-input, .form-select, .form-textarea { width: 100%; padding: 0.9rem 1.2rem; background: rgba(76, 175, 80, 0.05); border: 1px solid var(--border); border-radius: 10px; color: var(--text-primary); font-family: 'Inter', sans-serif; font-size: 0.95rem; transition: all 0.3s ease; outline: none; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--primary-light); background: rgba(76, 175, 80, 0.08); box-shadow: 0 0 20px var(--primary-glow); }
.form-textarea { min-height: 150px; resize: vertical; }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234CAF50' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-select option { background: var(--bg-main); color: var(--text-primary); }
.form-hint { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.4rem; }
.form-success { background: rgba(76, 175, 80, 0.1); border: 1px solid var(--primary-light); border-radius: 12px; padding: 1.5rem; text-align: center; display: none; }
.form-success.show { display: block; animation: scaleIn 0.5s ease; }
.form-success i { font-size: 3rem; color: var(--primary-light); margin-bottom: 1rem; display: block; }

/* ========== FOOTER ========== */
.footer { padding: 4rem 2rem 2rem; background: var(--bg-main); border-top: 1px solid var(--border); }
.footer-content { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand { display: flex; flex-direction: column; gap: 1rem; }
.footer-logo { display: flex; align-items: center; gap: 12px; font-family: 'Space Grotesk', sans-serif; font-size: 1.3rem; font-weight: 700; }
.footer-logo-icon { width: 40px; height: 40px; background: var(--primary); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-weight: 800; color: white; }
.footer-desc { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; max-width: 400px; }
.footer-heading { font-family: 'Space Grotesk', sans-serif; font-weight: 700; margin-bottom: 1.2rem; font-size: 1rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 0.9rem; transition: all 0.3s ease; display: flex; align-items: center; gap: 8px; }
.footer-links a:hover { color: var(--primary-light); transform: translateX(5px); }
.footer-social { display: flex; gap: 0.8rem; margin-top: 1rem; }
.footer-social a { width: 40px; height: 40px; background: rgba(76, 175, 80, 0.1); border: 1px solid var(--border); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--text-secondary); text-decoration: none; transition: all 0.3s ease; }
.footer-social a:hover { background: var(--primary); color: white; border-color: var(--primary); transform: translateY(-3px); }
.footer-bottom { max-width: 1300px; margin: 0 auto; padding-top: 2rem; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { color: var(--text-muted); font-size: 0.85rem; }
.footer-slogan { font-family: 'Space Grotesk', sans-serif; color: var(--primary-light); font-weight: 600; font-size: 0.9rem; }

/* ========== BOTTOM NAV ========== */
.bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
    z-index: 1500;
    padding: 0.4rem 0;
    padding-bottom: calc(0.4rem + env(safe-area-inset-bottom));
    justify-content: space-around;
    align-items: center;
}
.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.6rem;
    padding: 0.35rem 0.6rem;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 50px;
    -webkit-tap-highlight-color: transparent;
}
.bottom-nav-item i { font-size: 1.15rem; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.bottom-nav-item.active { color: var(--primary); background: rgba(76, 175, 80, 0.12); font-weight: 600; }
.bottom-nav-item.active i { transform: scale(1.2) translateY(-2px); color: var(--primary); }
.bottom-nav-item:active { transform: scale(0.9); }

/* ========== TOAST ========== */
.toast { position: fixed; bottom: 5rem; right: 1rem; background: var(--bg-card); border: 1px solid var(--primary-light); border-radius: 12px; padding: 0.8rem 1.2rem; display: flex; align-items: center; gap: 8px; box-shadow: var(--shadow); transform: translateY(100px); opacity: 0; transition: all 0.4s ease; z-index: 3000; font-size: 0.85rem; }
.toast.show { transform: translateY(0); opacity: 1; }
.toast i { color: var(--primary-light); font-size: 1.1rem; }

/* ============================================================
   MOBILE APP MODE - 100vh sections with snap scrolling
   ============================================================ */
@media (max-width: 768px) {
    /* Hide entire top nav on mobile */
    .navbar { display: none !important; }
    .bottom-nav { display: flex; }
    .hero-scroll { display: none; }
    .hero-card { animation: none; }
    .hero { padding: 3rem 1.5rem 5rem; min-height: 100vh; min-height: 100dvh; }

    html {
        scroll-snap-type: y proximity;
        overflow-y: scroll;
        -webkit-overflow-scrolling: touch;
    }

    .page-section {
        scroll-snap-align: start;
        min-height: 100vh;
        min-height: 100dvh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
        overflow-y: auto;
        overflow-x: hidden;
        padding-bottom: 4rem;
    }

    .page-section .section-header { margin-bottom: 1.5rem; }

    /* Hero mobile */
    .hero { scroll-snap-align: start; padding-top: 1.5rem; overflow-y: auto; }
    .hero-content { grid-template-columns: 1fr; gap: 1rem; text-align: center; }
    .hero-text { animation: slideUp 0.6s ease-out both; display: flex; flex-direction: column; align-items: center; }
    .hero-title { order: 1; font-size: 2rem; letter-spacing: -1px; margin-bottom: 0.8rem; }
    .hero-visual { order: 2; animation: slideUp 0.8s ease-out both; display: flex; justify-content: center; }
    .hero-subtext { order: 3; }
    .hero-subtitle { margin: 0 auto 1rem; font-size: 0.9rem; max-width: 100%; }
    .hero-slogan { justify-content: center; font-size: 1rem; margin-bottom: 1rem; }
    .hero-buttons { justify-content: center; flex-direction: column; align-items: center; gap: 0.6rem; }
    .hero-buttons .btn { width: 100%; max-width: 260px; justify-content: center; padding: 0.75rem 1.2rem; font-size: 0.85rem; }
    .hero-card { max-width: 280px; padding: 1.2rem; }
    .hero-card-candidates { margin-bottom: 1rem; position: relative; overflow: hidden; min-height: 130px; }
    .hero-candidates-slider { position: relative; width: 100%; }
    .hero-candidate-slide { display: none; flex-direction: column; align-items: center; gap: 4px; animation: fadeIn 0.4s ease; }
    .hero-candidate-slide.active { display: flex; }
    @keyframes fadeIn { from { opacity: 0; transform: translateX(15px); } to { opacity: 1; transform: translateX(0); } }
    .hero-slider-dots { display: flex; justify-content: center; gap: 6px; margin-top: 0.6rem; }
    .hero-slider-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); cursor: pointer; transition: all 0.3s ease; }
    .hero-slider-dot.active { background: var(--primary-light); transform: scale(1.3); }
    .hero-candidate-img { width: 65px; height: 65px; font-size: 1.5rem; }
    .hero-candidate-name { font-size: 0.8rem; }
    .hero-candidate-position { font-size: 0.6rem; }
    .hero-card-stats { gap: 0.5rem; }
    .hero-stat { padding: 0.5rem; border-radius: 8px; }
    .hero-stat-number { font-size: 1.1rem; }
    .hero-stat-label { font-size: 0.6rem; }
    .hero-support { justify-content: center; margin-top: 0.8rem; }
    .thumb-btn-sm { width: 42px; height: 42px; font-size: 1.1rem; }
    .support-text { font-size: 0.8rem; }
    .support-text strong { font-size: 1rem; }
    .hero-counters { gap: 0.5rem; justify-content: center; margin-top: 0.6rem; }
    .hero-counter { padding: 0.25rem 0.6rem; font-size: 0.7rem; }

    /* Section mobile */
    .page-section { padding: 1.5rem 1.5rem 5rem; }
    .section-title { font-size: 1.5rem; }
    .section-subtitle { font-size: 0.85rem; }
    .section-header { margin-bottom: 1.2rem; }
    .section-badge { font-size: 0.65rem; padding: 0.3rem 0.8rem; }

    /* Stats mobile */
    .stats-section { padding: 1.5rem 1.5rem 4rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
    .stat-card { padding: 0.8rem; }
    .stat-icon { width: 36px; height: 36px; font-size: 1rem; margin-bottom: 0.4rem; border-radius: 8px; }
    .stat-number { font-size: 1.4rem; }
    .stat-label { font-size: 0.65rem; }

    /* Candidates mobile */
    .candidates-grid { grid-template-columns: 1fr; gap: 1rem; }
    .candidate-card { padding: 1.5rem; }
    .candidate-avatar { width: 80px; height: 80px; font-size: 2rem; margin-bottom: 1rem; }
    .candidate-name { font-size: 1.1rem; }
    .candidate-bio { font-size: 0.85rem; }

    /* Manifesto mobile */
    .manifesto-grid { grid-template-columns: 1fr; gap: 0.8rem; }
    .manifesto-card { padding: 1.2rem; }
    .manifesto-icon { width: 40px; height: 40px; font-size: 1.1rem; margin-bottom: 0.8rem; border-radius: 10px; }
    .manifesto-title { font-size: 1rem; }
    .manifesto-desc { font-size: 0.85rem; }

    /* Tracker mobile */
    .tracker-grid { gap: 0.8rem; }
    .tracker-item { padding: 1rem; }
    .tracker-header { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
    .tracker-title { font-size: 0.85rem; }
    .tracker-status { font-size: 0.65rem; }

    /* Suggestion mobile */
    .suggestion-form { padding: 1.5rem; }

    /* Footer mobile */
    .footer { padding: 3rem 1.5rem 6rem; }
    .footer-content { grid-template-columns: 1fr; text-align: center; gap: 1.5rem; }
    .footer-desc { margin: 0 auto; }
    .footer-social { justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 0.8rem; }
}
