/* EVI site styles */

:root {
  --green: #5aa427;
  --green-light: #92c16c;
  --muted: #555;
  --divider-w: 69px;
  --max-w: 1440px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Roboto', sans-serif;
  color: #000;
  overflow-x: hidden;
}

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

img { max-width: 100%; }

.site-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
}

/* section title with the green underline */
.sec-title {
  display: inline-block;
  position: relative;
  padding-bottom: 14px;
  margin-bottom: 20px;
}

.sec-title h2 {
  font-size: 42px;
  font-weight: 300;
  line-height: normal;
  color: #000;
  margin: 0;
  white-space: nowrap;
}

.sec-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: var(--divider-w);
  height: 2px;
  background: var(--green);
}

.sec-title--white h2 { color: #fff; }


/* ---- navbar ---- */

#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 90px;
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
  z-index: 1050;
  transition: box-shadow .25s;
}

#site-header.scrolled {
  box-shadow: 0 2px 18px rgba(0,0,0,.08);
}

.nav-logo { width: 180px; flex-shrink: 0; }
.nav-logo img {
  width: 100%;
  height: 60px;
  object-fit: contain;
  object-position: left;
}

.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu li a {
  font-size: 14.5px;
  font-weight: 400;
  color: #000;
  white-space: nowrap;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}

.nav-menu li a:hover {
  color: var(--green);
  border-color: var(--green);
}

.nav-meta {
  font-size: 13px;
  color: #000;
}

.nav-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.nav-meta .meta-item svg {
  width: 14px;
  height: 14px;
  fill: #000;
  flex-shrink: 0;
}

.nav-meta .meta-divider {
  width: 1px;
  height: 14px;
  background: #ccc;
}

.nav-meta .dropdown-item.active,
.nav-meta .dropdown-item:active {
  background: var(--green);
  color: #fff;
}

.nav-meta .dropdown-item:hover {
  color: var(--green);
  background: #f5f5f5;
}

/* hamburger */
.navbar-toggler {
  border: none;
  padding: 8px;
  background: transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: background .2s;
}

.navbar-toggler:hover { background: rgba(0,0,0,.06); }
.navbar-toggler:focus { box-shadow: none; outline: none; }
.navbar-toggler[aria-expanded="true"] { background: rgba(90,164,39,.1); }

.navbar-toggler-icon {
  display: block;
  width: 22px;
  height: 2px;
  background: #333;
  position: relative;
  transition: background .25s;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #333;
  transition: transform .3s ease, top .3s ease, opacity .2s;
}

.navbar-toggler-icon::before { top: -7px; }
.navbar-toggler-icon::after  { top: 7px; }

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

@media (max-width: 991.98px) {
  #site-header {
    height: 64px;
    min-height: unset;
  }

  #site-header .inner {
    height: 64px;
  }

  /* hide desktop nav on mobile */
  .nav-collapse {
    display: none !important;
  }
}

/* ---- Mobile Side Menu ---- */

