/* TopElec Landing Page */
:root{
  --orange:#e87734;
  --blue:#0e3354;
  --dark:#071d31;
  --light:#f7f9fc;
  --text:#152238;
  --muted:#607085;
  --white:#ffffff;
  --shadow:0 18px 45px rgba(14,51,84,.14);
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:Arial, Helvetica, sans-serif;
  color:var(--text);
  background:#fff;
  line-height:1.55;
  padding-bottom:0;
}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}

.site-header{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
  padding:18px 5%;
  background:#fff;
  position:sticky;
  top:0;
  z-index:20;
  box-shadow:0 4px 20px rgba(14,51,84,.08);
}
.brand{display:flex;align-items:center;gap:12px;color:var(--blue)}
.logo-mark{
  width:54px;height:54px;border-radius:50%;
  background:linear-gradient(135deg,var(--orange),var(--blue));
  color:#fff;display:flex;align-items:center;justify-content:center;
  font-size:30px;font-weight:900;
}
.brand strong{display:block;font-size:30px;letter-spacing:-1px;line-height:1}
.brand small{display:block;color:var(--orange);font-size:12px;font-weight:700;margin-top:3px}

.nav{display:flex;gap:28px;font-weight:700;font-size:14px;color:var(--blue)}
.nav a:hover{color:var(--orange)}

