:root {
  --color-page: #f7f7fa;
  --color-surface: #ffffff;
  --color-surface-soft: #f1f2f5;
  --color-text: #111116;
  --color-muted: #5f646d;
  --color-line: #e1e3e8;
  --color-orange: #ff6b2c;
  --color-orange-dark: #e84e16;
  --color-amber: #f5a342;
  --color-brass: #a97848;
  --color-steel: #6f7884;
  --shadow-soft: 0 16px 48px rgba(17, 17, 22, 0.08);
  --container: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-page);
  color: var(--color-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

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

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

a:hover {
  color: var(--color-orange-dark);
}

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--color-text);
  color: white;
  padding: 10px 12px;
  border-radius: 6px;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 12px 0;
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(247, 247, 250, 0.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(17, 17, 22, 0.08);
}


.nav-shell {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(225, 227, 232, 0.9);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  padding: 0 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--color-text);
  white-space: nowrap;
}

.brand__mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: var(--color-text);
  color: white;
  border-radius: 50%;
  font-size: 18px;
  line-height: 1;
}

.brand__text {
  font-size: 22px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-group {
  position: relative;
}

.nav-group::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
  display: none;
}

.nav-group.is-open::after,
.nav-group:hover::after,
.nav-group:focus-within::after {
  display: block;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 12px;
  border: 0;
  background: transparent;
  color: var(--color-text);
  font-weight: 650;
  cursor: pointer;
}

.nav-link--button::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  margin-left: 8px;
  transform: rotate(45deg) translateY(-2px);
}

.dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  z-index: 60;
  min-width: 250px;
  display: none;
  padding: 10px;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.dropdown--wide {
  min-width: 360px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dropdown--products {
  min-width: 520px;
}

.nav-group.is-open .dropdown,
.nav-group:hover .dropdown,
.nav-group:focus-within .dropdown {
  display: grid;
}

.dropdown a {
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--color-muted);
}

.dropdown a:hover {
  background: var(--color-surface-soft);
  color: var(--color-text);
}

.header-actions {
  display: flex;
  gap: 10px;
  margin-left: 4px;
}

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.btn--primary {
  color: white;
  background: linear-gradient(180deg, var(--color-orange), var(--color-orange-dark));
  box-shadow: 0 12px 24px rgba(232, 78, 22, 0.24);
}

.btn--secondary,
.btn--ghost {
  background: var(--color-surface);
  border-color: var(--color-line);
  color: var(--color-text);
}

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

.btn--block {
  width: 100%;
  margin-top: 10px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-line);
  background: white;
  border-radius: 8px;
  margin-left: auto;
  padding: 10px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  background: var(--color-text);
  margin: 5px 0;
}

.hero {
  position: relative;
  min-height: 740px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: -108px;
  padding-top: 120px;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(247, 247, 250, 0.98) 0%, rgba(247, 247, 250, 0.84) 38%, rgba(247, 247, 250, 0.16) 72%);
}

.hero__media img,
.hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__video {
  background: var(--color-surface-soft);
  object-position: center;
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 96px 0 72px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--color-orange-dark);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: 72px;
  line-height: 1;
  font-weight: 900;
}

.hero__lead,
.page-hero p:not(.eyebrow) {
  max-width: 640px;
  margin: 24px 0 0;
  font-size: 20px;
  color: var(--color-muted);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.trust-row span {
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--color-line);
  border-radius: 8px;
  font-weight: 750;
  color: var(--color-muted);
}

.section {
  padding: 92px 0;
}

.section--tight {
  padding: 72px 0;
}

.section--band {
  background: var(--color-text);
  color: white;
}

.split-heading,
.feature-band,
.faq-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 48px;
  align-items: start;
}

.split-heading {
  margin-bottom: 34px;
}

.split-heading h2,
.feature-band h2,
.faq-panel h2 {
  margin: 0;
  font-size: 44px;
  line-height: 1.08;
}

