:root{
  --bg:#070A10;
  --bg2:#0B1020;
  --card:rgba(255,255,255,.06);
  --card2:rgba(255,255,255,.08);
  --line:rgba(255,255,255,.12);
  --text:#EAF0FF;
  --muted:#A8B3D1;
  --accent:#FF3D00;
  --accent2:#FF00D6;
  --accent3:#00E5FF;
  --shadow: 0 20px 60px rgba(0,0,0,.45);
  --radius: 22px;
  --radius2: 28px;
  --max: 1120px;
}

/* Ensure the native HTML [hidden] attribute always works.
   Without this, author CSS (e.g., .modal{display:grid}) can override
   the browser default and make hidden elements visible on page load. */
[hidden]{
  display:none !important;
}

/* Price table */
.promo{border:1px solid rgba(255,255,255,.14);background:rgba(255,255,255,.06);backdrop-filter:blur(10px);border-radius:18px;padding:14px 16px;display:flex;gap:10px;align-items:flex-start;box-shadow:0 10px 30px rgba(0,0,0,.35)}
.promo--accent{border-color:rgba(255,103,0,.35);background:linear-gradient(135deg,rgba(255,103,0,.18),rgba(255,255,255,.05))}
.promo__title{font-weight:800;letter-spacing:.2px}
.promo__text{opacity:.92}

.price-wrap{margin-top:18px}
.price-note{border:1px dashed rgba(255,255,255,.2);border-radius:16px;padding:14px 16px;background:rgba(0,0,0,.18)}
.price-note__title{font-weight:700;margin-bottom:8px}
.price-note__list{margin:0;padding-left:18px;display:grid;gap:6px}

.price-h3{margin:22px 0 12px;font-size:20px}
.price-h4{margin:0 0 10px;font-size:16px;opacity:.95}
.price-small{margin:10px 0 0;opacity:.75;font-size:13px}

.price-grid{display:grid;grid-template-columns:1fr;gap:14px}

.price-block{border:1px solid rgba(255,255,255,.14);background:rgba(255,255,255,.05);border-radius:18px;padding:14px 16px}
.table-wrap{overflow:auto;border-radius:14px;border:1px solid rgba(255,255,255,.12)}
.price-table th,.price-table td{padding:12px 12px;border-bottom:1px solid rgba(255,255,255,.10);text-align:left;white-space:normal}
.price-table th{font-weight:700;background:rgba(0,0,0,.20)}
.price-table tr:last-child td{border-bottom:none}
.price-table td:last-child,.price-table th:last-child{text-align:right}

.price-table th,.price-table td{padding:10px 8px}
  .price-table th:first-child,.price-table td:first-child{padding-right:6px}
  .price-table th:last-child,.price-table td:last-child{padding-left:6px; white-space:nowrap}
}
.price-table td:nth-child(2),.price-table th:nth-child(2){text-align:right}
.price-table td:nth-child(3),.price-table th:nth-child(3){text-align:right}
.price-table td:nth-child(4),.price-table th:nth-child(4){text-align:right}
.price-table td:nth-child(5),.price-table th:nth-child(5){text-align:right}

.price-actions{margin-top:14px;display:flex;flex-wrap:wrap;gap:10px}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background: radial-gradient(1200px 800px at 20% -10%, rgba(255,0,214,.18), transparent 60%),
              radial-gradient(1000px 700px at 110% 10%, rgba(0,229,255,.14), transparent 55%),
              radial-gradient(900px 700px at 40% 110%, rgba(255,61,0,.13), transparent 60%),
              linear-gradient(180deg, var(--bg), var(--bg2) 60%, #060810);
  color:var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height:1.5;
}

a{color:inherit; text-decoration:none}
code{font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;}
img{max-width:100%; display:block}

.container{
  width:min(var(--max), calc(100% - 40px));
  margin-inline:auto;
}

.skip{
  position:absolute;
  left:-999px;
  top:auto;
  width:1px; height:1px;
  overflow:hidden;
}
.skip:focus{
  left:16px; top:16px;
  width:auto; height:auto;
  padding:10px 12px;
  background:#000;
  border-radius:12px;
  outline:2px solid var(--accent3);
  z-index:9999;
}

