:root {
  --brintel-green: #047d04;
  --brintel-black: #040404;
  --brintel-red: #9c0404;
  --brintel-navy: #0d1b3f;
  --brintel-green-true: #007a33;
  --brintel-red-true: #c1121f;
  --ink: #131313;
  --paper: #f5f4f0;
  --surface: #ffffff;
  --muted: #666;
  --font-head: "Exo 2", sans-serif;
  --font-body: "Source Sans 3", sans-serif;
  --font-mono: "JetBrains Mono", monospace;
  --radius: 16px;
  --shadow: 0 14px 32px rgba(4, 4, 4, 0.18);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: radial-gradient(circle at 10% 0%, #f5fbf6 0%, #fafcfb 35%, #ffffff 100%);
  line-height: 1.55;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(6, 28, 90, 0.05) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.3), transparent 40%);
  z-index: -2;
}

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

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

.container {
  width: min(1320px, 94vw);
  margin: 0 auto;
}

.ambient-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(90px);
  z-index: -1;
  opacity: 0.22;
}

.ambient-glow--one {
  background: var(--brintel-green);
  top: -90px;
  left: -120px;
}

.ambient-glow--two {
  background: var(--brintel-red);
  right: -140px;
  bottom: 10%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(4, 4, 4, 0.1);
  box-shadow: 0 8px 22px rgba(10, 14, 25, 0.06);
  backdrop-filter: blur(10px);
}

.site-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brintel-black), var(--brintel-green-true), var(--brintel-red-true));
}

.header-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 84px;
  gap: 22px;
}

.header-wrap .brand {
  min-width: 210px;
}

.brand img {
  width: 210px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  position: relative;
}

.main-nav a {
  color: #141414;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 8px 11px;
  border-radius: 999px;
  transition: 0.25s ease;
  white-space: nowrap;
}

.main-nav a:hover {
  background: rgba(4, 125, 4, 0.12);
  color: #063b06;
}

.nav-item-mega {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-bottom: 14px;
  margin-bottom: -14px;
}

.nav-item-mega::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% - 2px);
  height: 16px;
}

.mega-trigger::after {
  content: "▾";
  font-size: 0.7rem;
  margin-left: 6px;
}

.mega-menu {
  position: absolute;
  right: -12px;
  top: calc(100% + 2px);
  width: min(760px, 90vw);
  border: 1px solid #e6e6e6;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.13);
  padding: 18px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: 0.18s ease;
}

.nav-item-mega:hover .mega-menu,
.nav-item-mega:focus-within .mega-menu,
.nav-item-mega.is-open .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mega-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 0.95fr;
  gap: 18px;
}

.mega-col {
  display: grid;
  gap: 8px;
  align-content: start;
}

.mega-title {
  font-family: var(--font-head);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #2a2a2a;
  margin-bottom: 2px;
}

.mega-link {
  display: block;
  border: 1px solid #f0f0f0;
  border-radius: 10px;
  padding: 9px 10px;
  background: #fff;
}

.mega-link strong {
  display: block;
  font-size: 0.87rem;
  line-height: 1.2;
  margin-bottom: 2px;
}

.mega-link span {
  display: block;
  font-size: 0.76rem;
  color: #555;
  line-height: 1.3;
}

.mega-link:hover {
  border-color: rgba(4, 125, 4, 0.35);
  background: #fbfffb;
}

.mega-cta {
  border-radius: 12px;
  padding: 12px;
  background: linear-gradient(140deg, #0d2810, #0f6a16);
  color: #fff;
}

.mega-cta h4 {
  margin: 0 0 8px;
  font-family: var(--font-head);
  font-size: 0.95rem;
}

.mega-cta p {
  margin: 0 0 10px;
  font-size: 0.82rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.92);
}

.mega-cta a {
  display: inline-flex;
  border-radius: 999px;
  background: #fff;
  color: #0b5c11;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 7px 10px;
}

.lang-switch {
  display: inline-flex;
  gap: 8px;
  margin-left: 8px;
}

.lang-switch a {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  border: 1px solid rgba(10, 10, 10, 0.2);
  border-radius: 999px;
  padding: 6px 10px;
  color: #1d1d1d;
}

.lang-switch a.is-current {
  background: var(--brintel-green);
  border-color: var(--brintel-green);
  color: #fff;
}

