:root {
  --black: #08090b;
  --charcoal: #15181d;
  --charcoal-2: #20252c;
  --yellow: #ffc400;
  --white: #ffffff;
  --muted: #aab0ba;
  --line: rgba(255, 255, 255, 0.13);
  --container: 1180px;
  --header-height: 86px;
  --top-bar-height: 42px;
  --header-total-height: calc(var(--top-bar-height) + var(--header-height));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
  overflow-x: hidden;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  min-width: 320px;
  overflow-x: hidden;
  font-family: "Barlow", Arial, sans-serif;
  color: var(--white);
  background: var(--black);
}

body.lightbox-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }

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

.top-bar {
  position: relative;
  z-index: 30;
  background: #050607;
  border-bottom: 1px solid rgba(255, 196, 0, 0.18);
  font-size: 14px;
  font-weight: 600;
}

.top-bar__inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.top-bar__left, .top-bar__phone {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-bar i, .top-bar__phone strong, .text-yellow { color: var(--yellow); }
.top-bar__left { color: #d7d9dd; }
.top-bar__divider { width: 1px; height: 16px; background: rgba(255, 255, 255, 0.22); }
.top-bar__phone { color: #eef0f3; transition: color 0.2s ease; }
.top-bar__phone:hover, .top-bar__phone:focus-visible { color: var(--yellow); outline: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 25;
  background: rgba(12, 14, 17, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(8, 9, 11, 0.98);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.34);
}

.site-header__inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  transition: min-height 0.25s ease;
}

.site-header.is-scrolled .site-header__inner { min-height: 72px; }

.logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 12px;
  min-width: 0;
}

.logo__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--black);
  background: var(--yellow);
  clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%);
  box-shadow: 0 10px 26px rgba(255, 196, 0, 0.2);
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 0.9;
  font-size: 18px;
  font-weight: 800;
}

.logo__text strong { color: var(--yellow); font-size: 24px; font-weight: 900; }

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  flex: 1 1 auto;
}

.main-nav__link {
  position: relative;
  padding-block: 32px;
  color: #e5e7eb;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.main-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 23px;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--yellow);
  transition: transform 0.22s ease;
}

.main-nav__link:hover, .main-nav__link:focus-visible, .main-nav__link.active { color: var(--yellow); outline: none; }
.main-nav__link:hover::after, .main-nav__link:focus-visible::after, .main-nav__link.active::after { transform: scaleX(1); transform-origin: left; }

.site-header__actions { display: flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.whatsapp-btn, .quick-call, .menu-toggle { border: 0; cursor: pointer; }

.whatsapp-btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  color: var(--black);
  background: var(--yellow);
  font-weight: 900;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
  box-shadow: 0 13px 30px rgba(255, 196, 0, 0.18);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-btn i { font-size: 22px; }
.whatsapp-btn span { display: flex; flex-direction: column; line-height: 0.9; }
.whatsapp-btn small { font-size: 12px; font-weight: 800; }
.whatsapp-btn:hover, .whatsapp-btn:focus-visible { transform: translateY(-2px); background: #ffd43a; box-shadow: 0 18px 36px rgba(255, 196, 0, 0.28); outline: none; }

.quick-call, .menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--black);
  background: var(--yellow);
}

.menu-toggle { background: transparent; border: 1px solid rgba(255, 255, 255, 0.2); }
.menu-toggle span { width: 20px; height: 2px; display: block; background: var(--white); transition: transform 0.2s ease, opacity 0.2s ease; }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  height: calc(100vh - var(--header-total-height));
  min-height: 620px;
  max-height: 760px;
  overflow: hidden;
  background: var(--black);
}

.hero__inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(460px, 45%) minmax(0, 55%);
  margin: 0;
  padding-inline: 0;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 48px 38px 62px max(32px, calc((100vw - var(--container)) / 2 - 20px));
  background:
    linear-gradient(115deg, rgba(255, 196, 0, 0.12), transparent 34%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 20px),
    radial-gradient(circle at 16% 18%, rgba(255, 196, 0, 0.14), transparent 28%),
    linear-gradient(135deg, var(--black), var(--charcoal) 68%, #0e1014);
}

