.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #1a1a1f;
}

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

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to right,
    rgba(245, 244, 242, 1) 0%,
    rgba(245, 244, 242, 0.98) 22%,
    rgba(245, 244, 242, 0.86) 34%,
    rgba(245, 244, 242, 0.42) 48%,
    rgba(245, 244, 242, 0) 64%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 120px 0 80px;
}

.hero-text-block {
  max-width: 560px;
}

.hero-label {
  display: block;
  margin-bottom: 20px;
  color: var(--color-accent-navy);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-headline {
  margin-bottom: 24px;
  color: var(--color-text-primary);
  font-family: var(--font-display);
  font-size: clamp(3.25rem, 6vw, 5.125rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.hero-headline .highlight {
  display: block;
  color: var(--color-accent-orange);
  font-style: italic;
  text-shadow: 0 0 40px rgba(255, 106, 0, 0.15);
}

.hero-subtitle {
  max-width: 440px;
  margin-bottom: 36px;
  color: var(--color-text-secondary);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.btn-ghost-dark {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: transparent;
  color: var(--color-text-primary);
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.btn-ghost-dark:hover,
.btn-ghost-dark:focus-visible {
  color: var(--color-accent-orange);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.trust-item {
  color: var(--color-text-muted);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.trust-dot {
  color: var(--color-accent-orange);
  font-size: 0.375rem;
  line-height: 1;
}

.hero-corner-triangles {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 4;
  pointer-events: none;
}

.triangle {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
}

.triangle-1 {
  border-left: 150px solid transparent;
  border-bottom: 150px solid rgba(229, 90, 0, 0.78);
}

.triangle-2 {
  right: 44px;
  border-left: 96px solid transparent;
  border-bottom: 96px solid rgba(255, 255, 255, 0.14);
}

.showcase-strip {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 0;
  overflow: hidden;
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 3px solid var(--color-accent-orange);
}

.showcase-label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 80px 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.showcase-label span {
  color: var(--color-text-muted);
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.showcase-arrow {
  color: var(--color-accent-orange) !important;
  font-size: 0.875rem !important;
}

.showcase-track-wrapper {
  width: 100%;
  padding: 20px 0;
  overflow: hidden;
}

.showcase-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: showcaseScroll 28s linear infinite;
}

.showcase-track-wrapper:hover .showcase-track {
  animation-play-state: paused;
}

.showcase-item {
  flex-shrink: 0;
  width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: transform var(--transition-smooth);
}

.showcase-item:hover {
  transform: translateY(-4px);
}

.showcase-item img {
  width: 180px;
  height: 200px;
  object-fit: contain;
  object-position: center bottom;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.12));
  transition: filter var(--transition-smooth);
}

.showcase-item:hover img {
  filter: drop-shadow(0 8px 20px rgba(255, 106, 0, 0.2));
}

.showcase-caption {
  color: var(--color-text-muted);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color var(--transition-fast);
}

.showcase-item:hover .showcase-caption {
  color: var(--color-accent-orange);
}

@keyframes showcaseScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.pillars {
  width: 100%;
  padding: 0;
  margin-top: 0;
  background: #ffffff;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 0;
  padding: 60px 0;
  background: transparent;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
}

.pillar-card {
  min-height: 122px;
  padding: 28px 24px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  border-left: 3px solid var(--color-accent-orange);
}

.pillar-card::before {
  content: none;
}

.pillar-card:not(:first-child)::after {
  content: "";
  position: absolute;
  top: 24px;
  left: 0;
  width: 1px;
  height: calc(100% - 48px);
  background: rgba(0, 0, 0, 0.08);
}

.pillar-card .card-capability__icon {
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  background: transparent;
  border: 0;
  color: var(--color-accent-orange);
}

.pillar-card h3 {
  font-family: var(--font-display);
  color: var(--color-text-primary);
  font-size: 1.42rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.pillar-card .card-capability__body {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.45;
}

.pillars__icon {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.products-preview {
  background: var(--color-bg-primary);
}

.section-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
}

.section-industries {
  position: relative;
  padding: 96px 0;
  background: #f5f4f2;
  overflow: hidden;
}

.section-industries .section-header {
  display: grid;
  gap: 12px;
  justify-items: start;
  margin-bottom: 56px;
}

.section-industries .section-label {
  color: var(--color-accent-navy);
}

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

.section-industries .accent-line {
  margin-top: 4px;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.industry-card {
  display: grid;
  gap: 12px;
  padding: 28px 24px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-top: 3px solid var(--color-accent-navy);
  box-shadow: var(--shadow-card);
  transition:
    transform var(--transition-smooth),
    box-shadow var(--transition-smooth),
    border-top-color var(--transition-fast);
}

.industry-card:hover,
.industry-card:focus-within {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-top-color: var(--color-accent-orange);
}

.industry-card-icon {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  background: rgba(27, 43, 107, 0.08);
  color: var(--color-accent-navy);
}

.industry-card-icon svg {
  width: 22px;
  height: 22px;
}

.industry-card:hover .industry-card-icon {
  background: rgba(255, 106, 0, 0.08);
  color: var(--color-accent-orange);
}

.industry-card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--color-text-primary);
}

.industry-card-desc {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
}

.industry-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.industry-card-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 2px;
  background: rgba(27, 43, 107, 0.07);
  color: var(--color-accent-navy);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    background-color var(--transition-fast),
    color var(--transition-fast);
}

.industry-card:hover .industry-card-tags span {
  background: rgba(255, 106, 0, 0.08);
  color: var(--color-accent-orange);
}

.industries-footer-note {
  text-align: center;
  padding: 24px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-left: 4px solid var(--color-accent-orange);
}

.industries-footer-note p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
}

.industries-footer-note a {
  color: var(--color-accent-orange);
  font-weight: 700;
}

.industries-footer-note a:hover,
.industries-footer-note a:focus-visible {
  color: var(--color-accent-orange-hover);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.product-card {
  display: grid;
  gap: 0;
  padding: 0;
  border-radius: 0;
  overflow: hidden;
  transition:
    transform var(--transition-smooth),
    border-color var(--transition-fast),
    box-shadow var(--transition-smooth);
}

.product-card:hover {
  box-shadow: var(--shadow-card-hover);
}

.product-card__image {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 200px;
  padding: 12px;
  background:
    linear-gradient(180deg, #fbfaf7 0%, #f2eee8 100%);
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center;
  transition: transform var(--transition-smooth);
}

.product-card:hover .product-card__image img {
  transform: scale(1.05);
}

.product-card__body {
  display: grid;
  gap: 14px;
  padding: 24px 28px 28px 34px;
}

.product-card__body .product-card__tag {
  justify-self: start;
}

.product-card__tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  color: var(--color-accent-navy);
  background: rgba(27, 43, 107, 0.1);
  border: 1px solid rgba(27, 43, 107, 0.18);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-card h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1;
  text-transform: uppercase;
}

.product-card p {
  color: var(--color-text-secondary);
}

.products-preview__cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.industries {
  background:
    linear-gradient(102deg, #f5f4f2 0%, #f5f4f2 48%, rgba(27, 43, 107, 0.08) 48%, rgba(27, 43, 107, 0.12) 100%);
}

.industry-chips {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.industry-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 18px;
  color: var(--color-accent-navy);
  background: #ffffff;
  border: 1.5px solid var(--color-accent-navy);
  border-radius: 999px;
  font-size: 0.9375rem;
  font-weight: 500;
  transition:
    background-color var(--transition-fast),
    color var(--transition-fast),
    transform var(--transition-fast);
}

.industry-chip:hover,
.industry-chip:focus-visible {
  color: var(--color-text-on-dark);
  background: var(--color-accent-navy);
  transform: translateY(-2px);
}

.industry-chip__icon {
  color: var(--color-accent-navy);
  font-size: 1.125rem;
  line-height: 1;
}

.industry-chip:hover .industry-chip__icon,
.industry-chip:focus-visible .industry-chip__icon {
  color: var(--color-text-on-dark);
}

.industries__content {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 40px;
  margin-top: 36px;
}

.industries__body {
  max-width: 560px;
  color: var(--color-text-secondary);
  font-size: 1rem;
  line-height: 1.8;
}

.check-list {
  display: grid;
  gap: 16px;
}

.check-list li {
  display: flex;
  gap: 12px;
  color: var(--color-text-primary);
  font-size: 1rem;
  line-height: 1.6;
}

.check-list__icon {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 4px;
  fill: var(--color-accent-orange);
}

.why-impact {
  background: var(--color-bg-secondary);
}

.why-impact__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 32px;
  align-items: start;
}

.why-impact__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin: 34px 0 28px;
}

.stat-card {
  padding: 24px;
  border: 1px solid var(--color-border);
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.stat-card__value {
  display: block;
  color: var(--color-accent-orange);
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 0.95;
  text-transform: uppercase;
}

.stat-card__label {
  display: block;
  margin-top: 10px;
  color: var(--color-text-secondary);
}

.why-impact__copy {
  max-width: 620px;
  color: var(--color-text-secondary);
}

.trust-panel {
  position: relative;
  overflow: hidden;
  padding: 34px 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.92)),
    linear-gradient(160deg, rgba(27, 43, 107, 0.06), rgba(255, 106, 0, 0.08));
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}

.trust-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.04) 0 10%, transparent 10% 100%),
    radial-gradient(circle, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: auto, 18px 18px;
  opacity: 0.7;
  pointer-events: none;
}