.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  border: 0;
  background: transparent;
}

.menu-btn span {
  width: 24px;
  height: 2px;
  background: #202020;
}

.hero {
  padding: 84px 0 64px;
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 48% 52% 64% 36% / 40% 42% 58% 60%;
  pointer-events: none;
  opacity: 0.32;
}

.hero::before {
  right: -120px;
  bottom: -200px;
  border: 4px solid var(--brintel-green-true);
}

.hero::after {
  right: -80px;
  bottom: -250px;
  border: 4px solid var(--brintel-red-true);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
}

.kicker {
  display: inline-flex;
  margin: 0 0 12px;
  color: #0a5f1e;
  background: #e6f2e8;
  border: 1px solid #bfe2c2;
  border-radius: 999px;
  padding: 7px 14px;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}

.kicker-dark {
  color: var(--brintel-green);
  background: #e8f3ea;
}

.hero .kicker {
  background: #deefe2;
  border-color: #b2d7bc;
  color: #0d5b1e;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: var(--font-head);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(1.9rem, 4.8vw, 3.4rem);
  line-height: 1.08;
  margin-bottom: 12px;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1.15;
  margin-bottom: 16px;
}

.lead {
  font-size: 1.08rem;
  max-width: 60ch;
  color: #343434;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 12px 18px;
  font-weight: 700;
  font-family: var(--font-head);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brintel-green), #11a611);
  color: #fff;
  box-shadow: 0 10px 24px rgba(4, 125, 4, 0.28);
}

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

.btn-ghost {
  border: 1px solid rgba(4, 4, 4, 0.15);
  color: var(--ink);
  background: #fff;
}

.btn-ghost:hover {
  border-color: var(--brintel-red);
  color: var(--brintel-red);
}

.hero-metrics {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hero-metrics li {
  background: #fff;
  border-radius: 12px;
  padding: 14px 12px;
  border: 1px solid #ececec;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.hero-metrics strong {
  display: block;
  font-size: 1.1rem;
  color: var(--brintel-red);
  margin-bottom: 2px;
}

.hero-metrics span {
  color: #555;
  font-size: 0.9rem;
}

.hero-media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.65);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  color: #fff;
  font-family: var(--font-head);
  background: rgba(4, 4, 4, 0.75);
  border-left: 4px solid var(--brintel-red);
  padding: 10px 14px;
  border-radius: 10px;
}

.trust-strip {
  padding: 0 0 24px;
}

.section-title {
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 18px;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 180px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brintel-black) 0%, var(--brintel-green-true) 50%, var(--brintel-red-true) 100%);
}

.section-dark .section-title::after {
  background: linear-gradient(90deg, var(--brintel-black) 0%, var(--brintel-green-true) 55%, var(--brintel-red-true) 100%);
}

.separador-brintel {
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, var(--brintel-black) 0%, var(--brintel-green-true) 50%, var(--brintel-red-true) 100%);
  border-radius: 2px;
  margin: 22px 0;
}

.separador-nodos {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
}

.separador-nodos::before,
.separador-nodos::after {
  content: "";
  flex: 1;
  height: 2px;
  background-color: var(--brintel-green-true);
}

.separador-nodos .nodo {
  width: 12px;
  height: 12px;
  background-color: var(--brintel-red-true);
  border: 3px solid var(--brintel-black);
  border-radius: 50%;
  margin: 0 15px;
}

.lista-servicios {
  list-style: none;
  padding: 0;
}

.lista-servicios li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-size: 1.04rem;
}

.lista-servicios li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 10px;
  background-color: var(--brintel-green-true);
  border: 2px solid var(--brintel-black);
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(0, 122, 51, 0.2);
}

.split-feature {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: center;
}

.split-feature-media {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 34px rgba(11, 24, 50, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.split-feature-media img {
  min-height: 320px;
  object-fit: cover;
}

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

.tarjeta-brintel {
  background-color: #fff;
  padding: 22px;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.07);
  position: relative;
  overflow: hidden;
  border: 1px solid #eaeaea;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.tarjeta-brintel:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.11);
}

.tarjeta-brintel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--brintel-black), var(--brintel-green-true), var(--brintel-red-true));
}

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

