@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: space-between; gap: 24px; min-height: 76px; }
.logo { color: var(--orange); font-weight: 800; font-size: 24px; letter-spacing: 0; }
.logo span { color: var(--orange); }
.nav-menu { display: flex; align-items: center; gap: 24px; font-weight: 700; }
.nav-menu a { color: #273442; }
.nav-menu a:hover, .nav-menu a.is-active { color: var(--orange); }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: var(--white); border-radius: 8px; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--ink); margin: 5px auto; }
.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: var(--white);
  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::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");
}
.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; }
.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;
}
.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; }
.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; }
.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; }
  .nav-toggle { display: block; }
  .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); }
  .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) {
  .call-link { display: none; }
  .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; }
  .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; }
}
