:root{
  --black:#07090c;
  --black2:#0d1014;
  --black3:#14181d;
  --grey:#8f99a3;
  --grey2:#c5ccd2;
  --line:#2b3239;
  --blue:#147de1;
  --blue-dark:#0b4f91;
  --white:#ffffff;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Inter,Arial,sans-serif;
  background:var(--black);
  color:var(--white);
}

a{
  color:inherit;
}

.site-header{
  height:82px;
  padding:0 6%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:#07090c;
  position:sticky;
  top:0;
  z-index:50;
  border-bottom:1px solid var(--line);
}

.brand{
  display:flex;
  align-items:center;
}

.brand img{
  width:58px;
  height:58px;
  object-fit:contain;
  border-radius:8px;
}

.site-header nav{
  display:flex;
  gap:30px;
  align-items:center;
  font-size:13px;
  font-weight:800;
}

.site-header nav a{
  text-decoration:none;
  color:#e5e9ed;
}

.site-header nav a:hover{
  color:var(--blue);
}

.nav-cta{
  background:var(--blue);
  color:#fff!important;
  padding:13px 19px;
  border-radius:5px;
}

.nav-cta:hover{
  background:var(--blue-dark);
}

/* =========================
   HERO
========================= */

.hero{
  position:relative;
  min-height:720px;
  overflow:hidden;
  background:
    radial-gradient(circle at 75% 40%,#145d9d 0%,#0b3557 22%,#0b1118 48%,#050608 78%);
  color:#fff;
  display:grid;
  grid-template-columns:1.2fr .8fr;
  align-items:center;
  padding:90px 7%;
}

.hero:before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      90deg,
      #050608 0%,
      #050608e8 42%,
      #05060880 68%,
      #05060822 100%
    );
}

.hero-copy{
  position:relative;
  z-index:2;
  max-width:800px;
}

.eyebrow{
  font-size:11px;
  font-weight:900;
  letter-spacing:.2em;
  color:#3d9df2;
}

.hero h1{
  font-size:clamp(48px,7vw,88px);
  line-height:.94;
  letter-spacing:-.06em;
  margin:18px 0 24px;
}

.hero h1 span{
  color:var(--blue);
}

.hero h1:after{
  content:"";
  display:block;
  width:75px;
  height:4px;
  background:var(--blue);
  margin-top:28px;
}

.hero-copy p{
  font-size:18px;
  line-height:1.7;
  color:#cbd3da;
  max-width:700px;
}

.actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin:30px 0;
}

.btn{
  border:0;
  border-radius:5px;
  padding:15px 22px;
  text-decoration:none;
  font-weight:900;
  font-size:13px;
  cursor:pointer;
  display:inline-flex;
  gap:12px;
  align-items:center;
  justify-content:center;
}

.btn.primary{
  background:var(--blue);
  color:#fff;
}

.btn.primary:hover{
  background:var(--blue-dark);
}

.btn.ghost{
  background:transparent;
  border:1px solid #ffffff55;
  color:#fff;
}

.btn.ghost:hover{
  border-color:var(--blue);
  background:#147de122;
}

.trust{
  display:flex;
  gap:24px;
  flex-wrap:wrap;
  color:#aab4bd;
  font-size:11px;
  font-weight:700;
}

.trust span:first-child{
  color:#fff;
}

.hero-logo{
  position:relative;
  z-index:2;
  display:grid;
  place-items:center;
}

.hero-logo img{
  width:min(430px,90%);
  max-height:430px;
  object-fit:contain;
  border-radius:18px;
  background:#fff;
  padding:15px;
  box-shadow:
    0 25px 80px #000,
    0 0 70px #147de144;
}

/* =========================
   GENERAL SECTIONS
========================= */

.section{
  max-width:1500px;
  margin:auto;
  padding:105px 7%;
  background:var(--black);
}

.section-head{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:50px;
  margin-bottom:45px;
}

.section-head h2{
  font-size:clamp(38px,5vw,64px);
  line-height:1;
  letter-spacing:-.055em;
  margin:10px 0;
  color:#fff;
}

.section-head p{
  max-width:520px;
  color:#aab3bb;
  line-height:1.75;
}

/* =========================
   SERVICES
========================= */

.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  background:var(--line);
  border:1px solid var(--line);
}

