:root{
  --bg:#f6f8fc;
  --card:#ffffff;
  --text:#111827;
  --muted:#4b5563;
  --brand:#0ea5e9;
  --brand2:#22c55e;
  --border:rgba(17,24,39,.12);
  --shadow: 0 10px 24px rgba(17,24,39,.10);
  --radius: 18px;
  --max: 1120px;
}


*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height:1.5;
  color:var(--text);
  background: radial-gradient(1200px 500px at 15% -10%, rgba(14,165,233,.12), transparent 60%),
              radial-gradient(900px 500px at 85% 0%, rgba(34,197,94,.10), transparent 65%),
              var(--bg);
  overflow-x:hidden;
}

img{ max-width:100%; height:auto; display:block; }
a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:underline; }

.container{ width: min(var(--max), calc(100% - 32px)); margin:0 auto; }
.narrow{ width: min(820px, calc(100% - 32px)); margin:0 auto; }

.skip-link{
  position:absolute; left:-999px; top:10px;
  background:#fff; color:#000; padding:10px 12px; border-radius:10px;
}
.skip-link:focus{ left:16px; z-index:1000; }

.topbar{
  background: rgba(255,255,255,.85);
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:10px;
  padding: 10px 0;
  flex-wrap:wrap;
}
.lang{ padding:6px 10px; border:1px solid var(--border); border-radius:999px; }
.lang:hover{ text-decoration:none; border-color: rgba(255,255,255,.22); }

.header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(246,248,252,.85);
  border-bottom:1px solid var(--border);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:12px;
  padding: 12px 0;
}
.brand{
  display:flex; align-items:center; gap:10px;
  min-width: 0;
}
.brand__text{
  font-weight:900;
  letter-spacing:.2px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  max-width: 60vw;
}

.nav{
  display:flex; align-items:center; gap:10px;
  flex-wrap:wrap;
}
.nav a{
  padding:10px 10px;
  border-radius: 12px;
}
.nav a:hover{ background: rgba(255,255,255,.85); text-decoration:none; }
.nav__cta{
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color:#061018;
  font-weight:900;
  border-radius: 999px;
}

.nav-toggle{
  display:none;
  background: transparent;
  border:1px solid var(--border);
  border-radius: 12px;
  padding:10px 12px;
  color:var(--text);
  cursor:pointer;
}
.burger{
  display:block;
  width:18px;
  height:2px;
  background: var(--text);
  position: relative;
}
.burger::before,.burger::after{
  content:"";
  position:absolute;
  left:0;
  width:18px;
  height:2px;
  background: var(--text);
}
.burger::before{ top:-6px; }
.burger::after{ top:6px; }

.sr-only{ position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0; }

.hero{
  position:relative
  overflow:hidden;
  padding: clamp(36px, 6vw, 64px) 0 28px;
}

/* Overlay + fallback image (used when video is disabled) */
.hero__bg{
  position:absolute;
  inset:0;
  z-index:1;
  background:
    linear-gradient(180deg, rgba(246,248,252,.85), rgba(246,248,252,.55)),
    url("../img/hero.jpg") center/cover no-repeat;
  opacity:1;
}

.hero__inner{
  position:relative
  z-index:2;
  display:grid;
  grid-template-columns: 1fr;
  gap:18px;
  align-items:start;
}
.hero__content h1{ font-size: clamp(28px, 4.6vw, 46px); margin:0 0 10px; }
.lead{ color:var(--muted); margin:0 0 10px; max-width: 60ch; }
.service-area{ margin: 0 0 16px; color:var(--muted); font-size:14px; }

.hero__card{
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 16px;
}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  font-weight: 900;
  text-decoration:none;
  white-space: nowrap;
}
.btn:hover{ text-decoration:none; }
.btn--primary{
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color:#061018;
  border-color: transparent;
}
.btn--ghost{
  background: rgba(255,255,255,.85);
}
.hero__buttons{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom: 12px;
}
.hero__buttons .btn{ flex: 1 1 220px; }

.badges{ display:flex; gap:10px; flex-wrap:wrap; padding:0; margin: 12px 0 0; list-style:none; }
.badges li{
  font-size: 13px;
  color: var(--muted);
  border:1px dashed rgba(255,255,255,.18);
  padding: 6px 10px;
  border-radius: 999px;
}

.section{ padding: clamp(34px, 5vw, 48px) 0; }
.section--alt{ background: rgba(17,24,39,.04); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.section__head{ margin-bottom: 18px; }
.section__head h2{ margin:0 0 8px; font-size: clamp(22px, 3vw, 32px); }
.muted{ color: var(--muted); }
.small{ font-size: 13px; }
.h3{ font-size: 18px; margin:0 0 10px; }

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

.card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow);
  min-width: 0;
}
.card__media{
  border-radius: 14px;
  overflow:hidden;
  margin-bottom: 10px;
  border: 1px solid rgba(255,255,255,.08);
}
.card__desc {
  display: grid;
  grid-template-rows: 2fr 1fr;
}
.map{
  display:block;
  border-radius: 14px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
}

