:root{
  --accent:#0a4d8c;
  --accent-2:#083d6e;
  --accent-light:#cfe2f3;
  --accent-hover:#0b66a3;
  --bg:#fafbfc;
  --surface:#f4f6f8;
  --card:#ffffff;
  --text:#0f1419;
  --text-light:#536471;
  --muted:#8899a6;
  --border:#e1e8ed;
  --success:#00ba34;
  --warning:#ffad1f;
  --radius:20px;
  --shadow-sm:0 2px 4px rgba(0,0,0,0.04);
  --shadow:0 8px 16px rgba(0,0,0,0.08);
  --shadow-lg:0 24px 48px rgba(0,0,0,0.12);
  --transition:all 0.4s cubic-bezier(0.4,0,0.2,1);
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;scroll-padding-top:80px}
body{
  min-height:100vh;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,"Helvetica Neue",Arial;
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}

/* Navigation */
.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(255,255,255,0.92);
  backdrop-filter:blur(16px) saturate(180%);
  border-bottom:1px solid var(--border);
  box-shadow:0 2px 8px rgba(0,0,0,0.04);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:1.25rem 2rem;
  max-width:1280px;
  margin:0 auto;
}
.brand{
  font-weight:900;
  font-size:1.375rem;
  background:linear-gradient(135deg,var(--accent),var(--accent-2));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  letter-spacing:-0.02em;
}
.nav-links{
  display:flex;
  gap:2.5rem;
  list-style:none;
}
.nav-links a{
  color:var(--text-light);
  font-weight:600;
  font-size:0.95rem;
  transition:color 0.2s;
  text-decoration:none;
  position:relative;
}
.nav-links a::after{
  content:'';
  position:absolute;
  bottom:-4px;
  left:0;
  width:0;
  height:2px;
  background:var(--accent);
  transition:width 0.3s;
}
.nav-links a:hover{color:var(--accent)}
.nav-links a:hover::after{width:100%}
.nav-toggle{display:none;background:transparent;border:0;font-size:1.5rem;color:var(--text);cursor:pointer}

/* Hero Section */
.hero{
  position:relative;
  background:linear-gradient(150deg,#e8f4f8 0%,#f0f5fa 50%,#fafbfc 100%);
  padding:6rem 2rem 5rem;
  overflow:hidden;
}
.hero::before{
  content:'';
  position:absolute;
  top:-20%;
  right:-10%;
  width:800px;
  height:800px;
  background:radial-gradient(circle,rgba(10,77,140,0.08),transparent 60%);
  border-radius:50%;
  animation:float 20s ease-in-out infinite;
}
.hero::after{
  content:'';
  position:absolute;
  bottom:-30%;
  left:-15%;
  width:700px;
  height:700px;
  background:radial-gradient(circle,rgba(10,77,140,0.05),transparent 65%);
  border-radius:50%;
  animation:float 25s ease-in-out infinite reverse;
}
@keyframes float{
  0%,100%{transform:translate(0,0) rotate(0deg)}
  33%{transform:translate(30px,-30px) rotate(5deg)}
  66%{transform:translate(-20px,20px) rotate(-3deg)}
}
.hero-inner{
  max-width:1280px;
  margin:0 auto;
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:5rem;
  align-items:center;
}
.hero-content h1{
  font-size:4rem;
  font-weight:900;
  line-height:1.05;
  margin-bottom:1.25rem;
  color:var(--text);
  letter-spacing:-0.03em;
}
.hero-content h1 .highlight{
  background:linear-gradient(135deg,var(--accent),var(--accent-2));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}
.hero-content .slogan{
  font-size:1.5rem;
  color:var(--text-light);
  margin-bottom:2.5rem;
  font-weight:500;
  line-height:1.4;
}
.hero-ctas{display:flex;gap:1rem;margin-bottom:2.5rem;flex-wrap:wrap}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:1rem 2rem;
  border-radius:14px;
  font-weight:700;
  font-size:1.0625rem;
  border:none;
  cursor:pointer;
  transition:var(--transition);
  text-decoration:none;
  position:relative;
  overflow:hidden;
}
.btn::before{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(45deg,transparent,rgba(255,255,255,0.3),transparent);
  transform:translateX(-100%);
  transition:transform 0.6s;
}
.btn:hover::before{transform:translateX(100%)}
.btn:hover{transform:translateY(-3px) scale(1.02)}
.btn:active{transform:translateY(-1px) scale(0.98)}
.btn.primary{
  background:linear-gradient(135deg,var(--accent),var(--accent-2));
  color:white;
  box-shadow:0 12px 28px rgba(10,77,140,0.25);
}
.btn.primary:hover{
  box-shadow:0 16px 36px rgba(10,77,140,0.35);
  background:linear-gradient(135deg,var(--accent-hover),var(--accent));
}
.btn.secondary{
  background:white;
  color:var(--accent);
  border:2px solid var(--accent);
  box-shadow:var(--shadow-sm);
}
.btn.secondary:hover{
  background:var(--accent-light);
  border-color:var(--accent-hover);
}

.stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:2rem;
  padding:2.5rem;
  background:white;
  border-radius:20px;
  box-shadow:var(--shadow-lg);
  border:1px solid var(--border);
  position:relative;
  overflow:hidden;
}
.stats::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:4px;
  background:linear-gradient(90deg,var(--accent),var(--accent-2),var(--accent));
  background-size:200% 100%;
  animation:shimmer 3s ease-in-out infinite;
}
@keyframes shimmer{
  0%,100%{background-position:0% 50%}
  50%{background-position:100% 50%}
}
.stat{
  text-align:center;
  position:relative;
}
.stat::after{
  content:'';
  position:absolute;
  right:-1rem;
  top:50%;
  transform:translateY(-50%);
  width:1px;
  height:60%;
  background:var(--border);
}
.stat:last-child::after{display:none}
.stat-number{
  display:block;
  font-size:3rem;
  font-weight:900;
  background:linear-gradient(135deg,var(--accent),var(--accent-2));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  line-height:1;
  letter-spacing:-0.02em;
}
.stat-label{
  display:block;
  font-size:0.875rem;
  color:var(--muted);
  margin-top:0.625rem;
  text-transform:uppercase;
  letter-spacing:0.08em;
  font-weight:600;
}

.hero-visual{
  position:relative;
}
.hero-card{
  background:white;
  padding:2.5rem;
  border-radius:28px;
  box-shadow:var(--shadow-lg);
  border:1px solid var(--border);
  position:relative;
  transition:var(--transition);
}
.hero-card:hover{
  transform:translateY(-8px);
  box-shadow:0 32px 64px rgba(0,0,0,0.15);
}
.hero-card::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:6px;
  background:linear-gradient(90deg,var(--accent),var(--accent-2));
  border-radius:28px 28px 0 0;
}
.hero-card h3{
  font-size:1.75rem;
  margin-bottom:1rem;
  color:var(--accent);
  font-weight:800;
}
.hero-card p{
  color:var(--text-light);
  line-height:1.75;
  font-size:1.0625rem;
}
.avatar {
  width: 100%;  border-radius: 20px;
  background: linear-gradient(135deg, #e0eef7, #cfe2f3);
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 1.375rem;
  font-weight: 700;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  overflow: hidden;
}

.avatar img {
  width: 100%;
  height: auto; 
  display: block; 
  object-fit: cover;
  object-position: center;
}
/* Main Content */
main{
  max-width:1280px;
  margin:0 auto;
  padding:5rem 2rem;
}
.section{
  margin-bottom:6rem;
}
.section-header{
  text-align:center;
  margin-bottom:4rem;
}
.section-header h2{
  font-size:3rem;
  font-weight:900;
  margin-bottom:1rem;
  color:var(--text);
  letter-spacing:-0.02em;
  position:relative;
  display:inline-block;
}
.section-header h2::after{
  content:'';
  position:absolute;
  bottom:-12px;
  left:50%;
  transform:translateX(-50%);
  width:80px;
  height:4px;
  background:linear-gradient(90deg,var(--accent),var(--accent-2));
  border-radius:2px;
}
.section-header p{
  font-size:1.1875rem;
  color:var(--text-light);
  max-width:650px;
  margin:1.5rem auto 0;
  line-height:1.7;
}

/* Issues Grid */
.issues-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:2rem;
}
.issue{
  background:white;
  padding:2.5rem;
  border-radius:24px;
  border:2px solid var(--border);
  transition:var(--transition);
  position:relative;
  overflow:hidden;
  cursor:pointer;
}
.issue::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  width:5px;
  height:0;
  background:linear-gradient(180deg,var(--accent),var(--accent-2));
  transition:height 0.4s cubic-bezier(0.4,0,0.2,1);
}
.issue::after{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(135deg,rgba(10,77,140,0.02),transparent);
  opacity:0;
  transition:opacity 0.4s;
}
.issue:hover{
  border-color:var(--accent);
  box-shadow:var(--shadow-lg);
  transform:translateY(-8px);
}
.issue:hover::before{height:100%}
.issue:hover::after{opacity:1}
.issue-icon{
  width:64px;
  height:64px;
  background:linear-gradient(135deg,var(--accent-light),rgba(10,77,140,0.1));
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:1.5rem;
  font-size:2rem;
  position:relative;
  z-index:1;
  transition:var(--transition);
}
.issue:hover .issue-icon{
  transform:scale(1.1) rotate(5deg);
}
.issue h3{
  font-size:1.375rem;
  margin-bottom:1rem;
  color:var(--text);
  font-weight:800;
  position:relative;
  z-index:1;
}
.issue p{
  color:var(--text-light);
  font-size:1rem;
  line-height:1.7;
  position:relative;
  z-index:1;
}

