
:root{
  --blue:#082b55;
  --blue2:#0d4f8b;
  --light:#f5f8fc;
  --text:#17202b;
  --muted:#667085;
  --yellow:#ffc928;
  --white:#ffffff;
  --border:#e6ebf2;
  --shadow:0 18px 50px rgba(8,43,85,.12);
}

*{
  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.6;
}

a{
  text-decoration:none;
  color:inherit;
}

img{
  max-width:100%;
}

.container{
  width:min(1160px,92%);
  margin:auto;
}

header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.97);
  border-bottom:1px solid var(--border);
  backdrop-filter:blur(12px);
}

.nav{
  min-height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.logo{
  width:54px;
  height:54px;
  border-radius:50%;
  object-fit:contain;
  background:#fff;
}

.brand-title{
  font-size:20px;
  font-weight:900;
  color:var(--blue);
  letter-spacing:.3px;
}

.brand-small{
  display:block;
  font-size:11px;
  color:#667085;
  font-weight:700;
  letter-spacing:1.3px;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:22px;
  font-weight:700;
  font-size:14px;
}

.btn{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  gap:8px;
  padding:14px 21px;
  border-radius:10px;
  font-weight:800;
  transition:.2s;
}

.btn:hover{
  transform:translateY(-2px);
}

.btn-primary{
  background:var(--yellow);
  color:#152235;
}

.btn-blue{
  background:var(--blue);
  color:white;
}

.btn-outline{
  border:1px solid rgba(255,255,255,.5);
  color:#fff;
}

.hero{
  background:
    radial-gradient(circle at 80% 10%,rgba(52,139,220,.45),transparent 34%),
    linear-gradient(135deg,#061e3b,#0a4176);
  color:white;
  padding:90px 0 80px;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.25fr .75fr;
  gap:48px;
  align-items:center;
}

.kicker{
  color:#ffd34d;
  font-size:13px;
  font-weight:900;
  letter-spacing:1.5px;
  text-transform:uppercase;
  margin-bottom:14px;
}

h1{
  font-size:clamp(40px,6vw,68px);
  line-height:1.02;
  letter-spacing:-2px;
  margin-bottom:22px;
}

.hero p{
  max-width:700px;
  font-size:19px;
  color:#dbe8f5;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:28px;
}

.hero-points{
  display:flex;
  flex-wrap:wrap;
  gap:18px;
  margin-top:28px;
  color:#e9f2fb;
  font-size:14px;
  font-weight:700;
}

.contact-card{
  background:white;
  color:var(--text);
  padding:30px;
  border-radius:20px;
  box-shadow:0 25px 70px rgba(0,0,0,.25);
}

.contact-card h2{
  color:var(--blue);
  font-size:25px;
  margin-bottom:10px;
}

.contact-item{
  padding:15px 0;
  border-bottom:1px solid var(--border);
}

.contact-item strong{
  display:block;
  color:var(--blue);
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.7px;
}

.contact-item a{
  font-size:18px;
  font-weight:800;
}

.trust{
  background:white;
  box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.trust-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
}

.trust-item{
  text-align:center;
  padding:25px 12px;
  border-right:1px solid var(--border);
}

.trust-item:last-child{
  border-right:0;
}

.trust-item strong{
  display:block;
  color:var(--blue);
  font-size:20px;
}

.trust-item span{
  font-size:13px;
  color:var(--muted);
}

section{
  padding:80px 0;
}

.section-head{
  max-width:760px;
  margin:0 auto 42px;
  text-align:center;
}

.section-head .eyebrow{
  color:var(--blue2);
  text-transform:uppercase;
  letter-spacing:1.4px;
  font-size:12px;
  font-weight:900;
}

.section-head h2{
  color:var(--blue);
  font-size:clamp(30px,4vw,45px);
  line-height:1.1;
  margin:8px 0 14px;
}

.section-head p{
  color:var(--muted);
  font-size:17px;
}

.intro-grid{
  display:grid;
  grid-template-columns:1.3fr .7fr;
  gap:50px;
  align-items:center;
}

.intro-copy h2{
  color:var(--blue);
  font-size:38px;
  line-height:1.15;
  margin-bottom:20px;
}

.intro-copy p{
  color:#4c5969;
  margin-bottom:15px;
}

.premium-card{
  padding:34px;
  border-radius:20px;
  background:linear-gradient(145deg,#082b55,#0d518d);
  color:white;
  box-shadow:var(--shadow);
}

.premium-card .big{
  font-size:54px;
  font-weight:900;
  color:#ffd34d;
  line-height:1;
}

.premium-card h3{
  font-size:25px;
  margin:10px 0;
}

.services{
  background:var(--light);
}

.service-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.service-card{
  background:white;
  padding:28px 22px;
  border-radius:16px;
  border-top:5px solid var(--blue2);
  box-shadow:0 8px 25px rgba(17,40,70,.06);
  transition:.2s;
}

.service-card:nth-child(2){border-top-color:#ef7b45}
.service-card:nth-child(3){border-top-color:#1a9d8f}
.service-card:nth-child(4){border-top-color:#7357c8}
.service-card:nth-child(5){border-top-color:#d44b65}
.service-card:nth-child(6){border-top-color:#cf9c17}
.service-card:nth-child(7){border-top-color:#348bdc}
.service-card:nth-child(8){border-top-color:#52677d}

.service-card:hover{
  transform:translateY(-5px);
  box-shadow:var(--shadow);
}

.service-icon{
  font-size:30px;
  margin-bottom:13px;
}

.service-card h3{
  color:var(--blue);
  font-size:18px;
  margin-bottom:9px;
}

.service-card p{
  font-size:14px;
  color:var(--muted);
}

.process-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}

.step{
  position:relative;
  padding:26px;
  border:1px solid var(--border);
  border-radius:16px;
}

.step-number{
  width:42px;
  height:42px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--blue);
  color:white;
  font-weight:900;
  margin-bottom:15px;
}

.step h3{
  color:var(--blue);
  margin-bottom:7px;
}

.step p{
  color:var(--muted);
  font-size:14px;
}

.cta-banner{
  background:linear-gradient(120deg,#082b55,#1168a8);
  color:white;
  border-radius:24px;
  padding:45px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:25px;
}

.cta-banner h2{
  font-size:34px;
  line-height:1.1;
}

.cta-banner p{
  color:#d8e8f5;
  margin-top:10px;
}

.gallery{
  background:#f8fafc;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}

.gallery-item{
  background:white;
  border-radius:18px;
  padding:10px;
  box-shadow:0 10px 30px rgba(0,0,0,.07);
}

.gallery-item img{
  display:block;
  width:100%;
  height:390px;
  object-fit:contain;
  background:#f1f3f5;
  border-radius:12px;
}

.video-wrap{
  max-width:850px;
  margin:auto;
}

.video-wrap video{
  width:100%;
  max-height:600px;
  border-radius:20px;
  background:#111;
}

.contact-section{
  background:#061e3b;
  color:white;
}

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:45px;
  align-items:start;
}

.contact-section h2{
  font-size:40px;
  line-height:1.1;
  margin-bottom:15px;
}

.contact-section p{
  color:#cbdbea;
}

.contact-list{
  margin-top:25px;
}

.contact-list a{
  display:block;
  font-size:20px;
  font-weight:800;
  margin:12px 0;
}

.form{
  background:white;
  color:var(--text);
  padding:30px;
  border-radius:20px;
}

.form input,
.form textarea{
  width:100%;
  padding:14px;
  border:1px solid #d9e0e8;
  border-radius:9px;
  margin-bottom:12px;
  font:inherit;
}

.form textarea{
  min-height:120px;
  resize:vertical;
}

.form button{
  width:100%;
  border:0;
  cursor:pointer;
}

.zones{
  background:#082b55;
  color:white;
}

.zones h2{
  font-size:35px;
  margin-bottom:15px;
}

.zones p{
  color:#d8e6f2;
  margin-bottom:25px;
}

.zone-links{
  display:flex;
  flex-wrap:wrap;
  gap:9px;
}

.zone-links a{
  padding:9px 12px;
  background:rgba(255,255,255,.09);
  border:1px solid rgba(255,255,255,.12);
  border-radius:7px;
  font-size:13px;
}

.zone-links a:hover{
  background:white;
  color:var(--blue);
}

.seo-links{
  background:#082b55;
  color:white;
  padding:25px 0;
  border-top:1px solid rgba(255,255,255,.12);
}

.seo-links .container{
  display:flex;
  flex-wrap:wrap;
  gap:15px 24px;
}

.seo-links a{
  color:#dcebf7;
  font-size:13px;
}

footer{
  background:#04172d;
  color:#c7d5e4;
  padding:35px 0;
}

.footer-grid{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:25px;
}

footer strong{
  color:white;
}

.stars{
  color:#ffc928;
  letter-spacing:2px;
}

.final-cta{
  text-align:center;
}

.final-cta h2{
  color:var(--blue);
  font-size:38px;
  margin-bottom:12px;
}

.final-cta p{
  color:var(--muted);
  margin-bottom:25px;
}

@media(max-width:900px){
  .nav-links{
    display:none;
  }

  .hero-grid,
  .intro-grid,
  .contact-grid{
    grid-template-columns:1fr;
  }

  .service-grid,
  .process-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .trust-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .cta-banner{
    flex-direction:column;
    align-items:flex-start;
  }
}

@media(max-width:600px){
  .hero{
    padding:65px 0 55px;
  }

  h1{
    font-size:42px;
  }

  section{
    padding:58px 0;
  }

  .service-grid,
  .process-grid,
  .gallery-grid{
    grid-template-columns:1fr;
  }

  .gallery-item img{
    height:300px;
  }

  .trust-grid{
    grid-template-columns:1fr 1fr;
  }

  .footer-grid{
    flex-direction:column;
    text-align:center;
  }

  .brand-title{
    font-size:17px;
  }
}