.topbar{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(7,10,16,.65);
  backdrop-filter: blur(14px);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.topbar__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:34px; height:34px;
  border-radius:12px;
  background: conic-gradient(from 210deg, var(--accent), var(--accent2), var(--accent3), var(--accent));
  box-shadow: 0 10px 30px rgba(255,61,0,.22);
}
.brand__text{
  font-family:"Russo One", system-ui, sans-serif;
  letter-spacing:.3px;
  font-size:18px;
}

.nav{display:flex; gap:14px; align-items:center}
.nav__link{
  color:rgba(234,240,255,.84);
  padding:10px 10px;
  border-radius:12px;
  transition: background .2s ease, color .2s ease;
}
.nav__link:hover{
  background:rgba(255,255,255,.06);
  color:#fff;
}

.topbar__actions{display:flex; align-items:center; gap:10px}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  border-radius:16px;
  padding:10px 14px;
  font-weight:600;
  border:1px solid transparent;
  cursor:pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  user-select:none;
}
.btn:active{transform: translateY(1px)}
.btn--primary{
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  box-shadow: 0 14px 40px rgba(255,0,214,.18);
}
.btn--primary:hover{
  box-shadow: 0 18px 52px rgba(255,0,214,.25);
}
.btn--ghost{
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.10);
}
.btn--ghost:hover{
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.16);
}
.btn--lg{padding:12px 18px; border-radius:18px}

.ico{display:inline-flex; width:18px; height:18px}
.ico svg{width:18px; height:18px; fill: currentColor}

.hide-sm{display:inline-flex}
@media (max-width: 900px){
  .hide-sm{display:none}
}

.burger{
  display:none;
  width:46px; height:44px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  padding:10px 12px;
  cursor:pointer;
}
.burger span{
  display:block;
  height:2px;
  background: rgba(234,240,255,.92);
  margin:6px 0;
  border-radius:10px;
  transition: transform .2s ease, opacity .2s ease;
}
@media (max-width: 900px){
  .nav{display:none}
  .burger{display:inline-block}
}

.mobile{
  border-top:1px solid rgba(255,255,255,.08);
  background:rgba(7,10,16,.75);
  backdrop-filter: blur(16px);
}
.mobile__inner{
  padding:14px 0 18px;
  display:grid;
  gap:10px;
}
.mobile__link{
  padding:12px 12px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
}
.mobile__link:hover{background: rgba(255,255,255,.07)}
.mobile__cta{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
  margin-top:6px;
}
@media (max-width: 520px){
  .mobile__cta{grid-template-columns:1fr}
}

.hero{
  position:relative;
  min-height: 82vh;
  display:flex;
  align-items:stretch;
  overflow:hidden;
}
.hero__media{
  position:absolute;
  inset:0;
  z-index:0;
}
.hero__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:saturate(1.05) contrast(1.02);
  transform: scale(1.02);
}
.hero__overlay{
  position:absolute;
  inset:0;
  z-index:1;
  background:
    radial-gradient(700px 500px at 12% 20%, rgba(255,0,214,.30), transparent 60%),
    radial-gradient(650px 540px at 80% 30%, rgba(0,229,255,.24), transparent 55%),
    linear-gradient(90deg, rgba(7,10,16,.92) 0%, rgba(7,10,16,.72) 45%, rgba(7,10,16,.52) 100%);
}
.hero__glow{
  position:absolute;
  inset:-40px;
  z-index:1;
  pointer-events:none;
  background: radial-gradient(500px 320px at 55% 50%, rgba(255,61,0,.22), transparent 60%);
  mix-blend-mode: screen;
  opacity:.55;
}
.hero__inner{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  align-items:center;
  gap:24px;
  padding: clamp(34px, 7vw, 84px) 0;
}
@media (max-width: 980px){
  .hero__inner{grid-template-columns: 1fr; gap:18px}
  .hero{min-height: 88vh}
}
.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(234,240,255,.90);
  font-weight:600;
  width: fit-content;
}
.dot{
  width:8px; height:8px;
  border-radius:99px;
  background: linear-gradient(90deg, var(--accent), var(--accent3));
  box-shadow: 0 0 0 4px rgba(255,61,0,.12);
}

