:root {
  --petroleum: #0f3d3e;
  --steel: #0077b6;
  --silver: #c3cbd3;
  --graphite: #2b2b2b;
  --black: #0a0a0a;
  --ice: #f8f8f8;
  --white: #ffffff;
  --muted: #66727d;
  --line: rgba(195, 203, 211, 0.56);
  --line-dark: rgba(195, 203, 211, 0.18);
  --shadow: 0 24px 70px rgba(10, 10, 10, 0.13);
  --soft-shadow: 0 16px 44px rgba(10, 10, 10, 0.08);
  --gradient: linear-gradient(135deg, #0a0a0a 0%, #0f3d3e 45%, #0077b6 100%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--black);
  background: var(--ice);
  line-height: 1.6;
  text-rendering: geometricPrecision;
}

body::selection {
  color: var(--white);
  background: var(--petroleum);
}

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

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -120px;
  z-index: 30;
  padding: 10px 14px;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--line);
}

.skip-link:focus {
  top: 14px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(248, 248, 248, 0.91);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--black);
  text-decoration: none;
}

.brand-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 8px 18px rgba(10, 10, 10, 0.16));
}

.brand-image {
  width: 232px;
  height: 74px;
  overflow: hidden;
  background: var(--black);
  border: 1px solid rgba(195, 203, 211, 0.26);
  border-radius: 7px;
}

.brand-square {
  width: 92px;
  height: 92px;
  aspect-ratio: 1 / 1;
  background: #0d2134;
}

.footer-logo.brand-square {
  width: 104px;
  height: 104px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--silver);
  background: var(--gradient);
  border: 1px solid rgba(195, 203, 211, 0.4);
  border-radius: 6px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.45rem;
}

.brand strong,
.site-footer strong {
  display: block;
  letter-spacing: 0;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--graphite);
  font-size: 0.91rem;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:not(.nav-cta):hover {
  color: var(--steel);
}

.language-link {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: var(--petroleum);
  border: 1px solid rgba(15, 61, 62, 0.18);
  border-radius: 999px;
  background: rgba(248, 248, 248, 0.72);
  white-space: nowrap;
}

.language-link:hover,
.language-link:focus-visible {
  color: var(--white) !important;
  border-color: rgba(0, 119, 182, 0.55);
  background: var(--steel);
}

.nav-cta,
.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 800;
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.nav-cta,
.button.primary {
  color: var(--white);
  background: var(--petroleum);
  box-shadow: 0 16px 36px rgba(15, 61, 62, 0.2);
}

.nav-cta:hover,
.button.primary:hover {
  background: var(--steel);
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(0, 119, 182, 0.22);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(195, 203, 211, 0.66);
}

.button.secondary:hover {
  color: var(--white);
  background: rgba(195, 203, 211, 0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.button.secondary.dark {
  color: var(--black);
  border-color: var(--line);
}

.button.secondary.dark:hover {
  color: var(--white);
  background: var(--petroleum);
  border-color: var(--petroleum);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--black);
}

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.hero-picture,
.hero-picture img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-picture img {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.97), rgba(15, 61, 62, 0.78) 48%, rgba(0, 119, 182, 0.18)),
    linear-gradient(135deg, rgba(10, 10, 10, 0.68) 0%, rgba(15, 61, 62, 0.32) 45%, rgba(0, 119, 182, 0.2) 100%);
}

.hero-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(195, 203, 211, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(195, 203, 211, 0.07) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.58), transparent 74%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 390px);
  gap: 44px;
  align-items: end;
  padding: 88px 0 58px;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--steel);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
}

h1 {
  max-width: 760px;
  font-size: clamp(3.45rem, 5.8vw, 5.05rem);
}

h2 {
  font-size: 3.55rem;
}

h3 {
  font-size: 1.12rem;
}

.hero-subtitle {
  max-width: 680px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.18rem;
}

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

