.companies-hero {
  position: relative;
  margin-top: 110px;
  min-height: 430px;


  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}


.companies-hero {
  position: relative;
  margin-top: 110px;
  min-height: 430px;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  overflow: hidden;
  transition: background-image 1s ease-in-out;
}

.companies-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.97) 0%,
    rgba(255,255,255,0.9) 32%,
    rgba(255,255,255,0.15) 55%
  );
  z-index: 1;
}

.companies-hero-inner {
  position: relative;
  z-index: 2;
  min-height: 430px;
  display: flex;
  align-items: center;
}

.companies-hero-inner {
  min-height: 430px;
  display: flex;
  align-items: center;
}

.companies-hero-content {
  max-width: 560px;
}

.companies-hero-content span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #2FB12A;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.companies-hero-content span::before {
  content: "";
  width: 42px;
  height: 3px;
  background: #b98203;
  border-radius: 20px;
}

.companies-hero-content h1 {
  font-size: 48px;
  line-height: 1.08;
  margin: 0 0 18px;
  color: #102f3a;
}

.companies-hero-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #526b6b;
  margin-bottom: 28px;
}

.companies-hero-btn {
  display: inline-block;
  background: #B98203;
  color: #fff;
  padding: 15px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 800;
}

.hero-feature-section {
  position: relative;
  margin-top: -20px;
  padding-bottom: 70px;
  z-index: 5;
}

.hero-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 980px;
  margin: 0 auto;
}

.hero-feature-card {
  position: relative;
  background: #ffffff;
  padding: 34px 30px 30px;
  border-radius: 4px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.08);
  min-height: 185px;
  overflow: hidden;
}

.hero-feature-icon {
  width: 70px;
  height: 58px;
  background: linear-gradient(135deg, #b98203, #2FB12A);
  border-radius: 0 0 26px 0;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 22px;
}

.hero-feature-number {
  position: absolute;
  top: 28px;
  right: 28px;
  font-size: 36px;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.04);
}

.hero-feature-card h4 {
  font-size: 17px;
  color: #102f3a;
  margin: 0 0 10px;
  font-weight: 800;
}

.hero-feature-card p {
  font-size: 13.5px;
  line-height: 1.7;
  color: #6b7777;
  margin: 0;
}

@media (max-width: 900px) {
  .hero-feature-section {
    margin-top: 30px;
  }

  .hero-feature-grid {
    grid-template-columns: 1fr;
  }
}


.companies-list-section {
  padding: 90px 0 100px;
  background: #eef4f7;
}

.companies-list-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 45px;
}

.companies-list-header span {
  font-size: 12px;
  font-weight: 800;
  color: #2FB12A;
  letter-spacing: 2px;
}

.companies-list-header h2 {
  font-size: 38px;
  line-height: 1.15;
  color: #102f3a;
  margin: 10px 0 0;
}

.companies-list-header p {
  font-size: 15px;
  line-height: 1.8;
  color: #617575;
  margin: 0;
  max-width: 560px;
}

.companies-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.company-mini-card {
  position: relative;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(20, 40, 50, 0.08);
  transition: 0.3s ease;
}

.company-mini-card:hover {
  transform: translateY(-6px);
}

.company-mini-card img {
  width: 100%;
  height: 145px;
  object-fit: cover;
  display: block;
}

.company-logo-icon {
  position: absolute;
  top: 118px;
  right: 18px;
  width: 54px;
  height: 44px;
  background: #ffffff;
  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #08796f;
  font-size: 20px;
}

.company-mini-card h4 {
  margin: 24px 20px 8px;
  font-size: 16px;
  color: #102f3a;
  font-weight: 800;
}

.company-mini-card p {
  margin: 0 20px 24px;
  font-size: 13.5px;
  line-height: 1.7;
  color: #617575;
}

@media (max-width: 1100px) {
  .companies-card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 800px) {
  .companies-list-header {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .companies-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 550px) {
  .companies-card-grid {
    grid-template-columns: 1fr;
  }
}




.company-logo-icon {
  position: absolute;
  top: 118px;
  right: 18px;
  width: 58px;
  height: 58px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  z-index: 3;
}

.company-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}



.cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #08796f 0%, #062f3a 100%);
  color: #fff;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta h2 {
  font-size: 38px;
  line-height: 1.15;
  margin: 0 0 12px;
  color: #fff;
}

.cta p {
  max-width: 720px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin: 0;
}

.cta-inner > div:last-child {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.cta .btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: 0.3s ease;
}

.cta .btn-black {
  background: #ffffff;
  color: #08796f;
  border: 2px solid #ffffff;
}

.cta .btn-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.75);
}

.cta .btn:hover {
  transform: translateY(-3px);
}

@media (max-width: 900px) {
  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta h2 {
    font-size: 30px;
  }
}


@media (max-width: 768px) {
  .container {
    width: 92%;
  }

  .companies-hero {
    margin-top: 80px;
    min-height: 220px !important;
  }

  .companies-hero-inner {
    min-height: 220px !important;
    padding: 0 !important;
    align-items: center;
  }

  .companies-hero-content {
    max-width: 100%;
  }

  .companies-hero-content span {
    font-size: 11px;
    letter-spacing: 1.6px;
    margin-bottom: 10px;
  }

  .companies-hero-content span::before {
    width: 28px;
  }

  .companies-hero-content h1 {
    font-size: 28px;
    line-height: 1.15;
    margin-bottom: 12px;
  }

  .companies-hero-btn {
    padding: 11px 20px;
    font-size: 12px;
  }
}

@media (max-width: 768px) {

  .companies-list-header {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .companies-list-header span {
    font-size: 11px;
    letter-spacing: 1.5px;
  }

  .companies-list-header h2 {
    font-size: 30px;
    line-height: 1.2;
  }

  .companies-list-header p {
    font-size: 14px;
    line-height: 1.7;
    max-width: 100%;
  }

}


@media (max-width: 768px) {
  .companies-hero-overlay {
    background: rgba(255, 255, 255, 0.52) !important;
    width: 100%;
  }

  .companies-hero {
    background-position: center !important;
  }
}