/* =================================================================
   MD CLEANING SERVICES — Premium Black / White / Gold
   Signature motif: "the gold sweep" — a diagonal wipe line that
   recurs as section dividers, hover states, and the hero graphic,
   echoing a squeegee pass over a clean surface.
   ================================================================= */

:root {
  /* Color */
  --ink: #0b0b0c;
  --ink-soft: #141316;
  --charcoal: #1c1a1d;
  --paper: #f7f4ee;
  --white: #ffffff;
  --gold: #c9a227;
  --gold-light: #e8cd7a;
  --muted: #9c9890;
  --muted-dark: #6f6c66;
  --text-dark: #18161a;

  /* Type */
  --font-display: "Fraunces", serif;
  --font-body: "Inter", sans-serif;

  /* Layout */
  --container: 1240px;
  --radius: 2px;
  --header-h: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.01em;
}

em {
  font-style: italic;
  color: var(--gold);
}

p {
  margin: 0;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.icon {
  width: 18px;
  height: 18px;
}

/* ---------- Eyebrow / labels ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 14px;
}
.eyebrow.center {
  text-align: center;
}

.section-title {
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-title.center {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.01em;
  padding: 15px 28px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(120deg, var(--gold), var(--gold-light));
  color: var(--ink);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -8px rgba(201, 162, 39, 0.55);
}
.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-sm {
  padding: 10px 18px;
  font-size: 13px;
}
.btn-block {
  width: 100%;
  justify-content: center;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 11, 12, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: padding 0.3s ease;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}
.logo-mark {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 19px;
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.main-nav {
  display: flex;
  gap: 32px;
}
.main-nav a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14.5px;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1.5px;
  width: 100%;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.main-nav a:hover {
  color: var(--white);
}
.main-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
}
.header-phone .icon {
  color: var(--gold);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  width: 100%;
  height: 1.5px;
  background: var(--white);
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}
.nav-toggle.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
  padding: 96px 0 80px;
}
.hero-sweep {
  position: absolute;
  inset: -20% -10%;
  background: linear-gradient(
    100deg,
    transparent 48%,
    rgba(201, 162, 39, 0.16) 50%,
    rgba(201, 162, 39, 0.55) 51%,
    rgba(201, 162, 39, 0.1) 53%,
    transparent 58%
  );
  transform: scaleX(0) rotate(-3deg);
  transform-origin: left center;
  animation: sweep-in 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
  pointer-events: none;
}
@keyframes sweep-in {
  to {
    transform: scaleX(1) rotate(-3deg);
  }
}

/* Subtle repeating diagonal "wipe" texture — reinforces the sweep motif on dark sections */
.hero-texture {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    115deg,
    rgba(255, 255, 255, 0.025) 0px,
    rgba(255, 255, 255, 0.025) 1px,
    transparent 1px,
    transparent 34px
  );
  pointer-events: none;
}
.section-dark {
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-title {
  font-size: clamp(36px, 5.2vw, 64px);
  line-height: 1.08;
  margin-bottom: 22px;
}
.hero-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.72);
  max-width: 480px;
  margin-bottom: 32px;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.trust-row {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  padding: 0;
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.02em;
}
.trust-row li {
  position: relative;
  padding-left: 16px;
}
.trust-row li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 1px;
  background: var(--gold);
  transform: translateY(-50%);
}

.hero-areas-line {
  margin-top: 22px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.01em;
}
.hero-areas-line strong {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

.hero-panel {
  display: flex;
  justify-content: center;
  perspective: 1200px;
}
.hero-panel-card {
  border: 1px solid rgba(201, 162, 39, 0.4);
  background: linear-gradient(160deg, rgba(201, 162, 39, 0.08), transparent);
  padding: 40px 32px;
  text-align: center;
  border-radius: var(--radius);
  width: 100%;
  max-width: 260px;
  transition: transform 0.15s ease-out;
  will-change: transform;
}
.hero-panel-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.hero-panel-label-sm {
  margin-bottom: 14px;
}
.hero-panel-city {
  display: block;
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1.1;
  margin-bottom: 4px;
}
.hero-panel-divider {
  width: 36px;
  height: 1px;
  background: rgba(201, 162, 39, 0.5);
  margin: 22px auto;
}
.hero-panel-areas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.hero-panel-areas span {
  font-size: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 5px 10px;
  border-radius: 1px;
  color: rgba(255, 255, 255, 0.75);
}

/* ---------- Stat strip ---------- */
.stat-strip {
  background: var(--ink);
  border-top: 1px solid rgba(201, 162, 39, 0.18);
}
.stat-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 36px 0;
}
.stat {
  text-align: center;
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.6);
}
.stat-sep {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.15);
}

/* ---------- Testimonials carousel ---------- */
.testimonial-carousel {
  margin-top: 56px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.testimonial-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}