.hero-panel {
  display: grid;
  gap: 1px;
  background: rgba(195, 203, 211, 0.22);
  border: 1px solid rgba(195, 203, 211, 0.3);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-panel div {
  padding: 24px;
  background: rgba(10, 10, 10, 0.56);
}

.hero-panel span,
.metrics-grid span,
.proof-list span {
  display: block;
  color: var(--steel);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  margin-top: 7px;
  font-size: 1.04rem;
}

.hero-profile {
  align-self: stretch;
  display: grid;
  align-content: end;
  min-height: 540px;
  position: relative;
}

.profile-image-wrap {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  background:
    radial-gradient(circle at 48% 34%, rgba(195, 203, 211, 0.22), transparent 42%),
    linear-gradient(180deg, rgba(248, 248, 248, 0.96), rgba(195, 203, 211, 0.16));
  border: 1px solid rgba(195, 203, 211, 0.36);
  box-shadow: var(--shadow);
}

.profile-image-wrap::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(15, 61, 62, 0.16);
  pointer-events: none;
}

.profile-image-wrap img {
  position: absolute;
  inset: auto 0 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  filter: saturate(0.94) contrast(1.02);
}

.profile-caption {
  position: relative;
  width: calc(100% - 36px);
  margin: -74px auto 0;
  padding: 22px 24px;
  color: var(--white);
  background: rgba(10, 10, 10, 0.72);
  border: 1px solid rgba(195, 203, 211, 0.28);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.profile-caption span {
  display: block;
  color: var(--silver);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.profile-caption strong {
  display: block;
  margin-top: 6px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.76rem;
  line-height: 1;
}

.profile-caption p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.94rem;
}

.section {
  padding: 96px 0;
}

.split {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 64px;
}

.rich-text p,
.section-head p,
.editorial p,
.final-card p,
.section-note {
  margin: 0;
  color: var(--graphite);
  font-size: 1.04rem;
}

.rich-text p + p,
.mvv-card p + p {
  margin-top: 18px;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 54px;
  border: 1px solid var(--line);
  background: var(--line);
  box-shadow: var(--soft-shadow);
}

.metrics-grid article {
  min-height: 210px;
  padding: 28px;
  background: var(--white);
}

.metrics-grid strong {
  display: block;
  margin-top: 10px;
  color: var(--petroleum);
  font-size: 1.34rem;
}

.metrics-grid p,
.authority-grid p,
.service-card p,
.mvv-card p,
.proof-list p {
  margin: 14px 0 0;
  color: var(--muted);
}

.authority-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.authority-grid article,
.service-card,
.mvv-card,
.proof-list article,
.article-card {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
}

.authority-grid article {
  min-height: 220px;
  padding: 28px;
  border-top: 3px solid transparent;
  transition: border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.authority-grid article:hover {
  border-color: var(--steel);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.authority-grid strong {
  display: block;
  color: var(--petroleum);
  font-size: 1.05rem;
}

.mvv {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(248, 248, 248, 0.72), rgba(248, 248, 248, 0.9)),
    var(--ice);
}

.mvv::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/images/mapa-limpo.jpg") center / min(1180px, 96vw) auto no-repeat;
  filter: saturate(1.05) contrast(1.08);
  opacity: 0.34;
  pointer-events: none;
}

.mvv::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(248, 248, 248, 0.78) 0%, rgba(248, 248, 248, 0.34) 48%, rgba(248, 248, 248, 0.82) 100%),
    linear-gradient(180deg, rgba(15, 61, 62, 0.02), rgba(0, 119, 182, 0.04));
  pointer-events: none;
}

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

.section-head {
  max-width: 860px;
}

.section-head p {
  margin-top: 16px;
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.mvv-card {
  min-height: 360px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px);
}

.mvv-card.featured {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.93));
}

.mvv-card span {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--steel);
  font-weight: 800;
  text-transform: uppercase;
}

.mvv-card h3 {
  color: var(--petroleum);
  font-size: 1.46rem;
}

.mvv-card ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mvv-card li {
  color: var(--muted);
}

.mvv-card li strong {
  display: block;
  color: var(--black);
}

.services {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(10, 10, 10, 0.98), rgba(15, 61, 62, 0.94) 48%, rgba(0, 119, 182, 0.78)),
    var(--black);
}

.services .section-head p {
  color: rgba(255, 255, 255, 0.72);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 44px;
}

.service-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  color: var(--black);
  border-color: rgba(195, 203, 211, 0.34);
  transition: border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.service-card:hover {
  border-color: rgba(0, 119, 182, 0.68);
  transform: translateY(-5px);
  box-shadow: 0 28px 78px rgba(10, 10, 10, 0.2);
}

