:root{
  --bg:#05070a;
  --bg-soft:#080b10;
  --bg-softer:#0b0f16;
  --card:#080c12;
  --border:#141b29;
  --accent:#7CFF42;
  --accent-soft:rgba(124,255,66,0.18);
  --accent-strong:#b9ff8f;
  --text:#f9fafb;
  --muted:#9ca3af;
  --radius-lg:20px;
  --radius-md:14px;
  --shadow-lg:0 28px 90px rgba(0,0,0,0.9);
  --shadow-md:0 18px 60px rgba(0,0,0,0.8);
  --ff:"Inter","SF Pro Text",-apple-system,BlinkMacSystemFont,system-ui,sans-serif;
  --max-width:1200px;
}
*,
*::before,
*::after{box-sizing:border-box;}
html,body{
  margin:0;padding:0;
  font-family:var(--ff);
  background:radial-gradient(circle at top,#05070a,#020409 60%);
  color:var(--text);
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block;}
a{color:inherit;}
.container{max-width:var(--max-width);margin:0 auto;padding:0 24px;}
.site-shell{min-height:100vh;display:flex;flex-direction:column;}

/* header */
.site-header{
  position:sticky;top:0;z-index:40;
  backdrop-filter:blur(18px);
  background:linear-gradient(to bottom,rgba(5,7,10,0.97),rgba(5,7,10,0.9));
  border-bottom:1px solid rgba(15,23,42,0.9);
}
.header-inner{
  display:flex;align-items:center;justify-content:space-between;
  padding:16px 0;
}
.brand{display:flex;align-items:center;gap:14px;}
.brand img{height:150px;filter:drop-shadow(0 0 18px rgba(124,255,66,0.65));}
.brand-copy{display:flex;flex-direction:column;line-height:1.15;}
.brand-name{font-size:16px;letter-spacing:0.18em;text-transform:uppercase;color:var(--muted);}
.brand-tagline{font-size:13px;color:var(--accent);}

.nav{display:flex;align-items:center;gap:22px;font-size:13px;}
.nav a{
  text-decoration:none;
  color:var(--muted);
  font-weight:500;
  position:relative;
  padding-bottom:4px;
}
.nav a::after{
  content:"";
  position:absolute;left:0;bottom:0;width:0;height:2px;
  background:linear-gradient(90deg,var(--accent),var(--accent-strong));
  border-radius:999px;
  transition:width .16s ease;
}
.nav a:hover{color:var(--text);}
.nav a:hover::after{width:100%;}

.nav-cta{margin-left:4px;}
.btn-small{
  border-radius:999px;
  border:1px solid rgba(148,163,184,0.6);
  padding:7px 13px;
  background:radial-gradient(circle at top,rgba(148,163,184,0.12),rgba(8,11,16,0.95));
  color:var(--text);
  font-size:11px;
  letter-spacing:0.14em;
  text-transform:uppercase;
  font-weight:600;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  gap:7px;
}
.btn-small span{
  width:8px;height:8px;border-radius:999px;
  background:var(--accent);
  box-shadow:0 0 16px rgba(124,255,66,0.9);
}

/* mobile nav */
.nav-toggle{
  display:none;
  border-radius:999px;
  border:1px solid rgba(148,163,184,0.6);
  padding:7px 10px;
  background:rgba(8,11,16,0.96);
  cursor:pointer;
}
.nav-toggle span{
  display:block;
  width:16px;
  height:2px;
  border-radius:999px;
  background:var(--text);
  position:relative;
}
.nav-toggle span::before,
.nav-toggle span::after{
  content:"";
  position:absolute;left:0;
  width:16px;height:2px;border-radius:999px;background:var(--text);
}
.nav-toggle span::before{top:-5px;}
.nav-toggle span::after{top:5px;}
.nav-mobile{
  display:none;
  flex-direction:column;
  gap:10px;
  padding:8px 0 14px 0;
  font-size:13px;
}
.nav-mobile a{text-decoration:none;color:var(--muted);}
.nav-mobile-open .nav-mobile{display:flex;}
.nav-mobile-open .nav-toggle span{background:transparent;}
.nav-mobile-open .nav-toggle span::before{transform:translateY(5px) rotate(45deg);}
.nav-mobile-open .nav-toggle span::after{transform:translateY(-5px) rotate(-45deg);}

/* hero */
main{flex:1 1 auto;}
.hero{
  padding:40px 0 30px 0;
}
.hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1.25fr) minmax(0,1fr);
  gap:36px;
  align-items:center;
}
.hero-kicker{
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:0.18em;
  color:var(--muted);
  margin-bottom:10px;
}
.hero-title{
  font-size:40px;
  line-height:1.06;
  font-weight:800;
  margin:0 0 16px 0;
}
.hero-sub{
  font-size:14px;
  color:var(--muted);
  max-width:520px;
  margin-bottom:18px;
}
.hero-badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:18px;
}
.badge{
  border-radius:999px;
  border:1px solid rgba(148,163,184,0.55);
  padding:6px 11px;
  font-size:11px;
  display:inline-flex;
  align-items:center;
  gap:6px;
  background:radial-gradient(circle at top,rgba(11,15,22,1),rgba(11,15,22,0.92));
}
.badge-dot{
  width:7px;height:7px;border-radius:999px;background:var(--accent);
  box-shadow:0 0 16px rgba(124,255,66,0.9);
}
.badge strong{color:var(--accent-strong);}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-bottom:18px;
}
.btn-primary{
  border-radius:999px;
  border:none;
  padding:13px 21px;
  background:linear-gradient(135deg,var(--accent-strong),var(--accent));
  color:#022c22;
  font-size:12px;
  letter-spacing:0.14em;
  text-transform:uppercase;
  font-weight:800;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  gap:8px;
  box-shadow:0 16px 50px rgba(34,197,94,0.55);
}
.btn-primary:hover{filter:brightness(1.05);}
.btn-ghost{
  border-radius:999px;
  border:1px solid rgba(148,163,184,0.7);
  padding:11px 18px;
  background:rgba(11,15,22,0.96);
  color:var(--text);
  font-size:12px;
  letter-spacing:0.13em;
  text-transform:uppercase;
  font-weight:600;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.hero-meta{
  font-size:12px;
  color:var(--muted);
}
.hero-meta strong{color:var(--text);}

/* hero card */
.hero-card{
  background:radial-gradient(circle at top,rgba(124,255,66,0.15),#05070a);
  border-radius:var(--radius-lg);
  border:1px solid rgba(20,27,41,0.95);
  box-shadow:var(--shadow-lg);
  padding:18px 18px 16px 18px;
}
.hero-card img{
  border-radius:var(--radius-md);
  margin-bottom:12px;
}
.hero-tag{
  font-size:11px;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:0.16em;
  margin-bottom:4px;
}
.hero-card h3{
  margin:0 0 6px 0;
  font-size:16px;
}
.hero-card p{
  margin:0 0 10px 0;
  font-size:12px;
  color:var(--muted);
}

/* form */
.form{}
.form-row{display:flex;gap:10px;margin-bottom:8px;}
.form-row .field{flex:1 1 0;}
.field-label{
  font-size:11px;
  color:var(--muted);
  margin-bottom:3px;
}
.field-input{
  width:100%;
  border-radius:11px;
  border:1px solid rgba(148,163,184,0.6);
  background:rgba(8,11,16,0.96);
  padding:8px 10px;
  font-size:12px;
  color:var(--text);
  outline:none;
}
.field-input:focus{
  border-color:var(--accent);
  box-shadow:0 0 0 1px rgba(124,255,66,0.35);
}
textarea.field-input{
  resize:vertical;
  min-height:70px;
}
.form-foot{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  margin-top:6px;
}
.form-note{
  font-size:10px;
  color:var(--muted);
}
.form-note span{color:var(--accent-strong);}
.form-error{
  display:none;
  font-size:11px;
  color:#f97373;
  margin-top:4px;
}

/* sections */
.section{padding:16px 0 32px 0;}
.section-header{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:16px;
  margin-bottom:16px;
}
.section-title{font-size:19px;font-weight:700;}
.section-sub{font-size:13px;color:var(--muted);max-width:460px;}
.link-inline{
  font-size:12px;
  color:var(--accent-strong);
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:4px;
}

/* service grid */
.service-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}
.service-card{
  background:var(--bg-soft);
  border-radius:var(--radius-md);
  padding:14px;
  border:1px solid var(--border);
  box-shadow:var(--shadow-md);
}
.service-icon{
  width:28px;height:28px;
  border-radius:11px;
  background:rgba(8,11,16,1);
  border:1px solid rgba(148,163,184,0.55);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:8px;
  font-size:15px;
}
.service-card h3{
  margin:0 0 6px 0;
  font-size:14px;
}
.service-card p{
  margin:0 0 10px 0;
  font-size:12px;
  color:var(--muted);
}
.service-pill{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  font-size:11px;
}
.service-pill span{
  padding:4px 8px;
  border-radius:999px;
  border:1px solid rgba(148,163,184,0.55);
  background:#05070a;
}

/* reviews */
.reviews-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}
.review-card{
  background:var(--bg-soft);
  border-radius:var(--radius-md);
  padding:14px;
  border:1px solid var(--border);
  box-shadow:var(--shadow-md);
  font-size:12px;
}
.review-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:8px;
}
.review-name{font-weight:600;}
.review-stars{color:#facc15;font-size:11px;}
.review-body{color:var(--muted);margin-bottom:8px;}
.review-meta{font-size:11px;color:var(--muted);}

/* split, map, areas */
.split{
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:18px;
  align-items:center;
}
.map-shell{
  border-radius:var(--radius-lg);
  overflow:hidden;
  border:1px solid var(--border);
  box-shadow:var(--shadow-md);
}
.map-shell iframe{display:block;width:100%;height:100%;border:0;}
.area-list{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  font-size:12px;
  color:var(--muted);
  margin-top:10px;
}
.area-pill{
  padding:5px 10px;
  border-radius:999px;
  border:1px solid rgba(148,163,184,0.6);
  background:rgba(8,11,16,0.95);
}

/* contact */
.contact-layout{
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:22px;
  align-items:flex-start;
}
.contact-card{
  background:var(--bg-soft);
  border-radius:var(--radius-lg);
  padding:18px;
  border:1px solid var(--border);
  box-shadow:var(--shadow-md);
  font-size:13px;
}
.contact-meta-row{display:flex;flex-direction:column;gap:8px;margin-top:8px;}
.contact-item{display:flex;justify-content:space-between;gap:10px;font-size:12px;color:var(--muted);}
.contact-item strong{color:var(--text);}
.contact-tag{font-size:11px;color:var(--muted);margin-top:8px;}
.hours-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:6px;font-size:12px;color:var(--muted);}

