/* ============================================================
   NEW SECTIONS CSS — Hawksbill Technik
   Sections: Industries, How It Works, Case Studies,
             Certifications, FAQ, Comparison Table
   ============================================================ */

/* ----------------------------------------------------------
   1. Industries We Serve
   ---------------------------------------------------------- */
.industries-served {
  padding: 80px 0;
  background: #fff;
}

.industries-served .section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(14,165,233,0.08), rgba(14,165,233,0.04));
  color: #0ea5e9;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.industries-served .section-subtitle i {
  font-size: 1rem;
}

.industries-served .section-heading {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
  line-height: 1.25;
}

.industries-served .section-desc {
  color: #64748b;
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

.industry-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.industry-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0ea5e9, #06b6d4);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(14,165,233,0.12);
  border-color: rgba(14,165,233,0.2);
}

.industry-card:hover::before {
  transform: scaleX(1);
}

.industry-card .industry-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(14,165,233,0.1), rgba(6,182,212,0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.4s ease;
}

.industry-card:hover .industry-icon {
  background: linear-gradient(135deg, #0ea5e9, #06b6d4);
  transform: scale(1.08);
}

.industry-card .industry-icon i {
  font-size: 1.8rem;
  color: #0ea5e9;
  transition: color 0.4s ease;
}

.industry-card:hover .industry-icon i {
  color: #fff;
}

.industry-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 10px;
}

.industry-card p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 16px;
}

.industry-card .industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}

.industry-card .industry-tags span {
  font-size: 0.75rem;
  padding: 4px 12px;
  background: #f1f5f9;
  color: #475569;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.industry-card:hover .industry-tags span {
  background: rgba(14,165,233,0.08);
  color: #0ea5e9;
}

/* ----------------------------------------------------------
   2. How It Works / Process Flow
   ---------------------------------------------------------- */
.process-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.process-section .section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(14,165,233,0.08), rgba(14,165,233,0.04));
  color: #0ea5e9;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.process-section .section-heading {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
}

.process-section .section-desc {
  color: #64748b;
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

.process-steps-row {
  position: relative;
}

/* Connecting line between cards */
.process-steps-row::before {
  content: '';
  position: absolute;
  top: 80px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #0ea5e9 20%, #06b6d4 80%, transparent);
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-step .step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #0ea5e9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.3rem;
  font-weight: 800;
  color: #0ea5e9;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(14,165,233,0.15);
}

.process-step:hover .step-number {
  background: linear-gradient(135deg, #0ea5e9, #06b6d4);
  color: #fff;
  transform: scale(1.15);
  border-color: transparent;
}

.process-step .step-icon {
  font-size: 2rem;
  color: #0ea5e9;
  margin-bottom: 14px;
  display: block;
}

.process-step h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.6;
  max-width: 220px;
  margin: 0 auto;
}

.process-step .step-card-inner {
  background: #fff;
  border-radius: 16px;
  padding: 32px 20px 28px;
  border: 1px solid #e2e8f0;
  transition: all 0.4s ease;
}

.process-step:hover .step-card-inner {
  box-shadow: 0 12px 30px rgba(14,165,233,0.1);
  border-color: rgba(14,165,233,0.2);
  transform: translateY(-4px);
}

@media (max-width: 767px) {
  .process-steps-row::before {
    display: none;
  }
}

/* ----------------------------------------------------------
   3. Case Studies / Success Stories
   ---------------------------------------------------------- */
.case-studies {
  padding: 80px 0;
  background: #fff;
}

.case-studies .section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(14,165,233,0.08), rgba(14,165,233,0.04));
  color: #0ea5e9;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.case-studies .section-heading {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
}

.case-studies .section-desc {
  color: #64748b;
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

.case-study-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.case-study-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(14,165,233,0.1);
  border-color: rgba(14,165,233,0.2);
}

.case-study-card .card-header-strip {
  height: 6px;
  background: linear-gradient(90deg, #0ea5e9, #06b6d4, #0284c7);
}

.case-study-card .card-body-content {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.case-study-card .industry-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  background: rgba(14,165,233,0.08);
  color: #0ea5e9;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 16px;
  width: fit-content;
}

.case-study-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
  line-height: 1.4;
}

.case-study-card .challenge-text {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
}

.case-study-card .results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.case-study-card .result-item {
  background: #f8fafc;
  border-radius: 10px;
  padding: 14px;
  text-align: center;
}

.case-study-card .result-item .result-value {
  font-size: 1.3rem;
  font-weight: 800;
  color: #0ea5e9;
  display: block;
}

.case-study-card .result-item .result-label {
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 500;
}