.testimonial-card {
  flex: 0 0 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 40px 44px;
  background: var(--white);
  text-align: center;
}
.stars {
  color: var(--gold);
  font-size: 15px;
  margin-bottom: 18px;
  letter-spacing: 3px;
}
.testimonial-card blockquote {
  margin: 0 0 20px;
  font-size: 17px;
  line-height: 1.65;
  font-style: italic;
  color: var(--text-dark);
}
.testimonial-card figcaption {
  font-size: 13px;
  color: var(--muted-dark);
  font-weight: 600;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 28px;
}
.car-btn {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-dark);
  transition:
    border-color 0.25s ease,
    color 0.25s ease;
}
.car-btn svg {
  width: 16px;
  height: 16px;
}
.car-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.car-dots {
  display: flex;
  gap: 9px;
}
.car-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  padding: 0;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}
.car-dots button.active {
  background: var(--gold);
  transform: scale(1.2);
}

/* ---------- Service Area (interactive) ---------- */
.areas-intro {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
  color: var(--muted-dark);
  font-size: 15.5px;
}
.areas-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  grid-template-rows: auto auto;
  gap: 18px;
}
.area-card {
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: var(--white);
  padding: 22px 24px;
  cursor: pointer;
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    transform 0.2s ease;
}
.area-card:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
}
.area-card h3 {
  font-size: 16px;
  margin-bottom: 4px;
  font-family: var(--font-body);
  font-weight: 700;
}
.area-card p {
  font-size: 12.5px;
  color: var(--muted-dark);
  letter-spacing: 0.02em;
}
.area-card.is-active {
  border-color: var(--gold);
  background: var(--ink);
}
.area-card.is-active h3,
.area-card.is-active p {
  color: var(--white);
}
.area-card.is-active p {
  color: var(--gold);
}

.area-card-main {
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 28px;
}
.area-tag {
  display: inline-block;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.area-card-main h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 8px;
}
.area-card-main p {
  font-size: 13.5px;
}

.areas-secondary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.areas-map {
  grid-column: 2;
  grid-row: 2;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.areas-map iframe {
  width: 100%;
  height: 100%;
  min-height: 220px;
  border: none;
  filter: grayscale(0.25) contrast(1.05);
}

/* ---------- FAQ accordion ---------- */
.faq-list {
  max-width: 760px;
  margin: 56px auto 0;
}
.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 4px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  text-align: left;
}
.faq-icon {
  font-size: 20px;
  color: var(--gold);
  transition: transform 0.3s ease;
  font-weight: 400;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-a p {
  padding: 0 4px 22px;
  font-size: 14.5px;
  color: var(--muted-dark);
  line-height: 1.65;
  max-width: 620px;
}

/* ---------- Sweep divider (signature, reused) ---------- */
.sweep-divider {
  position: relative;
  height: 64px;
  background: var(--ink);
  overflow: hidden;
}
.sweep-divider span {
  position: absolute;
  left: -5%;
  right: -5%;
  top: 50%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold) 20%,
    var(--gold-light) 50%,
    var(--gold) 80%,
    transparent
  );
  transform: rotate(-1deg);
}

/* ---------- Sections ---------- */
.section {
  padding: 112px 0;
  background: var(--paper);
  scroll-margin-top: var(--header-h);
  position: relative;
}
.section-dark {
  background: var(--ink);
  color: var(--white);
}
.section-dark .section-title {
  color: var(--white);
}
.section-paper {
  background: var(--white);
}

/* ---------- Services (interactive image cards) ---------- */
.services-intro {
  text-align: center;
  color: var(--muted-dark);
  font-size: 14.5px;
  margin: -4px 0 0;
}
.services-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.service-tile {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
.service-tile:hover {
  border-color: var(--gold);
  box-shadow: 0 18px 36px -20px rgba(0, 0, 0, 0.25);
}
.service-tile-media {
  position: relative;
  height: 190px;
  overflow: hidden;
}
.service-tile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-tile:hover .service-tile-media img {
  transform: scale(1.08);
}
.service-tile-media::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 38px 38px;
  border-color: transparent transparent transparent var(--gold);
  opacity: 0;
  transform: translate(10px, -10px);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}
.service-tile:hover .service-tile-media::after {
  opacity: 1;
  transform: translate(0, 0);
}
.service-tile-body {
  padding: 26px 26px 24px;
}
.service-tile-tag {
  display: inline-block;
  font-size: 10.5px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.service-tile h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.service-tile-short {
  font-size: 14px;
  color: var(--muted-dark);
  line-height: 1.6;
}
.service-tile-more {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.service-tile-more p {
  font-size: 13.5px;
  color: var(--muted-dark);
  line-height: 1.65;
  padding-top: 12px;
}
.service-tile-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 14px 0 0;
  cursor: pointer;
}
.service-tile-toggle svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}
.service-tile.is-open .service-tile-toggle svg {
  transform: rotate(180deg);
}
.service-tile-toggle:hover {
  color: var(--gold);
}

