:root{
  --ink:#0a1628;
  --blue:#1a8fd1;
  --blue-deep:#0d4f7a;
  --cyan:#3ddbf0;
  --paper:#ffffff;
  --grey-bg:#eef1f3;
  --grey-line:#dbe1e6;
  --grey-text:#8a96a3;
  --whatsapp:#25c95a;
}
*{margin:0;padding:0;box-sizing:border-box;}
body{
  font-family:'Segoe UI', Arial, sans-serif;
  background:var(--paper);
  color:var(--ink);
  display:flex;
  justify-content:center;
}
.card{
  max-width:560px;
  width:100%;
  background:var(--paper);
  overflow:hidden;
}

/* HERO */
.hero{
  position:relative;
  height:230px;
  margin:10px;
  border-radius:16px;
  background-image: url("images/Header.jpg");
  background-size: cover;
  background-position: center;
  overflow:hidden;
}

/* AVATAR */
.avatar-wrap{
  display:flex;justify-content:center;
  margin-top:-82px;
  position:relative;
  z-index:2;
}
.avatar{
  width:160px;height:160px;border-radius:50%;
  background:var(--paper);
  border:3px solid var(--blue);
  padding:2px; /* white 2px ring around image */
  display:flex;align-items:center;justify-content:center;
  overflow:hidden;
  box-shadow:0 0 0 6px #fff, 0 6px 18px rgba(10,22,40,0.15);
}
.avatar img{width:100%;height:100%;object-fit:cover;border-radius:50%;}

