

/* Leaf Shield Premium - original design (not a copy of any competitor) */
:root{
  --bg0:#070b14;
  --bg1:#0b1220;
  --card:rgba(255,255,255,.04);
  --card2:rgba(255,255,255,.03);
  --line:rgba(255,255,255,.12);
  --text:#eaf1fb;
  --muted:#a9b6cc;
  --green:#13b26b;
  --green2:#0f5d3a;
  --shadow:0 18px 60px rgba(0,0,0,.45);
  --r:18px;
  --r2:24px;
  --max:1120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color:var(--text);
  background:
    radial-gradient(900px 500px at 12% 0%, rgba(19,178,107,.20), transparent 60%),
    radial-gradient(900px 500px at 90% 10%, rgba(19,178,107,.12), transparent 60%),
    linear-gradient(180deg, var(--bg0) 0%, var(--bg1) 40%, var(--bg0) 100%);
  line-height:1.5;
}

a{color:inherit}
.container{max-width:var(--max); margin:0 auto; padding:0 18px}

.skip{position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden}
.skip:focus{left:18px; top:18px; width:auto; height:auto; background:#fff; color:#000; padding:10px 12px; border-radius:12px; z-index:9999}

.topbar{
  background:rgba(0,0,0,.24);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.topbar-inner{
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  padding:10px 0; flex-wrap:wrap;
}
.topbar-left{display:flex; align-items:center; gap:10px; color:var(--muted); font-weight:700; font-size:13px}
.topbar-right{display:flex; align-items:center; gap:10px; flex-wrap:wrap}
.topbar-right a{color:var(--muted); text-decoration:none; font-weight:800; font-size:13px}
.topbar-right a:hover{color:var(--text)}
.sep{color:rgba(255,255,255,.25)}
.dot{width:8px; height:8px; border-radius:999px; background:rgba(19,178,107,.8); box-shadow:0 0 0 6px rgba(19,178,107,.18)}

.header{
  position:sticky; top:0; z-index:50;
  backdrop-filter:saturate(160%) blur(10px);
  background:rgba(7,11,20,.52);
  border-bottom:1px solid rgba(255,255,255,.10);
}
.header.elevated{background:rgba(7,11,20,.82)}
.header-inner{display:flex; align-items:center; justify-content:space-between; gap:14px; padding:12px 0}

.brand{display:flex; align-items:center; text-decoration:none}
.brand-logo{
  height:44px; width:auto; display:block;
  border-radius:12px;
  background:#fff;
  padding:8px 10px;
  box-shadow:0 10px 26px rgba(0,0,0,.28);
}

.nav{position:relative}
.navlinks{display:flex; align-items:center; gap:14px}
.navlinks a{color:var(--muted); text-decoration:none; font-weight:800; font-size:14px}
.navlinks a:hover{color:var(--text)}
.nav-toggle{display:none}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  background:linear-gradient(180deg, #16c477 0%, #0fae67 100%);
  color:#05210f;
  padding:12px 16px;
  border-radius:14px;
  text-decoration:none;
  font-weight:950;
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 14px 30px rgba(19,178,107,.24);
}
.btn:hover{filter:brightness(1.03)}
.btn:active{transform:translateY(1px)}
.btn-sm{padding:10px 12px; border-radius:12px; font-size:14px}
.btn-ghost{
  background:transparent;
  color:var(--text);
  border:1px solid rgba(255,255,255,.16);
  box-shadow:none;
}
.btn-ghost:hover{border-color:rgba(19,178,107,.55)}
.btn-block{width:100%}

.hero{
  position:relative;
  padding:44px 0 26px;

 
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;

  color:#fff;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.45);
  pointer-events:none;
}

.hero > *{
  position:relative;
  z-index:2;
}

.hero-grid{
  display:grid;
  grid-template-columns: 1.25fr .85fr;
  gap:18px;
  align-items:start;
}
.pill{
  display:inline-flex; align-items:center; gap:10px;
  padding:8px 12px;
  border:1px solid rgba(19,178,107,.35);
  background:rgba(19,178,107,.08);
  border-radius:999px;
  font-weight:900; font-size:13px;
}
h1{font-size:44px; line-height:1.04; margin:14px 0 12px; letter-spacing:-.4px}
.lead{color:var(--muted); font-size:18px; margin:0 0 18px}
.hero-cta{display:flex; gap:10px; flex-wrap:wrap; margin:18px 0}

.stats{display:flex; gap:12px; flex-wrap:wrap}
.stat{
  min-width:160px;
  padding:12px 14px;
  border-radius:16px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
}
.stat-big{font-weight:950}
.stat-small{color:var(--muted); font-size:12px; margin-top:2px}

.proof{display:grid; gap:8px; margin-top:14px}
.proof-item{display:flex; gap:10px; align-items:flex-start; color:var(--text); font-weight:800}
.check{
  width:22px; height:22px; border-radius:8px;
  display:grid; place-items:center;
  background:rgba(19,178,107,.18);
  border:1px solid rgba(19,178,107,.35);
  color:var(--green);
  font-weight:950;
}

.card{
  border-radius:var(--r2);
  border:1px solid rgba(255,255,255,.10);
  background:var(--card);
  box-shadow:var(--shadow);
}
.card.soft{background:var(--card2); box-shadow:none}
.hero-card .card{padding:18px}
.mini{display:grid; gap:10px; margin-top:12px}
.mini-row{display:flex; align-items:center; justify-content:space-between; gap:10px}
.mini-label{color:var(--muted); font-weight:900; font-size:12px}
.mini-value{text-decoration:none; font-weight:950}
.mini-value:hover{color:var(--green)}
.divider{height:1px; background:rgba(255,255,255,.12); margin:14px 0}
.checklist{list-style:none; padding:0; margin:12px 0}
.checklist li{padding-left:28px; position:relative; margin:10px 0}
.checklist li::before{
  content:"✓";
  position:absolute; left:0; top:0;
  width:18px; height:18px; border-radius:6px;
  display:grid; place-items:center;
  background:rgba(19,178,107,.18);
  border:1px solid rgba(19,178,107,.35);
  color:var(--green);
  font-weight:950; font-size:12px;
}
.tiny{font-size:12px}
.muted{color:var(--muted)}

.badge-row{display:flex; gap:8px; flex-wrap:wrap; margin-top:12px}
.badge{
  font-size:12px;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.03);
  color:var(--muted);
  font-weight:900;
}

.strip{
  border-top:1px solid rgba(255,255,255,.10);
  border-bottom:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.02);
}
.strip-inner{display:flex; align-items:center; justify-content:space-between; gap:12px; padding:14px 0; flex-wrap:wrap}
.strip-title{font-weight:950}
.strip-items{display:flex; gap:10px; flex-wrap:wrap}
.strip-item{
  padding:8px 10px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.02);
  color:var(--muted);
  font-weight:900;
  font-size:13px;
}

