*{box-sizing:border-box}

:root{
  --navy:#22275f;
  --navy-deep:#171b45;
  --orange:#f39220;
  --orange-dark:#dd7f0d;
  --ink:#202632;
  --muted:#66707d;
  --line:#e6e9ee;
  --surface:#ffffff;
  --bg:#f6f8fb;
}

html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:Inter,ui-sans-serif,-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;
  color:var(--ink);
  background:var(--bg);
  line-height:1.6;
}

img{display:block;max-width:100%}

svg{
  width:100%;
  height:100%;
  fill:none;
  stroke:currentColor;
  stroke-width:2.2;
  stroke-linecap:round;
  stroke-linejoin:round;
}

a{color:inherit}

.container{
  width:min(1120px,calc(100% - 40px));
  margin:0 auto;
}

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(255,255,255,.96);
  border-bottom:1px solid rgba(230,233,238,.95);
  backdrop-filter:blur(10px);
}

.nav-wrap{
  height:72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.brand img{
  width:150px;
  height:54px;
  object-fit:contain;
  object-position:left center;
}

.main-nav{
  display:flex;
  gap:28px;
  align-items:center;
}

.main-nav a{
  text-decoration:none;
  color:var(--navy);
  font-size:.95rem;
  font-weight:700;
  position:relative;
}

.main-nav a::after{
  content:"";
  position:absolute;
  left:0;
  right:100%;
  bottom:-7px;
  height:2px;
  background:var(--orange);
  transition:right .2s ease;
}

.main-nav a:hover::after{right:0}

/* Hero */
.hero{
  padding:52px 0;
  background:
    radial-gradient(circle at 78% 25%,rgba(255,255,255,.12),transparent 23%),
    linear-gradient(135deg,#242864 0%,#2f3f7b 52%,#396fa7 100%);
  color:white;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.16fr .84fr;
  align-items:center;
  gap:56px;
}

.eyebrow{
  display:inline-block;
  margin-bottom:10px;
  color:var(--orange);
  text-transform:uppercase;
  letter-spacing:.16em;
  font-size:.75rem;
  font-weight:800;
}

.eyebrow.light{color:#ffb25d}

.hero h1{
  margin:0;
  max-width:660px;
  font-size:clamp(2.6rem,5.2vw,4.8rem);
  line-height:1.03;
  letter-spacing:-.045em;
}

.hero-tagline{
  margin:14px 0 10px;
  color:#ffae4b;
  font-size:1.28rem;
  font-weight:800;
}

.hero-text{
  max-width:610px;
  margin:0;
  color:#e2e6f4;
  font-size:1.08rem;
}

.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:26px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:0 20px;
  border-radius:9px;
  text-decoration:none;
  border:1px solid transparent;
  font:inherit;
  font-weight:800;
  cursor:pointer;
  transition:transform .18s ease,background .18s ease,border-color .18s ease;
}

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

.btn-primary{
  background:var(--orange);
  color:white;
}

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

.btn-secondary{
  background:transparent;
  color:white;
  border-color:rgba(255,255,255,.55);
}

.btn-secondary:hover{
  border-color:white;
  background:rgba(255,255,255,.06);
}

.hero-mark{
  display:flex;
  justify-content:flex-end;
}

.logo-shell{
  width:min(360px,100%);
  background:white;
  padding:24px;
  border-radius:22px;
  box-shadow:0 24px 60px rgba(14,18,60,.23);
}

.logo-shell img{
  width:100%;
  aspect-ratio:1.1/1;
  object-fit:contain;
}

/* Sections */
.section{padding:74px 0}

.intro-strip{
  background:white;
  border-bottom:1px solid var(--line);
}

.intro-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:60px;
  align-items:end;
}

.intro-grid h2,
.section-heading h2,
.about-grid h2,
.contact-copy h2{
  margin:0;
  color:var(--navy);
  font-size:clamp(2rem,4vw,3.05rem);
  line-height:1.1;
  letter-spacing:-.035em;
}

.intro-grid p,
.section-heading p,
.about-grid p,
.contact-copy p{
  color:var(--muted);
}

.intro-grid p{
  margin:0;
  font-size:1.06rem;
}

.section-heading{
  max-width:760px;
  margin-bottom:32px;
}

.section-heading p{margin-bottom:0}

/* Solutions */
.solutions-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.solution-card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:16px;
  padding:24px;
  box-shadow:0 8px 24px rgba(19,27,57,.05);
  transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease;
}

.solution-card:hover{
  transform:translateY(-3px);
  border-color:#d7dceb;
  box-shadow:0 15px 35px rgba(19,27,57,.09);
}

.icon-box{
  width:46px;
  height:46px;
  padding:9px;
  border-radius:12px;
  margin-bottom:18px;
  color:var(--orange);
  background:#fff4e7;
}

.solution-card h3{
  margin:0 0 10px;
  color:var(--navy);
  font-size:1.17rem;
}

.solution-card p{
  margin:0;
  color:var(--muted);
}

