:root{
  --blue:#1C4AA3;
  --blue-dark:#173A7A;
  --green:#5A9D32;
  --light:#F6F8FA;
  --text:#1F2937;
  --muted:#5B6472;
  --border:#DCE3EA;
  --shadow:0 12px 34px rgba(20,38,70,.08);
  --radius:24px;
  --container:1180px;
}

*{box-sizing:border-box}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--text);
  background:#fff;
  line-height:1.6;
}

img{
  max-width:100%;
  display:block;
}

a{
  color:inherit;
  text-decoration:none;
}

.container{
  width:min(calc(100% - 32px), var(--container));
  margin-inline:auto;
}

.topbar{
  background:var(--blue);
  color:#fff;
  font-size:13px;
  letter-spacing:.2px;
  position:sticky;
  top:0;
  z-index:50;
}

.topbar .container{
  display:flex;
  justify-content:flex-end;
  align-items:center;
  min-height:40px;
  gap:22px;
  flex-wrap:wrap;
}

.site-header{
  position:sticky;
  top:40px;
  z-index:49;
  background:rgba(255,255,255,.97);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--border);
}

.navbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  min-height:88px;
}

.brand{
  display:flex;
  align-items:center;
  gap:0;
  flex:0 0 auto;
}

.brand img{
  height:46px;
  width:auto;
  object-fit:contain;
  background:none;
  border-radius:0;
  box-shadow:none;
}

.brand-name,
.brand-sub{
  display:none;
}

.desktop-nav{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:26px;
  flex-wrap:nowrap;
  margin-left:auto;
}

.nav-item{
  position:relative;
  padding:12px 0;
}

.nav-item::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:100%;
  height:14px;
}

.nav-link{
  font-weight:500;
  font-size:15px;
  color:#2d3748;
  transition:.2s ease;
  white-space:nowrap;
}

.nav-link:hover{
  color:var(--green);
}

.dropdown{
  position:absolute;
  left:0;
  top:100%;
  margin-top:0;
  min-width:270px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:20px;
  box-shadow:var(--shadow);
  padding:10px;
  display:none;
  transform:translateY(10px);
  z-index:80;
}

.nav-item:hover .dropdown{
  display:block;
}

.dropdown a{
  display:block;
  padding:10px 12px;
  border-radius:14px;
  font-size:15px;
  color:#2d3748;
}

.dropdown a:hover{
  background:var(--light);
  color:var(--blue);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:14px 22px;
  border-radius:18px;
  font-weight:700;
  transition:.2s ease;
}

.btn:hover{
  transform:translateY(-1px);
}

.btn-primary{
  background:var(--green);
  color:#fff;
  padding:14px 26px;
  border-radius:999px;
  font-weight:600;
  font-size:15px;
  box-shadow:0 6px 18px rgba(90,157,50,.25);
  white-space:nowrap;
}

.btn-primary:hover{
  transform:translateY(-1px);
  box-shadow:0 10px 24px rgba(90,157,50,.35);
}

.btn-secondary{
  background:var(--blue);
  color:#fff;
}

.btn-ghost{
  background:rgba(255,255,255,.14);
  color:#fff;
  border:1px solid rgba(255,255,255,.45);
  backdrop-filter:blur(8px);
}

.btn-light{
  background:#fff;
  color:var(--blue);
}

.btn-outline{
  border:1px solid var(--border);
  color:var(--blue);
  background:#fff;
}

.mobile-toggle{
  display:none;
  width:46px;
  height:46px;
  border:1px solid var(--border);
  border-radius:14px;
  background:#fff;
  font-size:24px;
}

.mobile-menu{
  display:none;
  border-top:1px solid var(--border);
  background:#fff;
}

.mobile-menu.open{
  display:block;
}

.mobile-menu .group{
  padding:8px 0;
  border-bottom:1px solid #eef2f6;
}

.mobile-menu .group:last-child{
  border-bottom:0;
}

.mobile-menu a,
.mobile-menu summary{
  display:block;
  padding:10px 0;
  font-weight:600;
}

.mobile-menu details{
  padding:2px 0;
}

.mobile-menu .sub a{
  padding:10px 0 10px 16px;
  font-size:15px;
  color:var(--muted);
}

.hero{
  position:relative;
  min-height:76vh;
  display:grid;
  align-items:center;
  overflow:hidden;
  background:#0f172a;
}

.hero-slides,
.hero-slide{
  position:absolute;
  inset:0;
}

.hero-slide{
  opacity:0;
  transition:opacity 1s ease;
  background-size:cover;
  background-position:center;
}

.hero-slide.active{
  opacity:1;
}

.hero-slide::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(11,19,39,.78), rgba(11,19,39,.45));
}

.hero-content{
  position:relative;
  z-index:1;
  color:#fff;
  padding:100px 0 80px;
}

.badge{
  display:inline-flex;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.16);
  backdrop-filter:blur(8px);
  font-size:14px;
  font-weight:700;
}

.hero h1{
  font-size:clamp(2.4rem,5vw,4.4rem);
  line-height:1.06;
  margin:18px 0;
}

.hero p{
  font-size:clamp(1.05rem,2vw,1.25rem);
  max-width:760px;
  color:#eef5ff;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:28px;
}

.hero-dots{
  display:flex;
  gap:10px;
  margin-top:26px;
}

.hero-dots button{
  width:12px;
  height:12px;
  border:none;
  border-radius:999px;
  background:rgba(255,255,255,.45);
  cursor:pointer;
  transition:.25s ease;
}

