@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Sora:wght@400;500;600;700&display=swap');

:root {
  --bg: #f7f1e8;
  --bg-strong: #efe4d2;
  --panel: rgba(255, 251, 244, 0.92);
  --panel-strong: #fffdf9;
  --ink: #18212c;
  --muted: #5f6672;
  --line: rgba(24, 33, 44, 0.11);
  --line-strong: rgba(24, 33, 44, 0.18);
  --brand: #f28a2f;
  --brand-dark: #d96a11;
  --teal: #0f5da8;
  --teal-soft: rgba(15, 93, 168, 0.12);
  --amber-soft: rgba(242, 138, 47, 0.14);
  --rose-soft: rgba(242, 138, 47, 0.12);
  --ink-soft: rgba(15, 93, 168, 0.09);
  --success: #1f8f58;
  --shadow: 0 18px 45px rgba(24, 33, 44, 0.12);
  --shadow-soft: 0 14px 32px rgba(24, 33, 44, 0.08);
  --radius: 22px;
  --radius-sm: 16px;
  --font: "Sora", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Playfair Display", "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(242, 138, 47, 0.12), transparent 28%),
    radial-gradient(circle at right 12%, rgba(15, 93, 168, 0.11), transparent 22%),
    linear-gradient(180deg, #fffaf3 0%, var(--bg) 52%, #f1e6d8 100%);
  line-height: 1.65;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
}

section {
  padding: 4.8rem 0;
}

.section--tight {
  padding: 4rem 0;
}

.section--contrast {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.45), rgba(239, 228, 210, 0.56));
}

.section--cta {
  padding-bottom: 5.5rem;
}

.topbar,
.urgency-bar {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  border-radius: 24px;
  overflow: hidden;
}

.topbar {
  border-bottom: 0;
}

.topbar__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 0.7rem 0;
  font-size: 0.95rem;
}

.topbar__pill {
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: transparent;
}

.urgency-bar {
  position: sticky;
  top: 0;
  z-index: 40;
  box-shadow: none;
}

.urgency-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.urgency-bar__copy {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0;
  font-size: 0.97rem;
  color: #fff;
  width: 100%;
}

.urgency-bar__copy-body {
  display: flex;
  flex-direction: column;
  gap: 0.34rem;
  min-width: 0;
  flex: 1 1 auto;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.95);
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
  animation: pulse 1.15s infinite;
  flex: 0 0 auto;
}

#topbar-message {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
}

.topbar-ticker {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  width: max-content;
  min-width: max-content;
  animation: marquee 16s linear infinite;
}

.topbar-ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding-right: 0.75rem;
  margin-right: 0.75rem;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.topbar-distance {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  width: min(320px, 100%);
}

.topbar-distance__meter {
  position: relative;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
}

.topbar-distance__meter span {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.92));
  transition: width 0.35s ease;
}

.topbar-distance__meter.is-loading span {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.96));
}

.topbar-distance__value {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.9);
}

.topbar-distance__value.is-alert {
  color: #fff6d6;
  text-shadow: 0 0 10px rgba(255, 198, 92, 0.42);
  animation: topbarAlertBlink 0.85s steps(2, end) infinite;
}

@keyframes topbarAlertBlink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.45;
  }
}

.topbar-ticker__item::before {
  content: "•";
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
}

.topbar-ticker__keyword {
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #fffefc;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.24);
  animation: topbarKeywordGlow 2.8s ease-in-out infinite;
}

.topbar-ticker__city {
  display: inline-flex;
  align-items: center;
  padding: 0.12rem 0.42rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
  color: #fffaf6;
  font-weight: 700;
  white-space: nowrap;
}

.topbar-ticker__status {
  display: inline-flex;
  align-items: center;
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: lowercase;
  white-space: nowrap;
}

.topbar-ticker__status--dispatch {
  background: rgba(251, 146, 60, 0.25);
  color: #fff4e8;
}

.topbar-ticker__status--route {
  background: rgba(251, 146, 60, 0.2);
  color: #fff3e5;
}

.topbar-ticker__status--active {
  background: rgba(16, 185, 129, 0.22);
  color: #e7fff6;
}

.topbar-ticker__status--done {
  background: rgba(34, 197, 94, 0.28);
  color: #eaffea;
}

.topbar-ticker__distance {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  white-space: nowrap;
}

@keyframes topbarKeywordGlow {
  0%,
  100% {
    opacity: 0.92;
    text-shadow: 0 0 0 rgba(255, 255, 255, 0);
  }

  50% {
    opacity: 1;
    text-shadow: 0 0 14px rgba(255, 255, 255, 0.32);
  }
}

.urgency-bar__copy .state-pride--topbar {
  margin-right: 0;
  animation: scFlagWave 1.4s ease-in-out infinite;
}

.urgency-live {
  display: inline-flex;
  align-items: center;
  padding: 0.32rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.top-seal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 0 0 1px rgba(248, 113, 113, 0.06);
}

.top-seal--combined {
  gap: 0.48rem;
  padding: 0.44rem 0.95rem;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.94);
  letter-spacing: 0.03em;
  text-transform: none;
  box-shadow: none;
}

.top-seal--searching {
  gap: 0.45rem;
}

.top-seal__icon {
  position: relative;
  width: 0.9rem;
  height: 0.9rem;
  flex: 0 0 auto;
  border: 2px solid currentColor;
  border-radius: 999px;
  opacity: 0.7;
  animation: iconRotate 0.95s linear infinite;
}

.top-seal__icon::after {
  content: "";
  position: absolute;
  right: -0.18rem;
  bottom: -0.1rem;
  width: 0.42rem;
  height: 0.12rem;
  border-radius: 999px;
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: center;
}

@keyframes scFlagWave {
  0%,
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
    filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.12));
  }
  50% {
    transform: translateY(-1px) rotate(-2deg) scale(1.03);
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.2));
  }
}

.top-seal--blink {
  animation: blinkAlert 1s ease-in-out infinite;
}

.top-seal--neon {
  border-color: rgba(255, 255, 255, 0.18);
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  box-shadow: none;
  text-shadow: none;
  animation: none;
}

.top-seal--urgent-btn {
  border-color: rgba(255, 255, 255, 0.18);
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  gap: 0.45rem;
  box-shadow: none;
  text-shadow: none;
  animation: none;
}

.top-seal__clock {
  position: relative;
  width: 0.92rem;
  height: 0.92rem;
  flex: 0 0 auto;
  border: 2px solid currentColor;
  border-radius: 999px;
  box-sizing: border-box;
  opacity: 0.72;
}

.top-seal__clock::before,
.top-seal__clock::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: currentColor;
  transform-origin: bottom center;
}

.top-seal__clock::before {
  width: 0.1rem;
  height: 0.26rem;
  transform: translate(-50%, -100%) rotate(0deg);
  animation: clockTick 0.85s linear infinite;
}

.top-seal__clock::after {
  width: 0.1rem;
  height: 0.34rem;
  transform: translate(-50%, -100%) rotate(90deg);
  animation: clockTick 1.15s linear infinite;
}

@keyframes iconRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes clockTick {
  from {
    transform: translate(-50%, -100%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -100%) rotate(360deg);
  }
}

.nav {
  position: sticky;
  top: 57px;
  z-index: 30;
  border-bottom: 0;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  backdrop-filter: none;
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.nav-progress {
  height: 3px;
  width: 100%;
  background: rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.nav-progress span {
  display: block;
  height: 100%;
  width: var(--nav-progress, 0%);
  background: linear-gradient(90deg, #f28a2f, #0f5da8, #d96a11);
  transition: width 0.12s linear;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  background: #fff;
  transition: padding 0.28s ease, border-radius 0.28s ease, background 0.28s ease;
}

.brand-cluster {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
}

.brand-top-seal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.34rem 0.68rem;
  border-radius: 999px;
  border: 1px solid rgba(251, 146, 60, 0.85);
  background: linear-gradient(130deg, rgba(255, 115, 0, 0.24), rgba(251, 146, 60, 0.18));
  color: #7c2d12;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow:
    0 0 0 1px rgba(255, 175, 88, 0.24),
    0 0 10px rgba(251, 146, 60, 0.45),
    inset 0 0 10px rgba(255, 255, 255, 0.35);
  text-shadow: 0 0 4px rgba(255, 237, 213, 0.9);
  animation: brandSealPulse 1.25s ease-in-out infinite;
  white-space: nowrap;
}

.brand-top-seal--alert {
  border-color: rgba(248, 113, 113, 0.9);
  background: linear-gradient(135deg, rgba(185, 28, 28, 0.92), rgba(239, 68, 68, 0.86));
  color: #fff5f5;
  box-shadow:
    0 0 0 1px rgba(248, 113, 113, 0.32),
    0 0 12px rgba(239, 68, 68, 0.95),
    0 0 30px rgba(185, 28, 28, 0.72),
    inset 0 0 10px rgba(255, 255, 255, 0.18);
  text-shadow: 0 0 7px rgba(255, 229, 229, 0.98);
  animation: brandAlertBlink 0.9s ease-in-out infinite;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.logo img {
  width: 78px;
  height: 78px;
  object-fit: contain;
}

.logo__copy {
  display: inline-flex;
  flex-direction: column;
  gap: 0.12rem;
}

.logo__copy strong {
  font-size: 1.08rem;
  letter-spacing: 0.02em;
}

.logo__copy small {
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.state-pride {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.75rem 0.45rem 0.45rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 22px rgba(24, 33, 44, 0.08);
  white-space: nowrap;
}

.state-pride img {
  width: 28px;
  height: 20px;
  border-radius: 6px;
  box-shadow: 0 0 0 1px rgba(24, 33, 44, 0.08);
  object-fit: cover;
}

.state-pride span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brand-dark);
}

.state-pride--topbar {
  padding: 0.34rem 0.58rem 0.34rem 0.38rem;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: none;
  flex: 0 0 auto;
}

.state-pride--topbar img {
  width: 26px;
  height: 19px;
  border-radius: 4px;
  box-shadow: none;
}

.state-pride--topbar span {
  color: #fffaf3;
  font-size: 0.72rem;
}

.state-pride--footer {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  gap: 0.45rem;
  padding: 0.08rem 0;
  background: transparent;
  border-radius: 999px;
  border: 0;
  box-shadow: none;
}

.state-pride--footer img {
  width: 24px;
  height: 20px;
  border-radius: 0;
  box-shadow: none;
  object-fit: cover;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 24'%3E%3Cpath fill='%23000' d='M14 23.2 2.7 12.2C-0.4 9.2-.2 4.3 3.1 1.7 6-.6 10.3-.2 12.8 2.7L14 4l1.2-1.3C17.7-.2 22-.6 24.9 1.7c3.3 2.6 3.5 7.5.4 10.5L14 23.2z'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 24'%3E%3Cpath fill='%23000' d='M14 23.2 2.7 12.2C-0.4 9.2-.2 4.3 3.1 1.7 6-.6 10.3-.2 12.8 2.7L14 4l1.2-1.3C17.7-.2 22-.6 24.9 1.7c3.3 2.6 3.5 7.5.4 10.5L14 23.2z'/%3E%3C/svg%3E") no-repeat center / contain;
}

@media (max-width: 720px) {
  .state-pride--footer {
    gap: 0.35rem;
    padding: 0.06rem 0;
    background: transparent;
    box-shadow: none;
  }

  .state-pride--footer img {
    width: 20px;
    height: 17px;
  }

  .state-pride--footer span {
    font-size: 0.64rem;
    letter-spacing: 0.01em;
  }
}

.nav__links,
.nav__actions,
.hero__actions,
.badges,
.tag-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.nav__links {
  font-size: 0.95rem;
  color: var(--muted);
}

.nav__links a {
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav__links a:hover {
  color: var(--ink);
  transform: translateY(-1px);
}

.home-page .nav__links {
  gap: 0.42rem;
  font-size: 0.86rem;
  color: rgba(24, 33, 44, 0.72);
}

.home-page .nav__links a {
  padding: 0;
  border-radius: 0;
  background: transparent;
  opacity: 1;
}

.home-page .nav__links a:hover {
  background: transparent;
}

.nav__links a.is-active {
  color: var(--ink);
  background: transparent;
  box-shadow: none;
}

.city-seal-wrap {
  padding: 0.9rem 0 0.2rem;
}

.city-seal-nav {
  display: flex;
  flex-direction: column;
  gap: 0.62rem;
}

.city-seal-nav--page {
  gap: 0.42rem;
}

.city-seal-nav__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  color: var(--brand-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.city-seal-nav__eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(15, 93, 168, 0.1);
}

.city-seal-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.city-seal-nav--page .city-seal-nav__list {
  justify-content: center;
  gap: 0.46rem;
}

.city-seal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.25rem;
  padding: 0.16rem;
  border-radius: 14px;
  border: 1px solid rgba(15, 93, 168, 0.18);
  background: linear-gradient(180deg, rgba(15, 93, 168, 0.12), rgba(15, 93, 168, 0.05));
  color: var(--brand-dark);
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(10, 58, 104, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.city-seal:hover,
.city-seal:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(242, 138, 47, 0.38);
  background: linear-gradient(180deg, rgba(15, 93, 168, 0.16), rgba(15, 93, 168, 0.08));
  box-shadow: 0 14px 24px rgba(10, 58, 104, 0.1);
}

.city-seal__flag {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 0.08rem;
  border-radius: 11px;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
  line-height: 0;
}

.city-seal__flag img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  filter: none;
}

.city-seal__label {
  display: none;
}

.city-seal.is-active,
.city-seal[aria-current='page'] {
  background: #0f5da8;
  border-color: #0f5da8;
  color: #fff;
  box-shadow: 0 14px 24px rgba(15, 93, 168, 0.16);
}

.city-seal.is-active .city-seal__flag,
.city-seal[aria-current='page'] .city-seal__flag {
  background: rgba(255, 255, 255, 0.08);
}

.city-seal-nav--compact .city-seal {
  width: 2.46rem;
  height: 2.08rem;
}

.city-seal-nav--page .city-seal {
  width: 2.72rem;
  height: 2.72rem;
  padding: 0.12rem;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 20px rgba(10, 58, 104, 0.08);
}

.city-seal-nav--page .city-seal__flag {
  padding: 0.09rem;
  border-radius: 11px;
}

.city-seal-nav--compact .city-seal__flag {
  padding: 0.06rem;
}

.nav__insights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 0 0 0.85rem;
}

.nav-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.32rem 0.66rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.58);
  color: #223240;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: 0 8px 18px rgba(19, 32, 51, 0.06);
  animation: navChipFloat 3.8s ease-in-out infinite;
}

.nav-chip:nth-child(2) {
  animation-delay: 0.35s;
}

.nav-chip:nth-child(3) {
  animation-delay: 0.7s;
}

body.is-scrolled .nav {
  background: #fff;
  box-shadow: none;
}

body.is-scrolled .nav__inner {
  padding-top: 0.72rem;
  padding-bottom: 0.72rem;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 50px;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 600;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: #fffaf3;
  background: linear-gradient(140deg, var(--brand), var(--brand-dark));
  box-shadow: 0 18px 32px rgba(217, 106, 17, 0.22);
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.28) 48%, transparent 58%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}

.btn-primary:hover::after {
  transform: translateX(120%);
}

.btn-ghost {
  border-color: rgba(15, 93, 168, 0.22);
  background: rgba(15, 93, 168, 0.08);
  color: #0f5da8;
}

.btn-ghost:hover {
  border-color: rgba(242, 138, 47, 0.34);
  background: rgba(15, 93, 168, 0.14);
}

.btn-block {
  width: 100%;
}

.faq-whatsapp-cta {
  display: flex;
  width: fit-content;
  margin: 0 auto 1.35rem;
  color: #fffaf3;
  background: var(--brand);
  box-shadow: 0 18px 32px rgba(217, 106, 17, 0.22);
}

