:root {
  --green-980: #03110c;
  --green-950: #061a13;
  --green-900: #0b281e;
  --green-800: #0f3a2b;
  --green-700: #145c43;
  --green-100: #e7f1ec;
  --gold: #c7a35a;
  --gold-soft: #f3ead5;
  --ink: #101513;
  --muted: #5f6f68;
  --line: #dfe8e3;
  --surface: #f7faf8;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(3, 17, 12, 0.12);
  --radius: 8px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes soft-scale {
  from {
    opacity: 0;
    transform: scale(0.995);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  animation: page-enter 560ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes page-enter {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

body.page-leaving {
  opacity: 0;
  transition: opacity 280ms ease;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--green-900);
  border-radius: var(--radius);
  transform: translateY(-140%);
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(223, 232, 227, 0.85);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--green-950);
  font-weight: 850;
  font-size: 1.38rem;
  line-height: 1;
}

.brand-logo {
  width: 170px;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--green-950);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.nav-toggle-bars {
  position: relative;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  position: absolute;
  left: 0;
  content: "";
}

.nav-toggle-bars::before {
  top: -7px;
}

.nav-toggle-bars::after {
  top: 7px;
}

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

.nav-link,
.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 10px 13px;
  color: var(--green-950);
  background: transparent;
  border: 0;
  border-radius: var(--radius);
  font-size: 0.94rem;
  font-weight: 680;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease;
}

.dropdown-caret {
  width: 0;
  height: 0;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.has-dropdown.open .dropdown-caret,
.has-dropdown:hover .dropdown-caret,
.has-dropdown:focus-within .dropdown-caret {
  transform: rotate(180deg);
}

.nav-link:hover,
.dropdown-toggle:hover,
.nav-link:focus-visible,
.dropdown-toggle:focus-visible {
  color: var(--green-700);
  background: var(--green-100);
  outline: 0;
}

.call-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--green-800);
  border: 1px solid var(--green-800);
  border-radius: var(--radius);
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1), background 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.call-button:hover,
.button:hover,
.call-button:focus-visible,
.button:focus-visible {
  background: var(--green-950);
  border-color: var(--green-950);
  outline: 0;
  transform: translateY(-1px);
}

.button.secondary {
  color: var(--green-950);
  background: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
}

.whatsapp-nav-button,
.button.secondary.whatsapp-button {
  color: var(--white);
  background: #148f50;
  border-color: #148f50;
}

.whatsapp-nav-button:hover,
.whatsapp-nav-button:focus-visible,
.button.secondary.whatsapp-button:hover,
.button.secondary.whatsapp-button:focus-visible {
  color: var(--white);
  background: #0f6f3e;
  border-color: #0f6f3e;
}

.button.secondary:hover,
.button.secondary:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.8);
}

.button.outline {
  color: var(--green-950);
  background: var(--white);
  border-color: var(--line);
}

.button.outline:hover,
.button.outline:focus-visible {
  color: var(--white);
  background: var(--green-800);
  border-color: var(--green-800);
}

.has-dropdown {
  position: relative;
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: min(720px, calc(100vw - 40px));
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 240ms ease, transform 240ms cubic-bezier(0.16, 1, 0.3, 1), visibility 240ms ease;
}

.has-dropdown:hover .dropdown-panel,
.has-dropdown:focus-within .dropdown-panel,
.has-dropdown.open .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 20px;
}

.dropdown-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.dropdown-links.single {
  grid-template-columns: 1fr;
}

.dropdown-links a {
  display: block;
  padding: 9px 10px;
  color: var(--muted);
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 650;
}

.dropdown-links a:hover,
.dropdown-links a:focus-visible {
  color: var(--green-950);
  background: var(--surface);
  border-color: var(--line);
  outline: 0;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 680px;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background: linear-gradient(90deg, rgba(3, 17, 12, 0.92) 0%, rgba(3, 17, 12, 0.72) 42%, rgba(3, 17, 12, 0.28) 78%);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 130px;
  content: "";
  background: linear-gradient(180deg, rgba(3, 17, 12, 0), rgba(3, 17, 12, 0.72));
}

.hero-bg,
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-content {
  max-width: 720px;
  padding-block: 78px;
  animation: fade-up 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold-soft);
  font-size: 0.98rem;
  font-weight: 800;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-size: 3.55rem;
  line-height: 1.08;
  font-weight: 860;
}

.hero p {
  max-width: 650px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.2rem;
  line-height: 1.7;
}

.hero .eyebrow {
  max-width: none;
  margin: 0 0 16px;
  color: var(--gold-soft);
  font-size: 1rem;
  line-height: 1.4;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}

.hero-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
  max-width: 820px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.98rem;
  font-weight: 720;
}

.hero-credentials span {
  display: inline-flex;
  align-items: center;
}

.hero-credentials span + span::before {
  width: 5px;
  height: 5px;
  margin: 0 14px;
  content: "";
  background: var(--gold);
  border-radius: 50%;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 790px;
  margin-top: 44px;
}

