:root{
  --blue:#1565C0;
  --blue-dark:#071A3A;
  --green:#00A86B;
  --text:#162033;
  --muted:#667085;
  --light:#F4F8FC;
  --white:#fff;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth;overflow-x:hidden}
body{
  margin:0;
  font-family:Inter,Segoe UI,Arial,sans-serif;
  color:var(--text);
  background:#fff;
  overflow-x:hidden;
}

.glass-nav{
  background:rgba(255,255,255,.88);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(21,101,192,.09);
  padding:14px 0;
}

.navbar-brand{
  font-weight:900;
  color:var(--blue-dark);
  letter-spacing:.3px;
  font-size:24px;
}

.brand-icon{
  width:38px;height:38px;border-radius:12px;
  display:inline-flex;align-items:center;justify-content:center;
  background:linear-gradient(135deg,var(--blue),var(--green));
  color:white;
  overflow:hidden;
}
.brand-icon img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1.85);
}

.nav-link{
  font-weight:650;
  color:#26344d;
  margin:0 5px;
}

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

.btn-brand{
  background:linear-gradient(135deg,var(--blue),var(--green));
  color:#fff!important;
  border:0;
  border-radius:999px;
  padding:12px 26px;
  font-weight:800;
  box-shadow:0 15px 35px rgba(21,101,192,.24);
}

.btn-brand:hover{transform:translateY(-2px);box-shadow:0 18px 40px rgba(0,168,107,.28)}

.hero-section{
  position:relative;
  overflow:hidden;
  min-height:100vh;
  padding:160px 0 90px;
  background:
    radial-gradient(circle at 10% 10%, rgba(0,168,107,.2), transparent 24%),
    radial-gradient(circle at 80% 20%, rgba(21,101,192,.24), transparent 28%),
    linear-gradient(135deg,#061b3a,#082d55 55%,#063a3a);
  color:#fff;
}

.hero-section h1{
  font-size:clamp(42px,6vw,74px);
  line-height:1.02;
  font-weight:950;
  letter-spacing:-2px;
}

.hero-text{
  color:#d8e6f7;
  font-size:19px;
  line-height:1.7;
  margin:24px 0 30px;
  max-width:620px;
}

.eyebrow{
  display:inline-flex;
  gap:9px;
  align-items:center;
  padding:9px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.09);
  border:1px solid rgba(255,255,255,.16);
  margin-bottom:24px;
  font-weight:750;
  color:#cfe8ff;
}

.hero-actions{display:flex;gap:15px;flex-wrap:wrap}
.trust-row{display:flex;gap:22px;flex-wrap:wrap;margin-top:32px;color:#d7eeff}
.trust-row span{font-weight:650}
.trust-row i{color:var(--green);margin-right:7px}

.dashboard-card{
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.18);
  border-radius:32px;
  padding:24px;
  backdrop-filter:blur(16px);
  box-shadow:0 30px 80px rgba(0,0,0,.28);
}

.dash-top{display:flex;justify-content:space-between;align-items:center;margin-bottom:18px}
.dash-top small{color:#b8d8ef}
.dash-top h5{margin:0;font-weight:850}
.live-pill{
  padding:7px 12px;border-radius:999px;
  background:rgba(0,168,107,.18);
  color:#6dffc5;
  font-weight:900;
  font-size:12px;
}

.map-card{
  height:320px;
  position:relative;
  overflow:hidden;
  border-radius:25px;
  background:
    linear-gradient(rgba(255,255,255,.08) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.08) 1px,transparent 1px),
    radial-gradient(circle at 30% 30%, rgba(0,168,107,.35), transparent 22%),
    radial-gradient(circle at 70% 65%, rgba(21,101,192,.45), transparent 24%),
    rgba(255,255,255,.07);
  background-size:40px 40px,40px 40px,100% 100%,100% 100%,100% 100%;
}

.route-line{
  position:absolute;
  width:420px;height:180px;
  border:5px dashed rgba(255,255,255,.76);
  border-color:transparent transparent #fff transparent;
  border-radius:0 0 50% 50%;
  transform:rotate(-12deg);
  left:-30px;top:70px;
  animation:float 4s ease-in-out infinite;
}

.pin{
  position:absolute;
  width:52px;height:52px;border-radius:18px;
  display:flex;align-items:center;justify-content:center;
  background:linear-gradient(135deg,var(--blue),var(--green));
  color:#fff;font-size:22px;
  box-shadow:0 15px 30px rgba(0,0,0,.25);
}

