/* styles.css */
:root{
  --bg0:#070A12;
  --bg1:#0B1022;
  --card:rgba(255,255,255,.06);
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.70);
  --line:rgba(255,255,255,.12);

  --a:#22c55e;
  --b:#60a5fa;
  --c:#f97316;
  --d:#a78bfa;

  --shadow:0 18px 50px rgba(0,0,0,.45);
  --r:18px;
}

*{box-sizing:border-box}
html,body{height:100%}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Arial,"Noto Sans";
  color:var(--text);
  background:var(--bg0);
  overflow-x:hidden;
  background-attachment:fixed;
}

/* aligned background */
body::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:-1;
  pointer-events:none;
  background:
    linear-gradient(180deg, rgba(11,16,34,.92), rgba(7,10,18,1) 55%, rgba(7,10,18,1)),
    radial-gradient(45vw 35vw at 18vw 12vh, rgba(96,165,250,.22), transparent 60%),
    radial-gradient(42vw 32vw at 78vw 14vh, rgba(249,115,22,.18), transparent 62%),
    radial-gradient(40vw 30vw at 62vw 72vh, rgba(167,139,250,.14), transparent 62%),
    radial-gradient(42vw 34vw at 14vw 82vh, rgba(34,197,94,.12), transparent 62%);
  background-repeat:no-repeat;
  background-size:cover;
  transform:translateZ(0);
}

/* subtle noise */
body::after{
  content:"";
  position:fixed;
  inset:0;
  z-index:-1;
  pointer-events:none;
  opacity:.06;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
  background-size:220px 220px;
}

a{color:inherit;text-decoration:none}
.container{width:min(1120px, calc(100% - 40px));margin:0 auto}
.muted{color:var(--muted)}
.hidden{display:none!important}

/* topbar */
.topbar{
  position:sticky; top:0; z-index:60;
  background:rgba(5,8,16,.62);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(255,255,255,.10);
}
.topbar__inner{
  display:flex;align-items:center;justify-content:space-between;
  gap:14px;padding:10px 0;flex-wrap:wrap;
}
.topbar__left,.topbar__right{display:flex;align-items:center;gap:10px;flex-wrap:wrap}
.pill{
  display:inline-flex; padding:6px 10px; border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:linear-gradient(90deg, rgba(34,197,94,.22), rgba(96,165,250,.18));
  font-weight:800;font-size:12px;
}
.toplink{font-size:13px;opacity:.9}
.toplink:hover{opacity:1;text-decoration:underline}
.dot{opacity:.55}

/* header */
.header{
  position:sticky; top:44px; z-index:55;
  background:rgba(7,10,18,.62);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(255,255,255,.10);
}
.header__inner{
  display:flex;align-items:center;justify-content:space-between;
  gap:16px;padding:14px 0;
}
.brand{display:flex;align-items:center;gap:12px}
.brand__mark{
  width:40px;height:40px;border-radius:14px;
  display:grid;place-items:center;
  font-weight:950;
  background:linear-gradient(135deg, rgba(34,197,94,.95), rgba(96,165,250,.92));
  color:rgba(0,0,0,.85);
  box-shadow:0 12px 32px rgba(34,197,94,.12);
}
.brand__text{display:flex;flex-direction:column;line-height:1.05}
.brand__name{font-weight:950;letter-spacing:.2px}
.brand__tag{font-weight:800;opacity:.75;font-size:12px}
.nav{display:flex;align-items:center;gap:18px}
.nav a{font-size:14px;opacity:.9}
.nav a:hover{opacity:1;text-decoration:underline}

.hamburger{
  display:none; width:44px;height:44px;border-radius:14px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  cursor:pointer;
}
.hamburger span{
  display:block;height:2px;width:18px;margin:4px auto;
  background:rgba(255,255,255,.88);border-radius:2px;
}

/* buttons */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  padding:12px 16px;border-radius:16px;
  font-weight:900;
  border:1px solid rgba(255,255,255,.16);
  cursor:pointer;
  transition:transform .12s ease, filter .12s ease, background .12s ease;
  user-select:none;
}
.btn:hover{transform:translateY(-1px);filter:brightness(1.06)}
.btn:active{transform:translateY(0)}
.btn--sm{padding:10px 12px;border-radius:14px;font-size:13px}
.btn--full{width:100%}
.btn--primary{
  background:linear-gradient(90deg, rgba(34,197,94,.95), rgba(96,165,250,.92));
  color:rgba(0,0,0,.85);
  border-color:rgba(255,255,255,.08);
}
.btn--ghost{background:rgba(255,255,255,.06)}
.btn--dark{
  background:rgba(0,0,0,.35);
  border:1px solid rgba(255,255,255,.20);
}