/* Events */
.events-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:2rem;
}
.event{
  background:white;
  padding:2rem;
  border-radius:24px;
  border:2px solid var(--border);
  transition:var(--transition);
  position:relative;
  overflow:hidden;
}
.event::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:4px;
  background:linear-gradient(90deg,var(--accent),var(--accent-2));
  transform:scaleX(0);
  transform-origin:left;
  transition:transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.event:hover::before{transform:scaleX(1)}
.event:hover{
  box-shadow:var(--shadow-lg);
  transform:translateY(-6px);
  border-color:var(--accent);
}
.event time{
  display:inline-block;
  color:white;
  background:linear-gradient(135deg,var(--accent),var(--accent-2));
  font-weight:700;
  font-size:0.8125rem;
  margin-bottom:1rem;
  text-transform:uppercase;
  letter-spacing:0.08em;
  padding:0.5rem 1rem;
  border-radius:8px;
  box-shadow:0 4px 12px rgba(10,77,140,0.2);
}
.event h4{
  font-size:1.25rem;
  margin-bottom:0.75rem;
  color:var(--text);
  font-weight:800;
}
.event p{
  color:var(--text-light);
  font-size:1rem;
  margin-bottom:1.25rem;
  line-height:1.6;
}
.event a{
  color:var(--accent);
  font-weight:700;
  text-decoration:none;
  font-size:0.9375rem;
  display:inline-flex;
  align-items:center;
  gap:0.375rem;
  transition:gap 0.3s;
}
.event a:hover{
  gap:0.625rem;
  color:var(--accent-hover);
}
.event a::after{
  content:'→';
  font-size:1.125rem;
}

/* Projects Section */
.projects-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:2rem;
}
.project{
  background:white;
  border-radius:24px;
  border:2px solid var(--border);
  transition:var(--transition);
  position:relative;
  overflow:hidden;
}
.project::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:0px;
  background:linear-gradient(90deg,var(--accent),var(--accent-2));
  transform:scaleX(0);
  transform-origin:left;
  transition:transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.project:hover::before{
  transform:scaleX(1);
}
.project:hover{
  box-shadow:var(--shadow-lg);
  transform:translateY(-8px);
  border-color:var(--accent);
}
.project-image{
  width:100%;
  height:200px;
  background:linear-gradient(135deg,var(--accent-light),rgba(10,77,140,0.1));
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  overflow:hidden;
}
.project-placeholder{
  font-size:4rem;
  filter:drop-shadow(0 4px 8px rgba(0,0,0,0.1));
  transition:var(--transition);
}
.project:hover .project-placeholder{
  transform:scale(1.2) rotate(5deg);
}
.project-content{
  padding:2rem;
}
.project-content h3{
  font-size:1.375rem;
  margin-bottom:1rem;
  color:var(--text);
  font-weight:800;
}
.project-content p{
  color:var(--text-light);
  font-size:1rem;
  line-height:1.7;
  margin-bottom:1.5rem;
}
.project-tags{
  display:flex;
  flex-wrap:wrap;
  gap:0.5rem;
}
.tag{
  display:inline-block;
  padding:0.375rem 0.875rem;
  background:var(--accent-light);
  color:var(--accent);
  border-radius:8px;
  font-size:0.8125rem;
  font-weight:700;
  transition:var(--transition);
}
.project:hover .tag{
  background:var(--accent);
  color:white;
  transform:translateY(-2px);
}

