@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap");

:root {
  --bg: #070b12;
  --bg-soft: #0f172a;
  --surface: #ffffff;
  --surface-muted: #f1f5f9;
  --text: #0f172a;
  --text-strong: #020617;
  --muted: #64748b;
  --line: rgba(15, 23, 42, 0.1);
  --primary: #ea580c;
  --primary-hover: #c2410c;
  --accent: #f59e0b;
  --accent-soft: rgba(245, 158, 11, 0.15);
  /* Logo-aligned (BJ mark: mint green + slate) — use with orange for brand theme */
  --brand-mint: #5eb89a;
  --brand-mint-bright: #7dd4b8;
  --brand-mint-soft: rgba(94, 184, 154, 0.14);
  --brand-slate: #3f4448;
  --shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.08), 0 12px 24px -8px rgba(15, 23, 42, 0.12);
  --shadow-hover: 0 12px 28px -6px rgba(15, 23, 42, 0.18), 0 4px 8px -2px rgba(15, 23, 42, 0.08);
  --shadow-card: 0 2px 4px rgba(15, 23, 42, 0.04), 0 16px 40px -12px rgba(15, 23, 42, 0.14);
  --radius: 14px;
  --radius-lg: 18px;
}

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

html {
  scroll-behavior: smooth;
}

/* GPU-friendly motion: transform + opacity only; see prefers-reduced-motion below */
@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translate3d(0, 14px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes hero-pill-pulse {
  0%,
  100% {
    transform: scale3d(1, 1, 1);
  }

  50% {
    transform: scale3d(1.04, 1.04, 1);
  }
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background-color: #e2e8f0;
  background-image:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(234, 88, 12, 0.08), transparent 50%),
    linear-gradient(180deg, #f1f5f9 0%, #e2e8f0 45%, #cbd5e1 100%);
  background-attachment: fixed;
}

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

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

.container {
  width: min(1120px, 92%);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  background: #fff;
  color: #000;
  padding: 8px 12px;
  border-radius: 8px;
  z-index: 1000;
}

/* Sticky site header: utility strip (phone/email) + main bar (logo, nav, CTA) — typical trades / local business pattern */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(180deg, rgba(7, 11, 18, 0.98) 0%, rgba(15, 23, 42, 0.96) 100%);
  border-bottom: 1px solid rgba(234, 88, 12, 0.35);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
}

.header-utility {
  background: rgba(2, 6, 23, 0.88);
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.header-utility-inner {
  padding: 6px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.header-utility-inner > .header-social {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.header-utility-inner .social-btn--compact {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.header-utility-inner .social-btn--compact .social-icon-img {
  width: 14px;
  height: 14px;
}

.header-utility__line {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 20px;
  font-size: 0.8rem;
  color: #94a3b8;
}

.header-utility__region {
  font-weight: 600;
  color: #cbd5e1;
}

.header-utility__tel,
.header-utility__email {
  color: #fdba74;
  font-weight: 600;
}

.header-utility__tel,
.header-utility__email {
  transition: color 0.2s ease, opacity 0.2s ease;
}

.header-utility__tel:hover,
.header-utility__email:hover {
  color: #fff;
}

.header-main {
  position: relative;
}

.header-main-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
  min-width: 0;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.logo:hover {
  transform: scale3d(1.02, 1.02, 1);
}

.logo__mark {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 5px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.18);
}

.logo__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo__text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

/* Blog: separate from main nav pills — fixed slate chip so scroll-spy pills don’t shift this */
.header-blog-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 8px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: #e2e8f0;
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.92) 0%, rgba(15, 23, 42, 0.98) 100%);
  border: 1px solid rgba(100, 116, 139, 0.5);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
  transition: color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.header-blog-link:hover {
  color: #fff;
  border-color: rgba(148, 163, 184, 0.65);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 4px 14px rgba(0, 0, 0, 0.25);
  transform: translateY(-1px);
}

.header-blog-link:focus-visible {
  outline: 2px solid rgba(253, 186, 116, 0.9);
  outline-offset: 3px;
}

.header-blog-link--active {
  color: #ffedd5;
  background: linear-gradient(180deg, rgba(51, 65, 85, 0.95) 0%, rgba(30, 41, 59, 0.98) 100%);
  border-color: rgba(251, 146, 60, 0.45);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 0 1px rgba(234, 88, 12, 0.22);
}

.header-blog-link--active:hover {
  transform: translateY(-1px);
}

.logo__name {
  font-size: 1.08rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
  white-space: nowrap;
}

.logo__tagline {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #94a3b8;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: #fff;
  border-radius: 10px;
  padding: 8px 12px;
  cursor: pointer;
  margin-left: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px 18px;
  flex: 1;
  justify-content: flex-end;
  flex-wrap: nowrap;
}

.nav-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  display: inline-block;
  color: #cbd5e1;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 6px 2px;
  white-space: nowrap;
  border-radius: 999px;
  transition:
    color 0.2s ease,
    transform 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.nav-list a:hover {
  color: #fff;
  transform: translateY(-1px);
}

.nav-list a:focus-visible {
  outline: 2px solid rgba(253, 186, 116, 0.9);
  outline-offset: 3px;
}

.nav-list a.active {
  color: #ffedd5;
  font-weight: 700;
  text-decoration: none;
  transform: none;
  padding: 7px 14px;
  background: rgba(234, 88, 12, 0.42);
  border: 1px solid rgba(251, 146, 60, 0.55);
  box-shadow:
    0 0 0 1px rgba(234, 88, 12, 0.25),
    0 4px 14px rgba(234, 88, 12, 0.22);
}

.nav-list a.active:hover {
  color: #fff;
  background: rgba(234, 88, 12, 0.52);
  transform: none;
}

/* Social + CTA grouped at the end of the nav row */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px 20px;
  margin-left: 20px;
  flex-shrink: 0;
}