.hero-fact {
  min-height: 88px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  animation: soft-scale 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-fact:nth-child(2) {
  animation-delay: 90ms;
}

.hero-fact:nth-child(3) {
  animation-delay: 180ms;
}

.hero-fact strong {
  display: block;
  margin-bottom: 2px;
  color: var(--white);
  font-size: 1rem;
}

.hero-fact span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.91rem;
}

.section {
  padding: 86px 0;
}

.section.surface {
  background: var(--surface);
}

.section.dark {
  color: var(--white);
  background: var(--green-950);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.6fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 38px;
}

.section-head.reference-head {
  display: block;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.section-label {
  margin: 0 0 8px;
  color: var(--green-700);
  font-size: 0.94rem;
  font-weight: 820;
}

.dark .section-label {
  color: var(--gold-soft);
}

.section h2,
.content h2 {
  margin: 0;
  color: var(--green-950);
  font-size: 2.25rem;
  line-height: 1.18;
  font-weight: 830;
}

.dark h2,
.dark .section-copy {
  color: var(--white);
}

.section-copy {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

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

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

.service-card,
.region-card,
.sector-card,
.info-card {
  min-height: 180px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(3, 17, 12, 0.06);
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1), border-color 320ms ease, box-shadow 320ms ease;
}

.service-card:hover,
.region-card:hover,
.sector-card:hover,
.info-card:hover,
.service-card:focus-visible,
.region-card:focus-visible {
  border-color: rgba(199, 163, 90, 0.8);
  box-shadow: var(--shadow);
  outline: 0;
  transform: translateY(-2px);
}

.service-card,
.region-card,
.sector-card,
.info-card,
.article-block,
.side-card,
.contact-method,
.contact-page-card,
.reference-logo-card,
.highlight-panel,
.section-head {
  will-change: transform, opacity;
}

.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 900ms cubic-bezier(0.16, 1, 0.3, 1), transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

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

.card-kicker {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  margin-bottom: 18px;
  padding: 4px 9px;
  color: var(--green-950);
  background: var(--gold-soft);
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 800;
}

.service-card h3,
.region-card h3,
.sector-card h3,
.info-card h3,
.content h3 {
  margin: 0;
  color: var(--green-950);
  font-size: 1.17rem;
  line-height: 1.3;
}

.service-card p,
.region-card p,
.sector-card p,
.info-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.region-card {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.link-note {
  display: inline-flex;
  margin-top: 18px;
  color: var(--green-700);
  font-weight: 780;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.58fr);
  gap: 34px;
  align-items: stretch;
}

.feature-list,
.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.feature-list li,
.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.feature-list li::before,
.check-list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 10px;
  height: 10px;
  content: "";
  background: var(--gold);
  border-radius: 50%;
  transform: translateY(-50%);
}

.story-copy {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.story-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.78;
}

.highlight-panel {
  padding: 32px;
  color: var(--white);
  background: linear-gradient(145deg, var(--green-950), var(--green-800));
  border: 1px solid rgba(199, 163, 90, 0.32);
  border-radius: var(--radius);
}

.highlight-panel h3 {
  color: var(--white);
  font-size: 1.45rem;
}

.highlight-panel p {
  color: rgba(255, 255, 255, 0.78);
}

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

.sector-card {
  min-height: 112px;
  box-shadow: none;
}

.reference-logo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  margin-top: 34px;
}

.reference-logo-card {
  display: grid;
  min-height: 190px;
  place-items: center;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(3, 17, 12, 0.06);
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1), border-color 320ms ease, box-shadow 320ms ease;
}

.reference-logo-card:hover,
.reference-logo-card:focus-within {
  border-color: rgba(199, 163, 90, 0.8);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.reference-logo-card img {
  width: 100%;
  max-width: 230px;
  max-height: 126px;
  object-fit: contain;
}

.contact-band {
  color: var(--white);
  background: var(--green-950);
}

.contact-band h2,
.contact-band .section-copy {
  color: var(--white);
}

.contact-band .section-copy {
  opacity: 0.82;
}

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

.contact-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.contact-method {
  min-height: 104px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
}

.contact-method strong {
  display: block;
  color: var(--gold-soft);
}

.contact-method span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.78);
}

.contact-page-head {
  margin-bottom: 30px;
}

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

.contact-page-card {
  display: block;
  min-height: 182px;
  padding: 26px;
  color: inherit;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(3, 17, 12, 0.06);
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1), border-color 320ms ease, box-shadow 320ms ease;
}

a.contact-page-card:hover,
a.contact-page-card:focus-visible {
  border-color: rgba(199, 163, 90, 0.8);
  box-shadow: var(--shadow);
  outline: 0;
  transform: translateY(-2px);
}

.contact-page-card span {
  display: block;
  color: var(--green-700);
  font-size: 0.92rem;
  font-weight: 820;
}