/* about/blog */
.stack{display:flex;flex-direction:column;gap:12px;font-size:13px;color:var(--muted);}
.stack h2{font-size:16px;color:var(--text);margin:10px 0 4px;}
.featured{display:grid;grid-template-columns:minmax(0,1.05fr) minmax(0,0.95fr);gap:18px;align-items:flex-start;}
.blog-list{display:flex;flex-direction:column;gap:10px;}
.blog-item{
  background:var(--bg-soft);
  border-radius:var(--radius-md);
  padding:12px;
  border:1px solid var(--border);
  box-shadow:var(--shadow-md);
}
.blog-item h3{margin:0 0 4px 0;font-size:14px;}
.blog-meta{font-size:11px;color:var(--muted);margin-bottom:4px;}

/* footer */
.site-footer{
  border-top:1px solid rgba(15,23,42,0.9);
  padding:16px 0 20px 0;
  margin-top:32px;
  font-size:11px;
  color:var(--muted);
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}
.footer-links{display:flex;gap:14px;}

/* responsive */
@media (max-width:960px){
  .hero-grid{grid-template-columns:minmax(0,1fr);}
  .hero-card{order:-1;margin-bottom:10px;}
  .service-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
  .reviews-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
  .split{grid-template-columns:minmax(0,1fr);}
  .contact-layout{grid-template-columns:minmax(0,1fr);}
  .featured{grid-template-columns:minmax(0,1fr);}
}
@media (max-width:780px){
  .header-inner{padding:10px 0;}
  .brand img{height:52px;}
  .nav{display:none;}
  .nav-toggle{display:block;}
  .hero{padding-top:28px;}
  .hero-title{font-size:30px;}
  .service-grid{grid-template-columns:minmax(0,1fr);}
  .reviews-grid{grid-template-columns:minmax(0,1fr);}
}