.faq-whatsapp-cta:hover {
  background: var(--brand-dark);
  box-shadow: 0 20px 36px rgba(217, 106, 17, 0.28);
}

.faq-whatsapp-cta__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  flex: 0 0 auto;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  animation: faqWhatsappDotPulse 1.05s ease-in-out infinite;
}

.card,
.faq-item,
.metric,
.audience-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
}

.card {
  padding: 1.55rem;
}

.card-grid,
.pain-grid,
.service-grid,
.city-grid,
.audience-grid,
.faq-grid,
.split-grid {
  display: grid;
  gap: 1.1rem;
}

.card-grid.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-mirror {
  margin-top: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
  padding: 1rem;
}

.blog-mirror__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  margin-bottom: 0.8rem;
}

.blog-mirror__head strong {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 1.02rem;
}

.blog-live-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #f28a2f;
  box-shadow: 0 0 0 0 rgba(242, 138, 47, 0.7);
  animation: blogLivePulse 1.3s ease-out infinite;
  flex: 0 0 auto;
}

.text-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #d86510;
  font-size: 0.9em;
  font-weight: 900;
  line-height: 1;
  vertical-align: middle;
  flex: 0 0 auto;
}

.text-marker {
  display: inline;
  padding: 0;
  color: #7a3d05;
  font-size: inherit;
  font-weight: 800;
  line-height: 1.15;
  text-transform: none;
  vertical-align: middle;
  background: linear-gradient(transparent 64%, rgba(242, 138, 47, 0.24) 64%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.text-marker--orange {
  color: #7a3d05;
}

.blog-mirror__head span {
  color: var(--muted);
  font-size: 0.88rem;
}

.blog-mirror__focus {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 93, 168, 0.26);
  background: linear-gradient(135deg, rgba(242, 138, 47, 0.12), rgba(255, 255, 255, 0.86));
  color: #0f5da8;
  font-weight: 700;
}

.blog-mirror-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.blog-mirror-card {
  position: relative;
  text-decoration: none;
  color: inherit;
  padding: 0.7rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  overflow: hidden;
}

.blog-mirror-card:hover {
  transform: translateY(-3px);
  border-color: rgba(199, 100, 39, 0.28);
  box-shadow: 0 16px 28px rgba(19, 26, 35, 0.12);
}

.blog-mirror-card::after {
  content: none;
}

.blog-mirror-card img {
  width: 100%;
  height: 132px;
  object-fit: cover;
  border-radius: 12px;
}

.blog-mirror-card small {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  color: var(--brand-dark);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-mirror-card .text-check,
.blog-index-card .text-check {
  margin-right: 0.1rem;
}

.blog-refresh {
  display: inline-block;
  font-size: 0.9rem;
  line-height: 1;
  animation: blogRefreshSpin 1.2s linear infinite;
}

.live-fire {
  display: inline-block;
  margin-right: 0.32rem;
  filter: drop-shadow(0 0 4px rgba(249, 115, 22, 0.7));
  transform-origin: center bottom;
  animation: liveFireFlicker 1s ease-in-out infinite;
}

.blog-mirror-card h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.32;
}

.blog-mirror__status {
  margin: 0.8rem 0 0;
  font-size: 0.8rem;
  color: var(--muted);
}

@keyframes blogLivePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(242, 138, 47, 0.72);
    transform: scale(1);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(242, 138, 47, 0);
    transform: scale(1.08);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(242, 138, 47, 0);
    transform: scale(1);
  }
}

@keyframes blogRefreshSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes liveFireFlicker {
  0%,
  100% {
    transform: scale(1) rotate(-2deg);
    filter: drop-shadow(0 0 4px rgba(249, 115, 22, 0.7));
  }
  50% {
    transform: scale(1.12) rotate(2deg);
    filter: drop-shadow(0 0 8px rgba(239, 68, 68, 0.75));
  }
}

@keyframes navChipFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}


.hero {
  position: relative;
  padding-top: 4.4rem;
  padding-bottom: 3.4rem;
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.55;
  pointer-events: none;
}

.hero__glow--one {
  width: 340px;
  height: 340px;
  top: -100px;
  left: -80px;
  background: radial-gradient(circle, rgba(242, 138, 47, 0.28), transparent 68%);
  animation: float 8s ease-in-out infinite;
}

.hero__glow--two {
  width: 320px;
  height: 320px;
  right: -90px;
  top: 40px;
  background: radial-gradient(circle, rgba(15, 93, 168, 0.24), transparent 65%);
  animation: float 10s ease-in-out infinite reverse;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 1.35rem;
  align-items: start;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--brand-dark);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 700;
}

.eyebrow--blue-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(15, 93, 168, 0.96), rgba(10, 66, 120, 0.96));
  color: #fff;
  letter-spacing: 0.08em;
  box-shadow: 0 10px 22px rgba(15, 93, 168, 0.22), 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.eyebrow--flagged {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--brand);
  box-shadow: none;
  letter-spacing: 0.08em;
}

.eyebrow--flagged::after {
  content: none;
}

.eyebrow--principal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin-bottom: 0.95rem;
  color: var(--brand-dark);
  letter-spacing: 0.04em;
  text-transform: none;
}

.eyebrow--principal::after {
  content: none;
}

.eyebrow__principal-copy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.eyebrow__principal-copy strong {
  color: var(--brand-dark);
  font-weight: 900;
}

.eyebrow__flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 16px;
  flex: 0 0 auto;
  animation: scFlagWave 1.4s ease-in-out infinite;
}

.eyebrow__flag img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.eyebrow--section.eyebrow--blue-chip {
  margin-bottom: 0.85rem;
  background: linear-gradient(135deg, rgba(15, 93, 168, 0.96), rgba(10, 66, 120, 0.96));
  color: #fff;
}

.eyebrow--blue-chip::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 0.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3);
  animation: blueChipPulse 1.2s ease-in-out infinite;
}

@keyframes blueChipPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}

@keyframes badgeFloat {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 12px 28px rgba(24, 33, 44, 0.06);
  }

  50% {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(24, 33, 44, 0.09);
  }
}

.eyebrow--section {
  margin-bottom: 0.7rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 0.92rem;
  border-radius: 999px;
  border: 1px solid rgba(24, 33, 44, 0.08);
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 12px 28px rgba(24, 33, 44, 0.06);
  animation: badgeFloat 3.6s ease-in-out infinite;
}

.badge__icon,
.icon-shell {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

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

.badge__icon svg,
.icon-shell svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.hero h1,
.section h2,
.cta-panel h2,
.detail-card h2,
.hero-panel h2 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
}

.lead,
.sub,
.service-card p,
.pain-card p,
.city-card span,
.cta-panel p,
.detail-card p,
.hero-panel p {
  color: var(--muted);
}

.lead {
  margin: 0;
  font-size: 1rem;
}

.lead--large {
  margin-top: 1.25rem;
  max-width: 60ch;
  font-size: 1.06rem;
}

.hero__actions {
  margin-top: 1.7rem;
}

.hero__actions--center {
  justify-content: center;
}

.metric-strip {
  margin-top: 1.7rem;
}

.metric {
  padding: 1rem 1.1rem;
  text-align: left;
  animation: metricFloat 4.4s ease-in-out infinite;
}

.metric strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.metric span {
  font-size: 0.92rem;
  color: var(--muted);
}

.metric--counter {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: min(100%, 440px);
  padding: 1.18rem 1.22rem 1.12rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.42rem;
  text-align: center !important;
  border: 1px solid rgba(15, 93, 168, 0.14);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(251, 245, 236, 0.94));
  box-shadow:
    0 18px 38px rgba(24, 33, 44, 0.09),
    inset 0 0 0 1px rgba(255, 255, 255, 0.42);
}

.metric--counter::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 22%, rgba(15, 93, 168, 0.12), transparent 36%),
    radial-gradient(circle at 88% 16%, rgba(242, 138, 47, 0.12), transparent 32%);
  pointer-events: none;
}

.metric--counter::after {
  content: "";
  position: absolute;
  inset: -35% -20%;
  background: linear-gradient(120deg, transparent 40%, rgba(255, 255, 255, 0.72) 50%, transparent 60%);
  transform: translateX(-82%) rotate(8deg);
  animation: metricCounterShine 5.2s ease-in-out infinite;
  pointer-events: none;
}

.metric--counter > * {
  position: relative;
  z-index: 1;
}

.metric__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 93, 168, 0.16);
  background: rgba(255, 255, 255, 0.76);
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(24, 33, 44, 0.05);
}

.metric__chip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  color: currentColor;
}

.metric__chip-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.metric--counter .metric__value {
  margin: 0;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.08rem;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 3.55rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: var(--brand-dark);
}

.metric__plus {
  color: var(--brand);
  font-size: 0.76em;
}

.metric__number {
  display: inline-block;
  min-width: 2ch;
}

.metric--counter .metric__label {
  margin: 0;
  max-width: 26ch;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
}

.metric__sparkline {
  display: inline-flex;
  width: min(100%, 240px);
  margin-top: 0.08rem;
}

.metric__sparkline svg {
  width: 100%;
  height: 18px;
  overflow: visible;
}

.metric__sparkline-track {
  fill: none;
  stroke: rgba(15, 93, 168, 0.16);
  stroke-width: 1.4;
  stroke-linecap: round;
}

.metric__sparkline-line {
  fill: none;
  stroke: var(--teal);
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 72;
  stroke-dashoffset: 72;
  animation: metricSparkTrace 3s ease-in-out infinite;
}

.metric__sparkline-dot {
  fill: var(--brand);
  transform-box: fill-box;
  transform-origin: center;
  animation: metricSparkPulse 1.8s ease-in-out infinite;
}

.metric-strip .metric:nth-child(2) {
  animation-delay: 0.35s;
}

.metric-strip .metric:nth-child(3) {
  animation-delay: 0.7s;
}

@keyframes metricFloat {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: none;
  }

  50% {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(24, 33, 44, 0.06);
  }
}

@keyframes metricCounterShine {
  0%,
  42% {
    transform: translateX(-82%) rotate(8deg);
    opacity: 0;
  }

  55% {
    opacity: 0.95;
  }

  100% {
    transform: translateX(82%) rotate(8deg);
    opacity: 0;
  }
}

@keyframes metricSparkTrace {
  0%,
  18% {
    stroke-dashoffset: 72;
    opacity: 0.65;
  }

  58% {
    stroke-dashoffset: 0;
    opacity: 1;
  }

  100% {
    stroke-dashoffset: 0;
    opacity: 0.9;
  }
}

@keyframes metricSparkPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.18);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .metric--counter,
  .metric--counter::after,
  .metric__sparkline-line,
  .metric__sparkline-dot {
    animation: none !important;
  }
}

.hero-badges--focus .badge:nth-child(2) {
  animation-delay: 0.25s;
}

.hero-badges--focus .badge:nth-child(3) {
  animation-delay: 0.5s;
}

.hero-panel {
  position: relative;
  padding: 1.7rem;
  background:
    linear-gradient(180deg, rgba(242, 138, 47, 0.98), rgba(216, 95, 16, 0.96)),
    var(--panel);
}

.panel-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.48rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--brand-dark);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08), 0 0 18px rgba(255, 255, 255, 0.14);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: orangeGlowPulse 1.35s ease-in-out infinite;
}

.check-list,
.info-list {
  list-style: none;
  padding: 0;
  margin: 1.3rem 0 0;
  display: grid;
  gap: 0.95rem;
}

.check-list li,
.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.check-list strong,
.step-list strong,
.audience-card strong,
.city-card strong,
.service-card h3,
.pain-card h3 {
  display: block;
  margin-bottom: 0.28rem;
}

.check-list p,
.info-list li,
.step-list span {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.icon-shell {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  padding: 0.8rem;
}

.icon-shell--amber {
  background: var(--amber-soft);
  color: #d96a11;
}

.icon-shell--teal {
  background: var(--teal-soft);
  color: var(--teal);
}

.icon-shell--blue {
  background: rgba(15, 93, 168, 0.12);
  color: var(--teal);
}

.icon-shell--ink {
  background: var(--ink-soft);
  color: #0f5da8;
}

.icon-shell--rose {
  background: var(--rose-soft);
  color: #f28a2f;
}

.callout {
  margin-top: 1.3rem;
  padding: 1rem 1.05rem 1rem 1.2rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(15, 93, 168, 0.18);
  background: #fff;
  color: #1f3341;
  box-shadow:
    0 16px 28px rgba(10, 58, 104, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.86);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.callout:hover {
  transform: translateY(-1px);
  box-shadow:
    0 18px 34px rgba(10, 58, 104, 0.11),
    inset 0 0 0 1px rgba(255, 255, 255, 0.92);
}

.callout::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, #1f8fe8 0%, #0f5da8 58%, #0a467f 100%);
}

.callout::after {
  content: "";
  position: absolute;
  top: 0.95rem;
  right: 0.95rem;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 0 8px rgba(242, 138, 47, 0.14);
}

.callout strong {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--brand-dark);
}

.callout strong::before {
  content: "";
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(242, 138, 47, 0.16);
  flex: 0 0 auto;
}

.callout p {
  margin: 0.4rem 0 0;
  color: #234866;
}

.callout-note {
  display: block;
  margin-top: 0.85rem;
  padding: 0.9rem 1rem 0.9rem 1.15rem;
  border-radius: 18px;
  border: 1px solid rgba(242, 138, 47, 0.24);
  background: #fff;
  color: #1f3341;
  font-weight: 700;
  line-height: 1.5;
  box-shadow:
    0 14px 26px rgba(18, 28, 41, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.82) inset;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.callout-note:hover {
  transform: translateY(-1px);
  box-shadow:
    0 16px 28px rgba(18, 28, 41, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.92) inset;
}

.callout-note::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, #1f8fe8 0%, #0f5da8 58%, #0a467f 100%);
}

.callout-note::after {
  content: "";
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 0 8px rgba(15, 93, 168, 0.12);
}

