:root {
  --carbyne-teal: #1cb0b3;
  --carbyne-wash: rgba(230, 244, 245, 0.98);
}

.industries-services-section {
  width: 100%;
  background: #ffffff;
}

.industries-services-banner {
  position: relative;
  width: 100%;
  min-height: 540px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  background-image:
    linear-gradient(
      90deg,
      rgba(5, 21, 31, 0.37) 0%,
      rgba(8, 38, 51, 0.26) 28%,
      rgba(8, 38, 51, 0.16) 56%,
      rgba(8, 38, 51, 0.09) 100%
    ),
    linear-gradient(
      180deg,
      rgba(8, 95, 102, 0.05) 0%,
      rgba(8, 95, 102, 0.09) 100%
    ),
    url('/assets/images/sections/industries-services.jpeg');
  background-repeat: no-repeat;
  background-size: 48% 100%;
  background-position: left center;
  background-color: #ffffff;
}
.industries-services-wave-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.industries-services-content-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 72px 6% 72px 6%;
  box-sizing: border-box;
}

.industries-services-text-side {
  width: 52%;
  max-width: 700px;
  color: var(--color-text-dark, #0a2e36);
}

.industries-services-title {
  margin: 0 0 20px 0;
  color: #111111;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.industries-services-description {
  max-width: 660px;
  margin: 0 0 35px 0;
  color: #444444;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
}

.industries-services-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.industries-services-actions .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: var(--radius-pill, 999px);
  font-size: 1rem;
  font-weight: var(--font-weight-600, 600);
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  box-sizing: border-box;
}

.industries-services-actions .button-primary {
  background-color: var(--color-brand-500, #1cb0b3);
  color: var(--color-white, #ffffff);
}

.industries-services-actions .button-primary:hover {
  background-color: var(--color-brand-600, #18a3a8);
}

.industries-services-button-secondary {
  border: 1px solid rgba(35, 72, 91, 0.22);
  background-color: transparent;
  color: var(--color-text-dark, #0a2e36);
  backdrop-filter: none;
}

.industries-services-button-secondary:hover {
  border-color: rgba(35, 72, 91, 0.34);
  background-color: rgba(35, 72, 91, 0.04);
  color: var(--color-text-dark, #0a2e36);
}

@media (max-width: 1200px) {
  .industries-services-text-side {
    width: 54%;
  }
}

@media (max-width: 991px) {
  .industries-services-banner {
    min-height: 560px;
    background-position: 18% center;
  }

  .industries-services-content-container {
    justify-content: flex-end;
    padding: 56px 32px;
  }

  .industries-services-text-side {
    width: 60%;
    max-width: 100%;
  }

  .industries-services-title {
    font-size: 1.95rem;
  }

  .industries-services-description {
    max-width: 100%;
    font-size: 0.96rem;
    line-height: 1.6;
  }
}

@media (max-width: 767px) {
  .industries-services-banner {
    min-height: auto;
    background-position: center center;
  }

  .industries-services-wave-overlay {
    display: none;
  }

  .industries-services-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(
        180deg,
        rgba(230, 244, 245, 0.88) 0%,
        rgba(230, 244, 245, 0.94) 42%,
        rgba(230, 244, 245, 0.98) 100%
      );
    z-index: 1;
  }

  .industries-services-content-container {
    justify-content: center;
    align-items: flex-start;
    padding: 44px 22px 48px 22px;
  }

  .industries-services-text-side {
    width: 100%;
    max-width: 100%;
  }

  .industries-services-title {
    margin: 0 0 16px 0;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.02em;
  }

  .industries-services-description {
    margin: 0 0 24px 0;
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .industries-services-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
  }

  .industries-services-actions .button,
  .industries-services-button-secondary {
    display: flex;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .industries-services-content-container {
    padding: 38px 18px 42px 18px;
  }

  .industries-services-title {
    font-size: 1.55rem;
  }

  .industries-services-description {
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .industries-services-actions {
    width: 100%;
  }

  .industries-services-actions .button,
  .industries-services-button-secondary {
    display: flex;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    justify-content: center;
  }
}