.nav .header-social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.nav .header-social a {
  font-weight: 500;
}

.social-btn--compact {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.22);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

.social-btn--compact:hover {
  transform: translateY(-2px) scale3d(1.04, 1.04, 1);
  filter: brightness(1.08);
}

.nav .social-btn--compact.social-btn--facebook:hover {
  box-shadow: 0 6px 18px rgba(24, 119, 242, 0.55);
}

.nav .social-btn--compact.social-btn--instagram:hover {
  box-shadow: 0 6px 18px rgba(225, 48, 108, 0.45);
}

.nav .social-btn--compact.social-btn--youtube:hover {
  box-shadow: 0 6px 18px rgba(255, 0, 0, 0.45);
}

.nav .social-btn--compact.social-btn--whatsapp:hover {
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.5);
}

.social-btn--compact .social-icon-img {
  width: 18px;
  height: 18px;
}

.nav-cta {
  flex-shrink: 0;
  font-size: 0.87rem;
  font-weight: 700;
  padding: 10px 18px;
  white-space: nowrap;
  transition:
    box-shadow 0.2s ease,
    transform 0.18s ease;
}

.nav-cta.nav-cta--active {
  box-shadow:
    0 4px 22px rgba(234, 88, 12, 0.55),
    0 0 0 2px rgba(253, 186, 116, 0.75),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(7, 11, 18, 0.94) 0%, rgba(15, 23, 42, 0.9) 42%, rgba(124, 45, 18, 0.52) 100%),
    url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1920&q=60") center/cover no-repeat;
  background-attachment: scroll;
  color: #fff;
  padding: 92px 0 88px;
  box-shadow: inset 0 -1px 0 rgba(234, 88, 12, 0.3);
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.4;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, #000 20%, transparent 75%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 85% 55% at 75% 15%, rgba(234, 88, 12, 0.22), transparent 55%),
    radial-gradient(ellipse 60% 45% at 10% 80%, rgba(59, 130, 246, 0.08), transparent 50%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 640px;
}

.hero-copy > * {
  opacity: 0;
  animation: hero-fade-up 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-copy > *:nth-child(1) {
  animation-delay: 0.04s;
}

.hero-copy > *:nth-child(2) {
  animation-delay: 0.1s;
}

.hero-copy > *:nth-child(3) {
  animation-delay: 0.16s;
}

.hero-copy > *:nth-child(4) {
  animation-delay: 0.22s;
}

.hero-copy > *:nth-child(5) {
  animation-delay: 0.28s;
}

.hero-copy > *:nth-child(6) {
  animation-delay: 0.34s;
}

.hero-badge-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  margin-bottom: 4px;
}