/* About Section */
.about-content{
  background:white;
  padding:3.5rem;
  border-radius:28px;
  box-shadow:var(--shadow);
  border:1px solid var(--border);
  position:relative;
  overflow:hidden;
}
.about-content::before{
  content:'';
  position:absolute;
  top:-50%;
  right:-20%;
  width:400px;
  height:400px;
  background:radial-gradient(circle,rgba(10,77,140,0.04),transparent 70%);
  border-radius:50%;
}
.about-content p{
  font-size:1.125rem;
  line-height:1.85;
  color:var(--text-light);
  margin-bottom:1.75rem;
  position:relative;
  z-index:1;
}
.about-content p:last-child{margin-bottom:0}
.about-content p:first-letter{
  font-size:3rem;
  font-weight:900;
  color:var(--accent);
  float:left;
  line-height:1;
  margin-right:0.5rem;
}

/* Endorsements */
.endorsements{
  list-style:none;
  display:grid;
  gap:1.5rem;
}
.endorsements li{
  background:white;
  padding:2rem 2rem 2rem 2.5rem;
  border-radius:20px;
  border-left:5px solid var(--accent);
  box-shadow:var(--shadow);
  font-size:1.0625rem;
  color:var(--text-light);
  transition:var(--transition);
  position:relative;
}
.endorsements li::before{
  content:'"';
  position:absolute;
  top:1rem;
  left:1rem;
  font-size:4rem;
  color:var(--accent-light);
  font-family:Georgia,serif;
  line-height:1;
}
.endorsements li:hover{
  box-shadow:var(--shadow-lg);
  transform:translateX(8px);
  border-left-width:8px;
}
.endorsements li strong{
  color:var(--accent);
  font-weight:800;
}

