/* =========================
   Premium / Executive Styles
   ========================= */

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:"Manrope",system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  background:#fff;
  color:#0b1325;
  line-height:1.65;
  letter-spacing:-0.01em;
}

/* Remove default underlines globally, we style links ourselves */
a{ text-decoration:none; color:inherit; }
a:hover{ text-decoration:none; }

/* Layout */
.container{max-width:1180px;margin:auto;padding:0 20px}
.section{padding:86px 0}
.light{background:#f7f8fb}
.muted{opacity:.72}

/* Typography */
h1,h2{
  font-family:"Playfair Display",Georgia,serif;
  letter-spacing:-0.03em;
}
h2{font-size:2.35rem}
.lead{font-size:1.06rem;margin-top:10px}
.leadOnDark{font-size:1.06rem;margin-top:12px;opacity:.86}

/* HEADER */
.header{
  position:sticky;top:0;
  background:rgba(255,255,255,.92);
  backdrop-filter:saturate(180%) blur(14px);
  border-bottom:1px solid rgba(0,0,0,.06);
  z-index:50;
}
.navBar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  height:78px;
}
.brand{
  display:flex;
  gap:12px;
  align-items:center;
}
.logoWrap img{
  width:44px;height:44px;
  border-radius:999px;
}
.brandText strong{
  display:block;
  font-weight:800;
  letter-spacing:.22em;
  font-size:.9rem;
}
.brandText span{
  display:block;
  font-size:.75rem;
  opacity:.7;
  margin-top:2px;
}

.nav a{
  margin-left:26px;
  font-weight:650;
  opacity:.84;
}
.nav a:hover{opacity:1}
.nav a.active{
  opacity:1;
  position:relative;
}
.nav a.active:after{
  content:"";
  position:absolute;
  left:0;right:0;
  bottom:-10px;
  height:2px;
  border-radius:999px;
  background:#0b1325;
}

/* HERO */
.hero{
  background:linear-gradient(135deg,#0b1a3a,#08142c);
  color:#fff;
}
.heroGrid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:54px;
  padding:105px 0;
  align-items:center;
}
.hero h1{
  font-size:3.25rem;
  line-height:1.05;
}
.heroActions{
  margin-top:24px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.heroBadges{
  margin-top:18px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.badge{
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.14);
  padding:7px 12px;
  border-radius:999px;
  font-size:.86rem;
}

.heroCard{
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.12);
  padding:28px;
  border-radius:22px;
  box-shadow:0 26px 90px rgba(0,0,0,.25);
}
.heroCard .tag{
  display:inline-block;
  font-size:.78rem;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.14);
  opacity:.95;
}
.heroCard h3{margin:12px 0 10px;font-weight:800}
.heroCard ul{padding-left:18px;opacity:.92}
.heroCard li{margin:8px 0}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 20px;
  border-radius:999px;
  font-weight:800;
  font-size:.95rem;
  transition:transform .12s ease, box-shadow .12s ease, opacity .12s ease;
}
.btn:active{transform:translateY(1px)}
.primary{
  background:#fff;
  color:#08142c;
  box-shadow:0 20px 70px rgba(0,0,0,.22);
}
.primary:hover{box-shadow:0 26px 90px rgba(0,0,0,.26)}
.ghost{
  border:1px solid rgba(255,255,255,.34);
  color:#fff;
  opacity:.95;
}
.ghost:hover{opacity:1}

/* Cards / grids */
.grid3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
  margin-top:34px;
}
.card{
  background:#fff;
  padding:24px;
  border-radius:22px;
  border:1px solid rgba(0,0,0,.06);
  box-shadow:0 22px 70px rgba(0,0,0,.06);
}
.card h3{
  font-family:"Manrope",sans-serif;
  font-weight:850;
  letter-spacing:-0.02em;
  margin-bottom:8px;
  white-space: nowrap;
}
.card p{opacity:.8}

