/* Connect Force CTA Section */
.cf-cta {
  padding: var(--spacing-2xl) 0 120px;
}

.cf-cta__body {
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.65);
  border-radius: 5px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.cf-cta__body--recruit {
  margin-bottom: var(--spacing-sm);
}

.cf-cta__body--contact {
  margin-bottom: 0;
}

.cf-cta__content {
  display: flex;
  gap: var(--spacing-lg);
  align-items: center;
  justify-content: center;
  padding: 80px;
  width: 100%;
}

.cf-cta__left {
  flex: 1;
  display: flex;
  gap: var(--spacing-xl);
  align-items: center;
  justify-content: space-between;
  min-width: 0;
}

.cf-cta__title-group {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 70px;
  padding: 9px 24px;
  flex-shrink: 0;
}

.cf-cta__watermark {
  position: absolute;
  left: 0;
  top: 0;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  font-size: 70px;
  line-height: 70px;
  color: transparent;
  letter-spacing: 10.5px;
  background: linear-gradient(90deg, var(--color-brand-primary) 0%, var(--color-brand-primary) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.1;
  white-space: nowrap;
}

.cf-cta__title {
  font-family: var(--font-family-main);
  font-size: 24px;
  font-weight: 500;
  color: var(--color-text-primary);
  letter-spacing: 2.4px;
  margin: 0;
  line-height: 51.2px;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}

.cf-cta__description {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  align-items: flex-start;
  justify-content: flex-start;
  max-width: 482px;
}

.cf-cta__subtitle {
  font-family: var(--font-family-main);
  font-size: 18.286px;
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 29.257px;
  margin: 0;
  white-space: nowrap;
}

.cf-cta__text {
  font-family: var(--font-family-main-p);
  font-size: var(--font-size-8);
  font-weight: 400;
  color: var(--color-text-primary);
  line-height: 28.8px;
  text-align: justify;
  width: 100%;
}

.cf-cta__text p {
}

.cf-cta__text p:last-child {
  margin-bottom: 0;
}

.cf-cta__arrow {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cf-cta__arrow img {
  max-width: 100%;
  max-height: 100%;
  display: block;
}

/* Contact CTA Specific Styles */
.cf-cta__content--contact {
  flex-direction: column;
  gap: var(--spacing-2xl);
  align-items: flex-start;
}

.cf-cta__contact-items {
  display: flex;
  gap: var(--spacing-xl);
  width: 100%;
}

.cf-cta__contact-item {
  display: flex;
  flex-grow: 1;
  gap: var(--spacing-lg);
  align-items: center;
  justify-content: flex-start;
  padding-right: var(--spacing-xl);
  flex-shrink: 0;
}

.cf-cta__contact-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  align-items: flex-start;
  justify-content: flex-start;
  flex: 1;
}

.cf-cta__contact-title {
  font-family: var(--font-family-main);
  font-size: 18.286px;
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 29.257px;
  margin: 0;
}

.cf-cta__contact-text {
  font-family: var(--font-family-main-p);
  font-size: var(--font-size-8);
  font-weight: 400;
  color: var(--color-text-primary);
  line-height: 28.8px;
}

.cf-cta__contact-text p {
  margin: 0;
}

.cf-cta__contact-arrow {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cf-cta__contact-arrow img {
  max-width: 100%;
  max-height: 100%;
  display: block;
}

.cf-cta__divider {
  background: #000;
  width: 1px;
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cf-cta__divider img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -0.5px;
  right: -0.5px;
  max-width: none;
  max-height: 100%;
  display: block;
}

/* Responsive adjustments */
@media screen and (max-width: 960px) {
  .cf-cta {
    padding: var(--spacing-xl) 0 var(--spacing-sm);
  }
  
  .cf-cta__body {
    max-width: 100%;
    margin: 0 var(--spacing-md);
  }
  
  .cf-cta__content {
    flex-direction: column;
    gap: var(--spacing-xl);
    padding: var(--spacing-2xl) var(--spacing-lg);
    text-align: center;
  }
  
  .cf-cta__left {
    flex-direction: column;
    gap: var(--spacing-xl);
    align-items: center;
    text-align: center;
  }
  
  .cf-cta__title-group {
    width: auto;
    height: auto;
    padding: var(--spacing-sm);
  }
  
  .cf-cta__watermark {
    font-size: 60px;
    line-height: 60px;
  }
  
  .cf-cta__title {
    font-size: var(--font-size-5);
    letter-spacing: 1.5px;
  }
  
  .cf-cta__description {
    width: 100%;
    max-width: 500px;
    align-items: center;
    text-align: center;
  }
  
  .cf-cta__subtitle {
    font-size: var(--font-size-7);
    white-space: normal;
  }
  
  .cf-cta__text {
    text-align: left;
  }
  
  .cf-cta__arrow {
    width: 60px;
    height: 60px;
  }
}

@media screen and (max-width: 767px) {
  .cf-cta {
    padding: 0 0 var(--spacing-lg);
  }
  
  .cf-cta__description {
    gap: var(--spacing-xs);
  }
  .cf-cta__body {
    margin: 0;
  }
  .cf-cta__body--contact {
    margin-top: var(--spacing-md);
  }
  
  .cf-cta__content {
    align-items: center;
    padding: var(--spacing-lg) var(--spacing-md);
    gap: var(--spacing-sm);
  }
  
  .cf-cta__left {
    gap: var(--spacing-lg);
  }
  
  .cf-cta__title-group {
    padding: 0;
  }
  .cf-cta__watermark {
    font-size: 50px;
    line-height: 50px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  
  .cf-cta__title {
    font-size: var(--font-size-6);
    letter-spacing: 1px;
  }
  
  .cf-cta__subtitle {
    font-size: var(--font-size-8);
    text-align: left;
  }
  
  .cf-cta__text {
    font-size: var(--font-size-9);
  }
  
  .cf-cta__arrow {
    width: 50px;
    height: 50px;
  }
  
  /* Contact CTA responsive adjustments */
  .cf-cta__contact-items {
    flex-direction: column;
    gap: var(--spacing-sm);
    align-items: center;
  }
  
  .cf-cta__contact-item {
    padding: var(--spacing-md) var(--spacing-md) var(--spacing-sm);
    width: 100%;
    max-width: 400px;
    flex-direction: column;
    text-align: center;
    gap: var(--spacing-sm);
  }
  .cf-cta__contact-item:not(:first-child) {
    border-top: 1px solid #000;
  }
  
  .cf-cta__contact-content {
    align-items: center;
    text-align: center;
    gap: var(--spacing-xs);
  }
  .cf-cta__contact-title {
    font-size: var(--font-size-8);
  }
  
  .cf-cta__contact-text {
    font-size: var(--font-size-9);
    width: 100%;
    text-align: left;
  }
  
  .cf-cta__contact-arrow {
    width: 50px;
    height: 50px;
  }
  
  .cf-cta__divider {
    height: 40px;
    width: 100%;
    max-width: 200px;
  }
  
  .cf-cta__divider img {
    position: static;
    transform: rotate(90deg);
    max-width: 100%;
    max-height: 40px;
  }
}