.trust-panel__inner {
  position: relative;
  z-index: 1;
}

.trust-panel h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 0.98;
  text-transform: uppercase;
}

.trust-panel .check-list {
  margin-top: 22px;
}

.cta-banner {
  position: relative;
  background: #1a1a1f;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(140deg, rgba(17, 17, 17, 0.12) 0 16%, transparent 16% 100%),
    radial-gradient(circle, rgba(17, 17, 17, 0.1) 1px, transparent 1px);
  background-size: auto, 20px 20px;
  opacity: 1;
  pointer-events: none;
}

.cta-banner .container {
  position: relative;
  z-index: 1;
}

.cta-banner__content {
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
}

.cta-banner__title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6vw, 3.25rem);
  font-weight: 700;
  line-height: 0.96;
  color: var(--color-text-on-dark);
  text-transform: uppercase;
}

.cta-banner__text {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.125rem;
}

.cta-banner__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.btn-primary--inverse {
  background: #ffffff;
  color: #1a1a1f;
}

.btn-primary--inverse:hover,
.btn-primary--inverse:focus-visible {
  background: #f2f2f2;
  color: #1a1a1f;
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.18);
}

.btn-ghost--light {
  color: #ffffff;
}

.contact-snippet {
  background: var(--color-bg-primary);
}