.hero-dots button.active{
  width:42px;
  background:#fff;
}

.page-hero{
  padding:80px 0 60px;
  background:linear-gradient(180deg,#f9fbfd,#f3f7fb);
  border-bottom:1px solid var(--border);
}

.page-hero h1{
  font-size:clamp(2rem,4vw,3.6rem);
  margin:0 0 16px;
}

.page-hero p{
  font-size:1.1rem;
  max-width:760px;
  color:var(--muted);
}

.section{
  padding:84px 0;
}

.section.alt{
  background:var(--light);
}

.section h2{
  font-size:clamp(1.8rem,3vw,2.8rem);
  line-height:1.15;
  margin:10px 0 18px;
}

.eyebrow{
  color:var(--green);
  text-transform:uppercase;
  letter-spacing:.18em;
  font-weight:800;
  font-size:13px;
}

.lead{
  font-size:1.08rem;
  color:var(--muted);
  max-width:840px;
}

.grid{
  display:grid;
  gap:24px;
}

.grid-2{
  grid-template-columns:repeat(2,minmax(0,1fr));
}

.grid-3{
  grid-template-columns:repeat(3,minmax(0,1fr));
}

.card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:28px;
  box-shadow:var(--shadow);
}

.card h3{
  margin:0 0 10px;
  color:var(--blue);
  font-size:1.28rem;
}

.card p{
  margin:0 0 10px;
  color:var(--muted);
}

.list{
  display:grid;
  gap:12px;
  margin-top:18px;
}

.list .item{
  display:flex;
  gap:12px;
  align-items:flex-start;
}

.dot{
  width:10px;
  height:10px;
  border-radius:999px;
  background:var(--green);
  margin-top:9px;
  flex:0 0 auto;
}

.split{
  display:grid;
  gap:30px;
  grid-template-columns:1.15fr .85fr;
}

.tag-list{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:22px;
}

.tag{
  padding:10px 14px;
  background:#eef3f7;
  border-radius:999px;
  font-weight:600;
  color:#46505d;
}

.map-placeholder{
  min-height:260px;
  border:1px dashed #bcc7d2;
  border-radius:20px;
  background:#f8fafb;
  display:grid;
  place-items:center;
  color:#7c8794;
  text-align:center;
  padding:24px;
}

.form{
  display:grid;
  gap:14px;
}

.form.two{
  grid-template-columns:repeat(2,minmax(0,1fr));
}

.input,
textarea{
  width:100%;
  padding:14px 16px;
  border-radius:16px;
  border:1px solid var(--border);
  font:inherit;
  outline:none;
  background:#fff;
}

.input:focus,
textarea:focus{
  border-color:#7eb5d9;
  box-shadow:0 0 0 3px rgba(88,175,210,.17);
}

textarea{
  min-height:120px;
  resize:vertical;
}

.cta-band{
  background:var(--blue);
  color:#fff;
  border-radius:32px;
  padding:34px;
  box-shadow:var(--shadow);
}

.cta-band p{
  color:#e6efff;
}

.footer{
  background:var(--blue-dark);
  color:#fff;
  margin-top:40px;
}

.footer-grid{
  display:grid;
  gap:28px;
  grid-template-columns:1.2fr 1fr 1fr .8fr;
  padding:60px 0;
}

.footer h3{
  margin-top:0;
  font-size:1.1rem;
}

.footer a{
  color:#dfe8ff;
}

.footer a:hover{
  color:#fff;
}

.footer p,
.footer li{
  color:#d7e2f7;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.12);
  padding:18px 0;
  color:#d3def6;
  font-size:14px;
  display:flex;
  justify-content:space-between;
  gap:20px;
}

.stack{
  display:grid;
  gap:8px;
}

.breadcrumbs{
  font-size:14px;
  color:var(--muted);
  margin-bottom:20px;
}

.notice{
  font-size:14px;
  color:var(--muted);
}

@media (max-width:1180px){
  .desktop-nav{
    gap:18px;
  }

  .nav-link{
    font-size:14px;
  }

  .btn-primary{
    padding:13px 22px;
    font-size:14px;
  }
}

@media (max-width:1023px){
  .desktop-nav{
    display:none;
  }

  .mobile-toggle{
    display:inline-flex;
    align-items:center;
    justify-content:center;
  }

  .grid-3,
  .grid-2,
  .split,
  .footer-grid,
  .form.two{
    grid-template-columns:1fr;
  }

  .hero-content{
    padding:86px 0 70px;
  }

  .nav-item{
    padding:0;
  }

  .nav-item::after{
    display:none;
  }
}

@media (max-width:640px){
  .topbar{
    font-size:12px;
  }

  .topbar .container{
    justify-content:center;
    gap:8px 14px;
    padding:7px 0;
    min-height:auto;
    line-height:1.25;
    text-align:center;
  }

  .topbar .container span{
    flex-basis:100%;
  }

  .site-header{
    top:58px;
  }

  .navbar{
    min-height:74px;
  }

  .brand img{
    height:40px;
  }

  .section{
    padding:64px 0;
  }

  .hero{
    min-height:70vh;
  }

  .footer-bottom{
    flex-direction:column;
  }
}

@media (max-width:380px){
  .topbar{
    font-size:11px;
  }

  .topbar .container{
    gap:6px 10px;
  }

  .site-header{
    top:56px;
  }
}