.case-study-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #0ea5e9;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.case-study-card .card-link:hover {
  gap: 10px;
  color: #0284c7;
}

/* ----------------------------------------------------------
   4. Certifications & Compliance
   ---------------------------------------------------------- */
.certifications-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.certifications-section .section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(14,165,233,0.08), rgba(14,165,233,0.04));
  color: #0ea5e9;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.certifications-section .section-heading {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
}

.certifications-section .section-desc {
  color: #64748b;
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

.cert-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.cert-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0ea5e9, #06b6d4);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.cert-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(14,165,233,0.1);
  border-color: rgba(14,165,233,0.15);
}

.cert-card:hover::after {
  transform: scaleX(1);
}

.cert-card .cert-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(14,165,233,0.08), rgba(6,182,212,0.04));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.4s ease;
}

.cert-card:hover .cert-icon {
  background: linear-gradient(135deg, #0ea5e9, #06b6d4);
  box-shadow: 0 8px 24px rgba(14,165,233,0.3);
}

.cert-card .cert-icon i {
  font-size: 2rem;
  color: #0ea5e9;
  transition: color 0.4s ease;
}

.cert-card:hover .cert-icon i {
  color: #fff;
}

.cert-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
}

.cert-card p {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 16px;
}

.cert-card .cert-badge {
  display: inline-block;
  padding: 5px 16px;
  background: linear-gradient(135deg, rgba(34,197,94,0.1), rgba(34,197,94,0.04));
  color: #16a34a;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
}

/* Compliance strip */
.compliance-strip {
  margin-top: 50px;
  background: #fff;
  border-radius: 16px;
  padding: 30px 40px;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.compliance-strip .compliance-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.compliance-strip .compliance-item i {
  font-size: 1.4rem;
  color: #16a34a;
}

.compliance-strip .compliance-item span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1e293b;
}

@media (max-width: 767px) {
  .compliance-strip {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }
}

/* ----------------------------------------------------------
   5. FAQ Section
   ---------------------------------------------------------- */
.faq-section {
  padding: 80px 0;
  background: #fff;
}

.faq-section .section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(14,165,233,0.08), rgba(14,165,233,0.04));
  color: #0ea5e9;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.faq-section .section-heading {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
}

