:root {
  --bg: #121212;
  --bg-soft: #1a1a1a;
  --card: #202020;
  --surface-1: linear-gradient(145deg, rgba(40, 40, 42, 0.78) 0%, rgba(23, 23, 24, 0.92) 58%, rgba(18, 18, 18, 0.98) 100%);
  --surface-2: linear-gradient(140deg, rgba(37, 43, 39, 0.52) 0%, rgba(30, 30, 31, 0.92) 48%, rgba(18, 18, 18, 0.98) 100%);
  --surface-3: linear-gradient(150deg, rgba(46, 43, 35, 0.38) 0%, rgba(28, 29, 30, 0.94) 45%, rgba(18, 18, 18, 0.98) 100%);
  --text: #ecf2f8;
  --muted: #b3b3b3;
  --accent: #36d084;
  --accent-2: #9afc64;
  --line: #353535;
  --maxw: 1180px;
  --radius: 18px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
}

@supports (overflow: clip) {
  html,
  body {
    overflow-x: clip;
  }
}

body {
  font-family: "Manrope", Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 20% 0, #2f2f2f 0%, #121212 42%), var(--bg);
  line-height: 1.5;
}

html {
  scrollbar-width: thin;
  scrollbar-color: #4ed58e #111214;
}

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: linear-gradient(180deg, #131417, #0d0e10);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #46cc86, #76e467);
  border-radius: 999px;
  border: 2px solid #111214;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #5ee19d, #8cf07b);
}

body.menu-open {
  overflow: hidden;
}

body.lead-open {
  overflow: hidden;
}

