:root {
  --bg: #090909;
  --bg-2: #111111;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-strong: rgba(255, 255, 255, 0.1);
  --border: rgba(255, 255, 255, 0.12);
  --border-strong: rgba(255, 255, 255, 0.2);
  --accent: #ffd54a;
  --accent-soft: rgba(255, 213, 74, 0.14);
  --whatsapp: #25d366;
  --whatsapp-dark: #128c7e;
  --success: #30d158;
  --text: #ffffff;
  --muted: #bdbdbd;
  --muted-2: #8e8e8e;
  --danger: #ff453a;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --radius: 24px;
  --radius-sm: 16px;
  --nav-height: 82px;
  --container: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  color-scheme: dark;
}

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

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  min-width: 320px;
  margin: 0;
  font-family: Inter, Manrope, "General Sans", Satoshi, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 213, 74, 0.03), transparent 22rem),
    linear-gradient(135deg, #090909 0%, #0d0d0d 40%, #050505 100%);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, transparent, black 14rem, black 70%, transparent);
}

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

img {
  height: auto;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

address {
  font-style: normal;
}

::selection {
  color: #090909;
  background: var(--accent);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 0.75rem 1rem;
  border-radius: 999px;
  color: #090909;
  background: var(--accent);
  font-weight: 800;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

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

.glass-panel {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.glass-panel::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
  border-radius: inherit;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.12) 18%, transparent 36%);
  transform: translateX(-120%);
  opacity: 0;
}

.glass-panel > * {
  position: relative;
  z-index: 1;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 14px 0;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    padding 220ms ease;
}

.site-header.is-scrolled {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 5, 5, 0.9);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
}

.nav-shell {
  display: flex;
  width: min(var(--container), calc(100% - 32px));
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.94);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
}

.brand {
  display: inline-flex;
  width: 196px;
  height: 50px;
  align-items: center;
  justify-content: center;
  min-width: 0;
  overflow: hidden;
  border-radius: 16px;
  background: #000000;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-menu a:not(.btn) {
  padding: 0.72rem 0.9rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
}

.nav-menu a:not(.btn):focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
}

.nav-toggle.glass-icon {
  display: none;
}

.glass-icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition:
    background-color 180ms ease,
    border-color 180ms ease;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.glass-icon:hover {
  border-color: var(--border-strong);
  background: rgba(255, 255, 255, 0.11);
}

.glass-icon svg {
  width: 19px;
  height: 19px;
}

.btn {
  --btn-bg: rgba(255, 255, 255, 0.08);
  --btn-color: var(--text);
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  overflow: hidden;
  padding: 0.86rem 1.18rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: var(--btn-color);
  background: var(--btn-bg);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition:
    transform 220ms var(--ease),
    box-shadow 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease;
  will-change: transform;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.btn:hover {
  transform: translateY(-2px) scale(1.01);
  border-color: rgba(255, 255, 255, 0.24);
}

.btn-whatsapp {
  --btn-bg: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
  --btn-color: #03140a;
  border-color: rgba(37, 211, 102, 0.5);
  color: #03140a;
  box-shadow:
    0 20px 60px rgba(37, 211, 102, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.btn-secondary {
  --btn-bg: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 213, 74, 0.28);
  color: var(--accent);
}

.btn-ghost {
  --btn-bg: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.btn-large {
  min-height: 58px;
  padding-inline: 1.42rem;
}

.btn-compact {
  min-height: 42px;
  padding: 0.72rem 1rem;
}

.ripple {
  position: absolute;
  width: 18px;
  height: 18px;
  pointer-events: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  transform: translate(-50%, -50%) scale(0);
  animation: ripple 560ms ease-out forwards;
}

@keyframes ripple {
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(18);
  }
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  align-items: center;
  overflow: hidden;
  padding: 122px 0 62px;
  isolation: isolate;
}

.hero-media,
.hero-media img,
.hero-noise {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.1) brightness(0.54);
  transform: scale(1.03);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(90deg, rgba(9, 9, 9, 0.88), rgba(9, 9, 9, 0.34) 55%, rgba(9, 9, 9, 0.78)),
    linear-gradient(180deg, rgba(9, 9, 9, 0.1), #090909 94%);
}

.hero-noise {
  z-index: -1;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.42'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: center;
}

.hero-card {
  max-width: 780px;
  padding: 32px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  margin: 0 0 1.1rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--success);
  box-shadow: 0 0 24px var(--success);
  content: "";
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1 {
  max-width: 12ch;
  margin-bottom: 0.95rem;
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 0.95;
}

.hero-copy {
  max-width: 62ch;
  margin-bottom: 1.1rem;
  color: var(--muted);
  font-size: 1.16rem;
  line-height: 1.62;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.1rem;
}

.hero-tags span {
  padding: 0.55rem 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.86rem;
  font-weight: 750;
}

.hero-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 0.8rem;
  margin-bottom: 1.15rem;
  color: var(--muted);
}

.stars {
  display: inline-flex;
  gap: 0.16rem;
  color: var(--accent);
}

.stars svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
  stroke-width: 1.8;
}