/* -------- SERVICE ICONS -------- */
.service-icons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.service-icon {
  background: #0f0f0f;
  padding: 16px 20px;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  border: 1px solid #1d1d1d;
  color: #7CFF42;
}

/* -------- ACCORDIONS -------- */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.accordion-item {
  background: #0b0b0b;
  border-radius: 10px;
  border: 1px solid #171717;
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  padding: 18px 22px;
  background: #111;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  border: none;
  outline: none;
}

.accordion-header:hover {
  background: #141414;
}

.accordion-body {
  display: none;
  padding: 20px 26px;
  background: #0d0d0d;
  color: #ddd;
  line-height: 1.7;
}

.accordion-body.show {
  display: block;
}

/* Accordion icon */
.acc-icon {
  margin-right: 12px;
  font-size: 20px;
}

/* Active neon accent line */
.accordion-item.active .accordion-header {
  border-left: 4px solid #7CFF42;
  padding-left: 18px;
}

/* Optional: subtle hover glow */
.accordion-header:hover {
  background: #141414;
  box-shadow: inset 0 0 10px rgba(124, 255, 66, 0.15);
}

body * {
  font-size: 1.00rem !important;
}

/* =========================================================
   PREMIUM MOBILE UPGRADE — ENTLOGIC
   Screen width: 780px and below
   ========================================================= */