/* hero */
.hero{position:relative;padding:56px 0 10px}
.hero__grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:28px; align-items:stretch;
}
.hero h1{
  margin:0 0 12px;
  font-size:clamp(34px, 4vw, 54px);
  letter-spacing:-1px; line-height:1.03;
}
.gradient{
  background:linear-gradient(90deg,var(--a),var(--b),var(--c),var(--d));
  -webkit-background-clip:text;background-clip:text;color:transparent;
}
.lead{
  margin:0 0 18px;
  font-size:16px; line-height:1.75;
  color:rgba(255,255,255,.80);
  max-width:60ch;
}
.hero__actions{display:flex;gap:12px;flex-wrap:wrap;margin:14px 0 18px}
.hero__badges{display:grid;gap:12px;margin-top:8px}
.badge{
  display:flex;gap:12px;
  padding:12px 14px;border-radius:var(--r);
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
}
.badge__icon{
  width:38px;height:38px;border-radius:14px;
  display:grid;place-items:center;
  background:linear-gradient(135deg, rgba(96,165,250,.22), rgba(34,197,94,.16));
  border:1px solid rgba(255,255,255,.12);
}
.badge__icon svg{width:20px;height:20px}
.badge__title{font-weight:950}
.badge__sub{font-size:13px;color:var(--muted);margin-top:2px}

/* hero card */
.hero__card{
  border-radius:26px;
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.05));
  border:1px solid rgba(255,255,255,.12);
  box-shadow:var(--shadow);
  overflow:hidden;
  position:relative;
}
.hero__image{
  height: 340px;
  background-size:cover;
  background-position:center;
}
.hero__floating{
  position:absolute;left:18px;top:18px;
  display:flex;align-items:center;gap:10px;
  padding:10px 12px;border-radius:16px;
  background:rgba(0,0,0,.40);
  border:1px solid rgba(255,255,255,.14);
  backdrop-filter:blur(10px);
}
.pulse{
  width:12px;height:12px;border-radius:999px;
  background:var(--a);
  box-shadow:0 0 0 0 rgba(34,197,94,.55);
  animation:pulse 1.4s infinite;
}
@keyframes pulse{
  0%{box-shadow:0 0 0 0 rgba(34,197,94,.55)}
  70%{box-shadow:0 0 0 12px rgba(34,197,94,0)}
  100%{box-shadow:0 0 0 0 rgba(34,197,94,0)}
}
.floating__title{font-weight:950;font-size:13px}
.floating__sub{color:var(--muted);font-size:12px;margin-top:1px}
.hero__stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  background:rgba(255,255,255,.10);
}
.stat{padding:14px 12px;background:rgba(0,0,0,.22)}
.stat__num{font-weight:950;font-size:20px}
.stat__label{margin-top:4px;font-size:12px;color:var(--muted)}
.hero__wave{
  height:40px;
  margin-top:26px;
  background:radial-gradient(1200px 90px at 50% 0%, rgba(255,255,255,.10), transparent 60%);
}

/* image banner */
.image-banner{
  position:relative;
  border-radius:24px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 15px 40px rgba(0,0,0,.40);
}
.image-banner img{
  width:100%;
  height:320px;
  object-fit:cover;
  display:block;
}
.banner-text{
  position:absolute;
  bottom:26px;
  left:26px;
  right:26px;
  max-width:520px;
  background:rgba(0,0,0,.55);
  padding:18px 20px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  backdrop-filter:blur(10px);
}
.banner-text h2{margin:0 0 6px;font-size:22px}
.banner-text p{margin:0;color:rgba(255,255,255,.82);line-height:1.6}

