/* Content & interior sections (header + hero unchanged in styles.css) */

main {
  --content-icon: var(--sky);
}

.section-title {
  max-width: 720px;
}

.section-title.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(77, 165, 255, 0.1);
  color: var(--sky);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-eyebrow .icon {
  width: 14px;
  height: 14px;
}

.section-title h2 {
  color: var(--navy);
  letter-spacing: -0.02em;
}

/* Icons */
.icon-wrap {
  position: relative;
}

.icon-wrap .icon {
  width: 26px;
  height: 26px;
  color: var(--content-icon);
  display: block;
}

.icon-wrap--sm {
  width: 44px;
  height: 44px;
  border-radius: 14px;
}

.icon-wrap--sm .icon {
  width: 22px;
  height: 22px;
}

.icon-wrap--lg {
  width: 64px;
  height: 64px;
  border-radius: 20px;
}

.icon-wrap--lg .icon {
  width: 30px;
  height: 30px;
}

.icon-dot {
  display: none;
}

.card,
.solution-card,
.product-card,
.security-card,
.spare-card,
.eco-card,
.promise-card,
.cert-card {
  position: relative;
}

.card::before,
.solution-card::before,
.product-card::before,
.security-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: var(--radius) var(--radius) 0 0;
  background: linear-gradient(90deg, var(--sky), var(--teal));
  opacity: 0;
  transition: opacity var(--speed);
}

.card:hover::before,
.solution-card:hover::before,
.product-card:hover::before,
.security-card:hover::before {
  opacity: 1;
}

.card .icon-wrap,
.solution-card .icon-wrap,
.product-card .icon-wrap,
.security-card .icon-wrap,
.spare-card .icon-wrap,
.eco-card .icon-wrap,
.promise-card .icon-wrap {
  background: linear-gradient(145deg, rgba(77, 165, 255, 0.18), rgba(62, 197, 255, 0.06));
  border: 1px solid rgba(77, 165, 255, 0.2);
  box-shadow: 0 10px 24px rgba(77, 165, 255, 0.12);
}

.eco-hub {
  border-radius: var(--radius);
  text-align: center;
}

.eco-hub .section-eyebrow {
  margin-left: auto;
  margin-right: auto;
}

.central-hub {
  margin-top: 1.5rem;
}

.central-hub .icon-wrap--lg {
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--sky), var(--teal));
  border: none;
  box-shadow: 0 20px 50px rgba(77, 165, 255, 0.35);
}

.central-hub .icon-wrap--lg .icon {
  color: #fff;
}

.container > .eco-grid,
.eco-hub + .eco-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.eco-grid .eco-card {
  transition: transform var(--speed), box-shadow var(--speed), border-color var(--speed);
}

.eco-grid .eco-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(5, 38, 77, 0.1);
  border-color: rgba(77, 165, 255, 0.28);
}

.eco-card .icon-wrap {
  margin-bottom: 1rem;
}

.product-card .mockup {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(5, 38, 77, 0.06), rgba(77, 165, 255, 0.08));
  border: 1px solid rgba(77, 165, 255, 0.12);
}

.product-card .mockup::after {
  content: '';
  width: 72%;
  height: 70%;
  border-radius: 12px 12px 0 0;
  background: linear-gradient(180deg, #fff 0%, #e8f4ff 100%);
  box-shadow: 0 -8px 30px rgba(5, 38, 77, 0.08);
}

.service-diagram > div:first-child {
  position: relative;
  min-height: 420px;
}

.diagram-point {
  background: #fff;
  padding: 1rem 1.1rem;
  border-radius: 20px;
  border: 1px solid rgba(77, 165, 255, 0.14);
  box-shadow: 0 12px 36px rgba(5, 38, 77, 0.08);
  text-align: center;
}

.diagram-point .icon-wrap--sm {
  margin: 0 auto 0.65rem;
}

.diagram-point strong {
  display: block;
  color: var(--navy);
  line-height: 1.3;
}

.service-diagram > .card {
  background: linear-gradient(135deg, rgba(4, 36, 77, 0.04), rgba(77, 165, 255, 0.08));
  border: 1px solid rgba(77, 165, 255, 0.14);
}

.service-diagram > .card h3 {
  font-size: 1.35rem;
  color: var(--navy);
  margin: 0 0 1rem;
}

.service-diagram .diagram-point:nth-child(7) {
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
}

.service-diagram .diagram-point:nth-child(8) {
  top: 38%;
  right: 0;
}

.service-diagram .diagram-point:nth-child(9) {
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
}

.service-diagram .diagram-point:nth-child(10) {
  bottom: 18%;
  left: 0;
}

.service-diagram .diagram-point:nth-child(11) {
  top: 38%;
  left: 0;
}

.spares-grid {
  display: grid;
  gap: 1rem;
}

.spare-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.15rem;
  align-items: start;
  padding: 1.35rem 1.5rem;
  background: #fff;
  border-radius: var(--radius-s);
  border: 1px solid rgba(10, 63, 118, 0.08);
  box-shadow: 0 10px 32px rgba(5, 38, 77, 0.06);
  transition: transform var(--speed), box-shadow var(--speed);
}