.header-call{
  background:linear-gradient(135deg,#f28d4c,var(--orange));
  color:#fff;border-radius:10px;padding:13px 20px;
  font-weight:900;font-size:20px;text-align:center;box-shadow:0 10px 25px rgba(232,119,52,.35);
}
.header-call small{display:block;font-size:12px;margin-top:2px}

.hero{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  min-height:620px;
  align-items:center;
  background:
    radial-gradient(circle at 10% 20%, rgba(232,119,52,.12), transparent 22%),
    linear-gradient(90deg,#fff 0%,#fff 48%,#f4f7fb 48%,#f4f7fb 100%);
  border-bottom:3px solid rgba(232,119,52,.35);
  overflow:hidden;
}
.hero-content{padding:70px 6% 60px}
.eyebrow,.section-label{
  color:var(--orange);
  font-weight:900;
  letter-spacing:.4px;
  text-transform:uppercase;
  margin-bottom:12px;
}
.hero h1{
  font-size:clamp(42px,6vw,76px);
  line-height:.98;
  letter-spacing:-2px;
  color:var(--blue);
  max-width:750px;
}
.hero h1::first-line{color:var(--blue)}
.hero-subtitle{
  font-size:22px;
  color:#26364b;
  margin:18px 0 20px;
  font-weight:700;
}
.check-list{list-style:none;margin:20px 0 24px}
.check-list li{
  margin:9px 0;
  font-size:18px;
  font-weight:700;
  color:#22314a;
  display:flex;
  gap:10px;
}
.check-list li:before{
  content:"✓";
  color:var(--orange);
  border:2px solid var(--orange);
  width:22px;height:22px;border-radius:50%;
  display:inline-flex;align-items:center;justify-content:center;
  font-size:13px;flex:none;margin-top:2px;
}
.cta-row{display:flex;gap:18px;flex-wrap:wrap;margin:24px 0}
.btn{
  min-width:250px;
  border-radius:10px;
  padding:16px 22px;
  color:#fff;
  font-weight:900;
  font-size:18px;
  text-align:center;
  box-shadow:var(--shadow);
  text-transform:uppercase;
}
.btn strong{font-size:22px}
.btn-orange{background:linear-gradient(135deg,#f38f4c,var(--orange))}
.btn-blue{background:linear-gradient(135deg,#154d7e,var(--blue))}
.location{font-weight:700;color:#24364b}
.location::first-letter{color:var(--blue)}

.hero-image-wrap{
  height:100%;
  position:relative;
  display:flex;
  align-items:stretch;
  justify-content:center;
  min-height:620px;
}
.hero-image{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}
.badge-24{
  position:absolute;
  left:8%;
  bottom:9%;
  width:150px;height:150px;border-radius:50%;
  background:var(--blue);
  border:5px solid #fff;
  color:#fff;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  font-size:38px;
  font-weight:900;
  box-shadow:var(--shadow);
  text-align:center;
}
.badge-24 span{font-size:15px;text-transform:uppercase;line-height:1.1;color:#fff}
.badge-24::first-line{color:var(--orange)}

.trust-band{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:0;
  padding:28px 5%;
  background:#fff;
  border-bottom:1px solid #e2e8f0;
}
.trust-band article{
  text-align:center;
  padding:10px 20px;
  border-right:1px solid #d9e1ea;
}
.trust-band article:last-child{border-right:none}
.trust-band span{
  color:var(--orange);
  font-size:42px;
  display:block;
  margin-bottom:8px;
}
.trust-band h2{
  color:var(--blue);
  text-transform:uppercase;
  font-size:16px;
  line-height:1.15;
}
.trust-band p{color:#475569;font-size:14px;margin-top:6px}

.services-contact{
  display:grid;
  grid-template-columns:1fr .9fr;
  gap:50px;
  padding:50px 6%;
  max-width:1280px;
  margin:auto;
}
.services h2,.why h2{
  color:var(--blue);
  font-size:32px;
  line-height:1.1;
  margin-bottom:24px;
}
.service-item{
  display:grid;
  grid-template-columns:70px 1fr;
  gap:18px;
  margin:24px 0;
  align-items:flex-start;
}
.service-item span{
  width:62px;height:62px;border-radius:50%;
  background:var(--blue);
  color:#fff;display:flex;align-items:center;justify-content:center;
  font-size:30px;
}
.service-item h3{
  color:var(--orange);
  font-size:20px;
  margin-bottom:5px;
  text-transform:uppercase;
}
.service-item p{color:#26364b}

.form-card{
  border:3px solid var(--blue);
  border-radius:14px;
  overflow:hidden;
  box-shadow:var(--shadow);
  align-self:start;
  background:#fff;
}
.form-title{
  background:var(--blue);
  color:#fff;
  text-align:center;
  padding:20px;
}
.form-title h2{
  text-transform:uppercase;
  font-size:25px;
}
.form-title p{
  color:var(--orange);
  font-size:24px;
  font-weight:900;
  text-transform:uppercase;
}
form{padding:22px}
input,select,textarea{
  width:100%;
  padding:15px;
  border:1px solid #cbd5e1;
  border-radius:6px;
  margin-bottom:12px;
  font-size:16px;
  background:#fff;
}
textarea{min-height:95px;resize:vertical}
button{
  width:100%;
  background:linear-gradient(135deg,#f28d4c,var(--orange));
  color:#fff;
  border:none;
  border-radius:7px;
  padding:17px;
  font-size:18px;
  font-weight:900;
  text-transform:uppercase;
  cursor:pointer;
}
button:hover,.btn:hover,.header-call:hover,.final-cta a:hover{filter:brightness(.95)}
.form-note{text-align:center;padding:0 20px 20px;color:#334155;font-weight:700}

.stats{
  background:var(--blue);
  color:#fff;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:0;
  padding:30px 6%;
}
.stats div{
  border-right:1px solid rgba(255,255,255,.25);
  padding:10px 25px;
}
.stats div:last-child{border-right:none}
.stats strong{
  color:var(--orange);
  font-size:32px;
  display:block;
  line-height:1;
}
.stats span{font-weight:700}

.why{
  max-width:1200px;
  margin:auto;
  padding:55px 6%;
  text-align:center;
}
.why-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
  margin-top:30px;
}
.why-grid article{
  border:1px solid #dbe3ec;
  border-radius:12px;
  padding:28px 18px;
  background:#fff;
  box-shadow:0 10px 25px rgba(14,51,84,.06);
}
.why-grid span{
  color:var(--orange);
  font-size:42px;
}
.why-grid h3{
  color:var(--blue);
  margin:12px 0 6px;
  text-transform:uppercase;
}
.why-grid p{color:#475569}

.final-cta{
  background:linear-gradient(135deg,var(--orange),#f05b18);
  color:#fff;
  padding:28px 6%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:25px;
}
.final-cta h2{font-size:30px}
.final-cta p{font-size:18px;font-weight:700}
.final-cta a{
  border:2px solid #fff;
  color:#fff;
  padding:14px 35px;
  border-radius:9px;
  font-size:25px;
  font-weight:900;
  white-space:nowrap;
}

.footer{
  background:linear-gradient(135deg,#082138,var(--blue));
  color:#fff;
  display:grid;
  grid-template-columns:1.3fr 1fr 1fr;
  gap:30px;
  padding:45px 6%;
}
.footer strong{font-size:23px;color:#fff}
.footer p{color:#dce8f2;margin-top:7px}

.mobile-sticky{display:none}

@media(max-width:980px){
  .site-header{position:relative;flex-wrap:wrap}
  .nav{order:3;width:100%;justify-content:center;flex-wrap:wrap}
  .hero{grid-template-columns:1fr;background:#fff}
  .hero-content{padding:42px 5% 25px;text-align:left}
  .hero h1{font-size:46px;letter-spacing:-1px}
  .hero-subtitle{font-size:18px}
  .hero-image-wrap{min-height:360px;height:360px}
  .badge-24{width:120px;height:120px;font-size:30px;bottom:18px}
  .trust-band,.stats,.why-grid{grid-template-columns:repeat(2,1fr)}
  .services-contact{grid-template-columns:1fr;padding:40px 5%}
  .final-cta{flex-direction:column;text-align:center}
}

@media(max-width:640px){
  body{padding-bottom:74px}
  .site-header{padding:14px 16px;align-items:flex-start}
  .brand strong{font-size:24px}
  .logo-mark{width:46px;height:46px}
  .nav{display:none}
  .header-call{font-size:15px;padding:10px 12px;margin-left:auto}
  .hero-content{padding:34px 20px 18px}
  .eyebrow{font-size:14px}
  .hero h1{font-size:38px}
  .check-list li{font-size:15px}
  .cta-row{display:none}
  .hero-image-wrap{height:300px;min-height:300px}
  .hero-image{object-position:center}
  .badge-24{right:18px;left:auto;width:105px;height:105px;font-size:27px}
  .badge-24 span{font-size:11px}
  .trust-band,.stats,.why-grid{grid-template-columns:1fr}
  .trust-band article,.stats div{border-right:none;border-bottom:1px solid #e2e8f0}
  .services h2,.why h2{font-size:26px}
  .service-item{grid-template-columns:54px 1fr}
  .service-item span{width:50px;height:50px;font-size:24px}
  .service-item h3{font-size:17px}
  .form-title h2{font-size:21px}
  .form-title p{font-size:19px}
  .stats{text-align:center}
  .final-cta h2{font-size:24px}
  .final-cta a{font-size:18px;width:100%;text-align:center}
  .footer{grid-template-columns:1fr;text-align:center;padding-bottom:35px}
  .mobile-sticky{
    display:grid;
    grid-template-columns:1fr 1fr;
    position:fixed;
    left:0;right:0;bottom:0;
    z-index:50;
    box-shadow:0 -8px 25px rgba(0,0,0,.2);
  }
  .mobile-sticky a{
    text-align:center;
    color:#fff;
    padding:15px 8px;
    font-weight:900;
    text-transform:uppercase;
  }
  .mobile-sticky a:first-child{background:var(--orange)}
  .mobile-sticky a:last-child{background:var(--blue)}
}