.pillRow{margin-top:12px;display:flex;gap:8px;flex-wrap:wrap}
.pill{
  background:#eef1f7;
  border:1px solid rgba(0,0,0,.06);
  padding:7px 12px;
  border-radius:999px;
  font-size:.85rem;
}

/* Contact */
.contactGrid{
  display:grid;
  grid-template-columns:1fr 1.05fr;
  gap:40px;
  align-items:start;
}
.contactLeft{max-width:520px}
.contactMiniCard{
  margin-top:18px;
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:18px;
  padding:16px;
  box-shadow:0 18px 60px rgba(0,0,0,.05);
}
.contactMiniTitle{font-weight:800;margin-bottom:6px}
.linkSoft{
  color:#0b1325;
  font-weight:700;
  text-decoration:none;
  border-bottom:1px solid rgba(11,19,37,.18);
  padding-bottom:2px;
}
.linkSoft:hover{border-bottom-color:rgba(11,19,37,.45)}

.contactForm{
  background:#fff;
  padding:28px;
  border-radius:24px;
  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 34px 110px rgba(0,0,0,.10);
}
.fieldRow{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
.field{margin-top:12px}
label{display:block;font-weight:800;margin-bottom:8px;font-size:.9rem}
input,textarea{
  width:100%;
  padding:13px 14px;
  border-radius:12px;
  border:1px solid rgba(0,0,0,.14);
  outline:none;
  font-family:inherit;
  background:#fff;
}
input:focus,textarea:focus{
  border-color:rgba(11,26,58,.45);
  box-shadow:0 0 0 4px rgba(11,26,58,.10);
}
.btnFull{width:100%;margin-top:16px}
.formHint{
  margin-top:10px;
  font-size:.9rem;
  opacity:.7;
}
.formHint span{font-weight:800}

/* FOOTER (Fixed, premium, aligned) */
.footer{
  background:linear-gradient(135deg,#08142c,#020b1f);
  color:#fff;
  padding:56px 0 28px;
}
.footerTop{
  display:flex;
  justify-content:space-between;
  gap:40px;
  padding-bottom:26px;
  border-bottom:1px solid rgba(255,255,255,.12);
}
.footerBrand{
  display:flex;
  gap:14px;
  align-items:flex-start;
  max-width:540px;
}
.footerLogo img{
  width:46px;height:46px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
}
.footerBrandName{
  font-weight:900;
  letter-spacing:-0.01em;
}
.footerBrandDesc{
  margin-top:6px;
  opacity:.78;
}
.footerEmail{
  margin-top:12px;
  display:flex;
  gap:10px;
  align-items:center;
  opacity:.92;
}
.footerEmail span{
  font-weight:800;
  opacity:.85;
}
.linkOnDark{
  color:#fff;
  font-weight:800;
  text-decoration:none;
  border-bottom:1px solid rgba(255,255,255,.18);
  padding-bottom:2px;
}
.linkOnDark:hover{border-bottom-color:rgba(255,255,255,.40)}

.footerCols{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  min-width:360px;
}
.footerCol h4{
  font-weight:900;
  margin-bottom:10px;
}
.footerLink{
  display:block;
  padding:7px 0;
  opacity:.78;
}
.footerLink:hover{opacity:1}

.footerBottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding-top:18px;
  font-size:.88rem;
  opacity:.92;
}
.footerTopLink{
  opacity:.78;
}
.footerTopLink:hover{opacity:1}

/* Responsive */
@media(max-width:980px){
  .heroGrid{grid-template-columns:1fr;gap:26px;padding:78px 0}
  .hero h1{font-size:2.5rem}
  .grid3{grid-template-columns:1fr}
  .contactGrid{grid-template-columns:1fr}
  .fieldRow{grid-template-columns:1fr}
  .footerTop{flex-direction:column}
  .footerCols{min-width:unset;grid-template-columns:1fr 1fr}
}
@media(max-width:560px){
  .footerCols{grid-template-columns:1fr}
  .nav a{margin-left:14px}
}