.contact-page-card strong {
  display: block;
  margin-top: 8px;
  color: var(--green-950);
  font-size: 1.25rem;
  line-height: 1.25;
}

.contact-page-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.page-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 78px 0 70px;
  color: var(--white);
  background: var(--green-950);
}

.page-hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background: linear-gradient(90deg, rgba(3, 17, 12, 0.94), rgba(6, 26, 19, 0.82));
}

.page-hero .page-copy {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.12rem;
}

.page-hero .container {
  animation: fade-up 820ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.breadcrumb a {
  color: var(--gold-soft);
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.62);
}

.content {
  padding: 78px 0;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(300px, 0.38fr);
  gap: 38px;
  align-items: start;
}

.article-flow {
  display: grid;
  gap: 34px;
}

.article-block {
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.article-block:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.article-block p {
  margin: 14px 0 0;
  color: var(--muted);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.pill-list li {
  padding: 8px 11px;
  color: var(--green-950);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 720;
}

.side-panel {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 14px;
}

.side-card {
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.side-card h2,
.side-card h3 {
  margin: 0 0 12px;
  color: var(--green-950);
  font-size: 1.16rem;
  line-height: 1.3;
}

.side-card p {
  margin: 0 0 16px;
  color: var(--muted);
}

.side-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.side-actions .button {
  width: 100%;
}

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

.mini-list a,
.mini-list span {
  display: block;
  padding: 8px 0;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-weight: 650;
}

.mini-list li:last-child a,
.mini-list li:last-child span {
  border-bottom: 0;
}

.site-footer {
  color: rgba(255, 255, 255, 0.76);
  background: var(--green-980);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) repeat(3, minmax(150px, 0.55fr));
  gap: 28px;
  padding: 54px 0;
}

.footer-brand {
  display: inline-flex;
  color: var(--white);
}

.footer-logo {
  width: 188px;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.footer-grid h2,
.footer-grid h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 1rem;
}

.footer-grid p,
.footer-grid ul {
  margin: 12px 0 0;
}

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

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--gold-soft);
  outline: 0;
}

.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
}

.quick-actions {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 140;
  display: grid;
  gap: 12px;
}

.quick-action {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--white);
  background: var(--green-800);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  box-shadow: 0 16px 38px rgba(3, 17, 12, 0.28);
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 320ms ease, background 320ms ease;
}

.quick-action:hover,
.quick-action:focus-visible {
  background: var(--green-950);
  box-shadow: 0 18px 46px rgba(3, 17, 12, 0.34);
  outline: 0;
  transform: translateY(-2px);
}

.quick-action svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.quick-action-whatsapp {
  color: var(--white);
  background: #148f50;
}

.quick-action-whatsapp:hover,
.quick-action-whatsapp:focus-visible {
  background: #0f6f3e;
}

.quick-action-whatsapp svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
  stroke: none;
}

@media (max-width: 1080px) {
  .card-grid,
  .sector-grid,
  .reference-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 900px) {
  body {
    padding-bottom: 0;
  }

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

  .header-inner {
    min-height: 68px;
  }

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

  .nav-list {
    position: absolute;
    top: 100%;
    right: 15px;
    left: 15px;
    display: none;
    align-items: stretch;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-header.nav-open .nav-list {
    display: grid;
    gap: 4px;
  }

  .nav-link,
  .dropdown-toggle,
  .call-button {
    justify-content: space-between;
    width: 100%;
  }

  .dropdown-panel {
    position: static;
    display: none;
    width: 100%;
    padding: 12px 0 4px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .has-dropdown.open .dropdown-panel {
    display: block;
  }

  .dropdown-grid,
  .dropdown-links {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 620px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2.55rem;
  }

  .hero p,
  .page-hero .page-copy {
    font-size: 1.04rem;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .section {
    padding: 64px 0;
  }

  .section-head,
  .split,
  .contact-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .section h2,
  .content h2 {
    font-size: 1.85rem;
  }

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

  .side-panel {
    position: static;
  }

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

  .quick-actions {
    right: 14px;
    bottom: 14px;
  }
}

@media (max-width: 640px) {
  .brand {
    max-width: 190px;
  }

  .brand-logo {
    width: 132px;
    height: auto;
  }

  .hero {
    min-height: 650px;
  }

  .hero::before {
    background: linear-gradient(90deg, rgba(3, 17, 12, 0.93) 0%, rgba(3, 17, 12, 0.78) 58%, rgba(3, 17, 12, 0.52) 100%);
  }

  .hero-bg,
  .page-hero-bg {
    object-position: 62% center;
  }

  .hero-content {
    padding-block: 56px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2.08rem;
  }

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

  .button {
    width: 100%;
  }

  .card-grid,
  .region-grid,
  .sector-grid,
  .contact-page-grid,
  .reference-logo-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .region-card,
  .sector-card,
  .contact-page-card,
  .info-card {
    min-height: auto;
  }

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

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

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