:root{
  --brand:#0077be;
  --brand2:#00a8e8;
  --ink:#2c3e50;
  --muted:#555;
  --bgSoft:#f0f9ff;
  --bgSoft2:#e6f7ff;
  --radius:12px;
}
*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen,Ubuntu,sans-serif;
  line-height:1.6;
  color:var(--ink);
  background:#fff;
}
a{color:inherit}
.container{
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
}
.top-bar{
  background:linear-gradient(135deg,var(--brand) 0%,var(--brand2) 100%);
  color:#fff;
  padding:.8rem 20px;
  text-align:center;
  font-size:.95rem;
}
.top-bar strong{color:#fff;font-weight:700;}
header{
  background:#fff;
  padding:1.1rem 0;
  box-shadow:0 2px 8px rgba(0,119,190,.10);
  position:sticky;
  top:0;
  z-index:100;
}
.header-content{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:1rem;
}
.logo-section{display:flex;flex-direction:column;}
.logo{font-size:1.55rem;font-weight:800;color:var(--brand);letter-spacing:.2px;}
.company{font-size:.92rem;color:#666;}
.nav-links{
  display:flex;
  gap:1rem;
  flex-wrap:wrap;
  align-items:center;
}
.nav-links a{
  text-decoration:none;
  padding:.55rem .75rem;
  border-radius:10px;
  color:#1f2d3d;
  font-weight:600;
  font-size:.98rem;
  transition:background .2s, transform .2s;
}
.nav-links a:hover{
  background:rgba(0,119,190,.08);
  transform:translateY(-1px);
}
.contact-header{display:flex;align-items:center;gap:1.2rem;}
.phone-button{
  background:linear-gradient(135deg,var(--brand) 0%,var(--brand2) 100%);
  color:#fff;
  padding:.9rem 1.6rem;
  border-radius:10px;
  text-decoration:none;
  font-weight:800;
  font-size:1.05rem;
  transition:transform .25s, box-shadow .25s;
  box-shadow:0 4px 15px rgba(0,119,190,.28);
  white-space:nowrap;
}
.phone-button:hover{
  transform:translateY(-2px);
  box-shadow:0 6px 20px rgba(0,119,190,.45);
}
.hero{
  position:relative;
  height:560px;
  background:
    linear-gradient(135deg, rgba(0,119,190,.90), rgba(0,168,232,.85)),
    url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?q=80&w=2000') center/cover;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  text-align:center;
  padding:20px;
}
.hero-content{max-width:920px;}
.hero h1{
  font-size:3.1rem;
  margin-bottom:1.3rem;
  font-weight:900;
  line-height:1.15;
  text-shadow:2px 2px 4px rgba(0,0,0,.28);
}
.hero p{
  font-size:1.35rem;
  margin-bottom:2.2rem;
  font-weight:300;
  text-shadow:1px 1px 2px rgba(0,0,0,.28);
}
.hero-cta{
  display:inline-block;
  background:#fff;
  color:var(--brand);
  padding:1.05rem 2.4rem;
  border-radius:12px;
  text-decoration:none;
  font-weight:900;
  font-size:1.12rem;
  transition:transform .25s, box-shadow .25s;
  box-shadow:0 4px 20px rgba(0,0,0,.20);
}
.hero-cta:hover{
  transform:translateY(-3px);
  box-shadow:0 6px 30px rgba(0,0,0,.30);
}
main section{
  padding:70px 0;
}
h2{
  font-size:2.45rem;
  margin-bottom:1.2rem;
  color:var(--brand);
  font-weight:900;
}
.intro-text{
  font-size:1.18rem;
  color:var(--muted);
  margin-bottom:3rem;
  line-height:1.9;
}
.image-text-section{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:4rem;
  align-items:center;
  margin-bottom:4.5rem;
}
.image-text-section img{
  width:100%;
  height:400px;
  object-fit:cover;
  border-radius:var(--radius);
  box-shadow:0 8px 30px rgba(0,119,190,.15);
}
.text-content h3{
  font-size:1.75rem;
  color:var(--brand);
  margin-bottom:1.1rem;
  font-weight:900;
}
.text-content ul{list-style:none;padding:0;}
.text-content li{
  padding:.75rem 0;
  padding-left:2rem;
  position:relative;
  font-size:1.03rem;
}
.text-content li:before{
  content:"✓";
  position:absolute;
  left:0;
  color:var(--brand2);
  font-weight:900;
  font-size:1.2rem;
}
.band{
  background:linear-gradient(135deg,var(--bgSoft) 0%,var(--bgSoft2) 100%);
}
.services-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:2.2rem;
  margin-top:2.2rem;
}
.service-card{
  background:#fff;
  padding:2.3rem;
  border-radius:var(--radius);
  box-shadow:0 4px 20px rgba(0,119,190,.10);
  border-top:5px solid var(--brand);
  transition:transform .25s, box-shadow .25s;
}
.service-card:hover{
  transform:translateY(-5px);
  box-shadow:0 8px 30px rgba(0,119,190,.20);
}
.service-card h3{
  color:var(--brand);
  margin-bottom:.75rem;
  font-size:1.35rem;
  font-weight:900;
}
.service-icon{font-size:2.4rem;margin-bottom:.9rem;}
.benefits-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:2.4rem;
  margin-top:2.4rem;
}
.benefit-card{
  text-align:center;
  padding:2rem;
  background:linear-gradient(135deg,var(--bgSoft) 0%, #fff 100%);
  border-radius:var(--radius);
  transition:transform .25s;
}
.benefit-card:hover{transform:translateY(-5px);}
.benefit-icon{font-size:3rem;margin-bottom:1rem;}
.benefit-card h3{color:var(--brand);margin-bottom:.5rem;font-size:1.25rem;font-weight:900;}
.industries-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:1.1rem;
  margin-top:2rem;
}
.industry-item{
  background:#fff;
  padding:1.1rem 1.2rem;
  text-align:center;
  border-radius:12px;
  box-shadow:0 2px 10px rgba(0,119,190,.10);
  font-weight:700;
}
.form-container{
  max-width:760px;
  margin:2.2rem auto 0;
  background:linear-gradient(135deg,var(--bgSoft) 0%,var(--bgSoft2) 100%);
  padding:3rem;
  border-radius:var(--radius);
  box-shadow:0 8px 30px rgba(0,119,190,.15);
}
.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:1.2rem;
}
.form-group{margin-bottom:.2rem;}
.form-group.full-width{grid-column:1/-1;}
label{
  display:block;
  margin-bottom:.45rem;
  font-weight:900;
  color:var(--brand);
}
input, textarea, select{
  width:100%;
  padding:.95rem;
  border:2px solid #b3e0ff;
  border-radius:10px;
  font-size:1rem;
  font-family:inherit;
  background:#fff;
  transition:border-color .2s, box-shadow .2s;
}
input:focus, textarea:focus, select:focus{
  outline:none;
  border-color:var(--brand);
  box-shadow:0 0 0 4px rgba(0,119,190,.12);
}
textarea{resize:vertical;min-height:120px;}
.submit-btn{
  width:100%;
  background:linear-gradient(135deg,var(--brand) 0%,var(--brand2) 100%);
  color:#fff;
  padding:1.1rem;
  border:none;
  border-radius:12px;
  font-size:1.12rem;
  font-weight:900;
  cursor:pointer;
  transition:transform .25s, box-shadow .25s;
  box-shadow:0 4px 20px rgba(0,119,190,.30);
  margin-top:.8rem;
}
.submit-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 6px 30px rgba(0,119,190,.50);
}
.form-hint{
  font-size:.95rem;
  color:#456;
  margin-top:12px;
}
.form-hint a{color:var(--brand);font-weight:800;text-decoration:none;}
.form-hint a:hover{text-decoration:underline;}
.certifications-section{
  text-align:center;
}
.cert-badges{
  display:flex;
  justify-content:center;
  gap:2rem;
  flex-wrap:wrap;
  margin-top:1.5rem;
}
.cert-badge{
  background:linear-gradient(135deg,var(--bgSoft) 0%, #fff 100%);
  padding:1.1rem 1.4rem;
  border-radius:999px;
  box-shadow:0 2px 12px rgba(0,119,190,.10);
  color:var(--brand);
  font-weight:900;
}
footer{
  background:linear-gradient(135deg,var(--brand) 0%, #005a8d 100%);
  color:#fff;
  padding:3.5rem 0 2rem;
}
.footer-content{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:2.2rem;
  margin-bottom:2rem;
}
.footer-section h4{
  margin-bottom:1rem;
  font-size:1.2rem;
  color:#b3e0ff;
  font-weight:900;
}
.footer-section p, .footer-section a{
  color:#e6f7ff;
  text-decoration:none;
  line-height:1.9;
}
.footer-section a:hover{color:#fff;text-decoration:underline;}
.footer-phone{
  font-size:1.5rem;
  color:#fff;
  font-weight:900;
}
.footer-bottom{
  text-align:center;
  padding-top:1.5rem;
  border-top:1px solid rgba(255,255,255,.2);
  color:#b3e0ff;
  font-weight:600;
}
.small-links{display:flex;gap:14px;flex-wrap:wrap;margin-top:10px;}
.small-links a{font-weight:800;}
.notice{
  background:rgba(0,0,0,.06);
  padding:.8rem 1rem;
  border-radius:12px;
  margin-top:1rem;
  color:#244;
}
@media (max-width: 860px){
  .hero{height:470px;}
  .hero h1{font-size:2.2rem;}
  .image-text-section{grid-template-columns:1fr;gap:2rem;}
  .form-grid{grid-template-columns:1fr;}
  header{padding:1rem 0;}
}
