/* --- Vision / Mission / Core Values --- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.value-card:nth-child(1)::before { background: var(--blue); }
.value-card:nth-child(2)::before { background: var(--orange); }
.value-card:nth-child(3)::before { background: var(--navy); }

.value-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.value-card__icon {
  margin-bottom: 16px;
  font-size: 44px;
  line-height: 1;
}

.value-card__title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.value-card__desc {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

/* --- Certifications Grid --- */
.certs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.cert-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all var(--transition);
}

.cert-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
  border-color: var(--blue);
}

.cert-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #eef6ff;
}

.cert-card__title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}

.cert-card__desc {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 2px;
}

/* --- About profile section --- */
.profile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.profile-content p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.profile-intro {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 28px;
}

.profile-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.profile-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: var(--surface);
  border-radius: 10px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.profile-feature:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 16px rgba(43, 143, 204, 0.1);
  transform: translateY(-2px);
}

.profile-feature__icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: rgba(247, 148, 29, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}

.profile-feature__title {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}

.profile-feature__text {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.4;
  margin: 0;
}

/* Right side: Premium dark KPI card */
.profile-card {
  background: linear-gradient(145deg, #1a2d4d 0%, #0d1b2f 60%, #0a1520 100%);
  border-radius: 16px;
  padding: 36px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.profile-card::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(247, 148, 29, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.profile-card::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(43, 143, 204, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.profile-card__badge {
  display: inline-block;
  background: rgba(247, 148, 29, 0.18);
  border: 1px solid rgba(247, 148, 29, 0.4);
  color: var(--orange);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.profile-card__title {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}

.profile-card__desc {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 28px;
}

.profile-kpis {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  position: relative;
  z-index: 1;
}

.profile-kpi {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 12px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(4px);
  cursor: default;
}

.profile-kpi:hover {
  background: rgba(247, 148, 29, 0.14);
  border-color: rgba(247, 148, 29, 0.38);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.profile-kpi__icon {
  width: 46px;
  height: 46px;
  background: rgba(247, 148, 29, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--orange);
  transition: var(--transition);
}

.profile-kpi:hover .profile-kpi__icon {
  background: rgba(247, 148, 29, 0.28);
}

.profile-kpi__value {
  display: block;
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.profile-kpi__label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.62);
  letter-spacing: 0.3px;
  line-height: 1.3;
}

/* --- Leadership cards --- */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 820px;
  margin: 40px auto 0;
}

.leader-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px 28px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.leader-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
}

.leader-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(26, 45, 77, 0.14);
  border-color: rgba(43, 143, 204, 0.3);
}

.leader-card__avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(26, 45, 77, 0.2);
}

.leader-card__name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.leader-card__role {
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.leader-card__divider {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  border-radius: 2px;
  margin: 0 auto 16px;
}

.leader-card__bio {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 20px;
}

.leader-card__social {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.leader-social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}

.leader-social-link:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-2px);
}

/* Why Choose Enovizen — redesigned grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.why-item {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 26px 22px 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.why-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--orange);
}

.why-item__icon {
  width: 48px;
  height: 48px;
  background: rgba(43, 143, 204, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 16px;
  transition: background var(--transition), color var(--transition);
}

.why-item:hover .why-item__icon {
  background: rgba(247, 148, 29, 0.12);
  color: var(--orange);
}

.why-item__title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.4;
}

.why-item__accent {
  font-size: 20px;
  font-weight: 900;
  color: var(--orange);
  font-family: var(--font-heading);
}

.why-item__divider {
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--blue));
  border-radius: 2px;
  margin-bottom: 10px;
}

.why-item__text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

/* Coverage badge above service location cards */
.coverage-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(43, 143, 204, 0.08);
  border: 1px solid rgba(43, 143, 204, 0.25);
  color: var(--navy);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 24px;
  margin: 16px auto 0;
}

.coverage-badge strong {
  color: var(--orange);
  font-weight: 800;
}

/* How It Works steps */
.how-step {
  text-align: center;
  position: relative;
  z-index: 1;
  cursor: default;
}

.how-step__circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 28px;
  box-shadow: 0 4px 16px rgba(26, 45, 77, 0.12);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition), background var(--transition);
}

.how-step:hover .how-step__circle {
  border-color: var(--orange);
  background: rgba(247, 148, 29, 0.06);
  box-shadow: 0 8px 28px rgba(247, 148, 29, 0.25);
  transform: translateY(-4px);
}

.how-step__num {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 1px;
  margin-bottom: 6px;
  transition: color var(--transition);
}

.how-step:hover .how-step__num {
  color: var(--orange);
}

.how-step__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 8px;
  transition: color var(--transition);
}

.how-step:hover .how-step__title {
  color: var(--orange);
}

.how-step__desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0 8px;
}

/* How It Works — grid wrapper */
.how-works-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin-top: 48px;
  position: relative;
}

.how-works-connector {
  position: absolute;
  top: 36px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, #4db8ff, #1a3a5c);
  z-index: 0;
}

/* How It Works — step arrows */
.how-works-arrow {
  position: absolute;
  top: 28px;
  transform: translateX(-50%);
  z-index: 2;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 3px #e8edf3;
}

/* Service locations grid */
.location-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

/* --- FAQ --- */
.faq-list {
  max-width: 800px;
  margin: 48px auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  padding: 20px 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
  gap: 16px;
  transition: color 0.2s;
  border-left: 4px solid transparent;
  padding-left: 16px;
  margin-left: -16px;
}

.faq-question:hover {
  color: var(--orange);
}

.faq-item.active .faq-question {
  border-left-color: var(--navy);
  color: var(--orange);
}

.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.2s ease-out;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out, opacity 0.2s ease-out;
  opacity: 0;
}

.faq-item.active .faq-answer {
  opacity: 1;
}

.faq-answer p {
  padding: 0 0 20px 16px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== Responsive ===== */
@media (max-width: 1279px) {
  .certs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr;
  }

  .certs-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .cert-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 16px 10px;
  }

  .cert-card__icon {
    width: 40px;
    height: 40px;
  }

  .cert-card__title {
    font-size: 13px;
    line-height: 1.3;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .profile-grid {
    grid-template-columns: 1fr;
  }

  .profile-features {
    grid-template-columns: 1fr;
  }

  .profile-card {
    padding: 24px;
  }

  .profile-card__title {
    font-size: 22px;
  }

  .profile-kpis {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .leadership-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .how-works-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .how-works-connector,
  .how-works-arrow {
    display: none;
  }

  .location-cards > * {
    flex: 0 0 calc(50% - 12px) !important;
    min-width: 0 !important;
    padding: 20px 16px !important;
  }
}
