:root{
  --bg:#0b0f14;
  --panel:#0f1620;
  --panel2:#0c121a;
  --text:#e8eef7;
  --muted:#a8b3c4;
  --line:rgba(255,255,255,.10);
  --brand:#72ff3a;      /* neon green */
  --brand2:#5ee7ff;     /* icy blue */
  --shadow: 0 18px 50px rgba(0,0,0,.35);
  --radius:18px;
  --max:1140px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background: radial-gradient(1200px 700px at 15% -10%, rgba(114,255,58,.18), transparent 58%),
              radial-gradient(900px 600px at 110% 5%, rgba(94,231,255,.16), transparent 55%),
              var(--bg);
  color:var(--text);
  line-height:1.5;
}

a{color:inherit;text-decoration:none}
a:hover{opacity:.95}
.container{max-width:var(--max); margin:0 auto; padding:0 18px}
code{background:rgba(255,255,255,.06); border:1px solid var(--line); padding:2px 6px; border-radius:8px}

.topbar{
  position:sticky; top:0; z-index:60;
  backdrop-filter: blur(14px);
  background: rgba(10,14,20,.78);
  border-bottom:1px solid var(--line);
}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; padding:10px 0;
}
.topbar__left{display:flex; align-items:center; gap:10px; flex-wrap:wrap}
.topbar__link{color:var(--muted); font-size:14px}
.pill{
  font-size:12px; padding:6px 10px; border-radius:999px;
  background: rgba(255,255,255,.06);
  border:1px solid var(--line);
}

.header{
  border-bottom:1px solid var(--line);
  background: rgba(11,15,20,.55);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 0; gap:18px;
}
.brand{display:flex; align-items:center}
.brand__logo{
  height:46px; width:auto; border-radius:12px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
}

.nav__toggle{
  display:none;
  background: rgba(255,255,255,.06);
  border:1px solid var(--line);
  color:var(--text);
  padding:10px 12px;
  border-radius:12px;
  font-weight:800;
}
.nav__menu{display:flex; gap:16px; align-items:center}
.nav__menu a{color:var(--muted); font-weight:700}
.nav__menu a:hover{color:var(--text)}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:8px;
  padding:12px 14px;
  border-radius:12px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  color:var(--text);
  font-weight:900;
}
.btn--primary{
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color:#06101a;
  border:none;
}
.btn--ghost{background: rgba(255,255,255,.06)}
.btn--full{width:100%}

.hero{
  position:relative;
  padding:46px 0 28px;
  overflow:hidden;
}
.hero__bg{
  position:absolute; inset:-40px -40px -60px -40px;
  background:
    linear-gradient(180deg, rgba(11,15,20,.20), rgba(11,15,20,.85)),
    url("assets/img/gallery-01.jpg");
  background-size: cover;
  background-position: center;
  filter: saturate(1.08) contrast(1.05);
  transform: scale(1.02);
}
.hero__inner{
  position:relative;
  display:grid;
  grid-template-columns: 1.25fr .9fr;
  gap:22px;
  align-items:stretch;
}

.kicker{
  display:inline-block;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(114,255,58,.25);
  background: rgba(114,255,58,.08);
  color: rgba(232,238,247,.95);
  font-weight:800;
  font-size:12px;
  margin-bottom:10px;
}
.hero h1{font-size:46px; line-height:1.05; margin:0 0 12px; letter-spacing:-.4px}
.lead{color:rgba(232,238,247,.88); font-size:18px; margin:0 0 18px}
.hero__cta{display:flex; gap:12px; flex-wrap:wrap; margin:18px 0}

.trust{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:10px;
  margin-top:14px;
}
.trust__item{
  border:1px solid var(--line);
  background: rgba(255,255,255,.05);
  border-radius:14px;
  padding:10px;
}
.trust__item strong{display:block; font-size:14px}
.trust__item span{color:var(--muted); font-size:12px}

.mini{
  margin-top:14px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.mini__item{
  border:1px solid var(--line);
  background: rgba(0,0,0,.28);
  border-radius:14px;
  padding:10px 12px;
  display:flex; gap:10px; align-items:baseline;
}
.mini__label{color:var(--muted); font-size:12px; font-weight:800}
.mini__value{font-weight:900}

.section{padding:48px 0}
.section--alt{
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0));
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.section__head{margin-bottom:18px}
.section__head h2{margin:0 0 6px; font-size:32px}
.muted{color:var(--muted)}
.fineprint{color:var(--muted); font-size:12px; margin:12px 0 0}