.split-heading p,
.feature-band p {
  color: var(--color-muted);
  margin: 0;
}

.section--band .feature-band p,
.section--band .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

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

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

.service-card,
.post-card,
.side-panel,
.contact-panel {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(17, 17, 22, 0.05);
}

.service-card {
  min-height: 240px;
}

.service-card__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  background: #fff1ea;
  color: var(--color-orange-dark);
  border-radius: 8px;
  font-size: 24px;
}

.service-card h3,
.post-card h3,
.post-card h2 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.2;
}

.service-card p,
.post-card p,
.side-panel p {
  color: var(--color-muted);
  margin: 0;
}

.link-list {
  display: grid;
  gap: 10px;
}

.link-list a,
.region-grid a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  font-weight: 750;
}

.region-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.region-grid a {
  background: var(--color-surface);
  border-color: var(--color-line);
  color: var(--color-text);
}

.product-link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.product-link-grid a {
  display: grid;
  gap: 7px;
  min-height: 92px;
  padding: 16px;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: 8px;
  color: var(--color-text);
}

.product-link-grid span {
  font-weight: 800;
  line-height: 1.25;
}

.product-link-grid small {
  color: var(--color-muted);
  line-height: 1.35;
}

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

details {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: 8px;
  padding: 0 18px;
}

summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: 800;
}

details p {
  color: var(--color-muted);
  margin: 0 0 18px;
}

.text-link {
  color: var(--color-orange-dark);
  font-weight: 850;
}

.page-hero {
  padding: 72px 0 64px;
  background:
    linear-gradient(90deg, rgba(247, 247, 250, 1), rgba(247, 247, 250, 0.72)),
    url("../img/optimized/hero-bg-new.jpg") center right / cover no-repeat;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--color-muted);
  margin-bottom: 34px;
  font-size: 14px;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 36px;
  align-items: start;
}

.content-body {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: 8px;
  padding: 36px;
}

.content-figure {
  margin: 0 0 30px;
}

.content-figure img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--color-line);
}

.content-figure figcaption {
  margin-top: 10px;
  color: var(--color-muted);
  font-size: 14px;
}

.content-body h2 {
  margin: 32px 0 12px;
  font-size: 30px;
  line-height: 1.15;
}

.content-body h2:first-child {
  margin-top: 0;
}

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

.side-panel {
  position: sticky;
  top: 130px;
}

.site-footer {
  background: #0f1014;
  color: white;
  padding: 64px 0 92px;
}

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

.site-footer h2 {
  margin: 0 0 14px;
  font-size: 18px;
}