.service-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  color: var(--steel);
  background: rgba(0, 119, 182, 0.08);
  border: 1px solid rgba(0, 119, 182, 0.22);
  border-radius: 6px;
  font-weight: 800;
}

.service-card h3 {
  color: var(--petroleum);
  font-size: 1.35rem;
}

.service-card .service-cta {
  width: fit-content;
  max-width: 100%;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding: 7px 18px 7px 7px;
  color: var(--petroleum);
  font-weight: 800;
  text-decoration: none;
  background: linear-gradient(135deg, rgba(248, 248, 248, 0.98), rgba(195, 203, 211, 0.2));
  border: 1px solid rgba(15, 61, 62, 0.18);
  border-radius: 999px;
  box-shadow: 0 16px 38px rgba(10, 10, 10, 0.1);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.service-card .service-cta:hover,
.service-card .service-cta:focus-visible {
  color: var(--petroleum);
  background: var(--white);
  border-color: rgba(0, 119, 182, 0.55);
  box-shadow: 0 22px 50px rgba(0, 119, 182, 0.18);
  transform: translateY(-2px);
}

.service-cta-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--black);
  border: 1px solid rgba(195, 203, 211, 0.54);
  border-radius: 50%;
  box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.18);
}

.service-cta-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.08);
}

.service-cta-text {
  display: grid;
  gap: 3px;
  line-height: 1.05;
}

.service-cta-text span {
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel);
}

.service-cta-text small {
  font-size: 0.9rem;
  color: var(--graphite);
}

.editorial {
  background:
    linear-gradient(90deg, rgba(248, 248, 248, 0.96), rgba(195, 203, 211, 0.22)),
    var(--white);
}

.editorial-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.editorial p {
  margin-top: 18px;
}

.topics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.topics span,
.topics button {
  padding: 12px 14px;
  color: var(--petroleum);
  background: rgba(195, 203, 211, 0.2);
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.topics button:hover,
.topics button.is-active {
  color: var(--white);
  background: var(--petroleum);
  border-color: var(--petroleum);
}

.editorial-actions {
  margin-top: 26px;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 44px;
}

.article-card {
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.article-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 119, 182, 0.52);
  box-shadow: var(--shadow);
}

.article-card a {
  display: block;
  min-height: 100%;
  color: inherit;
  text-decoration: none;
}

.article-card img {
  width: 100%;
  aspect-ratio: 1.5 / 1;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.04);
}

.article-card span {
  display: inline-block;
  margin: 22px 24px 10px;
  color: var(--steel);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.article-card h3 {
  padding: 0 24px;
  color: var(--petroleum);
  font-size: 1.18rem;
}

.article-card p {
  padding: 0 24px 24px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.94rem;
}

.blogger-posts.is-feed-unavailable .article-card-fallback h3::after {
  content: " Acesse o blog original pelo link acima.";
}

.social-proof {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(248, 248, 248, 0.96), rgba(241, 243, 244, 0.94)),
    radial-gradient(circle at 85% 10%, rgba(0, 119, 182, 0.12), transparent 34%);
}

.social-proof::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(15, 61, 62, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 61, 62, 0.055) 1px, transparent 1px);
  background-size: 76px 76px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}

.reviews-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(28px, 4vw, 52px);
  align-items: stretch;
}

.reviews-copy {
  position: sticky;
  top: 110px;
}

.review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.reviews-panel {
  padding: 10px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(195, 203, 211, 0.72);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(16px);
}

.google-proof-visual {
  position: relative;
  width: min(60%, 420px);
  margin: 0;
  margin-inline: auto;
  overflow: hidden;
  border-radius: 7px;
  background: var(--black);
}

.google-proof-image-link {
  position: relative;
  display: block;
  color: var(--white);
}

.google-proof-image-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.38) 0%, rgba(10, 10, 10, 0) 34%, rgba(10, 10, 10, 0.18) 100%),
    linear-gradient(135deg, rgba(15, 61, 62, 0.42), rgba(0, 119, 182, 0.04) 42%);
  pointer-events: none;
}

.google-proof-image-link img {
  display: block;
  width: 100%;
  height: auto;
}