.contact-snippet__header {
  text-align: center;
}

.contact-snippet__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.contact-card {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--color-border);
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.contact-card__icon {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--color-accent-navy);
  background: rgba(27, 43, 107, 0.1);
}

.contact-card__icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1;
  text-transform: uppercase;
}

.contact-card p {
  color: var(--color-text-secondary);
}

.contact-card__action {
  color: var(--color-accent-orange);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.carousel-dot.active {
  background: var(--color-accent-navy);
}

@media (max-width: 991px) {
  .why-impact__layout {
    grid-template-columns: 1fr;
  }

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

  .products-grid,
  .industry-chips {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-snippet__grid {
    grid-template-columns: 1fr;
  }

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

  .pillar-card:nth-child(3)::after,
  .pillar-card:nth-child(4)::after {
    display: none;
  }
}

@media (max-width: 767px) {
  .hero {
    min-height: 100svh;
    align-items: flex-end;
  }

  .hero-bg-img {
    object-position: right top;
  }

  .hero-overlay {
    background: linear-gradient(
      to top,
      rgba(245, 244, 242, 1) 0%,
      rgba(245, 244, 242, 1) 46%,
      rgba(245, 244, 242, 0.7) 68%,
      rgba(245, 244, 242, 0) 100%
    );
  }

  .hero-content {
    padding: 40px 0 60px;
  }

  .hero-text-block {
    width: 100%;
  }

  .hero-headline {
    font-size: clamp(2.5rem, 10vw, 3.75rem);
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-ctas {
    align-items: stretch;
  }

  .hero-ctas .btn-primary,
  .hero-ctas .btn-ghost-dark,
  .cta-banner__actions a {
    width: 100%;
  }

  .hero-trust {
    align-items: flex-start;
    gap: 10px;
  }

  .showcase-label {
    padding: 14px 24px 10px;
  }

  .showcase-item {
    width: 130px;
  }

  .showcase-item img {
    width: 130px;
    height: 150px;
  }

  .pillars__grid,
  .products-grid,
  .why-impact__stats {
    grid-template-columns: 1fr;
  }

  .pillar-card:not(:first-child)::after {
    top: 0;
    left: 24px;
    width: calc(100% - 48px);
    height: 1px;
  }

  .stat-card,
  .trust-panel,
  .contact-card {
    padding: 24px;
  }

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

@media (max-width: 767px) {
  .section-industries {
    padding: 64px 0;
  }

  .industries-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