/* NAME */
.who{
  text-align:center;
  padding:14px 20px 0;
}
.who h1{
  font-size:21px;
  font-weight:800;
  letter-spacing:1px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.who p{
  margin-top:3px;
  font-size:19px;
  color:#5a6470;
  letter-spacing:1px;
}

/* SAVE BUTTON */
.save-wrap{
  display:flex;justify-content:center;
  padding:18px 20px 6px;
}
.save-btn{
  background:var(--blue);
  color:#fff;
  border:none;
  font-weight:700;
  font-size:13px;
  letter-spacing:2px;
  padding:13px 38px;
  border-radius:6px;
  cursor:pointer;
  box-shadow:0 6px 16px rgba(26,143,209,0.35);
  transition:transform .15s ease, box-shadow .15s ease;
  text-decoration:none;
  display:inline-block;
}
.save-btn:hover{transform:translateY(-2px);box-shadow:0 8px 20px rgba(26,143,209,0.45);}

/* CONTACT BOX */
.contact-box{
  margin:20px 16px;
  background:var(--grey-bg);
  border-radius:10px;
  padding:18px 22px 6px;
  position:relative;
  z-index:3;
}
.field{
  border-bottom:1px solid var(--grey-line);
  padding:10px 0 14px;
}
.field:last-of-type{border-bottom:none;}
.field label{
  display:block;
  font-size:11px;
  letter-spacing:2px;
  color:var(--grey-text);
  text-transform:uppercase;
  margin-bottom:4px;
}
.field a, .field span{
  font-size:17px;
  font-weight:600;
  color:var(--ink);
  text-decoration:none;
}
.field a:hover{color:var(--blue);}

.actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-top:14px;
  padding-bottom:16px;
}
.action-btn{
  display:flex;align-items:center;gap:8px;
  padding:11px 12px;
  border-radius:6px;
  color:#fff;
  text-decoration:none;
  font-size:12px;
  font-weight:700;
}
.action-btn .sub{display:block;font-size:9px;font-weight:400;letter-spacing:1px;opacity:.9;}
.action-btn.whatsapp{background:var(--whatsapp);}
.action-btn.mail{background:var(--blue);}
.action-btn.web{background:var(--blue-deep);}
.action-btn.geo{background:#4285f4;}
.action-btn svg{width:20px;height:20px;flex-shrink:0;}

/* PROMO SECTIONS */
.promo{
  background:#0a1628;
  color:#fff;
  padding:50px 28px;
  position:relative;
  overflow:hidden;
}
.promo.body-promo{
  padding:0;
  background:none;
  margin-top:-150px; /* pull image up behind contact-box */
  position:relative;
  z-index:1;
}
.promo.body-promo .promo-img{
  display:block;
  width:100%;
  height:auto;
}

/* ensure promo image stays below contact box */
.promo.body-promo .promo-img{display:block;width:100%;height:auto;}
/* removed gradient overlay as requested */
.promo.dark2{background:#070d18;}
.promo h2{
  font-size:30px;
  font-weight:400;
  line-height:1.15;
}
.promo h2 strong, .promo .accent{
  display:block;
  font-weight:800;
  font-size:38px;
  color:var(--cyan);
  letter-spacing:1px;
}
.promo p.lead{
  margin-top:14px;
  font-size:14px;
  color:#b8c4d0;
  line-height:1.6;
  max-width:80%;
}

.router-img{
  position:absolute;
  right:-20px;top:30px;
  width:55%;
  opacity:.95;
}

.section-title{
  text-align:center;
  font-size:24px;
  font-weight:800;
  letter-spacing:1px;
  margin-bottom:14px;
}
.section-body{
  text-align:center;
  font-size:14px;
  color:#b8c4d0;
  line-height:1.7;
  max-width:430px;
  margin:0 auto;
}
.section-body b{color:#fff;}

.branded-title{
  text-align:center;
  font-size:30px;
  font-weight:800;
  letter-spacing:1px;
  color:var(--cyan);
  text-shadow:0 0 18px rgba(61,219,240,0.5);
  margin:42px 0 18px;
}
.device-frame{
  margin:0 auto 16px;
  max-width:440px;
  border-radius:14px;
  border:1px solid rgba(61,219,240,0.25);
  background:linear-gradient(160deg, rgba(61,219,240,0.08), rgba(10,22,40,0));
  padding:18px;
  box-shadow:0 0 30px rgba(61,219,240,0.08);
}
.device-frame svg{display:block;width:100%;}
.device-frame .caption{
  text-align:center;
  font-size:13px;
  color:#c6d3df;
  margin-top:12px;
  line-height:1.6;
}

/* FEATURE GRID */
.features{
  background:#070f1f;
  padding:38px 28px 44px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px 24px;
}
.feature h3{
  font-size:14px;
  font-weight:800;
  letter-spacing:1px;
  color:#fff;
  margin-bottom:8px;
  display:flex;align-items:center;gap:8px;
}
.feature h3 svg{width:18px;height:18px;color:var(--cyan);flex-shrink:0;}
.feature p{
  font-size:12.5px;
  color:#9fb0c0;
  line-height:1.6;
}

/* WALKING BANNER */
.walk-banner{
  position:relative;
  background:linear-gradient(180deg,#070f1f 0%, #0a1628 60%, #0a1628 100%);
  padding:55px 0 0;
  overflow:hidden;
  text-align:center;
}
.walk-banner .big-text{
  font-size:46px;
  font-weight:900;
  line-height:1.05;
  color:#fff;
  letter-spacing:-1px;
  text-transform:uppercase;
  position:relative;
  z-index:2;
}
.walk-banner .big-text .light{font-weight:300;}
.walk-figure{
  position:relative;
  height:170px;
  margin-top:-30px;
  z-index:1;
}
.pedestals{
  display:flex;justify-content:center;align-items:flex-end;gap:8px;
  padding:0 20px 30px;
}
.pedestal{
  flex:1;max-width:120px;height:60px;
  background:linear-gradient(180deg, rgba(61,219,240,0.18), rgba(61,219,240,0.02));
  border-top:2px solid var(--cyan);
  box-shadow:0 -4px 16px rgba(61,219,240,0.35);
}
.pedestal:nth-child(2),.pedestal:nth-child(3){height:78px;}

/* CERT BAR */
.certs{
  background:linear-gradient(180deg,#0a1628,#13243d);
  padding:30px 20px 36px;
  display:flex;justify-content:center;align-items:center;gap:34px;
  flex-wrap:wrap;
}
.certs img, .certs svg{height:64px;}

/* TAGLINE STRIP */
.strip{
  background:linear-gradient(90deg, var(--blue-deep), var(--blue));
  color:#fff;
  text-align:center;
  padding:14px 10px;
  font-size:13px;
  letter-spacing:2px;
  font-weight:600;
}
.strip span.dot{color:var(--cyan);padding:0 8px;}

/* SOCIALS */
.socials{
  display:flex;justify-content:center;gap:18px;
  padding:24px 0;
  background:#fff;
}
.socials a{
  width:42px;height:42px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  color:#fff;
  text-decoration:none;
}
.socials svg{width:20px;height:20px;}
.ig{background:radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);}
.fb{background:#1877f2;}
.li{background:#0a66c2;}
.tw{background:#0a1628;}
.tt{background:#0a1628;}
.yt{background:#FF0000;}

/* FOOTER */
.footer{
  background:var(--blue-deep);
  color:#cfe7f5;
  text-align:center;
  padding:18px 20px;
  font-size:12px;
  letter-spacing:1px;
}
.footer .countries{font-weight:600;color:#fff;margin-bottom:6px;}
.footer .web{margin-top:6px;font-weight:700;letter-spacing:2px;color:#fff;font-size:13px;}
.footer .copy{margin-top:10px;font-size:10.5px;color:#9fc4dd;}

@media (max-width:420px){
  .promo h2{font-size:24px;}
  .promo h2 strong{font-size:30px;}
  .walk-banner .big-text{font-size:32px;}
  .features{grid-template-columns:1fr;}
}