.faq-section .section-desc {
  color: #64748b;
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

.faq-sidebar {
  background: linear-gradient(135deg, #0c4a6e, #0e7490);
  border-radius: 20px;
  padding: 40px 32px;
  color: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.faq-sidebar h3 {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}

.faq-sidebar p {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.faq-sidebar .faq-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #0c4a6e;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  text-decoration: none;
  width: fit-content;
}

.faq-sidebar .faq-cta-btn:hover {
  background: rgba(255,255,255,0.9);
  transform: translateX(4px);
  gap: 12px;
}

.faq-sidebar .faq-stats {
  display: flex;
  gap: 28px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.faq-sidebar .faq-stats .faq-stat-item {
  text-align: center;
}

.faq-sidebar .faq-stats .faq-stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  display: block;
}

.faq-sidebar .faq-stats .faq-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

/* FAQ Accordion */
.faq-accordion .accordion-item {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px !important;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-accordion .accordion-item:hover {
  border-color: rgba(14,165,233,0.25);
}

.faq-accordion .accordion-button {
  background: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1e293b;
  padding: 18px 24px;
  box-shadow: none !important;
  border-radius: 12px !important;
}

.faq-accordion .accordion-button::after {
  background-image: none;
  content: '\F282';
  font-family: 'bootstrap-icons';
  font-size: 1rem;
  color: #94a3b8;
  width: auto;
  height: auto;
  transition: transform 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: #0ea5e9;
  background: rgba(14,165,233,0.03);
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
  color: #0ea5e9;
}

.faq-accordion .accordion-body {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.7;
  padding: 0 24px 20px;
}

/* ----------------------------------------------------------
   6. Comparison Table
   ---------------------------------------------------------- */
.comparison-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.comparison-section .section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(14,165,233,0.08), rgba(14,165,233,0.04));
  color: #0ea5e9;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.comparison-section .section-heading {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
}

.comparison-section .section-desc {
  color: #64748b;
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

.comparison-table-wrapper {
  background: #fff;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table thead th {
  padding: 20px 24px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid #e2e8f0;
}

.comparison-table thead th:first-child {
  text-align: left;
  color: #1e293b;
  background: #f8fafc;
}

.comparison-table thead th.highlight-col {
  background: linear-gradient(135deg, #0ea5e9, #06b6d4);
  color: #fff;
  position: relative;
}

.comparison-table thead th.highlight-col .recommended-badge {
  display: inline-block;
  background: rgba(255,255,255,0.25);
  color: #fff;
  font-size: 0.65rem;
  padding: 3px 10px;
  border-radius: 50px;
  margin-left: 8px;
  font-weight: 600;
  letter-spacing: 0.3px;
  vertical-align: middle;
}

.comparison-table thead th:last-child {
  background: #f8fafc;
  color: #64748b;
}

.comparison-table tbody td {
  padding: 16px 24px;
  font-size: 0.9rem;
  border-bottom: 1px solid #f1f5f9;
  vertical-align: middle;
}

.comparison-table tbody td:first-child {
  font-weight: 600;
  color: #334155;
  text-align: left;
}

.comparison-table tbody td:not(:first-child) {
  text-align: center;
}

.comparison-table tbody td.highlight-col {
  background: rgba(14,165,233,0.02);
}

.comparison-table tbody tr:hover {
  background: rgba(14,165,233,0.015);
}

.comparison-table .check-yes {
  color: #16a34a;
  font-size: 1.2rem;
}

.comparison-table .check-no {
  color: #dc2626;
  font-size: 1.2rem;
}

.comparison-table .check-partial {
  color: #f59e0b;
  font-size: 1.2rem;
}

.comparison-table tfoot td {
  padding: 20px 24px;
  border-top: 2px solid #e2e8f0;
  text-align: center;
}

.comparison-table tfoot td:first-child {
  background: #f8fafc;
}

.comparison-table tfoot .highlight-col {
  background: rgba(14,165,233,0.04);
}

.comparison-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #0ea5e9, #06b6d4);
  color: #fff;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.comparison-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(14,165,233,0.3);
  color: #fff;
}

/* Responsive table scroll */
@media (max-width: 767px) {
  .comparison-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .comparison-table {
    min-width: 600px;
  }
}

/* ----------------------------------------------------------
   7. Global Section Responsive Tweaks
   ---------------------------------------------------------- */
@media (max-width: 991px) {
  .industries-served,
  .process-section,
  .case-studies,
  .certifications-section,
  .faq-section,
  .comparison-section {
    padding: 60px 0;
  }

  .industries-served .section-heading,
  .process-section .section-heading,
  .case-studies .section-heading,
  .certifications-section .section-heading,
  .faq-section .section-heading,
  .comparison-section .section-heading {
    font-size: 1.8rem;
  }
}

@media (max-width: 575px) {
  .industries-served .section-heading,
  .process-section .section-heading,
  .case-studies .section-heading,
  .certifications-section .section-heading,
  .faq-section .section-heading,
  .comparison-section .section-heading {
    font-size: 1.5rem;
  }

  .case-study-card .results-grid {
    grid-template-columns: 1fr;
  }
}

/* ----------------------------------------------------------
   8. Manufacturing Excellence
   ---------------------------------------------------------- */
.manufacturing-section {
  padding: 80px 0;
  background: #fff;
}

.manufacturing-section .section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(14,165,233,0.08), rgba(14,165,233,0.04));
  color: #0ea5e9;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.manufacturing-section .section-heading {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
}

.manufacturing-section .section-desc {
  color: #64748b;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

.manufacturing-section .mfg-content-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.manufacturing-section .mfg-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

.manufacturing-section .mfg-highlight-item {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 22px 18px;
  transition: all 0.3s ease;
}

.manufacturing-section .mfg-highlight-item:hover {
  border-color: rgba(14,165,233,0.2);
  box-shadow: 0 8px 20px rgba(14,165,233,0.06);
  transform: translateY(-3px);
}

.manufacturing-section .mfg-highlight-item i {
  font-size: 1.5rem;
  color: #0ea5e9;
  margin-bottom: 10px;
  display: block;
}

.manufacturing-section .mfg-highlight-item h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 4px;
}

.manufacturing-section .mfg-highlight-item p {
  font-size: 0.82rem;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

.manufacturing-section .mfg-visual {
  background: linear-gradient(135deg, #0c4a6e, #0e7490);
  border-radius: 24px;
  padding: 40px;
  color: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.manufacturing-section .mfg-visual::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}

.manufacturing-section .mfg-visual::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -20%;
  width: 250px;
  height: 250px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
}

.manufacturing-section .mfg-visual .visual-content {
  position: relative;
  z-index: 1;
}

.manufacturing-section .mfg-visual h3 {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.manufacturing-section .mfg-visual .visual-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 28px;
}

.manufacturing-section .mfg-visual .visual-stat {
  text-align: center;
}

.manufacturing-section .mfg-visual .visual-stat .v-stat-value {
  font-size: 2rem;
  font-weight: 800;
  display: block;
  color: #7dd3fc;
}

.manufacturing-section .mfg-visual .visual-stat .v-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
}

.manufacturing-section .mfg-visual .capability-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.manufacturing-section .mfg-visual .capability-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.manufacturing-section .mfg-visual .capability-list li:last-child {
  border-bottom: none;
}

.manufacturing-section .mfg-visual .capability-list li i {
  color: #7dd3fc;
  font-size: 1rem;
}

@media (max-width: 575px) {
  .manufacturing-section .mfg-highlights {
    grid-template-columns: 1fr;
  }
}

/* ----------------------------------------------------------
   9. Service Network / Locations
   ---------------------------------------------------------- */
.service-network {
  padding: 80px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.service-network .section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(14,165,233,0.08), rgba(14,165,233,0.04));
  color: #0ea5e9;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.service-network .section-heading {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
}