.spare-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(5, 38, 77, 0.1);
}

.spare-card .icon-wrap {
  margin-bottom: 0;
  grid-row: span 2;
}

.spare-card h3 {
  margin: 0;
  font-size: 1.02rem;
  color: var(--navy);
  grid-column: 2;
}

.spare-card p {
  margin: 0;
  grid-column: 2;
  font-size: 0.92rem;
}

.spares-visual {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding: 2rem !important;
}

.spares-visual::after {
  content: 'Global spare parts logistics';
  position: relative;
  z-index: 1;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel);
}

.spares-visual .spares-stat {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.15rem;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 18px;
  border: 1px solid rgba(77, 165, 255, 0.14);
  box-shadow: 0 8px 24px rgba(5, 38, 77, 0.06);
}

.spares-visual .spares-stat strong {
  display: block;
  font-size: 1.35rem;
  color: var(--navy);
  line-height: 1;
}

.spares-visual .spares-stat span {
  font-size: 0.88rem;
  color: #5b7290;
}

.promise-card .icon-wrap {
  flex-shrink: 0;
  margin-bottom: 0;
}

.promise-card > div:last-child {
  flex: 1;
}

.promise-card {
  align-items: center;
}

.cert-card {
  display: flex;
  flex-direction: column;
}

.cert-card .cert-badge.icon-wrap {
  display: inline-flex;
  width: 3.25rem;
  height: 3.25rem;
  margin-bottom: 1.1rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(77, 165, 255, 0.2), rgba(62, 197, 255, 0.08));
  border: 1px solid rgba(77, 165, 255, 0.22);
  box-shadow: 0 10px 24px rgba(77, 165, 255, 0.1);
}

.cert-card .cert-badge .icon {
  width: 22px;
  height: 22px;
  color: var(--sky);
}

.footer-line .icon-wrap {
  width: 36px;
  height: 36px;
  margin: 0;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(77, 165, 255, 0.1);
  border: 1px solid rgba(77, 165, 255, 0.16);
  box-shadow: none;
}

.footer-line .icon-wrap .icon {
  width: 18px;
  height: 18px;
}

.cert-card > span:not(.cert-badge) {
  display: none;
}

.cert-card .cert-org {
  display: inline-block;
  margin-bottom: 0.65rem;
  padding: 0.25rem 0.65rem;
  border-radius: 8px;
  background: rgba(5, 38, 77, 0.06);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.action-banner {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(77, 165, 255, 0.16);
}

.action-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(77, 165, 255, 0.2), transparent 68%);
  pointer-events: none;
}

.action-banner .banner-actions .btn-secondary {
  color: var(--navy);
  background: #fff;
  border: 1px solid rgba(77, 165, 255, 0.25);
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, #f8fbff 0%, #fff 100%);
}

.footer-brand .footer-logo {
  display: inline-flex;
  margin-bottom: 1rem;
}

.footer-brand .footer-logo img {
  height: 40px;
  width: auto;
}

.footer-links strong,
.footer-contact strong {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--navy);
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.footer-contact .footer-line {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 0.65rem 0;
  color: #5a6b84;
}

.footer-contact .footer-line .icon {
  width: 18px;
  height: 18px;
  color: var(--sky);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.footer-links a {
  transition: color var(--speed), padding-left var(--speed);
}

.footer-links a:hover {
  color: var(--sky);
  padding-left: 0.25rem;
}

@media (max-width: 1080px) {
  .eco-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-diagram > div:first-child {
    min-height: 360px;
  }
}

@media (max-width: 820px) {
  .spares-hero {
    grid-template-columns: 1fr;
  }

  .spare-card {
    grid-template-columns: auto 1fr;
  }

  .action-banner {
    grid-template-columns: 1fr;
    padding: 2.5rem 1.75rem;
  }

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

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

  .diagram-point {
    width: 140px;
    padding: 0.85rem;
  }
}
