.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  padding: 0.85rem 0 0;
  transition: padding 0.25s ease;
}

.nav-panel,
.mobile-menu,
.stats-band,
.product-card,
.why-card,
.about-panel,
.highlight-card,
.contact-panel,
.contact-card,
.footer-panel {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(14, 26, 48, 0.84), rgba(10, 20, 36, 0.7));
  box-shadow: 0 22px 80px rgba(3, 10, 20, 0.38);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

html:not(.dark) .nav-panel,
html:not(.dark) .mobile-menu,
html:not(.dark) .stats-band,
html:not(.dark) .product-card,
html:not(.dark) .why-card,
html:not(.dark) .about-panel,
html:not(.dark) .highlight-card,
html:not(.dark) .contact-panel,
html:not(.dark) .contact-card,
html:not(.dark) .footer-panel {
  border-color: rgba(12, 37, 64, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(244, 247, 251, 0.8));
  box-shadow: 0 24px 70px rgba(12, 37, 64, 0.11);
}

.navbar-scrolled {
  padding-top: 0.45rem;
}

.nav-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.5rem;
  padding: 0.7rem 0.9rem;
  border-radius: 1.4rem;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-image {
  width: clamp(11rem, 24vw, 17.5rem);
  filter: drop-shadow(0 12px 24px rgba(5, 17, 33, 0.25));
}

.nav-link,
.mobile-nav-link {
  position: relative;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.25s ease;
}

html:not(.dark) .nav-link,
html:not(.dark) .mobile-nav-link {
  color: rgba(12, 37, 64, 0.7);
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.55rem;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  border-radius: 999px;
  background: linear-gradient(90deg, #cba42c, #f2d56e);
  transition: transform 0.25s ease;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-nav-link:hover,
.mobile-nav-link.is-active {
  color: #f2d56e;
}

html:not(.dark) .nav-link:hover,
html:not(.dark) .nav-link.is-active,
html:not(.dark) .mobile-nav-link:hover,
html:not(.dark) .mobile-nav-link.is-active {
  color: #8f6a07;
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.theme-toggle-btn,
.menu-toggle,
.contact-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  border-radius: 999px;
  border: 1px solid rgba(203, 164, 44, 0.2);
  background: rgba(203, 164, 44, 0.08);
  color: #f2d56e;
  transition: transform 0.2s ease, background-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

html:not(.dark) .theme-toggle-btn,
html:not(.dark) .menu-toggle,
html:not(.dark) .contact-chip {
  background: rgba(12, 37, 64, 0.04);
  color: #8f6a07;
}

.theme-toggle-btn {
  width: 2.9rem;
  padding: 0;
}

.menu-toggle {
  width: 2.9rem;
  flex-direction: column;
  gap: 0.26rem;
  padding: 0;
}

.menu-toggle span {
  width: 1.15rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.contact-chip {
  gap: 0.55rem;
  padding: 0 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-chip__icon {
  display: inline-flex;
  width: 1rem;
  height: 1rem;
}

.contact-chip__icon svg {
  width: 100%;
  height: 100%;
}

.theme-toggle-btn:hover,
.menu-toggle:hover,
.contact-chip:hover,
.cta-btn-primary:hover,
.cta-btn-secondary:hover,
.product-card:hover,
.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(203, 164, 44, 0.18), 0 18px 36px rgba(5, 17, 33, 0.25);
}

.mobile-menu {
  display: grid;
  gap: 0.8rem;
  margin-top: 0.75rem;
  padding: 1rem 1.1rem 1.1rem;
  border-radius: 1.3rem;
}

.mobile-nav-link {
  padding: 0.25rem 0;
}

.hero-section {
  position: relative;
  padding: 5.5rem 0 2rem;
}

.hero-layout {
  display: grid;
  align-items: center;
  gap: 2rem;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 2.6rem;
  padding: 0 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(17, 30, 53, 0.66);
  color: rgba(242, 245, 250, 0.92);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

html:not(.dark) .eyebrow-pill {
  border-color: rgba(12, 37, 64, 0.08);
  background: rgba(255, 255, 255, 0.86);
  color: rgba(12, 37, 64, 0.86);
}

.eyebrow-pill__dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #f2d56e, #cba42c);
  box-shadow: 0 0 18px rgba(203, 164, 44, 0.7);
}

.hero-title {
  display: grid;
  gap: 0.1em;
  margin: 1.2rem 0 0;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 10vw, 7.5rem);
  letter-spacing: 0.05em;
  line-height: 0.93;
  text-transform: uppercase;
}

.hero-title__accent {
  color: #cba42c;
  text-shadow: 0 0 30px rgba(203, 164, 44, 0.14);
}

.hero-text {
  max-width: 38rem;
  margin: 1.2rem 0 0;
  color: rgba(226, 234, 245, 0.82);
  font-size: 1rem;
  line-height: 1.8;
}

html:not(.dark) .hero-text {
  color: rgba(12, 37, 64, 0.8);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.cta-btn-primary,
.cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 3.5rem;
  padding: 0 1.35rem;
  border-radius: 1rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  transition: transform 0.2s ease, box-shadow 0.25s ease, color 0.25s ease, background-color 0.25s ease;
}

.cta-btn-primary {
  background: linear-gradient(135deg, #f2d56e, #cba42c);
  color: #081425;
  box-shadow: 0 0 0 1px rgba(255, 232, 160, 0.35), 0 16px 36px rgba(203, 164, 44, 0.28);
}

.cta-btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(15, 28, 49, 0.62);
  color: #f7f9fc;
}

html:not(.dark) .cta-btn-secondary {
  border-color: rgba(12, 37, 64, 0.08);
  background: rgba(255, 255, 255, 0.8);
  color: #0c2540;
}

.cta-btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  background: rgba(8, 20, 37, 0.14);
  font-size: 0.95rem;
}

.cta-btn__icon--outline {
  border: 1px solid rgba(203, 164, 44, 0.3);
  background: transparent;
}

.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-visual__halo {
  position: absolute;
  inset: 10% 10% auto auto;
  width: min(22rem, 60vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(203, 164, 44, 0.28), rgba(203, 164, 44, 0.02) 70%);
  filter: blur(30px);
}

.hero-visual__frame {
  position: relative;
  border-radius: 1.8rem;
  overflow: hidden;
}

.hero-visual__frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 36%),
    linear-gradient(135deg, rgba(203, 164, 44, 0.12), transparent 52%);
  z-index: 1;
  pointer-events: none;
}