.google-proof-image {
  width: min(100%, 460px);
  margin: 0;
  justify-self: center;
  align-self: start;
  overflow: hidden;
  background: var(--black);
  border: 1px solid rgba(195, 203, 211, 0.28);
  border-radius: 7px;
  box-shadow: var(--soft-shadow);
}

.google-proof-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.trust-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
}

.trust-card p {
  margin-top: 0;
}

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

.trust-metrics div {
  padding: 16px;
  background: rgba(15, 61, 62, 0.06);
  border: 1px solid rgba(15, 61, 62, 0.12);
  border-radius: 7px;
}

.trust-metrics span {
  display: block;
  color: var(--steel);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.trust-metrics strong {
  display: block;
  margin-top: 8px;
  color: var(--petroleum);
  font-size: 1.05rem;
}

.trust-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  padding-left: 18px;
  position: relative;
  color: var(--graphite);
}

.trust-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  background: var(--steel);
  border-radius: 50%;
}

.google-proof-caption {
  position: absolute;
  top: 48%;
  left: clamp(12px, 2.4vw, 20px);
  transform: translateY(-50%);
  z-index: 1;
  max-width: min(235px, 44%);
  padding: 12px 14px;
  background: rgba(10, 10, 10, 0.58);
  border: 1px solid rgba(195, 203, 211, 0.32);
  border-radius: 8px;
  box-shadow: 0 20px 42px rgba(10, 10, 10, 0.18);
  backdrop-filter: blur(10px);
}

.google-proof-caption span {
  display: block;
  color: var(--silver);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.google-proof-caption strong {
  display: block;
  margin-top: 8px;
  color: var(--white);
  font-size: clamp(0.82rem, 1.4vw, 1.02rem);
  line-height: 1.34;
}

.section-note {
  margin-top: 24px;
  color: var(--petroleum);
  font-weight: 800;
}

.proof-list {
  display: grid;
  gap: 14px;
}

.proof-list article {
  padding: 24px;
  border-left: 4px solid var(--steel);
}

.proof-list h3 {
  margin-top: 8px;
  color: var(--petroleum);
  font-size: 1.16rem;
}

.final-cta {
  padding: 76px 0;
  background: var(--black);
}

.final-card {
  padding: 72px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(10, 10, 10, 0.93) 0%, rgba(15, 61, 62, 0.9) 45%, rgba(0, 119, 182, 0.72) 100%),
    url("https://images.unsplash.com/photo-1494522855154-9297ac14b55f?auto=format&fit=crop&w=1600&q=78") center/cover;
  border: 1px solid rgba(195, 203, 211, 0.28);
  box-shadow: var(--shadow);
}

.conversion-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: 44px;
  align-items: start;
}

.final-card p {
  max-width: 780px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.8);
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  color: var(--black);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(195, 203, 211, 0.46);
  box-shadow: var(--shadow);
}

.form-field {
  display: grid;
  gap: 6px;
}

.form-field label {
  color: var(--petroleum);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
}

.form-field textarea {
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid rgba(0, 119, 182, 0.26);
  border-color: var(--steel);
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.form-feedback {
  min-height: 22px;
  margin: 0;
  color: var(--petroleum) !important;
  font-weight: 800;
}

.site-footer {
  padding: 54px 0 28px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--black);
  border-top: 1px solid var(--line-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(170px, 1fr));
  gap: 34px;
}

.footer-brand p {
  max-width: 360px;
  margin: 20px 0 0;
}

.footer-logo {
  color: var(--white);
}

.footer-logo img {
  object-position: 50% 58%;
}

.footer-logo {
  width: 248px;
  height: 72px;
}

.site-footer nav,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 10px;
  font-style: normal;
}

.site-footer nav strong,
.footer-contact strong {
  color: var(--white);
  margin-bottom: 6px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.74);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
  font-size: 0.9rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-signature {
  display: grid;
  gap: 7px;
  max-width: 720px;
}

.footer-signature p + p {
  color: rgba(255, 255, 255, 0.58);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}

.back-to-top {
  color: var(--silver) !important;
  font-weight: 800;
}

.subpage-main {
  background: var(--ice);
}

.subpage-hero {
  padding: 96px 0 74px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(10, 10, 10, 0.96), rgba(15, 61, 62, 0.88) 48%, rgba(0, 119, 182, 0.64)),
    var(--black);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.breadcrumb a {
  color: var(--silver);
  text-decoration: none;
}