.hero-badge-row .eyebrow {
  margin: 0;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffedd5;
  background: rgba(234, 88, 12, 0.35);
  border: 1px solid rgba(251, 146, 60, 0.45);
  border-radius: 999px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  animation: hero-pill-pulse 3.2s ease-in-out infinite;
}

.hero-title {
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45), 0 1px 0 rgba(0, 0, 0, 0.2);
  color: #fff;
}

.hero .lead {
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  line-height: 1.65;
  color: #e2e8f0;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 28px 0 8px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stat {
  text-align: left;
  padding-right: 8px;
}

.hero-stat__value {
  display: block;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
  background: linear-gradient(180deg, #ffffff 0%, #fdba74 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .hero-stat__value {
    color: #fdba74;
  }
}

.hero-stat__label {
  display: block;
  margin-top: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.btn-lg {
  padding: 14px 22px;
  font-size: 1rem;
  border-radius: 12px;
}

.page-hero {
  background: linear-gradient(145deg, #ffffff 0%, #f1f5f9 55%, #e2e8f0 100%);
  padding: 56px 0 46px;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.06);
}

.page-hero h1 {
  color: var(--text-strong);
  letter-spacing: -0.03em;
}

.page-hero .page-hero-actions {
  margin: 22px 0 0;
}

.page-hero .container {
  opacity: 0;
  animation: hero-fade-up 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  align-items: start;
}

.eyebrow {
  color: #fdba74;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 700;
  margin: 0 0 12px;
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.35rem);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.03em;
}

h2 {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 3vw, 2.05rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-strong);
}

h3 {
  margin-top: 0;
  font-weight: 700;
  color: var(--text-strong);
}

.lead {
  max-width: 700px;
  color: #dbe4ef;
  margin-top: 14px;
}

.lead-dark {
  color: var(--muted);
  max-width: 720px;
  margin-top: 10px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 12px 18px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: transform 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

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

.btn-primary {
  position: relative;
  isolation: isolate;
  background: linear-gradient(180deg, #fb923c 0%, var(--primary) 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(234, 88, 12, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  clip-path: inset(0 round 10px);
  background: linear-gradient(
    105deg,
    transparent 38%,
    rgba(255, 255, 255, 0.22) 50%,
    transparent 62%
  );
  transform: translate3d(-130%, 0, 0);
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.btn-primary:hover::before {
  transform: translate3d(130%, 0, 0);
}

.btn-lg.btn-primary::before {
  clip-path: inset(0 round 12px);
}

.btn-primary:hover {
  background: linear-gradient(180deg, #f97316 0%, var(--primary-hover) 100%);
  box-shadow: 0 6px 20px rgba(234, 88, 12, 0.5);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.75);
}

.btn-small {
  padding: 9px 14px;
  font-size: 0.88rem;
}

.btn-block {
  width: 100%;
}

.trust-points {
  margin: 16px 0 0;
  padding-left: 18px;
  color: #dbe4ef;
}

.hero-checklist {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}

.hero-checklist li {
  position: relative;
  padding: 10px 0 10px 2.25rem;
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #e2e8f0;
  font-size: 0.95rem;
  font-weight: 500;
}

.hero-checklist li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.hero-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 6px;
  background: linear-gradient(145deg, #fb923c, var(--primary));
  box-shadow: 0 2px 8px rgba(234, 88, 12, 0.45);
  font-size: 0.68rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.35rem;
  text-align: center;
}

.hero-card {
  position: relative;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.06) 50%, rgba(15, 23, 42, 0.25) 100%);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: calc(var(--radius-lg) + 2px);
  padding: 26px 26px 24px;
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(14px);
  align-self: start;
  opacity: 0;
  animation: hero-fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.12s forwards;
}

.hero-card__accent {
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 4px;
  border-radius: 0 0 6px 6px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--primary), transparent);
  opacity: 0.95;
}

.hero-card__label {
  margin: 0 0 8px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fdba74;
}

