/* HERO SECTION */
.hc-hero {
  background-color: var(--secondary-color);
  color: var(--text-white);
  overflow: hidden;
}

.hc-hero-content {
  display: flex;
  gap: 4rem;
  align-items: center;
  position: relative;
}

.hc-hero-text {
  max-width: 784px;
  padding: 7rem 0 10.53rem;
}

.hc-label {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  line-height: 1.5;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
}

.hc-hero .hc-label {
  margin-bottom: 0.875rem;
}

.hc-hero-title {
  font-size: 2.875rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.4;
  margin-bottom: 1.75rem;
}

.hc-hero-title span {
  color: var(--primary-color);
}

.hc-hero-description {
  font-size: 1.125rem;
  font-weight: var(--font-weight-light);
  line-height: var(--line-height-extra-relaxed);
  color: #94a3b8;
  margin-bottom: 2.2rem;
  max-width: 590px;
}

.hc-hero-actions {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
}

.hc-hero-actions .btn {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-normal);
  padding: 11.5px 21px;
}

.hc-visual {
  position: absolute;
  top: 0;
  right: -60px;
  bottom: 0;
  width: 60%;
  height: 100%;
  background-image: url(../images/hc-consulting.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center right;
  z-index: 1;
  pointer-events: none;
  opacity: 1;
}

.hc-visual img {
  height: 285px;
  width: auto;
  margin: 0 auto;
}

.hc-trust-bar {
  background-color: #111827;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hc-trust-content {
  display: flex;
  gap: 3.5rem;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.trust-badge .trust-icon {
  width: 21px;
  height: 21px;
}

.trust-badge .trust-text {
  font-weight: var(--font-weight-bold);
  font-size: 1rem;
  color: var(--text-gray);
  line-height: var(--line-height-relaxed);
}

/* CAPABILITIES SECTION */
.hc-capabilities {
  background-color: var(--bg-white);
}

.hc-section-header {
  margin-bottom: 2.62rem;
}

.hc-capabilities .hc-label {
  margin-bottom: 0.45rem;
}

.hc-capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.hc-card {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 1.75rem;
  background: #f9fafb;
  border: 1px solid #f3f4f6;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.hc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-color: rgba(237, 92, 55, 0.2);
}

.hc-card-header {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1.3rem;
}

.hc-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--bg-white);
  border-radius: 7px;
  border: 1px solid var(--border-f3);
  box-shadow: var(--shadow-xs);
}

.hc-card-icon img {
  width: 21px;
  height: 21px;
}

.hc-card-title {
  font-size: 1.2rem;
  font-weight: var(--font-weight-bold);
  color: var(--secondary-color);
}

.hc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 1.75rem;
}

.hc-tag {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-light);
  padding: 5px 10.5px;
  border-radius: 50px;
  background: var(--bg-white);
  border: 1px solid var(--border-e5);
}

.hc-card-link {
  font-size: 0.75rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.5;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 7px;
  transition: gap 0.2s ease;
}

/* DELIVERY PROCESS SECTION */
.hc-delivery {
  background-color: var(--bg-gray-f8);
  text-align: center;
}

.hc-delivery-title {
  margin-top: 0.4rem;
  margin-bottom: 1rem;
}

.hc-delivery-subtitle {
  color: var(--text-light);
  max-width: 658px;
  margin: 0 auto 3.5rem;
  font-size: 1rem;
  line-height: 1.3;
}

.delivery-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.delivery-timeline::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 70px;
  right: 70px;
  height: 2px;
  background: #e2e8f0;
  z-index: 0;
}

.delivery-step {
  position: relative;
  z-index: 1;
  width: 180px;
  text-align: center;
}

.step-number {
  width: 56px;
  height: 56px;
  background: white;
  border: 2px solid var(--border-e5);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: var(--font-weight-bold);
  color: #94a3b8;
  margin: 0 auto 1.3rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-xs);
}

.delivery-step:hover .step-number {
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: scale(1.1);
}

.step-title {
  font-weight: var(--font-weight-bold);
  color: var(--secondary-color);
  margin-bottom: 0.375rem;
  font-size: 1.125rem;
  line-height: 1.1;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-desc {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.2;
}

/* PHILOSOPHY SECTION */
.hc-philosophy {
  background-color: var(--bg-light-gray);
  border-top: 1px solid var(--border-e5);
  padding: 6rem 0;
}

.hc-philosophy-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.hc-philosophy-subtitle {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.3;
  color: #4b5563;
  text-align: center;
  margin-bottom: 3.5rem;
  margin-top: 14px;
}

.hc-philosophy-subtitle span {
  font-weight: 700;
  color: #111827;
}

.hc-philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}

.philosophy-card {
  background: #ffffff;
  padding: 1.81rem;
  border-radius: 10.5px;
  border: 1px solid #e5e7eb;
  box-shadow: var(--shadow-xs);
  height: 100%;
  transition: all 0.3s ease;
}

.philosophy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-color: rgba(237, 92, 55, 0.2);
}

.philosophy-card-header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
  padding: 0;
}

.philosophy-icon {
  width: 21px;
  height: 21px;
}

.philosophy-label {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1.45;
  letter-spacing: 0.61px;
  text-transform: uppercase;
  color: #f05a28;
  margin-bottom: 0;
  display: inline-block;
}

.philosophy-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.36;
  color: #111827;
  margin-bottom: 0.4rem;
}

.philosophy-text {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1.45;
  color: #4b5563;
  margin-bottom: 1.25rem;
}

.philosophy-link {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 0.75rem; /* 12px */
  line-height: 1.45;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

/* CTA SECTION */
.hc-cta {
  text-align: center;
  color: white;
  background-color: var(--bg-more-dark);
}

.hc-cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.hc-cta-title {
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.1;
  margin-bottom: 21px;
}

.hc-cta-text {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
  color: #94a3b8;
  margin-bottom: 21px;
}

@media (max-width: 1280px) {
  .hc-visual {
    right: -60px;
    width: 65%;
    height: 100%;
  }
}

/* RESPONSIVE STYLES */
@media (max-width: 1024px) {
  .hc-hero-content {
    gap: 3rem;
  }
  .hc-hero-text {
    padding: 5rem 0 8.5rem;
  }

  .hc-visual {
    display: none;
  }

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

  .delivery-timeline {
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }

  .hc-delivery-subtitle {
    margin: 0 auto 2.5rem;
  }

  .delivery-timeline::before {
    display: none;
  }

  .step-number {
    width: 48px;
    height: 48px;
    font-size: 1.12rem;
    margin: 0 auto 1.2rem;
  }

  .step-title {
    font-size: 1rem;
  }

  .step-desc {
    font-size: 0.875rem;
  }

  .hc-cta-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 768px) {
  .hc-capabilities-grid,
  .hc-philosophy-grid {
    grid-template-columns: 1fr;
  }

  .hc-hero-text {
    padding: 5rem 0 7rem;
  }

  .hc-hero-title {
    font-size: 2.5rem;
  }

  .hc-delivery-subtitle {
    margin: 0 auto 2rem;
    font-size: 0.875rem;
  }

  .hc-trust-content {
    align-items: center;
    gap: 2rem;
  }

  .hc-card-badge {
    right: 10px;
    top: 10px;
  }
}

@media (max-width: 600px) {
  .hc-cta-text {
    font-size: 1rem;
  }

  .hc-trust-content {
    flex-direction: column;
    align-items: start;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hc-hero-text {
    padding: 5rem 0 6rem;
  }

  .hc-cta-title {
    font-size: 1.5rem;
  }
}