.hero-rating strong {
  color: var(--text);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.response-badge {
  position: absolute;
  top: 28px;
  right: 28px;
  display: inline-flex;
  align-items: center;
  gap: 0.54rem;
  margin-top: 0;
  padding: 0.6rem 0.78rem;
  border: 1px solid rgba(48, 209, 88, 0.24);
  border-radius: 999px;
  color: #e7ffec;
  background: rgba(48, 209, 88, 0.1);
  font-size: 0.88rem;
  font-weight: 750;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--success);
  box-shadow: 0 0 0 rgba(48, 209, 88, 0.55);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(48, 209, 88, 0.55);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(48, 209, 88, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(48, 209, 88, 0);
  }
}

.hero-side {
  padding: 26px;
}

.side-stat + .side-stat {
  margin-top: 1.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--border);
}

.side-stat span,
.side-stat em {
  color: var(--accent);
  font-size: 3rem;
  font-weight: 900;
  font-style: normal;
  line-height: 1;
}

.side-stat p {
  margin: 0.38rem 0 0;
  color: var(--muted);
}

.side-list {
  display: grid;
  gap: 0.78rem;
  margin-top: 1.55rem;
}

.side-list p {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0;
  color: var(--muted);
}

.side-list svg {
  width: 18px;
  height: 18px;
  color: var(--success);
}

.brand-strip {
  overflow: hidden;
  padding: 28px 0 52px;
  background: linear-gradient(180deg, #090909, #0e0e0e);
}

.brand-slider {
  display: grid;
  gap: 10px;
}

.section-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 22px;
}

.section-kicker p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--accent);
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0 2px;
  font-weight: 800;
  transition: background-size 220ms var(--ease);
}

.text-link:hover,
.text-link:focus-visible {
  background-size: 100% 2px;
}

.logo-marquee {
  position: relative;
  display: flex;
  overflow: hidden;
  padding-block: 12px;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
}

.logo-marquee::before,
.logo-marquee::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 120px;
  content: "";
  pointer-events: none;
}

.logo-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #090909, transparent);
}

.logo-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #090909, transparent);
}

.logo-track {
  display: flex;
  min-width: max-content;
  gap: 0.85rem;
  animation: marquee 42s linear infinite;
}

.logo-marquee-reverse .logo-track {
  animation-direction: reverse;
}

.logo-marquee-slow .logo-track {
  animation-duration: 56s;
}

.logo-track span {
  display: inline-grid;
  min-width: 150px;
  place-items: center;
  padding: 1rem 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.045);
  font-size: 1.05rem;
  font-weight: 850;
  letter-spacing: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.trust-ribbon {
  padding: 20px 0 70px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.trust-item {
  padding: 20px;
}

.trust-item svg {
  width: 22px;
  height: 22px;
  margin-bottom: 1rem;
  color: var(--accent);
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.section {
  padding: 96px 0;
}

.section-header {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-header h2,
.location-card h2 {
  margin-bottom: 1rem;
  font-size: 3.55rem;
  font-weight: 900;
  line-height: 1;
}

.section-header p:not(.eyebrow),
.location-card p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 316px;
  padding: 26px;
}

.service-card,
.feature-card,
.process-list li,
.faq-item,
.location-card {
  transition:
    transform 220ms var(--ease),
    border-color 220ms ease,
    background-color 220ms ease;
}

.card-icon,
.feature-card > svg {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 1.35rem;
  border: 1px solid rgba(255, 213, 74, 0.24);
  border-radius: 16px;
  color: var(--accent);
  background: var(--accent-soft);
}

.card-icon svg {
  width: 23px;
  height: 23px;
}

.service-card h3,
.feature-card h3,
.process-list h3 {
  margin-bottom: 0.75rem;
  font-size: 1.28rem;
  font-weight: 850;
}

.service-card p,
.feature-card p,
.process-list p {
  margin-bottom: 1.35rem;
  color: var(--muted);
  line-height: 1.68;
}

.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
  color: var(--accent);
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0 2px;
  font-weight: 850;
  transition: background-size 220ms var(--ease);
}

.card-cta:hover,
.card-cta:focus-visible {
  background-size: 100% 2px;
}

.card-cta svg {
  width: 17px;
  height: 17px;
}

.split-layout {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 48px;
  align-items: start;
}

.sticky-copy {
  position: sticky;
  top: 128px;
  margin-bottom: 0;
}

.sticky-copy .btn {
  margin-top: 0.8rem;
}

.feature-stack {
  display: grid;
  gap: 16px;
}

.feature-card {
  padding: 28px;
}

.feature-card > svg {
  padding: 12px;
}

.stats-section {
  padding: 30px 0 96px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}

.stat-block {
  padding: 34px 26px;
}

.stat-block + .stat-block {
  border-left: 1px solid var(--border);
}

.stat-block span {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--accent);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}