.hero-card__title {
  margin: 0 0 12px;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.2;
}

.hero-card__text {
  margin: 0 0 20px;
  color: #cbd5e1;
  font-size: 0.98rem;
  line-height: 1.55;
}

.hero-card__footnote {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 14px 0 0;
  font-size: 0.8rem;
  color: #94a3b8;
}

.hero-card__dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.35);
}

.hero-card .btn-primary {
  margin-top: 4px;
}

.hero-card__bullets {
  list-style: none;
  margin: 18px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-card__bullets li {
  position: relative;
  margin: 0 0 10px;
  padding-left: 1.35rem;
  font-size: 0.82rem;
  line-height: 1.45;
  color: #cbd5e1;
}

.hero-card__bullets li:last-child {
  margin-bottom: 0;
}

.hero-card__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(145deg, #fb923c, var(--primary));
  box-shadow: 0 0 0 2px rgba(234, 88, 12, 0.25);
}

.hero-card__contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
}

.hero-card__contact a {
  color: #fdba74;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.hero-card__contact a:hover {
  color: #fff;
  text-decoration: underline;
}

.hero-card__contact-sep {
  color: rgba(148, 163, 184, 0.7);
  user-select: none;
}

.section {
  padding: 72px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  position: relative;
}

.alt {
  background: linear-gradient(180deg, rgba(241, 245, 249, 0.95) 0%, rgba(226, 232, 240, 0.85) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.section-head {
  position: relative;
  margin-bottom: 28px;
  max-width: 720px;
  padding: 18px 22px 20px 26px;
  border-radius: var(--radius);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.55) 0%,
    var(--brand-mint-soft) 48%,
    rgba(234, 88, 12, 0.06) 100%
  );
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: 0 10px 36px rgba(15, 23, 42, 0.05);
}

.section-head::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 4px;
  border-radius: 0 4px 4px 0;
  background: linear-gradient(180deg, var(--primary) 0%, var(--brand-mint) 100%);
}

.section-head h2 {
  color: var(--text-strong);
}

.section-head p {
  margin: 0;
  max-width: 52ch;
  color: var(--brand-slate);
  font-size: 1.05rem;
  opacity: 0.92;
}

.section-head h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 5px;
  border-radius: 3px;
  margin-top: 14px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 42%, var(--brand-mint-bright) 100%);
  transform: scaleX(1);
  transform-origin: left center;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.12s;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.35) inset;
}

.section-head.reveal-pending:not(.is-revealed) h2::after {
  transform: scaleX(0);
}

.section-head.reveal-pending.is-revealed h2::after {
  transform: scaleX(1);
}

/* Scroll-in (JS adds .reveal-pending / .is-revealed per section; transform + opacity only) */
.reveal-pending {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition: opacity 0.58s cubic-bezier(0.22, 1, 0.36, 1), transform 0.58s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-pending.is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.card.reveal-pending,
.gallery-item.reveal-pending,
.video-card.reveal-pending {
  transition: opacity 0.58s cubic-bezier(0.22, 1, 0.36, 1), transform 0.58s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.22s ease, border-color 0.22s ease;
}

.section .grid > .reveal-pending:nth-child(1),
.section .gallery > .reveal-pending:nth-child(1),
.section .video-grid > .reveal-pending:nth-child(1) {
  transition-delay: 0.04s;
}

.section .grid > .reveal-pending:nth-child(2),
.section .gallery > .reveal-pending:nth-child(2),
.section .video-grid > .reveal-pending:nth-child(2) {
  transition-delay: 0.1s;
}

.section .grid > .reveal-pending:nth-child(3),
.section .gallery > .reveal-pending:nth-child(3),
.section .video-grid > .reveal-pending:nth-child(3) {
  transition-delay: 0.16s;
}

.section .grid > .reveal-pending:nth-child(4),
.section .gallery > .reveal-pending:nth-child(4),
.section .video-grid > .reveal-pending:nth-child(4) {
  transition-delay: 0.22s;
}

.section .grid > .reveal-pending:nth-child(5),
.section .gallery > .reveal-pending:nth-child(5),
.section .video-grid > .reveal-pending:nth-child(5) {
  transition-delay: 0.28s;
}

.section .grid > .reveal-pending:nth-child(6),
.section .gallery > .reveal-pending:nth-child(6),
.section .video-grid > .reveal-pending:nth-child(6) {
  transition-delay: 0.34s;
}

.section .grid > .reveal-pending:nth-child(7),
.section .gallery > .reveal-pending:nth-child(7),
.section .video-grid > .reveal-pending:nth-child(7) {
  transition-delay: 0.4s;
}

.section .grid > .reveal-pending:nth-child(8),
.section .gallery > .reveal-pending:nth-child(8),
.section .video-grid > .reveal-pending:nth-child(8) {
  transition-delay: 0.46s;
}

.page-hero .eyebrow {
  color: #c2410c;
}

.grid {
  display: grid;
  gap: 16px;
}

.cards-4 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  align-items: stretch;
}