body.menu-open::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.56);
  z-index: 40;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.wrap {
  width: min(var(--maxw), 92vw);
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.section-head p {
  color: var(--accent);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.section-head h2 {
  margin-top: 10px;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  letter-spacing: 0.03em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(20, 20, 20, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.nav-wrap {
  height: 90px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand img {
  width: auto;
  height: 70px;
  max-width: 130px;
  object-fit: contain;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 75px;
  background: #eef4fb;
  border: 1px solid #d2dce8;
  border-radius: 6px;
  padding: 4px 10px;
  overflow: hidden;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.22);
}

.desktop-nav {
  margin-left: auto;
  display: flex;
  gap: 26px;
}

.desktop-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  color: var(--muted);
  transition: color 0.25s ease, transform 0.25s ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.28s ease;
}

.desktop-nav a:hover {
  color: #f4f8fc;
  transform: translateY(-1px);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.phone-cta {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #e8edf2 !important;
  background: linear-gradient(145deg, rgba(40, 40, 42, 0.75), rgba(26, 26, 27, 0.95));
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.phone-cta:hover {
  color: #ffffff !important;
  border-color: rgba(95, 198, 138, 0.8);
  background: linear-gradient(125deg, rgba(54, 208, 132, 0.3), rgba(27, 36, 30, 0.95));
  box-shadow: 0 10px 24px rgba(16, 64, 42, 0.38);
  transform: translateY(-1px);
}

.quick-cta {
  padding: 10px 14px;
  border: 1px solid rgba(92, 219, 144, 0.45);
  border-radius: 999px;
  color: #eaf7ef !important;
  background: linear-gradient(120deg, rgba(54, 208, 132, 0.22), rgba(154, 252, 100, 0.16));
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.quick-cta:hover {
  transform: translateY(-1px);
  border-color: rgba(124, 243, 174, 0.72);
  box-shadow: 0 12px 26px rgba(21, 93, 59, 0.34);
}

.mobile-menu-btn,
.mobile-drawer {
  display: none;
}

.mobile-menu-btn {
  margin-left: auto;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  border: 1px solid #3f3f3f;
  background: linear-gradient(160deg, rgba(35, 35, 35, 0.96), rgba(22, 22, 22, 0.96));
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.34);
  cursor: pointer;
}

.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: #f0f5fb;
  transform-origin: center;
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
}

.mobile-menu-btn.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.is-active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(88vw, 360px);
  max-width: 100vw;
  height: 100dvh;
  padding: 92px 16px 20px;
  border-left: 1px solid #414141;
  background: linear-gradient(170deg, #1a1a1a 0%, #121212 100%);
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.36s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease;
  z-index: 75;
}

.mobile-drawer-close {
  position: absolute;
  top: 18px;
  right: 14px;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid #444;
  background: #202020;
  color: #f1f5fa;
  font-size: 1.8rem;
  line-height: 1;
}

.mobile-drawer a {
  display: flex;
  align-items: center;
  min-height: 56px;
  margin-top: 10px;
  padding: 0 16px;
  border: 1px solid #393939;
  border-radius: 14px;
  background: #1f1f1f;
  color: #e9edf2;
  letter-spacing: 0.01em;
  transform: translateX(18px);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.28s ease, border-color 0.2s ease;
}

.mobile-drawer a:hover {
  border-color: #62c68c;
}

.mobile-drawer-phone {
  margin-top: 16px !important;
  font-weight: 700;
  background: linear-gradient(120deg, rgba(54, 208, 132, 0.2), rgba(154, 252, 100, 0.16)) !important;
  border-color: rgba(92, 219, 144, 0.45) !important;
}

.mobile-drawer-cta {
  margin-top: 16px !important;
  font-weight: 700;
  background: linear-gradient(120deg, rgba(54, 208, 132, 0.25), rgba(154, 252, 100, 0.2)) !important;
  border-color: rgba(104, 224, 152, 0.56) !important;
}

.mobile-drawer.is-open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer.is-open a {
  transform: translateX(0);
  opacity: 1;
}

.mobile-drawer.is-open a:nth-of-type(1) {
  transition-delay: 0.08s;
}

.mobile-drawer.is-open a:nth-of-type(2) {
  transition-delay: 0.14s;
}

.mobile-drawer.is-open a:nth-of-type(3) {
  transition-delay: 0.2s;
}

.mobile-drawer.is-open a:nth-of-type(4) {
  transition-delay: 0.26s;
}

.mobile-drawer.is-open a:nth-of-type(5) {
  transition-delay: 0.32s;
}

.menu-btn {
  display: none;
  margin-left: auto;
  width: 48px;
  height: 48px;
  background: rgba(26, 26, 26, 0.94);
  border: 1px solid #4c4c4c;
  border-radius: 14px;
  cursor: pointer;
  z-index: 70;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
}

.menu-btn span {
  display: block;
  width: 20px;
  height: 2.5px;
  background: var(--text);
  margin: 4px auto;
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu {
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: fixed;
  top: 0;
  right: 0;
  width: min(82vw, 340px);
  height: 100dvh;
  padding: 86px 18px 22px;
  background: linear-gradient(180deg, #1d1d1d 0%, #171717 100%);
  border-left: 1px solid #3d3d3d;
  box-shadow: -18px 0 34px rgba(0, 0, 0, 0.38);
  transform: translateX(108%);
  transition: transform 0.28s ease;
  z-index: 65;
  pointer-events: none;
}

.menu a {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 0 14px;
  color: #e7ebf0;
  border: 1px solid #383838;
  border-radius: 12px;
  background: #202020;
  font-size: 1.02rem;
  letter-spacing: 0.01em;
}

.menu.active {
  transform: translateX(0);
  pointer-events: auto;
}

.menu a:hover {
  border-color: #5f5f5f;
  background: #262626;
}

.menu-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.menu-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(16, 16, 16, 0.92), rgba(32, 32, 32, 0.62)), url("./../assets/main-bg-family.webp") center/cover no-repeat;
  z-index: -1;
  transform-origin: center;
  animation: slowZoom 14s ease-in-out infinite alternate;
}

.hero-grid {
  min-height: 78vh;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 34px;
  align-items: center;
}

.hero-kicker {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
}

.hero h1 {
  margin-top: 12px;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.02em;
  line-height: 0.95;
  font-size: clamp(2.6rem, 7vw, 6rem);
}

.hero-sub {
  margin-top: 18px;
  color: #cfcfcf;
  max-width: 620px;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #0b131c;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
}

.btn-ghost {
  border-color: var(--line);
  color: var(--text);
  background: rgba(24, 24, 24, 0.78);
}

.hero-panel {
  background: rgba(14, 22, 33, 0.88);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}

.hero-panel p {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
}

.hero-panel h3 {
  margin-top: 8px;
  font-size: 1.3rem;
}

.hero-panel ul {
  margin-top: 16px;
  list-style: none;
}

.hero-panel li {
  color: var(--muted);
  margin-top: 9px;
  padding-left: 16px;
  position: relative;
}

.hero-panel li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  position: absolute;
  left: 0;
  top: 9px;
}

.about .split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items: center;
}

.about h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.8rem, 4.6vw, 3rem);
  letter-spacing: 0.03em;
}