.card{
  background:var(--black2);
  padding:35px;
  min-height:280px;
}

.card:hover{
  background:#171c22;
}

.card h3{
  font-size:21px;
  margin:22px 0 10px;
  color:#fff;
}

.card p{
  color:#aeb7bf;
  line-height:1.65;
  font-size:14px;
}

.card a{
  color:var(--blue);
  text-decoration:none;
  font-size:12px;
  font-weight:900;
}

/* =========================
   WORK
========================= */

.work-section{
  max-width:none;
  background:#0b0e12;
}

.gallery{
  max-width:1500px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.gallery img{
  width:100%;
  display:block;
  aspect-ratio:4/3;
  object-fit:cover;
}

.gallery-empty{
  grid-column:1/-1;
  min-height:270px;
  display:grid;
  place-items:center;
  text-align:center;
  padding:45px;
  border:1px dashed #3b444d;
  background:#11151a;
  color:#fff;
}

/* =========================
   ABOUT
========================= */

.about{
  background:#07090c;
}

.about-box{
  background:#101419;
  border:1px solid var(--line);
  padding:70px;
  display:grid;
  grid-template-columns:.7fr 1.3fr;
  gap:80px;
  align-items:center;
}

.about-box h2{
  font-size:clamp(38px,5vw,62px);
  line-height:1;
  letter-spacing:-.055em;
  margin:12px 0;
}

.about-box p{
  font-size:17px;
  line-height:1.8;
  color:#c3ccd4;
}

.area{
  margin-top:25px;
  color:#147de1;
  font-weight:900;
}

/* =========================
   CONTACT
========================= */

.contact{
  background:
    linear-gradient(135deg,#050608,#0b3155);
  max-width:none;
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:80px;
  align-items:start;
}

.contact-copy h2{
  font-size:clamp(38px,5vw,64px);
  line-height:1;
  letter-spacing:-.055em;
  margin:15px 0;
}

.contact-copy p{
  color:#c8d2db;
  line-height:1.75;
}

.phone{
  display:inline-block;
  margin-top:20px;
  color:#fff;
  font-size:25px;
  font-weight:900;
  text-decoration:none;
}

.estimate{
  background:#15191e;
  border:1px solid #303840;
  padding:30px;
  border-radius:7px;
  display:grid;
  gap:15px;
}

.estimate label{
  font-size:12px;
  font-weight:900;
  display:grid;
  gap:7px;
}

.estimate input,
.estimate textarea{
  width:100%;
  border:1px solid #39424b;
  border-radius:4px;
  padding:13px;
  font:inherit;
  background:#0a0d10;
  color:#fff;
}

.estimate input:focus,
.estimate textarea:focus{
  outline:none;
  border-color:var(--blue);
  box-shadow:0 0 0 2px #147de122;
}

.estimate textarea{
  min-height:130px;
  resize:vertical;
}

.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:13px;
}

.status{
  min-height:20px;
  font-size:12px;
  font-weight:800;
}

/* =========================
   FOOTER
========================= */

footer{
  background:#030405;
  color:#fff;
  padding:35px 7%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:30px;
  border-top:1px solid #20262c;
}

footer div{
  display:grid;
  gap:5px;
}

footer span{
  color:#7f8993;
  font-size:11px;
}

footer a{
  color:#8e99a3;
  text-decoration:none;
  font-size:11px;
  font-weight:800;
}

footer a:hover{
  color:var(--blue);
}

/* =========================
   MOBILE
========================= */

@media(max-width:900px){

  .site-header{
    height:74px;
  }

  .site-header nav a:not(.nav-cta){
    display:none;
  }

  .hero{
    min-height:auto;
    grid-template-columns:1fr;
    padding:70px 6% 80px;
  }

  .hero-logo{
    margin-top:45px;
  }

  .hero-logo img{
    width:min(300px,75vw);
    max-height:300px;
  }

  .section-head{
    align-items:flex-start;
    flex-direction:column;
  }

  .cards,
  .gallery{
    grid-template-columns:1fr 1fr;
  }

  .about-box,
  .contact{
    grid-template-columns:1fr;
    gap:40px;
  }

  .about-box{
    padding:45px;
  }
}

@media(max-width:560px){

  .site-header{
    padding:0 5%;
  }

  .brand img{
    width:50px;
    height:50px;
  }

  .hero{
    padding:60px 6% 70px;
  }

  .hero h1{
    font-size:48px;
  }

  .hero-logo img{
    width:230px;
    max-height:230px;
  }

  .trust{
    display:grid;
    gap:9px;
  }

  .section{
    padding:75px 6%;
  }

  .cards,
  .gallery{
    grid-template-columns:1fr;
  }

  .about-box{
    padding:30px;
  }

  .contact{
    padding:75px 6%;
  }

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

  footer{
    padding:30px 6%;
  }
}

/* =========================================================
   TRUST / TREX / REVIEWS
========================================================= */

.trust-bar{
  background:#0b0e12;
  border-top:1px solid #2b3239;
  border-bottom:1px solid #2b3239;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  padding:25px 7%;
}

.trust-item{
  padding:8px 25px;
  border-right:1px solid #2b3239;
  display:flex;
  flex-direction:column;
  gap:5px;
}

.trust-item:last-child{
  border-right:0;
}

.trust-item strong{
  color:#fff;
  font-size:15px;
  letter-spacing:.03em;
}

.trust-item span{
  color:#89949e;
  font-size:10px;
  font-weight:800;
  letter-spacing:.08em;
}

.trex-mini strong{
  color:#2f9af0;
}

.trex-section{
  background:
    linear-gradient(135deg,#080a0d 0%,#10151b 55%,#0b3155 100%);
  padding:100px 7%;
  border-bottom:1px solid #2b3239;
}

.trex-content{
  max-width:1250px;
  margin:auto;
  display:grid;
  grid-template-columns:.65fr 1.35fr;
  gap:80px;
  align-items:center;
}

.trex-logo-box{
  display:grid;
  place-items:center;
  min-height:300px;
  background:#050607;
  border:1px solid #303840;
  border-radius:12px;
  padding:40px;
  box-shadow:0 25px 70px #0008;
}

.trex-logo-box img{
  width:min(320px,100%);
  max-height:220px;
  object-fit:contain;
}

.trex-copy h2{
  color:#fff;
  font-size:clamp(38px,5vw,62px);
  line-height:1;
  letter-spacing:-.055em;
  margin:12px 0 25px;
}

.trex-copy p{
  color:#c1cbd3;
  line-height:1.8;
  max-width:720px;
}

.trex-copy .btn{
  margin-top:15px;
}

.review-section{
  background:#0d1014;
  padding:100px 7%;
  border-bottom:1px solid #2b3239;
}

.review-grid{
  max-width:1250px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.review-card{
  background:#151a20;
  border:1px solid #303840;
  padding:30px;
}

.stars{
  color:#147de1;
  font-size:20px;
  letter-spacing:3px;
}

.review-card p{
  color:#c1c9d0;
  line-height:1.7;
  min-height:75px;
}

.review-card strong{
  color:#fff;
  font-size:12px;
}

.review-link{
  text-align:center;
  margin-top:35px;
}

.review-link a{
  color:#3d9df2;
  text-decoration:none;
  font-weight:900;
  font-size:13px;
}

.review-link a:hover{
  color:#fff;
}

@media(max-width:900px){

  .trust-bar{
    grid-template-columns:1fr 1fr;
  }

  .trust-item:nth-child(2){
    border-right:0;
  }

  .trust-item:nth-child(-n+2){
    border-bottom:1px solid #2b3239;
    padding-bottom:20px;
  }

  .trust-item:nth-child(n+3){
    padding-top:20px;
  }

  .trex-content{
    grid-template-columns:1fr;
    gap:40px;
  }

  .trex-logo-box{
    min-height:240px;
  }

  .review-grid{
    grid-template-columns:1fr;
  }

}

@media(max-width:560px){

  .trust-bar{
    grid-template-columns:1fr;
    padding:15px 6%;
  }

  .trust-item,
  .trust-item:nth-child(2),
  .trust-item:nth-child(3){
    border-right:0;
    border-bottom:1px solid #2b3239;
    padding:18px 5px;
  }

  .trust-item:last-child{
    border-bottom:0;
  }

  .trex-section,
  .review-section{
    padding:75px 6%;
  }

  .trex-logo-box{
    padding:25px;
  }

}

