:root{
  --bg:#0b0c10;
  --panel:#111218;
  --panel-2:#151724;
  --text:#e8eaf0;
  --muted:#a9afbf;
  --brand:#7c5cff;
  --brand-2:#2dd4bf;
  --ring: 0 0 0 3px rgba(124,92,255,.35);
}
*{box-sizing:border-box}
body{
  margin:0;font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:var(--bg);color:var(--text);line-height:1.6;
}
a{color:inherit;text-decoration:none}
.container{width:min(1100px,92%);margin:auto}

.site-header{
  position:sticky;top:0;z-index:10;
  background:rgba(11,12,16,.9);backdrop-filter: blur(8px);
  border-bottom:1px solid #1c1f2c;
}
.header-inner{display:flex;align-items:center;justify-content:space-between;padding:1rem 0}
.logo{font-weight:800;letter-spacing:.4px}
.logo span{color:var(--brand)}
.nav{display:flex;gap:1rem;align-items:center;flex-wrap:wrap}
.nav a{color:var(--muted)}
.nav a.active,.nav a:hover{color:var(--text)}

.btn{
  display:inline-flex;align-items:center;justify-content:center;
  background:linear-gradient(135deg,var(--brand),var(--brand-2));
  padding:.9rem 1.2rem;border-radius:.8rem;font-weight:700;color:white;border:none;
  cursor:pointer;transition:.15s transform ease;
}
.btn:hover{transform:translateY(-1px)}
.btn:focus-visible{outline:none;box-shadow:var(--ring)}
.btn-small{padding:.5rem .8rem;border-radius:.6rem}
.btn-ghost{
  background:transparent;border:1px solid #2a2f45;color:var(--text);
}

.section{padding:4rem 0}
.section-alt{background:var(--panel)}
.hero{
  display:grid;grid-template-columns:1.2fr .8fr;gap:2rem;padding:4rem 0 2.5rem;
}
.hero h1{font-size:clamp(2rem,4vw,3rem);line-height:1.15;margin:0 0 .6rem}
.hero p{color:var(--muted)}
.hero-actions{display:flex;gap:.8rem;margin-top:1.2rem;flex-wrap:wrap}

.trust-row{display:flex;gap:.6rem;margin-top:1rem;flex-wrap:wrap}
.trust-pill{background:var(--panel);border:1px solid #242944;padding:.35rem .6rem;border-radius:999px;font-size:.9rem}

.hero-card{
  background:var(--panel);border:1px solid #242944;border-radius:1rem;padding:1.5rem;
  box-shadow:0 20px 60px rgba(0,0,0,.35);
}
.grid-3{
  display:grid;grid-template-columns:repeat(3,1fr);gap:1rem;margin-top:1rem;
}
.card{
  background:var(--panel-2);border:1px solid #242944;border-radius:1rem;padding:1.2rem;
}
.thumb{
  height:160px;border-radius:.8rem;
  background:linear-gradient(135deg,#22273a,#151724);
  margin-bottom:.8rem;
}

.split{display:grid;grid-template-columns:1fr 1fr;gap:1.5rem;align-items:start}
.about-box{background:var(--panel-2);border:1px solid #242944;padding:1.2rem;border-radius:1rem}

.ticks{list-style:none;padding-left:0}
.ticks li::before{content:"✓ ";color:var(--brand-2);font-weight:900}

.service{padding:1.4rem 0;border-bottom:1px dashed #242944}
.cta-strip{
  margin-top:2rem;display:flex;justify-content:space-between;align-items:center;gap:1rem;
  background:var(--panel);border:1px solid #242944;border-radius:1rem;padding:1rem 1.2rem;
}

.form label{display:grid;gap:.35rem;margin-bottom:.8rem}
.form input,.form textarea{
  width:100%;background:#0e1017;color:var(--text);
  border:1px solid #2a2f45;border-radius:.6rem;padding:.7rem;
}
.form input:focus-visible,.form textarea:focus-visible{
  outline:none;box-shadow:var(--ring);border-color:transparent;
}
.form textarea{min-height:140px;resize:vertical}
.form-note,.muted{color:var(--muted)}
.hp{position:absolute;left:-9999px}

.site-footer{
  border-top:1px solid #1c1f2c;background:#0a0b0f;padding:1.5rem 0;
}
.footer-inner{display:flex;justify-content:space-between;align-items:center;gap:1rem;flex-wrap:wrap}
.footer-links{display:flex;gap:1rem}
.footer-links a{color:var(--muted)}
.footer-links a:hover{color:var(--text)}
.text-link{color:var(--brand-2);font-weight:600}

@media (max-width: 850px){
  .hero,.split{grid-template-columns:1fr}
  .grid-3{grid-template-columns:1fr}
}

/* ===== Before / After Slider ===== */
.ba-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:2rem;
  margin-top:1.5rem;
}

.ba-card h2{margin-bottom:.2rem}
.ba-card p{margin-top:0;color:var(--muted)}

.ba{
  position:relative;
  width:100%;
  aspect-ratio: 4 / 3;
  border-radius:1rem;
  overflow:hidden;
  border:1px solid #242944;
  background:#0e1017;
}

.ba-img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}

.ba-after{
  clip-path: inset(0 50% 0 0);
}

.ba-range{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  opacity:0;
  cursor:ew-resize;
  z-index:5;
}

.ba-handle{
  position:absolute;
  top:0; bottom:0;
  left:50%;
  width:3px;
  background:rgba(255,255,255,.9);
  z-index:4;
}
.ba-handle::after{
  content:"";
  position:absolute;
  top:50%; left:50%;
  transform:translate(-50%,-50%);
  width:38px; height:38px;
  border-radius:999px;
  background:rgba(0,0,0,.45);
  border:2px solid rgba(255,255,255,.9);
  backdrop-filter: blur(4px);
}

.ba-label{
  position:absolute;
  top:12px;
  padding:.25rem .5rem;
  font-size:.85rem;
  font-weight:700;
  border-radius:.5rem;
  background:rgba(0,0,0,.55);
  color:white;
  z-index:3;
}
.ba-label-before{left:12px}
.ba-label-after{right:12px}

.gallery-img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:.8rem;
  border:1px solid #242944;
}