.pin-1{left:70px;top:150px;animation:pulse 2s infinite}
.pin-2{right:80px;top:85px;animation:pulse 2.4s infinite}
.pin-3{right:130px;bottom:55px;animation:pulse 2.8s infinite}

.metric{
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.14);
  border-radius:18px;
  padding:16px 10px;
  text-align:center;
}
.metric b{display:block;font-size:26px}
.metric small{color:#c9def0}

.mini-alert{
  background:rgba(0,168,107,.16);
  border:1px solid rgba(0,168,107,.24);
  color:#dffff3;
  border-radius:18px;
  padding:14px 16px;
}

.logo-strip{margin-top:-64px;position:relative;z-index:2}
.brand-showcase{
  display:grid;
  grid-template-columns:260px 1fr;
  align-items:center;
  gap:28px;
  background:#fff;
  border:1px solid #e7eef7;
  border-radius:24px;
  box-shadow:0 22px 70px rgba(6,27,58,.14);
  padding:26px 30px;
  margin-bottom:18px;
}
.brand-showcase img{
  width:100%;
  max-height:130px;
  object-fit:contain;
}
.brand-showcase span{
  color:var(--green);
  display:block;
  font-size:13px;
  font-weight:900;
  letter-spacing:1.6px;
  margin-bottom:7px;
  text-transform:uppercase;
}
.brand-showcase h2{
  color:var(--blue-dark);
  font-size:clamp(26px,3vw,38px);
  font-weight:950;
  letter-spacing:-.8px;
  margin:0 0 8px;
}
.brand-showcase p{
  color:var(--muted);
  font-size:17px;
  line-height:1.6;
  margin:0;
}
.strip-box{
  background:#fff;
  border-radius:24px;
  box-shadow:0 20px 60px rgba(6,27,58,.12);
  padding:24px;
  display:flex;
  justify-content:space-around;
  gap:16px;
  flex-wrap:wrap;
  color:#415069;
  font-weight:900;
}

.section{padding:96px 0}
.section-title{text-align:center;max-width:760px;margin:0 auto 54px}
.section-title span{
  color:var(--green);
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:2px;
  font-size:13px;
}
.section-title h2{
  font-size:clamp(32px,4vw,48px);
  font-weight:950;
  letter-spacing:-1.2px;
  margin:10px 0 14px;
}
.section-title p{color:var(--muted);font-size:18px;line-height:1.7}

.premium-card{
  height:100%;
  padding:34px;
  border-radius:28px;
  background:#fff;
  border:1px solid #e9eff7;
  box-shadow:0 14px 50px rgba(14,38,70,.08);
  transition:.28s ease;
}
.premium-card:hover{
  transform:translateY(-9px);
  box-shadow:0 24px 70px rgba(21,101,192,.16);
}
.premium-card i{
  width:62px;height:62px;border-radius:20px;
  display:flex;align-items:center;justify-content:center;
  color:white;
  background:linear-gradient(135deg,var(--blue),var(--green));
  font-size:26px;
  margin-bottom:22px;
}
.premium-card h4{font-weight:900;margin-bottom:12px}
.premium-card p{color:var(--muted);line-height:1.7}

.section-dark{
  background:linear-gradient(135deg,#071A3A,#082D55);
  color:#fff;
}
.section-title.light p{color:#cddced}

.product-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.product-grid div{
  padding:26px 18px;
  border-radius:22px;
  text-align:center;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.15);
  transition:.25s;
}
.product-grid b{
  display:block;
  font-weight:900;
  margin-bottom:8px;
}
.product-grid small{
  display:block;
  color:#cddced;
  font-weight:650;
  line-height:1.45;
}
.product-grid div:hover{background:rgba(0,168,107,.18);transform:translateY(-5px)}

.industry-box{
  padding:24px 15px;
  text-align:center;
  border-radius:20px;
  background:var(--light);
  font-weight:900;
  border:1px solid #e7eef7;
}

.platform-section{background:var(--light)}
.feature-list{list-style:none;padding:0;margin:0}
.feature-list li{
  margin:16px 0;
  font-weight:750;
  color:#2d3b52;
}
.feature-list i{
  color:var(--green);
  margin-right:10px;
}

.analytics-preview{
  height:360px;
  border-radius:32px;
  background:#fff;
  box-shadow:0 22px 70px rgba(14,38,70,.12);
  padding:40px;
  display:flex;
  align-items:end;
  gap:18px;
}
.bar{
  flex:1;
  border-radius:14px 14px 0 0;
  background:linear-gradient(180deg,var(--green),var(--blue));
  animation:barUp 2.5s ease-in-out infinite alternate;
}
.b1{height:42%}.b2{height:62%;animation-delay:.2s}.b3{height:50%;animation-delay:.4s}.b4{height:78%;animation-delay:.6s}.b5{height:68%;animation-delay:.8s}.b6{height:88%;animation-delay:1s}

.stats-section{
  background:linear-gradient(135deg,var(--blue),var(--green));
  color:#fff;
  padding:70px 0;
}
.stats-section h3{
  font-size:48px;
  font-weight:950;
  margin:0;
}
.stats-section p{margin:0;color:#e7fff7;font-weight:700}

.contact-section{background:#fff}
.contact-form{
  padding:36px;
  border-radius:30px;
  background:#fff;
  box-shadow:0 24px 70px rgba(14,38,70,.12);
  border:1px solid #edf2f8;
}
.form-label{
  color:#2d3b52;
  font-weight:800;
  margin-bottom:7px;
}
.form-control{
  min-height:54px;
  border-radius:16px;
  border:1px solid #dae4ef;
  padding:12px 16px;
}
textarea.form-control{min-height:135px}
.form-note{
  margin:0;
  color:var(--muted);
  font-size:14px;
  text-align:center;
}
.quick-contact{
  display:flex;
  gap:14px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top:20px;
}
.quick-contact a{
  display:inline-flex;
  align-items:center;
  gap:9px;
  color:var(--blue-dark);
  background:var(--light);
  border:1px solid #e1ebf6;
  border-radius:999px;
  padding:12px 18px;
  text-decoration:none;
  font-weight:800;
}
.quick-contact a:hover{color:var(--blue)}

.main-footer{
  background:#061629;
  color:#d7e5f2;
  padding:70px 0 26px;
}
.main-footer h4,.main-footer h6{color:#fff;font-weight:950}
.main-footer a{
  display:block;
  color:#c9d8e5;
  text-decoration:none;
  margin:8px 0;
}
.main-footer a:hover{color:#fff}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.1);
  margin-top:36px;
  padding-top:22px;
  text-align:center;
  color:#9cafc3;
}

.back-top{
  position:fixed;
  right:22px;
  bottom:22px;
  width:48px;height:48px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--blue),var(--green));
  color:#fff;
  display:flex;align-items:center;justify-content:center;
  text-decoration:none;
  box-shadow:0 12px 28px rgba(0,0,0,.18);
}

@keyframes pulse{
  0%,100%{transform:scale(1)}
  50%{transform:scale(1.08)}
}
@keyframes float{
  0%,100%{transform:rotate(-12deg) translateY(0)}
  50%{transform:rotate(-12deg) translateY(-10px)}
}
@keyframes barUp{
  from{transform:scaleY(.75)}
  to{transform:scaleY(1)}
}

@media(max-width:991px){
  .product-grid{grid-template-columns:repeat(2,1fr)}
  .hero-section{padding-top:130px}
  .brand-showcase{grid-template-columns:1fr;text-align:center}
  .brand-showcase img{max-height:150px}
}
@media(max-width:575px){
  .hero-section{min-height:auto;padding:125px 0 72px}
  .hero-section .container > .row,
  .platform-section .container > .row{
    --bs-gutter-x:0;
    margin-left:0;
    margin-right:0;
  }
  .hero-section h1{font-size:clamp(36px,11vw,42px);letter-spacing:-1px}
  .hero-text{font-size:18px;line-height:1.65}
  .hero-actions .btn{width:100%}
  .dashboard-card{border-radius:24px;padding:18px}
  .product-grid{grid-template-columns:1fr}
  .map-card{height:260px}
  .route-line{width:340px;left:-46px}
  .pin-2{right:56px}
  .pin-3{right:96px}
  .logo-strip{margin-top:-42px}
  .brand-showcase{padding:22px 18px}
  .brand-showcase img{max-height:110px}
  .strip-box{justify-content:center}
  .section{padding:72px 0}
  .contact-form{padding:24px 18px;border-radius:24px}
  .quick-contact a{width:100%;justify-content:center}
}

@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{
    animation-duration:.01ms!important;
    animation-iteration-count:1!important;
    scroll-behavior:auto!important;
    transition-duration:.01ms!important;
  }
}