.card{
  background: rgba(255,255,255,.06);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}

.services{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
}
.serviceCard{
  border:1px solid var(--line);
  background: rgba(255,255,255,.05);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}
.serviceCard__icon{
  width:42px; height:42px;
  border-radius:14px;
  display:grid; place-items:center;
  background: rgba(114,255,58,.10);
  border:1px solid rgba(114,255,58,.22);
  margin-bottom:10px;
}
.serviceCard h3{margin:0 0 8px}
.list{margin:10px 0 0; padding-left:18px; color:var(--muted)}
.list li{margin:6px 0}
.link{display:inline-block; margin-top:10px; color:rgba(114,255,58,.92); font-weight:900}

.banner{
  margin-top:16px;
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
}
.banner img{width:100%; height:auto; display:block}

.split{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:18px;
  align-items:start;
}
.ticks{display:grid; gap:8px; margin:12px 0 18px; color:rgba(232,238,247,.86)}
.ticks div{border-left:3px solid rgba(114,255,58,.65); padding-left:10px}

.ctaRow{display:flex; gap:12px; flex-wrap:wrap; margin-top:14px}

.media{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  box-shadow: var(--shadow);
}
.media img{width:100%; height:100%; object-fit:cover; display:block; min-height:320px}

.grid2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
  margin-top:10px;
}
.miniCard{
  border-radius:16px;
  border:1px solid var(--line);
  background: rgba(0,0,0,.22);
  padding:14px;
}
.miniCard h3{margin:0 0 6px; font-size:16px}

.note{
  margin-top:14px;
  border-left:4px solid rgba(94,231,255,.7);
  padding:12px 12px;
  background: rgba(255,255,255,.03);
  border-radius:12px;
  color:var(--muted);
}

.gallery{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap:12px;
}
.g{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  box-shadow: var(--shadow);
  display:block;
}
.g img{width:100%; height:220px; object-fit:cover; display:block; transition: transform .25s ease}
.g:hover img{transform: scale(1.03)}

.form{display:grid; gap:10px}
label{display:grid; gap:6px; color:var(--muted); font-size:14px; font-weight:700}
input, textarea, select{
  width:100%;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid var(--line);
  background: rgba(0,0,0,.28);
  color:var(--text);
  outline:none;
}
input:focus, textarea:focus, select:focus{border-color: rgba(94,231,255,.55)}

.contactCards{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:10px;
  margin:14px 0 14px;
}
.contactCard{
  border:1px solid var(--line);
  border-radius:14px;
  background: rgba(255,255,255,.04);
  padding:12px;
}
.contactCard a{color:var(--text); text-decoration:underline}

.map{
  border:1px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
  background: rgba(255,255,255,.03);
}
.map iframe{width:100%; height:280px; border:0}

.footer{
  border-top:1px solid var(--line);
  padding:22px 0;
  background: rgba(11,15,20,.62);
}
.footer__inner{
  display:flex;
  gap:16px;
  align-items:flex-start;
  justify-content:space-between;
  flex-wrap:wrap;
}
.footer__links{display:flex; gap:12px; color:var(--muted); font-weight:700}
.footer__links a:hover{color:var(--text)}

@media (max-width: 980px){
  .hero__inner{grid-template-columns: 1fr}
  .services{grid-template-columns: 1fr}
  .split{grid-template-columns: 1fr}
  .gallery{grid-template-columns: 1fr 1fr}
  .contactCards{grid-template-columns: 1fr}
  .grid2{grid-template-columns: 1fr}
  .nav__toggle{display:inline-flex}
  .nav__menu{
    display:none;
    position:absolute;
    right:18px;
    top:66px;
    flex-direction:column;
    gap:12px;
    padding:14px;
    background: rgba(10,14,20,.92);
    border:1px solid var(--line);
    border-radius:14px;
    box-shadow: var(--shadow);
    min-width: 220px;
  }
  .nav__menu.is-open{display:flex}
  .header__inner{position:relative}
  .trust{grid-template-columns:1fr}
}

@media (max-width: 520px){
  .gallery{grid-template-columns: 1fr}
  .hero h1{font-size:38px}
}

.callBadge{
  margin: 10px 0 14px;
  display:inline-block;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(114,255,58,.28);
  background: rgba(114,255,58,.10);
  font-weight:900;
}
.callBadge a{ text-decoration: underline; }
