@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root{
  --navy:#020617;
  --navy-2:#061a3d;
  --blue:#0b7cff;
  --blue-2:#2563eb;
  --sky:#38bdf8;
  --text:#071333;
  --muted:#475569;
  --line:#dbe7f5;
  --bg:#f8fbff;
  --card:#ffffff;
}

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

.site-header{
  height:92px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:32px;
  padding:0 52px;
  background:linear-gradient(90deg,#020617,#061a3d);
  color:#fff;
  position:sticky;
  top:0;
  z-index:20;
  box-shadow:0 12px 28px rgba(2,6,23,.25);
}
.brand img{width:238px;height:auto}
.main-nav{
  display:flex;
  align-items:center;
  gap:34px;
  font-size:14px;
  font-weight:800;
}
.main-nav a{color:#eaf3ff}
.main-nav a:hover{color:var(--sky)}
.nav-cta,.primary-btn,button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border:0;
  border-radius:7px;
  background:linear-gradient(135deg,var(--blue),var(--blue-2));
  color:#fff;
  font-weight:900;
  padding:15px 22px;
  box-shadow:0 18px 32px rgba(11,124,255,.28);
  cursor:pointer;
}
.nav-cta{padding:14px 22px;white-space:nowrap}

.hero{
  min-height:610px;
  position:relative;
  display:flex;
  align-items:center;
  padding:78px 52px 112px;
  color:#fff;
  background:url('images/hero-server.jpg') center/cover no-repeat;
  overflow:hidden;
}
.hero:after{
  content:"";
  position:absolute;
  left:-4%;
  right:-4%;
  bottom:-54px;
  height:110px;
  background:var(--bg);
  border-radius:50% 50% 0 0/100% 100% 0 0;
  z-index:2;
}
.hero-shade{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,rgba(2,6,23,.98) 0%,rgba(2,6,23,.83) 38%,rgba(2,6,23,.18) 100%),
    linear-gradient(180deg,rgba(2,6,23,.3),rgba(2,6,23,.35));
}
.hero-content{
  position:relative;
  z-index:3;
  width:min(620px,100%);
}
.hero h1{
  font-size:clamp(46px,5.8vw,70px);
  line-height:1.02;
  letter-spacing:-.06em;
  margin:0 0 22px;
}
.hero-intro{
  font-size:21px;
  color:#e0f2fe;
  margin:0 0 24px;
}
.hero-list{
  list-style:none;
  padding:0;
  margin:0 0 30px;
  display:grid;
  gap:8px;
  color:#f8fafc;
  font-weight:650;
}
.hero-list li{
  display:flex;
  align-items:center;
  gap:11px;
}
.hero-list li:before{
  content:"✓";
  display:inline-grid;
  place-items:center;
  width:18px;
  height:18px;
  border-radius:50%;
  background:var(--blue);
  color:white;
  font-size:12px;
  font-weight:900;
}

.section{
  padding:34px 52px 64px;
}
.section-heading{
  max-width:850px;
  margin:0 auto 28px;
  text-align:center;
}
.section-heading h2{
  font-size:clamp(32px,4vw,42px);
  line-height:1;
  letter-spacing:-.045em;
  margin:0 0 10px;
}
.section-heading p{
  margin:0;
  color:#1e2c54;
  font-size:17px;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  max-width:1440px;
  margin:0 auto;
}
.service-card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 18px 38px rgba(15,23,42,.08);
  transition:transform .2s ease,box-shadow .2s ease;
}
.service-card:hover{
  transform:translateY(-5px);
  box-shadow:0 28px 50px rgba(15,23,42,.13);
}
.service-image{
  height:168px;
  position:relative;
  overflow:hidden;
}
.service-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.service-icon{
  position:absolute;
  left:18px;
  bottom:-18px;
  display:grid;
  place-items:center;
  width:54px;
  height:54px;
  border-radius:8px;
  background:var(--blue);
  color:#fff;
  font-weight:900;
  box-shadow:0 12px 24px rgba(11,124,255,.35);
  border:3px solid #fff;
}
.service-body{
  padding:36px 18px 22px;
}
.service-body h3{
  min-height:60px;
  margin:0 0 14px;
  font-size:21px;
  line-height:1.18;
  letter-spacing:-.025em;
}
.service-body p{
  color:#18264c;
  margin:0 0 20px;
  font-size:15px;
}
.service-body a{
  color:var(--blue-2);
  font-weight:900;
  font-size:14px;
}