.stat-block p {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

.process-section {
  padding-top: 0;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  position: relative;
  min-height: 250px;
  padding: 26px;
}

.process-list li::after {
  position: absolute;
  top: 50%;
  right: -18px;
  z-index: 3;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 213, 74, 0.26);
  border-radius: 999px;
  color: var(--accent);
  background: #0d0d0d;
  content: ">";
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  font-weight: 900;
  transform: translateY(-50%);
}

.process-list li:last-child::after {
  display: none;
}

.process-list span {
  display: inline-flex;
  margin-bottom: 2.1rem;
  color: rgba(255, 255, 255, 0.2);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
}

.center-cta {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.reviews-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 24px;
}

.reviews-heading .section-header {
  margin-bottom: 0;
}

.review-controls {
  display: flex;
  gap: 0.65rem;
}

.reviews-carousel {
  overflow: hidden;
  padding: 18px;
}

.reviews-track {
  display: flex;
  transition: transform 520ms var(--ease);
  will-change: transform;
}

.review-card {
  display: flex;
  min-width: 100%;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
}

.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.google-badge {
  display: inline-flex;
  padding: 0.48rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.82rem;
  font-weight: 850;
}

.review-card p {
  max-width: 980px;
  margin: 0 0 1.4rem;
  color: var(--text);
  font-size: 1.35rem;
  line-height: 1.7;
}

.review-card footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 1rem;
  color: var(--muted);
}

.review-card strong {
  color: var(--text);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
}

.faq-item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 22px 24px;
  border: 0;
  color: var(--text);
  background: transparent;
  text-align: left;
  font-weight: 850;
  cursor: pointer;
}

.faq-item button svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  color: var(--accent);
  transition: transform 220ms ease;
}

.faq-item button[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 24px 22px;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.location-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 22px;
  align-items: stretch;
}

.map-wrap {
  min-height: 520px;
  overflow: hidden;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
  filter: grayscale(1) invert(0.9) contrast(0.9) brightness(0.85);
}

.location-card {
  padding: 34px;
}

@media (hover: hover) and (pointer: fine) {
  .service-card:hover,
  .feature-card:hover,
  .process-list li:hover,
  .faq-item:hover,
  .location-card:hover {
    border-color: rgba(255, 213, 74, 0.24);
    background-color: rgba(255, 255, 255, 0.075);
    transform: translateY(-3px);
  }
}

.location-card address {
  display: grid;
  gap: 0.85rem;
  margin: 1.5rem 0;
  color: var(--muted);
}

.location-card address span {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.location-card address svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.site-footer {
  padding: 76px 0 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #050505;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 1fr 1.2fr;
  gap: 34px;
}

.footer-brand img {
  width: 118px;
  height: 118px;
  margin-bottom: 1.2rem;
  border-radius: 22px;
  object-fit: cover;
}

.footer-brand p,
.footer-contact p,
.footer-legal p {
  color: var(--muted);
  line-height: 1.72;
}

.footer-links,
.footer-contact,
.footer-legal {
  display: grid;
  align-content: start;
  gap: 0.7rem;
}

.footer-links h2,
.footer-contact h2,
.footer-legal h2 {
  margin: 0 0 0.4rem;
  color: var(--text);
  font-size: 0.95rem;
  text-transform: uppercase;
}

.footer-links a,
.footer-contact a {
  color: var(--muted);
}

.footer-contact p {
  margin: 0;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: flex-start;
  margin-top: 1rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--text);
  background: transparent;
  line-height: 0;
  transition: none;
}

.footer-social img {
  display: block;
  width: 26px;
  height: 26px;
  max-width: none;
  margin-bottom: 0;
  border-radius: 0;
  object-fit: contain;
  opacity: 1;
  filter: none;
  transform: none;
  overflow: visible;
}

.footer-legal details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 0.8rem;
}

.footer-legal summary {
  color: var(--muted);
  cursor: pointer;
  font-weight: 750;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 54px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted-2);
  font-size: 0.9rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.05);
}

.footer-bottom svg {
  width: 18px;
  height: 18px;
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 1px solid rgba(37, 211, 102, 0.55);
  border-radius: 999px;
  color: #03140a;
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
  box-shadow: 0 20px 54px rgba(37, 211, 102, 0.28);
  transition:
    transform 220ms var(--ease),
    box-shadow 220ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 24px 74px rgba(37, 211, 102, 0.36);
}

