/* ===== LEAD CONVERSION SECTION ===== */
#lead-conversion {
  padding: 4rem 0;
  background: var(--light-background);
}

/* Left Content */
.lead-content-left {
  flex: 1;
}

/* Logo */
.company-logo {
  max-height: 120px;
  margin-bottom: 2rem;
  width: auto;
  transition: transform 0.3s ease;
}

/* Headline */
.lead-headline {
  font-family: var(--heading-font);
  font-size: 26px;
  color: var(--heading-color);
  line-height: 1.4;
  margin-bottom: 1rem;
  font-weight: 700;
}

/* Subtext */
.lead-subtext {
  font-family: var(--default-font);
  color: var(--default-color);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Trust Badges */
.lead-trust-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  margin: 2rem 0;
}
.trust-badge {
  height: 70px;
  max-width: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
  opacity: 0.9;
}
.trust-badge:hover {
  opacity: 1;
  transform: translateY(-3px);
}

/* Points List */
.lead-points {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}
.lead-points li {
  font-family: var(--nav-font);
  font-size: 15px;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  color: var(--default-color);
  line-height: 1.5;
}
.lead-points img {
  width: 18px;
  margin-right: 12px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Social Icons */
.lead-social-icons {
  display: flex;
  gap: 1.25rem;
  margin: 2.5rem 0;
}
.lead-social-icons a {
  display: inline-flex;
  transition: all 0.3s ease;
}
.lead-social-icons a img {
  width: 26px;
  height: 26px;
  opacity: 0.8;
}
.lead-social-icons a:hover {
  transform: translateY(-3px);
}
.lead-social-icons a:hover img {
  opacity: 1;
}

/* Clients Section */
.clients-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.client-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.client-logo-item {
  flex: 0 0 calc(33.333% - 1rem);
  text-align: center;
}

@media (min-width: 768px) {
  .client-logo-item {
    flex: 0 0 calc(25% - 1.5rem);
  }
}

.client-logo-item img {
  max-height: 60px;
  width: auto;
  max-width: 100%;
  transition: transform 0.3s ease;
  display: block;
}

.client-logo-item img:hover {
  transform: translateY(-5px);
}


/* Right Form */
.lead-form-container {
  flex: 1;
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.05);
  height: 100%;
}
.lead-form-container iframe {
  width: 100%;
  min-height: 600px;
  border: none;
  border-radius: 8px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .lead-content-wrapper {
    flex-direction: column;
  }
  .lead-form-container {
    margin-top: 3rem;
  }
}

@media (max-width: 767px) {
  .client-logo-item {
    flex: 0 0 calc(50% - 1rem);
  }
  .client-logo-item img {
    height: 60px;
  }
}