/* ==========================================================================
   PropNetwork - Trusted Connections Editorial Campaign Banner Section
   Author: PropNetwork Architecture Team
   Description: Executive campaign banner section featuring dark transparent gradient,
                gradient text highlights, CTA pill button, and corner logo branding.
   ========================================================================== */

.trusted-connections-section {
  position: relative;
  width: 100%;
  min-height: 400px;
  background-image: url('../images/handshake-bg.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
}

.trusted-banner-container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.trusted-banner-content {
  max-width: 580px;
}

.trusted-banner-title {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.trusted-text-gradient {
  background: linear-gradient(90deg, #00D1C7 0%, #16A8FF 50%, #5B7FFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.trusted-banner-accent-bar {
  width: 42px;
  height: 3px;
  background: linear-gradient(90deg, #00D1C7 0%, #16A8FF 100%);
  border-radius: 2px;
  margin-bottom: 1.25rem;
}

.trusted-banner-subtitle {
  font-size: clamp(1.02rem, 1.15vw, 1.15rem);
  font-weight: 400;
  line-height: 1.6;
  color: #D5D7DB;
  margin-bottom: 2rem;
  max-width: 520px;
}

.trusted-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.9rem 2.1rem;
  border-radius: 9999px;
  background: linear-gradient(90deg, #00D1C7 0%, #16A8FF 100%);
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 209, 199, 0.35);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.trusted-banner-btn:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 209, 199, 0.5);
}

.trusted-banner-btn svg {
  transition: transform 0.25s ease;
}

.trusted-banner-btn:hover svg {
  transform: translateX(4px);
}

/* Bottom Right Corner Branding */
.trusted-banner-branding {
  position: absolute;
  bottom: 2.25rem;
  right: clamp(2rem, 5vw, 4rem);
  z-index: 2;
}

.branding-logo-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #ffffff;
  padding: 0.65rem 1.25rem;
  border-radius: 16px;
  border: 1px solid #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28), 0 2px 8px rgba(0, 0, 0, 0.12);
}

.trusted-banner-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.branding-text-group {
  display: flex;
  flex-direction: column;
}

.branding-title {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
}

.branding-title-accent {
  color: #00D1C7;
}

.branding-tagline {
  font-size: 0.75rem;
  font-weight: 500;
  color: #94A3B8;
  letter-spacing: 0.02em;
}

@media (max-width: 767.98px) {
  .trusted-connections-section {
    min-height: 480px;
  }

  .trusted-banner-content {
    max-width: 100%;
  }

  .trusted-banner-branding {
    bottom: 1.25rem;
    right: 1.25rem;
  }
}