/*==========================================
        HERO
===========================================*/

.lead-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 0 140px;
}

.lead-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.lead-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lead-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 13, 14, .92) 40%, rgba(11, 13, 14, .7) 100%);
  z-index: 1;
}

.lead-hero-circle-1 {
  position: absolute;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(245, 130, 17, .15);
  border-radius: 50%;
  top: -100px;
  right: 10%;
  z-index: 1;
  pointer-events: none;
}

.lead-hero-circle-2 {
  position: absolute;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(245, 130, 17, .1);
  border-radius: 50%;
  bottom: 60px;
  left: 5%;
  z-index: 1;
  pointer-events: none;
}

.lead-hero .wrap {
  position: relative;
  z-index: 2;
}

.lead-hero-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.lead-hero-content .eyebrow {
  color: #f58211;
}

.lead-hero-content h1 {
  font-size: 56px;
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  margin: 12px 0 20px;
  letter-spacing: -2px;
}

.lead-hero-content .accent {
  color: #f58211;
}

.lead-hero-content>p {
  font-size: 17px;
  color: rgba(255, 255, 255, .7);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 480px;
}

/* Stats Card */
.lead-hero-card {
  display: flex;
  justify-content: flex-end;
}

.lead-hero-card-inner {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 36px;
  width: 340px;
}

.lead-hero-card-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.lead-hero-card-stat {
  display: flex;
  flex-direction: column;
}

.lead-hero-card-num {
  font-size: 30px;
  font-weight: 900;
  color: #f58211;
  line-height: 1;
}

.lead-hero-card-lbl {
  font-size: 12px;
  color: rgba(255, 255, 255, .5);
  margin-top: 6px;
}

.lead-hero-card-divider {
  height: 1px;
  background: rgba(255, 255, 255, .12);
  margin: 24px 0;
}

/* Cloud Divider */
.lead-hero-cloud {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 120px;
  z-index: 3;
}

/*==========================================
        LEADERSHIP INTRO
===========================================*/

.lead-intro-section {
  background: #f8f9fa;
  padding: 80px 0;
}

.lead-intro-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.lead-intro-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(245, 130, 17, .1);
  color: #f58211;
  font-size: 13px;
  font-weight: 700;
  border-radius: 4px;
  margin-bottom: 20px;
}

.lead-intro-badge i {
  width: 16px;
  height: 16px;
}

.lead-intro-text h2 {
  font-size: 36px;
  font-weight: 800;
  color: #14181b;
  line-height: 1.2;
  margin: 0 0 20px;
}

.lead-intro-text p {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 16px;
}

.lead-intro-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lead-intro-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: .35s;
}

.lead-intro-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .1);
}

.lead-intro-card i {
  width: 24px;
  height: 24px;
  color: #f58211;
  flex-shrink: 0;
  margin-top: 2px;
}

.lead-intro-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: #14181b;
  margin: 0 0 6px;
}

.lead-intro-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/*==========================================
        TEAM SECTION
===========================================*/

.lead-team-section {
  background: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.lead-team-circle {
  position: absolute;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(245, 130, 17, .08);
  border-radius: 50%;
  top: -150px;
  right: -150px;
  pointer-events: none;
}

.lead-team-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
}

.lead-team-title {
  font-size: 42px;
  font-weight: 800;
  color: #14181b;
  line-height: 1.15;
  margin: 12px 0 16px;
}

.lead-team-highlight {
  color: #f58211;
}

.lead-team-desc {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
}

.lead-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.lead-team-card {
  background: #f8f9fa;
  border-radius: 16px;
  overflow: hidden;
  transition: .35s;
}

.lead-team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .12);
}

.lead-team-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.lead-team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s;
}

.lead-team-card:hover .lead-team-image img {
  transform: scale(1.05);
}

.lead-team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 13, 14, .8), transparent);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  opacity: 0;
  transition: .35s;
}

.lead-team-card:hover .lead-team-overlay {
  opacity: 1;
}

.lead-team-socials {
  display: flex;
  gap: 12px;
}

.lead-team-socials a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, .2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: .35s;
}

.lead-team-socials a:hover {
  background: #f58211;
}

.lead-team-socials a i {
  width: 18px;
  height: 18px;
}

.lead-team-info {
  padding: 24px;
}

.lead-team-info h3 {
  font-size: 20px;
  font-weight: 700;
  color: #14181b;
  margin: 0 0 4px;
}

.lead-team-info>span {
  font-size: 13px;
  color: #f58211;
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
}

.lead-team-info p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/*==========================================
        VALUES SECTION
===========================================*/

.lead-values-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.lead-values-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.lead-values-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lead-values-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 13, 14, .92), rgba(11, 13, 14, .85));
}

.lead-values-section .wrap {
  position: relative;
  z-index: 2;
}

.lead-values-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
}

.lead-values-content h2 {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  margin: 12px 0 12px;
  line-height: 1.2;
}

.lead-values-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, .7);
  line-height: 1.7;
}

.lead-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.lead-value-card {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  padding: 32px 28px;
  transition: .35s;
}

.lead-value-card:hover {
  background: rgba(255, 255, 255, .14);
  transform: translateY(-6px);
}

.lead-value-num {
  font-size: 32px;
  font-weight: 900;
  color: #f58211;
  margin-bottom: 16px;
}

.lead-value-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
}

.lead-value-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, .7);
  line-height: 1.7;
  margin: 0;
}

/*==========================================
        CTA SECTION
===========================================*/

.lead-cta-section {
  background: #f8f9fa;
  padding: 60px 0;
}

.lead-cta-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: #14181b;
  border-radius: 16px;
  padding: 48px 50px;
}

.lead-cta-text h2 {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 8px;
}

.lead-cta-text p {
  font-size: 16px;
  color: rgba(255, 255, 255, .7);
  margin: 0;
}

/*==========================================
        RESPONSIVE
===========================================*/

@media (max-width: 992px) {
  .lead-hero {
    padding: 80px 0 120px;
  }

  .lead-hero-flex {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .lead-hero-content h1 {
    font-size: 42px;
  }

  .lead-hero-card {
    justify-content: flex-start;
  }

  .lead-hero-card-inner {
    width: 100%;
    max-width: 400px;
  }

  .lead-intro-flex,
  .lead-values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .lead-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .lead-hero {
    min-height: auto;
    padding: 70px 0 100px;
  }

  .lead-hero-content h1 {
    font-size: 32px;
  }

  .lead-hero-card-inner {
    padding: 24px;
  }

  .lead-hero-card-num {
    font-size: 24px;
  }

  .lead-intro-flex,
  .lead-values-grid {
    grid-template-columns: 1fr;
  }

  .lead-team-grid {
    grid-template-columns: 1fr;
  }


  .lead-cta-flex {
    flex-direction: column;
    text-align: center;
    padding: 36px 24px;
  }
}