.section{padding:54px 0}
.section.alt{
  background:linear-gradient(180deg, rgba(255,255,255,.02), transparent 70%);
  border-top:1px solid rgba(255,255,255,.10);
  border-bottom:1px solid rgba(255,255,255,.10);
}
.section-head{margin-bottom:18px}
.section-head h2{margin:0 0 6px; font-size:30px; letter-spacing:-.2px}
.section-head p{margin:0; color:var(--muted)}

.grid{display:grid; gap:14px}
.cards{grid-template-columns:repeat(4, minmax(0, 1fr))}
.service{padding:18px}
.service .icon{font-size:26px}
.service h3{margin:10px 0 8px}
.service p{margin:0 0 10px; color:var(--muted)}
.service ul{margin:10px 0 0; padding-left:18px; color:var(--muted)}
.service li{margin:8px 0}

.cta-band{
  margin-top:18px;
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  padding:16px 18px;
  border-radius:var(--r2);
  border:1px solid rgba(19,178,107,.35);
  background:rgba(19,178,107,.08);
}
.cta-band h3{margin:0 0 4px}
.cta-band p{margin:0; color:var(--muted)}

.why{grid-template-columns:repeat(3, minmax(0,1fr))}
.two-col{display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-top:16px}
.pad{padding:18px}