.site-footer p,
.site-footer li,
.site-footer small {
  color: rgba(255, 255, 255, 0.7);
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.brand--footer {
  margin-bottom: 14px;
}

.footer-badge {
  display: inline-flex;
  margin-top: 18px;
}

.footer-badge img {
  width: min(190px, 100%);
  height: auto;
  object-fit: contain;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 48px;
  padding-top: 22px;
}

.mobile-cta {
  position: fixed;
  z-index: 60;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mobile-cta a {
  min-height: 50px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--color-orange-dark);
  border-radius: 8px;
  font-weight: 900;
  box-shadow: var(--shadow-soft);
}

.mobile-cta a:last-child {
  background: var(--color-text);
}

@media (max-width: 1060px) {
  .header-actions {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 152px 16px auto 16px;
    max-height: calc(100vh - 180px);
    overflow: auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 16px;
    background: var(--color-surface);
    border: 1px solid var(--color-line);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
  }

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

  .nav-group {
    width: 100%;
  }

  .nav-link {
    width: 100%;
    justify-content: space-between;
  }

  .dropdown,
  .dropdown--wide {
    position: static;
    min-width: 0;
    width: 100%;
    box-shadow: none;
    margin: 4px 0 8px;
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: 650px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 52px;
  }

  .split-heading,
  .feature-band,
  .faq-panel,
  .content-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .side-panel {
    position: static;
  }
}

@media (max-width: 640px) {

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

  .nav-shell {
    min-height: 64px;
    padding: 0 12px;
  }

  .site-nav {
    inset: 166px 12px auto 12px;
    max-height: calc(100vh - 190px);
  }

  .brand__text {
    font-size: 18px;
  }

  .hero {
    min-height: 620px;
    margin-top: -88px;
  }

  .hero__media::after {
    background: linear-gradient(180deg, rgba(247, 247, 250, 0.98) 0%, rgba(247, 247, 250, 0.9) 44%, rgba(247, 247, 250, 0.34) 100%);
  }

  .hero h1,
  .page-hero h1 {
    font-size: 42px;
  }

  .hero__lead,
  .page-hero p:not(.eyebrow) {
    font-size: 17px;
  }

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

  .btn {
    width: 100%;
  }

  .section {
    padding: 58px 0;
  }

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

  .split-heading h2,
  .feature-band h2,
  .faq-panel h2 {
    font-size: 34px;
  }

  .card-grid,
  .card-grid--services,
  .product-link-grid,
  .region-grid {
    grid-template-columns: 1fr;
  }

  .content-body {
    padding: 24px;
  }

  .mobile-cta {
    display: grid;
  }
}

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

/* Modern header and visual homepage refinements */
:root {
  --color-page: #f7f7fa;
  --color-surface: #ffffff;
  --color-surface-soft: #f1f2f5;
  --color-text: #111116;
  --color-muted: #5f646d;
  --color-line: #e1e3e8;
  --color-orange: #ff6b2c;
  --color-orange-dark: #e84e16;
  --color-amber: #f5a342;
  --color-brass: #a97848;
  --color-steel: #6f7884;
  --color-whatsapp: #25d366;
  --color-whatsapp-dark: #128c4a;
  --shadow-soft: 0 16px 48px rgba(17, 17, 22, 0.08);
  --shadow-subtle: 0 10px 30px rgba(17, 17, 22, 0.07);
  --container: 1260px;
}

body {
  font-family: "Segoe UI Variable", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15.5px;
  font-weight: 400;
  letter-spacing: 0;
}

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

.site-header.is-scrolled {
  background: rgba(247, 247, 250, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(17, 17, 22, 0.06);
}

.nav-shell {
  min-height: 70px;
  gap: 14px;
  padding: 0 16px 0 18px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(225, 227, 232, 0.84);
  box-shadow: 0 12px 34px rgba(17, 17, 22, 0.075);
}

.brand {
  flex: 0 0 auto;
  gap: 0;
}

.brand__logo {
  width: 168px;
  height: auto;
  object-fit: contain;
}

.brand--footer .brand__logo {
  width: 176px;
  filter: brightness(0) invert(1);
}

.site-nav {
  gap: 0;
  margin-left: auto;
}

.nav-contact {
  display: none;
}

.nav-link {
  min-height: 42px;
  padding: 0 9px;
  font-size: 14px;
  font-weight: 560;
  letter-spacing: 0;
}

.nav-link--button::after {
  width: 6px;
  height: 6px;
  border-width: 1.5px;
  margin-left: 7px;
}

.dropdown {
  top: calc(100% + 10px);
  border-radius: 10px;
  box-shadow: 0 18px 46px rgba(17, 17, 22, 0.11);
}

.dropdown a {
  font-size: 14px;
  font-weight: 480;
}

.header-contact {
  display: grid;
  gap: 2px;
  min-width: 150px;
  font-size: 12px;
  line-height: 1.25;
  color: var(--color-muted);
}

.header-contact span {
  color: var(--color-orange-dark);
  font-weight: 650;
}

.header-contact a {
  color: var(--color-text);
  font-weight: 560;
  white-space: nowrap;
}

.header-contact__email {
  color: var(--color-muted) !important;
}

.header-actions {
  gap: 8px;
  margin-left: 0;
}

.btn {
  min-height: 42px;
  border-radius: 9px;
  padding: 0 16px;
  font-weight: 680;
  letter-spacing: 0;
}

.btn--large {
  min-height: 56px;
  padding-inline: 24px;
}

.btn--primary {
  box-shadow: 0 10px 22px rgba(232, 78, 22, 0.2);
}

.btn--whatsapp {
  color: #ffffff;
  background: linear-gradient(180deg, var(--color-whatsapp), var(--color-whatsapp-dark));
  border-color: rgba(18, 140, 74, 0.2);
  box-shadow: 0 10px 22px rgba(18, 140, 74, 0.2);
}

.btn--whatsapp:hover {
  color: #ffffff;
}

.hero {
  min-height: 760px;
  margin-top: -90px;
  padding-top: 112px;
}

.hero__media::after {
  background: linear-gradient(90deg, rgba(247, 247, 250, 0.96) 0%, rgba(247, 247, 250, 0.82) 36%, rgba(247, 247, 250, 0.22) 76%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.74fr);
  align-items: center;
  gap: 52px;
  padding: 88px 0 72px;
}

.hero__copy {
  min-width: 0;
}

.hero h1,
.page-hero h1 {
  font-weight: 760;
  letter-spacing: 0;
}

.hero__lead,
.page-hero p:not(.eyebrow) {
  font-weight: 400;
}

.hero__showcase,
.section-visual {
  margin: 0;
}

.hero__showcase img,
.section-visual img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(225, 227, 232, 0.92);
  box-shadow: var(--shadow-subtle);
}

.hero__showcase figcaption,
.section-visual figcaption {
  margin-top: 10px;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.4;
}

.hero__showcase figcaption {
  max-width: 440px;
}

.eyebrow {
  font-weight: 690;
  letter-spacing: 0;
}

.split-heading h2,
.feature-band h2,
.faq-panel h2,
.content-body h2 {
  font-weight: 700;
  letter-spacing: 0;
}

.service-card h3,
.post-card h3,
.post-card h2,
summary {
  font-weight: 650;
  letter-spacing: 0;
}

.service-card,
.post-card,
.side-panel,
.contact-panel,
.content-body,
details,
.product-link-grid a {
  box-shadow: 0 8px 22px rgba(17, 17, 22, 0.045);
}

.service-card,
.post-card,
.product-link-grid a,
details,
.content-body,
.side-panel,
.contact-panel {
  border-radius: 10px;
}

.section-media-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
  gap: 28px;
  align-items: start;
}