.about p {
  margin-top: 14px;
  color: var(--muted);
  max-width: 680px;
}

.about img {
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.quote-form {
  margin-top: 24px;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface-1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 18px 38px rgba(0, 0, 0, 0.2);
}

.step {
  display: none;
}

.step.active {
  display: block;
}

.step h3 {
  margin-bottom: 16px;
  font-size: 1.4rem;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.option-grid.two-cols {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.option-grid label {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(42, 42, 44, 0.72), rgba(27, 27, 28, 0.96));
  border-radius: 12px;
  padding: 14px;
  cursor: pointer;
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.option-grid label:has(input:checked) {
  border-color: var(--accent);
  box-shadow: inset 0 0 0 1px var(--accent), 0 10px 20px rgba(20, 76, 51, 0.35);
}

.option-grid input {
  accent-color: var(--accent);
}

.stack-row {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.final-fields {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.input-line {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  display: grid;
  gap: 8px;
  background: linear-gradient(145deg, rgba(43, 43, 45, 0.7), rgba(24, 24, 25, 0.95));
}

.input-line span {
  font-size: 0.82rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.input-line input {
  border: none;
  background: transparent;
  color: var(--text);
  font-size: 1rem;
  outline: none;
}

.upload-line input {
  border: 1px dashed var(--line);
  border-radius: 10px;
  padding: 8px;
}

.step-controls {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  justify-content: end;
}

.step-controls button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(44, 44, 45, 0.6), rgba(23, 23, 24, 0.96));
  color: var(--text);
  padding: 0 18px;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.step-controls button:hover {
  border-color: var(--accent);
  transform: translateY(-1px);
}

#submitBtn {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #0b131c;
  border-color: transparent;
}

.service-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  border: 1px solid var(--line);
  background: var(--surface-2);
  border-radius: var(--radius);
  padding: 18px;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 16px 28px rgba(11, 43, 28, 0.34);
}

.service-card img {
  width: 52px;
  height: 52px;
  object-fit: cover;
}

.service-card h3 {
  margin-top: 14px;
  font-size: 1.2rem;
}

.service-card p {
  margin-top: 8px;
  color: var(--muted);
}

.gallery {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.gallery img {
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
  cursor: zoom-in;
  transition: transform 0.24s ease;
}

.gallery img:hover {
  transform: scale(1.03);
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(8, 8, 8, 0.93);
  backdrop-filter: blur(4px);
  flex-direction: column;
  gap: 14px;
  padding: 22px 14px 18px;
}

.gallery-lightbox.active {
  display: flex;
}

.gallery-lightbox img {
  width: auto;
  max-width: min(82vw, 980px);
  max-height: 66vh;
  height: auto;
  object-fit: contain;
  border-radius: 14px;
  border: 1px solid #474747;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.45);
}

.lightbox-btn {
  position: absolute;
  border: 1px solid #494949;
  background: rgba(28, 28, 28, 0.9);
  color: #eff6ff;
  border-radius: 999px;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.lightbox-close {
  top: 24px;
  right: 24px;
  font-size: 34px;
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

.lightbox-strip {
  width: min(88vw, 1040px);
  display: flex;
  justify-content: center;
  gap: 8px;
  overflow-x: auto;
  padding: 8px 2px 2px;
  margin: 0 auto;
}

.lightbox-strip::-webkit-scrollbar {
  height: 8px;
}

.lightbox-strip::-webkit-scrollbar-thumb {
  background: #5a5a5a;
  border-radius: 999px;
}

.gallery-lightbox img.lightbox-thumb {
  width: 56px;
  height: 56px;
  max-width: none;
  max-height: none;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #4a4a4a;
  opacity: 0.75;
  cursor: pointer;
  flex: 0 0 56px;
  transition: opacity 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.gallery-lightbox img.lightbox-thumb:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.gallery-lightbox img.lightbox-thumb.active {
  border-color: var(--accent);
  opacity: 1;
}

.lightbox-strip .lightbox-thumb {
  max-width: none;
  max-height: none;
}

.review-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.review-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-1);
  padding: 20px;
}

.review-grid h4 {
  color: var(--accent);
}

.review-grid p {
  margin-top: 8px;
  color: var(--muted);
}

.review-slider {
  margin-top: 24px;
  position: relative;
  padding: 0px;
  overflow: visible;
}

.review-viewport {
  overflow: hidden;
}

.review-track {
  display: flex;
  gap: 14px;
  transition: transform 0.46s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.review-card {
  min-width: calc((100% - 28px) / 3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-1);
  padding: 20px;
}

.review-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 10px;
}

.review-author {
  display: grid;
  gap: 8px;
}

.review-meta {
  display: grid;
  justify-items: end;
  gap: 4px;
}

.review-author h4 {
  color: var(--accent);
}

.review-head time {
  font-size: 0.78rem;
  color: #d3dae2;
  background: linear-gradient(145deg, rgba(43, 43, 45, 0.75), rgba(24, 24, 25, 0.96));
  border: 1px solid #3d3d3d;
  border-radius: 999px;
  padding: 4px 9px;
  white-space: nowrap;
}

.review-rate {
  margin: 0;
  font-size: 0.76rem;
  line-height: 1;
  padding-right: 5px;
  color: #ffd676;
  letter-spacing: 0.03em;
}

.review-phone {
  margin: 0;
  font-size: 0.86rem;
  color: #8edeb4;
  letter-spacing: 0.03em;
}

.review-card p:not(.review-phone) {
  margin-top: 10px;
  color: var(--muted);
}

.review-nav {
  position: absolute;
  top: 46%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid #444;
  background: rgba(20, 20, 20, 0.9);
  color: #eaf1f8;
  font-size: 1.2rem;
  z-index: 2;
}

.review-prev {
  left: -56px;
}

.review-next {
  right: -56px;
}

.review-nav:hover {
  border-color: #67ce93;
  box-shadow: 0 0 0 3px rgba(103, 206, 147, 0.2);
}

.review-nav:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  box-shadow: none;
}

.review-dots {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.review-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  background: #56606b;
  opacity: 0.8;
  cursor: pointer;
}

.review-dot.active {
  width: 22px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.site-faq {
  border-top: 1px solid var(--line);
}

.faq-list {
  margin-top: 20px;
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface-1);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  min-height: 56px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  text-align: left;
  background: transparent;
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
  border: 0;
}

.faq-question span {
  color: var(--accent);
  font-size: 1.2rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.faq-answer p {
  padding: 0 16px 16px;
  color: var(--muted);
}

.faq-item.is-open .faq-answer {
  max-height: 180px;
}

.faq-item.is-open .faq-question span {
  transform: rotate(45deg);
}

.faq-links {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.faq-links a {
  padding: 8px 12px;
  border: 1px solid #3a3a3a;
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(43, 43, 45, 0.6), rgba(23, 23, 24, 0.95));
  color: #dfe7ef;
}

.faq-links a:hover {
  border-color: rgba(92, 219, 144, 0.6);
  color: #f0f7ff;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 42px 0 54px;
  background: #151515;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 24px;
  align-items: start;
}

.footer-grid img {
  width: 130px;
  background: #eef1f4;
  border: 1px solid #d0d6dd;
  border-radius: 10px;
  padding: 6px 10px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.24);
}

.footer-brand {
  display: inline-flex;
  width: fit-content;
  border-radius: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.footer-brand:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(35, 135, 88, 0.28);
}

.footer-brand::after {
  display: none;
}

.footer-grid nav,
.footer-grid div {
  display: grid;
  gap: 10px;
}

.footer-grid strong,
.footer-grid span {
  color: #d6dde5;
  font-weight: 600;
}

.footer-grid a {
  position: relative;
  width: fit-content;
  color: var(--muted);
  transition: color 0.25s ease, transform 0.25s ease, text-shadow 0.25s ease;
}

.footer-grid a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1.5px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(54, 208, 132, 0.9), rgba(154, 252, 100, 0.8));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.28s ease;
}

.footer-grid a:hover {
  color: #f4f8fc;
  transform: translateX(2px);
  text-shadow: 0 0 12px rgba(110, 222, 159, 0.26);
}

.footer-grid a:hover::after {
  transform: scaleX(1);
}

/* Footer redesign */
.site-footer {
  border-top: 1px solid rgba(92, 219, 144, 0.26);
  background:
    radial-gradient(circle at 10% 0, rgba(62, 146, 102, 0.15), transparent 36%),
    linear-gradient(180deg, #141516 0%, #0f1011 100%);
  padding: 44px 0 20px;
}

.footer-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.footer-brand-col,
.footer-nav-col,
.footer-contact-col {
  border: 1px solid #2d3135;
  background: linear-gradient(155deg, rgba(35, 36, 39, 0.74), rgba(19, 20, 22, 0.95));
  border-radius: 14px;
  padding: 16px;
  min-height: 100%;
  font-size: 0.94rem;
}

.footer-brand-col p {
  margin-top: 12px;
  color: #bcc6d0;
  font-size: 0.92rem;
}

.footer-action {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(92, 219, 144, 0.45);
  background: linear-gradient(120deg, rgba(54, 208, 132, 0.22), rgba(154, 252, 100, 0.16));
  color: #edf6ef !important;
  font-weight: 700;
}

.footer-nav-col h4,
.footer-contact-col h4 {
  margin-bottom: 8px;
  color: #eef4fb;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-badges {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-badges span {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid #345945;
  background: rgba(54, 208, 132, 0.12);
  color: #dff3e8;
  font-size: 0.74rem;
}

.site-footer .footer-grid img {
  width: 112px;
  padding: 5px 8px;
}

.footer-bottom {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #2a2d31;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer-bottom span {
  color: #aeb7c1;
  font-size: 0.86rem;
}

.footer-legal {
  display: flex;
  gap: 14px;
}

.success-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.68);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 40;
}

.modal-content {
  width: min(520px, 92vw);
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #1f1f1f;
  display: grid;
  gap: 10px;
}

.modal-content h3 {
  font-size: 1.4rem;
}

.modal-content p,
.modal-content a {
  color: var(--muted);
}

.modal-button {
  margin-top: 10px;
  min-height: 42px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #0b131c;
  font-weight: 700;
}

.floating-cta {
  position: fixed;
  right: 40px;
  bottom: 30px;
  z-index: 58;
  min-height: 50px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-radius: 999px;
  border: 1px solid rgba(126, 245, 178, 0.56);
  background: linear-gradient(120deg, rgba(59, 220, 142, 0.96), rgba(138, 241, 84, 0.92));
  color: #0f1f18;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 16px 30px rgba(13, 51, 33, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  animation: ctaFloat 2.4s ease-in-out infinite;
}

.floating-cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 18px 34px rgba(13, 51, 33, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.24);
  filter: saturate(1.08);
}