.steps{list-style:none; padding:0; margin:0; display:grid; gap:12px}
.step{
  display:flex; gap:12px; align-items:flex-start;
  padding:16px 18px; border-radius:var(--r2);
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.02);
}
.step-num{
  width:36px; height:36px; border-radius:14px;
  display:grid; place-items:center;
  background:rgba(19,178,107,.16);
  border:1px solid rgba(19,178,107,.35);
  color:var(--green);
  font-weight:950;
}
.step-body h3{margin:0 0 4px}
.step-body p{margin:0}

.callout{
  margin-top:16px;
  padding:18px;
  display:flex; align-items:center; justify-content:space-between; gap:12px;
}
.callout-left h3{margin:0 0 6px}
.callout-left p{margin:0}
.callout-right{display:flex; gap:10px; flex-wrap:wrap}

.gallery{grid-template-columns:repeat(4, minmax(0,1fr))}
.media{overflow:hidden}
.media img{width:100%; height:220px; object-fit:cover; display:block; border-radius:var(--r2)}

.testimonials{grid-template-columns:repeat(3, minmax(0,1fr))}
.quote{padding:18px}
blockquote{margin:0; font-weight:900}
figcaption{margin-top:10px; color:var(--muted); font-weight:900; font-size:13px}

.faq{display:grid; gap:12px}
details.card{padding:0}
summary{
  cursor:pointer;
  padding:16px 18px;
  list-style:none;
  font-weight:950;
}
summary::-webkit-details-marker{display:none}
.details-body{padding:0 18px 16px}

.quote-grid{grid-template-columns: 1.25fr .75fr; align-items:start}
.form{padding:18px}
label{display:block; font-weight:950; font-size:13px; margin-bottom:10px}
input, select, textarea{
  width:100%;
  margin-top:8px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(0,0,0,.18);
  color:var(--text);
  padding:12px 12px;
  outline:none;
}
textarea{resize:vertical}
input:focus, select:focus, textarea:focus{border-color:rgba(19,178,107,.55); box-shadow:0 0 0 4px rgba(19,178,107,.12)}
.form-row{display:grid; grid-template-columns:1fr 1fr; gap:12px}

.footer{
  padding:26px 0 88px; /* leave room for sticky bar on mobile */
  border-top:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.14);
}
.footer-inner{display:flex; align-items:center; justify-content:space-between; gap:14px; flex-wrap:wrap}
.footer-brand img{
  height:38px; width:auto;
  border-radius:12px;
  background:#fff;
  padding:7px 9px;
}
.footer-links{display:flex; gap:12px; flex-wrap:wrap}
.footer-links a{color:var(--muted); text-decoration:none; font-weight:900; font-size:13px}
.footer-links a:hover{color:var(--text)}