.search-strip {
  padding: 1rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(135deg, #0f5da8, #0a467f);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), inset 0 -1px 0 rgba(0, 0, 0, 0.12);
}

.search-strip__track {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  width: max-content;
  min-width: 100%;
  animation: marquee 24s linear infinite;
}

.search-strip__track span {
  padding: 0.6rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #0f2f55;
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 10px 18px rgba(10, 58, 104, 0.16);
}

.section-head {
  max-width: 760px;
  margin-bottom: 1.7rem;
}

.home-page .hero__grid {
  grid-template-columns: minmax(0, 1fr);
  max-width: 980px;
  margin: 0 auto;
}

.home-page .hero__content,
.home-page .hero-panel,
.home-page .section-head,
.home-page .detail-card,
.home-page .pain-card,
.home-page .service-card,
.home-page .city-card,
.home-page .audience-card,
.home-page .faq-item {
  text-align: center;
}

.home-page .hero__content,
.home-page .section-head {
  margin-left: auto;
  margin-right: auto;
}

.home-page .hero__content .lead--large,
.home-page .section-head .sub,
.home-page .detail-card p,
.home-page .pain-card p,
.home-page .service-card p {
  margin-left: auto;
  margin-right: auto;
}

.home-page .badges,
.home-page .hero__actions,
.home-page .nav__links {
  justify-content: center;
}

.home-page .hero-panel,
.home-page .detail-card,
.home-page .faq-item {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.home-page .metric-strip,
.home-page .check-list,
.home-page .info-list,
.home-page .step-list {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.home-page .check-list,
.home-page .info-list,
.home-page .step-list,
.home-page .faq-item p {
  text-align: left;
}

.home-page .service-card__chips,
.home-page .tag-row {
  justify-content: center;
}

.home-page .link-inline {
  margin-left: auto;
  margin-right: auto;
}

.home-page .city-card {
  max-width: none;
}

.home-page .city-grid .city-card strong {
  color: var(--brand-dark);
}

.home-page .city-seal-nav--compact {
  gap: 0.72rem;
}

.home-page .city-seal-nav--compact .city-seal-nav__list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.7rem 0.85rem;
  justify-items: center;
  align-items: start;
}

.home-page .city-seal-nav--compact .city-seal {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  min-height: 0;
  padding: 0.1rem 0.1rem 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  gap: 0.42rem;
  text-align: center;
}

.home-page .city-seal-nav--compact .city-seal:hover,
.home-page .city-seal-nav--compact .city-seal:focus-visible {
  background: transparent;
  transform: translateY(-1px);
}

.home-page .city-seal-nav--compact .city-seal__flag {
  width: 4.15rem;
  height: 3.25rem;
  padding: 0.1rem;
  border-radius: 15px;
  background: #fff;
  border: 1px solid rgba(15, 93, 168, 0.12);
  box-shadow: 0 10px 18px rgba(10, 58, 104, 0.08);
}

.home-page .city-seal-nav--compact .city-seal__flag img {
  width: 100%;
  height: 100%;
}

.home-page .city-seal-nav--compact .city-seal__label {
  display: block;
  margin-top: 0;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  color: var(--brand-dark);
  max-width: 7.2rem;
}

.home-page .city-seal-nav--compact .city-seal.is-active,
.home-page .city-seal-nav--compact .city-seal[aria-current='page'] {
  background: transparent;
  border-color: transparent;
  color: var(--brand-dark);
  box-shadow: none;
}

.home-page .city-seal-nav--compact .city-seal.is-active .city-seal__label,
.home-page .city-seal-nav--compact .city-seal[aria-current='page'] .city-seal__label {
  color: var(--brand);
}

.home-page .city-seal-nav--compact .city-seal.is-active .city-seal__flag,
.home-page .city-seal-nav--compact .city-seal[aria-current='page'] .city-seal__flag {
  border-color: rgba(15, 93, 168, 0.28);
  box-shadow: 0 12px 22px rgba(15, 93, 168, 0.12);
}

#cidades .section-head {
  width: 100%;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.45rem;
  text-align: center;
}

#cidades .section-head h2 {
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}

#cidades .section-head .sub {
  max-width: 62ch;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}

#cidades .section-head .sub--reference {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  max-width: 70ch;
}

#cidades .section-head .sub--reference .sub__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.38rem 0.82rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 93, 168, 0.16);
  background: rgba(15, 93, 168, 0.1);
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 8px 16px rgba(10, 58, 104, 0.06);
}

#cidades .section-head .sub--reference .sub__badge--metric {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.18rem 0.42rem;
  max-width: 100%;
  white-space: normal;
  text-transform: none;
  letter-spacing: 0.03em;
  line-height: 1.2;
  text-wrap: balance;
}

#cidades .section-head .sub--reference .sub__metric-sign,
#cidades .section-head .sub--reference .sub__metric-value,
#cidades .section-head .sub--reference .sub__metric-label {
  display: inline-block;
}

#cidades .section-head .sub--reference .sub__metric-value {
  font-size: 1.12rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

#cidades .section-head .sub--reference .sub__metric-sign {
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
}

#cidades .section-head .sub--reference .sub__metric-label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: none;
}

#cidades .section-head .sub--reference .sub__text {
  max-width: 64ch;
  text-wrap: balance;
}

#cidades .city-seal-nav--compact {
  width: 100%;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

#cidades .city-seal-nav--compact .city-seal-nav__list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.65rem, 1.35vw, 1.05rem);
  justify-items: center;
  align-items: stretch;
}

#cidades .city-seal-nav--compact .city-seal {
  width: 100%;
  height: 100%;
  min-height: 5.45rem;
}

#cidades .city-seal-nav--compact .city-seal__flag {
  width: clamp(4rem, 4.25vw, 4.7rem);
  height: auto;
  aspect-ratio: 4 / 3;
}

#cidades .city-seal-nav--compact .city-seal__label {
  max-width: 8.6rem;
  line-height: 1.15;
}

#cidades .city-seal-nav--compact .city-seal:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}

#cidades .city-seal-nav--compact .city-seal:nth-child(2) {
  grid-column: 3;
  grid-row: 1;
}

#cidades .city-seal-nav--compact .city-seal:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
}

#cidades .city-seal-nav--compact .city-seal:nth-child(4) {
  grid-column: 1;
  grid-row: 3;
}

#cidades .city-seal-nav--compact .city-seal:nth-child(5) {
  grid-column: 3;
  grid-row: 3;
}

@media (max-width: 980px) {
  .home-page .city-seal-nav--compact .city-seal-nav__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .city-seal-nav--page .city-seal-nav__list {
    gap: 0.42rem;
  }

  #cidades .section-head {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .home-page .city-seal-nav--compact .city-seal-nav__list {
    gap: 0.7rem;
  }

  .home-page .city-seal-nav--compact .city-seal__flag {
    width: 3.6rem;
    height: 2.82rem;
  }

  .home-page .city-seal-nav--compact .city-seal__label {
    font-size: 0.78rem;
  }

  #cidades .city-seal-nav--compact .city-seal-nav__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.72rem;
  }

  #cidades .city-seal-nav--compact .city-seal {
    min-height: 5.15rem;
  }

  #cidades .city-seal-nav--compact .city-seal__flag {
    width: clamp(3.45rem, 14.5vw, 4rem);
  }

  #cidades .city-seal-nav--compact .city-seal__label {
    font-size: 0.78rem;
    max-width: 7.4rem;
  }

  #cidades .city-seal-nav--compact .city-seal:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }

  #cidades .city-seal-nav--compact .city-seal:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }

  #cidades .city-seal-nav--compact .city-seal:nth-child(3) {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: center;
    width: min(100%, 14rem);
  }

  #cidades .city-seal-nav--compact .city-seal:nth-child(4) {
    grid-column: 1;
    grid-row: 3;
  }

  #cidades .city-seal-nav--compact .city-seal:nth-child(5) {
    grid-column: 2;
    grid-row: 3;
  }

  .city-seal-nav--page .city-seal {
    width: 2.42rem;
    height: 2.42rem;
  }
}

.city-card--link {
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  --city-accent: var(--teal);
  --city-accent-soft: rgba(15, 93, 168, 0.12);
  --service-accent: var(--city-accent);
}

.city-card--link::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--city-accent), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.home-page #cidades .city-card {
  background: #fff;
  border-color: rgba(15, 93, 168, 0.14);
  box-shadow: 0 18px 36px rgba(10, 58, 104, 0.08);
}

.home-page #cidades .city-card--link::before {
  background: var(--city-accent);
}

.home-page #cidades .city-card--blue {
  --city-accent: var(--teal);
  --city-accent-soft: rgba(15, 93, 168, 0.12);
  border-color: rgba(15, 93, 168, 0.18);
  box-shadow: 0 18px 36px rgba(15, 93, 168, 0.08);
}

.home-page #cidades .city-card--orange {
  --city-accent: var(--brand);
  --city-accent-soft: rgba(242, 138, 47, 0.14);
  border-color: rgba(242, 138, 47, 0.18);
  box-shadow: 0 18px 36px rgba(242, 138, 47, 0.08);
}

.home-page #cidades .city-card:hover {
  background: #fff;
  border-color: var(--city-accent);
}

.home-page #cidades .city-card__header {
  display: flex;
  align-items: center;
  gap: 0.72rem;
}

.home-page #cidades .city-card__flag-shell {
  position: relative;
  flex: 0 0 auto;
  width: 3.2rem;
  height: 2.7rem;
  display: grid;
  place-items: center;
  padding: 0.2rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(15, 93, 168, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.92), 0 10px 20px rgba(10, 58, 104, 0.08);
  overflow: hidden;
}

.home-page #cidades .city-card__flag-shell::after {
  content: "";
  position: absolute;
  inset: 0.18rem;
  border-radius: 11px;
  background: transparent;
  box-shadow: inset 0 0 0 1px rgba(242, 138, 47, 0.14);
}

.home-page #cidades .city-card__flag-shell img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
}

.home-page #cidades .city-card__header-copy {
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
  min-width: 0;
}

.home-page #cidades .city-card__eyebrow {
  background: #fff;
  border: 1px solid var(--city-accent-soft);
  color: var(--city-accent);
  box-shadow: 0 8px 18px rgba(10, 58, 104, 0.05);
}

.home-page #cidades .city-card__kicker {
  color: var(--brand-dark);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.home-page #cidades .city-card strong {
  color: var(--brand-dark);
  font-size: 1.36rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.home-page #cidades .city-card__summary {
  color: #234866;
  font-size: 0.96rem;
  line-height: 1.58;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 4.5em;
}

.home-page #cidades .city-card__facts {
  gap: 0.55rem;
}

.home-page #cidades .city-card__facts li {
  padding: 0.75rem 0.82rem;
  border-radius: 16px;
  border: 1px solid var(--city-accent-soft);
  background: var(--city-accent-soft);
  color: #1f4261;
  box-shadow: 0 8px 18px rgba(10, 58, 104, 0.04);
}

.home-page #cidades .city-card__facts li::before {
  margin-top: 0.08rem;
}

.home-page #cidades .city-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: auto;
  width: fit-content;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: var(--city-accent);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(10, 58, 104, 0.16);
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.home-page #cidades .city-card__link::after {
  content: ">";
  font-weight: 800;
  line-height: 1;
}

.home-page #cidades .city-card:hover .city-card__link {
  box-shadow: 0 14px 28px rgba(10, 58, 104, 0.18);
}

.home-page #cidades .city-card__link:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.city-card--teal {
  --city-accent: var(--teal);
  --city-accent-soft: rgba(15, 93, 168, 0.12);
}

.city-card--amber {
  --city-accent: var(--brand);
  --city-accent-soft: rgba(242, 138, 47, 0.14);
}

.city-card--ink {
  --city-accent: #1f3d57;
  --city-accent-soft: rgba(31, 61, 87, 0.12);
}

.city-card--rose {
  --city-accent: #d86510;
  --city-accent-soft: rgba(216, 101, 16, 0.12);
}

.city-card--green {
  --city-accent: #18a957;
  --city-accent-soft: rgba(24, 169, 87, 0.12);
}

.city-card__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  width: fit-content;
  padding: 0.34rem 0.62rem;
  border-radius: 999px;
  background: var(--city-accent-soft);
  color: var(--city-accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.city-card__eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--city-accent);
  flex: 0 0 auto;
}

.city-card__summary {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.city-card__facts {
  list-style: none;
  padding: 0;
  margin: 0.05rem 0 0;
  display: grid;
  gap: 0.48rem;
}

.city-card__facts li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  color: #203244;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.45;
}

.city-card__facts li::before {
  content: "\2713";
  color: var(--city-accent);
  font-weight: 800;
  line-height: 1;
  flex: 0 0 auto;
  margin-top: 0.05rem;
}

.city-card__link {
  color: var(--city-accent);
  font-weight: 700;
}

.city-card__link:hover {
  opacity: 0.82;
}

.section h2,
.detail-card h2,
.cta-panel h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.sub {
  margin: 0.75rem 0 0;
  font-size: 1rem;
}

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

.pain-card,
.service-card,
.city-card,
.detail-card {
  height: 100%;
}

.pain-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pain-card h3,
.service-card h3,
.city-card strong {
  font-size: 1.1rem;
}

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

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow: hidden;
  --service-accent: var(--teal);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.service-card p {
  margin: 0;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--service-accent);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(242, 138, 47, 0.2);
  box-shadow: 0 22px 36px rgba(24, 33, 44, 0.12);
}

.service-card--teal:hover,
.service-card--ink:hover {
  border-color: rgba(15, 93, 168, 0.24);
}

.service-card--amber:hover,
.service-card--rose:hover {
  border-color: rgba(242, 138, 47, 0.24);
}

.service-card .icon-shell {
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.service-card:hover .icon-shell {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 16px 28px rgba(24, 33, 44, 0.12);
}

.service-card__scope {
  display: block;
  margin: -0.2rem 0 0;
  color: var(--ink);
  font-size: 0.9rem;
}

#servicos .service-card h3 {
  color: var(--service-accent);
}

.service-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.service-card__chips span {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(24, 33, 44, 0.08);
  background: rgba(255, 255, 255, 0.84);
  color: var(--service-accent);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

#servicos .service-card--teal .service-card__chips span,
#servicos .service-card--ink .service-card__chips span {
  background: rgba(15, 93, 168, 0.08);
  border-color: rgba(15, 93, 168, 0.14);
}

#servicos .service-card--amber .service-card__chips span,
#servicos .service-card--rose .service-card__chips span {
  background: rgba(242, 138, 47, 0.08);
  border-color: rgba(242, 138, 47, 0.14);
}

.service-card--teal {
  --service-accent: var(--teal);
}

.service-card--amber {
  --service-accent: var(--brand);
}

.service-card--ink {
  --service-accent: var(--teal);
}

.service-card--rose {
  --service-accent: var(--brand);
}

.link-inline {
  margin-top: auto;
  color: var(--service-accent);
  font-weight: 600;
}

.link-inline:hover {
  color: var(--service-accent);
  opacity: 0.82;
}

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

.split-grid--balanced {
  align-items: start;
}

.proof-card strong {
  margin: 0;
  font-size: 1.18rem;
}

.proof-card p {
  margin: 0.8rem 0 0;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.proof-card {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  height: 100%;
}

.proof-person {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.55rem;
}

.proof-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  overflow: hidden;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  box-shadow: 0 12px 24px rgba(24, 33, 44, 0.12);
  flex: 0 0 auto;
}

.proof-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.proof-avatar--amber {
  background: linear-gradient(135deg, #7bb8ef, #0f5da8);
  color: #fffaf3;
}

.proof-avatar--teal {
  background: linear-gradient(135deg, #dbeafe, #0f5da8);
  color: #f7fbff;
}

.proof-avatar--ink {
  background: linear-gradient(135deg, #dbeafe, #0b477f);
  color: #ffffff;
}

.proof-avatar--rose {
  background: linear-gradient(135deg, #f8c89c, #f28a2f);
  color: #fffaf3;
}

.proof-avatar--soft {
  background: linear-gradient(135deg, #fffaf3, #dbeafe);
  color: var(--brand-dark);
}

.proof-person__meta {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}

.proof-person__meta strong {
  margin: 0;
  font-size: 1rem;
}

.proof-person__meta span {
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 500;
}

.proof-card__service {
  margin: 0;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-card__stars {
  color: #b45309;
  font-size: 1.1rem;
  letter-spacing: 0.18em;
}

.proof-card span {
  margin-top: auto;
  padding-top: 0.9rem;
  color: var(--brand-dark);
  font-size: 0.88rem;
  font-weight: 700;
}

.proof-card--summary {
  background:
    radial-gradient(circle at top right, rgba(15, 93, 168, 0.12), transparent 42%),
    var(--panel);
}

.proof-list {
  margin-top: 1rem;
}

.detail-card {
  padding: 1.7rem;
}

.audience-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.4rem;
}

.audience-card {
  padding: 1rem;
}

.audience-card span {
  display: block;
  color: var(--muted);
  font-size: 0.93rem;
}

.step-list {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 0;
  display: grid;
  gap: 0.9rem;
}

.step-list li {
  padding: 1rem 1rem 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(24, 33, 44, 0.08);
}

.home-page .step-list.step-list--timeline {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.home-page .step-list.step-list--timeline li {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
  padding: 1rem 1rem 1.05rem;
  overflow: hidden;
  border-radius: 22px;
  border-color: rgba(15, 93, 168, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 249, 253, 0.92));
  box-shadow: 0 12px 24px rgba(18, 28, 41, 0.07);
}

.home-page .step-list.step-list--timeline li::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.75rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(15, 93, 168, 0.22), rgba(242, 138, 47, 0.22));
  opacity: 0.72;
}

.home-page .step-list__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(15, 93, 168, 0.98), rgba(11, 71, 127, 0.98));
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  box-shadow: 0 12px 22px rgba(15, 93, 168, 0.2);
  flex: 0 0 auto;
}

.home-page .step-list__body {
  min-width: 0;
}

.home-page .step-list__body strong {
  font-size: 0.98rem;
  line-height: 1.35;
}

.home-page .step-list__body span {
  display: block;
  line-height: 1.55;
}

.info-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 0.45rem;
  border-radius: 999px;
  background: var(--success);
  flex: 0 0 auto;
}

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

