:root {
  --anthracite: #1C1C1E;
  --metal: #4A4F57;
  --silver: #8E9299;
  --silver-light: #C6C9CE;
  --ivory: #F2F2F0;
  --surface: rgba(242, 242, 240, 0.74);
  --surface-strong: rgba(242, 242, 240, 0.92);
  --rule: rgba(28, 28, 30, 0.14);
  --shadow: 0 18px 48px rgba(28, 28, 30, 0.12);
  --call-green: #26834F;
  --call-green-deep: #1F6F43;
  --radius: 8px;
  --font-display: "Aptos Display", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Aptos", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--anthracite);
  background: var(--ivory);
  font-family: var(--font-body);
  line-height: 1.5;
  letter-spacing: 0;
}

.ambient-lines {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.ambient-line {
  position: absolute;
  fill: none;
  color: rgba(28, 28, 30, 0.34);
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.15;
  vector-effect: non-scaling-stroke;
  opacity: 0;
  transform: translate3d(0, 70px, 0);
  animation: line-float-up 18s cubic-bezier(0.42, 0, 0.18, 1) infinite;
}

.ambient-line-a {
  top: 116px;
  left: -118px;
  width: min(790px, 74vw);
  animation-duration: 19s;
}

.ambient-line-b {
  top: 78px;
  right: -96px;
  width: min(660px, 62vw);
  color: rgba(28, 28, 30, 0.28);
  animation-delay: -6s;
  animation-duration: 22s;
}

.ambient-line-c {
  top: 60vh;
  left: 12vw;
  width: min(720px, 86vw);
  color: rgba(28, 28, 30, 0.22);
  animation-delay: -11s;
  animation-duration: 24s;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  min-height: 86px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(242, 242, 240, 0.78);
  border-bottom: 1px solid var(--rule);
  backdrop-filter: blur(18px);
}

.page,
.site-footer {
  position: relative;
  z-index: 1;
}

.brand {
  justify-self: center;
  display: inline-grid;
  place-items: center;
  color: var(--anthracite);
}

.brand svg,
.brand img {
  width: clamp(78px, 7.4vw, 106px);
  height: auto;
  object-fit: contain;
}

.top-contact {
  justify-self: start;
}

.main-nav {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.nav-link,
.phone-link,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: rgba(242, 242, 240, 0.62);
  color: var(--anthracite);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
  backdrop-filter: blur(12px);
}

.phone-link {
  background: var(--anthracite);
  border-color: var(--anthracite);
  color: var(--ivory);
}

.call-action,
.main-nav .phone-link.call-action,
.form-call.call-action {
  gap: 8px;
  background: var(--call-green);
  border-color: var(--call-green);
  color: #fff;
}

.call-action::before {
  content: "";
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1C10.61 21 3 13.39 3 4c0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.24.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1C10.61 21 3 13.39 3 4c0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.24.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.call-action:hover,
.main-nav .phone-link.call-action:hover,
.form-call.call-action:hover {
  background: var(--call-green-deep);
  border-color: var(--call-green-deep);
}

.nav-link:hover,
.phone-link:hover,
.button:hover {
  transform: translateY(-1px);
  border-color: rgba(28, 28, 30, 0.34);
}

.nav-link:focus-visible,
.phone-link:focus-visible,
.button:focus-visible,
.review-read-more:focus-visible,
.facebook-link:focus-visible {
  outline: 3px solid rgba(38, 131, 79, 0.28);
  outline-offset: 3px;
}

.button.primary {
  background: var(--anthracite);
  border-color: var(--anthracite);
  color: var(--ivory);
}

.button.secondary {
  background: rgba(198, 201, 206, 0.28);
}

.button.secondary.call-action {
  background: var(--call-green);
  border-color: var(--call-green);
  color: #fff;
}

.button.secondary.call-action:hover {
  background: var(--call-green-deep);
  border-color: var(--call-green-deep);
}

.area-contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--anthracite);
  border-radius: var(--radius);
  background: var(--anthracite);
  color: var(--ivory);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease;
}

.area-contact-link:hover {
  transform: translateY(-1px);
}

.page {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  padding: clamp(26px, 5vw, 62px) 0 0;
}