/* Equal-height cards; pin CTA rows to the bottom (matches across columns) */
.grid.cards-4 .card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.grid.cards-4 .card > p:has(.btn) {
  margin-top: auto;
  padding-top: 12px;
}

.testimonial-card .testimonial-area {
  margin: 0 0 10px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c2410c;
}

.testimonial-quote {
  margin: 0 0 14px;
  padding-left: 16px;
  border-left: 4px solid var(--primary);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text);
}

.testimonial-author {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--muted);
}

.google-reviews-steps {
  margin: 0 0 16px;
  padding-left: 22px;
  color: var(--text);
  line-height: 1.55;
}

.google-reviews-steps li {
  margin-bottom: 8px;
}

.card {
  position: relative;
  background: linear-gradient(165deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius);
  padding: 22px 22px 22px 24px;
  box-shadow: var(--shadow-card);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  border-radius: var(--radius) 0 0 var(--radius);
  background: linear-gradient(180deg, var(--accent) 0%, var(--primary) 55%, var(--brand-mint) 100%);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(234, 88, 12, 0.22);
}

.card p {
  color: var(--muted);
  margin-bottom: 0;
  font-size: 0.95rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-card);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.gallery-item img {
  height: 220px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item figcaption {
  padding: 10px 12px;
  font-weight: 600;
  font-size: 0.92rem;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 16px;
}

.video-card {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-card);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.video-card h3 {
  margin: 0;
  padding: 12px 14px 16px;
}

.video-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
}

.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.two-col {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 22px;
}

.checklist {
  padding-left: 18px;
  color: var(--muted);
}

.info-box,
.contact-card {
  background: linear-gradient(165deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-card);
}

.contact-layout {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.2fr 1fr;
  align-items: start;
}

.section--tight {
  padding: 48px 0 60px;
}

.page-hero--compact {
  padding: 44px 0 36px;
}

.contact-form {
  display: block;
  background: linear-gradient(165deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius);
  padding: 20px 20px 22px;
  box-shadow: var(--shadow-card);
}

.contact-form__lead {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}

.contact-form__field--full {
  grid-column: 1 / -1;
}

.contact-form__field label {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-strong);
}

.contact-card__dl {
  margin: 0;
  display: grid;
  gap: 12px;
}

.contact-card__dl dt {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-card__dl dd {
  margin: 2px 0 0;
  font-size: 0.95rem;
}

.contact-card__dl a {
  color: #c2410c;
  font-weight: 600;
  text-decoration: none;
}

.contact-card__dl a:hover {
  text-decoration: underline;
}

.contact-card__hours {
  margin: 16px 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
}

.contact-card__extras {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.contact-card__note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  font-size: 0.82rem;
  color: var(--muted);
}

.contact-card__dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
}

.contact-card__links {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
}

.contact-card__links a {
  color: #c2410c;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  padding: 11px;
  font: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(245, 158, 11, 0.3);
  border-color: var(--primary);
}

.small {
  color: var(--muted);
  font-size: 0.9rem;
}

.related-links {
  margin: 20px 0 0;
  padding-left: 18px;
}

.related-links li {
  margin-bottom: 6px;
}

.breadcrumbs {
  font-size: 0.9rem;
  color: var(--muted);
  padding: 14px 0 0;
}