.city-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-height: 230px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.city-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(15, 93, 168, 0.22);
}

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

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 1.35rem;
  font-weight: 600;
  position: relative;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.35rem;
  top: 1.25rem;
  font-size: 1.25rem;
  color: var(--brand-dark);
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 1.35rem 1.35rem;
  color: var(--muted);
}

.faq-item .faq-whatsapp-cta {
  margin-top: 0;
}

.faq-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin: 1.45rem auto 0;
  padding: 1rem 1.15rem 0;
  width: fit-content;
  text-align: center;
  scroll-margin-top: 110px;
}

.faq-cta__eyebrow {
  margin: 0;
  color: var(--brand-dark);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.faq-cta .faq-whatsapp-cta {
  margin: 0 auto;
}

@media (max-width: 720px) {
  .faq-whatsapp-cta {
    margin: 0 auto 1rem;
  }

  .faq-cta {
    width: 100%;
    padding: 1rem 0 0;
  }

  .faq-cta__eyebrow {
    font-size: 0.7rem;
  }

  .home-page .step-list.step-list--timeline {
    grid-template-columns: 1fr;
  }

  .home-page .step-list.step-list--timeline li {
    gap: 0.78rem;
    padding: 0.95rem 0.95rem 1rem;
  }

  .home-page .step-list__index {
    width: 2.1rem;
    height: 2.1rem;
    font-size: 0.72rem;
  }
}

#faq .section-head {
  margin-top: -0.25rem;
}

@keyframes faqWhatsappDotPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.36);
  }

  50% {
    transform: scale(1.16);
    box-shadow: 0 0 0 7px rgba(34, 197, 94, 0);
  }
}

.hero-panel-live {
  display: grid;
  gap: 0.65rem;
  margin: 1rem 0 0.7rem;
}

.hero-panel-live__item {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  padding: 0.62rem 0.7rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.1);
}

.hero-panel-live__dot {
  width: 10px;
  height: 10px;
  margin-top: 0.34rem;
  border-radius: 999px;
  background: #0f5da8;
  box-shadow: 0 0 0 0 rgba(15, 93, 168, 0.5);
  animation: pulse 1.6s infinite;
}

.hero-panel-live__item strong {
  display: block;
  margin-bottom: 0.12rem;
  color: #fff;
  font-size: 0.84rem;
}

.hero-panel-live__item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.77rem;
}

.cta-panel {
  padding: 2.1rem;
  text-align: center;
  border-radius: 28px;
  border: 1px solid rgba(24, 33, 44, 0.08);
  background:
    radial-gradient(circle at top center, rgba(15, 93, 168, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 248, 240, 0.92));
  box-shadow: var(--shadow);
}

.cta-panel p {
  max-width: 720px;
  margin: 1rem auto 0;
}

.floating-wa {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 28;
}

.floating-wa a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0.95rem 1.3rem;
  border-radius: 999px;
  color: #fffaf3;
  background: linear-gradient(140deg, var(--teal), #115e59);
  box-shadow: 0 18px 30px rgba(17, 94, 89, 0.28);
  font-weight: 700;
}

.conversion-toast-stack {
  position: fixed;
  left: 18px;
  top: 92px;
  bottom: auto;
  z-index: 46;
  display: grid;
  gap: 0.8rem;
  pointer-events: none;
}

.conversion-toast {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  max-width: 260px;
  padding: 0.72rem 0.8rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(24, 33, 44, 0.96);
  color: #fffaf3;
  box-shadow: 0 18px 32px rgba(24, 33, 44, 0.24);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.conversion-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.conversion-toast__dot {
  width: 10px;
  height: 10px;
  margin-top: 0.2rem;
  border-radius: 999px;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.45);
  animation: pulse 1.2s infinite;
  flex: 0 0 auto;
}

.conversion-toast strong {
  display: block;
  margin-bottom: 0.08rem;
  font-size: 0.88rem;
}

.conversion-toast p {
  margin: 0;
  color: rgba(248, 245, 239, 0.82);
  font-size: 0.8rem;
  line-height: 1.25;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.home-page.pro-animate-ready .hero {
  isolation: isolate;
}

.home-page .pro-section {
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.home-page .pro-section .section-head h2,
.home-page .pro-section .section-head .sub {
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.home-page .pro-section:not(.is-inview) .section-head h2,
.home-page .pro-section:not(.is-inview) .section-head .sub {
  opacity: 0.86;
  transform: translateY(10px);
}

.home-page .pro-section.is-inview .section-head h2,
.home-page .pro-section.is-inview .section-head .sub {
  opacity: 1;
  transform: translateY(0);
}

.home-page .card,
.home-page .metric,
.home-page .faq-item,
.home-page .service-card,
.home-page .city-card,
.home-page .audience-card {
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
  will-change: transform;
}

.home-page .card:hover,
.home-page .metric:hover,
.home-page .faq-item:hover,
.home-page .service-card:hover,
.home-page .city-card:hover,
.home-page .audience-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 30px rgba(17, 28, 40, 0.16);
}

.home-page .hero__glow {
  transition: transform 0.22s ease-out;
  will-change: transform;
}

.home-page .hero-panel,
.home-page .hero__content {
  transition: transform 0.26s ease-out, box-shadow 0.26s ease;
  will-change: transform;
}

.home-page .btn.is-magnetic {
  transition: transform 0.18s ease, box-shadow 0.24s ease, filter 0.24s ease;
  will-change: transform;
}

.home-page .btn.is-magnetic:hover {
  filter: brightness(1.04);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.55);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(74, 222, 128, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, 16px, 0);
  }
}

@keyframes blinkAlert {
  0%,
  100% {
    transform: scale(1);
    filter: brightness(1);
  }
  50% {
    transform: scale(1.03);
    filter: brightness(1.12);
  }
}

@keyframes brandSealPulse {
  0%,
  100% {
    transform: translateY(0);
    filter: brightness(1);
    box-shadow:
      0 0 0 1px rgba(255, 175, 88, 0.24),
      0 0 10px rgba(251, 146, 60, 0.45),
      inset 0 0 10px rgba(255, 255, 255, 0.35);
  }
  50% {
    transform: translateY(-1px);
    filter: brightness(1.15);
    box-shadow:
      0 0 0 1px rgba(255, 201, 135, 0.45),
      0 0 14px rgba(251, 146, 60, 0.7),
      inset 0 0 12px rgba(255, 255, 255, 0.42);
  }
}

@keyframes brandAlertBlink {
  0%,
  100% {
    transform: scale(1);
    filter: brightness(1);
    box-shadow:
      0 0 0 1px rgba(248, 113, 113, 0.32),
      0 0 12px rgba(239, 68, 68, 0.95),
      0 0 30px rgba(185, 28, 28, 0.72),
      inset 0 0 10px rgba(255, 255, 255, 0.18);
  }
  50% {
    transform: scale(1.04);
    filter: brightness(1.22);
    box-shadow:
      0 0 0 1px rgba(252, 165, 165, 0.52),
      0 0 16px rgba(248, 113, 113, 1),
      0 0 38px rgba(220, 38, 38, 0.86),
      inset 0 0 14px rgba(255, 255, 255, 0.24);
  }
}

@keyframes calloutHighlightPulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow:
      0 12px 22px rgba(18, 28, 41, 0.08),
      0 0 0 1px rgba(255, 255, 255, 0.55) inset;
  }
  50% {
    transform: translateY(-1px);
    box-shadow:
      0 16px 26px rgba(18, 28, 41, 0.12),
      0 0 0 1px rgba(255, 255, 255, 0.68) inset;
  }
}

@keyframes calloutHighlightShine {
  0%,
  62% {
    transform: translateX(-60%);
    opacity: 0;
  }
  74% {
    opacity: 0.82;
  }
  100% {
    transform: translateX(60%);
    opacity: 0;
  }
}

@keyframes neonPulse {
  0%,
  100% {
    transform: scale(1);
    filter: brightness(1);
    box-shadow:
      0 0 0 1px rgba(255, 186, 95, 0.3),
      0 0 10px rgba(249, 115, 22, 0.85),
      0 0 24px rgba(249, 115, 22, 0.65),
      inset 0 0 10px rgba(255, 255, 255, 0.1);
  }
  50% {
    transform: scale(1.03);
    filter: brightness(1.15);
    box-shadow:
      0 0 0 1px rgba(255, 201, 135, 0.5),
      0 0 14px rgba(251, 146, 60, 0.95),
      0 0 34px rgba(249, 115, 22, 0.8),
      inset 0 0 12px rgba(255, 255, 255, 0.14);
  }
}

@keyframes urgentBlink {
  0%,
  100% {
    transform: scale(1);
    filter: brightness(1);
    box-shadow:
      0 0 0 1px rgba(96, 165, 250, 0.38),
      0 0 12px rgba(59, 130, 246, 0.95),
      0 0 28px rgba(30, 64, 175, 0.72);
  }
  50% {
    transform: scale(1.04);
    filter: brightness(1.14);
    box-shadow:
      0 0 0 1px rgba(147, 197, 253, 0.55),
      0 0 18px rgba(96, 165, 250, 1),
      0 0 36px rgba(30, 64, 175, 0.88);
  }
}

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

@keyframes marqueeReverse {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

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

  .status-dot,
  .brand-top-seal,
  .top-seal--blink,
  .top-seal--neon,
  .nav-chip,
  .hero__glow,
  .search-strip__track,
  .callout-note,
  .callout-note::after {
    animation: none;
  }

  /* Keep topbar ticker moving as a live radio-style strip. */
  .topbar-ticker {
    animation: marquee 16s linear infinite !important;
  }

  .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn-primary::after {
    display: none;
  }

  .home-page .pro-section,
  .home-page .pro-section .section-head h2,
  .home-page .pro-section .section-head .sub,
  .home-page .hero__glow,
  .home-page .hero-panel,
  .home-page .hero__content,
  .home-page .btn.is-magnetic,
  .home-page .card,
  .home-page .metric,
  .home-page .faq-item,
  .home-page .service-card,
  .home-page .city-card,
  .home-page .audience-card {
    transition: none;
    transform: none !important;
  }
}

@media (max-width: 1180px) {
  .pain-grid,
  .service-grid,
  .city-grid,
  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .nav {
    position: relative;
    top: 0;
  }

  .nav__inner,
  .urgency-bar__inner,
  .hero__grid,
  .split-grid {
    grid-template-columns: 1fr;
    display: grid;
  }

  .nav__inner {
    gap: 0.9rem;
  }

  .nav__links {
    order: 3;
  }

  .brand-cluster {
    width: 100%;
    align-items: center;
  }

  .brand-top-seal {
    font-size: 0.62rem;
    letter-spacing: 0.08em;
  }

  .nav__actions {
    width: 100%;
  }

  .nav__actions .btn {
    flex: 1 1 220px;
  }

  .hero h1 {
    max-width: none;
  }

  .card-grid.cols-3,
  .blog-mirror-grid,
  .audience-grid,
  .faq-grid,
  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  section,
  .section--tight {
    padding: 3.2rem 0;
  }

  .urgency-bar {
    position: relative;
  }

  .nav {
    position: relative;
    top: 0;
  }

  .urgency-bar__inner {
    gap: 0.7rem;
  }

  .urgency-bar__copy {
    width: 100%;
    justify-content: flex-start;
  }

  .urgency-bar__copy {
    align-items: flex-start;
    gap: 0.55rem;
  }

  .urgency-bar__copy-body {
    width: 100%;
    min-width: 0;
  }

  #topbar-message {
    display: block;
    width: 100%;
    overflow: hidden;
  }

  #topbar-message .topbar-ticker {
    animation: marquee 16s linear infinite;
    width: max-content;
    min-width: max-content;
    display: inline-flex;
  }

  #topbar-message .topbar-ticker .topbar-ticker__item {
    display: inline-flex;
  }

  .topbar-distance {
    margin-top: 0.2rem;
  }

  .topbar-ticker {
    animation-duration: 20s;
  }

  .topbar-ticker__item {
    font-size: 0.8rem;
    padding-right: 0.55rem;
    margin-right: 0.55rem;
  }

  .topbar-ticker__keyword {
    animation-duration: 3.2s;
  }

  .topbar-ticker__city {
    padding: 0.08rem 0.32rem;
  }

  .topbar-ticker__distance {
    font-size: 0.77rem;
  }

  .topbar-distance {
    width: 100%;
    max-width: none;
  }

  .topbar-distance__value {
    font-size: 0.76rem;
  }

  .top-seal {
    width: auto;
    text-align: center;
  }

  .nav__links,
  .nav__actions,
  .hero__actions,
  .hero__actions--center {
    width: 100%;
  }

  .home-page .badges {
    gap: 0.55rem;
  }

  .home-page .badge {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .home-page .nav__links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
  }

  .home-page .nav__links a {
    justify-content: center;
    padding: 0.72rem 0.85rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
  }

  .home-page .nav__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .home-page .nav__actions .btn-ghost {
    display: none;
  }

  .home-page .hero {
    padding-top: 2.6rem;
  }

  .home-page .hero h1 {
    font-size: clamp(2.35rem, 9vw, 3.45rem);
  }

  .home-page .hero__content .lead--large,
  .home-page .section-head,
  .home-page .hero-panel,
  .home-page .detail-card {
    max-width: 100%;
  }

  .home-page .metric {
    text-align: center;
  }

  .blog-mirror-grid {
    grid-template-columns: 1fr;
  }

  .home-page .service-card__scope {
    text-align: center;
  }

  .home-page .search-strip__track span {
    font-size: 0.82rem;
  }

  .nav__links {
    justify-content: center;
  }

  .state-pride {
    width: 100%;
    justify-content: center;
  }

  .state-pride--topbar {
    width: auto;
  }

  .nav__actions .btn,
  .hero__actions .btn {
    width: 100%;
  }

  .card-grid.cols-3,
  .pain-grid,
  .service-grid,
  .city-grid,
  .audience-grid,
  .faq-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .city-page {
    padding-bottom: 96px;
  }

  .city-page .urgency-bar__copy {
    text-align: center;
    font-size: 0.92rem;
  }

  .city-page .hero__actions {
    gap: 0.75rem;
  }

  .city-page .nav__actions .btn,
  .city-page .hero__actions .btn,
  .city-page .cta-panel .btn,
  .city-page .floating-wa a {
    min-height: 58px;
    font-size: 1rem;
  }

  .city-page .metric {
    padding: 1rem;
  }

  .city-page .check-list,
  .city-page .info-list,
  .city-page .faq-grid {
    gap: 0.8rem;
  }

  .hero {
    padding-top: 3.2rem;
  }

  .city-page .hero {
    padding-top: 1.8rem;
  }

  .hero-panel,
  .detail-card,
  .cta-panel,
  .card {
    padding: 1.3rem;
  }

  .floating-wa {
    right: 12px;
    left: 12px;
    bottom: 12px;
  }

  .conversion-toast-stack {
    left: 12px;
    right: 12px;
    top: 80px;
    bottom: auto;
  }

  .conversion-toast {
    max-width: none;
    padding: 0.66rem 0.74rem;
  }

  .logo img {
    width: 94px;
    height: 94px;
  }

  .floating-wa a {
    width: 100%;
  }
}