.carousel {
  position: relative;
  overflow: hidden;
  min-height: clamp(360px, 68vh, 690px);
  border: 1px solid rgba(28, 28, 30, 0.12);
  border-radius: var(--radius);
  background: var(--anthracite);
  box-shadow: var(--shadow);
  touch-action: pan-y;
}

.hero .carousel {
  animation: soft-rise 560ms ease both;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity 900ms ease, transform 1200ms ease;
}

.slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.carousel-controls {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(242, 242, 240, 0.24);
  border-radius: var(--radius);
  background: rgba(28, 28, 30, 0.46);
  backdrop-filter: blur(14px);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  padding: 0;
  border: 1px solid rgba(242, 242, 240, 0.46);
  border-radius: 999px;
  background: rgba(28, 28, 30, 0.62);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
  backdrop-filter: blur(14px);
}

.carousel-arrow::before {
  content: "";
  width: 15px;
  height: 15px;
  border-top: 2.5px solid var(--ivory);
  border-left: 2.5px solid var(--ivory);
}

.carousel-arrow-prev {
  left: 24px;
}

.carousel-arrow-prev::before {
  transform: translateX(2px) rotate(-45deg);
}

.carousel-arrow-next {
  right: 24px;
}

.carousel-arrow-next::before {
  transform: translateX(-2px) rotate(135deg);
}

.carousel-arrow:hover {
  background: rgba(28, 28, 30, 0.82);
  border-color: rgba(242, 242, 240, 0.68);
  transform: translateY(-50%) scale(1.04);
}

.carousel-arrow:focus-visible,
.dot:focus-visible {
  outline: 3px solid rgba(242, 242, 240, 0.66);
  outline-offset: 3px;
}

.dot {
  width: 34px;
  height: 5px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(242, 242, 240, 0.36);
  cursor: pointer;
}

.dot.is-active {
  background: var(--ivory);
}

.cta-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: clamp(26px, 5vw, 58px) 0 clamp(24px, 4vw, 46px);
}

.reviews-section {
  position: relative;
  padding: clamp(26px, 5vw, 62px) 0 clamp(52px, 8vw, 96px);
  border-top: 1px solid var(--rule);
}

.reviews-heading {
  margin-bottom: clamp(18px, 4vw, 34px);
}

.reviews-shell {
  position: relative;
}

.reviews-track {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  border-radius: var(--radius);
  touch-action: pan-x pan-y;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  display: grid;
  flex: 0 0 100%;
  min-height: clamp(270px, 32vw, 390px);
  align-content: center;
  justify-items: center;
  scroll-snap-align: center;
  padding: clamp(28px, 5vw, 56px) clamp(28px, 8vw, 104px);
  border: 1px solid rgba(28, 28, 30, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(242, 242, 240, 0.9)),
    var(--surface-strong);
  box-shadow: 0 18px 58px rgba(28, 28, 30, 0.1);
  text-align: center;
  backdrop-filter: blur(16px);
}

.review-card blockquote {
  max-width: 880px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(22px, 3.8vw, 42px);
  font-style: italic;
  font-weight: 520;
  line-height: 1.18;
  text-wrap: balance;
}

.review-card:nth-child(2) blockquote {
  max-width: 940px;
  font-family: var(--font-body);
  font-size: clamp(18px, 2.1vw, 27px);
  line-height: 1.42;
  text-wrap: pretty;
}

.review-more-text:not([hidden]) {
  display: inline;
}

.review-read-more {
  margin-top: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--anthracite);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.review-author {
  margin: 18px 0 0;
  color: var(--metal);
  font-size: 15px;
  font-weight: 800;
}

.review-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 1px solid rgba(28, 28, 30, 0.18);
  border-radius: 999px;
  background: rgba(242, 242, 240, 0.82);
  box-shadow: 0 14px 38px rgba(28, 28, 30, 0.14);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
  backdrop-filter: blur(14px);
}

.review-arrow::before {
  content: "";
  width: 13px;
  height: 13px;
  border-top: 2px solid var(--anthracite);
  border-left: 2px solid var(--anthracite);
}

.review-arrow-prev {
  left: -24px;
}

.review-arrow-prev::before {
  transform: translateX(2px) rotate(-45deg);
}

.review-arrow-next {
  right: -24px;
}

.review-arrow-next::before {
  transform: translateX(-2px) rotate(135deg);
}