/* Delivery */
.delivery{
  background:
    radial-gradient(circle at 88% 8%,rgba(255,255,255,.07),transparent 22%),
    var(--navy-deep);
  color:white;
}

.delivery-grid{
  display:grid;
  grid-template-columns:.93fr 1.07fr;
  gap:64px;
  align-items:start;
}

.delivery-copy h2{
  margin:0 0 20px;
  font-size:clamp(2.2rem,4.5vw,3.4rem);
  line-height:1.05;
  letter-spacing:-.04em;
}

.delivery-copy p{color:#d7dbec}

.delivery-process{
  display:grid;
  gap:12px;
}

.process-item{
  display:grid;
  grid-template-columns:48px 1fr;
  gap:15px;
  align-items:center;
  padding:14px 15px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.055);
}

.process-icon{
  width:40px;
  height:40px;
  padding:8px;
  border-radius:10px;
  background:rgba(243,146,32,.14);
  color:#ffad4f;
}

.process-item strong{
  display:block;
  color:white;
}

.process-item small{
  display:block;
  color:#bfc5dc;
  font-size:.88rem;
  margin-top:2px;
}

/* About */
.about-grid{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:64px;
}

.about-grid p{
  font-size:1.04rem;
  margin-top:0;
}

/* Contact */
.contact-section{
  background:white;
  border-top:1px solid var(--line);
}

.contact-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:58px;
  align-items:start;
}

.contact-line{
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:18px;
}

.contact-line a{
  text-decoration:none;
  color:var(--navy);
  font-weight:800;
}

.contact-icon{
  width:34px;
  height:34px;
  padding:7px;
  border-radius:9px;
  color:var(--orange);
  background:#fff4e7;
}

.contact-form{
  background:var(--bg);
  border:1px solid var(--line);
  border-radius:18px;
  padding:28px;
  box-shadow:0 16px 38px rgba(24,31,73,.07);
}

.contact-form label{
  display:flex;
  flex-direction:column;
  gap:7px;
  margin-bottom:16px;
  color:var(--navy);
  font-weight:700;
  font-size:.92rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select{
  width:100%;
  padding:13px 14px;
  border:1px solid #cfd5df;
  border-radius:9px;
  background:white;
  font:inherit;
  color:var(--ink);
  transition:border-color .18s ease,box-shadow .18s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus{
  outline:none;
  border-color:var(--orange);
  box-shadow:0 0 0 3px rgba(243,146,32,.15);
}

.contact-form textarea{
  min-height:145px;
  resize:vertical;
}

.submit-btn{
  width:100%;
  margin-top:2px;
}

.form-note{
  margin:11px 0 0;
  text-align:center;
  color:var(--muted);
  font-size:.86rem;
}

.hidden-field{
  position:absolute;
  left:-9999px;
  width:1px;
  height:1px;
  overflow:hidden;
}

/* Footer */
footer{
  background:#0f1336;
  color:#d8dced;
  padding:22px 0;
}

.footer-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.footer-brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.footer-brand img{
  width:105px;
  height:42px;
  object-fit:contain;
  background:white;
  border-radius:7px;
}

.footer-brand span{font-size:.9rem}

.footer-links{
  display:flex;
  gap:18px;
}

.footer-links a{
  font-size:.9rem;
  text-decoration:none;
  color:#d8dced;
}

.footer-links a:hover{color:white}

/* Mobile */
@media(max-width:900px){
  .hero-grid,
  .intro-grid,
  .delivery-grid,
  .about-grid,
  .contact-grid{
    grid-template-columns:1fr;
  }

  .hero-mark{justify-content:flex-start}
  .logo-shell{width:300px}
  .solutions-grid{grid-template-columns:1fr 1fr}
  .delivery-grid{gap:36px}
}

@media(max-width:660px){
  .main-nav{display:none}
  .nav-wrap{height:64px}
  .brand img{width:132px;height:48px}
  .hero{padding:40px 0}
  .hero h1{font-size:2.7rem}
  .section{padding:58px 0}
  .solutions-grid{grid-template-columns:1fr}
  .footer-wrap{
    align-items:flex-start;
    flex-direction:column;
  }
  .footer-links{flex-wrap:wrap}
}


/* Success page */
.success-page{
  min-height:100vh;
  display:grid;
  place-items:center;
  padding:30px;
  background:
    radial-gradient(circle at 78% 25%,rgba(255,255,255,.12),transparent 23%),
    linear-gradient(135deg,#242864 0%,#2f3f7b 52%,#396fa7 100%);
}

.success-card{
  width:min(560px,100%);
  background:white;
  border-radius:22px;
  padding:38px;
  text-align:center;
  box-shadow:0 24px 70px rgba(10,15,50,.28);
}

.success-card img{
  width:150px;
  margin:0 auto 22px;
}

.success-card h1{
  margin:0 0 10px;
  color:var(--navy);
  font-size:2.8rem;
}

.success-card p{
  margin:0 auto 24px;
  max-width:420px;
  color:var(--muted);
}