/* How to Vote Section - Enhanced */
.vote-info-banner{
  background:linear-gradient(135deg,var(--accent),var(--accent-2));
  padding:2.5rem;
  border-radius:24px;
  display:flex;
  align-items:center;
  gap:2rem;
  margin-bottom:3rem;
  box-shadow:var(--shadow-lg);
  position:relative;
  overflow:hidden;
}
.vote-info-banner::before{
  content:'';
  position:absolute;
  top:-50%;
  right:-20%;
  width:400px;
  height:400px;
  background:radial-gradient(circle,rgba(255,255,255,0.15),transparent 70%);
  border-radius:50%;
  animation:pulse 3s ease-in-out infinite;
}
@keyframes pulse{
  0%,100%{transform:scale(1)}
  50%{transform:scale(1.1)}
}
.vote-info-icon{
  font-size:4rem;
  filter:drop-shadow(0 4px 8px rgba(0,0,0,0.2));
  animation:bounce 2s ease-in-out infinite;
}
@keyframes bounce{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-10px)}
}
.vote-info-text{
  flex:1;
  position:relative;
  z-index:1;
}
.vote-info-text h3{
  color:white;
  font-size:1.75rem;
  margin-bottom:0.5rem;
  font-weight:800;
}
.vote-info-text p{
  color:rgba(255,255,255,0.95);
  font-size:1.25rem;
  margin:0.25rem 0;
  font-weight:600;
}
.vote-location{
  font-size:1.0625rem!important;
  opacity:0.9;
  font-weight:500!important;
}
.vote-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:2rem;
  margin-bottom:3rem;
}
.vote-step{
  background:white;
  padding:2rem;
  border-radius:24px;
  border:2px solid var(--border);
  transition:var(--transition);
  position:relative;
  display:flex;
  gap:1.5rem;
  align-items:flex-start;
}
.vote-step:hover{
  border-color:var(--accent);
  box-shadow:var(--shadow-lg);
  transform:translateY(-8px);
}
.vote-step::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:0px;
  background:linear-gradient(90deg,var(--accent),var(--accent-2));
  transform:scaleX(0);
  transform-origin:left;
  transition:transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.vote-step:hover::before{
  transform:scaleX(1);
}
.vote-step-number{
  width:56px;
  height:56px;
  min-width:56px;
  background:linear-gradient(135deg,var(--accent),var(--accent-2));
  color:white;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.75rem;
  font-weight:900;
  box-shadow:0 8px 20px rgba(10,77,140,0.25);
  transition:var(--transition);
}
.vote-step:hover .vote-step-number{
  transform:scale(1.1) rotate(5deg);
  box-shadow:0 12px 28px rgba(10,77,140,0.35);
}
.vote-step-content h3{
  font-size:1.25rem;
  margin-bottom:0.75rem;
  color:var(--text);
  font-weight:800;
}
.vote-step-content p{
  color:var(--text-light);
  line-height:1.7;
  font-size:1rem;
}
.vote-step-content p strong{
  color:var(--accent);
  font-weight:700;
}
.vote-cta{
  background:linear-gradient(135deg,#1a5490,var(--accent));
  padding:4rem 3rem;
  border-radius:32px;
  text-align:center;
  position:relative;
  overflow:hidden;
  box-shadow:var(--shadow-lg);
  margin-bottom:3rem;
}
.vote-cta::before{
  content:'';
  position:absolute;
  top:-50%;
  right:-30%;
  width:600px;
  height:600px;
  background:radial-gradient(circle,rgba(255,255,255,0.12),transparent 70%);
  border-radius:50%;
}
.vote-cta::after{
  content:'';
  position:absolute;
  bottom:-40%;
  left:-20%;
  width:500px;
  height:500px;
  background:radial-gradient(circle,rgba(255,255,255,0.08),transparent 70%);
  border-radius:50%;
}
.vote-cta-icon{
  position:relative;
  z-index:1;
  color:rgba(255, 209, 56, 0.9);
  margin-bottom:1.5rem;
  display:inline-block;
  animation:rotate 20s linear infinite;
}
@keyframes rotate{
  from{transform:rotate(0deg)}
  to{transform:rotate(360deg)}
}
.vote-cta-content{
  position:relative;
  z-index:1;
}
.vote-cta h3{
  font-size:2.5rem;
  color:white;
  margin-bottom:1rem;
  font-weight:900;
  letter-spacing:-0.02em;
}
.vote-cta p{
  font-size:1.25rem;
  color:rgba(255,255,255,0.95);
  margin-bottom:2.5rem;
  max-width:650px;
  margin-left:auto;
  margin-right:auto;
  line-height:1.7;
}
.vote-cta-buttons{
  display:flex;
  gap:1rem;
  justify-content:center;
  flex-wrap:wrap;
}
.btn-white{
  background:white!important;
  color:var(--accent)!important;
  border:none!important;
}
.btn-white:hover{
  background:var(--accent-light)!important;
  transform:translateY(-3px) scale(1.05)!important;
}
.btn-outline{
  background:transparent!important;
  color:white!important;
  border:2px solid white!important;
}
.btn-outline:hover{
  background:rgba(255,255,255,0.1)!important;
  transform:translateY(-3px) scale(1.05)!important;
}
.vote-faq{
  background:white;
  padding:3rem;
  border-radius:28px;
  box-shadow:var(--shadow);
  border:1px solid var(--border);
}
.vote-faq h3{
  font-size:2rem;
  text-align:center;
  margin-bottom:2.5rem;
  color:var(--text);
  font-weight:900;
  position:relative;
  display:inline-block;
  width:100%;
}
.vote-faq h3::after{
  content:'';
  position:absolute;
  bottom:-12px;
  left:50%;
  transform:translateX(-50%);
  width:80px;
  height:4px;
  background:linear-gradient(90deg,var(--accent),var(--accent-2));
  border-radius:2px;
}
.faq-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:2rem;
  margin-top:2rem;
  align-items:stretch;
}
.faq-item{
  padding:1.75rem;
  border-radius:16px;
  background:linear-gradient(135deg,rgba(10,77,140,0.03),transparent);
  border:2px solid var(--border);
  transition:var(--transition);
  display:flex;
  flex-direction:column;
  height:100%;
}
.faq-item:hover{
  border-color:var(--accent);
  box-shadow:var(--shadow);
  transform:translateY(-4px);
}
.faq-item h4{
  font-size:1.125rem;
  color:var(--accent);
  margin-bottom:0.75rem;
  font-weight:800;
}
.faq-item p{
  color:var(--text-light);
  line-height:1.7;
  font-size:0.9375rem;
}