.hero__title{
  margin:14px 0 0;
  font-family:"Russo One", system-ui, sans-serif;
  font-weight:400;
  letter-spacing:.3px;
  font-size: clamp(34px, 4vw, 54px);
  line-height:1.05;
}
.accent{
  background: linear-gradient(90deg, var(--accent), var(--accent2), var(--accent3));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.hero__subtitle{
  margin:14px 0 0;
  color: rgba(234,240,255,.84);
  font-size: 16px;
  max-width: 58ch;
}
.hero__stats{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:10px;
}
@media (max-width: 680px){
  .hero__stats{grid-template-columns: 1fr; gap:10px}
}
.stat{
  padding:12px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
}
.stat__num{
  font-weight:800;
  letter-spacing:.3px;
}
.stat__txt{
  margin-top:2px;
  color: rgba(168,179,209,.95);
  font-size: 13px;
}
.hero__cta{
  margin-top:18px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.hero__note{
  margin:14px 0 0;
  color: rgba(168,179,209,.95);
}
.hero__fineprint{
  margin:8px 0 0;
  color: rgba(168,179,209,.82);
  font-size: 12px;
}

.hero__card{
  position:relative;
}
.card{
  border-radius: var(--radius2);
  padding:18px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
}
.glass{
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.12);
}
.card__title{
  font-weight:800;
  letter-spacing:.2px;
  margin-bottom:12px;
}
.card__row{
  display:grid;
  gap:10px;
}
.mini{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  padding:12px 12px;
  border-radius:18px;
  background: rgba(0,0,0,.16);
  border:1px solid rgba(255,255,255,.10);
}
.mini:hover{border-color: rgba(255,255,255,.18)}
.mini__k{
  color: rgba(168,179,209,.9);
  font-size: 12px;
  margin-top:1px;
}
.mini__v{
  font-weight:700;
  font-size: 13px;
  text-align:right;
}
.card__actions{
  display:flex;
  gap:10px;
  margin-top:14px;
  flex-wrap:wrap;
}
.spark{
  position:absolute;
  inset:-10px -10px auto auto;
  width:120px; height:120px;
  border-radius:999px;
  background: radial-gradient(circle at 30% 30%, rgba(255,0,214,.45), transparent 60%),
              radial-gradient(circle at 70% 70%, rgba(0,229,255,.35), transparent 60%);
  filter: blur(2px);
  opacity:.8;
  pointer-events:none;
}

.scrollhint{
  position:absolute;
  bottom:18px;
  left:50%;
  transform:translateX(-50%);
  z-index:2;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
  color: rgba(234,240,255,.70);
  font-size: 12px;
}
.scrollhint__mouse{
  width:26px; height:42px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.22);
  position:relative;
  background: rgba(255,255,255,.03);
}
.scrollhint__mouse::after{
  content:"";
  position:absolute;
  left:50%;
  top:10px;
  width:4px; height:6px;
  border-radius:99px;
  background: rgba(255,255,255,.65);
  transform:translateX(-50%);
  animation: scroll 1.3s infinite;
}
@keyframes scroll{
  0%{transform:translate(-50%,0); opacity:.6}
  55%{transform:translate(-50%,12px); opacity:1}
  100%{transform:translate(-50%,18px); opacity:0}
}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  .scrollhint__mouse::after{animation:none}
  .reveal{transition:none !important}
}

.section{
  padding: clamp(54px, 7vw, 90px) 0;
}
.section--alt{
  background: linear-gradient(180deg, rgba(255,255,255,.04), transparent 60%);
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.section__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  margin-bottom: 22px;
}
.section__title{
  font-family:"Russo One", system-ui, sans-serif;
  margin:0;
  font-size: clamp(24px, 2.4vw, 34px);
  letter-spacing:.25px;
  font-weight:400;
}
.section__desc{
  margin:0;
  color: rgba(168,179,209,.92);
  max-width: 62ch;
}
@media (max-width: 820px){
  .section__head{flex-direction:column; align-items:flex-start}
}

.grid{
  display:grid;
  gap:14px;
}
.cards{
  grid-template-columns: repeat(5, minmax(0,1fr));
}
@media (max-width: 1100px){
  .cards{grid-template-columns: repeat(2, minmax(0,1fr))}
}
@media (max-width: 560px){
  .cards{grid-template-columns:1fr}
}
.two{
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 900px){
  .two{grid-template-columns:1fr}
}