.hero-visual__image {
  width: 100%;
  max-width: 48rem;
  margin-inline: auto;
  object-fit: cover;
  filter: drop-shadow(0 40px 60px rgba(2, 8, 16, 0.45));
}

.stats-band {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.75rem;
  padding: 1rem;
  border-radius: 1.5rem;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.8rem 0.9rem;
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.03);
}

html:not(.dark) .stat-card {
  background: rgba(12, 37, 64, 0.03);
}

.stat-card__icon,
.why-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(203, 164, 44, 0.16);
  background: rgba(203, 164, 44, 0.08);
  color: #f2d56e;
  font-size: 1rem;
  flex-shrink: 0;
}

html:not(.dark) .stat-card__icon,
html:not(.dark) .why-item__icon {
  color: #8f6a07;
}

.stat-card__label {
  margin: 0 0 0.15rem;
  color: rgba(226, 234, 245, 0.68);
  font-size: 0.78rem;
  font-weight: 600;
}

html:not(.dark) .stat-card__label {
  color: rgba(12, 37, 64, 0.62);
}

.stat-card__value {
  margin: 0;
  color: #f7f9fc;
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.35;
}

html:not(.dark) .stat-card__value {
  color: #0c2540;
}

.floating-contact {
  position: fixed;
  top: 50%;
  right: 1rem;
  z-index: 55;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  transform: translateY(-50%);
}

.floating-contact__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.25rem;
  height: 4.25rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.1rem;
  background: linear-gradient(180deg, rgba(14, 26, 48, 0.9), rgba(10, 20, 36, 0.78));
  color: rgba(247, 249, 252, 0.88);
  box-shadow: 0 20px 40px rgba(3, 10, 20, 0.35);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.floating-contact__item svg {
  width: 1.5rem;
  height: 1.5rem;
}

.floating-contact__item:hover {
  color: #f2d56e;
  border-color: rgba(203, 164, 44, 0.2);
}

.products-layout {
  display: grid;
  gap: 1.25rem;
  align-items: start;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1rem;
}

.product-card,
.why-card,
.about-panel,
.contact-panel,
.footer-panel {
  border-radius: 1.6rem;
}

.product-card {
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  border-color: rgba(203, 164, 44, 0.24);
}

.product-card__media {
  position: relative;
  min-height: 12rem;
  background-size: cover;
  background-position: center;
}

.product-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(7, 18, 33, 0.18) 42%, rgba(7, 18, 33, 0.65) 100%);
}