/* ---------- Why Us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
}
.why-intro .section-title {
  font-size: clamp(26px, 3vw, 36px);
}
.why-sub {
  color: rgba(255, 255, 255, 0.65);
  font-size: 15.5px;
  margin-top: 14px;
  max-width: 420px;
}
.why-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 32px;
}
.why-list li {
  display: flex;
  gap: 16px;
}
.why-icon {
  width: 26px;
  height: 26px;
  min-width: 26px;
  color: var(--gold);
  margin-top: 2px;
}
.why-list h3 {
  font-size: 16px;
  margin-bottom: 6px;
  font-family: var(--font-body);
  font-weight: 700;
}
.why-list p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* ---------- Process ---------- */
.process-list {
  list-style: none;
  margin: 56px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.process-list li {
  position: relative;
  padding: 0 28px 0 0;
  border-right: 1px solid rgba(0, 0, 0, 0.12);
}
.process-list li:last-child {
  border-right: none;
}
.process-num {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.process-list h3 {
  font-size: 17px;
  margin-bottom: 8px;
}
.process-list p {
  font-size: 14px;
  color: var(--muted-dark);
  line-height: 1.6;
}

/* ---------- Contact ---------- */
.contact-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
}
.contact-copy .why-sub {
  margin-top: 16px;
  margin-bottom: 32px;
}
.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
}
.contact-list .icon {
  color: var(--gold);
}
.contact-list a:hover {
  color: var(--gold);
}

.contact-form {
  background: var(--charcoal);
  padding: 36px;
  border: 1px solid rgba(201, 162, 39, 0.25);
}
.form-row {
  margin-bottom: 18px;
}
.form-row-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-row label {
  display: block;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 14.5px;
  border-radius: var(--radius);
  transition: border-color 0.25s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.contact-form textarea {
  resize: vertical;
}
.form-note {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 14px;
  text-align: center;
}
.form-email-fallback {
  display: block;
  margin: 14px auto 0;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12.5px;
  text-decoration: underline;
  cursor: pointer;
}
.form-email-fallback:hover {
  color: var(--gold);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.6);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}
.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-nav a {
  font-size: 13.5px;
}
.footer-nav a:hover {
  color: var(--gold);
}
.footer-social {
  display: flex;
  gap: 14px;
}
.footer-social a {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  transition:
    border-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.footer-social svg {
  width: 16px;
  height: 16px;
}
.footer-copy {
  font-size: 12.5px;
  width: 100%;
  text-align: center;
  margin-top: 12px;
  opacity: 0.6;
}

/* ---------- Floating WhatsApp ---------- */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px -6px rgba(0, 0, 0, 0.45);
  z-index: 90;
  transition: transform 0.25s ease;
}
.whatsapp-fab:hover {
  transform: scale(1.08);
}
.whatsapp-fab svg {
  width: 26px;
  height: 26px;
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-panel {
    display: none;
  }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .services-grid-v2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-list {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 36px;
  }
  .process-list li {
    border-right: none;
    padding-right: 0;
  }

  .areas-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .area-card-main {
    grid-row: auto;
  }
  .areas-map {
    grid-column: auto;
    grid-row: auto;
  }
  .areas-map iframe {
    height: 280px;
  }

  .testimonial-card {
    padding: 32px 28px;
  }
}

@media (max-width: 760px) {
  .main-nav,
  .header-phone {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .header-actions .btn-sm {
    display: none;
  }

  .main-nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--ink);
    flex-direction: column;
    padding: 10px 28px 24px;
    gap: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 0.25s ease,
      transform 0.25s ease;
  }
  .main-nav.open {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .services-grid-v2 {
    grid-template-columns: 1fr;
  }
  .process-list {
    grid-template-columns: 1fr;
  }
  .why-list {
    grid-template-columns: 1fr;
  }
  .form-row-split {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 64px 0;
  }
  .hero {
    padding: 56px 0 56px;
  }

  .stat-strip-inner {
    gap: 28px;
    flex-wrap: wrap;
  }
  .stat-num {
    font-size: 28px;
  }
  .stat-sep {
    display: none;
  }

  .areas-secondary {
    grid-template-columns: 1fr 1fr;
  }
  .area-card-main h3 {
    font-size: 24px;
  }

  .testimonial-card {
    padding: 28px 22px;
  }
  .testimonial-card blockquote {
    font-size: 15.5px;
  }

  .faq-q {
    font-size: 14.5px;
  }
}

/* Trava geral - impede o site inteiro de vazar a tela */
html,
body {
  overflow-x: hidden;
  max-width: 100vw;
}

* {
  box-sizing: border-box;
}

img,
video,
iframe {
  max-width: 100%;
  height: auto;
}

/* Fix do carrossel de reviews */
.testimonials,
.client-feedback,
.reviews-carousel {
  overflow: hidden;
  max-width: 100%;
}

.testimonials-track,
.reviews-track,
.carousel-track {
  overflow-x: hidden;
}