.why-band{
  padding:34px 52px 44px;
  background:linear-gradient(90deg,#020617,#07275b,#061a3d);
  color:#fff;
}
.why-band h2{
  text-align:center;
  margin:0 0 26px;
  font-size:32px;
  letter-spacing:-.04em;
}
.why-grid{
  max-width:1240px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:42px;
}
.why-grid article{
  display:grid;
  grid-template-columns:78px 1fr;
  gap:20px;
  align-items:center;
}
.why-icon{
  width:72px;
  height:72px;
  border-radius:50%;
  display:grid;
  place-items:center;
  font-size:30px;
  font-weight:900;
  background:linear-gradient(135deg,var(--blue),var(--blue-2));
  box-shadow:0 18px 38px rgba(11,124,255,.25);
}
.why-grid h3{margin:0 0 8px;font-size:18px}
.why-grid p{margin:0;color:#dbeafe;font-size:14px}

.testimonials-section{
  background:linear-gradient(180deg,#fff,#eef7ff);
  padding-top:34px;
}
.testimonial-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
  max-width:1060px;
  margin:0 auto 30px;
}
blockquote{
  margin:0;
  position:relative;
  background:rgba(255,255,255,.82);
  border:1px solid var(--line);
  border-radius:10px;
  padding:26px 40px;
  box-shadow:0 10px 28px rgba(30,64,175,.05);
}
blockquote span{
  color:var(--blue);
  font-size:56px;
  line-height:0;
  font-weight:900;
}
blockquote p{
  margin:0 0 14px;
  color:#14234b;
  font-size:15px;
}
blockquote cite{
  color:#0f1f45;
  font-style:normal;
  font-weight:800;
  font-size:13px;
}
.partner-strip{
  max-width:1180px;
  margin:0 auto;
  padding:24px 28px;
  border-top:1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:space-around;
  gap:22px;
  flex-wrap:wrap;
  color:#0f1f45;
  font-size:20px;
}
.partner-strip strong{
  opacity:.9;
}

.contact-band{
  background:linear-gradient(135deg,#020617,#06245a);
  padding:54px 52px 36px;
}
.contact-grid{
  max-width:1120px;
  margin:auto;
  display:grid;
  grid-template-columns:1.1fr .95fr;
  gap:20px;
}
.contact-panel{
  background:rgba(13,48,107,.74);
  border:1px solid rgba(147,197,253,.16);
  border-radius:12px;
  padding:28px;
  color:#fff;
  box-shadow:0 25px 60px rgba(2,6,23,.25);
}
.contact-panel h2{
  font-size:25px;
  margin:0 0 6px;
}
.contact-panel p{
  color:#e0f2fe;
  margin:0 0 18px;
}
.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-bottom:10px;
}
input,select,textarea{
  width:100%;
  border:1px solid #bfd7f5;
  background:#f8fbff;
  color:#0f172a;
  padding:11px 12px;
  border-radius:4px;
  font:inherit;
  font-size:14px;
}
textarea{
  min-height:92px;
  resize:vertical;
  margin-bottom:12px;
}
button{
  padding:12px 22px;
  border-radius:5px;
}
.success-message{
  background:#dcfce7;
  color:#14532d;
  padding:11px 14px;
  border-radius:6px;
  margin-bottom:12px;
  font-weight:800;
}
.contact-info{
  padding:34px;
}
.contact-item{
  display:grid;
  grid-template-columns:48px 1fr;
  gap:18px;
  align-items:start;
  margin-top:26px;
}
.contact-item span{
  font-size:34px;
  color:#bfdbfe;
}
.contact-item strong{
  display:block;
  margin-bottom:4px;
}
.contact-item p{
  font-size:18px;
  margin:0;
  color:#fff;
}

.site-footer{
  background:linear-gradient(90deg,#020617,#061a3d);
  color:#dbeafe;
  padding:24px 52px;
}
.footer-inner{
  max-width:1240px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
  font-size:13px;
}
.footer-inner p{margin:0}
.footer-inner div{
  display:flex;
  gap:34px;
}
.footer-inner a:hover{color:var(--sky)}

@media(max-width:1180px){
  .services-grid{grid-template-columns:repeat(3,1fr)}
  .main-nav{gap:18px}
}
@media(max-width:900px){
  .site-header{height:auto;padding:18px 24px;flex-direction:column;align-items:flex-start}
  .main-nav{flex-wrap:wrap}
  .nav-cta{display:none}
  .hero{padding:70px 24px 110px}
  .section,.why-band,.contact-band{padding-left:24px;padding-right:24px}
  .services-grid{grid-template-columns:repeat(2,1fr)}
  .why-grid,.testimonial-grid,.contact-grid{grid-template-columns:1fr}
}
@media(max-width:580px){
  .brand img{width:210px}
  .services-grid{grid-template-columns:1fr}
  .form-row{grid-template-columns:1fr}
  .hero h1{font-size:42px}
  .partner-strip{font-size:16px;justify-content:flex-start}
}

.error-message{background:#fee2e2;color:#7f1d1d;padding:11px 14px;border-radius:6px;margin-bottom:12px;font-weight:800}

.form-row.single-field{grid-template-columns:1fr}