.service-network .section-desc {
  color: #64748b;
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

.location-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px 24px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.location-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0ea5e9, #06b6d4);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.location-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(14,165,233,0.1);
  border-color: rgba(14,165,233,0.15);
}

.location-card:hover::before {
  transform: scaleX(1);
}

.location-card .location-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(14,165,233,0.1), rgba(6,182,212,0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: all 0.4s ease;
}

.location-card:hover .location-icon {
  background: linear-gradient(135deg, #0ea5e9, #06b6d4);
}

.location-card .location-icon i {
  font-size: 1.4rem;
  color: #0ea5e9;
  transition: color 0.4s ease;
}

.location-card:hover .location-icon i {
  color: #fff;
}

.location-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 6px;
}

.location-card .location-type {
  font-size: 0.8rem;
  color: #0ea5e9;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.location-card p {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 16px;
}

.location-card .location-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.location-card .location-features span {
  font-size: 0.75rem;
  padding: 4px 12px;
  background: #f1f5f9;
  color: #475569;
  border-radius: 50px;
  font-weight: 500;
}

.location-card:hover .location-features span {
  background: rgba(14,165,233,0.06);
  color: #0ea5e9;
}

/* Network stats strip */
.network-stats-strip {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.network-stats-strip .network-stat {
  text-align: center;
}

.network-stats-strip .network-stat .ns-value {
  font-size: 1.8rem;
  font-weight: 800;
  color: #0ea5e9;
  display: block;
}

.network-stats-strip .network-stat .ns-label {
  font-size: 0.82rem;
  color: #64748b;
  font-weight: 500;
}

/* ----------------------------------------------------------
   10. Impact / By the Numbers
   ---------------------------------------------------------- */
.impact-section {
  padding: 80px 0;
  background: #fff;
}

.impact-section .section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(14,165,233,0.08), rgba(14,165,233,0.04));
  color: #0ea5e9;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.impact-section .section-heading {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
}

.impact-section .section-desc {
  color: #64748b;
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

.impact-card {
  border-radius: 20px;
  padding: 40px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  height: 100%;
  transition: all 0.4s ease;
}

.impact-card:hover {
  transform: translateY(-6px);
}

.impact-card.impact-blue {
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  color: #fff;
}

.impact-card.impact-cyan {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  color: #fff;
}

.impact-card.impact-teal {
  background: linear-gradient(135deg, #14b8a6, #0d9488);
  color: #fff;
}

.impact-card.impact-dark {
  background: linear-gradient(135deg, #0c4a6e, #164e63);
  color: #fff;
}

.impact-card.impact-sky {
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
  color: #fff;
}

.impact-card.impact-ocean {
  background: linear-gradient(135deg, #0e7490, #155e75);
  color: #fff;
}

.impact-card::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -30%;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}

.impact-card .impact-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
  opacity: 0.85;
}

.impact-card .impact-value {
  font-size: 2.5rem;
  font-weight: 800;
  display: block;
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}

.impact-card .impact-label {
  font-size: 0.9rem;
  opacity: 0.85;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.impact-card:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

@media (max-width: 991px) {
  .manufacturing-section,
  .service-network,
  .impact-section {
    padding: 60px 0;
  }

  .manufacturing-section .section-heading,
  .service-network .section-heading,
  .impact-section .section-heading {
    font-size: 1.8rem;
  }
}

@media (max-width: 575px) {
  .manufacturing-section .section-heading,
  .service-network .section-heading,
  .impact-section .section-heading {
    font-size: 1.5rem;
  }

  .network-stats-strip {
    gap: 24px;
  }

  .manufacturing-section .mfg-visual .visual-stats {
    gap: 16px;
  }

  .manufacturing-section .mfg-visual .visual-stat .v-stat-value {
    font-size: 1.5rem;
  }
}