.subpage-hero h1 {
  max-width: 860px;
  font-size: 4rem;
}

.subpage-hero p {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.14rem;
}

.content-band {
  padding: 72px 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
}

.content-panel {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
}

.content-panel h2 {
  font-size: 2.2rem;
}

.content-panel h3 {
  margin-top: 24px;
  color: var(--petroleum);
  font-size: 1.2rem;
}

.content-panel p,
.content-panel li {
  color: var(--muted);
}

.content-panel ul {
  display: grid;
  gap: 10px;
  padding-left: 18px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.toc-panel {
  position: sticky;
  top: 116px;
  display: grid;
  gap: 10px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
}

.toc-panel strong {
  color: var(--petroleum);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.28rem;
}

.toc-panel a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
}

.toc-panel a:hover {
  color: var(--steel);
}

.longform {
  padding: clamp(28px, 4vw, 56px);
}

.longform section + section {
  margin-top: clamp(44px, 6vw, 76px);
  padding-top: clamp(34px, 5vw, 56px);
  border-top: 1px solid var(--line);
}

.longform h2 {
  max-width: 820px;
  color: var(--petroleum);
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.longform h3 {
  margin-top: 26px;
  color: var(--petroleum);
  font-size: 1.22rem;
}

.longform p {
  max-width: 900px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.78;
}

.lead-text {
  color: var(--graphite) !important;
  font-size: clamp(1.08rem, 2vw, 1.25rem) !important;
}

.highlight-line {
  padding: 22px 24px;
  color: var(--petroleum) !important;
  background: linear-gradient(135deg, rgba(15, 61, 62, 0.08), rgba(0, 119, 182, 0.08));
  border-left: 4px solid var(--steel);
  font-weight: 900;
}

.map-section {
  display: grid;
  gap: 24px;
}

.map-card {
  margin: 10px 0 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(195, 203, 211, 0.78);
  box-shadow: var(--soft-shadow);
}

.map-card img {
  display: block;
  width: 100%;
  max-height: 620px;
  object-fit: contain;
  background: var(--white);
}

.map-card figcaption {
  padding: 18px 22px;
  color: var(--petroleum);
  background: rgba(248, 248, 248, 0.94);
  font-weight: 900;
}

.wide-visual-card {
  margin: 30px 0 0;
  overflow: hidden;
  background: var(--black);
  border: 1px solid rgba(195, 203, 211, 0.78);
  box-shadow: var(--soft-shadow);
}

.wide-visual-card img {
  display: block;
  width: 100%;
  height: auto;
}

.territory-authority {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 44px);
  align-items: center;
}

.territory-photo {
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(195, 203, 211, 0.78);
  box-shadow: var(--soft-shadow);
}

.territory-photo img {
  display: block;
  width: 100%;
  height: auto;
}

.state-list,
.brand-list {
  display: flex !important;
  flex-wrap: wrap;
  gap: 10px !important;
  padding-left: 0 !important;
  list-style: none;
}

.state-list li,
.brand-list li {
  padding: 9px 12px;
  color: var(--petroleum);
  background: rgba(15, 61, 62, 0.07);
  border: 1px solid rgba(15, 61, 62, 0.12);
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 800;
}

.credential-card,
.cta-panel,
.differentials-grid article {
  background: linear-gradient(135deg, rgba(15, 61, 62, 0.08), rgba(0, 119, 182, 0.05));
  border: 1px solid rgba(15, 61, 62, 0.14);
}

.credential-card {
  margin-top: 24px;
  padding: 26px;
}

.credential-card p {
  margin-top: 10px;
  color: var(--petroleum);
  font-weight: 900;
}

.credential-card ul {
  margin-top: 18px;
}

.two-column-list {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 28px !important;
  margin-top: 20px;
}

.variables-grid,
.method-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.variables-grid article,
.method-steps article {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 42px rgba(10, 10, 10, 0.06);
}

.variables-grid h3,
.method-steps h3 {
  margin-top: 0;
}

.variables-grid p,
.method-steps p {
  margin-top: 12px;
  font-size: 0.96rem;
}

.method-steps span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  color: var(--white);
  background: var(--petroleum);
  border-radius: 50%;
  font-weight: 900;
}

.differentials-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.differentials-grid article {
  padding: 22px;
}

