:root{
  --bg:#041A2C;
  --navy:#0B3C5D;
  --navy2:#0E4A72;
  --green:#22C55E;
  --green2:#4ADE80;
  --white:#FFFFFF;
  --muted:#7BB8D4;
  --body:#A8CCE0;
  --border:rgba(34,197,94,0.2);
  --card:rgba(11,60,93,0.5)
}

*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  background:radial-gradient(ellipse at 20% 50%,#0B3C5D 0%,#041A2C 55%,#020F1A 100%) fixed;
  color:var(--body);
  font-family:"DM Sans",sans-serif;
  font-weight:300;
  line-height:1.7
}

::-webkit-scrollbar{width:4px}
::-webkit-scrollbar-track{background:var(--bg)}
::-webkit-scrollbar-thumb{background:var(--green);border-radius:2px}
::selection{background:var(--green);color:var(--bg)}

h1,h2,h3,h4{font-family:"Cormorant Garamond",serif;font-weight:600;line-height:1.15;color:var(--white)}

.container{max-width:1280px;margin:0 auto;padding:0 5%}

/* ── Header ───────────────────────────────────── */
.site-header{
  position:fixed;
  top:0;left:0;right:0;
  z-index:9999;
  background:rgba(4,26,44,.98);
  backdrop-filter:blur(20px);
  border-bottom:1px solid var(--border);
  height:84px
}
.nav-wrap{
  width:100%;
  height:84px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:2.5rem
}
.logo{
  flex-shrink:0;
  display:flex;
  align-items:center
}
.logo img{
  height:48px;
  width:auto;
  display:block;
  filter:drop-shadow(0 2px 8px rgba(34,197,94,.35))
}
.main-nav{
  display:flex;
  gap:2rem;
  list-style:none;
  align-items:center
}
.main-nav a{
  text-decoration:none;
  color:var(--body);
  font-size:.78rem;
  letter-spacing:.1em;
  text-transform:uppercase;
  transition:color .3s;
  position:relative;
  white-space:nowrap
}
.main-nav a::after{
  content:"";
  position:absolute;
  bottom:-4px;
  left:0;
  width:0;
  height:1px;
  background:var(--green);
  transition:width .3s
}
.main-nav a:hover{color:var(--green2)}
.main-nav a:hover::after{width:100%}
.main-nav .btn{
  background:var(--green);
  color:var(--bg);
  padding:.6rem 1.4rem;
  border-radius:6px;
  font-weight:600
}
.main-nav .btn::after{display:none}
.main-nav .btn:hover{background:var(--green2);color:var(--bg)}

main{
  padding-top:84px;
  min-height:calc(100vh - 84px)
}

/* ── Hero - FIXED ─────────────────────────────── */
.hero{
  padding:6rem 0 4rem;
  min-height:500px
}
.hero-grid{
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:4rem;
  align-items:center
}
.hero-eyebrow{
  font-size:.75rem;
  letter-spacing:.25em;
  text-transform:uppercase;
  color:var(--green);
  margin-bottom:1.5rem;
  font-weight:500
}
.hero h1{
  font-size:4rem;
  margin-bottom:1.5rem;
  line-height:1.1
}
.hero h1 em{
  font-style:italic;
  color:var(--green2);
  font-weight:400
}
.hero-sub{
  font-size:1.1rem;
  color:var(--muted);
  margin-bottom:2.5rem;
  line-height:1.8;
  max-width:520px
}
.hero-cta{
  display:flex;
  gap:1rem;
  margin-bottom:3rem
}
.btn-primary{
  background:var(--green);
  color:var(--bg);
  padding:1rem 2.2rem;
  border-radius:6px;
  text-decoration:none;
  font-weight:600;
  font-size:.9rem;
  letter-spacing:.05em;
  transition:all .3s;
  display:inline-block
}
.btn-primary:hover{
  background:var(--green2);
  transform:translateY(-2px);
  box-shadow:0 8px 24px rgba(34,197,94,.3)
}
.btn-ghost{
  background:transparent;
  color:var(--green);
  border:1px solid var(--border);
  padding:1rem 2.2rem;
  border-radius:6px;
  text-decoration:none;
  font-weight:600;
  font-size:.9rem;
  letter-spacing:.05em;
  transition:all .3s;
  display:inline-block
}
.btn-ghost:hover{
  border-color:var(--green);
  background:rgba(34,197,94,.06)
}
.hero-stats{
  display:flex;
  gap:3rem
}
.stat-num{
  font-size:1.8rem;
  font-weight:600;
  color:var(--white);
  margin-bottom:.2rem
}
.stat-label{
  font-size:.8rem;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:.1em
}
.hero-visual{
  position:relative;
  min-height:400px;
  background:rgba(11,60,93,0.3);
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center
}
.hero-visual img{
  width:100%;
  height:auto;
  border-radius:12px;
  box-shadow:0 20px 60px rgba(0,0,0,.4);
  display:block
}
.hero-visual:empty::before{
  content:"Hero Image";
  color:var(--muted);
  font-size:.9rem
}