.review-arrow:hover {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(28, 28, 30, 0.34);
  transform: translateY(-50%) scale(1.04);
}

.review-arrow:focus-visible,
.review-dot:focus-visible {
  outline: 3px solid rgba(38, 131, 79, 0.28);
  outline-offset: 3px;
}

.review-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.review-dot {
  width: 30px;
  height: 5px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(28, 28, 30, 0.18);
  cursor: pointer;
}

.review-dot.is-active {
  background: var(--anthracite);
}

.facebook-link {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: 22px auto 16px;
  border-radius: 999px;
  background: #1877F2;
  color: #fff;
  box-shadow: 0 14px 34px rgba(24, 119, 242, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.facebook-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 42px rgba(24, 119, 242, 0.3);
}

.facebook-link svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.review-toggle {
  display: flex;
  width: fit-content;
  margin: 0 auto;
}

.review-form {
  display: grid;
  gap: 16px;
  width: min(620px, 100%);
  margin: 22px auto 0;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(28, 28, 30, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(242, 242, 240, 0.92)),
    var(--surface);
  box-shadow: 0 20px 62px rgba(28, 28, 30, 0.14);
  backdrop-filter: blur(18px);
}

.review-form[hidden] {
  display: none;
}

.review-form textarea {
  min-height: 154px;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--rule);
}

.section-heading h1,
.section-heading h2 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 72px);
  line-height: 0.96;
  font-weight: 650;
}

.section-heading p {
  max-width: 360px;
  margin: 0 0 18px;
  color: var(--metal);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(12px, 2vw, 22px);
  padding: 8px 0 clamp(48px, 8vw, 96px);
}

.category-ball {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 50%;
  color: var(--ivory);
  text-decoration: none;
  isolation: isolate;
  box-shadow: 0 18px 42px rgba(28, 28, 30, 0.18);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.category-ball img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 300ms ease;
  z-index: -2;
}

.category-ball::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 32% 26%, rgba(255, 255, 255, 0.36), transparent 32%),
    linear-gradient(180deg, rgba(28, 28, 30, 0.14), rgba(28, 28, 30, 0.68));
  z-index: -1;
}

.category-ball span {
  padding: 8px 12px;
  border-radius: var(--radius);
  background: rgba(28, 28, 30, 0.36);
  font-size: clamp(15px, 1.4vw, 21px);
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.category-ball:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(28, 28, 30, 0.24);
}

.category-ball:hover img {
  transform: scale(1.1);
}

.feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  padding-bottom: clamp(48px, 8vw, 96px);
}

.feature img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-area-section,
.trust-section,
.steps-section,
.faq-section {
  position: relative;
  padding: clamp(44px, 8vw, 92px) 0;
  border-top: 1px solid var(--rule);
}

.service-area-heading,
.trust-heading,
.steps-heading,
.faq-heading {
  margin-bottom: clamp(22px, 4vw, 34px);
}

.service-area-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
}

.valley-map {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid rgba(28, 28, 30, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 20px 58px rgba(28, 28, 30, 0.1);
}

.valley-map picture,
.valley-map img {
  display: block;
  width: 100%;
  height: 100%;
}

.valley-map img {
  object-fit: cover;
}

.map-attribution {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border: 1px solid rgba(28, 28, 30, 0.12);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--metal);
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(28, 28, 30, 0.1);
  backdrop-filter: blur(10px);
}

.map-source-link {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(28, 28, 30, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  color: var(--anthracite);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(28, 28, 30, 0.12);
  backdrop-filter: blur(10px);
}

.map-source-link:hover {
  background: var(--anthracite);
  color: var(--ivory);
}

.map-attribution:hover {
  color: var(--anthracite);
}

.service-area-card {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(28, 28, 30, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(242, 242, 240, 0.92)),
    var(--surface);
  box-shadow: 0 20px 58px rgba(28, 28, 30, 0.1);
}

.area-label {
  color: var(--call-green);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.service-area-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1;
}

.service-area-card p {
  margin: 0;
  color: var(--metal);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 20px);
}