.msm {
  display: flex;
  position: fixed;
  inset: 0;
  z-index: 1060;
  transform: translateX(-100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}

.msm.is-open {
  transform: translateX(0);
  pointer-events: auto;
}

.msm-white {
  flex: 1;
  background: #fff;
  display: flex;
  /* flex-direction: column; */
  flex-wrap: wrap;
  padding: 20px 24px 32px;
  overflow-y: auto;
  position: relative;
}

.msm-dark {
  width: 52px;
  flex-shrink: 0;
  background: #3d3d3d;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 0 24px;
  gap: 0;
  height: 170px;
  margin: 0 5px;
}

.msm-logo {
  margin-bottom: 40px;
}

.msm-logo img {
  width: 180px;
  height: auto;
}

.msm-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.msm-nav ul li a {
  display: block;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  text-decoration: none;
  padding: 14px 0 4px 14px;
  /* text-transform: lowercase; */
  /* border-bottom: 1px solid #f0f0f0; */
  transition: color .2s;
}

/* .msm-nav ul li:first-child a { border-top: 1px solid #f0f0f0; } */

.msm-nav ul li a:hover { color: var(--green); }

.msm-contact {
  position: absolute;
  right: 20px;
  top: 40px;
}

.msm-contact svg {
  width: 24px;
  height: 24px;
  fill: #555;
}

.msm-close {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.msm-close svg {
  width: 20px;
  height: 20px;
}

.msm-lang-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
}

.msm-lang-btn {
  background: none;
  border: none;
  color: #ccc;
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  cursor: pointer;
  padding: 10px 0;
  width: 100%;
  text-align: center;
  transition: color .2s;
}

.msm-lang-btn.active { color: #fff; }
.msm-lang-btn:hover { color: #fff; }

.msm-lang-divider {
  width: 28px;
  height: 1px;
  background: #666;
  margin: 2px auto;
}

.msm-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1059;
  background: rgba(0,0,0,.4);
}

.msm-backdrop.is-open {
  display: block;
}

/* on desktop, hide the side menu and sector-nav  */
@media (min-width: 992px) {
  .msm,
  .msm-backdrop {
    display: none !important;
  }
  .sector-nav { display: none !important; }
}


/* ---- hero ---- */

#hero { margin-top: 90px; }

.hero-static {
  height: 700px;
  position: relative;
  background-size: cover;
  background-position: center center;
}

.hero-static::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.40);
  z-index: 1;
}

.hero-slide-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 50px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.hero-text { max-width: 644px; }

.hero-heading {
  font-size: 46px;
  font-weight: 300;
  line-height: 56px;
  color: #fff;
  margin: 0;
}

@media (max-width: 991.98px) {
  #hero { margin-top: 0; }
  .hero-static { height: 480px; }
  .hero-heading { font-size: 32px; line-height: 42px; }
}


/* ---- about evi ---- */

#about-evi { padding: 80px 0 70px; }

.about-large {
  font-size: 32px;
  font-weight: 300;
  line-height: 40px;
  color: #000;
  letter-spacing: -.32px;
  margin-top: 22px;
}

.about-small {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--muted);
}


/* ---- what we do ---- */

#what-we-do { padding-top: 73px; }

.sector-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--muted);
  max-width: 1049px;
  margin: 26px auto 0;
}

.sectors-grid {
  display: flex;
  width: 100%;
  margin-top: 40px;
  overflow: hidden;
  gap: 0.8px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(255,255,255,.15) 0%,
    rgba(255,255,255,.55) 50%,
    rgba(255,255,255,.15) 80%,
    rgba(255,255,255,.55) 90%,
    transparent 100%
  );
  background-color: #000;
}

.sector-item {
  flex: 1;
  height: 518px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.sector-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sector-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.06);
  transition: opacity .35s ease;
  z-index: 1;
}

.sector-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(90,164,39,.75);
  opacity: 0;
  transition: opacity .35s ease;
  z-index: 2;
}

.sector-item:hover::after  { opacity: 0; }
.sector-item:hover::before { opacity: 1; }

.s-state-default {
  position: absolute;
  left: 27px;
  right: 27px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  transition: opacity .25s ease;
}

.s-state-default span {
  font-size: 32px;
  font-weight: 400;
  line-height: 46px;
  color: #fff;
  display: block;
}

.sector-item:hover .s-state-default {
  opacity: 0;
  pointer-events: none;
}

.s-state-hover {
  position: absolute;
  left: 27px;
  right: 27px;
  top: 134px;
  z-index: 4;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .3s ease .1s, transform .3s ease .1s;
}

.sector-item:hover .s-state-hover {
  opacity: 1;
  transform: translateY(0);
}

.s-hover-title {
  font-size: 32px;
  font-weight: 400;
  line-height: 46px;
  color: #fff;
  margin: 0;
}