.floating-cta-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #0f5a38;
  box-shadow: 0 0 0 0 rgba(15, 90, 56, 0.45);
  animation: ctaPulse 1.7s ease-out infinite;
}

.lead-popup {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
}

.lead-popup.is-open {
  display: block;
}

.lead-popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.66);
  backdrop-filter: blur(2px);
}

.lead-popup-dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(540px, 92vw);
  padding: 20px;
  border-radius: 18px;
  border: 1px solid #3f3f3f;
  background: linear-gradient(155deg, rgba(39, 39, 41, 0.95), rgba(22, 22, 23, 0.98));
  box-shadow: 0 26px 56px rgba(0, 0, 0, 0.42);
}

.lead-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid #464646;
  background: #232323;
  color: #eff5fb;
  font-size: 1.5rem;
  line-height: 1;
}

.lead-popup-kicker {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
}

.lead-popup h3 {
  margin-top: 8px;
  font-size: 1.7rem;
}

.lead-popup-sub {
  margin-top: 8px;
  color: var(--muted);
}

.lead-popup-form {
  margin-top: 16px;
  display: grid;
  gap: 12px;
}

.lead-popup-form label {
  display: grid;
  gap: 7px;
}

.lead-popup-form label span {
  font-size: 0.78rem;
  color: #ced7e1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead-popup-form input,
.lead-popup-form textarea {
  width: 100%;
  border: 1px solid #3d3d3d;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(43, 43, 45, 0.74), rgba(23, 23, 24, 0.96));
  color: #edf3fa;
  padding: 10px 12px;
  font: inherit;
}

.lead-popup-form textarea {
  resize: vertical;
  min-height: 96px;
}

.lead-popup-form button {
  min-height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(92, 219, 144, 0.46);
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #10201a;
  font-weight: 800;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-reveal].reveal-active {
  opacity: 1;
  transform: none;
}

@keyframes slowZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}