/* ── Footer ───────────────────────────────────── */
.site-footer{
  background:rgba(2,15,26,.9);
  border-top:1px solid var(--border);
  padding:4rem 0 2rem;
  margin-top:6rem
}
.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:3rem;
  margin-bottom:3rem
}
.footer-col h4{
  font-size:1rem;
  color:var(--white);
  margin-bottom:1.2rem;
  font-family:"DM Sans",sans-serif;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.1em
}
.footer-col p{
  font-size:.9rem;
  color:var(--muted);
  line-height:1.8;
  margin-bottom:1rem
}
.footer-col ul{list-style:none}
.footer-col ul li{margin-bottom:.8rem}
.footer-col ul li a{
  color:var(--body);
  text-decoration:none;
  font-size:.9rem;
  transition:color .3s
}
.footer-col ul li a:hover{color:var(--green)}
.footer-bottom{
  border-top:1px solid var(--border);
  padding-top:2rem;
  text-align:center;
  font-size:.85rem;
  color:var(--muted)
}

.section{padding:6rem 0}

/* Mobile */
@media (max-width: 968px) {
  .hero-grid{grid-template-columns:1fr;gap:3rem}
  .hero h1{font-size:2.8rem}
  .hero-visual{order:-1;min-height:300px}
  .main-nav{gap:1.2rem}
  .main-nav a{font-size:.7rem}
  .footer-grid{grid-template-columns:1fr 1fr;gap:2rem}
}
@media (max-width: 768px) {
  .logo img{height:42px}
  .main-nav{gap:1rem}
  .main-nav a{font-size:.68rem}
  .site-header{height:72px}
  .nav-wrap{height:72px}
  main{padding-top:72px;min-height:calc(100vh - 72px)}
  .hero h1{font-size:2.2rem}
  .hero-stats{gap:2rem}
  .footer-grid{grid-template-columns:1fr}
}

.services-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(380px,1fr));gap:2.5rem;margin-top:3rem}
.service-card{background:var(--card);border:1px solid var(--border);border-radius:16px;overflow:hidden;transition:all .3s}
.service-card:hover{border-color:var(--green);transform:translateY(-6px);box-shadow:0 20px 50px rgba(34,197,94,.2)}
.service-img{width:100%;height:220px;overflow:hidden}
.service-img img{width:100%;height:100%;object-fit:cover;transition:transform .5s}
.service-card:hover .service-img img{transform:scale(1.08)}
.service-content{padding:2rem}
.service-content h3{font-size:1.6rem;margin-bottom:.8rem;color:var(--white)}
.service-desc{color:var(--body);line-height:1.7;margin-bottom:1.5rem}
.service-features{list-style:none;padding:0;margin-bottom:1.8rem}
.service-features li{color:var(--muted);padding-left:1.5rem;position:relative;margin-bottom:.7rem;font-size:.95rem}
.service-features li::before{content:"✓";position:absolute;left:0;color:var(--green);font-weight:700}
.btn-ghost{display:inline-block;padding:.7rem 1.5rem;background:transparent;border:1px solid var(--border);color:var(--green);border-radius:8px;text-decoration:none;font-weight:600;transition:all .3s}
.btn-ghost:hover{background:var(--green);border-color:var(--green);color:var(--dark)}
@media (max-width:768px){.services-grid{grid-template-columns:1fr}.service-img{height:180px}}