:root{
  --navy:#082747;
  --navy2:#04182e;
  --copper:#BD7044;
  --copper2:#E09A6A;
  --light:#F8FAFC;
  --text:#12243A;
  --muted:#62738A;
  --border:#E2E8F0;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  color:var(--text);
  background:#fff;
  line-height:1.6;
}
.container{width:min(1180px,92%);margin:auto}
.site-header{
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--border);
}
.nav{
  height:88px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:25px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
}
.brand-mark{
  width:68px;
  height:52px;
  display:flex;
  align-items:center;
  position:relative;
}
.brand-mark span:first-child{
  font-size:48px;
  line-height:1;
  font-weight:950;
  letter-spacing:-8px;
  color:var(--navy);
}
.brand-mark span:last-child{
  font-size:50px;
  line-height:1;
  font-weight:950;
  letter-spacing:-9px;
  color:var(--copper);
  transform:skew(-8deg) translateX(-2px);
}
.brand-mark:after{
  content:"";
  width:52px;
  height:7px;
  background:linear-gradient(90deg,var(--navy),var(--copper));
  position:absolute;
  left:18px;
  bottom:6px;
  transform:skewX(-28deg);
  border-radius:20px;
}
.brand-text strong{
  display:block;
  color:var(--navy);
  font-size:22px;
  letter-spacing:2.5px;
  line-height:1;
}
.brand-text small{
  display:block;
  color:var(--copper);
  font-size:12px;
  letter-spacing:7px;
  font-weight:800;
  margin-top:5px;
}
nav{display:flex;gap:26px}
nav a{
  color:var(--navy);
  text-decoration:none;
  font-weight:800;
  font-size:14px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 24px;
  background:linear-gradient(135deg,var(--copper),var(--copper2));
  color:#fff;
  text-decoration:none;
  border-radius:50px;
  font-weight:900;
  box-shadow:0 14px 30px rgba(189,112,68,.25);
}
.btn.small{padding:11px 20px;font-size:14px}
.btn.outline{
  background:#fff;
  color:var(--navy);
  border:1px solid var(--border);
  box-shadow:none;
}
.hero{
  position:relative;
  overflow:hidden;
  padding:105px 0 95px;
  background:
    radial-gradient(circle at 86% 28%, rgba(189,112,68,.14), transparent 30%),
    linear-gradient(135deg,#fff 0%,#f4f8fb 56%,#eaf1f7 100%);
}
.hero:before{
  content:"";
  position:absolute;
  right:-210px;
  top:-180px;
  width:600px;
  height:600px;
  border-radius:50%;
  border:42px solid rgba(8,39,71,.08);
}
.hero-grid{
  display:grid;
  grid-template-columns:1.12fr .88fr;
  gap:52px;
  align-items:center;
}
.eyebrow{
  display:inline-block;
  color:var(--copper);
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:13px;
  margin-bottom:14px;
}
h1,h2,h3,h4{margin:0;color:var(--navy);line-height:1.08}
h1{font-size:clamp(42px,6vw,74px);letter-spacing:-.045em}
h2{font-size:clamp(32px,4vw,52px);letter-spacing:-.03em}
h3{font-size:24px}
p{color:var(--muted);font-size:17px}
.hero p{max-width:680px;font-size:19px}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:30px}
.hero-card{
  background:linear-gradient(145deg,var(--navy2),var(--navy));
  color:#fff;
  padding:42px;
  border-radius:34px;
  position:relative;
  overflow:hidden;
  box-shadow:0 28px 80px rgba(8,39,71,.28);
}
.hero-card:after{
  content:"";
  position:absolute;
  width:230px;
  height:230px;
  border:28px solid rgba(255,255,255,.08);
  border-radius:50%;
  right:-80px;
  bottom:-80px;
}
.hero-card h3{color:#fff;font-size:34px}
.hero-card p{color:#cbd8e6}
.growth-icon{
  width:90px;
  height:90px;
  border-radius:24px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,var(--copper),var(--copper2));
  color:#fff;
  font-size:58px;
  font-weight:950;
  margin-bottom:26px;
}
.stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-top:30px;
  position:relative;
  z-index:2;
}
.stats div{
  border:1px solid rgba(255,255,255,.16);
  border-radius:18px;
  padding:18px 12px;
}
.stats strong{display:block;color:#fff;font-size:22px}
.stats span{display:block;color:#cbd8e6;font-size:12px}
.section{padding:90px 0}
.two-col{
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:60px;
}
.section-head{
  max-width:840px;
  margin-bottom:42px;
}
.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.card{
  border:1px solid var(--border);
  border-radius:28px;
  padding:32px;
  background:#fff;
  transition:.25s;
  box-shadow:0 10px 35px rgba(8,39,71,.05);
}
.card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 45px rgba(8,39,71,.10);
}
.icon{
  width:62px;
  height:62px;
  border-radius:18px;
  background:rgba(189,112,68,.12);
  display:grid;
  place-items:center;
  font-size:30px;
  margin-bottom:22px;
}
.dark{
  background:linear-gradient(135deg,var(--navy2),var(--navy));
  color:#fff;
}
.dark h2{color:#fff}
.dark .eyebrow{color:#f0a877}
.benefits{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:16px;
}
.benefits div{
  border:1px solid rgba(255,255,255,.15);
  padding:22px;
  border-radius:22px;
  color:#fff;
  font-weight:900;
  text-align:center;
}
.process{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:14px;
}
.process div{
  padding:25px 18px;
  background:#f8fafc;
  border:1px solid var(--border);
  border-radius:24px;
}
.process span{
  color:var(--copper);
  font-weight:950;
  font-size:22px;
}
.process h4{margin:10px 0;font-size:18px}
.process p{font-size:14px;margin:0}
.industries{background:#f8fafc}
.chips{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}
.chips span{
  padding:13px 18px;
  border-radius:50px;
  background:#fff;
  border:1px solid var(--border);
  color:var(--navy);
  font-weight:900;
}
.contact-box{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:45px;
  background:linear-gradient(135deg,#fff,#f6f9fc);
  border:1px solid var(--border);
  border-radius:34px;
  padding:48px;
  box-shadow:0 20px 60px rgba(8,39,71,.08);
}
.contact-info{
  display:grid;
  gap:14px;
  align-content:center;
}
.contact-info a,.contact-info p{
  margin:0;
  padding:18px 20px;
  border-radius:18px;
  background:#fff;
  border:1px solid var(--border);
  color:var(--navy);
  text-decoration:none;
  font-weight:900;
}
footer{
  background:var(--navy2);
  color:#fff;
  padding:34px 0;
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
}
.footer-brand .brand-text strong{color:#fff}
.footer-brand .brand-mark span:first-child{color:#fff}
.footer-inner p{color:#cbd5e1;margin:0;font-size:14px}

@media(max-width:900px){
  .nav{height:auto;padding:16px 0;flex-wrap:wrap}
  nav{order:3;width:100%;justify-content:center;flex-wrap:wrap}
  .hero-grid,.two-col,.contact-box{grid-template-columns:1fr}
  .cards{grid-template-columns:1fr 1fr}
  .benefits{grid-template-columns:1fr 1fr}
  .process{grid-template-columns:1fr 1fr}
}
@media(max-width:600px){
  .brand-text strong{font-size:18px}
  .brand-text small{font-size:10px}
  .cards,.benefits,.process{grid-template-columns:1fr}
  .hero{padding:70px 0}
  .section{padding:64px 0}
  .contact-box{padding:28px}
  h1{font-size:42px}
}

/* Uploaded Logo Fix */
.brand{
  display:flex;
  align-items:center;
  text-decoration:none;
}

.brand-logo{
  width:230px;
  max-height:70px;
  object-fit:contain;
  display:block;
}

.footer-logo{
  width:210px;
  max-height:70px;
  background:#fff;
  padding:8px 14px;
  border-radius:14px;
}

.footer-inner img{
  filter:none !important;
}

@media(max-width:700px){
  .brand-logo{
    width:180px;
    max-height:60px;
  }
  .footer-logo{
    width:170px;
  }
}

/* Final uploaded logo display fix */
.brand-logo{
  width:300px !important;
  height:auto !important;
  max-height:90px !important;
  object-fit:contain !important;
  display:block !important;
}

.footer-logo{
  width:240px !important;
  height:auto !important;
  max-height:82px !important;
  background:#ffffff !important;
  padding:10px 18px !important;
  border-radius:16px !important;
  object-fit:contain !important;
}

.footer-inner img{
  filter:none !important;
}

.nav{
  min-height:95px !important;
}

@media(max-width:700px){
  .brand-logo{
    width:220px !important;
    max-height:72px !important;
  }
  .footer-logo{
    width:220px !important;
  }
}