/* sections */
.section{padding:56px 0}
.section--alt{
  background:rgba(255,255,255,.03);
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.section__head{margin-bottom:18px}
.section__head--row{
  display:flex;justify-content:space-between;align-items:flex-end;
  gap:16px;flex-wrap:wrap;
}
.section h2{margin:0 0 8px;font-size:28px;letter-spacing:-.3px}

/* cards */
.grid{display:grid;gap:14px}
.cards{grid-template-columns:repeat(3,1fr)}
.card{
  border-radius:var(--r);
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  padding:16px;
  box-shadow:0 10px 30px rgba(0,0,0,.20);
}

/* service images */
.service-card img{
  width:100%;
  height:160px;
  object-fit:cover;
  border-radius:12px;
  margin-bottom:12px;
  border:1px solid rgba(255,255,255,.10);
}

.card__icon{
  width:44px;height:44px;border-radius:16px;
  display:grid;place-items:center;
  background:linear-gradient(135deg, rgba(249,115,22,.18), rgba(96,165,250,.16));
  border:1px solid rgba(255,255,255,.12);
  margin-bottom:12px;
}
.card__icon svg{width:22px;height:22px}
.card h3{margin:0 0 6px;font-size:16px}
.card p{margin:0 0 10px;color:rgba(255,255,255,.78);line-height:1.6;font-size:14px}
.ticks{list-style:none;padding:0;margin:0;display:grid;gap:6px}
.ticks li{position:relative;padding-left:18px;font-size:13px;color:var(--muted)}
.ticks li::before{content:"✓";position:absolute;left:0;color:rgba(34,197,94,.95);font-weight:900}

/* steps */
.steps-image{
  width:100%;
  border-radius:18px;
  margin-bottom:20px;
  box-shadow:0 10px 35px rgba(0,0,0,.40);
  border:1px solid rgba(255,255,255,.10);
}
.steps{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;margin-top:14px}
.step{
  border-radius:var(--r);
  background:rgba(0,0,0,.22);
  border:1px solid rgba(255,255,255,.12);
  padding:14px;
}
.step__num{
  width:34px;height:34px;border-radius:14px;
  display:grid;place-items:center;
  font-weight:950;color:rgba(0,0,0,.85);
  background:linear-gradient(90deg, rgba(96,165,250,.92), rgba(249,115,22,.85));
  margin-bottom:10px;
}
.step h3{margin:0 0 6px;font-size:15px}
.step p{margin:0;color:var(--muted);font-size:13px;line-height:1.6}
.callout{
  margin-top:18px;border-radius:22px;padding:18px;
  background:linear-gradient(90deg, rgba(34,197,94,.16), rgba(96,165,250,.12));
  border:1px solid rgba(255,255,255,.14);
  display:flex;align-items:center;justify-content:space-between;
  gap:16px;flex-wrap:wrap;
}
.callout h3{margin:0 0 4px}
.callout__actions{display:flex;gap:10px;flex-wrap:wrap}

/* pricing */
.toggle{
  display:flex;gap:8px;padding:6px;border-radius:16px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
}
.toggle__btn{
  padding:10px 12px;border-radius:14px;
  background:transparent;border:none;color:rgba(255,255,255,.85);
  font-weight:950;cursor:pointer;
}
.toggle__btn.is-active{
  background:rgba(0,0,0,.35);
  border:1px solid rgba(255,255,255,.14);
}
.pricing{grid-template-columns:repeat(4,1fr)}
.pricecard{
  border-radius:20px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  padding:16px;
  box-shadow:0 10px 32px rgba(0,0,0,.24);
}
.pricecard__top{display:flex;align-items:flex-start;justify-content:space-between;gap:10px}
.pricecard h3{margin:0;font-size:15px}
.price{text-align:right;font-weight:950;font-size:18px}
.price span{display:block;font-weight:800;font-size:11px;color:var(--muted);margin-bottom:2px}
.pricecard p{margin:10px 0 12px;color:var(--muted);font-size:13px;line-height:1.6}
.pricecard--highlight{
  background:linear-gradient(180deg, rgba(167,139,250,.16), rgba(255,255,255,.05));
  border-color:rgba(167,139,250,.32);
}
.note{
  margin-top:14px;padding:12px 14px;border-radius:16px;
  background:rgba(0,0,0,.22);
  border:1px solid rgba(255,255,255,.12);
  color:rgba(255,255,255,.82);font-size:13px;
}

/* coverage + slider */
.coverage{display:grid;grid-template-columns:1.1fr .9fr;gap:18px;align-items:stretch}
.chips{display:flex;flex-wrap:wrap;gap:8px;margin:12px 0}
.chip{
  padding:8px 10px;border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  font-size:12px;font-weight:900;
}
.mini{display:grid;gap:10px;margin-top:8px}
.mini__item{
  display:flex;gap:10px;padding:12px 14px;border-radius:18px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.12);
}
.mini__num{width:34px;height:34px;display:grid;place-items:center;border-radius:14px;background:rgba(0,0,0,.28)}
.mini__title{font-weight:950}
.mini__sub{font-size:12px;color:var(--muted);margin-top:2px}