@keyframes ctaPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(15, 90, 56, 0.45);
  }
  70% {
    box-shadow: 0 0 0 9px rgba(15, 90, 56, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(15, 90, 56, 0);
  }
}

@keyframes ctaFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}

@media (max-width: 1020px) {
  .nav-wrap {
    min-height: 90px;
    height: auto;
    gap: 12px;
  }

  .desktop-nav {
    display: none;
  }

  .phone-cta {
    display: none;
  }

  .quick-cta {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .mobile-drawer {
    display: block;
  }

  .hero-grid,
  .about .split {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    padding: 72px 0;
  }

  .option-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-grid,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .review-card {
    min-width: calc((100% - 14px) / 2);
  }

  .gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 62px 0;
  }

  .quote-form {
    padding: 16px;
  }

  .option-grid,
  .option-grid.two-cols,
  .stack-row,
  .final-fields,
  .service-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .review-slider {
    padding: 0;
  }

  .review-card {
    min-width: 100%;
  }

  .review-nav {
    display: none;
  }

  .faq-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-legal {
    width: 100%;
    justify-content: space-between;
  }

  .floating-cta {
    right: 12px;
    bottom: 12px;
  }

  .step-controls {
    justify-content: stretch;
  }

  .step-controls button {
    flex: 1;
  }

  .lightbox-btn {
    width: 42px;
    height: 42px;
  }

  .gallery-lightbox img {
    max-width: 92vw;
    max-height: 56vh;
  }

  .lightbox-strip {
    width: 92vw;
  }

  .gallery-lightbox img.lightbox-thumb {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-close {
    top: 10px;
    right: 10px;
  }
}

@media (max-width: 860px) {
  .section-head h2 {
    font-size: clamp(1.9rem, 9vw, 2.6rem);
  }

  .hero h1 {
    font-size: clamp(2rem, 10vw, 3.2rem);
    line-height: 1.02;
  }

  .hero-sub {
    font-size: 0.96rem;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-panel {
    padding: 18px;
  }

  .quote-form {
    padding: 14px;
  }

  .step h3 {
    font-size: 1.15rem;
  }

  .option-grid,
  .option-grid.two-cols,
  .stack-row,
  .final-fields {
    grid-template-columns: 1fr;
  }

  .step-controls {
    justify-content: stretch;
  }

  .step-controls button {
    flex: 1;
    min-height: 42px;
  }

  .floating-cta {
    display: none;
  }
}

/* Legacy Pages: redesign compatibility */
.main-header-container {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(20, 20, 20, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.top-header-line,
.bottom-header-line {
  width: min(var(--maxw), 92vw);
  margin: 0 auto;
  min-height: 62px;
}

.top-header-line {
  border-bottom: 1px solid var(--line);
}

.header-quote {
  color: var(--muted);
  font-size: 0.95rem;
}

.navigation-header {
  list-style: none;
  display: flex;
  gap: 20px;
  padding-left: 0;
}

.navigation-header a {
  color: var(--muted) !important;
}

.navigation-header a:hover,
.navigation-header a.active {
  color: var(--text) !important;
}

.social-media-icons {
  display: flex;
  gap: 10px;
}

.social-media-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  object-fit: cover;
}

.phone-number-header {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  font-weight: 700;
}

.call-icon {
  width: 18px;
  height: 18px;
  object-fit: cover;
}

.menu ul {
  list-style: none;
}

.menu li a {
  color: var(--text);
}

.main_details_info_page {
  width: min(var(--maxw), 92vw);
  margin: 16px auto 56px !important;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-3);
  padding: clamp(18px, 3vw, 34px) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 18px 34px rgba(0, 0, 0, 0.2);
}

.details-image-size {
  width: 78px;
  height: 78px;
  object-fit: cover;
}

.details-title-style,
.contact-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: 0.03em;
  color: var(--text) !important;
}

.details-description {
  margin-top: 20px;
}

.details-description-style,
.name-desc {
  color: #d0d0d0 !important;
  line-height: 1.65;
  font-size: 1rem;
}

.moroz-style {
  color: var(--accent) !important;
  font-weight: 700;
}

.details-call-part {
  margin-top: 20px;
}

.details-call {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #f2f5f8 !important;
  background: #222222;
  font-weight: 700;
}

.details-page-ontop-button {
  color: #e5e5e5 !important;
  margin-bottom: 16px;
}

.details-page-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #0b131c;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease, border-color 0.24s ease;
}