@media (max-width: 780px) {

  /* ---- BASE TYPOGRAPHY ---- */
  body {
    font-size: 16.5px;
    line-height: 1.65;
  }

  p, li {
    font-size: 15.5px;
    line-height: 1.65;
  }

  .section-title {
    font-size: 24px;
    line-height: 1.25;
    margin-bottom: 6px;
  }

  .section-sub {
    font-size: 14.5px;
    line-height: 1.55;
  }

  /* ---- HEADER ---- */
  .header-inner {
    padding: 12px 0;
  }

  .brand img {
    height: 68px;
  }

  .brand-name {
    font-size: 14px;
    letter-spacing: 0.16em;
  }

  .brand-tagline {
    font-size: 12px;
  }

  /* ---- MOBILE NAV ---- */
  .nav-mobile {
    padding: 12px 0 18px 0;
    background: rgba(8, 11, 16, 0.96);
    border-bottom: 1px solid rgba(148,163,184,0.15);
  }

  .nav-mobile a {
    padding: 8px 0;
    font-size: 15px;
  }

  /* ---- HERO ---- */
  .hero {
    padding-top: 34px;
    padding-bottom: 22px;
  }

  .hero-title {
    font-size: 32px;
    line-height: 1.15;
  }

  .hero-sub {
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 20px;
  }

  .badge {
    font-size: 12px;
  }

  .btn-primary,
  .btn-ghost {
    font-size: 13px;
    padding: 13px 20px;
  }

  /* ---- SERVICES, ABOUT, ANY STACKED CONTENT ---- */
  .stack {
    font-size: 15.5px;
    line-height: 1.7;
    gap: 16px;
  }

  .featured {
    gap: 22px;
  }

  /* ---- ACCORDIONS ---- */
  .accordion-header {
    font-size: 17px;
    padding: 20px 24px;
  }

  .accordion-body {
    font-size: 15px;
    line-height: 1.65;
    padding: 18px 22px;
  }

  /* ---- CARDS (services, reviews, contact, etc.) ---- */
  .service-card,
  .review-card,
  .contact-card,
  .blog-item {
    padding: 16px;
    border-radius: 16px;
  }

  .service-card h3,
  .blog-item h3 {
    font-size: 16px;
  }

  .service-card p,
  .review-body {
    font-size: 14px;
  }

  /* ---- FOOTER ---- */
  .site-footer {
    font-size: 13.5px;
    padding: 20px 0 24px 0;
  }

  .footer-links {
    gap: 12px;
    font-size: 13.5px;
  }

}