.breadcrumbs a {
  color: #c2410c;
  font-weight: 600;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.quick-lead {
  background: linear-gradient(135deg, rgba(255, 247, 237, 0.95) 0%, rgba(254, 215, 170, 0.35) 50%, rgba(241, 245, 249, 0.9) 100%);
  border-top: 1px solid rgba(234, 88, 12, 0.12);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

/* Borough quick-quote: plain heading — avoid nested “card” on top of warm strip */
.quick-lead .section-head {
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  margin-bottom: 14px;
}

.quick-lead .section-head::before {
  display: none;
}

.quick-lead .section-head p {
  color: var(--muted);
  opacity: 1;
}

.quick-lead .section-head h2::after {
  width: 56px;
  height: 4px;
  box-shadow: none;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 50%, var(--brand-mint-bright) 100%);
}

.quick-lead-form {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(160px, 1fr));
  align-items: end;
}

.quick-lead-form .full {
  grid-column: 1 / -1;
}

.site-footer {
  background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
  color: #94a3b8;
  padding: 20px 0 calc(22px + env(safe-area-inset-bottom, 0px));
  border-top: 3px solid var(--primary);
}

.site-footer a {
  color: #fdba74;
  font-weight: 600;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.site-footer a:hover {
  color: #fff;
}

/* Slim row: © (left) · [social icons + utility link] (right), aligned like header nav-actions */
.footer-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 20px;
  padding: 6px 0 4px;
  width: 100%;
}

.footer-row > p {
  margin: 0;
  flex: 1 1 auto;
  min-width: min(100%, 260px);
  font-size: 0.88rem;
  line-height: 1.35;
}

.footer-actions {
  display: flex;
  align-items: center;
  gap: 16px 20px;
  flex-shrink: 0;
}

.footer-actions .footer-social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.site-footer .footer-social a {
  font-weight: 500;
}

/* Slightly smaller icons in the slim footer bar */
.site-footer .footer-social .social-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}

.site-footer .footer-social .social-btn:hover {
  transform: translateY(-1px);
}

.site-footer .footer-social .social-icon-img {
  width: 18px;
  height: 18px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.28);
}

.social-btn:focus-visible {
  outline: 2px solid #fdba74;
  outline-offset: 2px;
}

.social-btn--facebook {
  background: #1877f2;
}

.social-btn--instagram {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
}

.social-btn--youtube {
  background: #ff0000;
}

.social-btn--whatsapp {
  background: #25d366;
}

.social-icon-img {
  display: block;
  width: 22px;
  height: 22px;
}

@media (max-width: 920px) {
  .hero-layout,
  .two-col,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 480px;
  }
}