.project-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: 190px;
  box-shadow: 0 16px 26px rgba(0, 0, 0, 0.16);
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-card .overlay {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: end;
  padding: 14px;
  color: #fff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.75));
}

.trust-grid {
  background: linear-gradient(135deg, #ffffff, #f4faf5);
  color: #1c1c1c;
  border-radius: 18px;
  padding: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  border: 1px solid #e6eee7;
  box-shadow: 0 16px 32px rgba(10, 18, 12, 0.08);
}

.trust-grid h3 {
  margin-bottom: 8px;
  color: #0f2215;
}

.trust-icon {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  background: #edf6ef;
  color: #0a7331;
  border: 1px solid #d5e8d8;
}

.trust-grid p {
  margin: 0;
  color: #3e4b42;
}

.logos-showcase {
  padding-top: 22px;
}

.logos-stack {
  display: grid;
  gap: 20px;
}

.logos-card {
  background: #ffffff;
  border: 1px solid #e4ece6;
  border-radius: 16px;
  padding: 18px 18px 20px;
  box-shadow: 0 12px 28px rgba(8, 20, 12, 0.07);
  overflow: hidden;
}

.logos-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.logos-head h3 {
  margin: 0;
  font-size: 1.02rem;
  color: #102116;
  text-transform: none;
}

.logos-head span {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: #47775b;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.logos-marquee {
  position: relative;
  overflow: hidden;
  padding: 2px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.logos-track {
  display: flex;
  align-items: stretch;
  gap: 16px;
  width: max-content;
  animation: logosScroll 34s linear infinite;
  will-change: transform;
}

.logos-track--slow {
  animation-duration: 44s;
}

.logos-marquee:hover .logos-track {
  animation-play-state: paused;
}

.logo-pill {
  flex: 0 0 190px;
  width: 190px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border: 1px solid #e2e8e4;
  border-radius: 12px;
  background: #fbfdfb;
}

.logo-pill img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: saturate(0.95);
}

@keyframes logosScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.section {
  padding: 98px 0;
}

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

.service-card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid #ededed;
  padding: 20px;
  min-height: 185px;
  transition: 0.25s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--brintel-green), #65ca65) 1;
  opacity: 0;
  transition: 0.2s ease;
}

.service-card h3 {
  font-size: 1.06rem;
  margin-bottom: 10px;
}

.service-card p {
  margin: 0;
  color: #5b5b5b;
}

.service-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--brintel-green);
  font-weight: 700;
  font-family: var(--font-head);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-link:hover {
  color: var(--brintel-red);
}

.services-cta-wrap {
  margin-top: 24px;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(4, 125, 4, 0.45);
  box-shadow: 0 18px 30px rgba(4, 4, 4, 0.11);
}

.service-card:hover::before {
  opacity: 1;
}

.section-alt {
  background: linear-gradient(135deg, #edf2f7, #f9fbff 45%, #f7faf2);
}

.sectors-wrap {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.sectors-media img {
  border-radius: 20px;
  min-height: 420px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.sector-list {
  list-style: none;
  padding-left: 0;
  margin: 20px 0 0;
}

.sector-list li {
  margin-bottom: 9px;
  position: relative;
  padding-left: 26px;
}

.sector-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 2px solid #021d04;
  background: var(--brintel-green-true);
  box-shadow: 0 0 0 2px rgba(193, 18, 31, 0.18);
}

.value-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
}

.value-media-stack {
  display: grid;
  gap: 14px;
}

.value-media-stack img {
  border-radius: 16px;
  min-height: 220px;
  object-fit: cover;
}

.value-points {
  display: grid;
  gap: 12px;
}

.value-points article {
  background: #fff;
  border-left: 4px solid var(--brintel-green);
  border-radius: 10px;
  padding: 14px 14px 12px;
}

.value-points h3 {
  margin-bottom: 4px;
  font-size: 1.05rem;
}

.value-points p {
  margin: 0;
  color: #535353;
}

.section-dark {
  background: linear-gradient(150deg, #f8fbf8 0%, #f2f8f3 60%, #f6fbff 100%);
  color: #132117;
  border-top: 1px solid #e4ece5;
  border-bottom: 1px solid #e4ece5;
}

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

.timeline article {
  background: #ffffff;
  border: 1px solid #dce8de;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 10px 20px rgba(6, 20, 10, 0.06);
}

.timeline span {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--brintel-green-true);
  letter-spacing: 0.04em;
}

.timeline h3 {
  margin: 10px 0 6px;
  color: #122116;
}

.timeline p {
  margin: 0;
  color: #3f4a41;
}

.contact-wrap {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr;
}

.contact-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #ececec;
  padding: 24px;
  box-shadow: 0 20px 32px rgba(8, 20, 40, 0.08);
}