.details-page-button:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 14px 28px rgba(23, 95, 62, 0.42);
  filter: saturate(1.08);
  border-color: rgba(166, 255, 174, 0.45);
}

.details-page-button:focus-visible {
  outline: 2px solid rgba(154, 252, 100, 0.8);
  outline-offset: 2px;
}

/* Higher-specificity overrides for old page styles from main.css */
.main_details_info_page .details-title-style,
.main_details_info_page .contact-title {
  color: #eef3f8 !important;
}

.main_details_info_page .details-description .details-description-style {
  color: #d0d0d0 !important;
}

.main_details_info_page .details-description .details-description-style .moroz-style {
  color: var(--accent) !important;
}

.main_details_info_page .details-description .details-call-part .details-call {
  color: #f2f5f8 !important;
  background: #222222 !important;
  border: 1px solid #4b4b4b !important;
}

.main_details_info_page .details-page-ontop-button {
  color: #e5e5e5 !important;
}

.main_details_info_page .details-page-button {
  background: linear-gradient(120deg, var(--accent), var(--accent-2)) !important;
  color: #0f161d !important;
  border: 1px solid #1f6e4c !important;
}

.main_details_info_page .details-page-button:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 14px 28px rgba(23, 95, 62, 0.42);
  filter: saturate(1.08);
  border-color: rgba(166, 255, 174, 0.45) !important;
}