.differentials-grid h3 {
  margin-top: 0;
}

.differentials-grid p {
  margin-top: 12px;
  font-size: 0.96rem;
}

.cta-panel {
  padding: clamp(28px, 4vw, 44px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(10, 10, 10, 0.96), rgba(15, 61, 62, 0.9) 50%, rgba(0, 119, 182, 0.72)),
    var(--black);
}

.cta-panel h2,
.cta-panel p {
  color: var(--white) !important;
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.78) !important;
}

.cta-panel .hero-actions {
  margin-top: 26px;
}

.contact-spotlight {
  min-height: 60px;
  padding-inline: 30px;
  background: var(--steel) !important;
  box-shadow: 0 22px 48px rgba(0, 119, 182, 0.3);
  font-size: 1rem;
}

.contact-spotlight:hover {
  background: var(--white) !important;
  color: var(--petroleum) !important;
  transform: translateY(-3px);
}

.article-meta {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.floating-contact {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 18;
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  color: var(--white);
  text-decoration: none;
  background: rgba(10, 10, 10, 0.72);
  border: 1px solid rgba(195, 203, 211, 0.34);
  border-radius: 50%;
  box-shadow: 0 18px 48px rgba(10, 10, 10, 0.24);
  backdrop-filter: blur(14px);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.floating-contact:hover {
  transform: translateY(-4px) scale(1.03);
  border-color: rgba(0, 119, 182, 0.76);
  background: rgba(15, 61, 62, 0.82);
}

.floating-contact img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.34));
}

.floating-contact span {
  position: absolute;
  left: 50%;
  bottom: -9px;
  transform: translateX(-50%);
  padding: 3px 8px;
  color: var(--white);
  background: var(--petroleum);
  border: 1px solid rgba(195, 203, 211, 0.28);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
}

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

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

  h2 {
    font-size: 2.8rem;
  }

  .hero-grid,
  .split,
  .editorial-grid,
  .reviews-layout,
  .conversion-card {
    grid-template-columns: 1fr;
  }

  .reviews-copy {
    position: static;
  }

  .hero-profile,
  .hero-copy {
    max-width: 780px;
  }

  .hero-profile {
    min-height: auto;
  }

  .profile-image-wrap {
    min-height: 470px;
  }

  .metrics-grid,
  .authority-grid,
  .mvv-grid,
  .services-grid,
  .articles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .toc-panel {
    position: static;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

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

  .reviews-panel {
    padding: 12px;
  }

  .google-proof-visual {
    width: min(76%, 360px);
  }

  .google-proof-image {
    width: min(100%, 420px);
  }

  h1 {
    font-size: 2.9rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  .hero-subtitle {
    font-size: 1.04rem;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 96px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 10px 4px;
  }

  .site-nav .language-link {
    justify-content: center;
    padding: 10px 12px;
  }

  .nav-cta {
    color: var(--white);
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding: 86px 0 50px;
  }

  .hero-actions,
  .footer-bottom {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .brand-image img {
    width: 100%;
    max-height: none;
  }

  .brand-image {
    width: 166px;
    height: 56px;
  }

  .brand-square {
    width: 64px;
    height: 64px;
  }

  .footer-logo.brand-square {
    width: 82px;
    height: 82px;
  }

  .trust-metrics {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 66px 0;
  }

  .metrics-grid,
  .authority-grid,
  .mvv-grid,
  .services-grid,
  .articles-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .metrics-grid article,
  .authority-grid article,
  .service-card,
  .mvv-card {
    min-height: auto;
  }

  .final-card {
    padding: 34px;
  }

  .subpage-hero {
    padding: 72px 0 54px;
  }

  .subpage-hero h1 {
    font-size: 2.75rem;
  }

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

  .two-column-list,
  .territory-authority,
  .variables-grid,
  .method-steps,
  .differentials-grid {
    grid-template-columns: 1fr;
  }

  .profile-image-wrap {
    min-height: 390px;
  }

  .profile-caption {
    width: calc(100% - 24px);
    margin-top: -58px;
    padding: 18px;
  }

  .floating-contact {
    right: 14px;
    bottom: 14px;
    width: 72px;
    height: 72px;
  }

  .floating-contact img {
    width: 48px;
    height: 48px;
  }
}