.fab{
  position:fixed;
  right:18px;
  bottom:92px;
  width:54px; height:54px;
  border-radius:18px;
  display:grid; place-items:center;
  text-decoration:none;
  background:linear-gradient(180deg, #16c477 0%, #0fae67 100%);
  color:#05210f;
  box-shadow:0 18px 36px rgba(19,178,107,.28);
  border:1px solid rgba(255,255,255,.10);
  z-index:60;
}
.fab:hover{filter:brightness(1.03)}
.fab span{font-size:22px}

.stickybar{
  position:fixed;
  left:0; right:0; bottom:0;
  background:rgba(7,11,20,.92);
  border-top:1px solid rgba(255,255,255,.12);
  display:none;
  z-index:55;
}
.stickybar .container{
  max-width:var(--max);
  padding:10px 18px;
  display:grid;
  grid-template-columns:1fr 1fr 1.2fr;
  gap:10px;
}
.sticky-btn{
  display:inline-flex; align-items:center; justify-content:center;
  height:44px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.03);
  color:var(--text);
  text-decoration:none;
  font-weight:950;
}
.sticky-btn.primary{
  background:linear-gradient(180deg, #16c477 0%, #0fae67 100%);
  color:#05210f;
  border-color:rgba(255,255,255,.10);
}

.sr-only{position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0}

/* Responsive */
@media (max-width: 1040px){
  .cards{grid-template-columns:repeat(2, minmax(0,1fr))}
  .gallery{grid-template-columns:repeat(2, minmax(0,1fr))}
}
@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr}
  h1{font-size:38px}
  .why{grid-template-columns:1fr}
  .testimonials{grid-template-columns:1fr}
  .quote-grid{grid-template-columns:1fr}
  .callout{flex-direction:column; align-items:flex-start}
}
@media (max-width: 760px){
  .nav-toggle{
    display:inline-flex; align-items:center; justify-content:center;
    width:44px; height:44px; border-radius:14px;
    border:1px solid rgba(255,255,255,.14); background:rgba(255,255,255,.03);
    color:var(--text);
  }
  .bars{width:18px; height:2px; background:var(--text); position:relative; display:block}
  .bars::before,.bars::after{content:""; position:absolute; left:0; width:18px; height:2px; background:var(--text)}
  .bars::before{top:-6px}
  .bars::after{top:6px}

  .navlinks{
    position:absolute; right:18px; top:62px;
    width:min(340px, calc(100vw - 36px));
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:8px;
    padding:12px;
    border-radius:18px;
    background:rgba(7,11,20,.95);
    border:1px solid rgba(255,255,255,.12);
    box-shadow:var(--shadow);
  }
  .navlinks.open{display:flex}

  .stickybar{display:block}
}
/* ===== SERVICE AREAS SECTION ===== */

.service-areas {
  padding: 70px 20px;
  background: #0c1320;
  text-align: center;
}

.service-areas h2 {
  font-size: 34px;
  color: #ffffff;
  margin-bottom: 10px;
}

.areas-sub {
  color: #9fb3c8;
  margin-bottom: 35px;
}

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.areas-grid span {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 10px 16px;
  border-radius: 999px;
  color: #e6f1ff;
  font-weight: 500;
  transition: 0.3s ease;
}

.areas-grid span:hover {
  background: #16c96b;
  color: #041018;
}
/* ===== SOCIAL FOOTER ===== */

/* ===== PREMIUM SOCIAL ICONS ===== */
.social-footer{
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.social-icon{
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0f1a2d;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.15);
  transition: all 0.35s ease;
}

}

.social-icon img{
  width: 24px;
  height: 24px;
  max-width: 24px;
  object-fit: contain;
  filter: invert(1);
}

}

.social-icon:hover{
  transform: translateY(-4px) scale(1.06);
  background: #16c96b;
  box-shadow: 0 10px 24px rgba(22,201,107,0.35);
}
.social-footer img{
  width: 18px !important;
  height: 18px !important;
  max-width: 18px !important;
  object-fit: contain !important;
  filter: invert(1);
}
/* ===== HEADER SOCIALS NEXT TO LOGO ===== */

.brand-wrap{
  display:flex;
  align-items:center;
  gap:14px;
}

.header-socials{
  display:flex;
  gap:8px;
}

.header-socials a{
  width:34px;
  height:34px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#0f1a2d;
  border-radius:10px;
  border:1px solid rgba(255,255,255,0.15);
  transition:all .3s ease;
}

.header-socials img{
  width:16px;
  height:16px;
  filter:invert(1);
}

.header-socials a:hover{
  transform:translateY(-2px);
  background:#16c96b;
}