.contact-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-card li {
  margin-bottom: 10px;
}

.contact-card a:hover {
  color: var(--brintel-red);
}

.social-links {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-links a {
  border: 1px solid #d7d7d7;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.92rem;
  transition: 0.2s ease;
}

.social-links a:hover {
  border-color: var(--brintel-green);
  color: var(--brintel-green);
}

.contact-media img {
  min-height: 100%;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.contact-form-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #ececec;
  padding: 24px;
  box-shadow: 0 20px 32px rgba(8, 20, 40, 0.08);
}

.contact-form-card p {
  margin-top: 0;
  color: #505050;
}

.contact-form-shell {
  min-height: 210px;
}

.contact-form-shell > div[data-bme-form-id] {
  width: 100%;
}

.site-footer {
  background: linear-gradient(180deg, #050807 0%, #0a100c 65%, #0b1510 100%);
  border-top: 1px solid rgba(0, 122, 51, 0.28);
  color: #d8e4dc;
  padding: 74px 0 30px;
}

.footer-wrap {
  display: block;
}

.site-footer img {
  width: 190px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(232, 242, 236, 0.72);
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.1fr 1fr 1fr 1.3fr;
  gap: 42px;
  margin-bottom: 34px;
}

.footer-brand-desc {
  margin: 16px 0 18px;
  color: rgba(220, 234, 225, 0.62);
  font-size: 0.94rem;
  max-width: 380px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.f-social-btn {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 122, 51, 0.35);
  border-radius: 8px;
  color: rgba(231, 240, 234, 0.78);
}

.f-social-btn:hover {
  border-color: rgba(193, 18, 31, 0.48);
  color: #ffffff;
  background: rgba(193, 18, 31, 0.16);
}

.footer-col-title {
  margin: 0 0 14px;
  font-family: var(--font-head);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: #ffffff;
  text-transform: uppercase;
}

.footer-contact-item {
  margin-bottom: 12px;
}

.fci-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: rgba(182, 207, 191, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 3px;
}

.fci-val,
.fci-val a {
  font-size: 0.92rem;
  color: rgba(230, 240, 235, 0.84);
}

.footer-topline {
  height: 2px;
  background: linear-gradient(90deg, var(--brintel-black), var(--brintel-green-true), var(--brintel-red-true));
  margin-bottom: 22px;
}

.footer-bottom {
  border-top: 1px solid rgba(161, 195, 170, 0.2);
  padding-top: 16px;
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  color: rgba(189, 214, 197, 0.7);
  font-size: 0.84rem;
}

.footer-legal {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-legal a {
  font-size: 0.82rem;
  color: rgba(196, 219, 204, 0.72);
}

.footer-legal a:hover {
  color: #ffffff;
}

.info-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 120;
}

.info-modal.is-open {
  display: flex;
}

.info-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 10, 8, 0.7);
}

.info-modal-panel {
  position: relative;
  width: min(880px, 94vw);
  max-height: 90vh;
  overflow: auto;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #deebdf;
  box-shadow: 0 28px 48px rgba(4, 4, 4, 0.28);
  padding: 22px;
}

.info-modal-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 14px;
  margin-bottom: 10px;
}

.info-modal-head h3 {
  margin: 0;
  font-size: clamp(1.3rem, 2.8vw, 1.9rem);
}

.info-modal-head p {
  margin: 6px 0 0;
  color: #4b5a50;
}