.main_details_info_page p,
.main_details_info_page span,
.main_details_info_page strong,
.main_details_info_page h2,
.main_details_info_page h3,
.main_details_info_page h4 {
  color: #e4e7eb !important;
}

.main_details_info_page a[href^="tel"],
.main_details_info_page a[href^="mailto"],
.main_details_info_page a[href^="https://"] {
  color: #e9eef5 !important;
}

.main_details_info_page a[href^="https://"]:hover,
.main_details_info_page a[href^="tel"]:hover,
.main_details_info_page a[href^="mailto"]:hover {
  color: var(--accent) !important;
}

.contact-us-block {
  margin-top: 18px;
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
}

.team-container {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface-2);
  padding: 16px;
  gap: 18px;
  margin-bottom: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 12px 24px rgba(0, 0, 0, 0.18) !important;
}

.team-photo {
  width: min(260px, 100%);
  border-radius: 12px;
  border: 1px solid var(--line);
  object-fit: cover;
}

.team-description h3,
.name-team,
.contact-data {
  color: var(--text);
}

.contact-us-block .container,
.contact-us-block .team-container,
.contact-us-block .team-description,
.contact-us-block .name-desc,
.contact-us-block .contact-data,
.contact-us-block .contact-data span,
.contact-us-block .contact-data b {
  background: transparent !important;
  color: #e7eaf0 !important;
}

.main-footer-container {
  border-top: 1px solid var(--line);
  padding: 32px 4vw;
  background: #151515;
}

.footer-logo {
  width: 130px;
  background: #eef1f4;
  border: 1px solid #d0d6dd;
  border-radius: 10px;
  padding: 6px 10px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.24);
}

.navigation-footer {
  list-style: none;
  padding-left: 0;
}

.navigation-footer a,
.footer-contact a,
.footer-contact {
  color: var(--muted) !important;
}

.navigation-footer a:hover,
.footer-contact a:hover {
  color: var(--text) !important;
}

@media (max-width: 1020px) {
  .top-header-line {
    display: none !important;
  }

  .bottom-header-line {
    display: none !important;
  }

  .menu-btn {
    display: block;
  }

  .main-header-container {
    padding: 10px 4vw;
  }

  .main-footer-container .w-25 {
    width: 100% !important;
  }

  .foot-cont {
    align-items: flex-start !important;
  }
}

/* Burger hard reset/fix: desktop off, mobile drawer only */
.site-header .menu-btn {
  display: none !important;
}

.site-header .menu {
  display: none !important;
  transform: translateX(110%) !important;
  pointer-events: none !important;
}

@media (max-width: 1020px) {
  .site-header .menu-btn,
  .site-header .menu {
    display: none !important;
  }
}