.coverage__panel{
  border-radius:26px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.slider{padding:16px}
.slider__track{display:flex;width:300%;transform:translateX(0%);transition:transform .35s ease}
.quote{
  width:calc(100%/3);
  padding:16px;border-radius:20px;
  background:rgba(0,0,0,.22);
  border:1px solid rgba(255,255,255,.12);
}
.quote p{margin:0 0 10px;font-size:14px;line-height:1.7;color:rgba(255,255,255,.85)}
.quote__by{font-size:12px;color:var(--muted);font-weight:900}
.slider__controls{display:flex;align-items:center;justify-content:space-between;gap:10px;margin-top:12px}
.iconbtn{
  width:42px;height:42px;border-radius:16px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  color:rgba(255,255,255,.9);
  cursor:pointer;
}
.dots{display:flex;gap:8px;align-items:center;justify-content:center;flex:1}
.dotx{width:8px;height:8px;border-radius:999px;background:rgba(255,255,255,.35)}
.dotx.is-active{background:rgba(34,197,94,.92);box-shadow:0 0 0 8px rgba(34,197,94,.12)}

/* contact */
.contact{display:grid;grid-template-columns:1fr 1fr;gap:18px;align-items:start}
.contact__quick{display:grid;gap:10px;margin-top:14px}
.contact-image{
  width:100%;
  border-radius:20px;
  margin:14px 0 10px;
  border:1px solid rgba(255,255,255,.10);
}
.quick{
  display:flex;gap:10px;padding:14px;border-radius:20px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
}
.quick__icon{
  width:40px;height:40px;border-radius:16px;display:grid;place-items:center;
  background:rgba(0,0,0,.28);
}
.quick__title{font-weight:950}
.quick__sub{color:var(--muted);font-size:12px;margin-top:2px}

.form{
  border-radius:26px;padding:16px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  box-shadow:var(--shadow);
}
.form label{
  display:block;font-size:12px;font-weight:950;
  color:rgba(255,255,255,.86);
  margin-bottom:10px;
}
.form input,.form select,.form textarea{
  width:100%; margin-top:8px; padding:12px 12px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(0,0,0,.25);
  color:rgba(255,255,255,.92);
  outline:none;
}
.form input:focus,.form select:focus,.form textarea:focus{
  border-color:rgba(96,165,250,.55);
  box-shadow:0 0 0 4px rgba(96,165,250,.12);
}
.form__row{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.form__actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:10px}
.form__note{margin:10px 0 0;font-size:12px}

/* footer */
.footer{
  border-top:1px solid rgba(255,255,255,.10);
  padding:28px 0 18px;
  background:rgba(0,0,0,.25);
}
.footer__inner{display:grid;grid-template-columns:1.2fr .8fr;gap:16px;align-items:start}
.brand--footer .brand__mark{width:36px;height:36px;border-radius:14px}
.footer__cols{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.footer__title{font-weight:950;margin-bottom:10px}
.footer a{display:block;color:rgba(255,255,255,.82);margin:8px 0;font-size:13px}
.footer a:hover{text-decoration:underline}
.footer__bottom{
  display:flex;justify-content:space-between;align-items:center;gap:12px;
  margin-top:18px;padding-top:14px;
  border-top:1px solid rgba(255,255,255,.08);
  flex-wrap:wrap;
}

/* sticky */
.sticky{
  position:fixed; right:16px; bottom:16px; z-index:70;
  display:flex; flex-direction:column; gap:10px;
}
.sticky__btn{
  display:flex; align-items:center; gap:10px;
  padding:12px 14px; border-radius:18px;
  border:1px solid rgba(255,255,255,.18);
  backdrop-filter:blur(12px);
  box-shadow:0 14px 40px rgba(0,0,0,.40);
  font-weight:950;
}
.sticky__btn--call{background:rgba(96,165,250,.20)}
.sticky__btn--wa{background:rgba(34,197,94,.18)}
.sticky__text{font-size:13px}

/* responsive */
@media (max-width: 980px){
  .hero__grid{grid-template-columns:1fr}
  .cards{grid-template-columns:repeat(2,1fr)}
  .steps{grid-template-columns:repeat(2,1fr)}
  .pricing{grid-template-columns:repeat(2,1fr)}
  .coverage{grid-template-columns:1fr}
  .contact{grid-template-columns:1fr}
}
@media (max-width: 720px){
  .nav{
    position:fixed; top:96px; left:12px; right:12px;
    display:none; flex-direction:column; align-items:stretch; gap:10px;
    padding:12px; border-radius:20px;
    background:rgba(7,10,18,.94);
    border:1px solid rgba(255,255,255,.14);
    box-shadow:var(--shadow);
  }
  .nav.is-open{display:flex}
  .nav a{
    padding:10px 12px; border-radius:14px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.10);
  }
  .hamburger{display:block}
  .cards,.steps,.pricing{grid-template-columns:1fr}
  .form__row{grid-template-columns:1fr}
  .sticky__text{display:none}
}

/* iOS background fix */
@supports (-webkit-touch-callout: none){
  body{ background-attachment: scroll; }
  body::before{ position:absolute; }
}