@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;600;700;800;900&display=swap");

:root {
  --orange: #f47b20;
  --orange-dark: #c9580f;
  --green: #25d366;
  --blue: #229ed9;
  --ink: #17212b;
  --muted: #697586;
  --soft: #fff3ea;
  --line: #ece6df;
  --white: #ffffff;
  --shadow: 0 22px 56px rgba(23, 33, 43, .14);
  --shadow-soft: 0 14px 34px rgba(23, 33, 43, .08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Noto Sans", Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
button, input, select, textarea { font: inherit; }
.container { width: min(1160px, calc(100% - 32px)); margin: 0 auto; }
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.96); box-shadow: 0 1px 0 var(--line); transition: box-shadow .2s ease; }
.site-header.is-scrolled { box-shadow: 0 12px 30px rgba(23,33,43,.1); }
.topbar { background: var(--ink); color: var(--white); font-size: 14px; }
.topbar__inner { display: flex; gap: 24px; justify-content: flex-end; padding: 8px 0; }
.navbar__inner { display: flex; align-items: center; justify-content: flex-start; gap: 24px; min-height: 76px; }
.logo { color: var(--orange); font-weight: 800; font-size: 24px; letter-spacing: 0; }
.logo span { color: var(--orange); }
.logo--image {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  width: clamp(166px, 15vw, 218px);
  height: 54px;
  padding: 2px 0;
  transition: transform .2s ease, opacity .2s ease;
}
.logo--image:hover {
  transform: translateY(-1px);
  opacity: .96;
}
.logo--image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: left center;
}
.logo--footer {
  width: 206px;
  height: 58px;
  margin-bottom: 14px;
}
.nav-menu { display: flex; align-items: center; justify-content: center; gap: 24px; flex: 1 1 auto; font-weight: 700; }
.nav-menu a { color: #273442; }
.nav-menu a:hover, .nav-menu a.is-active { color: var(--orange); }
.nav-actions { display: flex; align-items: center; justify-content: flex-end; gap: 12px; margin-left: auto; flex: 0 0 auto; }
.lang-switch {
  width: 58px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid rgba(244, 123, 32, .42);
  border-radius: 8px;
  background: #fff;
  transition: border-color .2s ease, background-color .2s ease, transform .2s ease;
}
.lang-switch:hover {
  border-color: var(--orange);
  background: #fff8f1;
  transform: translateY(-1px);
}
.lang-switch img {
  width: 30px;
  height: 20px;
  display: block;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(23, 33, 43, .14);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.nav-check {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 0;
  border-radius: 999px;
  background: var(--ink);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid var(--orange);
  border-radius: 8px;
  background: var(--orange);
  color: var(--white);
  font-weight: 800;
  cursor: pointer;
}
.btn:hover { background: var(--orange-dark); border-color: var(--orange-dark); }
.btn--ghost { background: var(--white); color: var(--orange); }
.btn--ghost:hover { color: var(--white); }
.btn--small { min-height: 40px; padding: 8px 16px; }
.hero { position: relative; min-height: 720px; display: grid; align-items: center; overflow: hidden; color: var(--white); }
.hero__media { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(23,33,43,.86), rgba(23,33,43,.35)), url("https://images.unsplash.com/photo-1600518464441-9306b36b6b86?auto=format&fit=crop&w=1800&q=82") center/cover; }
.hero__content { position: relative; padding: 104px 0 132px; max-width: 780px; margin-left: max(calc((100vw - 1160px) / 2), 16px); }
.eyebrow { margin: 0 0 10px; color: var(--orange); font-weight: 800; text-transform: uppercase; font-size: 13px; letter-spacing: 0; }
.hero h1, .page-hero h1 { margin: 0 0 20px; font-size: clamp(38px, 6vw, 72px); line-height: 1.04; letter-spacing: 0; }
.hero p:not(.eyebrow) { max-width: 650px; font-size: 20px; color: rgba(255,255,255,.88); }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.section { padding: 96px 0; }
.section--soft { background: var(--soft); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 34px; }
.section-head h2, .copy h2 { margin: 0; font-size: clamp(30px, 4vw, 48px); line-height: 1.12; }
.section-head a { color: var(--orange); font-weight: 800; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card, .feature, .step, .review, .quote-form, .contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.service-card { overflow: hidden; }
.service-card:hover, .feature:hover, .step:hover, .contact-card:hover {
  transform: translateY(-5px);
  border-color: rgba(244, 123, 32, .35);
  box-shadow: 0 24px 54px rgba(23,33,43,.14);
}
.service-card img { height: 190px; }
.service-card h3, .service-card p, .service-card a { margin-left: 18px; margin-right: 18px; }
.service-card h3 { margin-top: 18px; margin-bottom: 8px; }
.service-card p { color: var(--muted); }
.service-card a { display: inline-block; margin-bottom: 20px; color: var(--orange); font-weight: 800; }
.feature-wrap, .split { display: grid; grid-template-columns: .85fr 1.15fr; gap: 44px; align-items: start; }
.copy p:not(.eyebrow) { color: var(--muted); font-size: 18px; }
.features, .steps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.feature, .step { padding: 24px; }
.feature__icon, .step__icon, .contact-card__icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(244, 123, 32, .12);
  color: var(--orange);
  flex: 0 0 auto;
}
.feature__icon svg, .step__icon svg, .contact-card__icon svg, .btn svg, .floating-whatsapp svg, .social-links svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.feature__head { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.feature h3, .step h3 { margin: 0; }
.feature span, .step__number { color: var(--orange); font-weight: 900; font-size: 26px; }
.feature p, .step p { color: var(--muted); margin-bottom: 0; }
.process-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,.48) 1px, transparent 1px) 0 0 / 34px 34px,
    linear-gradient(0deg, rgba(255,255,255,.48) 1px, transparent 1px) 0 0 / 34px 34px,
    linear-gradient(135deg, #fff8f1 0%, #f7fbff 48%, #fff3ea 100%);
}
.steps { position: relative; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: stretch; }
.steps::before { display: none; }
.step {
  position: relative;
  z-index: 1;
  overflow: visible;
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: 34px;
  border-radius: 20px;
  box-shadow: 0 18px 46px rgba(23,33,43,.09);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 100%;
  top: 63px;
  width: 20px;
  height: 2px;
  background:
    radial-gradient(circle at 50% 50%, rgba(244, 123, 32, .72) 0 3px, transparent 4px),
    linear-gradient(90deg, rgba(244, 123, 32, .12), rgba(244, 123, 32, .64), rgba(244, 123, 32, .12));
  z-index: 2;
}
.step:hover {
  transform: translateY(-8px);
  border-color: rgba(244, 123, 32, .28);
  box-shadow: 0 28px 68px rgba(23,33,43,.14);
}
.step::after {
  content: attr(data-step);
  position: absolute;
  right: 12px;
  bottom: 12px;
  color: rgba(244, 123, 32, .16);
  font-size: clamp(120px, 11vw, 160px);
  font-weight: 900;
  line-height: .86;
  z-index: 0;
}
.step__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 18px; position: relative; z-index: 1; }
.step__icon {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, rgba(244,123,32,.95), rgba(34,158,217,.88));
  color: var(--white);
  box-shadow: 0 14px 28px rgba(244, 123, 32, .22);
  transition: transform .3s ease, box-shadow .3s ease;
}
.step__icon svg { width: 28px; height: 28px; }
.step__number {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 14px;
}
.step h3, .step p { position: relative; z-index: 1; }
.step p { margin-top: 12px; }
.step:hover .step__icon {
  transform: scale(1.08);
  box-shadow: 0 18px 36px rgba(244, 123, 32, .28);
}
.stats { background: var(--ink); color: var(--white); padding: 52px 0; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { text-align: center; }
.stat strong { display: block; color: var(--orange); font-size: clamp(34px, 5vw, 58px); line-height: 1; }
.stat span { color: rgba(255,255,255,.78); }
.quote-form { padding: 28px; display: grid; gap: 16px; }
.quote-form label { display: grid; gap: 7px; font-weight: 700; }
.quote-form input, .quote-form select, .quote-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 15px;
  background: #fff;
  color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(244, 123, 32, .14);
}
.quote-form .is-invalid { border-color: #c62828; box-shadow: 0 0 0 4px rgba(198, 40, 40, .12); }
.form-message { margin: 0; font-weight: 800; color: var(--orange-dark); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-item { height: 260px; padding: 0; border: 0; border-radius: 8px; overflow: hidden; cursor: zoom-in; background: #ddd; }
.slider { --slider-gap: 20px; --slider-per-view: 3; overflow: hidden; padding-top: 8px; }
.slider__track {
  display: flex;
  align-items: stretch;
  gap: var(--slider-gap);
  transition: transform .35s ease;
  will-change: transform;
}
.review {
  position: relative;
  flex: 0 0 calc((100% - (var(--slider-gap) * (var(--slider-per-view) - 1))) / var(--slider-per-view));
  min-height: 260px;
  padding: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.review:hover {
  transform: translateY(-6px);
  border-color: rgba(244, 123, 32, .28);
  box-shadow: 0 24px 54px rgba(23,33,43,.14);
}
.review p { position: relative; color: var(--muted); margin: 0; }
.review__rating {
  display: flex;
  gap: 4px;
  margin: 18px 0 14px;
  color: var(--orange);
}
.review__rating svg {
  width: 16px;
  height: 16px;
  display: block;
  fill: currentColor;
}
.review__rating span {
  width: 16px;
  height: 16px;
  display: block;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23f47b20' d='m12 2 3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2Z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.review__author { display: flex; align-items: center; gap: 13px; }
.review__avatar { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(135deg, var(--orange), var(--ink)); color: var(--white); font-weight: 900; flex: 0 0 auto; }
.review__author strong, .review__author span { display: block; }
.review__author span { color: var(--muted); font-size: 14px; }
.review .review__author .review__avatar {
  display: grid;
  place-items: center;
  color: transparent;
  font-size: 14px;
  line-height: 1;
  text-align: center;
}
.slider__controls { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 24px; }
.slider__arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  padding: 0;
  display: grid;
  place-items: center;
}
.slider__arrow:hover { color: var(--white); background: var(--orange); border-color: var(--orange); }
.slider__controls button, .faq__item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 12px 16px;
  cursor: pointer;
  font-weight: 800;
}
.slider__controls .slider__arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  padding: 0;
}
.slider__controls .slider__arrow:hover {
  color: var(--white);
  background: var(--orange);
  border-color: var(--orange);
}
.faq { display: grid; gap: 12px; }
.faq__item { text-align: left; width: 100%; }
.faq__item span { display: block; }
.faq__item p { display: none; color: var(--muted); margin-bottom: 0; font-weight: 400; }
.faq__item.is-open p { display: block; }
.map-section iframe { width: 100%; height: 420px; border: 0; display: block; }
.contact-strip { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 34px; background: var(--ink); color: var(--white); border-radius: 8px; }
.contact-strip h2 { margin: 0; font-size: clamp(28px, 4vw, 44px); }
.contact-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.contact-page { align-items: stretch; }
.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.contact-card {
  min-height: 150px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.contact-card h2 { margin: 14px 0 8px; font-size: 20px; }
.contact-card p, .contact-card a { margin: 0; color: var(--muted); font-weight: 700; }
.social-links { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 24px; }
.social-link {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  line-height: 1;
  overflow: hidden;
  position: relative;
  transform-origin: center;
  transition: transform .3s ease, box-shadow .3s ease, background-color .3s ease;
}
.social-link svg { display: none !important; }
.social-link:not([class*="social-link--"])::before { display: none; }
.social-link img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}
.social-link span {
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}
.social-link::before {
  content: "";
  display: block;
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  background: currentColor;
  -webkit-mask: var(--social-icon) center / contain no-repeat;
  mask: var(--social-icon) center / contain no-repeat;
}
.social-link:hover { transform: translateY(-2px) scale(1.08); box-shadow: 0 14px 28px rgba(23, 33, 43, .18); }
.social-link--whatsapp {
  background: var(--green);
  --social-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.872.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347M12.051 21.785h-.004a9.87 9.87 0 0 1-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 0 1-1.51-5.26c.001-5.45 4.436-9.884 9.889-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 0 1 2.893 6.994c-.003 5.45-4.437 9.884-9.886 9.884'/%3E%3C/svg%3E");
}
.social-link--instagram {
  background: #e4405f;
  --social-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.8 2h8.4A5.8 5.8 0 0 1 22 7.8v8.4A5.8 5.8 0 0 1 16.2 22H7.8A5.8 5.8 0 0 1 2 16.2V7.8A5.8 5.8 0 0 1 7.8 2Zm0 2A3.8 3.8 0 0 0 4 7.8v8.4A3.8 3.8 0 0 0 7.8 20h8.4a3.8 3.8 0 0 0 3.8-3.8V7.8A3.8 3.8 0 0 0 16.2 4H7.8Zm4.2 3.2a4.8 4.8 0 1 1 0 9.6 4.8 4.8 0 0 1 0-9.6Zm0 2a2.8 2.8 0 1 0 0 5.6 2.8 2.8 0 0 0 0-5.6ZM17.1 6.7a1.1 1.1 0 1 1 0 2.2 1.1 1.1 0 0 1 0-2.2Z'/%3E%3C/svg%3E");
}
.social-link--facebook {
  background: #1877f2;
  --social-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.12 8.02H17V4.9c-.32-.04-1.43-.14-2.72-.14-2.69 0-4.53 1.64-4.53 4.65v2.62H6.7v3.49h3.05V24h3.74v-8.48h2.93l.47-3.49h-3.4V9.76c0-1.01.28-1.74 1.63-1.74Z'/%3E%3C/svg%3E");
}
.social-link--telegram {
  background: var(--blue);
  --social-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22.05 3.18c.33-.12.64.17.56.52l-3.2 15.09c-.24 1.12-1.02 1.39-1.95.87l-4.7-3.47-2.26 2.18c-.25.25-.46.46-.95.46l.34-4.78 8.7-7.86c.38-.34-.08-.53-.59-.19L7.24 12.78 2.61 11.33c-1.01-.32-1.03-1.01.21-1.5l19.23-6.65Z'/%3E%3C/svg%3E");
}
.social-link[aria-label*="whatsapp" i],
.social-link[href*="wa.me"],
.social-link[href*="whatsapp" i],
.floating-whatsapp[aria-label*="whatsapp" i],
.floating-whatsapp[href*="wa.me"],
.floating-whatsapp[href*="whatsapp" i] {
  background: var(--green);
  --social-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.872.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347M12.051 21.785h-.004a9.87 9.87 0 0 1-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 0 1-1.51-5.26c.001-5.45 4.436-9.884 9.889-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 0 1 2.893 6.994c-.003 5.45-4.437 9.884-9.886 9.884'/%3E%3C/svg%3E");
}
.social-link[aria-label*="instagram" i],
.social-link[href*="instagram" i] {
  background: #e4405f;
  --social-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.8 2h8.4A5.8 5.8 0 0 1 22 7.8v8.4A5.8 5.8 0 0 1 16.2 22H7.8A5.8 5.8 0 0 1 2 16.2V7.8A5.8 5.8 0 0 1 7.8 2Zm0 2A3.8 3.8 0 0 0 4 7.8v8.4A3.8 3.8 0 0 0 7.8 20h8.4a3.8 3.8 0 0 0 3.8-3.8V7.8A3.8 3.8 0 0 0 16.2 4H7.8Zm4.2 3.2a4.8 4.8 0 1 1 0 9.6 4.8 4.8 0 0 1 0-9.6Zm0 2a2.8 2.8 0 1 0 0 5.6 2.8 2.8 0 0 0 0-5.6ZM17.1 6.7a1.1 1.1 0 1 1 0 2.2 1.1 1.1 0 0 1 0-2.2Z'/%3E%3C/svg%3E");
}
.social-link[aria-label*="facebook" i],
.social-link[href*="facebook" i] {
  background: #1877f2;
  --social-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.12 8.02H17V4.9c-.32-.04-1.43-.14-2.72-.14-2.69 0-4.53 1.64-4.53 4.65v2.62H6.7v3.49h3.05V24h3.74v-8.48h2.93l.47-3.49h-3.4V9.76c0-1.01.28-1.74 1.63-1.74Z'/%3E%3C/svg%3E");
}
.social-link[aria-label*="telegram" i],
.social-link[href*="telegram" i],
.social-link[href*="t.me"] {
  background: var(--blue);
  --social-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22.05 3.18c.33-.12.64.17.56.52l-3.2 15.09c-.24 1.12-1.02 1.39-1.95.87l-4.7-3.47-2.26 2.18c-.25.25-.46.46-.95.46l.34-4.78 8.7-7.86c.38-.34-.08-.53-.59-.19L7.24 12.78 2.61 11.33c-1.01-.32-1.03-1.01.21-1.5l19.23-6.65Z'/%3E%3C/svg%3E");
}
.social-link[aria-label*="whatsapp" i]::before,
.social-link[href*="wa.me"]::before,
.social-link[href*="whatsapp" i]::before,
.social-link[aria-label*="instagram" i]::before,
.social-link[href*="instagram" i]::before,
.social-link[aria-label*="facebook" i]::before,
.social-link[href*="facebook" i]::before,
.social-link[aria-label*="telegram" i]::before,
.social-link[href*="telegram" i]::before,
.social-link[href*="t.me"]::before {
  display: block !important;
}
.social-link[aria-label*="whatsapp" i] span,
.social-link[href*="wa.me"] span,
.social-link[href*="whatsapp" i] span,
.social-link[aria-label*="instagram" i] span,
.social-link[href*="instagram" i] span,
.social-link[aria-label*="facebook" i] span,
.social-link[href*="facebook" i] span,
.social-link[aria-label*="telegram" i] span,
.social-link[href*="telegram" i] span,
.social-link[href*="t.me"] span {
  display: none !important;
}
.footer .social-links { margin-top: 14px; }
.footer .social-link {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}
.footer .social-link::before { width: 20px; height: 20px; }
.footer .social-link img { width: 22px; height: 22px; }
.map-section--framed { padding: 0 0 88px; background: var(--white); }
.map-section--framed iframe {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.footer { background: #101820; color: rgba(255,255,255,.78); padding: 54px 0; }
.footer__grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 28px; }
.footer h3 { color: var(--white); margin-top: 0; }
.footer a, .footer span { display: block; margin: 8px 0; }
.footer .social-links { display: flex; align-items: center; gap: 10px; }
.footer .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}
.footer .social-link[href*="wa.me"]::before,
.footer .social-link[href*="whatsapp"]::before,
.footer .social-link[href*="instagram.com"]::before,
.footer .social-link[href*="facebook.com"]::before,
.footer .social-link[href*="t.me"]::before,
.footer .social-link[href*="telegram"]::before {
  width: 21px !important;
  height: 21px !important;
  display: block !important;
  background-color: transparent !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: contain !important;
  -webkit-mask: none !important;
  mask: none !important;
}
.footer .social-link[href*="wa.me"]::before,
.footer .social-link[href*="whatsapp"]::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23ffffff' d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.872.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347M12.051 21.785h-.004a9.87 9.87 0 0 1-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 0 1-1.51-5.26c.001-5.45 4.436-9.884 9.889-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 0 1 2.893 6.994c-.003 5.45-4.437 9.884-9.886 9.884'/%3E%3C/svg%3E") !important;
}
.footer .social-link[href*="instagram.com"]::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23ffffff' d='M7.8 2h8.4A5.8 5.8 0 0 1 22 7.8v8.4A5.8 5.8 0 0 1 16.2 22H7.8A5.8 5.8 0 0 1 2 16.2V7.8A5.8 5.8 0 0 1 7.8 2Zm0 2A3.8 3.8 0 0 0 4 7.8v8.4A3.8 3.8 0 0 0 7.8 20h8.4a3.8 3.8 0 0 0 3.8-3.8V7.8A3.8 3.8 0 0 0 16.2 4H7.8Zm4.2 3.2a4.8 4.8 0 1 1 0 9.6 4.8 4.8 0 0 1 0-9.6Zm0 2a2.8 2.8 0 1 0 0 5.6 2.8 2.8 0 0 0 0-5.6ZM17.1 6.7a1.1 1.1 0 1 1 0 2.2 1.1 1.1 0 0 1 0-2.2Z'/%3E%3C/svg%3E") !important;
}
.footer .social-link[href*="facebook.com"]::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23ffffff' d='M15.12 8.02H17V4.9c-.32-.04-1.43-.14-2.72-.14-2.69 0-4.53 1.64-4.53 4.65v2.62H6.7v3.49h3.05V24h3.74v-8.48h2.93l.47-3.49h-3.4V9.76c0-1.01.28-1.74 1.63-1.74Z'/%3E%3C/svg%3E") !important;
}
.footer .social-link[href*="t.me"]::before,
.footer .social-link[href*="telegram"]::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23ffffff' d='M22.05 3.18c.33-.12.64.17.56.52l-3.2 15.09c-.24 1.12-1.02 1.39-1.95.87l-4.7-3.47-2.26 2.18c-.25.25-.46.46-.95.46l.34-4.78 8.7-7.86c.38-.34-.08-.53-.59-.19L7.24 12.78 2.61 11.33c-1.01-.32-1.03-1.01.21-1.5l19.23-6.65Z'/%3E%3C/svg%3E") !important;
}
.footer .social-link[href*="wa.me"] span,
.footer .social-link[href*="whatsapp"] span,
.footer .social-link[href*="instagram.com"] span,
.footer .social-link[href*="facebook.com"] span,
.footer .social-link[href*="t.me"] span,
.footer .social-link[href*="telegram"] span {
  display: none !important;
}
.page-hero { padding: 96px 0; color: var(--white); background: linear-gradient(90deg, rgba(23,33,43,.9), rgba(23,33,43,.55)), url("https://images.unsplash.com/photo-1590496793929-36417d3117de?auto=format&fit=crop&w=1800&q=82") center/cover; }
.page-hero p { max-width: 720px; color: rgba(255,255,255,.86); font-size: 19px; }
.page-hero:has(+ .reviews-page) {
  min-height: 360px;
  display: grid;
  align-items: end;
  padding: 92px 0 74px;
}
.page-hero:has(+ .reviews-page) .container {
  max-width: 1160px;
}
.page-hero:has(+ .reviews-page) h1 {
  max-width: 760px;
}
.reviews-page {
  position: relative;
  overflow: hidden;
  padding: 82px 0 112px;
  background:
    linear-gradient(90deg, rgba(23, 33, 43, .035) 1px, transparent 1px) 0 0 / 44px 44px,
    linear-gradient(0deg, rgba(23, 33, 43, .035) 1px, transparent 1px) 0 0 / 44px 44px,
    #fff;
}
.reviews-page__head {
  max-width: 760px;
  margin: 0 0 34px;
}
.reviews-page__head h2 {
  margin: 0 0 14px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
}
.reviews-page__head > p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}
.reviews-page__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}
.review-card {
  position: relative;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 18px 46px rgba(23, 33, 43, .08);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.review-card:hover {
  transform: translateY(-5px);
  border-color: rgba(244, 123, 32, .38);
  box-shadow: 0 26px 64px rgba(23, 33, 43, .14);
}
.review-card__quote {
  position: absolute;
  right: 24px;
  top: 8px;
  color: rgba(244, 123, 32, .12);
  font-size: 92px;
  line-height: 1;
  font-weight: 900;
  pointer-events: none;
}
.review-card .review__rating {
  margin: 0 0 20px;
}
.review-card > p {
  position: relative;
  z-index: 1;
  margin: 0 0 28px;
  color: #4d5968;
  font-size: 18px;
  line-height: 1.7;
}
.review-card .review__author {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.review-card .review__author strong {
  color: var(--ink);
  font-size: 17px;
}
.review-card .review__author span:not(.review__avatar) {
  color: var(--muted);
  font-size: 14px;
}
.review__avatar {
  color: transparent !important;
  text-indent: -9999px;
  overflow: hidden;
}
.about-hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}
.about-hero__media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16,24,32,.9), rgba(16,24,32,.58), rgba(16,24,32,.24)),
    url("https://images.unsplash.com/photo-1590496793929-36417d3117de?auto=format&fit=crop&w=1800&q=82") center/cover;
}
.about-hero__content {
  position: relative;
  max-width: 820px;
  padding: 110px 0 132px;
}
.about-hero h1 {
  margin: 0 0 22px;
  font-size: clamp(38px, 5.8vw, 72px);
  line-height: 1.04;
}
.about-hero p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255,255,255,.88);
  font-size: 20px;
}
.about-intro__grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 58px;
  align-items: start;
}
.about-intro__text {
  display: grid;
  gap: 18px;
  color: var(--muted);
  font-size: 18px;
}
.about-intro__text p { margin: 0; }
.about-hero .eyebrow,
.about-intro .eyebrow,
.about-mission .eyebrow,
.about-why .eyebrow,
.about-guarantees .eyebrow {
  font-size: 16px;
  margin-bottom: 14px;
}
.about-intro .eyebrow,
.about-mission .eyebrow,
.about-why .eyebrow,
.about-guarantees .eyebrow,
.about-values-section .eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(244, 123, 32, .12);
  color: var(--orange);
}
.about-stats { background: linear-gradient(135deg, #101820, #17212b); }
.about-mission__grid {
  display: grid;
  grid-template-columns: 1fr .82fr;
  gap: 34px;
  align-items: stretch;
}
.about-mission__card {
  padding: 42px;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.about-mission__card h2 { margin: 0 0 18px; font-size: clamp(30px, 4vw, 48px); line-height: 1.12; }
.about-mission__card p:not(.eyebrow) { color: var(--muted); font-size: 18px; }
.about-mission__image {
  min-height: 430px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.about-value {
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.about-value:hover {
  transform: translateY(-6px);
  border-color: rgba(244, 123, 32, .28);
  box-shadow: 0 24px 54px rgba(23,33,43,.14);
}
.about-value__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--blue));
  box-shadow: 0 14px 28px rgba(244,123,32,.2);
  margin-bottom: 18px;
}
.about-value__icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.about-value h3 { margin: 0 0 10px; }
.about-value p { margin: 0; color: var(--muted); }
.about-why {
  background:
    linear-gradient(90deg, rgba(244,123,32,.06), transparent 42%),
    linear-gradient(135deg, #fff, #f7fbff);
}
.about-why__grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 48px;
  align-items: start;
}
.about-advantages {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.about-advantages div {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.86);
  box-shadow: var(--shadow-soft);
}
.about-advantages strong {
  color: var(--orange);
  font-size: 22px;
  line-height: 1;
}
.about-advantages span {
  color: var(--ink);
  font-weight: 800;
  line-height: 1.35;
}
.about-guarantees { background: var(--white); }
.about-guarantee-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.about-guarantee {
  min-height: 250px;
  padding: 28px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(244,123,32,.08), transparent 46%),
    var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.about-guarantee:hover {
  transform: translateY(-6px);
  border-color: rgba(244, 123, 32, .28);
  box-shadow: 0 24px 54px rgba(23,33,43,.14);
}
.about-guarantee strong {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  margin-bottom: 18px;
}
.about-guarantee h3 { margin: 0 0 10px; }
.about-guarantee p { margin: 0; color: var(--muted); }
.service-landing { --service-accent: var(--orange); --service-soft: #fff3ea; }
.service-hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}
.service-hero__media {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16,24,32,.9), rgba(16,24,32,.56), rgba(16,24,32,.2)), var(--service-image) center/cover;
}
.service-hero__content { position: relative; max-width: 820px; padding: 112px 0 132px; }
.service-hero h1 { margin: 0 0 22px; font-size: clamp(38px, 5.8vw, 72px); line-height: 1.04; }
.service-hero p:not(.eyebrow) { max-width: 720px; color: rgba(255,255,255,.88); font-size: 20px; }
.service-summary {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 54px;
  align-items: start;
}
.service-summary__text { display: grid; gap: 18px; color: var(--muted); font-size: 18px; }
.service-summary__text p { margin: 0; }
.service-includes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-include,
.service-benefit,
.service-price-card {
  padding: 26px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.service-include:hover,
.service-benefit:hover,
.service-price-card:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--service-accent) 38%, transparent);
  box-shadow: 0 24px 54px rgba(23,33,43,.14);
}
.service-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--service-accent), var(--blue));
  margin-bottom: 16px;
}
.service-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-include h3,
.service-benefit h3,
.service-price-card h3 { margin: 0 0 10px; }
.service-include p,
.service-benefit p,
.service-price-card p { margin: 0; color: var(--muted); }
.service-steps-section { background: var(--service-soft); }
.service-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  counter-reset: service-step;
}
.service-timeline article {
  min-height: 190px;
  padding: 24px;
  border-radius: 18px;
  background: rgba(255,255,255,.88);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.service-timeline article::before {
  counter-increment: service-step;
  content: "0" counter(service-step);
  display: inline-block;
  color: var(--service-accent);
  font-weight: 900;
  font-size: 24px;
  margin-bottom: 18px;
}
.service-timeline h3 { margin: 0 0 8px; }
.service-timeline p { margin: 0; color: var(--muted); }
.service-gallery {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 18px;
}
.service-gallery img {
  min-height: 260px;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}
.service-gallery img:first-child {
  grid-row: span 2;
  min-height: 538px;
}
.service-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.service-price {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 32px;
  align-items: start;
}
.service-price-list {
  display: grid;
  gap: 14px;
}
.service-price-list li {
  list-style: none;
  padding: 18px 20px;
  border-radius: 14px;
  background: rgba(255,255,255,.88);
  border: 1px solid var(--line);
  color: var(--ink);
  font-weight: 800;
}
.service-price-list ul { margin: 0; padding: 0; display: grid; gap: 12px; }
.service-cta {
  padding: 34px;
  border-radius: 20px;
  background: var(--ink);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.service-cta h2 { margin: 0; font-size: clamp(28px, 4vw, 44px); }
.service-cta p { margin: 8px 0 0; color: rgba(255,255,255,.74); }
.service-landing--office { --service-accent: #229ed9; --service-soft: #eef8ff; }
.service-landing--loaders { --service-accent: #f47b20; --service-soft: #fff3ea; }
.service-landing--junk { --service-accent: #25a55f; --service-soft: #effaf4; }
.service-landing--materials { --service-accent: #c9580f; --service-soft: #fff4ec; }
.service-landing--piano { --service-accent: #7c3aed; --service-soft: #f5f0ff; }
.service-landing--safe { --service-accent: #4b5563; --service-soft: #f3f4f6; }
.service-landing--warehouse { --service-accent: #0f766e; --service-soft: #edfafa; }
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.text-panel { padding: 28px; border: 1px solid var(--line); border-radius: 8px; background: var(--white); }
.list-check { padding-left: 0; list-style: none; display: grid; gap: 10px; }
.list-check li::before { content: "✓"; color: var(--orange); font-weight: 900; margin-right: 8px; }
.floating-whatsapp, .back-to-top {
  position: fixed;
  right: 18px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 60;
  box-shadow: var(--shadow);
  border: 0;
  font-weight: 900;
}
.floating-whatsapp {
  bottom: 88px;
  background: var(--green);
  color: #fff;
  font-size: 0;
  overflow: hidden;
}
.floating-whatsapp::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 29px;
  height: 29px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23ffffff' d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 0 1-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 0 1-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 0 1 2.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0 0 12.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 0 0 5.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 0 0-3.478-8.413Z'/%3E%3C/svg%3E") center/contain no-repeat;
  transform: translate(-50%, -50%);
}
.floating-whatsapp > svg { display: none; }
.floating-whatsapp:has(img)::before,
.floating-whatsapp:has(span)::before { display: none; }
.floating-whatsapp img {
  width: 30px;
  height: 30px;
  display: block;
  object-fit: contain;
}
.floating-whatsapp span {
  font-size: 15px;
  line-height: 1;
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
}
.floating-whatsapp[aria-label*="whatsapp" i]::before,
.floating-whatsapp[href*="wa.me"]::before,
.floating-whatsapp[href*="whatsapp" i]::before {
  display: block !important;
}
.floating-whatsapp[aria-label*="whatsapp" i] span,
.floating-whatsapp[href*="wa.me"] span,
.floating-whatsapp[href*="whatsapp" i] span {
  display: none !important;
}
.back-to-top { bottom: 24px; background: var(--orange); color: #fff; cursor: pointer; opacity: 0; pointer-events: none; transition: opacity .2s ease; }
.back-to-top.is-visible { opacity: 1; pointer-events: auto; }
.lightbox { position: fixed; inset: 0; display: none; align-items: center; justify-content: center; padding: 28px; background: rgba(0,0,0,.82); z-index: 80; }
.lightbox.is-open { display: flex; }
.lightbox img { width: min(960px, 100%); height: auto; max-height: 86vh; border-radius: 8px; }
.lightbox button { position: absolute; top: 18px; right: 18px; width: 44px; height: 44px; border: 0; border-radius: 50%; background: #fff; cursor: pointer; font-size: 28px; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .topbar__inner { justify-content: center; flex-wrap: wrap; gap: 10px 18px; }
  .navbar__inner { gap: 12px; }
  .nav-toggle { display: block; }
  .logo { flex: 0 1 auto; }
  .nav-toggle {
    order: 2;
    margin-left: auto;
    flex: 0 0 44px;
  }
  .nav-actions {
    order: 3;
    margin-left: 0 !important;
    flex: 0 0 auto;
  }
  .nav-menu { position: absolute; left: 16px; right: 16px; top: 118px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 14px; background: #fff; border: 1px solid var(--line); border-radius: 8px; box-shadow: var(--shadow); }
  .nav-menu.is-open { display: flex; }
  .nav-menu a { padding: 12px; }
  .service-grid, .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-page__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-wrap, .split, .content-grid, .contact-page, .about-intro__grid, .about-mission__grid, .about-why__grid, .service-summary, .service-price { grid-template-columns: 1fr; }
  .about-values, .about-guarantee-grid { grid-template-columns: repeat(2, 1fr); }
  .service-includes, .service-benefits { grid-template-columns: repeat(2, 1fr); }
  .service-timeline { grid-template-columns: repeat(2, 1fr); }
  .service-gallery { grid-template-columns: 1fr 1fr; }
  .service-gallery img:first-child { grid-row: auto; min-height: 260px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .step:not(:last-child)::before { display: none; }
  .slider { --slider-per-view: 2; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .logo--image { width: 150px; height: 46px; }
  .logo--footer { width: 178px; height: 52px; }
  .call-link { display: none; }
  .lang-switch { width: 52px; min-height: 42px; padding: 7px 10px; }
  .lang-switch img { width: 28px; height: 19px; }
  .hero { min-height: 620px; }
  .service-hero { min-height: 640px; }
  .service-hero__content { padding: 78px 0 104px; }
  .about-hero { min-height: 640px; }
  .about-hero__content { padding: 78px 0 104px; }
  .hero__content { padding: 72px 0 96px; }
  .section { padding: 62px 0; }
  .section-head, .contact-strip { align-items: flex-start; flex-direction: column; }
  .service-grid, .features, .steps, .stats__grid, .gallery-grid, .footer__grid, .contact-grid, .about-values, .about-advantages, .about-guarantee-grid, .service-includes, .service-benefits, .service-timeline, .service-gallery { grid-template-columns: 1fr; }
  .reviews-page { padding: 58px 0 76px; }
  .reviews-page__grid { grid-template-columns: 1fr; }
  .review-card { min-height: 0; padding: 24px; }
  .service-cta { align-items: flex-start; flex-direction: column; }
  .about-mission__card, .about-value, .about-guarantee { padding: 24px; }
  .about-mission__image { min-height: 300px; }
  .gallery-item { height: 220px; }
  .slider { --slider-per-view: 1; }
  .topbar { display: none; }
  .nav-menu { top: 84px; }
}

.footer .social-links .social-link {
  color: #fff !important;
  font-size: 0 !important;
  line-height: 0 !important;
}

.footer .social-links .social-link span {
  display: none !important;
}

.footer .social-links .social-link::before {
  content: "" !important;
  width: 21px !important;
  height: 21px !important;
  display: block !important;
  flex: 0 0 auto !important;
  background-color: transparent !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: contain !important;
  -webkit-mask-image: none !important;
  mask-image: none !important;
  -webkit-mask: none !important;
  mask: none !important;
}

.footer .social-links .social-link[href*="wa.me"]::before,
.footer .social-links .social-link[href*="whatsapp"]::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23fff' d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.872.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347M12.051 21.785h-.004a9.87 9.87 0 0 1-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 0 1-1.51-5.26c.001-5.45 4.436-9.884 9.889-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 0 1 2.893 6.994c-.003 5.45-4.437 9.884-9.886 9.884'/%3E%3C/svg%3E") !important;
}

.footer .social-links .social-link[href*="instagram.com"]::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23fff' d='M7.8 2h8.4A5.8 5.8 0 0 1 22 7.8v8.4A5.8 5.8 0 0 1 16.2 22H7.8A5.8 5.8 0 0 1 2 16.2V7.8A5.8 5.8 0 0 1 7.8 2Zm0 2A3.8 3.8 0 0 0 4 7.8v8.4A3.8 3.8 0 0 0 7.8 20h8.4a3.8 3.8 0 0 0 3.8-3.8V7.8A3.8 3.8 0 0 0 16.2 4H7.8Zm4.2 3.2a4.8 4.8 0 1 1 0 9.6 4.8 4.8 0 0 1 0-9.6Zm0 2a2.8 2.8 0 1 0 0 5.6 2.8 2.8 0 0 0 0-5.6ZM17.1 6.7a1.1 1.1 0 1 1 0 2.2 1.1 1.1 0 0 1 0-2.2Z'/%3E%3C/svg%3E") !important;
}

.footer .social-links .social-link[href*="facebook.com"]::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23fff' d='M15.12 8.02H17V4.9c-.32-.04-1.43-.14-2.72-.14-2.69 0-4.53 1.64-4.53 4.65v2.62H6.7v3.49h3.05V24h3.74v-8.48h2.93l.47-3.49h-3.4V9.76c0-1.01.28-1.74 1.63-1.74Z'/%3E%3C/svg%3E") !important;
}

.footer .social-links .social-link[href*="t.me"]::before,
.footer .social-links .social-link[href*="telegram"]::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23fff' d='M22.05 3.18c.33-.12.64.17.56.52l-3.2 15.09c-.24 1.12-1.02 1.39-1.95.87l-4.7-3.47-2.26 2.18c-.25.25-.46.46-.95.46l.34-4.78 8.7-7.86c.38-.34-.08-.53-.59-.19L7.24 12.78 2.61 11.33c-1.01-.32-1.03-1.01.21-1.5l19.23-6.65Z'/%3E%3C/svg%3E") !important;
}

@media (max-width: 980px) {
  .site-header {
    z-index: 1000 !important;
  }

  .nav-toggle {
    position: relative;
    z-index: 1002;
    display: grid !important;
    place-items: center;
    padding: 0;
  }

  .nav-menu {
    position: fixed !important;
    left: 16px !important;
    right: 16px !important;
    top: 94px !important;
    z-index: 1001 !important;
    display: none !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
    padding: 10px !important;
    border: 1px solid var(--line) !important;
    border-radius: 12px !important;
    background: #fff !important;
    box-shadow: 0 22px 54px rgba(23, 33, 43, .22) !important;
  }

  .nav-menu.is-open {
    display: flex !important;
  }

  .nav-check:checked ~ .nav-menu {
    display: flex !important;
  }

  .nav-check:checked + .nav-toggle {
    border-color: var(--orange) !important;
    background: #fff8f1 !important;
  }

  .nav-menu a {
    display: block !important;
    padding: 14px 16px !important;
    border-radius: 8px;
    font-size: 17px;
  }

  .nav-menu a:hover {
    background: #fff3ea;
  }
}

.footer .social-links .social-link:has(img)::before {
  display: none !important;
}

.footer .social-links .social-link img {
  display: block !important;
  width: 22px !important;
  height: 22px !important;
  object-fit: contain !important;
}

@media (max-width: 980px) {
  .navbar .nav-toggle {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    gap: 4px !important;
    width: 44px !important;
    height: 44px !important;
    padding: 0 !important;
  }

  .navbar .nav-toggle span {
    display: block !important;
    width: 21px !important;
    height: 2px !important;
    margin: 0 !important;
    border-radius: 999px !important;
    background: var(--ink) !important;
  }

  .navbar .nav-check:checked + .nav-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .navbar .nav-check:checked + .nav-toggle span:nth-child(2) {
    opacity: 0;
    transform: scaleX(.4);
  }

  .navbar .nav-check:checked + .nav-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .navbar .nav-toggle span {
    transition: transform .22s ease, opacity .18s ease, background-color .2s ease !important;
  }

  .navbar .nav-menu {
    top: 98px !important;
    left: 24px !important;
    right: 24px !important;
    display: flex !important;
    gap: 4px !important;
    padding: 12px !important;
    border: 1px solid rgba(244, 123, 32, .18) !important;
    border-radius: 18px !important;
    background: rgba(255, 255, 255, .96) !important;
    box-shadow: 0 28px 70px rgba(16, 24, 32, .24) !important;
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px) scale(.98);
    transform-origin: top center;
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
  }

  .navbar .nav-check:checked ~ .nav-menu,
  .navbar .nav-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .navbar .nav-menu::before {
    content: "Menyu";
    display: block;
    padding: 8px 14px 10px;
    color: var(--orange);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .navbar .nav-menu a {
    position: relative;
    display: flex !important;
    align-items: center;
    min-height: 48px;
    padding: 12px 44px 12px 16px !important;
    border-radius: 12px;
    color: #1f2937 !important;
    font-size: 16px !important;
    font-weight: 850 !important;
    letter-spacing: 0;
    transition: background-color .18s ease, color .18s ease, transform .18s ease;
  }

  .navbar .nav-menu a::before {
    content: "";
    width: 8px;
    height: 8px;
    margin-right: 12px;
    border-radius: 50%;
    background: rgba(244, 123, 32, .24);
    box-shadow: inset 0 0 0 2px rgba(244, 123, 32, .18);
  }

  .navbar .nav-menu a::after {
    content: "\203A";
    position: absolute;
    right: 16px;
    top: 50%;
    color: rgba(31, 41, 55, .42);
    font-size: 24px;
    line-height: 1;
    transform: translateY(-52%);
  }

  .navbar .nav-menu a:hover,
  .navbar .nav-menu a:focus {
    background: #fff3ea;
    color: var(--orange) !important;
    transform: translateX(2px);
  }

  .navbar .nav-menu a:hover::before,
  .navbar .nav-menu a:focus::before {
    background: var(--orange);
    box-shadow: 0 0 0 5px rgba(244, 123, 32, .12);
  }
}

@media (max-width: 980px) {
  .navbar .container {
    position: relative;
  }

  .navbar .nav-check:checked + .nav-toggle {
    border-color: rgba(244, 123, 32, .85) !important;
    background: linear-gradient(180deg, #fffaf5 0%, #fff 100%) !important;
    box-shadow: 0 12px 28px rgba(244, 123, 32, .18), 0 0 0 4px rgba(244, 123, 32, .08) !important;
  }

  .navbar .nav-menu {
    top: calc(100% + 18px) !important;
    left: 0 !important;
    right: 0 !important;
    width: auto !important;
    margin: 0 !important;
    padding: 10px !important;
    border: 1px solid rgba(226, 232, 240, .95) !important;
    border-radius: 22px !important;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, .98) 0%, rgba(255, 248, 242, .96) 100%),
      #fff !important;
    box-shadow: 0 24px 70px rgba(15, 23, 42, .18), 0 10px 26px rgba(244, 123, 32, .08) !important;
    overflow: hidden !important;
  }

  .navbar .nav-menu::before {
    content: "Menyu";
    margin: 0 0 6px;
    padding: 10px 14px 12px !important;
    border-bottom: 1px solid rgba(226, 232, 240, .8);
    color: #f47b20 !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    letter-spacing: .12em !important;
  }

  .navbar .nav-menu a {
    min-height: 52px !important;
    padding: 13px 46px 13px 14px !important;
    border: 1px solid transparent;
    border-radius: 15px !important;
    color: #17212b !important;
    font-size: 16px !important;
    font-weight: 850 !important;
    line-height: 1.25 !important;
  }

  .navbar .nav-menu a + a {
    margin-top: 2px;
  }

  .navbar .nav-menu a::before {
    flex: 0 0 30px;
    width: 30px !important;
    height: 30px !important;
    margin-right: 12px !important;
    border-radius: 10px !important;
    background: #fff3ea !important;
    box-shadow: inset 0 0 0 1px rgba(244, 123, 32, .2) !important;
  }

  .navbar .nav-menu a::after {
    content: "\203A" !important;
    right: 16px !important;
    color: rgba(23, 33, 43, .34) !important;
    font-size: 25px !important;
    font-weight: 700 !important;
  }

  .navbar .nav-menu a:hover,
  .navbar .nav-menu a:focus {
    border-color: rgba(244, 123, 32, .2);
    background: #fff7f0 !important;
    color: #f47b20 !important;
  }

  .navbar .nav-menu a:hover::before,
  .navbar .nav-menu a:focus::before {
    background: linear-gradient(135deg, #f47b20 0%, #ff9d45 100%) !important;
    box-shadow: 0 8px 18px rgba(244, 123, 32, .24) !important;
  }
}

@media (max-width: 980px) {
  .navbar .nav-menu {
    position: fixed !important;
    top: 92px !important;
    left: 24px !important;
    right: 24px !important;
    z-index: 5000 !important;
    max-height: calc(100vh - 120px);
    overflow-y: auto !important;
  }

  .navbar .nav-check:checked ~ .nav-menu {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) scale(1) !important;
  }
}

@media (max-width: 980px) {
  .navbar .nav-menu a::before {
    content: "" !important;
    display: grid !important;
    place-items: center !important;
    background-color: #fff3ea !important;
    background-image: var(--mobile-nav-icon) !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: 17px 17px !important;
  }

  .navbar .nav-menu a:nth-of-type(1) {
    --mobile-nav-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23f47b20' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m3 11 9-8 9 8'/%3E%3Cpath d='M5 10v10h14V10'/%3E%3Cpath d='M10 20v-6h4v6'/%3E%3C/svg%3E");
  }

  .navbar .nav-menu a:nth-of-type(2) {
    --mobile-nav-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23f47b20' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 21h18'/%3E%3Cpath d='M5 21V7l8-4v18'/%3E%3Cpath d='M19 21V11l-6-4'/%3E%3Cpath d='M9 9h.01'/%3E%3Cpath d='M9 13h.01'/%3E%3Cpath d='M9 17h.01'/%3E%3C/svg%3E");
  }

  .navbar .nav-menu a:nth-of-type(3) {
    --mobile-nav-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23f47b20' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 17h4V5H2v12h3'/%3E%3Cpath d='M14 17h1.5'/%3E%3Cpath d='M18.5 17H22v-6l-3-4h-4v10h1'/%3E%3Ccircle cx='7.5' cy='17.5' r='2.5'/%3E%3Ccircle cx='17.5' cy='17.5' r='2.5'/%3E%3C/svg%3E");
  }

  .navbar .nav-menu a:nth-of-type(4) {
    --mobile-nav-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23f47b20' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='18' height='18' rx='3'/%3E%3Ccircle cx='9' cy='9' r='1.5'/%3E%3Cpath d='m21 15-3.5-3.5L9 20'/%3E%3C/svg%3E");
  }

  .navbar .nav-menu a:nth-of-type(5) {
    --mobile-nav-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23f47b20' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3.5 14.6 8.8l5.9.9-4.3 4.1 1 5.8L12 16.9l-5.2 2.7 1-5.8-4.3-4.1 5.9-.9L12 3.5Z'/%3E%3C/svg%3E");
  }

  .navbar .nav-menu a:nth-of-type(6) {
    --mobile-nav-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23f47b20' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.9v3a2 2 0 0 1-2.2 2 19.7 19.7 0 0 1-8.6-3.1 19.3 19.3 0 0 1-6-6A19.7 19.7 0 0 1 2.1 4.2 2 2 0 0 1 4.1 2h3a2 2 0 0 1 2 1.7c.1 1 .4 2 .7 2.9a2 2 0 0 1-.5 2.1L8.1 9.9a16 16 0 0 0 6 6l1.2-1.2a2 2 0 0 1 2.1-.5c.9.3 1.9.6 2.9.7a2 2 0 0 1 1.7 2Z'/%3E%3C/svg%3E");
  }
}