.section-media-grid--reverse {
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
}

.section-media-grid .card-grid,
.section-media-grid .card-grid--services {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.section-media-grid .product-link-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.feature-band--media {
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.82fr) minmax(260px, 0.72fr);
  align-items: center;
}

.section-visual--dark img {
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.22);
}

.section-visual--dark figcaption {
  color: rgba(255, 255, 255, 0.72);
}

.faq-panel--media {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}

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

.product-link-grid span,
.link-list a,
.region-grid a {
  font-weight: 620;
}

.mobile-cta a:last-child,
.mobile-cta__whatsapp {
  background: var(--color-whatsapp-dark) !important;
}

@media (max-width: 1280px) {
  .header-contact__email {
    display: none;
  }

  .brand__logo {
    width: 154px;
  }

  .nav-link {
    padding-inline: 8px;
  }
}

@media (max-width: 1160px) {
  .header-contact span {
    display: none;
  }

  .header-contact {
    min-width: auto;
  }
}

@media (max-width: 1060px) {
  .header-contact,
  .header-actions {
    display: none;
  }

  .nav-shell {
    min-height: 68px;
  }

  .site-nav {
    inset: 92px 16px auto 16px;
    max-height: calc(100vh - 116px);
  }

  .nav-contact {
    display: grid;
    gap: 8px;
    padding: 12px;
    margin-bottom: 4px;
    background: var(--color-surface-soft);
    border: 1px solid var(--color-line);
    border-radius: 10px;
    color: var(--color-muted);
    font-size: 14px;
  }

  .nav-contact span,
  .nav-contact a {
    font-weight: 620;
  }

  .nav-contact span {
    color: var(--color-orange-dark);
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    margin-top: -88px;
  }

  .hero__inner,
  .section-media-grid,
  .section-media-grid--reverse,
  .feature-band--media,
  .faq-panel--media {
    grid-template-columns: 1fr;
  }

  .hero__inner {
    gap: 28px;
    padding-top: 112px;
  }

  .hero__showcase {
    max-width: 640px;
  }

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

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

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

  .nav-shell {
    min-height: 62px;
    padding: 0 12px;
  }

  .brand__logo {
    width: 138px;
  }

  .site-nav {
    inset: 82px 12px auto 12px;
    max-height: calc(100vh - 106px);
  }

  .hero {
    min-height: auto;
    padding-top: 92px;
  }

  .hero__inner {
    padding: 74px 0 48px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 40px;
    line-height: 1.04;
  }

  .hero__media::after {
    background: linear-gradient(180deg, rgba(247, 247, 250, 0.98) 0%, rgba(247, 247, 250, 0.92) 48%, rgba(247, 247, 250, 0.58) 100%);
  }

  .section-media-grid .card-grid,
  .section-media-grid .card-grid--services,
  .section-media-grid .product-link-grid,
  .section-media-grid .region-grid {
    grid-template-columns: 1fr;
  }

  .hero__showcase figcaption,
  .section-visual figcaption {
    font-size: 12.5px;
  }
}
/* Requested refinements: clear hero, footer logo, WhatsApp, FAQ and mobile nav */
.hero__inner {
  grid-template-columns: minmax(0, 760px);
  gap: 0;
}