.floating-whatsapp svg {
  width: 27px;
  height: 27px;
}

.mobile-cta {
  position: fixed;
  right: 10px;
  bottom: 10px;
  left: 10px;
  z-index: 95;
  display: none;
  grid-template-columns: 1fr 1fr 1.35fr;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(9, 9, 9, 0.78);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.46);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.mobile-cta a {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  border-radius: 18px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.84rem;
  font-weight: 850;
}

.mobile-cta a.primary {
  color: #03140a;
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
}

.mobile-cta svg {
  width: 18px;
  height: 18px;
}

.reveal {
  will-change: transform, opacity, filter;
}

@media (max-width: 1200px) {
  h1 {
    font-size: 4.2rem;
  }

  .section-header h2,
  .location-card h2 {
    font-size: 3rem;
  }

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

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

  .process-list li::after {
    display: none;
  }

}

@media (max-width: 960px) {
  .site-header {
    padding: 10px 0;
  }

  .nav-shell {
    border-radius: 24px;
    background: rgba(5, 5, 5, 0.96);
  }

  .brand {
    width: 164px;
    height: 44px;
    border-radius: 14px;
  }

  .nav-toggle.glass-icon {
    display: inline-grid;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    left: 16px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: rgba(5, 5, 5, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .nav-menu.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-menu a:not(.btn),
  .nav-menu .btn {
    justify-content: center;
    width: 100%;
  }

  .hero {
    padding-top: 118px;
  }

  .hero-grid,
  .split-layout,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .hero-side {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .side-stat + .side-stat {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
  }

  .side-list {
    grid-column: 1 / -1;
  }

  .sticky-copy {
    position: static;
  }

  .trust-grid,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-block:nth-child(odd) {
    border-left: 0;
  }

  .stat-block:nth-child(n + 3) {
    border-top: 1px solid var(--border);
  }

  .process-list {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 720px) {
  body {
    padding-bottom: 88px;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .site-header {
    padding: 8px 0;
  }

  .nav-shell {
    width: calc(100% - 20px);
    min-height: 56px;
    padding: 8px;
  }

  .brand {
    width: 154px;
    height: 42px;
    border-radius: 13px;
  }

  .hero {
    min-height: auto;
    padding: 106px 0 54px;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(9, 9, 9, 0.34), rgba(9, 9, 9, 0.88) 62%, #090909),
      linear-gradient(90deg, rgba(9, 9, 9, 0.72), rgba(9, 9, 9, 0.35));
  }

  .hero-card,
  .hero-side,
  .location-card {
    padding: 24px;
  }

  .response-badge {
    position: static;
    margin-top: 1rem;
  }

  h1 {
    font-size: 3.2rem;
    line-height: 0.97;
  }

  .hero-copy,
  .section-header p:not(.eyebrow),
  .location-card p {
    font-size: 1rem;
  }

  .hero-actions,
  .location-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .btn,
  .location-actions .btn {
    width: 100%;
  }

  .hero-side,
  .services-grid,
  .process-list,
  .trust-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .trust-item,
  .stat-block,
  .service-card,
  .feature-card,
  .process-list li {
    padding: 22px;
  }

  .stat-block + .stat-block,
  .stat-block:nth-child(n + 3) {
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .section {
    padding: 72px 0;
  }

  .section-header h2,
  .location-card h2 {
    font-size: 2.35rem;
    line-height: 1.04;
  }

  .section-kicker {
    align-items: flex-start;
    flex-direction: column;
  }

  .logo-marquee::before,
  .logo-marquee::after {
    width: 56px;
  }

  .logo-track span {
    min-width: 126px;
    padding: 0.86rem 1rem;
    font-size: 0.95rem;
  }

  .reviews-heading {
    align-items: start;
    flex-direction: column;
  }

  .review-card {
    padding: 20px 12px;
  }

  .review-card p {
    font-size: 1.05rem;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 360px;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .floating-whatsapp {
    display: none;
  }

  .mobile-cta {
    display: grid;
  }
}

@media (max-width: 440px) {
  .glass-panel {
    border-radius: 20px;
  }

  h1 {
    font-size: 2.5rem;
  }

  .section-header h2,
  .location-card h2 {
    font-size: 2rem;
  }

  .hero-tags {
    gap: 0.45rem;
  }

  .hero-tags span {
    padding: 0.48rem 0.62rem;
    font-size: 0.8rem;
  }

  .btn {
    min-width: 0;
    white-space: normal;
  }

  .mobile-cta {
    border-radius: 20px;
  }

  .mobile-cta a {
    border-radius: 15px;
  }
}

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

  .logo-track {
    animation: none;
  }
}