.hero__content::before,
.hero__content::after {
  display: none;
}

.hero-diagonal-wrap {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 45%;
  width: 150px;
  pointer-events: none;
  z-index: 3;
}

.hero-diagonal-dark,
.hero-diagonal-yellow {
  position: absolute;
  top: -2px;
  bottom: -2px;
  height: auto;
  transform: skewX(-8deg);
  transform-origin: top;
}

.hero-diagonal-dark {
  left: 24px;
  width: 110px;
  background: #080b0f;
}

.hero-diagonal-yellow {
  left: 14px;
  width: 6px;
  background: var(--yellow);
}

.section-kicker {
  width: fit-content;
  margin-bottom: 16px;
  padding: 0;
  color: var(--yellow);
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 2px;
  text-transform: uppercase;
  clip-path: none;
}

.section-kicker--dark { background: transparent; color: var(--yellow); }

.hero__kicker {
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.hero-title {
  margin: 0;
  max-width: 660px;
  font-size: clamp(36px, 3.4vw, 53px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.hero-title span {
  display: block;
  white-space: nowrap;
}

.hero-title .accent { color: var(--yellow); }
.hero p { max-width: 470px; margin: 20px 0 22px; color: #d9dde5; font-size: 17px; line-height: 1.55; }
.hero p strong { color: var(--yellow); }

.hero-features {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 560px;
  margin: 0 0 24px;
}

.hero-feature {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
}

.hero-feature + .hero-feature {
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-feature i { flex: 0 0 auto; color: var(--yellow); font-size: 17px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 0; }
.hero-cta { min-height: 52px; height: 52px; padding-inline: 28px; font-size: 14px; font-weight: 800; }

.btn {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  border: 0;
  cursor: pointer;
  font-size: 15px;
  font-weight: 900;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.btn--primary { color: var(--black); background: var(--yellow); box-shadow: 0 18px 35px rgba(255, 196, 0, 0.18); }
.btn--ghost { color: var(--white); background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.22); }
.btn--dark { color: var(--yellow); background: var(--black); }
.btn:hover, .btn:focus-visible { transform: translateY(-2px); outline: none; }
.btn--primary:hover, .btn--primary:focus-visible { background: #ffd43a; box-shadow: 0 22px 44px rgba(255, 196, 0, 0.28); }
.btn--ghost:hover, .btn--ghost:focus-visible { color: var(--yellow); border-color: rgba(255, 196, 0, 0.7); }

.hero__media { position: relative; min-width: 0; height: 100%; margin-right: 0; background: #d9dde3; }
.hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(115deg, rgba(8, 9, 11, 0.72), transparent 35%), repeating-linear-gradient(135deg, rgba(0, 0, 0, 0.08) 0 2px, transparent 2px 18px);
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 58% center; }

.safety-band {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 11;
  height: 20px;
  background: repeating-linear-gradient(135deg, var(--yellow) 0 26px, var(--black) 26px 52px);
  border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.section {
  position: relative;
  padding: clamp(76px, 8vw, 120px) 0;
  background: var(--black);
}

.section:nth-of-type(even) { background: #0d0f12; }
.section-heading { max-width: 720px; margin: 0 auto 42px; text-align: center; }
.section-heading .section-kicker { margin-inline: auto; }
h2 { margin: 0; font-size: clamp(34px, 4vw, 54px); line-height: 1; font-weight: 900; }
h3 { margin: 0; font-size: 22px; }
.section-heading p, .section-copy p { color: var(--muted); font-size: 18px; line-height: 1.65; }

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 48px;
  align-items: center;
}

.image-panel {
  position: relative;
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  background: #d9dde3;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.image-panel::after { content: ""; position: absolute; inset: 18px; border: 2px solid rgba(255, 196, 0, 0.72); pointer-events: none; }
.image-panel img { width: 100%; height: 100%; min-height: 430px; object-fit: cover; }

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 28px 0 32px;
  list-style: none;
}
.check-list li { color: #eef0f3; font-weight: 700; }
.check-list li::before { content: "\f00c"; margin-right: 10px; color: var(--yellow); font-family: "Font Awesome 6 Free"; font-weight: 900; }

.service-grid, .why-grid, .gallery-grid {
  display: grid;
  gap: 22px;
}

.service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.service-card {
  position: relative;
  min-height: 250px;
  padding: 32px;
  overflow: hidden;
  background: linear-gradient(145deg, #161a20, #0e1013);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.service-card::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 4px; background: var(--yellow); }
.service-card i { color: var(--yellow); font-size: 34px; margin-bottom: 22px; }
.service-card p { color: var(--muted); line-height: 1.6; }
.service-card:hover { transform: translateY(-8px); border-color: rgba(255, 196, 0, 0.6); box-shadow: 0 22px 50px rgba(0, 0, 0, 0.3); }

.why {
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 20px),
    linear-gradient(135deg, #060708, #161a20) !important;
}
.why-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.why-grid div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.11);
}
.why-grid i { width: 42px; height: 42px; display: grid; place-items: center; color: var(--black); background: var(--yellow); }
.why-grid span { font-weight: 800; }

.callback {
  min-height: 240px;
  display: flex;
  align-items: center;
  padding: 36px 0;
  color: var(--black);
  background: linear-gradient(135deg, var(--yellow), #ffdf55);
}
.callback__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
}
.callback h2 { color: var(--black); }
.callback p {
  max-width: 620px;
  margin: 12px 0 0;
  font-size: 18px;
  font-weight: 700;
}
.callback__button {
  min-width: 210px;
}
.contact-form {
  display: grid;
  gap: 12px;
}
input, textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  color: var(--white);
  background: rgba(8, 9, 11, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.15);
  outline: none;
}
textarea { resize: vertical; }
input:focus, textarea:focus { border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(255, 196, 0, 0.16); }
.form-message { min-height: 22px; margin: 0; font-weight: 800; }

.gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #d9dde3;
  cursor: pointer;
}
.gallery-item::after {
  content: "\f00e";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--yellow);
  font-family: "Font Awesome 6 Free";
  font-size: 32px;
  font-weight: 900;
  background: rgba(8, 9, 11, 0.54);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.25s ease; }
.gallery-item.placeholder { display: grid; place-items: center; color: #777f8c; font-size: 52px; border: 2px dashed #9ca4af; }
.gallery-item:hover { border-color: var(--yellow); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover::after { opacity: 1; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.process-grid article {
  position: relative;
  min-height: 210px;
  padding: 28px;
  background: #12161b;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.process-grid strong { color: rgba(255, 196, 0, 0.3); font-size: 52px; font-weight: 900; }
.process-grid i { display: block; color: var(--yellow); font-size: 30px; margin: 10px 0 18px; }

.testimonial-carousel {
  position: relative;
  min-height: 260px;
  max-width: 760px;
  margin: 0 auto;
}
.testimonial-card {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  padding: 34px;
  text-align: center;
  background: linear-gradient(145deg, #15191f, #0d0f12);
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  transform: translateX(20px);
  visibility: hidden;
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
}
.testimonial-card.is-active { opacity: 1; transform: translateX(0); visibility: visible; }
.avatar { width: 58px; height: 58px; display: grid; place-items: center; color: var(--black); background: var(--yellow); border-radius: 50%; font-weight: 900; }
.stars { color: var(--yellow); }
.testimonial-card p { max-width: 560px; margin: 0; color: var(--muted); font-size: 18px; line-height: 1.6; }

.narrow { max-width: 900px; }
.accordion { display: grid; gap: 12px; }
.faq-item { background: #12161b; border: 1px solid rgba(255, 255, 255, 0.1); }
.faq-item button {
  width: 100%;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  color: var(--white);
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-weight: 800;
}
.faq-item i { color: var(--yellow); transition: transform 0.2s ease; }
.faq-item.is-open i { transform: rotate(45deg); }
.faq-panel { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
.faq-panel p { margin: 0; padding: 0 22px 22px; color: var(--muted); line-height: 1.6; }

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 40px;
  align-items: stretch;
}
.contact-list { display: grid; gap: 12px; margin: 28px 0; }
.contact-list a, .contact-list span, .site-footer a, .site-footer span { color: #dfe3e8; }
.contact-list i { width: 24px; color: var(--yellow); }
.contact-form { margin-top: 20px; }
.map-placeholder {
  min-height: 520px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  color: #7b8490;
  background: #d9dde3;
  border: 2px dashed #9ca4af;
  font-size: 22px;
  font-weight: 800;
}
.map-placeholder i { font-size: 64px; }

.site-footer {
  padding: 72px 0 0;
  background: #050607;
  border-top: 1px solid rgba(255, 196, 0, 0.18);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 0.85fr 1fr;
  gap: 34px;
}
.site-footer p { color: var(--muted); line-height: 1.6; }
.site-footer h3 { color: var(--yellow); font-size: 18px; margin-bottom: 18px; }
.site-footer a, .site-footer span { display: block; margin-bottom: 11px; transition: color 0.2s ease; }
.site-footer a:hover { color: var(--yellow); }
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.site-footer .footer-brand a,
.site-footer .footer-brand span {
  margin-bottom: 0;
}
.site-footer .footer-brand .logo {
  display: inline-flex;
}
.site-footer .footer-brand .logo__icon {
  display: grid;
}
.site-footer .footer-brand .logo__text {
  display: flex;
  flex-direction: column;
}
.social-links { display: flex; gap: 10px; margin-top: 18px; }
.social-links a { width: 40px; height: 40px; display: grid; place-items: center; color: var(--black); background: var(--yellow); margin: 0; }
.to-top i { color: var(--yellow); }
.footer-bottom {
  margin-top: 42px;
  padding: 18px 14px;
  color: #cfd3da;
  text-align: center;
  white-space: nowrap;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-contact-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 40;
  display: none;
  grid-template-columns: 1fr 1fr;
  background: var(--black);
  box-shadow: 0 -14px 36px rgba(0, 0, 0, 0.38);
}
.mobile-contact-bar a {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--black);
  background: var(--yellow);
  font-weight: 900;
}
.mobile-contact-bar a:last-child { color: var(--white); background: #11151a; border-left: 1px solid rgba(255, 255, 255, 0.1); }
.mobile-contact-bar a:last-child {
  color: #ffffff;
  background: #25D366;
}
.mobile-contact-bar a:last-child:hover,
.mobile-contact-bar a:last-child:active {
  background: #1ebe5d;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 70px;
  background: rgba(0, 0, 0, 0.88);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img { max-width: min(1050px, 88vw); max-height: 78vh; object-fit: contain; border: 3px solid var(--yellow); }
.lightbox button {
  position: absolute;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--black);
  background: var(--yellow);
  border: 0;
  cursor: pointer;
}
.lightbox__close { top: 22px; right: 22px; }
.lightbox__prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 22px; top: 50%; transform: translateY(-50%); }

@media (max-width: 1120px) {
  .main-nav { gap: 16px; }
  .main-nav__link { font-size: 14px; }
  .whatsapp-btn { padding-inline: 14px; }
  .service-grid, .why-grid, .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 960px) {
  :root {
    --header-height: 76px;
    --top-bar-height: 48px;
  }
  .top-bar__left span:last-child, .top-bar__divider { display: none; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 10px 20px 18px;
    background: rgba(8, 9, 11, 0.98);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }
  .main-nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto; }
  .main-nav__link { padding: 14px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
  .main-nav__link::after { bottom: 7px; width: 42px; }
  .menu-toggle { display: grid; }
  .hero {
    height: auto;
    min-height: 0;
    max-height: none;
  }
  .hero__inner {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding-inline: 0;
  }
  .hero__content {
    min-height: 0;
    padding: 48px 28px 40px;
  }
  .hero-title {
    font-size: clamp(44px, 7vw, 56px);
    line-height: 0.98;
    letter-spacing: -0.025em;
  }
  .hero-title span { white-space: nowrap; }
  .hero-diagonal-wrap { display: none; }
  .hero__media {
    width: 100%;
    max-width: 100%;
    height: 320px;
    margin: 0;
  }
  .split-grid, .callback__inner, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  body { padding-bottom: 58px; }
  .container { width: min(100% - 28px, var(--container)); }
  .top-bar { font-size: 12px; }
  .top-bar__inner { min-height: 48px; gap: 10px; }
  .top-bar__left { gap: 7px; }
  .top-bar__phone { gap: 7px; }
  .top-bar__phone span, .whatsapp-btn span { display: none; }
  .logo__icon { width: 42px; height: 42px; }
  .logo__text { font-size: 15px; }
  .logo__text strong { font-size: 20px; }
  .whatsapp-btn { min-height: 44px; padding: 9px 12px; }
  .quick-call { display: grid; }
  .hero { min-height: 0; max-height: none; }
  main,
  section,
  .hero,
  .site-header,
  .site-footer {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }
  .hero__inner {
    padding-inline: 0;
  }
  .hero__content {
    padding: 42px 20px 34px;
  }
  .hero-title {
    font-size: clamp(38px, 10vw, 44px);
    line-height: 0.98;
    letter-spacing: -0.025em;
  }
  .hero-title span { white-space: normal; }
  .hero p {
    max-width: 100%;
    margin: 18px 0 20px;
    font-size: 16px;
  }
  .hero-features {
    flex-wrap: wrap;
    gap: 12px 18px;
    margin-bottom: 22px;
  }
  .hero-feature {
    flex: 1 1 calc(50% - 18px);
    font-size: 13px;
  }
  .hero-feature + .hero-feature {
    padding-left: 0;
    border-left: 0;
  }
  .hero-feature:nth-child(3) { flex-basis: 100%; }
  .hero__media {
    height: 300px;
    margin: 0;
  }
  .service-grid, .why-grid, .gallery-grid, .process-grid, .check-list, .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .section { padding-block: 68px; }
  .callback { min-height: 260px; text-align: center; }
  .callback__inner { grid-template-columns: 1fr; gap: 24px; }
  .callback .section-kicker, .callback p { margin-inline: auto; }
  .callback__button { width: min(100%, 320px); justify-self: center; }
  .image-panel, .image-panel img, .map-placeholder { min-height: 320px; }
  .mobile-contact-bar { display: grid; }
  .footer-bottom { font-size: 13px; }
  .lightbox { padding: 58px 18px; }
  .lightbox__prev { left: 10px; }
  .lightbox__next { right: 10px; }
}

@media (max-width: 430px) {
  .top-bar__left { display: none; }
  .top-bar__inner { justify-content: center; }
  .site-header__inner { gap: 10px; }
  .logo { gap: 8px; }
  .logo__icon { width: 38px; height: 38px; }
  .logo__text { font-size: 13px; }
  .logo__text strong { font-size: 17px; }
  .hero__content {
    padding: 38px 16px 32px;
  }
  .hero-title { font-size: clamp(36px, 10vw, 42px); }
  .hero-features { display: grid; grid-template-columns: 1fr; gap: 11px; }
  .hero-feature { justify-content: flex-start; }
  .hero__media { height: 280px; }
  .section-kicker { font-size: 11px; }
  .hero p, .section-copy p, .section-heading p { font-size: 16px; }
  .footer-bottom { font-size: 12px; }
}
