:root{
  --navy:#071426;
  --navy-2:#0c1c31;
  --navy-3:#13263a;
  --orange:#ff7300;
  --orange-2:#ff8a24;
  --white:#ffffff;
  --soft:#eef2f6;
  --text:#0a1630;
  --muted:#66717f;
  --line:#dbe2ea;
  --max:1180px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  background:#233548;
  color:var(--text);
}

a{
  color:inherit;
}

.site-shell{
  width:min(100%, var(--max));
  margin:0 auto;
  background:var(--white);
  box-shadow:0 18px 50px rgba(0,0,0,.18);
}

.site-header{
  min-height:86px;
  padding:0 28px;
  display:flex;
  align-items:center;
  gap:24px;
  background:linear-gradient(90deg,#061325,#09182c);
  color:#fff;
}

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

.brand img{
  width:185px;
  max-height:58px;
  object-fit:contain;
}

.main-nav{
  display:flex;
  align-items:center;
  gap:22px;
  margin-left:auto;
}

.main-nav a{
  position:relative;
  padding:30px 0 27px;
  text-decoration:none;
  font-size:14px;
  font-weight:700;
  white-space:nowrap;
}

.main-nav a:hover,
.main-nav a.active{
  color:var(--orange);
}

.main-nav a.active::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:18px;
  height:3px;
  border-radius:3px;
  background:var(--orange);
}

.header-actions{
  display:flex;
  gap:10px;
  margin-left:8px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:44px;
  padding:0 18px;
  border-radius:6px;
  text-decoration:none;
  font-weight:700;
  border:1px solid transparent;
  transition:.2s ease;
}

.btn:hover{
  transform:translateY(-1px);
}

.btn-primary{
  background:var(--orange);
  color:#fff;
  box-shadow:0 8px 18px rgba(255,115,0,.18);
}

.btn-primary:hover{
  background:var(--orange-2);
}

.btn-outline{
  color:#fff;
  border-color:rgba(255,255,255,.5);
  background:rgba(255,255,255,.04);
}

.btn-dark{
  color:#fff;
  background:rgba(6,17,34,.78);
  border-color:rgba(255,255,255,.35);
}

.btn-large{
  min-height:48px;
  padding:0 22px;
}

.hero{
  position:relative;
  min-height:520px;
  overflow:hidden;
  background:var(--navy);
}

.hero-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,
      rgba(1,9,24,.97) 0%,
      rgba(2,10,26,.90) 28%,
      rgba(2,10,26,.56) 50%,
      rgba(2,10,26,.10) 73%,
      rgba(2,10,26,.16) 100%
    );
}

.hero-content{
  position:relative;
  z-index:2;
  width:56%;
  max-width:650px;
  padding:72px 34px 72px 30px;
  color:#fff;
}

.eyebrow{
  margin:0 0 16px;
  color:var(--orange);
  font-size:14px;
  font-weight:800;
  letter-spacing:.02em;
}

.hero h1{
  margin:0;
  font-size:54px;
  line-height:1.02;
  letter-spacing:-1.8px;
}

.hero h1 span{
  display:block;
  color:var(--orange);
}

.hero-text{
  max-width:520px;
  margin:24px 0 0;
  font-size:20px;
  line-height:1.45;
  color:#f0f4f8;
}

.hero-buttons{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:34px;
}

.quick-links{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:10px;
  padding:0 28px 20px;
  margin-top:-56px;
  position:relative;
  z-index:3;
}

.quick-card{
  min-height:238px;
  padding:22px 18px 18px;
  display:flex;
  flex-direction:column;
  background:#fff;
  border:1px solid #e1e6ec;
  border-radius:12px;
  text-decoration:none;
  box-shadow:0 12px 26px rgba(8,23,41,.12);
  transition:.2s ease;
}

.quick-card:hover{
  transform:translateY(-4px);
  box-shadow:0 16px 30px rgba(8,23,41,.17);
}

.quick-card.featured{
  border:2px solid var(--orange);
}

.quick-icon{
  width:54px;
  height:54px;
  margin-bottom:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:var(--navy);
  color:var(--orange);
  font-size:26px;
  font-weight:700;
}

.quick-card.featured .quick-icon{
  background:var(--orange);
  color:#fff;
}

.quick-card h2{
  margin:0 0 10px;
  color:#091832;
  font-size:18px;
}

.quick-card p{
  margin:0;
  color:#4c5968;
  font-size:14px;
  line-height:1.55;
}

.card-arrow{
  width:30px;
  height:30px;
  margin-top:auto;
  align-self:flex-end;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  border:1px solid #8290a0;
  color:#0b1a31;
  font-size:18px;
}

.quick-card.featured .card-arrow{
  border-color:var(--orange);
  color:var(--orange);
}

.site-footer{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:0;
  padding:18px 24px;
  background:#071426;
  color:#f5f7fa;
  font-size:13px;
}

.footer-item{
  padding:4px 18px;
  text-decoration:none;
  border-right:1px solid rgba(255,255,255,.18);
}

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

.site-footer a:hover{
  color:var(--orange);
}

@media (max-width:1120px){
  .site-header{
    flex-wrap:wrap;
    padding-top:14px;
    padding-bottom:14px;
  }

  .main-nav{
    order:3;
    width:100%;
    justify-content:center;
    flex-wrap:wrap;
    gap:18px;
  }

  .main-nav a{
    padding:8px 0;
  }

  .main-nav a.active::after{
    bottom:0;
  }

  .header-actions{
    margin-left:auto;
  }

  .quick-links{
    grid-template-columns:repeat(3,1fr);
    margin-top:-38px;
  }
}

@media (max-width:820px){
  .hero{
    min-height:600px;
  }

  .hero-overlay{
    background:linear-gradient(90deg,
      rgba(1,9,24,.96) 0%,
      rgba(1,9,24,.86) 58%,
      rgba(1,9,24,.46) 100%);
  }

  .hero-content{
    width:72%;
    padding-top:68px;
  }

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

  .quick-links{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:620px){
  body{
    background:#071426;
  }

  .site-shell{
    width:100%;
  }

  .site-header{
    gap:14px;
    padding:14px 16px;
  }

  .brand img{
    width:155px;
  }

  .header-actions{
    width:100%;
    margin-left:0;
  }

  .header-actions .btn{
    flex:1;
    padding-left:10px;
    padding-right:10px;
    font-size:13px;
  }

  .main-nav{
    justify-content:flex-start;
    gap:14px 18px;
  }

  .main-nav a{
    font-size:13px;
  }

  .hero{
    min-height:640px;
  }

  .hero-bg{
    object-position:58% center;
  }

  .hero-overlay{
    background:linear-gradient(90deg,
      rgba(1,9,24,.97) 0%,
      rgba(1,9,24,.88) 72%,
      rgba(1,9,24,.58) 100%);
  }

  .hero-content{
    width:100%;
    padding:58px 20px 72px;
  }

  .hero h1{
    font-size:39px;
    letter-spacing:-1px;
  }

  .hero-text{
    font-size:18px;
  }

  .hero-buttons{
    flex-direction:column;
  }

  .hero-buttons .btn{
    width:100%;
  }

  .quick-links{
    grid-template-columns:1fr;
    margin-top:-28px;
    padding:0 16px 20px;
  }

  .quick-card{
    min-height:auto;
  }

  .site-footer{
    align-items:flex-start;
    flex-direction:column;
  }

  .footer-item{
    width:100%;
    padding:8px 0;
    border-right:0;
    border-bottom:1px solid rgba(255,255,255,.10);
  }

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