/* Form */
.volunteer-section{
  background:linear-gradient(135deg,#e8f4f8,#f0f5fa);
  padding:5rem 3rem;
  border-radius:32px;
  margin-top:5rem;
  position:relative;
  overflow:hidden;
  box-shadow:var(--shadow-lg);
}
.volunteer-section::before{
  content:'';
  position:absolute;
  top:-30%;
  right:-20%;
  width:600px;
  height:600px;
  background:radial-gradient(circle,rgba(10,77,140,0.08),transparent 70%);
  border-radius:50%;
}
.volunteer-section h2{
  text-align:center;
  font-size:3rem;
  margin-bottom:1rem;
  color:var(--text);
  font-weight:900;
  letter-spacing:-0.02em;
  position:relative;
  z-index:1;
}
.volunteer-section > p{
  text-align:center;
  font-size:1.1875rem;
  color:var(--text-light);
  margin-bottom:3rem;
  max-width:650px;
  margin-left:auto;
  margin-right:auto;
  line-height:1.7;
  position:relative;
  z-index:1;
}
.form{
  max-width:540px;
  margin:0 auto;
  background:white;
  padding:3rem;
  border-radius:24px;
  box-shadow:var(--shadow-lg);
  border:1px solid var(--border);
  position:relative;
  z-index:1;
}
.form-row{
  margin-bottom:1.5rem;
}
.form-row label{
  display:block;
  font-weight:700;
  margin-bottom:0.625rem;
  color:var(--text);
  font-size:0.9375rem;
}
.form-row input,
.form-row select{
  width:100%;
  padding:1rem 1.25rem;
  border:2px solid var(--border);
  border-radius:12px;
  font-size:1rem;
  transition:all 0.3s;
  background:white;
  color:var(--text);
  font-family:inherit;
}
.form-row input:focus,
.form-row select:focus{
  outline:none;
  border-color:var(--accent);
  box-shadow:0 0 0 4px var(--accent-light);
}
.form-row input:hover,
.form-row select:hover{
  border-color:var(--accent-hover);
}
.form-actions{
  display:flex;
  flex-direction:column;
  gap:1.25rem;
  margin-top:2rem;
}
.form-actions button{
  width:100%;
}
.form-msg{
  text-align:center;
  color:var(--text-light);
  font-size:0.9375rem;
  font-weight:600;
}

/* Footer */
.footer{
  background:linear-gradient(180deg,var(--text),#000);
  padding:4rem 2rem;
  margin-top:6rem;
  position:relative;
  overflow:hidden;
}
.footer::before{
  content:'';
  position:absolute;
  top:-100px;
  left:-100px;
  width:300px;
  height:300px;
  background:radial-gradient(circle,rgba(10,77,140,0.2),transparent 70%);
  border-radius:50%;
}
.footer-inner{
  max-width:1280px;
  margin:0 auto;
  text-align:center;
  position:relative;
  z-index:1;
}
.telegram-link{
  display:inline-flex;
  align-items:center;
  gap:1rem;
  padding:1.25rem 2.5rem;
  background:white;
  color:var(--text);
  border-radius:16px;
  text-decoration:none;
  font-weight:800;
  font-size:1.0625rem;
  transition:var(--transition);
  box-shadow:0 12px 28px rgba(0,0,0,0.3);
}
.telegram-link:hover{
  transform:translateY(-4px) scale(1.05);
  box-shadow:0 16px 36px rgba(0,0,0,0.4);
}
.telegram-link svg{
  width:28px;
  height:28px;
  color:var(--accent);
}

/* Animations */
@keyframes fadeInUp{
  from{
    opacity:0;
    transform:translateY(40px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}
.reveal{
  animation:fadeInUp 0.8s ease-out forwards;
}

/* Responsive */
@media (max-width:980px){
  .hero-inner{
    grid-template-columns:1fr;
    gap:3.5rem;
  }
  .hero-content h1{font-size:3rem}
  .hero-content .slogan{font-size:1.25rem}
  .stats{grid-template-columns:repeat(3,1fr);gap:1.5rem;padding:2rem}
  .stat::after{display:none}
  .issues-grid{grid-template-columns:1fr}
  .events-grid{grid-template-columns:1fr}
  .projects-grid{grid-template-columns:1fr}
}

@media (max-width:640px){
  .nav{padding:1rem 1.25rem}
  .nav-links{display:none}
  .nav-toggle{display:block}
  .hero{padding:4rem 1.25rem 3rem}
  .hero-content h1{font-size:2.25rem}
  .hero-content .slogan{font-size:1.0625rem}
  .hero-ctas{flex-direction:column;width:100%}
  .btn{width:100%;justify-content:center}
  .stats{grid-template-columns:1fr;padding:1.75rem;gap:1.5rem}
  .section-header h2{font-size:2.25rem}
  .section-header p{font-size:1.0625rem}
  .volunteer-section{padding:3rem 1.5rem}
  .form{padding:2rem 1.5rem}
  main{padding:3.5rem 1.25rem}
  .about-content{padding:2rem}
}