:root {
  --bg: #f5f8fc;
  --surface: #ffffff;
  --surface-2: #eef4fb;
  --text: #16202a;
  --muted: #5f6e7d;
  --primary: #0f62fe;
  --primary-dark: #0846bd;
  --accent: #15a34a;
  --accent-dark: #12803b;
  --whatsapp: #25d366;
  --border: #d8e2ee;
  --shadow: 0 20px 60px rgba(15, 35, 60, 0.08);
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1160px, calc(100% - 32px)); margin: 0 auto; }

.topbar {
  background: #0d1721;
  color: #fff;
  font-size: 14px;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
}
.topbar a { color: #fff; font-weight: 700; }

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 248, 252, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(216, 226, 238, 0.8);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 20px;
}
.logo {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.logo span { color: var(--primary); }
nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
nav a { color: var(--muted); font-weight: 600; }
nav a:hover { color: var(--text); }
.menu-toggle,
.mobile-menu { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  box-shadow: var(--shadow);
  transition: .25s ease;
  border: 1px solid transparent;
}
.btn:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
  box-shadow: none;
}
.btn-outline:hover { background: rgba(15, 98, 254, 0.08); }
.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
}
.btn-whatsapp:hover { background: #1eb85a; }
.btn-sm { padding: 11px 18px; }
.btn-lg { padding: 16px 26px; }
.btn-full { width: 100%; }

.hero {
  padding: 72px 0 48px;
  background:
    radial-gradient(circle at top left, rgba(15, 98, 254, 0.12), transparent 38%),
    linear-gradient(180deg, #f8fbff 0%, #f5f8fc 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(21, 163, 74, 0.12);
  color: var(--accent);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .08em;
}
.hero h1,
.section-heading h2,
.cta-strip h2 { line-height: 1.1; letter-spacing: -0.04em; }
.hero h1 { font-size: clamp(36px, 5vw, 62px); margin: 0 0 16px; }
.lead { font-size: 18px; color: var(--muted); margin: 0 0 26px; }
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.badges span {
  padding: 10px 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-weight: 600;
  color: var(--muted);
}
.hero-card .info-card,
.feature-card,
.step-card,
.cta-panel,
.stat-box,
.faq-list details,
.district-card,
.service-card,
.content-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.info-card,
.cta-panel,
.content-card { padding: 30px; }
.info-card h2 { margin-top: 0; font-size: 28px; }
.info-card p,
.cta-panel p,
.content-card p { color: var(--muted); }
.info-card ul {
  padding-left: 18px;
  margin: 18px 0 24px;
  color: var(--muted);
}
.stats-section { padding-bottom: 18px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.stat-box { padding: 24px; text-align: center; }
.stat-box strong { display: block; font-size: 34px; color: var(--primary); }
.stat-box span { color: var(--muted); font-weight: 600; }

.section { padding: 84px 0; }
.section.alt { background: var(--surface-2); }
.section-heading { margin-bottom: 34px; }
.section-heading.center { text-align: center; }
.section-heading h2 { font-size: clamp(30px, 4vw, 48px); margin: 0 0 12px; }
.section-heading p { margin: 0; color: var(--muted); font-size: 18px; }

.services-buttons,
.district-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.services-buttons a,
.district-links a {
  padding: 14px 18px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--border);
  font-weight: 700;
  color: #17324f;
  transition: .2s ease;
}
.services-buttons a:hover,
.district-links a:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-2px);
}

.feature-grid,
.steps-grid,
.footer-grid,
.content-grid,
.district-grid,
.service-grid {
  display: grid;
  gap: 20px;
}
.feature-grid,
.service-grid {
  grid-template-columns: repeat(3, 1fr);
}
.feature-card,
.service-card,
.district-card { padding: 26px; }
.feature-card h3,
.service-card h3,
.district-card h3 { margin-top: 0; font-size: 22px; }
.feature-card p,
.service-card p,
.district-card p { margin-bottom: 0; color: var(--muted); }

.steps-grid { grid-template-columns: repeat(4, 1fr); }
.step-card { padding: 28px; }
.step-card span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(15, 98, 254, 0.12);
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 16px;
}
.step-card h3 { margin: 0 0 8px; }
.step-card p { margin: 0; color: var(--muted); }

.content-grid { grid-template-columns: 1.2fr 0.8fr; align-items: start; }
.content-grid p { color: var(--muted); font-size: 17px; }

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}
.faq-list details { padding: 20px 24px; }
.faq-list summary {
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list p { margin: 12px 0 0; color: var(--muted); }

.cta-strip {
  padding: 36px 0;
  background: linear-gradient(135deg, #0f62fe 0%, #0b48bb 100%);
  color: #fff;
}
.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cta-strip p { margin: 8px 0 0; color: rgba(255,255,255,.9); }
.cta-strip .btn { background: #fff; color: var(--primary); }
.cta-strip .btn:hover { background: #eef4ff; }

.breadcrumb {
  padding: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
}
.breadcrumb a { color: var(--primary); }

.footer {
  background: #0f1720;
  color: rgba(255,255,255,.85);
  padding-top: 56px;
}
.footer-grid {
  grid-template-columns: 1.2fr .8fr .8fr;
  padding-bottom: 26px;
}
.footer-logo { color: #fff; }
.footer h3 { color: #fff; }
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer li { margin-bottom: 10px; }
.footer a:hover { color: #fff; }
.footer-bottom {
  padding: 18px 0 28px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.floating-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  padding: 14px 18px;
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
  box-shadow: var(--shadow);
}
.floating-call { background: var(--accent); }
.floating-call:hover { background: var(--accent-dark); }
.floating-whatsapp { background: var(--whatsapp); }
.floating-whatsapp:hover { filter: brightness(.96); }

@media (max-width: 1024px) {
  .hero-grid,
  .content-grid,
  .feature-grid,
  .steps-grid,
  .stats-grid,
  .footer-grid,
  .district-grid,
  .service-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid,
  .content-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .topbar-inner { flex-direction: column; align-items: center; text-align: center; }
  nav { display: none; }
  .menu-toggle {
    display: inline-flex;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 18px;
  }
  .mobile-menu {
    display: none;
    flex-direction: column;
    gap: 12px;
    padding: 0 16px 16px;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 16px;
    font-weight: 700;
  }
  .stats-grid,
  .feature-grid,
  .steps-grid,
  .footer-grid,
  .district-grid,
  .service-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 42px; }
  .section { padding: 64px 0; }
  .cta-strip-inner { flex-direction: column; align-items: flex-start; }
  .floating-actions { right: 14px; bottom: 14px; }
  .floating-action { padding: 14px 16px; }
}