.biglink{ font-size: 18px; font-weight: 900; }

.form label{ display:block; margin: 10px 0; }
input, textarea{
  width:99%;
  margin-top:6px;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(17,24,39,.04);
  color: var(--text);
}
input:focus, textarea:focus{
  outline: none;
  border-color: rgba(79,209,197,.55);
  box-shadow: 0 0 0 4px rgba(79,209,197,.12);
}

.footer{
  padding: 22px 0;
  border-top: 1px solid var(--border);
}
.footer__inner{
  display:flex; gap:14px; flex-wrap:wrap;
  align-items:center; justify-content:space-between;
}
.footer__phones{ display:flex; gap:14px; flex-wrap:wrap; }

/* Before/After slider (reveal via clip-path — no scaling) */
.ba{
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(17,24,39,.12);
  background: #e5e7eb;
  --pos: 55%;
}

.ba__img{
  width: 100%;
  height: auto;
  display: block;
}

/* Overlay stays full-size; we reveal part of it using clip-path */
.ba__after{
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
  border-right: 3px solid var(--brand);
}

/* Keep the after image full size (prevents any scaling feel) */
.ba__after .ba__img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Range input */
.ba__range{
  position: absolute;
  left: 4px;
  right: 12px;
  bottom: 12px;
  z-index: 3;
}
.ba__labels{
  position:absolute; inset: 12px 12px auto 12px;
  display:flex; justify-content:space-between;
  font-weight:900;
  text-shadow: 0 8px 18px rgba(0,0,0,.55);
}

/* Mobile nav */
@media (max-width: 920px){
  .nav-toggle{ display:inline-flex; }
  .nav{
    position:absolute;
    top: 62px;
    right: 16px;
    left: 16px;
    display:none;
    flex-direction:column;
    gap:6px;
    background: rgba(255,255,255,.96);
    border:1px solid var(--border);
    border-radius: var(--radius);
    padding: 10px;
    max-height: calc(100dvh - 90px);
    overflow:auto;
  }
  .nav.is-open{ display:flex; }
  .nav a{ width:100%; }
}

/* Desktop layout */
@media (min-width: 921px){
  .hero__inner{ grid-template-columns: 1.25fr .75fr; }
  .grid--2{ grid-template-columns: 1fr 1fr; }
  .grid--3{ grid-template-columns: 1fr 1fr 1fr; }
}

/* Sticky call bar */
.sticky-call{
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 999;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 10px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px rgba(17,24,39,.16);
}
.sticky-call__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 12px;
  border-radius: 14px;
  font-weight: bold;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color: #05202a;
}
.sticky-call__btn--alt{
  background: rgba(255,255,255,.08);
  color: var(--text);
}
@media (max-width: 920px){
  body{ padding-bottom: 92px; }
}
@media (min-width: 921px){
  .sticky-call{ display:none; }
  body{ padding-bottom: 0; }
}


@media (max-width: 920px){
  .hero__media{ display:none; }
  .hero__bg{
    background:
      linear-gradient(180deg, rgba(246,248,252,.92), rgba(246,248,252,.65)),
      url("../img/hero.jpg") center/cover no-repeat;
  }
}

@media (prefers-reduced-motion: reduce){
  .hero__media{ display:none; }
}

/* Ambient background video */
.bg-video{
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  background: url("../img/hero.jpg") center/cover no-repeat;
}

.bg-video::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(246,248,252,.85), rgba(246,248,252,.75)),
    radial-gradient(900px 500px at 15% 0%, rgba(14,165,233,.12), transparent 60%);
  backdrop-filter: blur(2px);
}

.bg-video__el{
  width:100%;
  height:100%;
  object-fit: cover;
  opacity: .4;           /* subtle */
  filter: saturate(1.1) contrast(1.05);
}

/* Disable video on mobile & reduced motion */
@media (max-width: 920px){
  .bg-video__el{ display:none; }
}
@media (prefers-reduced-motion: reduce){
  .bg-video__el{ display:none; }
}

.brand__logo{
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.footer__logo {
  display: flex;
  gap: 20px;
}

.contact-card{
  display: grid;
  gap: 10px; /* tighter spacing */
}

.contact-row{
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.contact-col{
  display: grid;
  gap: 4px;
}

.icon{
  font-size: 18px;
  line-height: 1.2;
}

.contact-link{
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
}

.contact-link:hover{
  color: var(--brand);
}

.social{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.social-btn{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(14,165,233,.08);
}

.social-btn.fb{
  background: rgba(59,130,246,.12);
}

.social-btn.ig{
  background: linear-gradient(135deg, rgba(245,133,41,.18), rgba(221,42,123,.18), rgba(129,52,175,.18));
}

.social-icon{
  width: 16px;
  height: 16px;
}

.contact-time{
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 8px;
  border-top: 1px dashed var(--border);
}

.time-icon{
  width: 16px;
  height: 16px;
  opacity: .7;
}

.margin-l-35 {
  margin-left: 35px;
}