.hero__copy {
  max-width: 720px;
}

.hero__showcase {
  display: none;
}

.brand--footer .brand__logo,
.brand__logo--footer {
  padding: 0;
  background: transparent;
  border-radius: 0;
  filter: none;
}

.btn--whatsapp,
.btn--whatsapp:hover,
.mobile-cta__whatsapp,
.mobile-cta a.mobile-cta__whatsapp {
  color: #ffffff;
  background: #25d366 !important;
  background-image: none !important;
  border-color: transparent !important;
  box-shadow: 0 10px 22px rgba(37, 211, 102, 0.22);
}

.faq-panel--visual-left {
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
}

.faq-panel__intro {
  display: grid;
  gap: 22px;
}

.faq-list--home {
  align-self: start;
  gap: 12px;
}

.faq-list--home details {
  min-height: 68px;
}

.faq-list--home summary {
  min-height: 64px;
}

@media (max-width: 1060px) {
  .nav-shell {
    position: relative;
    justify-content: center;
  }

  .nav-shell > .brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
  }

  .brand--footer {
    position: static;
    transform: none;
  }

  .nav-toggle {
    position: relative;
    z-index: 2;
    margin-left: auto;
  }

  .site-nav {
    z-index: 70;
  }

  .nav-group::after,
  .nav-group:hover::after,
  .nav-group:focus-within::after {
    display: none;
  }

  .nav-group .dropdown,
  .nav-group:hover .dropdown,
  .nav-group:focus-within .dropdown,
  .nav-group:not(.is-open) .dropdown {
    display: none;
  }

  .nav-group.is-open .dropdown {
    display: grid;
  }
}

@media (max-width: 900px) {
  .faq-panel--visual-left {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-footer .footer-grid > div:first-child {
    display: grid;
    justify-items: center;
    text-align: center;
    width: 100%;
  }

  .brand--footer,
  .footer-badge {
    display: flex;
    width: 100%;
    max-width: 280px;
    justify-content: center;
    justify-self: center;
  }

  .brand--footer .brand__logo,
  .footer-badge img {
    display: block;
    margin-inline: auto;
  }
}