.s-hover-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #fff;
  margin: 12px 30px 0 0;
}


/* ---- our mission ---- */

#our-mission {
  padding: 80px 50px;
  text-align: center;
}

.mission-text {
  font-size: 32px;
  font-weight: 300;
  line-height: 40px;
  color: #000;
  max-width: 1290px;
  margin: 0 auto;
}


/* ---- our approach ---- */

#our-approach {
  height: 645px;
  position: relative;
  background: url('../images/approach-bg.jpg') no-repeat bottom center / cover;
}

.approach-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 50px;
  display: flex;
  align-items: center;
}

.approach-box { max-width: 528px; }

.approach-box .sec-title h2 { color: #fff; }

.approach-body {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #fff;
  margin-top: 10px;
}

.approach-body ul {
  padding-left: 28px;
  margin: 8px 0 12px;
}

.approach-body li { margin-bottom: 4px; }


/* ---- why evi ---- */

#why-evi {
  padding: 80px 0;
  overflow: hidden;
}

.why-tagline {
  font-size: 32px;
  font-weight: 300;
  line-height: 40px;
  color: #000;
  margin: 20px 0 28px;
}

.why-nav { display: flex; }

.why-btn {
  width: 40px;
  height: 40px;
  background: var(--green);
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity .2s;
}

.why-btn:hover { opacity: .85; }
.why-btn.swiper-button-disabled { opacity: .55; cursor: default; }
.why-btn-m:disabled,
.sector-btn:disabled { opacity: .55; cursor: default; pointer-events: none; }
.why-btn svg { width: 20px; height: 20px; fill: #fff; }
.why-btn.btn-prev svg { transform: rotate(180deg); }

.strengths-swiper { overflow: visible; }
.strengths-swiper .swiper-slide { width: 340px; }

.strength-card {
  background: #fff;
  border: 1px solid #eee;
  padding: 22px 20px;
  height: 415px;
  width: 340px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}

.s-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}

.s-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
  display: block;
}

.s-title {
  font-size: 24px;
  font-weight: 300;
  line-height: 30px;
  color: #000;
  letter-spacing: -.48px;
  margin: 0;
}

.s-div {
  width: var(--divider-w);
  height: 2px;
  background: var(--green);
  flex-shrink: 0;
}

.s-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--muted);
  letter-spacing: -.16px;
  margin: 0;
}


/* ---- about engro ---- */

#about-engro {
  padding: 80px 0;
  overflow: hidden;
}

.ae-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  padding-left: 53px;
  padding-right: 50px;
  gap: 82px;
}

.ae-left {
  width: 649px;
  flex-shrink: 0;
}

.ae-body {
  width: 639px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--muted);
  margin-top: 20px;
}

.ae-body p     { margin-bottom: 0; }
.ae-body p + p { margin-top: 24px; }
.ae-body .label { color: #000; }
.ae-body a { color: var(--green); }

.ae-right {
  flex-shrink: 0;
  width: 606px;
  height: 504px;
  overflow: hidden;
}

.ae-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
  display: block;
}

@media (max-width: 1200px) {
  .ae-inner {
    gap: 40px;
    padding-left: 40px;
    padding-right: 40px;
    flex-direction: column;
  }
  .ae-left  { width: 45%; }
  .ae-right { flex: 1; width: auto; }
}

@media (max-width: 768px) {
  .ae-inner {
    flex-direction: column;
    padding: 0 24px;
  }
  .ae-left  { width: 100%; }
  .ae-body  { width: 100%; }
  .ae-right { width: 100%; height: 300px; }
}


/* ---- code of conduct ---- */

#code-of-conduct { padding: 80px 0; }

.coc-content {
  padding-left: 50px;
  padding-right: 53px;
  max-width: 1440px;
  margin: 0 auto;
}