.service{
  position:relative;
  overflow:hidden;
}
.service::before{
  content:"";
  position:absolute;
  inset:-40px -60px auto auto;
  width:160px; height:160px;
  border-radius:999px;
  background: radial-gradient(circle at 30% 30%, rgba(255,61,0,.30), transparent 60%),
              radial-gradient(circle at 70% 70%, rgba(0,229,255,.20), transparent 60%);
  filter: blur(0px);
  opacity:.7;
  pointer-events:none;
}
.service__ico{
  width:44px; height:44px;
  border-radius:16px;
  display:grid;
  place-items:center;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  margin-bottom:10px;
}
.service h3{margin:0 0 8px; font-size:16px}
.service p{margin:0; color: rgba(168,179,209,.92); font-size: 14px}

.list{
  padding-left: 18px;
  margin: 12px 0 0;
  color: rgba(234,240,255,.88);
}
.list li{margin:8px 0}
.steps{
  margin:12px 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:8px;
}
.steps li{
  display:flex;
  align-items:flex-start;
  gap:10px;
  padding:10px 12px;
  border-radius:18px;
  background: rgba(0,0,0,.16);
  border:1px solid rgba(255,255,255,.10);
}
.steps__n{
  width:30px; height:30px;
  border-radius:12px;
  display:grid;
  place-items:center;
  font-weight:800;
  background: linear-gradient(135deg, rgba(255,61,0,.35), rgba(255,0,214,.22));
  border:1px solid rgba(255,255,255,.10);
  flex:0 0 auto;
}
.muted{color: rgba(168,179,209,.92)}
.hint{margin-top:12px}

.gallery{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap:12px;
}
@media (max-width: 980px){
  .gallery{grid-template-columns: repeat(2, minmax(0,1fr))}
}
@media (max-width: 520px){
  .gallery{grid-template-columns: 1fr}
}
.work{
  position:relative;
  padding:0;
  border:0;
  background: transparent;
  cursor:pointer;
  border-radius: 20px;
  overflow:hidden;
  outline: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
  transition: transform .18s ease, outline-color .2s ease;
}
.work:hover{
  transform: translateY(-2px);
  outline-color: rgba(255,255,255,.18);
}
.work img{width:100%; height:auto}
.work__tag{
  position:absolute;
  left:10px; bottom:10px;
  padding:6px 10px;
  border-radius:999px;
  font-weight:700;
  font-size:12px;
  background: rgba(7,10,16,.65);
  border:1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
}

.timeline{
  display:grid;
  gap:10px;
}
.titem{
  display:grid;
  grid-template-columns: 74px 1fr;
  gap:14px;
  padding:16px;
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
}
@media (max-width: 520px){
  .titem{grid-template-columns: 56px 1fr}
}
.titem__n{
  width:74px; height:54px;
  border-radius: 20px;
  display:grid;
  place-items:center;
  font-weight:800;
  letter-spacing:.6px;
  background: linear-gradient(90deg, rgba(255,61,0,.35), rgba(0,229,255,.16));
  border:1px solid rgba(255,255,255,.12);
}
.titem__body h3{margin:0 0 6px}
.titem__body p{margin:0; color: rgba(168,179,209,.92)}

.contact{
  display:grid;
  gap:10px;
  margin-top: 10px;
}
.contact__item{
  display:grid;
  grid-template-columns: 140px 1fr;
  gap:10px;
  padding:12px 12px;
  border-radius:18px;
  background: rgba(0,0,0,.16);
  border:1px solid rgba(255,255,255,.10);
}
@media (max-width: 520px){
  .contact__item{grid-template-columns:1fr}
}
.contact__k{color: rgba(168,179,209,.92); font-size: 12px}
.contact__v{font-weight:700}

.btns{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 14px;
}
.hr{
  height:1px;
  background: rgba(255,255,255,.10);
  margin: 16px 0;
}

.map{padding: 14px}
.map__frame{
  border-radius: 22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
}
.map__frame iframe{
  width:100%;
  height: 420px;
  border:0;
}
@media (max-width: 900px){
  .map__frame iframe{height: 320px}
}
.map__note{
  margin-top: 10px;
  color: rgba(168,179,209,.92);
  font-size: 13px;
}

.footer{
  padding: 22px 0 36px;
  border-top:1px solid rgba(255,255,255,.08);
  background: rgba(7,10,16,.35);
}
.footer__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  color: rgba(168,179,209,.92);
}
.footer__right a{
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
}
.footer__right a:hover{background: rgba(255,255,255,.07)}