@media (max-width: 560px) {
  .contact-form__grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 14px 0;
    text-align: center;
  }

  .hero-stat {
    text-align: center;
    padding-right: 0;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 760px) {
  .header-utility-inner {
    justify-content: center;
  }

  .header-utility-inner > .header-social {
    display: none;
  }

  .header-utility__line {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header-blog-link {
    padding: 7px 12px;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
  }

  .logo {
    gap: 8px;
    max-width: calc(100vw - 140px);
  }

  .logo__mark {
    width: 44px;
    height: 44px;
    padding: 4px;
    border-radius: 10px;
  }

  .logo__name {
    font-size: 0.92rem;
    white-space: normal;
  }

  .logo__tagline {
    font-size: 0.58rem;
    white-space: normal;
  }

  .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--bg-soft);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    flex-direction: column;
    align-items: stretch;
    padding: 8px 4% 16px;
    gap: 0;
    flex: none;
    justify-content: flex-start;
  }

  .nav.open {
    display: flex;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }

  .nav-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-list a {
    padding: 12px 4px;
  }

  .nav-list a.active {
    padding: 12px 16px;
    margin: 6px 0;
    text-align: center;
  }

  .nav-actions {
    margin-left: 0;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding-top: 14px;
    margin-top: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav .header-social {
    justify-content: center;
    gap: 10px;
    padding: 4px 0;
  }

  .social-btn--compact {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .social-btn--compact .social-icon-img {
    width: 20px;
    height: 20px;
  }

  .nav-cta {
    margin-top: 0;
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .footer-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-row > p {
    width: 100%;
    min-width: 0;
    text-align: center;
  }

  .footer-actions {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 16px;
  }

  .footer-actions .footer-social {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-copy > *,
  .hero-card,
  .page-hero .container {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-pill {
    animation: none !important;
  }

  .logo:hover {
    transform: none !important;
  }

  .header-blog-link:hover,
  .header-blog-link--active:hover {
    transform: none !important;
  }

  .btn-primary::before {
    display: none !important;
  }

  .reveal-pending {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    transition-delay: 0s !important;
  }

  .section-head.reveal-pending:not(.is-revealed) h2::after {
    transform: scaleX(1) !important;
  }

  .gallery-item img {
    transition: none !important;
  }

  .gallery-item:hover img {
    transform: none !important;
  }

  .nav-list a {
    transition: color 0.2s ease !important;
  }

  .nav-list a:hover {
    transform: none !important;
  }

  .btn,
  .card,
  .gallery-item,
  .video-card,
  .social-btn,
  .social-btn--compact,
  .site-footer .footer-social .social-btn {
    transition: none !important;
  }

  .btn:hover,
  .card:hover,
  .gallery-item:hover,
  .video-card:hover,
  .social-btn:hover,
  .social-btn--compact:hover {
    transform: none !important;
  }

  .floating-whatsapp {
    transition: none !important;
  }

  .floating-whatsapp:hover {
    transform: none !important;
  }
}

/* Fixed WhatsApp shortcut (all pages) — sits above footer, does not overlap */
.floating-whatsapp {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(80px, calc(60px + env(safe-area-inset-bottom)));
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-whatsapp img {
  display: block;
  width: 26px;
  height: 26px;
}

.floating-whatsapp:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

.floating-whatsapp:focus-visible {
  outline: 3px solid #fdba74;
  outline-offset: 3px;
}

@media (max-width: 760px) {
  .floating-whatsapp {
    right: auto;
    left: max(16px, env(safe-area-inset-left, 0px));
    width: 48px;
    height: 48px;
    bottom: max(74px, calc(54px + env(safe-area-inset-bottom)));
  }

  .floating-whatsapp img {
    width: 24px;
    height: 24px;
  }
}

/* Exit-intent / engagement lead modal */
body.exit-lead-open {
  overflow: hidden;
}

.exit-lead-backdrop {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(16px, env(safe-area-inset-top)) max(16px, env(safe-area-inset-right))
    max(16px, env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left));
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px);
}

.exit-lead-backdrop[hidden] {
  display: none;
}

.exit-lead-dialog {
  position: relative;
  width: min(100%, 420px);
  max-height: min(90vh, 640px);
  overflow: auto;
  padding: 26px 22px 22px;
  background: linear-gradient(165deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.2);
}

.exit-lead-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: var(--muted);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.exit-lead-close:hover {
  background: rgba(15, 23, 42, 0.06);
  color: var(--text-strong);
}

.exit-lead-close:focus-visible {
  outline: 3px solid #fdba74;
  outline-offset: 2px;
}

.exit-lead-dialog h2 {
  margin: 0 36px 10px 0;
  font-size: 1.35rem;
  line-height: 1.25;
  color: var(--text-strong);
}

.exit-lead-intro {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.exit-lead-form {
  display: grid;
  gap: 10px;
}

.exit-lead-form label {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-strong);
}

.exit-lead-optional {
  font-weight: 500;
  color: var(--muted);
}

.exit-lead-form input,
.exit-lead-form textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  padding: 11px;
  font: inherit;
}

.exit-lead-form input:focus,
.exit-lead-form textarea:focus {
  outline: 2px solid rgba(245, 158, 11, 0.3);
  border-color: var(--primary);
}

.exit-lead-form textarea {
  resize: vertical;
  min-height: 72px;
}

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

.exit-lead-privacy {
  margin: 4px 0 0;
}

.exit-lead-success {
  text-align: center;
}

.exit-lead-success h2 {
  margin-right: 0;
}

.exit-lead-success p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.5;
}

@media (prefers-reduced-motion: reduce) {
  .exit-lead-backdrop {
    backdrop-filter: none;
  }
}