.trust-card {
  position: relative;
  display: grid;
  align-content: space-between;
  min-height: 236px;
  overflow: hidden;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(28, 28, 30, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(242, 242, 240, 0.9)),
    var(--surface-strong);
  box-shadow: 0 18px 52px rgba(28, 28, 30, 0.09);
  backdrop-filter: blur(16px);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.trust-card::before {
  content: "";
  position: absolute;
  inset: auto 18px 18px;
  height: 1px;
  background: linear-gradient(90deg, rgba(28, 28, 30, 0), rgba(38, 131, 79, 0.48), rgba(28, 28, 30, 0));
  transform: translateX(-44%);
  opacity: 0;
  transition: opacity 220ms ease, transform 420ms cubic-bezier(0.2, 0, 0.1, 1);
}

.trust-card:hover {
  transform: translateY(-4px);
  border-color: rgba(38, 131, 79, 0.36);
  box-shadow: 0 24px 62px rgba(28, 28, 30, 0.14);
}

.trust-card:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.trust-card-featured {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(230, 242, 235, 0.92)),
    var(--surface-strong);
  border-color: rgba(38, 131, 79, 0.28);
}

.trust-index {
  color: var(--call-green);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
}

.trust-card h3,
.step-card h3 {
  margin: 20px 0 10px;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1.02;
}

.trust-card p,
.step-card p {
  margin: 0;
  color: var(--metal);
}

.steps-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 20px);
}

.steps-timeline::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 6%;
  right: 6%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(28, 28, 30, 0.22), transparent);
}

.step-card {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 216px;
  padding: 0 clamp(12px, 2vw, 22px) clamp(16px, 2vw, 22px);
}