.modal{
  position:fixed;
  inset:0;
  z-index:200;
  display:grid;
  place-items:center;
  padding:18px;
}
.modal__backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(10px);
}
.modal__panel{
  position:relative;
  z-index:1;
  width:min(980px, 100%);
  max-height: calc(100vh - 40px);
  overflow:auto;
  border-radius: 26px;
  background: rgba(10,14,22,.90);
  border:1px solid rgba(255,255,255,.12);
  box-shadow: 0 30px 80px rgba(0,0,0,.55);
  padding: 12px;
}
.modal__close{
  position:absolute;
  top:10px; right:10px;
  width:42px; height:42px;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(234,240,255,.92);
  cursor:pointer;
  font-size: 22px;
}
.modal__img{
  width:100%;
  height:auto;
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.10);
}
.modal__bar{
  display:flex;
  justify-content:flex-end;
  gap:10px;
  padding: 12px 4px 4px;
  flex-wrap:wrap;
}

.fab{
  position:fixed;
  right:16px;
  bottom:16px;
  width:54px; height:54px;
  border-radius: 22px;
  display:grid;
  place-items:center;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  box-shadow: 0 18px 50px rgba(255,0,214,.22);
  border: 1px solid rgba(255,255,255,.16);
  z-index:150;
}
  .fab{display:none}
}

.reveal{
  opacity:0;
  transform: translateY(10px);
  transition: opacity .5s ease, transform .6s ease;
}
.reveal.in-view{
  opacity:1;
  transform: translateY(0);
}

.nav__link.is-active{background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.10)}


/* ===== PRICE TABLES: FIX WIDTH + NO HORIZONTAL SCROLL ===== */

/* Wrapper must never create a horizontal scroll area */
.table-wrap{
  width:100%;
  overflow:hidden;
}

/* Tables must fit their container */
.price-table{
  width:100%;
  max-width:100%;
  min-width:0;
  table-layout:fixed;
}

/* Allow text to wrap on small screens */
.price-table th,
.price-table td{
  white-space:normal;
  overflow-wrap:anywhere;
  word-break:break-word;
}

/* Keep price compact and right-aligned */
.price-table th:last-child,
.price-table td:last-child{
  text-align:right;
  white-space:nowrap;
}

/* Price section grid: stack blocks on mobile */
@media (max-width: 768px){
  .price-grid{
    grid-template-columns:1fr;
  }
}


/* ===== PRICE SECTION MOBILE FIX (v12) ===== */

/* prevent page-wide horizontal scroll from any child */
html, body { overflow-x: hidden; }

/* iOS/Safari: allow grid children to shrink */
.price-grid > *,
.price-block,
.table-wrap { min-width: 0; max-width: 100%; }

/* Never create internal horizontal scroll for price tables */
.table-wrap { width: 100%; overflow: hidden !important; }

/* Tables must fit their container */
.price-table, table {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  table-layout: fixed;
}