/* Smooth accordion animation */
.accordion-body {
  max-height: 0;
  overflow: hidden;
  padding: 0 26px;
  opacity: 0;
  transition:
    max-height 0.32s ease,
    opacity 0.28s ease,
    padding 0.32s ease;
}

.accordion-body.show {
  max-height: 400px; /* plenty of room */
  opacity: 1;
  padding: 20px 26px;
}

/* Mobile nav slide-down animation */
.nav-mobile {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.nav-mobile-open .nav-mobile {
  max-height: 300px; /* enough for all links */
}

/* Soft neon hover effect for links */
.nav a:hover {
  color: var(--text);
  text-shadow: 0 0 6px rgba(124, 255, 66, 0.35);
}

/* Soft glow for buttons */
.btn-primary:hover {
  box-shadow: 0 0 16px rgba(124, 255, 66, 0.55);
  transform: translateY(-1px);
  transition: all 0.18s ease;
}

.btn-ghost:hover {
  border-color: var(--accent);
  box-shadow: 0 0 12px rgba(124, 255, 66, 0.25);
  transform: translateY(-1px);
}
.blog-search {
  margin-bottom: 18px;
}

.blog-search input {
  width: 100%;
  padding: 11px 14px;
  font-size: 14px;
  border-radius: 12px;
  border: 1px solid rgba(148,163,184,0.6);
  background: rgba(8,11,16,0.96);
  color: var(--text);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}

.blog-search input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(124,255,66,0.35);
}
.blog-item.hidden {
  display: none !important;
}

.no-results {
  display: none;
  text-align: center;
  padding: 16px 0;
  color: var(--muted);
  font-size: 14px;
}
.featured {
  display: block; /* override previous grid just for blog layout */
}

.blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}
/* BLOG PAGE LAYOUT FIX */
.featured {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)) !important;
  gap: 18px !important;
}

/* Blog list should align as grid instead of stacking weirdly */
.blog-list {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)) !important;
  gap: 18px !important;
}

/* SEARCH BAR STYLING */
.blog-search {
  margin: 0 0 20px 0;
}

.blog-search input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  background: #0d0d0d;
  border: 1px solid #1b1f25;
  color: #fff;
  font-size: 14px;
}
.comparison-box {
  display: flex;
  gap: 20px;
  background: #0e0e0e;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  padding: 20px;
  margin: 18px 0 30px;
  flex-wrap: wrap;
}

.comparison-column {
  flex: 1;
  min-width: 250px;
}

.comparison-column h3 {
  color: #b7ff5a; /* neon green highlight */
  font-weight: 700;
  margin-bottom: 8px;
}

.comparison-column p {
  margin: 0;
  line-height: 1.5;
  color: #ccc;
}
/* Article badges */
.badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 14px;
  margin-bottom: 6px;
  user-select: none;
}

/* New badge - green */
.badge.new {
  color: #64ff6a;
  border: 1px solid #64ff6a;
  background-color: rgba(100, 255, 106, 0.08);
}

/* Trending badge - orange */
.badge.trending {
  color: #ffa64d;
  border: 1px solid #ffa64d;
  background-color: rgba(255, 166, 77, 0.08);
}
.trending-badge {
  display: inline-block;
  background: var(--accent);
  color: #022c22;
  font-size: 11px;
  padding: 4px 9px;
  border-radius: 999px;
  margin-left: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.blog-item.trending {
  border: 1px solid var(--accent-strong);
  box-shadow: 0 0 14px rgba(124, 255, 66, 0.25);
  transform: translateY(-3px);
  transition: all 0.28s ease;
}