.info-modal-close {
  border: 1px solid #cad8cd;
  background: #ffffff;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

.info-modal-close:hover {
  border-color: #9eb4a2;
}

.info-modal-form {
  min-height: 220px;
}

body.modal-open {
  overflow: hidden;
}

.inner-hero {
  padding: 86px 0 48px;
  background: linear-gradient(140deg, #f4faf5 0%, #edf5ff 100%);
  color: #101915;
  border-bottom: 1px solid #e4ece5;
}

.inner-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.inner-hero p {
  color: #324538;
}

.inner-hero .kicker {
  color: var(--brintel-green-true);
}

.inner-hero-media img {
  border-radius: 18px;
  min-height: 360px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.crumbs {
  padding: 14px 0;
  font-size: 0.9rem;
}

.crumbs a {
  color: #3f3f3f;
}

.crumbs span {
  color: #777;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.detail-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 14px;
  padding: 18px;
}

.detail-card h3 {
  margin-bottom: 8px;
}

.detail-card ul {
  margin: 0;
  padding-left: 20px;
}

.detail-card li {
  margin-bottom: 7px;
}

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

.process-grid article {
  background: #ffffff;
  color: #223528;
  border-radius: 12px;
  padding: 14px;
  border: 1px solid #dde8df;
  border-top: 3px solid var(--brintel-green-true);
}

.process-grid h3 {
  color: #0f2014;
  margin: 10px 0 8px;
}

.process-grid p {
  margin: 0;
  color: #3f4e45;
}

.stat-band {
  background: linear-gradient(120deg, #ffffff, #f5faf6);
  color: #17221b;
  border: 1px solid #dde9df;
  border-radius: 16px;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.stat-band h3 {
  color: var(--brintel-green-true);
  margin: 0 0 3px;
}

.cta-panel {
  margin-top: 32px;
  background: #fff;
  border: 1px solid #ececec;
  border-left: 4px solid var(--brintel-red);
  border-radius: 14px;
  padding: 20px;
  display: grid;
  gap: 10px;
}

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

.service-list-grid .service-card {
  min-height: 210px;
}

.about-layout {
  display: grid;
  gap: 18px;
}

.about-block {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 14px;
  padding: 20px;
}

.about-block p {
  margin: 0 0 10px;
  color: #454545;
}

.about-block p:last-child {
  margin-bottom: 0;
}

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

.about-highlights article {
  border: 1px solid #ececec;
  border-radius: 12px;
  padding: 14px;
  background: #fff;
}

.about-highlights h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.about-highlights p {
  margin: 0;
  color: #4f4f4f;
}

@media (max-width: 1040px) {
  .hero-grid,
  .split-feature,
  .sectors-wrap,
  .value-grid,
  .contact-wrap,
  .inner-hero-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }

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

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

  .process-grid,
  .stat-band,
  .service-list-grid,
  .about-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .hero-media img {
    min-height: 360px;
  }
}

@media (max-width: 760px) {
  .menu-btn {
    display: flex;
  }

  .main-nav {
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(4, 4, 4, 0.1);
    padding: 14px;
    flex-direction: column;
    align-items: flex-start;
    display: none;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.1);
  }

  .lang-switch {
    margin-left: 0;
  }

  .mega-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    border: 1px solid #efefef;
    border-radius: 12px;
    margin-top: 6px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    display: none;
  }

  .nav-item-mega::before {
    display: none;
  }

  .nav-item-mega.is-open .mega-menu {
    display: block;
  }

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

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

  .hero {
    padding-top: 40px;
  }

  .trust-grid,
  .hero-metrics,
  .services-grid,
  .projects-grid,
  .timeline,
  .process-grid,
  .stat-band,
  .service-list-grid,
  .about-highlights {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 58px 0;
  }

  .logos-card {
    padding: 14px;
  }

  .logos-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .logos-head span {
    letter-spacing: 0.08em;
  }

  .logos-track {
    gap: 10px;
    animation-duration: 26s;
  }

  .logos-track--slow {
    animation-duration: 34s;
  }

  .logo-pill {
    flex-basis: 150px;
    width: 150px;
    height: 82px;
    padding: 9px;
    border-radius: 10px;
  }

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .info-modal-panel {
    padding: 16px;
  }

  h2 {
    margin-bottom: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .logos-track,
  .logos-track--slow {
    animation: none;
    transform: translateX(0);
    width: 100%;
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy,
  .hero-media,
  .service-card,
  .trust-grid article,
  .timeline article {
    animation: fadeUp 0.7s ease both;
  }

  .hero-media {
    animation-delay: 0.1s;
  }

  .service-card:nth-child(2n) {
    animation-delay: 0.08s;
  }

  .service-card:nth-child(3n) {
    animation-delay: 0.14s;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