.price-table th, .price-table td {
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* Keep the price tight */
.price-table th:last-child,
.price-table td:last-child {
  text-align: right;
  white-space: nowrap;
}

@media (max-width: 768px) {
  /* stack blocks (one column) */
  .price-grid { grid-template-columns: 1fr; }

  /* make columns predictable so both fit */
  .price-table th:first-child,
  .price-table td:first-child { width: 62%; }
  .price-table th:last-child,
  .price-table td:last-child { width: 38%; }

  .price-table th, .price-table td {
    padding: 10px 6px;
    font-size: 14px;
  }
}



/* Mobile contact bar */
.contact-bar{
position:fixed;
bottom:0;
left:0;
width:100%;
display:flex;
z-index:9999;
}

.cb-btn{
flex:1;
text-align:center;
padding:14px 6px;
font-weight:600;
color:white;
text-decoration:none;
font-size:14px;
}

.cb-btn.call{background:#ff5a00;}
.cb-btn.wa{background:#25D366;}
.cb-btn.tg{background:#229ED9;}

@media(min-width:769px){
.contact-bar{display:none;}
}

/* Fixed mobile contact bar - always visible */
.contact-bar{
position:fixed;
bottom:0;
left:0;
width:100%;
display:flex;
z-index:9999;
box-shadow:0 -2px 10px rgba(0,0,0,0.25);
}

body{
padding-bottom:70px;
}

/* WhatsApp photo button spacing */
.hero__cta .btn{
margin-bottom:10px;
}

/* ensure mobile contact bar always visible */
.contact-bar{
position:fixed !important;
bottom:0 !important;
left:0 !important;
right:0 !important;
width:100% !important;
display:flex !important;
z-index:99999 !important;
}

html,body{
min-height:100%;
}


/* ===== FIXED CONTACT BAR (v18) ===== */
/* keep bar above mobile browser bottom UI */

.contact-bar{
position:fixed !important;
left:0;
right:0;
bottom:env(safe-area-inset-bottom, 0);
width:100%;
display:flex;
z-index:999999;
background:#111;
padding-bottom:env(safe-area-inset-bottom, 0);
box-shadow:0 -4px 12px rgba(0,0,0,0.35);
}

.contact-bar a{
flex:1;
text-align:center;
padding:14px 6px;
font-weight:600;
text-decoration:none;
color:white;
}

.contact-bar a.call{background:#ff5a00;}
.contact-bar a.wa{background:#25D366;}
.contact-bar a.tg{background:#229ED9;}

body{
padding-bottom:80px;
}


/* ===== Improved contact bar design ===== */

.contact-bar{
position:fixed;
left:0;
right:0;
bottom:env(safe-area-inset-bottom,0);
display:flex;
justify-content:center;
gap:8px;
padding:8px;
z-index:999999;
background:transparent;
}

.contact-bar .cb{
flex:1;
text-align:center;
padding:10px 4px;
font-size:14px;
font-weight:600;
border-radius:14px;
text-decoration:none;
color:white;
}

.contact-bar .call{
background:#ff6a00;
}

.contact-bar .wa{
background:#25D366;
}

.contact-bar .tg{
background:#229ED9;
}

body{
padding-bottom:90px;
}


/* ===== Car brand badges ===== */
.brands{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
  margin: 14px 0 6px;
}

.brand-badge{
  width:56px;
  height:56px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  letter-spacing:.3px;
  color:#fff;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  user-select:none;
}

.brands-note{
  margin-top: 6px;
}

@media (max-width: 480px){
  .brand-badge{
    width:50px;
    height:50px;
    font-size:14px;
  }
}


/* ===== Brand icons ===== */
.brands{
display:flex;
gap:16px;
align-items:center;
flex-wrap:wrap;
margin-top:12px;
}

.brand-icon{
height:36px;
filter:brightness(0) invert(1);
opacity:0.9;
}

@media (max-width:480px){
.brand-icon{
height:28px;
}
}

/* ===== Restore rounded contact buttons ===== */
.contact-bar{
display:flex;
gap:8px;
padding:8px;
background:transparent;
}

.contact-bar .cb{
border-radius:16px !important;
padding:10px 6px;
font-size:14px;
}



/* ===== Smaller brand icons ===== */
.brands{
display:flex;
flex-wrap:wrap;
gap:10px;
align-items:center;
margin-top:10px;
}

.brand-icon{
height:22px;
width:auto;
opacity:0.85;
}

@media (max-width:480px){
.brand-icon{
height:18px;
}
}

/* ===== Contact bar v19 style ===== */
.contact-bar{
position:fixed;
bottom:env(safe-area-inset-bottom,0);
left:0;
right:0;
display:flex;
justify-content:center;
gap:8px;
padding:6px;
background:transparent;
z-index:999999;
}

.contact-bar .cb{
border-radius:18px;
padding:8px 6px;
font-size:13px;
font-weight:600;
}

body{
padding-bottom:85px;
}


/* Before After gallery */
.ba-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:16px;
margin-top:20px;
}

.ba-wrap{
position:relative;
overflow:hidden;
border-radius:12px;
}

.ba-wrap img{
width:100%;
display:block;
}

.ba-after{
position:absolute;
top:0;
left:0;
opacity:0;
transition:opacity .3s;
}

.ba-wrap:hover .ba-after{
opacity:1;
}


/* Clients gallery */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:12px;
  margin-top:20px;
}

.gallery-item{
  overflow:hidden;
  border-radius:12px;
  border:0;
  padding:0;
  background:transparent;
  cursor:pointer;
}

.gallery-item img{
  width:100%;
  display:block;
  transition:transform .3s;
}

.gallery-item:hover img{
  transform:scale(1.05);
}