.coc-lead {
  font-size: 32px;
  font-weight: 300;
  line-height: normal;
  color: #000;
  margin: 20px 0 0;
}

.coc-body { margin-top: 25px; }

.coc-para {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--muted);
  margin: 0;
}

.coc-spacer { height: 40px; }

.coc-para a { color: var(--green); }

.coc-sub {
  font-size: 24px;
  font-weight: 400;
  line-height: 25px;
  color: var(--muted);
  margin: 0;
}

.coc-card-wrap {
  padding-left: 50px;
  margin-top: 30px;
  max-width: 1440px;
  margin: 30px auto 0;
}

.coc-card {
  width: 320px;
  height: 412px;
  background: #fff;
  box-shadow: 0 4px 25px rgba(0,0,0,.08);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: background .3s;
}

.coc-card:hover { background: var(--green); }
.coc-card:hover .coc-card-overlay { opacity: 1; }
.coc-card:hover .coc-card-lbl { color: #fff; }

.coc-card-overlay {
  position: absolute;
  inset: 0;
  /* background: var(--green); */
  opacity: 0;
  transition: opacity .3s;
  z-index: 1;
}

.coc-card-img {
  position: absolute;
  top: 16px;
  left: 15px;
  width: 290px;
  height: 307px;
  overflow: hidden;
  z-index: 0;
}

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

.coc-card-lbl {
  position: absolute;
  top: 338px;
  left: 15px;
  right: 44px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #000;
  z-index: 2;
  transition: color .3s;
}


/* ---- footer ---- */

.footer-nav-bar {
  height: 154px;
  background: linear-gradient(90deg, #5aa427 0%, #92c16c 100%);
  position: relative;
  overflow: hidden;
}

.footer-nav-inner {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  height: 154px;
}

.footer-nav-links {
  position: absolute;
  left: 52px;
  right: 217px;
  top: 73px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav-links li a {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  transition: opacity .2s;
}

.footer-nav-links li a:hover { opacity: .75; }

.footer-copy-bar {
  height: 110px;
  background: #fff;
  border-top: 1px solid #f0f0f0;
  position: relative;
}

.footer-copy-inner {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  height: 110px;
}

.fc-logo {
  position: absolute;
  left: 46px;
  top: 37px;
  width: 212px;
  height: 66px;
}

.fc-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left;
}

.fc-copy {
  position: absolute;
  left: 346px;
  top: 37px;
}

.fc-copy .fc-year {
  display: block;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  letter-spacing: -0.32px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.fc-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.fc-links a {
  font-size: 16px;
  font-weight: 400;
  color: #555;
  white-space: nowrap;
  transition: color .2s;
}

.fc-links a:hover { color: var(--green); }

.fc-socials {
  position: absolute;
  left: 911px;
  top: 55px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.fc-socials a svg {
  width: 24px;
  height: 24px;
  display: block;
  transition: stroke .2s;
}

.fc-socials a:hover svg { stroke: var(--green);  }

.fc-agency {
  position: absolute;
  left: 1196px;
  top: 62px;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  white-space: nowrap;
  letter-spacing: -0.32px;
}

.fc-agency span { color: #37a25d; }

.footer-addr-bar {
  height: 238px;
  background: #fff;
  /* border-top: 1px solid #ebebeb; */
  position: relative;
}

.footer-addr-inner {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  height: 238px;
}

.fa-logo {
  position: absolute;
  left: 33px;
  top: 39px;
  width: 96px;
  height: 109px;
}

.fa-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.fa-vline {
  position: absolute;
  width: 1px;
  height: 144px;
  background: #ddd;
  top: 53px;
}

.fa-vline-1 { left: 149px; }
.fa-vline-2 { left: 470px; }

.fa-investor {
  position: absolute;
  left: 169px;
  top: 66px;
  width: 281px;
}

.fa-investor p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #000;
  margin: 0;
}

.fa-investor .green { color: var(--green); }
.fa-investor a, .fa-address a { color: var(--green); text-decoration: underline; }

.fa-address {
  position: absolute;
  left: 490px;
  top: 66px;
  width: 309px;
}

.fa-address p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #000;
  margin: 0;
}

@media (max-width: 1440px) {
  .footer-nav-inner,
  .footer-copy-inner,
  .footer-addr-inner { max-width: 100%; }
  .footer-nav-links  { right: 52px; }
  .footer-copy-inner{overflow: hidden;}
}

@media (max-width: 1200px) {
  .footer-nav-links li a { font-size: 15px; }
  .fc-agency { left: auto; right: 52px; }
  .fc-socials { left: auto; right: 260px; }
  .fc-copy   { left: 280px; }
  .fc-logo   { left: 32px; }
}

@media (max-width: 991px) {
  .footer-nav-bar { height: auto; padding: 24px; }
  .footer-nav-inner { height: auto; }
  .footer-nav-links {
    position: static;
    flex-wrap: wrap;
    gap: 12px 24px;
    justify-content: flex-start;
    right: auto;
  }

  .footer-copy-bar { height: auto; }
  .footer-copy-inner {
    height: auto;
    padding: 20px 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
  }
  .fc-logo, .fc-copy, .fc-socials, .fc-agency { position: static; }
  .fc-logo { width: 160px; height: 50px; }

  .footer-addr-bar { height: auto; }
  .footer-addr-inner {
    height: auto;
    padding: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px 32px;
    align-items: flex-start;
  }
  .fa-logo, .fa-vline, .fa-investor, .fa-address { position: static; }
  .fa-vline  { display: none; }
  .fa-vline.fa-vline-1{ display: block; }
  .fa-logo   { width: 72px; height: 82px; }
}


/* ============================================================
   MOBILE / TABLET  
   ============================================================ */
@media (max-width: 991.98px) {

  /* ---- Hero ---- */
  #hero { margin-top: 64px; }
  .hero-static { height: 600px; }
  .hero-slide-inner { padding: 0 20px; align-items: center; padding-bottom: 64px; }
  .hero-text { max-width: 100%; }
  .hero-heading { font-size: 38px; line-height: 50px; }

  /* ---- About EVI ---- */
  #about-evi { padding: 60px 0 50px; }
  .about-large { font-size: 28px; line-height: 38px; margin-top: 16px; }
  .about-small { margin-top: 24px; }

  /* ---- What We Do — horizontal snap scroller ---- */
  #what-we-do { padding-top: 0px; }
  .sector-desc { padding: 0 20px; }
  .sectors-grid {
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    background: none;
    background-color: transparent;
    gap: 0;
    margin-top: 28px;
  }
  .sectors-grid::-webkit-scrollbar { display: none; }
  .sector-item {
    min-width: 100%;
    flex: 0 0 100%;
    scroll-snap-align: start;
    height: 480px;
  }
  /* sector tap = .active, mirrors desktop :hover */
  .sector-item.active::after  { opacity: 0; }
  .sector-item.active::before { opacity: 1; }
  .sector-item.active .s-state-default { opacity: 0; pointer-events: none; }
  .sector-item.active .s-state-hover   { opacity: 1; transform: translateY(0); }

  /* ---- Our Mission ---- */
  #our-mission { padding: 60px 20px; }
  .mission-text { font-size: 28px; line-height: 38px; }

  /* ---- Our Approach ---- */
  #our-approach { height: auto; min-height: 560px; }
  .approach-inner { padding: 50px 20px; align-items: flex-start; }
  .approach-box { max-width: 100%; }

  /* ---- About Engro ---- */
  #about-engro {
    padding: 0px 0;
  }
  .ae-inner{
    flex-direction: column;
    padding: 0 20px;
    gap: 40px;
  }

  /* ---- Sector nav (what we do) ---- */
  .sector-nav {
    display: flex;
    justify-content: center;
    gap: 0;
    padding: 16px 0 8px;
  }
  .sector-btn {
    width: 40px;
    height: 40px;
    background: var(--green);
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity .2s;
  }
  .sector-btn:hover { opacity: .85; }
  .sector-btn svg { width: 20px; height: 20px; }
  #sector-prev svg { transform: rotate(180deg); }

  /* ---- Why EVI ---- */
  #why-evi { padding: 60px 0; }
  #why-evi .site-wrap { padding: 0 16px; }
  .why-tagline { font-size: 28px; line-height: 38px; }
  #why-evi .col-lg-4 { margin-bottom: 0; }

  /* mobile nav below swiper */
  .why-nav-m {
    display: flex;
    justify-content: center;
    gap: 0;
    padding: 20px 0 8px;
  }
  .why-btn-m {
    width: 40px;
    height: 40px;
    background: var(--green);
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity .2s;
  }
  .why-btn-m:hover { opacity: .85; }
  .why-btn-m svg { width: 20px; height: 20px; }
  #why-prev-m svg { transform: rotate(180deg); }
  .fa-logo,
  .fa-investor {
      flex: 1;
      align-self: anchor-center;
  }
  .fa-address {
      width: 100%;
      flex-basis: 100%;
  }
}

/* Why EVI strength cards */
@media (max-width: 767px) {
  #why-evi .col-lg-8 { overflow: hidden !important; }
  .strengths-swiper { overflow: hidden !important; }
  .strength-card { width: 100%; max-width: 100%; }
}

/* Code of Conduct  */
@media (max-width: 991.98px) {

  /* ---- Code of Conduct ---- */
  #code-of-conduct { padding: 60px 0; }
  .coc-content { padding: 0 16px; }
  .coc-lead { font-size: 26px; line-height: 1.35; }
  .coc-sub  { font-size: 20px; line-height: 1.4; }
  .coc-card-wrap { padding: 0 16px; margin-top: 28px; }

  /* ---- Footer nav bar — vertical column ---- */
  .footer-nav-bar { height: auto; padding: 0; }
  .footer-nav-inner { height: auto; padding: 40px 16px 36px; }
  .footer-nav-links {
    position: static;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 14px;
    justify-content: flex-start;
    align-items: flex-start;
    right: auto;
  }
  .footer-nav-links li a { font-size: 20px; font-weight: 500; white-space: normal; }

  /* ---- Footer copy bar ---- */
  .footer-copy-bar { height: auto; }
  .footer-copy-inner {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 16px 20px;
    gap: 14px;
  }
  .fc-logo { position: static; width: 180px; height: 56px; }
  .fc-copy { position: static; }
  .fc-links { flex-wrap: wrap; gap: 10px 18px; }
  .fc-socials { position: static; left: auto; gap: 20px; }
  .fc-agency { position: static; left: auto; }

  /* ---- Footer address ---- */
  .footer-addr-bar { height: auto; }
  .footer-addr-inner {
    height: auto;
    display: flex;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    padding: 20px 16px 24px;
    gap: 16px;
    align-items: flex-start;
  }
  .fa-logo { position: static; width: 80px; height: 90px; flex: 0 0 auto; }
  .fa-vline { display: none; }
  .fa-investor { position: static; width: 100%; left: auto; top: auto; }
  .fa-address { position: static; width: 100%; left: auto; top: auto; }
}

/* footer-addr */
@media (max-width: 1199px) {
  .footer-addr-bar { height: auto; }
  .footer-addr-inner {
    position: static;
    height: auto;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    padding: 24px 16px;
    gap: 16px;
    align-items: flex-start;
  }
  .fa-logo { position: static !important; width: 80px; height: 90px; }
  .fa-vline { display: none; }
  .fa-investor { position: static !important; width: 100%; left: auto; top: auto; }
  .fa-address { position: static !important; width: 100%; left: auto; top: auto; }
}