.product-card__media--maize {
  background-image:
    linear-gradient(180deg, rgba(12, 37, 64, 0.1), rgba(12, 37, 64, 0.2)),
    url('../assets/images/products/maize.png'),
    linear-gradient(135deg, #f2d56e, #c28220);
}

.product-card__media--textiles {
  background-image:
    linear-gradient(180deg, rgba(12, 37, 64, 0.16), rgba(12, 37, 64, 0.26)),
    url('../assets/images/products/textile.png'),
    linear-gradient(135deg, #7dc4ff, #2b4e86);
}

.product-card__media--spices {
  background-image:
    linear-gradient(180deg, rgba(12, 37, 64, 0.12), rgba(12, 37, 64, 0.28)),
    url('../assets/images/products/spices.png'),
    linear-gradient(135deg, #ef8b2c, #7d230d);
}

.product-card__media--machinery {
  background-image:
    linear-gradient(180deg, rgba(12, 37, 64, 0.14), rgba(12, 37, 64, 0.28)),
    url('../assets/images/products/machinery.png'),
    linear-gradient(135deg, #5cb0ff, #203f68);
}

.product-card__body {
  position: relative;
  z-index: 1;
  padding: 1.15rem 1.15rem 1.3rem;
}

.product-card__tag {
  margin: 0 0 0.35rem;
  color: #cba42c;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-card__title,
.why-item__title {
  margin: 0;
  color: #f7f9fc;
  font-size: 1.18rem;
  font-weight: 800;
}

html:not(.dark) .product-card__title,
html:not(.dark) .why-item__title {
  color: #0c2540;
}

.product-card__text,
.why-item__text,
.about-panel__text,
.footer-brand__text {
  margin: 0.5rem 0 0;
  color: rgba(226, 234, 245, 0.74);
  font-size: 0.95rem;
  line-height: 1.7;
}

html:not(.dark) .product-card__text,
html:not(.dark) .why-item__text,
html:not(.dark) .about-panel__text,
html:not(.dark) .footer-brand__text {
  color: rgba(12, 37, 64, 0.72);
}

.why-card,
.about-panel,
.contact-panel {
  padding: 1.4rem;
}

.why-list {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.about-panel {
  display: grid;
  gap: 1.1rem;
}

.about-panel__stats {
  display: grid;
  gap: 1rem;
}

.requirement-quote {
  margin-top: 0.85rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(203, 164, 44, 0.16);
  border-radius: 1.15rem;
  background: rgba(203, 164, 44, 0.07);
}

html:not(.dark) .requirement-quote {
  background: rgba(12, 37, 64, 0.03);
  border-color: rgba(12, 37, 64, 0.08);
}

.requirement-quote__text {
  margin: 0;
  color: #f7f9fc;
  font-size: 1rem;
  line-height: 1.75;
}

html:not(.dark) .requirement-quote__text {
  color: #0c2540;
}

.highlight-card {
  padding: 1.2rem;
  border-radius: 1.2rem;
}

.highlight-card__kicker {
  display: block;
  margin-bottom: 0.45rem;
  color: #cba42c;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.highlight-card__value {
  color: #f7f9fc;
  font-size: 1rem;
  line-height: 1.55;
}

html:not(.dark) .highlight-card__value {
  color: #0c2540;
}

.contact-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
}

.contact-card {
  display: block;
  min-height: 8.5rem;
  padding: 1.2rem;
  border-radius: 1.2rem;
  transition: transform 0.2s ease, box-shadow 0.25s ease;
}

.contact-card__label {
  display: block;
  margin-bottom: 0.5rem;
  color: #cba42c;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-card__value {
  color: #f7f9fc;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.6;
}

html:not(.dark) .contact-card__value {
  color: #0c2540;
}

.site-footer {
  padding: 0 0 1.5rem;
}

.footer-panel {
  display: grid;
  gap: 1.2rem;
  padding: 1.3rem;
}

.footer-brand {
  display: grid;
  gap: 0.7rem;
}

.footer-brand__logo {
  width: clamp(10rem, 28vw, 14rem);
}

.footer-meta {
  display: grid;
  gap: 0.65rem;
  align-content: start;
}

.footer-meta__link {
  color: rgba(247, 249, 252, 0.8);
  font-size: 0.92rem;
}

html:not(.dark) .footer-meta__link {
  color: rgba(12, 37, 64, 0.75);
}

@media (min-width: 640px) {
  .hero-section {
    padding-top: 6.2rem;
  }

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

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

@media (min-width: 1024px) {
  .nav-panel {
    padding-inline: 1.1rem;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 2.5rem;
  }

  .stats-band {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 2rem;
  }

  .products-layout {
    grid-template-columns: minmax(0, 1.6fr) minmax(20rem, 0.9fr);
  }

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

  .about-panel {
    grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
    align-items: start;
    padding: 1.8rem;
  }

  .contact-panel {
    padding: 1.8rem;
  }

  .footer-panel {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .footer-meta {
    grid-auto-flow: column;
    gap: 1.1rem;
  }
}

@media (min-width: 1440px) {
  .hero-section {
    padding-top: 7rem;
  }

  .nav-panel {
    min-height: 5rem;
  }

  .hero-layout {
    gap: 3.5rem;
  }

  .hero-text {
    font-size: 1.08rem;
  }

  .product-card__media {
    min-height: 13.5rem;
  }
}

@media (min-width: 1920px) {
  .hero-section {
    min-height: calc(100vh - 3rem);
    display: grid;
    align-content: center;
  }

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

  .products-layout {
    grid-template-columns: minmax(0, 1.7fr) minmax(22rem, 0.8fr);
  }

  .why-card {
    max-width: none;
    margin-left: 0;
  }
}