.step-number {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 80px;
  height: 80px;
  border: 1px solid rgba(28, 28, 30, 0.16);
  border-radius: 999px;
  background: rgba(242, 242, 240, 0.9);
  box-shadow: 0 16px 38px rgba(28, 28, 30, 0.1);
  color: var(--anthracite);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 850;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.step-card:hover .step-number {
  background: var(--anthracite);
  color: var(--ivory);
  transform: translateY(-3px);
}

.faq-list {
  display: grid;
  gap: 10px;
  width: min(980px, 100%);
  margin-left: auto;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(28, 28, 30, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(242, 242, 240, 0.84)),
    var(--surface);
  box-shadow: 0 14px 42px rgba(28, 28, 30, 0.07);
  transition: border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.faq-item[open] {
  border-color: rgba(28, 28, 30, 0.2);
  background:
    linear-gradient(180deg, rgba(241, 242, 240, 0.98), rgba(229, 230, 227, 0.96)),
    #ececea;
  box-shadow: 0 18px 50px rgba(28, 28, 30, 0.11);
}

.faq-item:hover {
  border-color: rgba(28, 28, 30, 0.24);
}

.faq-item summary {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 34px;
  gap: clamp(12px, 2vw, 20px);
  align-items: center;
  min-height: 76px;
  padding: 0 clamp(14px, 2.2vw, 24px);
  cursor: pointer;
  list-style: none;
}

.faq-item summary:focus-visible {
  outline: 3px solid rgba(38, 131, 79, 0.24);
  outline-offset: -3px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-number {
  color: var(--call-green);
  font-size: 12px;
  font-weight: 850;
  font-variant-numeric: tabular-nums;
}

.faq-question {
  color: var(--anthracite);
  font-family: var(--font-display);
  font-size: clamp(17px, 1.7vw, 23px);
  font-weight: 800;
  line-height: 1.12;
}

.faq-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(28, 28, 30, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  transition: border-color 220ms ease, background 220ms ease;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  width: 13px;
  height: 2px;
  border-radius: 999px;
  background: var(--anthracite);
  transition: transform 180ms ease, opacity 180ms ease;
}

.faq-icon::after {
  transform: rotate(90deg);
}

.faq-item[open] .faq-icon {
  border-color: rgba(28, 28, 30, 0.2);
  background: rgba(255, 255, 255, 0.64);
}

.faq-item[open] .faq-icon::after {
  opacity: 0;
  transform: rotate(0deg);
}

.faq-answer {
  padding: 0 clamp(14px, 2.2vw, 24px) clamp(18px, 2.4vw, 24px) calc(clamp(14px, 2.2vw, 24px) + 74px);
  animation: faq-panel-in 220ms ease both;
}

.faq-answer p {
  max-width: 760px;
  margin: 0;
  color: var(--metal);
  font-size: clamp(15px, 1.35vw, 17px);
}

.faq-answer-action {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.faq-contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid var(--anthracite);
  border-radius: var(--radius);
  background: var(--anthracite);
  color: var(--ivory);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease;
}

.faq-contact-button:hover {
  transform: translateY(-1px);
  background: #000;
}

.contact-section {
  scroll-margin-top: 118px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(22px, 4vw, 48px);
  padding: clamp(32px, 6vw, 80px) 0;
  border-top: 1px solid var(--rule);
}

.contact-copy {
  display: grid;
  align-content: start;
  justify-items: start;
}

.contact-copy h2 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 70px);
  line-height: 0.98;
}

.contact-phone-card {
  display: grid;
  justify-items: center;
  width: min(360px, 100%);
  padding: 18px;
  border: 1px solid rgba(28, 28, 30, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 48px rgba(28, 28, 30, 0.09);
}

.contact-phone {
  color: var(--anthracite);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 850;
  line-height: 1.05;
  text-align: center;
  text-decoration: none;
}

.contact-email-link {
  margin-top: 8px;
  color: var(--metal);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

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

.contact-schedule {
  display: grid;
  gap: 9px;
  width: 100%;
  margin-top: 14px;
}

.schedule-title {
  margin: 0;
  color: var(--metal);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}

.contact-schedule dl {
  display: grid;
  gap: 7px;
  margin: 0;
}

.contact-schedule dl div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: baseline;
  padding: 8px 0;
  border-top: 1px solid rgba(28, 28, 30, 0.1);
}

.contact-schedule dt {
  color: var(--metal);
  font-size: 13px;
  font-weight: 700;
  text-align: left;
}

.contact-schedule dd {
  margin: 0;
  color: var(--anthracite);
  font-size: 14px;
  font-weight: 850;
  text-align: right;
}

.legal-note,
.form-status {
  color: var(--metal);
}

.contact-form {
  position: relative;
  display: grid;
  gap: 16px;
  overflow: hidden;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(28, 28, 30, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(242, 242, 240, 0.92)),
    var(--surface);
  box-shadow: 0 24px 70px rgba(28, 28, 30, 0.18);
  backdrop-filter: blur(20px);
}

.contact-form::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.form-widget-head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px;
  border: 1px solid rgba(28, 28, 30, 0.12);
  border-radius: var(--radius);
  background: rgba(28, 28, 30, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.form-widget-head h3 {
  margin: 2px 0 0;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1;
}

.form-eyebrow {
  color: var(--silver);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.form-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--anthracite);
  border-radius: var(--radius);
  background: var(--anthracite);
  color: var(--ivory);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease;
}

.form-call:hover {
  transform: translateY(-1px);
}

.field {
  display: grid;
  gap: 7px;
}

.field span {
  font-size: 13px;
  font-weight: 700;
  color: var(--metal);
}

.field-helper {
  color: var(--silver);
  font-size: 12px;
  font-weight: 650;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(28, 28, 30, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.48);
  color: var(--anthracite);
  font: inherit;
  padding: 13px 14px;
  outline: none;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

textarea {
  min-height: 136px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--metal);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 0 0 3px rgba(142, 146, 153, 0.22), 0 10px 24px rgba(28, 28, 30, 0.08);
}

.consent-field {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  padding: 12px 13px;
  border: 1px solid rgba(28, 28, 30, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.42);
}

.consent-field input[type="checkbox"] {
  width: 18px;
  min-width: 18px;
  height: 18px;
  margin: 2px 0 0;
  padding: 0;
  border-radius: 4px;
  accent-color: var(--anthracite);
  cursor: pointer;
}

.consent-field label {
  color: var(--metal);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.42;
}

.consent-field a {
  color: #1d4ed8;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.consent-field a:hover {
  color: #143a8b;
}

.consent-field a:focus-visible {
  border-radius: 4px;
  outline: 3px solid rgba(29, 78, 216, 0.2);
  outline-offset: 2px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  font-size: 14px;
}

.motion-watch {
  opacity: 1;
  transform: translateY(8px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.motion-watch.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.category-ball.motion-watch:nth-child(2) {
  transition-delay: 40ms;
}

.category-ball.motion-watch:nth-child(3) {
  transition-delay: 80ms;
}

.category-ball.motion-watch:nth-child(4) {
  transition-delay: 120ms;
}

.category-ball.motion-watch:nth-child(5) {
  transition-delay: 160ms;
}

.category-ball.motion-watch:nth-child(6) {
  transition-delay: 200ms;
}

.site-footer {
  --footer-icon-size: 14px;
  --icon-company: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 21h18'/%3E%3Cpath d='M5 21V7l7-4 7 4v14'/%3E%3Cpath d='M9 21v-6h6v6'/%3E%3Cpath d='M9 10h.01M12 10h.01M15 10h.01'/%3E%3C/svg%3E");
  --icon-location: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 10c0 5-8 12-8 12S4 15 4 10a8 8 0 1 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
  --icon-file: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 2H7a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V7Z'/%3E%3Cpath d='M14 2v5h5'/%3E%3Cpath d='M9 13h6M9 17h6'/%3E%3C/svg%3E");
  --icon-id: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='4' width='18' height='16' rx='2'/%3E%3Cpath d='M7 9h4M7 13h10M7 17h7'/%3E%3Cpath d='M15 8h2'/%3E%3C/svg%3E");
  --icon-phone: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='black' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1C10.61 21 3 13.39 3 4c0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.24.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2Z'/%3E%3C/svg%3E");
  --icon-mail: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='m3 7 9 6 9-6'/%3E%3C/svg%3E");
  --icon-message: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21 15a4 4 0 0 1-4 4H8l-5 3V7a4 4 0 0 1 4-4h10a4 4 0 0 1 4 4Z'/%3E%3Cpath d='M8 9h8M8 13h5'/%3E%3C/svg%3E");
  --icon-facebook: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='black' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 8h3V4h-3c-3.3 0-5 2-5 5v2H6v4h3v7h4v-7h3l1-4h-4V9c0-.7.3-1 1-1Z'/%3E%3C/svg%3E");
  --icon-calendar: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 2v4M16 2v4M3 10h18'/%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3C/svg%3E");
  --icon-clock: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l3 2'/%3E%3C/svg%3E");
  --icon-shield: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10Z'/%3E%3Cpath d='m9 12 2 2 4-5'/%3E%3C/svg%3E");
  border-top: 1px solid var(--rule);
  padding: clamp(34px, 5vw, 58px) clamp(18px, 4vw, 56px);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(170px, 1fr) minmax(220px, 1.25fr) repeat(4, minmax(100px, 0.8fr)) minmax(190px, 0.9fr);
  gap: clamp(12px, 1.6vw, 20px);
  align-items: start;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.footer-inner.footer-inner-compact {
  grid-template-columns: minmax(170px, 1fr) minmax(220px, 1.25fr) repeat(2, minmax(130px, 0.8fr)) minmax(190px, 0.9fr);
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 8px;
  color: var(--metal);
  font-size: 14px;
  min-width: 0;
}

.footer-column h2,
.footer-column h3 {
  margin: 0 0 6px;
  color: var(--anthracite);
  font-family: var(--font-display);
  line-height: 1;
}

.footer-column h2 {
  font-size: clamp(24px, 2.6vw, 34px);
}

.footer-column h3 {
  font-size: 14px;
  font-weight: 850;
  text-transform: uppercase;
}

.footer-column p,
.footer-column span {
  margin: 0;
  overflow-wrap: anywhere;
}

.footer-column strong {
  color: var(--anthracite);
  font-weight: 850;
}

.footer-column a {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.footer-column a:hover {
  color: var(--anthracite);
}

.footer-brand p {
  max-width: 230px;
}

.footer-company {
  gap: 7px;
}

.footer-company p {
  color: var(--anthracite);
}

.footer-company p,
.footer-company span,
.footer-inner:not(.footer-inner-compact) .footer-column:nth-child(4) > span,
.footer-inner:not(.footer-inner-compact) .footer-column:nth-child(4) > strong,
.footer-inner:not(.footer-inner-compact) .footer-column:nth-child(5) > span {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
}

.footer-company p::before,
.footer-company span::before,
.footer-column:not(.footer-anpc) a::before,
.footer-inner:not(.footer-inner-compact) .footer-column:nth-child(4) > span::before,
.footer-inner:not(.footer-inner-compact) .footer-column:nth-child(4) > strong::before,
.footer-inner:not(.footer-inner-compact) .footer-column:nth-child(5) > span::before {
  content: "";
  flex: 0 0 auto;
  width: var(--footer-icon-size);
  height: var(--footer-icon-size);
  margin-top: 3px;
  background: rgba(28, 28, 30, 0.52);
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}

.footer-company p::before {
  -webkit-mask-image: var(--icon-company);
  mask-image: var(--icon-company);
}

.footer-company span:nth-of-type(1)::before,
.footer-inner:not(.footer-inner-compact) .footer-column:nth-child(5) > span::before {
  -webkit-mask-image: var(--icon-location);
  mask-image: var(--icon-location);
}

.footer-company span:nth-of-type(2)::before {
  -webkit-mask-image: var(--icon-file);
  mask-image: var(--icon-file);
}

.footer-company span:nth-of-type(3)::before {
  -webkit-mask-image: var(--icon-id);
  mask-image: var(--icon-id);
}

.footer-column a[href^="tel:"]::before {
  -webkit-mask-image: var(--icon-phone);
  mask-image: var(--icon-phone);
}

.footer-column a[href^="mailto:"]::before {
  -webkit-mask-image: var(--icon-mail);
  mask-image: var(--icon-mail);
}

.footer-column a[href="#contact"]::before,
.footer-column a[href="index.html#contact"]::before {
  -webkit-mask-image: var(--icon-message);
  mask-image: var(--icon-message);
}

.footer-column a[href*="facebook.com"]::before {
  -webkit-mask-image: var(--icon-facebook);
  mask-image: var(--icon-facebook);
}

.footer-inner:not(.footer-inner-compact) .footer-column:nth-child(4) > span:nth-of-type(1)::before {
  -webkit-mask-image: var(--icon-calendar);
  mask-image: var(--icon-calendar);
}

.footer-inner:not(.footer-inner-compact) .footer-column:nth-child(4) > strong::before {
  -webkit-mask-image: var(--icon-clock);
  mask-image: var(--icon-clock);
}

.footer-inner:not(.footer-inner-compact) .footer-column:nth-child(4) > span:nth-of-type(2)::before,
.footer-column a[href*="anpc.ro"]::before,
.footer-column a[href*="reclamatiisal.anpc.ro"]::before {
  -webkit-mask-image: var(--icon-shield);
  mask-image: var(--icon-shield);
}

.footer-column a[href*="termeni-si-conditii"]::before,
.footer-column a[href*="politica-date-personale"]::before {
  -webkit-mask-image: var(--icon-file);
  mask-image: var(--icon-file);
}

.footer-anpc {
  justify-items: start;
}

.footer-anpc a {
  display: inline-flex;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.anpc-badge {
  width: 250px;
  height: 50px;
  object-fit: contain;
}

.gallery-hero {
  padding: clamp(36px, 6vw, 86px) 0 22px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--metal);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 20px);
  padding-bottom: clamp(54px, 8vw, 96px);
}

.gallery-grid img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: var(--surface-strong);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@keyframes soft-rise {
  from {
    opacity: 0.92;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes line-float-up {
  0% {
    opacity: 0;
    transform: translate3d(0, 76px, 0);
  }
  18% {
    opacity: 0.9;
  }
  68% {
    opacity: 0.62;
  }
  100% {
    opacity: 0;
    transform: translate3d(0, -118px, 0);
  }
}

@keyframes faq-panel-in {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "nav";
  }

  .brand {
    grid-area: brand;
    justify-self: center;
  }

  .top-contact {
    display: none;
  }

  .main-nav {
    grid-area: nav;
    justify-self: stretch;
    justify-content: space-between;
  }

  .main-nav .nav-link[href="#contact"],
  .main-nav .nav-link[href="index.html#contact"] {
    background: var(--anthracite);
    border-color: var(--anthracite);
    color: var(--ivory);
  }

  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-area-layout {
    grid-template-columns: 1fr;
  }

  .trust-grid,
  .steps-timeline {
    grid-template-columns: 1fr 1fr;
  }

  .steps-timeline::before {
    display: none;
  }

  .review-arrow-prev {
    left: 8px;
  }

  .review-arrow-next {
    right: 8px;
  }

  .faq-list {
    width: 100%;
    margin-left: 0;
  }

  .contact-section {
    scroll-margin-top: 176px;
    grid-template-columns: 1fr;
  }

  .contact-copy {
    justify-items: center;
    text-align: center;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .ambient-line-a {
    top: 106px;
    left: -190px;
    width: 560px;
  }

  .ambient-line-b {
    top: 238px;
    right: -238px;
    width: 520px;
  }

  .ambient-line-c {
    top: 640px;
    left: -136px;
    width: 520px;
  }

  .site-header {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "nav";
    gap: 12px;
    padding: 12px 16px;
  }

  .brand {
    justify-self: center;
  }

  .top-contact {
    display: none;
  }

  .main-nav {
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .nav-link,
  .phone-link,
  .button {
    min-height: 40px;
    padding: 0 14px;
    white-space: nowrap;
  }

  .valley-map {
    aspect-ratio: 1 / 1;
    min-height: 360px;
  }

  .map-attribution {
    left: 10px;
    bottom: 10px;
    max-width: calc(100% - 20px);
    font-size: 10px;
  }

  .map-source-link {
    right: 10px;
    bottom: 44px;
    min-height: 32px;
    padding: 0 10px;
    font-size: 12px;
  }

  .contact-section {
    scroll-margin-top: 166px;
    gap: 18px;
    padding-top: 26px;
  }

  .contact-phone-card {
    width: 100%;
    padding: 16px;
  }

  .contact-form {
    background:
      linear-gradient(180deg, rgba(246, 246, 244, 0.96), rgba(233, 234, 231, 0.96)),
      #f1f2ef;
  }

  .hero {
    padding-top: 18px;
  }

  .carousel {
    aspect-ratio: 16 / 9;
    min-height: auto;
  }

  .hero .carousel {
    box-shadow: 0 12px 30px rgba(28, 28, 30, 0.14);
  }

  .slide img {
    object-fit: contain;
  }

  .carousel-arrow {
    width: 42px;
    height: 42px;
  }

  .carousel-arrow-prev {
    left: 10px;
  }

  .carousel-arrow-next {
    right: 10px;
  }

  .carousel-controls {
    right: 12px;
    bottom: 12px;
  }

  .dot {
    width: 26px;
  }

  .cta-row {
    align-items: stretch;
  }

  .cta-row .button {
    flex: 1;
  }

  .reviews-section {
    padding-top: 24px;
  }

  .reviews-track {
    border-radius: var(--radius);
  }

  .review-card {
    min-height: 312px;
    padding: 34px 48px;
  }

  .review-card blockquote {
    font-size: clamp(20px, 6vw, 27px);
    line-height: 1.24;
  }

  .review-card:nth-child(2) blockquote {
    font-size: 16px;
    line-height: 1.48;
  }

  .review-arrow {
    width: 42px;
    height: 42px;
  }

  .review-arrow-prev {
    left: 8px;
  }

  .review-arrow-next {
    right: 8px;
  }

  .facebook-link {
    width: 46px;
    height: 46px;
  }

  .section-heading {
    display: block;
  }

  .trust-grid,
  .steps-timeline {
    grid-template-columns: 1fr;
  }

  .faq-item summary {
    grid-template-columns: 42px minmax(0, 1fr) 32px;
    min-height: 70px;
    padding: 0 14px;
  }

  .faq-number {
    align-self: start;
    padding-top: 25px;
  }

  .faq-question {
    font-size: clamp(16px, 4.8vw, 20px);
  }

  .faq-answer {
    padding: 0 14px 18px 70px;
  }

  .faq-answer-action {
    align-items: flex-start;
  }

  .faq-contact-button {
    min-height: 36px;
    padding: 0 14px;
  }

  .trust-card,
  .step-card {
    min-height: auto;
  }

  .step-card {
    padding: 0 0 22px 76px;
  }

  .step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 54px;
    height: 54px;
    font-size: 21px;
  }

  .step-card h3 {
    margin-top: 3px;
  }

  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid img {
    height: auto;
    max-height: 620px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-column {
    padding-top: 2px;
  }

  .footer-brand p {
    max-width: none;
  }

  .footer-anpc {
    justify-items: start;
  }

  .form-widget-head {
    align-items: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .ambient-line {
    animation: none !important;
    opacity: 0.26;
    transform: none;
  }

  .motion-watch {
    opacity: 1;
    transform: none;
  }
}