/* App-style refresh */
:root {
  --bg: #eef3f8;
  --bg-strong: #dfe8f1;
  --panel: rgba(255, 255, 255, 0.78);
  --panel-strong: rgba(255, 255, 255, 0.92);
  --ink: #132033;
  --muted: #617086;
  --line: rgba(19, 32, 51, 0.09);
  --line-strong: rgba(19, 32, 51, 0.18);
  --brand: #f28a2f;
  --brand-dark: #d96a11;
  --teal: #0f5da8;
  --teal-soft: rgba(15, 93, 168, 0.12);
  --amber-soft: rgba(242, 138, 47, 0.14);
  --rose-soft: rgba(242, 138, 47, 0.12);
  --ink-soft: rgba(15, 93, 168, 0.09);
  --success: #18a957;
  --shadow: 0 30px 80px rgba(16, 24, 40, 0.14);
  --shadow-soft: 0 18px 42px rgba(16, 24, 40, 0.1);
  --radius: 28px;
  --radius-sm: 20px;
}

body {
  background:
    radial-gradient(circle at top left, rgba(15, 93, 168, 0.18), transparent 26%),
    radial-gradient(circle at 85% 12%, rgba(242, 138, 47, 0.16), transparent 22%),
    radial-gradient(circle at 50% 100%, rgba(19, 32, 51, 0.08), transparent 30%),
    linear-gradient(180deg, #f7fbff 0%, #eef3f8 45%, #e7eef5 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.32) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.24) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 85%);
  pointer-events: none;
  z-index: -1;
}

body:not(.home-page):not(.city-page) .container[style] {
  margin-top: 28px;
  padding: 2rem !important;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 250, 253, 0.88));
  box-shadow: var(--shadow);
}

.container {
  width: min(1240px, calc(100vw - 32px));
}

.topbar,
.urgency-bar {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  backdrop-filter: blur(18px);
  border-radius: 24px;
  overflow: hidden;
}

.topbar {
  border-bottom: 0;
}

.topbar__inner {
  justify-content: space-between;
}

.topbar__pill {
  border-color: rgba(255, 255, 255, 0.26);
  background: transparent;
  box-shadow: none;
}

.urgency-bar {
  border-bottom: 0;
  box-shadow: none;
}

.nav {
  top: 58px;
  border-bottom: 0;
  background: #fff;
  box-shadow: none;
  border-radius: 24px;
  overflow: hidden;
}

.nav__inner {
  margin-top: 14px;
  margin-bottom: 14px;
  padding: 0.95rem 1.1rem;
  border: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

.logo img {
  width: 116px;
  height: 116px;
  padding: 0.2rem;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(239, 245, 251, 0.92));
  box-shadow: 0 14px 24px rgba(19, 32, 51, 0.1);
}

.logo__copy strong {
  font-size: 1.12rem;
}

.logo__copy small,
.eyebrow {
  letter-spacing: 0.14em;
}

.nav__links {
  gap: 0.5rem;
  padding: 0.4rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(238, 243, 248, 0.9);
}

.nav__links a {
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  font-weight: 600;
}

.nav__links a:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
}

.nav__actions {
  gap: 0.7rem;
}

.home-page main,
.city-page main {
  position: relative;
  z-index: 1;
}

.home-page .nav,
.city-page .nav {
  display: block;
}

.home-page .hero,
.city-page .hero {
  padding-top: 2.2rem;
}

.home-page .hero__grid,
.city-page .hero__grid {
  max-width: 1180px;
}

.home-page .hero__content,
.city-page .hero__content {
  padding-top: 2.1rem;
}

.hero-logo {
  display: flex;
  justify-content: center;
  margin: 0 0 0.8rem;
}

.hero-logo img {
  width: clamp(180px, 22vw, 280px);
  height: auto;
  object-fit: contain;
  opacity: 0.82;
}

.home-page .hero__content > .eyebrow {
  text-align: center;
}

.btn {
  min-height: 54px;
  padding: 0.95rem 1.35rem;
  border-radius: 18px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: linear-gradient(135deg, #0f5da8, #0b477f 58%, #0a3e70);
  box-shadow: 0 18px 32px rgba(15, 93, 168, 0.24);
}

.btn-ghost {
  border-color: rgba(15, 93, 168, 0.22);
  background: rgba(15, 93, 168, 0.08);
  color: #0f5da8;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.56);
}

.card,
.faq-item,
.metric,
.audience-card {
  border-color: rgba(255, 255, 255, 0.62);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 250, 253, 0.86));
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.card {
  padding: 1.7rem;
}

.hero {
  padding-top: 3rem;
  padding-bottom: 2.4rem;
}

.hero__grid {
  gap: 1.6rem;
  align-items: stretch;
}

.home-page .hero__grid {
  max-width: 1160px;
}

.hero__content,
.hero-panel {
  position: relative;
  overflow: hidden;
}

.home-page .hero__content {
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(243, 248, 252, 0.68));
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-panel::before,
.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(15, 93, 168, 0.16), transparent 70%);
  pointer-events: none;
}

.hero-panel {
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(242, 138, 47, 0.98), rgba(216, 95, 16, 0.96));
  color: #fffaf4;
  box-shadow: 0 24px 50px rgba(216, 95, 16, 0.26);
}

.hero-panel h2 {
  color: #fff;
}

.hero-panel p,
.hero-panel .check-list p,
.hero-panel .callout p {
  color: rgba(255, 250, 244, 0.9);
}

.hero-panel .callout {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.12);
}

.panel-pill {
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand-dark);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12), 0 0 20px rgba(255, 255, 255, 0.18);
  animation: orangeGlowPulse 1.35s ease-in-out infinite;
}

@keyframes orangeGlowPulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 0 0 1px rgba(242, 138, 47, 0.1), 0 0 16px rgba(242, 138, 47, 0.18);
    filter: saturate(1);
  }

  50% {
    transform: translateY(-1px) scale(1.01);
    box-shadow: 0 0 0 1px rgba(242, 138, 47, 0.2), 0 0 24px rgba(242, 138, 47, 0.38);
    filter: saturate(1.08);
  }
}

.badges {
  gap: 0.65rem;
  margin-bottom: 1.15rem;
}

.badge,
.search-strip__track span,
.service-card__chips span {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(19, 32, 51, 0.07);
  box-shadow: 0 10px 18px rgba(19, 32, 51, 0.05);
}

.home-page .badge {
  justify-content: center;
}

.home-page .hero-badges--focus {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  margin-bottom: 0.9rem;
}

.home-page .hero-badges--focus .badge {
  justify-content: flex-start;
  align-items: flex-start;
  min-height: 82px;
  padding: 0.62rem 0.72rem;
  border-radius: 12px;
  border: 1px solid rgba(15, 93, 168, 0.24);
  background: linear-gradient(165deg, rgba(246, 249, 253, 0.98), rgba(232, 240, 248, 0.9));
  box-shadow:
    0 10px 18px rgba(18, 28, 41, 0.07),
    0 0 0 1px rgba(15, 93, 168, 0.14) inset;
  color: #1f3341;
  font-size: 0.77rem;
  line-height: 1.42;
}

.home-page .hero-badges--focus .badge__icon {
  width: 15px;
  height: 15px;
  margin-top: 0.1rem;
  color: #0f5da8;
}

.hero h1,
.section h2,
.cta-panel h2,
.detail-card h2,
.hero-panel h2 {
  font-family: var(--font);
  font-weight: 800;
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: 11.5ch;
  font-size: clamp(3rem, 6.2vw, 5rem);
}

.hero-title {
  display: grid;
  gap: 0.28rem;
  margin-top: 1.2rem;
}

.hero-title span {
  display: block;
}

.hero-title span:first-child {
  color: var(--ink);
}

.hero-title span:last-child {
  max-width: 12.5ch;
  color: var(--teal);
  text-shadow: 0 0 10px rgba(15, 93, 168, 0.12);
}

.lead--large,
.sub {
  font-size: 1.02rem;
}

.section {
  position: relative;
}

.section .container > .section-head,
.section .container > .split-grid,
.section .container > .pain-grid,
.section .container > .service-grid,
.section .container > .city-grid,
.section .container > .faq-grid,
.section .container > .card-grid.cols-3 {
  position: relative;
  z-index: 1;
}

.search-strip {
  position: relative;
  margin: 0 auto;
  padding: 1.2rem 0;
  background: linear-gradient(135deg, #0f5da8, #0a467f);
  border: 0;
}

.search-strip .container {
  padding: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 30px rgba(10, 58, 104, 0.16);
  backdrop-filter: blur(14px);
}

.pain-card,
.service-card,
.city-card,
.detail-card,
.faq-item {
  border-radius: 26px;
}

.pain-card,
.detail-card {
  text-align: left;
}

.service-card::before {
  height: 5px;
}

.service-card:hover,
.city-card:hover,
.faq-item:hover {
  transform: translateY(-6px);
}

.split-grid,
.service-grid,
.pain-grid,
.city-grid,
.faq-grid,
.audience-grid,
.card-grid {
  gap: 1.2rem;
}

.step-list li,
.audience-card,
.faq-item summary,
.faq-item p {
  text-align: left;
}

.step-list li {
  background: rgba(243, 247, 251, 0.94);
}

.info-list li::before {
  width: 11px;
  height: 11px;
  margin-top: 0.42rem;
  box-shadow: 0 0 0 5px rgba(24, 169, 87, 0.12);
}

.city-card {
  justify-content: space-between;
  min-height: 210px;
}

.faq-item {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.64);
  background:
    radial-gradient(circle at top center, rgba(242, 138, 47, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 248, 252, 0.9));
}

