:root{
  --blue:#2563eb;
  --blue2:#1d4ed8;
  --teal:#36b0bc;
  --bg:#ffffff;
  --text:#111827;
  --muted:#6b7280;
  --dark:#0b1220;
  --card:#f3f4f6;
  --line:rgba(17,24,39,.10);
  --shadow:0 18px 50px rgba(0,0,0,.16);
  --radius:18px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
}
a{color:inherit;text-decoration:none}
.container{max-width:1120px;margin:0 auto;padding:0 16px; }
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  padding:12px 18px;border-radius:999px;
  font-weight:800;border:1px solid transparent;cursor:pointer;
  transition:transform .06s ease, background .2s ease, color .2s ease, border-color .2s ease;
  user-select:none;
}
.btn:active{transform:translateY(1px)}
.btnPrimary{background:var(--blue);color:#fff}
.btnPrimary:hover{background:var(--blue2)}
.btnSecondary{
  background:#ffffff;
  color:var(--dark);
  border-color:rgba(255,255,255,.70);
}
.btnSecondary:hover{background:rgba(255,255,255,.90)}
.btnGhost{
  background:rgba(255,255,255,.10);
  color:#fff;
  border-color:rgba(255,255,255,.22);
}
.btnGhost:hover{background:rgba(255,255,255,.16)}

header{
  position:sticky;top:0;z-index:50;
  background:#fff;
  border-bottom:1px solid var(--line);
}
.headerRow{
  height:64px;
  display:flex;align-items:center;justify-content:space-between;gap:12px;
}
.brand{display:flex;align-items:center;gap:10px;min-width:0}
.brandLogo{
  width:40px;height:40px;border-radius:14px;
  background:linear-gradient(135deg,var(--blue),#60a5fa);
  box-shadow:0 10px 24px rgba(37,99,235,.25);
}
.brandText{display:flex;align-items:baseline;gap:0}
.brandText b{font-size:22px;letter-spacing:.2px}
.brandText span{font-size:22px;color:#334155;font-weight:300}
.nav{display:none;align-items:center;gap:26px}
.nav a{color:#334155;font-weight:700}
.nav a:hover{color:var(--blue)}
.loginBtn{display:none}
.loginBtn .btn{background:var(--teal);color:#fff}
.loginBtn .btn:hover{filter:brightness(.95)}

.menuBtn{
  display:inline-flex;align-items:center;justify-content:center;
  width:44px;height:44px;border-radius:12px;border:1px solid var(--line);
  background:#fff;cursor:pointer;
}
.menuBtn svg{width:22px;height:22px;color:#334155}
.mobileMenu{
  display:none;
  border-top:1px solid var(--line);
  padding:10px 0 14px;
}
.mobileMenu a{
  display:block;
  padding:10px 0;
  color:#334155;
  font-weight:800;
}
.mobileMenu a:hover{color:var(--blue)}
.mobileMenu .mobileLogin{margin-top:8px}

.hero{
  position:relative;
  background:linear-gradient(135deg, rgba(37,99,235,.95), rgba(11,18,32,.92));
  background-image: url("/assets/img/hero.jpg");
background-repeat: repeat;

  color:#fff;
  overflow:hidden;
}
.hero::before{
  content:"";
  position:absolute;inset:0;
  background:
    radial-gradient(900px 500px at 20% 10%, rgba(255,255,255,.14), transparent 60%),
    radial-gradient(900px 500px at 90% 20%, rgba(54,176,188,.18), transparent 60%);
  pointer-events:none;
}
.heroInner{
  position:relative;
  padding:46px 0 0;
  text-align:center;
}
.hero h1{
  margin:0;
  font-size:34px;
  font-weight:300;
  font-style:italic;
}
.hero h2{
  margin:10px 0 0;
  font-size:22px;
  font-weight:500;
}
.hero p{
  margin:14px auto 0;
  max-width:720px;
  color:rgba(255,255,255,.88);
  line-height:1.5;
}
.heroCta{
  margin:18px auto 26px;
  display:flex;gap:12px;flex-wrap:wrap;justify-content:center;
}
.heroCta .btn{min-width:220px}

.mapStrip{
  position:relative;
  margin-top:10px;
  height:290px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02)),
    url("assets/img/hero.jpg");
  background-size:cover;
  background-position:center;
}
.mapStrip::after{
  content:"";
  position:absolute;inset:0;
  background:linear-gradient(180deg, rgba(11,18,32,.06), rgba(11,18,32,.10));
}
.mapSvg, .routeSvg{position:absolute;inset:0;width:100%;height:100%}
.routeLine{stroke:rgba(255,255,255,.85);stroke-width:4;fill:none;stroke-linecap:round;stroke-dasharray:10 10;animation:dash 7s linear infinite}
@keyframes dash{to{stroke-dashoffset:-200}}

.pin{
  position:absolute;
  transform:translate(-50%,-50%);
  filter:drop-shadow(0 10px 16px rgba(0,0,0,.25));
  opacity:.98;
}
.pin svg{width:46px;height:60px}
.pin .dotBlue{fill:var(--blue)}
.pin .dotTeal{fill:var(--teal)}

.section{padding:56px 0}
.sectionAlt{background:#f7fafc}
.sectionTitle{margin:0;text-align:center;font-size:28px;font-weight:300;color:var(--blue)}
.sectionSubtitle{margin:6px 0 0;text-align:center;font-size:24px;font-weight:800;color:#334155}

.featuresGrid{
  margin-top:34px;
  display:grid;grid-template-columns:1fr;gap:16px;
}
.feature{
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  padding:18px;
  box-shadow:0 10px 24px rgba(0,0,0,.06);
  text-align:center;
}
.featureIcon{
  width:64px;height:64px;border-radius:18px;
  background:linear-gradient(135deg,var(--blue),#60a5fa);
  margin:0 auto 14px;
  display:flex;align-items:center;justify-content:center;
}
.featureIcon svg{width:30px;height:30px;color:#fff}
.feature h4{margin:0;font-size:18px;color:var(--blue);font-weight:900}
.feature p{margin:10px 0 0;color:#475569;line-height:1.5}
.feature .more{
  margin-top:16px;
  display:inline-flex;
  padding:10px 16px;border-radius:999px;
  border:2px solid #334155;
  color:#334155;font-weight:900;font-size:12px;
}
.feature .more:hover{background:#334155;color:#fff}

.testGrid{
  margin-top:28px;
  display:grid;grid-template-columns:1fr;gap:16px;
}
.test{
  background:#fff;
  border-radius:22px;
  border:1px solid var(--line);
  padding:18px;
  box-shadow:0 10px 24px rgba(0,0,0,.06);
  display:flex;gap:14px;align-items:flex-start;
}
.avatar{
  width:64px;height:64px;border-radius:999px;
  background:linear-gradient(135deg,var(--blue),#93c5fd);
  display:flex;align-items:center;justify-content:center;
  flex:0 0 auto;
}
.avatar svg{width:36px;height:36px;color:#fff}
.test .q{font-size:34px;color:rgba(37,99,235,.35);line-height:1;margin:0}
.test p{margin:6px 0 12px;color:#475569;line-height:1.5}
.test b{color:var(--blue);display:block}
.test span{color:var(--teal);font-size:13px;font-weight:700}

.ctaBand{
  background:linear-gradient(135deg, rgba(37,99,235,.95), rgba(11,18,32,.92));
  color:#fff;
  padding:54px 0;
}
.ctaBand h3{margin:0;font-size:28px;font-weight:900}
.ctaBand p{margin:10px auto 0;max-width:780px;color:rgba(255,255,255,.88);line-height:1.5}
.ctaBand .ctaRow{margin-top:16px;display:flex;gap:12px;flex-wrap:wrap;justify-content:center}

footer{
  background:#334155;
  color:#fff;
  padding:36px 0;
}
.footBrand{display:flex;justify-content:center;align-items:baseline;gap:0;margin-bottom:10px}
.footBrand b{font-size:28px;color:var(--blue);font-weight:900}
.footBrand span{font-size:28px;font-weight:300}
.footSmall{text-align:center;color:rgba(255,255,255,.72);font-size:13px}
.social{display:flex;justify-content:center;gap:10px;margin:18px 0}
.social a{
  width:42px;height:42px;border-radius:999px;
  background:var(--teal);
  display:flex;align-items:center;justify-content:center;
  transition:background .2s ease;
}
.social a:hover{background:var(--blue)}
.social svg{width:18px;height:18px;color:#fff}
.privacy{text-align:center;color:rgba(255,255,255,.55);font-size:12px}
.privacy a:hover{color:#fff}

/* Responsive */
@media (min-width: 820px){
  .headerRow{height:76px}
  .nav{display:flex}
  .loginBtn{display:block}
  .menuBtn{display:none}
  .hero h1{font-size:56px}
  .hero h2{font-size:32px}
  .heroCta .btn{min-width:auto}
  .mapStrip{height:340px}
  .featuresGrid{grid-template-columns:repeat(3, 1fr);gap:22px}
  .testGrid{grid-template-columns:repeat(2, 1fr);gap:22px}
}