.floating-wa a {
  min-height: 62px;
  border-radius: 20px;
  background: linear-gradient(135deg, #f28a2f, #d96a11);
  box-shadow: 0 18px 34px rgba(217, 106, 17, 0.28);
}

.conversion-toast {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(10, 19, 31, 0.92);
  backdrop-filter: blur(16px);
}

@media (min-width: 981px) {
  .nav {
    position: sticky;
    top: 58px;
    left: auto;
    width: auto;
    z-index: 32;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: none;
    border-bottom: 0;
  }

  .nav__inner {
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 0.7rem 0.9rem;
    gap: 0.85rem;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
  }

  .brand-cluster {
    flex: 0 0 auto;
  }

  .logo {
    padding: 0;
    background: transparent;
  }

  .logo img {
    width: 76px;
    height: 76px;
    border-radius: 16px;
  }

  .logo__copy strong {
    font-size: 1rem;
  }

  .logo__copy small {
    font-size: 0.7rem;
  }

  .nav__links {
    flex: 1 1 auto;
    justify-content: center;
    gap: 0.25rem;
    padding: 0;
    background: transparent;
  }

  .nav__links a {
    padding: 0.58rem 0.78rem;
    font-size: 0.88rem;
    font-weight: 600;
  }

  .nav__actions {
    flex: 0 0 auto;
    gap: 0.5rem;
  }

  .nav__actions .btn {
    min-height: 42px;
    padding: 0.72rem 1rem;
    border-radius: 14px;
    font-size: 0.86rem;
  }

  .home-page .hero__grid {
    grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
    max-width: 1240px;
    margin: 0 auto;
    align-items: start;
  }

  .home-page .hero__content,
  .home-page .hero-panel,
  .home-page .section-head,
  .home-page .detail-card,
  .home-page .pain-card,
  .home-page .service-card,
  .home-page .city-card,
  .home-page .audience-card,
  .home-page .faq-item {
    text-align: left;
  }

  .home-page .hero__content,
  .home-page .section-head,
  .home-page .hero-panel,
  .home-page .detail-card,
  .home-page .faq-item {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .home-page .hero__content {
    padding: 2.35rem;
  }

  .home-page .hero__content .lead--large,
  .home-page .section-head .sub,
  .home-page .detail-card p,
  .home-page .pain-card p,
  .home-page .service-card p {
    margin-left: 0;
    margin-right: 0;
  }

  .home-page .badges,
  .home-page .hero__actions {
    justify-content: flex-start;
  }

  .home-page .badge {
    justify-content: flex-start;
  }

  .home-page .hero-badges--focus {
    grid-template-columns: 1fr;
  }

  .home-page .hero h1,
  .home-page .hero-title span:last-child,
  .home-page .lead--large {
    max-width: 13.5ch;
  }

  .home-page .lead--large {
    font-size: 1.08rem;
    max-width: 60ch;
  }

  .home-page .metric-strip {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-page .metric {
    text-align: left;
    min-height: 122px;
  }

  .home-page .hero__actions .btn {
    width: auto;
    min-width: 220px;
  }

.home-page .nav__links > a[href="#atendimento"],
.home-page .nav__links > a[href="https://blog.drmorada.com.br/"] {
  display: inline-flex;
  width: 9.25rem;
  align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
  }

  .home-page .hero,
  .city-page .hero {
    padding-top: 2.2rem;
  }
}

@media (max-width: 1180px) {
  .nav__inner {
    padding: 0.85rem;
  }

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

@media (max-width: 980px) {
  .nav {
    top: 0;
  }

  .nav__inner {
    margin-top: 0.85rem;
    margin-bottom: 0.85rem;
  }

  .nav__insights {
    padding-bottom: 0.6rem;
  }

  .nav__links {
    width: 100%;
    justify-content: center;
    border-radius: 24px;
  }

  .hero__grid,
  .split-grid {
    gap: 1rem;
  }

  .home-page .hero__content,
  .hero-panel {
    border-radius: 28px;
  }

  .hero-command {
    grid-template-columns: 1fr;
  }

  .urgency-live {
    display: none;
  }
}

@media (max-width: 720px) {
  body::before {
    background-size: 72px 72px;
  }

  .container {
    width: min(100vw - 20px, 1240px);
  }

  .nav__inner {
    padding: 0.8rem;
    border-radius: 22px;
  }

  .logo {
    width: 100%;
    justify-content: center;
  }

  .nav__insights {
    justify-content: center;
  }

  .nav-chip {
    font-size: 0.7rem;
  }

  .home-page .hero__content,
  .hero-panel,
  .detail-card,
  .cta-panel,
  .card,
  body:not(.home-page):not(.city-page) .container[style] {
    padding: 1.25rem !important;
    border-radius: 24px;
  }

  .nav__links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0.35rem;
  }

  .nav__links a,
  .btn {
    border-radius: 16px;
  }

  .hero {
    padding-top: 2rem;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.5rem, 10vw, 3.7rem);
  }

  .hero-title span:last-child {
    max-width: none;
    color: var(--teal);
    text-shadow: 0 0 8px rgba(15, 93, 168, 0.1);
  }

  .metric::after {
    inset: auto 0.95rem 0.75rem;
  }

  .search-strip .container {
    padding: 0.7rem;
    border-radius: 20px;
  }

  .city-card {
    min-height: 180px;
  }
}

.hero-city-list {
  margin: 1rem 0 0;
  color: var(--brand-dark);
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.pain-grid--brand {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-grid--five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.service-card--link {
  text-decoration: none;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.proof-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-height: 100%;
}

.proof-card strong {
  display: block;
  font-size: 1.02rem;
}

.proof-card p {
  margin: 0;
  color: var(--muted);
}

.proof-card span {
  margin-top: auto;
  color: var(--brand-dark);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.proof-card--summary {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 248, 252, 0.88)),
    var(--panel);
}

.proof-list {
  margin-top: 0.2rem;
}

@media (max-width: 1180px) {
  .service-grid--five,
  .proof-grid,
  .pain-grid--brand {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .service-grid--five,
  .proof-grid,
  .pain-grid--brand {
    grid-template-columns: 1fr;
  }

  .hero-city-list {
    font-size: 0.92rem;
  }
}

.blog-shell {
  --bg: #f7fbff;
  --bg-strong: #edf5fb;
  --panel: rgba(255, 255, 255, 0.96);
  --panel-strong: #ffffff;
  --ink: #17344a;
  --muted: #5f7890;
  --line: rgba(15, 93, 168, 0.12);
  --line-strong: rgba(15, 93, 168, 0.2);
  --brand: #0f5da8;
  --brand-dark: #0a447f;
  --teal: #2e74c8;
  background:
    radial-gradient(circle at top left, rgba(15, 93, 168, 0.08), transparent 26%),
    radial-gradient(circle at right 18%, rgba(46, 116, 200, 0.08), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 42%, #edf5fb 100%);
  color: var(--ink);
}

.blog-shell .urgency-bar {
  display: none;
}

.blog-shell .nav {
  top: 0;
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.blog-shell .nav__inner {
  margin-top: 0.8rem;
  margin-bottom: 0.8rem;
  padding: 0.82rem 1rem;
  border: 1px solid rgba(242, 138, 47, 0.12);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 16px 32px rgba(217, 106, 17, 0.08);
}

.blog-shell .nav__actions .btn {
  min-height: 42px;
  padding: 0.72rem 1rem;
  border-radius: 14px;
  font-size: 0.84rem;
}

.blog-shell .logo__copy small,
.blog-shell .nav__links,
.blog-shell .lead,
.blog-shell .sub,
.blog-shell p,
.blog-shell li,
.blog-shell span {
  color: inherit;
}

.blog-hero {
  padding: 3rem 0 2rem;
}

.blog-hero-card,
.article-hero-card,
.article-panel,
.blog-card {
  border: 1px solid rgba(15, 93, 168, 0.12);
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(245,250,255,0.98));
  box-shadow: 0 18px 38px rgba(10, 58, 104, 0.08);
  border-radius: 24px;
}

.blog-hero-card,
.article-hero-card {
  padding: 2rem;
}

.blog-grid {
  display: grid;
  gap: 1.2rem;
}

.blog-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.blog-card {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 1.35rem;
  min-height: 100%;
}

.blog-card h3,
.article-panel h2,
.article-hero-card h1,
.blog-hero-card h1 {
  margin: 0;
  color: #14324a;
}

.blog-card p,
.article-panel p,
.article-panel li,
.article-hero-card p,
.blog-hero-card p,
.crumbs,
.crumbs a {
  color: var(--muted);
}

.blog-card span {
  margin-top: auto;
  color: var(--brand);
  font-weight: 700;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(280px, 0.8fr);
  gap: 1.3rem;
}

.article-content,
.article-sidebar,
.article-link-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.article-panel {
  padding: 1.4rem;
}

.article-cover {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(15, 93, 168, 0.12);
  background: #ffffff;
}

.article-cover img {
  width: 100%;
  height: clamp(220px, 34vw, 380px);
  object-fit: cover;
  display: block;
}

.article-cover figcaption {
  margin: 0;
  padding: 0.8rem 1rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.article-rich-list,
.crumbs {
  margin: 0;
  padding-left: 1.15rem;
}

.article-step-list {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.75rem;
}

.article-step-list li strong {
  color: #fff7ef;
}

.article-note {
  border-color: rgba(76, 196, 186, 0.3);
  background: linear-gradient(180deg, rgba(19, 47, 56, 0.92), rgba(14, 35, 44, 0.92));
}

.article-note span {
  display: inline-block;
  margin-top: 0.55rem;
  color: #95f0d7;
  font-weight: 700;
}

.article-faq {
  display: grid;
  gap: 0.75rem;
}

.article-faq h3 {
  margin: 0.25rem 0 0;
  color: #fff7ef;
  font-size: 1rem;
}

.article-faq p {
  margin: 0;
}

.study-table-wrap {
  width: 100%;
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.study-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 780px;
}

.study-table thead th {
  text-align: left;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  color: #ffd9b8;
  background: rgba(255, 255, 255, 0.06);
}

.study-table th,
.study-table td {
  padding: 0.8rem 0.9rem;
  vertical-align: top;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.study-table tbody tr:last-child td {
  border-bottom: 0;
}

.study-table tbody td:first-child {
  color: #fff7ef;
  font-weight: 700;
}

.blog-index-status {
  margin-top: 0.9rem;
  color: #0f5da8;
  font-weight: 600;
}

.blog-index-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.blog-index-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.blog-index-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.blog-index-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.38rem 0.68rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 93, 168, 0.14);
  background: rgba(15, 93, 168, 0.06);
  color: #0f5da8;
  font-size: 0.76rem;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.blog-index-card {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.blog-index-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-index-card small {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #0f5da8;
}

.expert-react {
  margin: 1.15rem 0 1.8rem;
}

.expert-react__head h2 {
  margin: 0;
}

.expert-react__grid {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.expert-react__card {
  padding: 0.95rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(165deg, rgba(23, 45, 62, 0.95), rgba(14, 29, 40, 0.95));
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.24);
}

.expert-react__card small {
  display: block;
  color: #ffd9b8;
  font-size: 0.72rem;
  letter-spacing: 0.03em;
}

.expert-react__card h3 {
  margin: 0.45rem 0 0.5rem;
  color: #fff7ef;
  font-size: 1rem;
  line-height: 1.35;
}

.expert-react__card p {
  margin: 0;
  color: #c3d3df;
  font-size: 0.88rem;
}

@media (max-width: 980px) {
  .blog-index-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-index-columns {
    grid-template-columns: 1fr;
  }

  .expert-react__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .blog-index-metrics {
    grid-template-columns: 1fr;
  }
}

.article-link-card {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
}

.article-link-card strong {
  color: #fff7ef;
}

.article-link-card span {
  color: var(--brand-dark);
  font-size: 0.88rem;
}

.article-link-stack--grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.crumbs {
  display: flex;
  gap: 0.45rem;
  list-style: none;
  padding-left: 0;
  margin-bottom: 1rem;
}

.blog-shell .badge {
  background: rgba(15, 93, 168, 0.08);
  color: #0f5da8;
  border-color: rgba(15, 93, 168, 0.14);
}

.blog-shell .section--contrast {
  background: linear-gradient(180deg, rgba(15,93,168,0.03), rgba(15,93,168,0.05));
}

.blog-shell .nav__links a {
  color: #d96a11;
}

.blog-shell .nav__links a:hover {
  color: #f28a2f;
}

.blog-shell .nav__links a.is-active {
  color: #f28a2f;
}

.blog-shell .btn-primary {
  color: #ffffff;
  background: linear-gradient(140deg, #f28a2f, #d96a11);
  box-shadow: 0 18px 32px rgba(242, 138, 47, 0.2);
}

.blog-shell .btn-primary::after {
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.28) 48%, transparent 58%);
}

.blog-shell .btn-ghost {
  border-color: rgba(242, 138, 47, 0.18);
  background: rgba(242, 138, 47, 0.06);
  color: #d96a11;
}

.blog-shell .btn-ghost:hover {
  border-color: rgba(242, 138, 47, 0.28);
  background: rgba(242, 138, 47, 0.12);
}

.blog-shell .blog-topic-links a {
  border-color: rgba(15, 93, 168, 0.14);
  background: rgba(15, 93, 168, 0.05);
  color: #0f5da8;
}

.blog-shell .blog-topic-links a:hover {
  border-color: rgba(15, 93, 168, 0.24);
  background: rgba(15, 93, 168, 0.1);
}

.blog-shell .blog-card--seo {
  border-color: rgba(15, 93, 168, 0.14);
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(245,250,255,0.98));
}

.blog-shell .blog-card--specialist {
  border-color: rgba(15, 93, 168, 0.14);
}

.blog-shell .blog-card--specialist span {
  color: #0f5da8;
}

.blog-shell .blog-card--category {
  border-color: rgba(15, 93, 168, 0.14);
}

.blog-shell .blog-card--category span {
  color: #0f5da8;
}

.blog-hero-card--teaching::after {
  background: radial-gradient(circle, rgba(15, 93, 168, 0.16), transparent 68%);
}

.blog-shell .floating-wa a {
  background: linear-gradient(135deg, #0f5da8, #0a447f) !important;
  color: #ffffff !important;
  border: 1px solid rgba(15, 93, 168, 0.35) !important;
  box-shadow: 0 16px 28px rgba(15, 93, 168, 0.22) !important;
}

.blog-shell .floating-wa a:hover {
  background: linear-gradient(135deg, #1670c6, #0f5da8) !important;
}

.blog-shell .blog-subnav {
  position: relative;
  z-index: 25;
  margin-top: 0.1rem;
  padding: 0 0 0.9rem;
}

.blog-shell .blog-subnav__inner {
  display: grid;
  gap: 0.8rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(242, 138, 47, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 34px rgba(217, 106, 17, 0.08);
}

.blog-shell .blog-subnav__group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
}

.blog-shell .blog-subnav__group span {
  margin-right: 0.25rem;
  color: #d96a11;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-shell .blog-subnav__group a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.36rem 0.68rem;
  border-radius: 999px;
  border: 1px solid rgba(242, 138, 47, 0.14);
  background: rgba(242, 138, 47, 0.08);
  color: #d96a11;
  font-size: 0.78rem;
  line-height: 1.2;
  text-decoration: none;
}

.blog-shell .blog-subnav__group a:hover {
  border-color: rgba(242, 138, 47, 0.28);
  background: rgba(242, 138, 47, 0.14);
}

.blog-shell .blog-slider {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: rgba(15, 93, 168, 0.28) transparent;
}

.blog-shell .blog-slider::-webkit-scrollbar {
  height: 8px;
}

.blog-shell .blog-slider::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(15, 93, 168, 0.24);
}

.blog-shell .blog-slider > * {
  flex: 0 0 clamp(240px, 34vw, 340px);
  scroll-snap-align: start;
}

.blog-shell .blog-slider .blog-card {
  min-height: 100%;
}

.blog-shell .text-check {
  color: #0f5da8;
}

.blog-shell .text-marker,
.blog-shell .text-marker--orange {
  color: #0f5da8;
  background: linear-gradient(transparent 64%, rgba(15, 93, 168, 0.14) 64%);
}

.blog-shell .blog-mirror {
  border-color: rgba(15, 93, 168, 0.12);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 34px rgba(10, 58, 104, 0.06);
}

.blog-shell .blog-live-dot {
  background: #0f5da8;
  box-shadow: 0 0 0 0 rgba(15, 93, 168, 0.42);
}

.blog-shell .blog-mirror__focus {
  border-color: rgba(15, 93, 168, 0.18);
  background: rgba(15, 93, 168, 0.08);
  color: #0f5da8;
}

.blog-shell .blog-mirror-card {
  background: rgba(255, 255, 255, 0.94);
}

.blog-shell .blog-mirror-card:hover {
  border-color: rgba(15, 93, 168, 0.22);
  box-shadow: 0 16px 28px rgba(10, 58, 104, 0.1);
}

.blog-shell .article-step-list li strong,
.blog-shell .article-faq h3,
.blog-shell .article-link-card strong,
.blog-shell .study-table tbody td:first-child {
  color: var(--brand-dark);
}

.blog-shell .article-note {
  border-color: rgba(15, 93, 168, 0.14);
  background: #f7fbff;
  box-shadow: 0 14px 30px rgba(10, 58, 104, 0.06);
}

.blog-shell .article-note span {
  color: var(--brand);
}

.blog-shell .article-faq > div,
.blog-shell .article-step-list li {
  border-color: rgba(15, 93, 168, 0.12);
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(10, 58, 104, 0.05);
}

.blog-shell .article-faq p,
.blog-shell .article-step-list li,
.blog-shell .article-link-card span,
.blog-shell .study-table th,
.blog-shell .study-table td {
  color: #44637e;
}

.blog-shell .article-rich-list li::marker {
  color: #0f5da8;
}

.blog-shell .study-table-wrap {
  border-color: rgba(15, 93, 168, 0.12);
  background: #ffffff;
}

.blog-shell .study-table thead th {
  color: #0f5da8;
  background: rgba(15, 93, 168, 0.06);
}

.blog-shell .study-table th,
.blog-shell .study-table td {
  border-color: rgba(15, 93, 168, 0.08);
}

.blog-shell .article-link-card {
  border-color: rgba(15, 93, 168, 0.12);
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(10, 58, 104, 0.05);
}

.blog-shell .article-link-card span {
  color: #0f5da8;
}

.blog-shell .g1-main,
.blog-shell .g1-card,
.blog-shell .g1-list-item {
  border-color: rgba(15, 93, 168, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 255, 0.98));
  box-shadow: 0 18px 38px rgba(10, 58, 104, 0.08);
}

.blog-shell .g1-main small,
.blog-shell .g1-card small,
.blog-shell .g1-list-item small {
  color: #0f5da8;
}

.blog-shell .g1-main h2,
.blog-shell .g1-card h3,
.blog-shell .g1-list-item h4 {
  color: #14324a;
}

.blog-shell .g1-main p,
.blog-shell .g1-card p,
.blog-shell .g1-list-item p {
  color: #567089;
}

.blog-shell .g1-list-item span {
  display: block;
  margin: 0 1rem 1rem;
  color: #0f5da8;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.blog-shell .g1-list-item {
  grid-template-columns: 145px minmax(0, 1fr);
}

.blog-shell .g1-list-item img {
  min-height: 118px;
}

.blog-shell.city-guide {
  background: #fff;
  color: #1f3341;
}

body.blog-shell.city-guide {
  background: #fff;
}

body.blog-shell.city-guide::before {
  background-image: none;
  mask-image: none;
  opacity: 0;
}

.blog-shell.city-guide .section--contrast,
.blog-shell.city-guide .blog-hero--article {
  background: #fff;
}

.blog-shell.city-guide .urgency-bar {
  background: #0f5da8;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 14px 28px rgba(10, 58, 104, 0.18);
}

.blog-shell.city-guide .urgency-bar__copy,
.blog-shell.city-guide .urgency-bar__timer,
.blog-shell.city-guide .state-pride--topbar span,
.blog-shell.city-guide .top-seal--blink {
  color: #fff;
}

.blog-shell.city-guide .top-seal--blink {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  text-shadow: none;
  animation: none;
}

.blog-shell.city-guide .nav {
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
  border-radius: 0;
}

.blog-shell.city-guide .nav__inner {
  margin-top: 0.8rem;
  margin-bottom: 0.8rem;
  padding: 0.82rem 1rem;
  border: 1px solid rgba(15, 93, 168, 0.1);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 16px 32px rgba(10, 58, 104, 0.06);
}

.blog-shell.city-guide .nav__actions .btn {
  min-height: 42px;
  padding: 0.72rem 1rem;
  border-radius: 14px;
  font-size: 0.84rem;
}

.blog-shell.city-guide .article-panel[id] {
  scroll-margin-top: 118px;
}

.blog-shell.city-guide .article-layout {
  grid-template-columns: minmax(0, 1fr);
}

.blog-shell.city-guide .badge {
  background: rgba(15, 93, 168, 0.08);
  color: #0f5da8;
  border-color: rgba(15, 93, 168, 0.14);
  box-shadow: 0 10px 18px rgba(10, 58, 104, 0.05);
}

.blog-shell.city-guide .article-hero-card,
.blog-shell.city-guide .article-panel {
  border-color: rgba(15, 93, 168, 0.12);
  background: #fff;
  box-shadow: 0 16px 34px rgba(10, 58, 104, 0.08);
}

.blog-shell.city-guide .article-hero-card h1,
.blog-shell.city-guide .article-panel h2,
.blog-shell.city-guide .article-step-list li strong,
.blog-shell.city-guide .article-faq h3,
.blog-shell.city-guide .city-spotlight strong {
  color: var(--brand-dark);
}

.blog-shell.city-guide .article-panel p,
.blog-shell.city-guide .article-panel li,
.blog-shell.city-guide .article-hero-card p,
.blog-shell.city-guide .article-hero-card .lead,
.blog-shell.city-guide .article-hero-card .sub,
.blog-shell.city-guide .crumbs,
.blog-shell.city-guide .crumbs a {
  color: #234866;
}

.blog-shell.city-guide .article-note,
.blog-shell.city-guide .city-coverage-note {
  position: relative;
  overflow: hidden;
  border-color: rgba(15, 93, 168, 0.14);
  background: #f7fbff;
  box-shadow: 0 14px 30px rgba(10, 58, 104, 0.08);
}

.blog-shell.city-guide .article-hero-card .article-note,
.blog-shell.city-guide .article-hero-card .city-coverage-note {
  margin-top: 1rem;
}

.blog-shell.city-guide .article-note::before,
.blog-shell.city-guide .city-coverage-note::before {
  content: "";
  position: absolute;
  top: 0;
  left: -20%;
  width: 40%;
  height: 2px;
  border-radius: 999px;
  background: #0f5da8;
  box-shadow: 0 0 20px rgba(15, 93, 168, 0.24);
  pointer-events: none;
}

.blog-shell.city-guide .article-note span,
.blog-shell.city-guide .city-coverage-note span {
  color: var(--brand-dark);
}

.blog-shell.city-guide .city-coverage-note {
  margin-top: 1rem;
  padding: 1rem 1.05rem 1rem 1.2rem;
  border-radius: 22px;
}

.blog-shell.city-guide .city-coverage-note h2 {
  margin-top: 0.18rem;
  margin-bottom: 0.55rem;
}

.blog-shell.city-guide .city-coverage-note p {
  margin-bottom: 0.7rem;
}

.blog-shell.city-guide .city-coverage-note span {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  background: rgba(15, 93, 168, 0.08);
  font-size: 0.84rem;
  font-weight: 700;
}

.blog-shell.city-guide .city-spotlight {
  position: relative;
  overflow: hidden;
  margin-top: 1rem;
  padding: 1rem 1.05rem 1rem 1.2rem;
  border-radius: 20px;
  border: 1px solid rgba(15, 93, 168, 0.14);
  background: #f7fbff;
  box-shadow: 0 14px 28px rgba(10, 58, 104, 0.08);
}

.blog-shell.city-guide .city-spotlight::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: #0f5da8;
}

.blog-shell.city-guide .city-spotlight__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.45rem;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  background: rgba(15, 93, 168, 0.08);
  color: #0f5da8;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-shell.city-guide .city-spotlight__eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #0f5da8;
}

.blog-shell.city-guide .city-spotlight strong {
  display: block;
  font-size: 1.08rem;
  line-height: 1.5;
}

.blog-shell.city-guide .city-spotlight p {
  margin: 0.35rem 0 0;
  color: #234866;
}

.blog-shell.city-guide .blog-index-chip {
  border-color: rgba(15, 93, 168, 0.14);
  background: rgba(15, 93, 168, 0.08);
  color: #0f5da8;
}

.blog-shell.city-guide .blog-topic-links a {
  border-color: rgba(15, 93, 168, 0.14);
  background: rgba(15, 93, 168, 0.06);
  color: #0f5da8;
}

.blog-shell.city-guide .blog-topic-links a:hover {
  border-color: rgba(15, 93, 168, 0.24);
  background: rgba(15, 93, 168, 0.1);
}

.city-page .floating-wa a {
  background: #f28a2f !important;
  box-shadow: 0 16px 28px rgba(217, 106, 17, 0.28) !important;
}

.city-page .floating-wa a:hover {
  background: #e07116 !important;
}

.blog-shell.city-guide .article-link-card {
  border-color: rgba(15, 93, 168, 0.1);
  background: #fff;
  box-shadow: 0 12px 24px rgba(10, 58, 104, 0.06);
}

.blog-shell.city-guide .article-link-card strong {
  color: var(--brand-dark);
}

.blog-shell.city-guide .article-link-card span {
  color: #0f5da8;
}

.blog-shell.city-guide .article-faq {
  gap: 0.9rem;
}

.blog-shell.city-guide .article-faq > div,
.blog-shell.city-guide .article-step-list li {
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(15, 93, 168, 0.1);
  background: #fff;
  box-shadow: 0 12px 24px rgba(10, 58, 104, 0.05);
}

.blog-shell.city-guide .article-faq p {
  color: #234866;
}

.blog-shell.city-guide .article-rich-list li::marker {
  color: #0f5da8;
}

.blog-hero-card--teaching {
  position: relative;
  overflow: hidden;
}

.blog-hero-card--teaching::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -110px;
  top: -90px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(15, 93, 168, 0.16), transparent 68%);
  pointer-events: none;
}

.blog-topic-links {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.blog-topic-links a {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: #f6be7c;
  font-size: 0.8rem;
  line-height: 1.2;
}

.blog-topic-links a:hover {
  border-color: rgba(246, 190, 124, 0.35);
  background: rgba(246, 190, 124, 0.08);
}

.blog-card--seo {
  border-color: rgba(246, 190, 124, 0.18);
  background:
    linear-gradient(180deg, rgba(29, 50, 66, 0.94), rgba(14, 30, 40, 0.94)),
    var(--panel);
}

.blog-card--specialist {
  border-color: rgba(76, 196, 186, 0.22);
}

.blog-card--specialist span {
  color: #95f0d7;
}

.blog-card--category {
  border-color: rgba(255, 255, 255, 0.12);
}

.blog-card--category span {
  color: #f6be7c;
}

.news-shell .section-head h1 {
  margin: 0;
  color: #fff7ef;
}

.g1-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.9fr);
  gap: 1rem;
  margin-top: 1rem;
}

.g1-main,
.g1-card,
.g1-list-item {
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(20,36,49,0.95), rgba(12,24,33,0.94));
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
}

.g1-main {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.g1-main img {
  width: 100%;
  height: clamp(240px, 34vw, 360px);
  object-fit: cover;
}

.g1-main small,
.g1-card small,
.g1-list-item small {
  display: inline-block;
  margin: 0.85rem 1rem 0;
  color: #95f0d7;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.g1-main h2 {
  margin: 0.35rem 1rem 0;
  color: #fff7ef;
}

.g1-main p {
  margin: 0.55rem 1rem 1rem;
  color: var(--muted);
}

.g1-side-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.g1-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.g1-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.g1-card h3 {
  margin: 0.35rem 1rem 1rem;
  color: #fff7ef;
  font-size: 1rem;
}

.g1-list-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.g1-list-item {
  display: grid;
  grid-template-columns: 145px minmax(0, 1fr);
  gap: 0.75rem;
  overflow: hidden;
}

.g1-list-item img {
  width: 100%;
  height: 100%;
  min-height: 120px;
  object-fit: cover;
}

.g1-list-item h4 {
  margin: 0.25rem 1rem 0;
  color: #fff7ef;
  font-size: 0.98rem;
}

.g1-list-item p {
  margin: 0.5rem 1rem 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  margin-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  background: linear-gradient(180deg, rgba(19, 32, 51, 0.96), rgba(10, 18, 30, 0.98));
  color: #e6eef4;
  padding: 2rem 0 2.3rem;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.site-footer h3 {
  margin: 0 0 0.65rem;
  font-size: 1rem;
  color: #fff7ef;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.42rem;
}

.site-footer a {
  color: #b9cbd7;
  font-size: 0.9rem;
}

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

@media (max-width: 1180px) {
  .blog-grid--three,
  .article-link-stack--grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .g1-hero-grid {
    grid-template-columns: 1fr;
  }

  .g1-list-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .blog-grid--three,
  .blog-grid--two,
  .article-link-stack--grid {
    grid-template-columns: 1fr;
  }

  .blog-topic-links {
    flex-direction: column;
  }

  .g1-list-item {
    grid-template-columns: 1fr;
  }

  .g1-list-item img {
    min-height: 170px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .blog-hero-card,
  .article-hero-card,
  .article-panel,
  .blog-card {
    padding: 1.1rem;
  }

  .blog-shell.city-guide .nav__inner {
    margin-top: 0.7rem;
    margin-bottom: 0.7rem;
    padding: 0.62rem 0.72rem;
    border-radius: 18px;
  }

  .blog-shell.city-guide .nav__actions .btn {
    min-height: 40px;
    padding: 0.62rem 0.82rem;
    font-size: 0.78rem;
  }
}

/* Home nav minimalist override */
.home-page .nav__links {
  gap: 0.3rem;
  padding: 0.2rem;
  border: 1px solid rgba(24, 33, 44, 0.08);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
}

.home-page .nav__links a {
  padding: 0.42rem 0.62rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(24, 33, 44, 0.78);
  background: transparent;
}

.home-page .nav__links a:hover {
  background: rgba(255, 255, 255, 0.68);
  color: rgba(24, 33, 44, 0.95);
}

.home-page .nav__links a.is-active {
  background: rgba(255, 255, 255, 0.78);
  color: rgba(24, 33, 44, 0.98);
}

@media (max-width: 980px) {
  .home-page .nav__links {
    grid-template-columns: 1fr 1fr;
    gap: 0.22rem;
    padding: 0.2rem;
    border-radius: 14px;
    border-color: rgba(24, 33, 44, 0.06);
    background: rgba(255, 255, 255, 0.4);
  }

  .home-page .nav__links a {
    padding: 0.45rem 0.4rem;
    border-radius: 10px;
    text-align: center;
    font-size: 0.76rem;
    letter-spacing: 0.01em;
  }

  .home-page .nav__insights {
    opacity: 0.7;
    gap: 0.3rem;
    padding-bottom: 0.35rem;
  }

  .home-page .nav-chip {
    font-size: 0.64rem;
    padding: 0.26rem 0.48rem;
    animation: none;
  }
}

@media (max-width: 720px) {
  .home-page .nav__links {
    grid-template-columns: 1fr;
  }

  .home-page .nav__actions .btn {
    min-height: 40px;
    padding: 0.6rem 0.85rem;
    font-size: 0.8rem;
  }

  .home-page .nav__insights {
    display: none;
  }
}

/* Logo clean white base and back-to-top premium button */
.logo {
  padding: 0.2rem 0.62rem 0.2rem 0.22rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 24px rgba(14, 30, 46, 0.14);
}

.logo img {
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.logo:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(14, 30, 46, 0.2);
}

@media (min-width: 981px) {
  .logo {
    padding: 0.18rem 0.48rem 0.18rem 0.2rem;
    background: rgba(255, 255, 255, 0.96) !important;
  }
}

.back-to-top {
  position: fixed;
  right: 16px;
  bottom: 18px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(93, 176, 255, 0.52);
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(6, 43, 85, 0.95), rgba(19, 93, 175, 0.94));
  color: #f3f9ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  box-shadow:
    0 14px 26px rgba(8, 35, 64, 0.34),
    0 0 0 1px rgba(147, 208, 255, 0.2) inset;
  opacity: 0;
  transform: translateY(12px) scale(0.92);
  pointer-events: none;
  transition: opacity 0.24s ease, transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
  z-index: 85;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  animation: backTopBreath 2.4s ease-in-out infinite;
}

.back-to-top:hover {
  border-color: rgba(170, 224, 255, 0.96);
  transform: translateY(-4px) scale(1.06);
  box-shadow:
    0 20px 34px rgba(5, 35, 67, 0.46),
    0 0 0 1px rgba(173, 227, 255, 0.34) inset,
    0 0 18px rgba(83, 179, 255, 0.72),
    0 0 38px rgba(24, 119, 212, 0.45);
}

.back-to-top:focus-visible {
  outline: 2px solid rgba(175, 229, 255, 0.95);
  outline-offset: 3px;
}

@keyframes backTopBreath {
  0%,
  100% {
    box-shadow:
      0 14px 26px rgba(8, 35, 64, 0.34),
      0 0 0 1px rgba(147, 208, 255, 0.2) inset;
  }
  50% {
    box-shadow:
      0 18px 31px rgba(8, 35, 64, 0.42),
      0 0 0 1px rgba(171, 226, 255, 0.28) inset,
      0 0 16px rgba(83, 179, 255, 0.58);
  }
}

@media (max-width: 980px) {
  .back-to-top {
    right: 12px;
    bottom: 84px;
    width: 46px;
    height: 46px;
  }
}

/* Back-to-top integrated with menu (desktop + mobile), no circular background */
.back-to-top,
.back-to-top.is-visible {
  position: static !important;
  right: auto !important;
  bottom: auto !important;
  width: auto !important;
  height: auto !important;
  opacity: 1 !important;
  transform: none !important;
  pointer-events: auto !important;
  animation: none !important;
  border: 1px solid rgba(25, 84, 145, 0.18) !important;
  border-radius: 12px !important;
  background: rgba(255, 255, 255, 0.46) !important;
  box-shadow: none !important;
  color: rgba(17, 42, 68, 0.86) !important;
  font-size: 0.82rem !important;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 0.58rem 0.74rem !important;
  line-height: 1;
  z-index: auto !important;
}

.nav__links .back-to-top {
  margin-left: 0.2rem;
}

.back-to-top:hover {
  border-color: rgba(30, 110, 189, 0.46) !important;
  background: rgba(240, 248, 255, 0.9) !important;
  color: rgba(10, 58, 107, 0.98) !important;
  box-shadow:
    0 0 0 1px rgba(90, 174, 255, 0.22) inset,
    0 0 14px rgba(62, 154, 243, 0.26) !important;
}

@media (max-width: 980px) {
  .nav__links .back-to-top {
    margin-left: 0;
  }
}

@media (max-width: 720px) {
  .nav__links .back-to-top {
    width: 100%;
    text-align: center;
  }
}

/* Logo merged with menu background: no own backdrop */
.logo {
  padding: 0 !important;
  background: #fff !important;
  box-shadow: none !important;
  border: 0 !important;
}

.logo img {
  background: #fff !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
}

.logo:hover {
  background: transparent !important;
  box-shadow: none !important;
  transform: none !important;
}

/* Corporate logo sizing and typography spacing */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  background: #fff !important;
}

.logo img {
  width: 132px !important;
  height: 132px !important;
  object-fit: contain;
}

.logo__copy {
  display: inline-flex;
  flex-direction: column;
  gap: 0.08rem;
  line-height: 1.08;
}

.logo__copy strong {
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.logo__copy small {
  margin-top: 0.08rem;
  font-size: 0.68rem;
  letter-spacing: 0.11em;
  line-height: 1.1;
}

@media (max-width: 980px) {
  .logo {
    gap: 0.6rem;
  }

  .logo img {
    width: 128px !important;
    height: 128px !important;
  }

  .logo__copy strong {
    font-size: 0.96rem;
  }

  .logo__copy small {
    font-size: 0.64rem;
    letter-spacing: 0.09em;
  }
}

@media (max-width: 720px) {
  .logo {
    justify-content: flex-start;
    gap: 0.52rem;
  }

  .logo img {
    width: 128px !important;
    height: 128px !important;
  }

  .logo__copy strong {
    font-size: 0.88rem;
  }

  .logo__copy small {
    font-size: 0.6rem;
    letter-spacing: 0.08em;
  }
}

/* Mobile: correct spacing between logo and menu */
@media (max-width: 720px) {
  .nav__inner {
    row-gap: 0.18rem;
  }

  .brand-cluster {
    width: 100%;
    align-items: flex-start;
    gap: 0.14rem;
  }

  .logo {
    margin: 0;
  }

  .nav__links {
    margin-top: 0.02rem;
  }
}

/* Mobile centered header */
@media (max-width: 720px) {
  .brand-cluster {
    align-items: center !important;
  }

  .logo {
    justify-content: center !important;
    margin: 0 auto 0.2rem auto !important;
  }

  .nav__links {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Mobile logo: balanced size */
@media (max-width: 720px) {
  .logo img {
    width: 128px !important;
    height: 128px !important;
  }

  .logo {
    gap: 0.12rem;
  }

  .logo__copy strong {
    font-size: 0.8rem;
  }

  .logo__copy small {
    font-size: 0.56rem;
    letter-spacing: 0.07em;
  }
}

/* Home menu refresh: unified pill navigation */
.home-page .nav__inner {
  align-items: center;
  gap: 1.15rem;
  padding: 0.9rem 0;
}

.home-page .nav__links {
  flex: 1 1 auto;
  justify-content: flex-end;
  align-items: center;
  gap: 0.4rem;
  margin-left: auto;
  padding: 0.48rem;
  border: 1px solid rgba(15, 93, 168, 0.14);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 249, 252, 0.98));
  box-shadow: 0 12px 28px rgba(19, 32, 51, 0.06);
}

.home-page .nav__links a {
  padding: 0.72rem 1.02rem !important;
  border-radius: 999px !important;
  border: 1px solid rgba(15, 93, 168, 0.12);
  background: #fff !important;
  color: #0f5da8 !important;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
  box-shadow: none !important;
}

.home-page .nav__links a:hover {
  background: #fff8f1 !important;
  border-color: rgba(242, 138, 47, 0.35);
  color: #f28a2f !important;
}

.home-page .nav__links a.is-active,
.home-page .nav__links a:focus-visible {
  background: var(--brand) !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  border-color: var(--brand-dark);
  box-shadow: 0 10px 20px rgba(199, 100, 39, 0.22) !important;
}


@media (max-width: 980px) {
  .home-page .nav__inner {
    align-items: stretch;
  }

  .home-page .nav__links {
    width: 100%;
    margin-left: 0;
    justify-content: center;
    border-radius: 28px;
  }
}

@media (max-width: 720px) {
  .home-page .nav__inner {
    padding: 0.8rem 0 0.9rem;
  }

  .home-page .nav__links {
    gap: 0.34rem;
    padding: 0.4rem;
    border-radius: 24px;
  }

  .home-page .nav__links a {
    flex: 1 1 calc(50% - 0.34rem);
    padding: 0.66rem 0.7rem !important;
    text-align: center;
    font-size: 0.8rem;
  }

}

/* Brand colors on menu buttons (desktop + mobile) */
:root {
  --menu-brand-blue: #0f5da8;
  --menu-brand-orange: #f28a2f;
}

.nav__links a,
.back-to-top--menu {
  border: 1px solid rgba(15, 93, 168, 0.26);
  background: var(--menu-brand-blue);
  color: #fff;
}

.nav__links a:hover,
.back-to-top--menu:hover {
  border-color: rgba(242, 138, 47, 0.68);
  background: var(--menu-brand-orange);
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff;
  box-shadow: 0 10px 18px rgba(242, 138, 47, 0.24);
}

.nav__links a.is-active {
  border-color: rgba(242, 138, 47, 0.68);
  background: var(--menu-brand-orange);
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff;
  box-shadow: 0 10px 18px rgba(242, 138, 47, 0.24);
}

.nav__links a.is-active:hover {
  border-color: rgba(15, 93, 168, 0.42);
  background: var(--menu-brand-blue);
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff;
  box-shadow: 0 10px 18px rgba(15, 93, 168, 0.18);
}

@media (max-width: 720px) {
  .nav__links a,
  .back-to-top--menu {
    border-radius: 12px;
  }
}

/* Final logo balance: fair visual weight */
.logo {
  gap: 0.56rem !important;
}

.logo img {
  width: 330px !important;
  height: auto !important;
  max-height: 330px !important;
}

.logo__copy {
  gap: 0.06rem !important;
}

.logo__copy strong {
  font-size: 0.94rem !important;
}

.logo__copy small {
  font-size: 0.62rem !important;
  letter-spacing: 0.09em !important;
}

@media (max-width: 980px) {
  .logo img {
    width: 280px !important;
    height: auto !important;
    max-height: 280px !important;
  }

  .logo__copy strong {
    font-size: 0.84rem !important;
  }

  .logo__copy small {
    font-size: 0.58rem !important;
  }
}

@media (max-width: 720px) {
  .logo img {
    width: 300px !important;
    height: auto !important;
    max-height: 300px !important;
  }

  .logo {
    gap: 0.36rem !important;
  }

  .logo__copy strong {
    font-size: 0.76rem !important;
  }

  .logo__copy small {
    font-size: 0.52rem !important;
    letter-spacing: 0.07em !important;
  }
}

/* Final: floating back-to-top arrow on right side */
.back-to-top,
.back-to-top.is-visible {
  position: fixed !important;
  right: 16px !important;
  bottom: 18px !important;
  width: 46px !important;
  height: 46px !important;
  padding: 0 !important;
  border-radius: 999px !important;
  border: 1px solid rgba(83, 174, 255, 0.55) !important;
  background: linear-gradient(145deg, rgba(6, 43, 85, 0.95), rgba(19, 93, 175, 0.94)) !important;
  color: #f3f9ff !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.25rem !important;
  line-height: 1 !important;
  z-index: 85 !important;
}

.back-to-top {
  opacity: 0 !important;
  transform: translateY(12px) scale(0.92) !important;
  pointer-events: none !important;
  transition: opacity 0.24s ease, transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease !important;
  box-shadow:
    0 14px 26px rgba(8, 35, 64, 0.34),
    0 0 0 1px rgba(147, 208, 255, 0.2) inset !important;
}

.back-to-top.is-visible {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
  pointer-events: auto !important;
}

.back-to-top:hover {
  transform: translateY(-4px) scale(1.06) !important;
  border-color: rgba(170, 224, 255, 0.96) !important;
  box-shadow:
    0 20px 34px rgba(5, 35, 67, 0.46),
    0 0 0 1px rgba(173, 227, 255, 0.34) inset,
    0 0 18px rgba(83, 179, 255, 0.72) !important;
}

@media (max-width: 980px) {
  .back-to-top,
  .back-to-top.is-visible {
    right: 12px !important;
    bottom: 84px !important;
    width: 44px !important;
    height: 44px !important;
  }
}

/* Back-to-top in footer (not floating) */
.back-to-top.back-to-top--footer,
.back-to-top.back-to-top--footer.is-visible {
  position: static !important;
  right: auto !important;
  bottom: auto !important;
  opacity: 1 !important;
  transform: none !important;
  pointer-events: auto !important;
  margin: 0.8rem 0 0 auto !important;
  display: flex !important;
  width: 42px !important;
  height: 42px !important;
  z-index: auto !important;
}

/* Menu clean: blue default, orange on selected */
.nav__links a,
.nav__links a:hover,
.nav__links a.is-active,
.nav__links a:focus-visible,
.back-to-top--menu,
.back-to-top--menu:hover {
  -webkit-text-stroke: 0 !important;
  text-shadow: none !important;
  box-shadow: none !important;
}

.nav__links a {
  color: #fff !important;
}

.nav__links a:hover,
.nav__links a:focus-visible {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  background-image: none !important;
}

.nav__links a.is-active {
  background: var(--menu-brand-orange) !important;
  border-color: rgba(242, 138, 47, 0.68) !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  box-shadow: 0 10px 18px rgba(242, 138, 47, 0.24) !important;
}

/* Mobile logo bigger */
@media (max-width: 720px) {
  .home-page .hero__grid {
    grid-template-columns: 1fr !important;
  }

  .home-page .hero__content {
    padding: 1.15rem !important;
  }

  .home-page .eyebrow--principal,
  .home-page .eyebrow__principal-copy {
    width: 100%;
    justify-content: center;
    text-align: center;
    white-space: normal;
  }

  .home-page .hero h1 {
    max-width: 100% !important;
    font-size: clamp(2rem, 8.6vw, 3rem) !important;
    line-height: 1.02;
  }

  .home-page .hero-title span {
    max-width: none !important;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .home-page .hero-badges--focus {
    grid-template-columns: 1fr !important;
    gap: 0.5rem;
    align-items: stretch;
  }

  .home-page .hero-badges--focus .badge {
    width: 100%;
    min-width: 0;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
    min-height: 64px;
    padding: 0.72rem 0.78rem;
    font-size: 0.84rem;
    line-height: 1.3;
    gap: 0.5rem;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .home-page .hero-badges--focus .badge:nth-child(2) {
    grid-column: auto;
  }

  .home-page .hero-badges--focus .badge__icon {
    width: 16px;
    height: 16px;
    margin-top: 0;
  }

  .logo img {
    width: 300px !important;
    height: auto !important;
    max-height: 300px !important;
  }

  .eyebrow__flag {
    width: 20px;
    height: 14px;
  }
}

/* Arrow centered in footer and using menu blue */
.back-to-top.back-to-top--footer,
.back-to-top.back-to-top--footer.is-visible {
  margin: 0.8rem auto 0 auto !important;
  border-color: rgba(15, 93, 168, 0.55) !important;
  background: linear-gradient(145deg, rgba(15, 93, 168, 0.96), rgba(11, 72, 130, 0.96)) !important;
  color: #ffffff !important;
}


.back-to-top.back-to-top--footer:hover {
  border-color: rgba(15, 93, 168, 0.9) !important;
  background: linear-gradient(145deg, rgba(17, 105, 186, 0.98), rgba(13, 83, 149, 0.98)) !important;
}

/* WhatsApp button in brand orange */
.floating-wa a {
  background: linear-gradient(135deg, #f28a2f, #d96a11) !important;
  color: #ffffff !important;
  border: 1px solid rgba(184, 88, 18, 0.42) !important;
  box-shadow: 0 16px 28px rgba(217, 106, 17, 0.28) !important;
}

.floating-wa a:hover {
  background: linear-gradient(135deg, #ff9b45, #e07116) !important;
}

/* WhatsApp button with corner flame effect */
.floating-wa a {
  position: relative;
  overflow: visible;
}

.floating-wa a::before {
  content: none;
}

/* Pride badge outside CTA panel, subtle and below service actions */
.state-pride--cta-outside {
  margin: 0.62rem auto 0;
  justify-content: center;
  width: fit-content;
  opacity: 0.88;
  transform: scale(0.96);
  background: rgba(255, 255, 255, 0.46);
  border-color: rgba(24, 33, 44, 0.09);
  box-shadow: none;
}

@media (max-width: 720px) {
  .state-pride--cta-outside {
    margin-top: 0.45rem;
    padding: 0.2rem 0.45rem 0.2rem 0.28rem;
    opacity: 0.84;
  }
}

/* Back-to-top centered and discreet */
.back-to-top.back-to-top--footer,
.back-to-top.back-to-top--footer.is-visible {
  margin: 0.7rem auto 0 auto !important;
  width: 34px !important;
  height: 34px !important;
  font-size: 0.95rem !important;
  border: 1px solid rgba(15, 93, 168, 0.22) !important;
  background: rgba(15, 93, 168, 0.08) !important;
  color: rgba(15, 93, 168, 0.85) !important;
  box-shadow: none !important;
  opacity: 0.9 !important;
}

.back-to-top.back-to-top--footer:hover {
  background: rgba(15, 93, 168, 0.14) !important;
  color: rgba(15, 93, 168, 0.95) !important;
  transform: none !important;
  box-shadow: none !important;
}

/* Back-to-top side arrow in the middle of the screen */
.back-to-top.back-to-top--side,
.back-to-top.back-to-top--side.is-visible {
  position: fixed !important;
  right: 16px !important;
  top: 50% !important;
  bottom: auto !important;
  margin: 0 !important;
  width: 42px !important;
  height: 42px !important;
  padding: 0 !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark)) !important;
  color: #fff !important;
  box-shadow: 0 14px 28px rgba(24, 33, 44, 0.16) !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(-50%) translateX(12px) scale(0.92) !important;
  transition: opacity 0.24s ease, transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease !important;
  z-index: 90 !important;
}

.back-to-top.back-to-top--side.is-visible {
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translateY(-50%) translateX(0) scale(1) !important;
}

.back-to-top.back-to-top--side:hover {
  border-color: rgba(255, 255, 255, 0.38) !important;
  box-shadow: 0 18px 34px rgba(24, 33, 44, 0.22) !important;
  transform: translateY(-50%) translateX(-2px) scale(1.03) !important;
}

@media (max-width: 720px) {
  .back-to-top.back-to-top--side,
  .back-to-top.back-to-top--side.is-visible {
    right: 10px !important;
    width: 40px !important;
    height: 40px !important;
  }
}

/* Home header: blue menu buttons, orange selected, logo zone white */
.home-page .logo {
  background: rgba(255, 255, 255, 0.98) !important;
}

.home-page .nav__links > a {
  background: var(--menu-brand-blue) !important;
  border-color: rgba(255, 255, 255, 0.22) !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}

.home-page .nav__links > a:hover,
.home-page .nav__links > a:focus-visible {
  background: var(--menu-brand-orange) !important;
  border-color: rgba(242, 138, 47, 0.68) !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  box-shadow: 0 10px 18px rgba(242, 138, 47, 0.24) !important;
}

.home-page .nav__links > a.is-active,
.home-page .nav__links > a.is-active:hover,
.home-page .nav__links > a.is-active:focus-visible {
  background: var(--menu-brand-orange) !important;
  border-color: rgba(242, 138, 47, 0.68) !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  box-shadow: 0 10px 18px rgba(242, 138, 47, 0.24) !important;
}

.home-page .nav__links > a.is-active:hover {
  background: var(--menu-brand-blue) !important;
  border-color: rgba(15, 93, 168, 0.42) !important;
  box-shadow: 0 10px 18px rgba(15, 93, 168, 0.18) !important;
}

.home-page .nav__links > a:hover:not(.is-active) {
  transform: translateY(-1px);
}

/* Home header flattening: remove menu outline and blend into the white header */
.home-page .nav {
  background: #fff !important;
  border-radius: 0 !important;
  overflow: visible !important;
}

.home-page .nav__inner {
  background: #fff !important;
  padding: 0.52rem 0 0 !important;
}

.home-page .nav__links {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

/* City pages: match the home navigation treatment */
.city-page .nav {
  background: #fff !important;
  border-radius: 0 !important;
  overflow: visible !important;
}

.city-page .nav__inner {
  background: #fff !important;
  align-items: center;
  gap: 1.15rem;
  padding: 0.52rem 0 0;
}

.city-page .nav__links {
  flex: 1 1 auto;
  justify-content: flex-end;
  align-items: center;
  gap: 0.4rem;
  margin-left: auto;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

.city-page .nav__links > a {
  padding: 0.72rem 1.02rem !important;
  border-radius: 999px !important;
  border: 1px solid rgba(15, 93, 168, 0.12);
  background: #fff !important;
  color: #0f5da8 !important;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
  box-shadow: none !important;
}

.city-page .nav__links > a:hover,
.city-page .nav__links > a:focus-visible {
  background: #eef6ff !important;
  border-color: rgba(15, 93, 168, 0.25);
  color: #f28a2f !important;
  -webkit-text-fill-color: #f28a2f !important;
}

.city-page .nav__links > a.is-active,
.city-page .nav__links > a.is-active:hover,
.city-page .nav__links > a.is-active:focus-visible {
  background: #fff8f1 !important;
  color: #f28a2f !important;
  -webkit-text-fill-color: #f28a2f !important;
  border-color: rgba(242, 138, 47, 0.45);
  box-shadow: 0 10px 20px rgba(242, 138, 47, 0.18) !important;
}

.city-page .nav__links > a.is-active:hover {
  background: #fff3e8 !important;
  border-color: rgba(242, 138, 47, 0.58) !important;
  box-shadow: 0 10px 18px rgba(242, 138, 47, 0.2) !important;
}

.city-page .nav__links > a:hover:not(.is-active) {
  transform: translateY(-1px);
}

@media (max-width: 980px) {
  .city-page .nav__inner {
    align-items: stretch;
  }

  .city-page .nav__links {
    width: 100%;
    margin-left: 0;
    justify-content: center;
    border-radius: 28px;
  }
}

@media (max-width: 720px) {
  .home-page .nav__inner,
  .city-page .nav__inner {
    padding: 0.46rem 0 0 !important;
  }

  .city-page .nav__inner {
    gap: 0.65rem;
    padding: 0.46rem 0 0 !important;
  }

  .city-page .nav__links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.42rem;
    width: 100%;
  }

.city-page .nav__links > a {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0.72rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}
}
