/* ===== NAVBAR ===== */
/* ===== MERGED NAV BAR (logo + links + actions, one continuous pill) ===== */
.site-nav {
  position: fixed;
  top: 20px;
  left: 40px;
  right: 40px;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 28px;
  background: rgba(14, 12, 10, 0.55);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 2px solid rgba(224, 90, 30, 0.3);
  border-radius: 999px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}
.site-nav.scrolled {
  background: rgba(10, 8, 7, 0.85);
  border-color: rgba(224, 90, 30, 0.18);
  border-bottom-color: rgba(224, 90, 30, 0.45);
  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(224, 90, 30, 0.06);
}
.site-nav.nav-hidden {
  transform: translateY(-140%);
}
.site-nav .nav-links {
  gap: 30px;
  flex-wrap: nowrap;
}
.site-nav .nav-links > li > a,
.site-nav .nav-dropdown > a {
  white-space: nowrap;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.1px;
}
.site-nav .nav-actions {
  flex-shrink: 0;
}
.site-nav .nav-actions .nav-cta {
  padding: 9px 22px;
  font-size: 13.5px;
}

/* ===== LOGO ===== */
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.3s ease;
}
.nav-logo:hover img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* ===== NAV LINKS ===== */
.nav-links {
  display: flex;
  gap: 36px; /* was 30px */
  list-style: none;
}
.nav-links > li > a,
.nav-dropdown > a {
  font-family: "DM Sans", sans-serif;
  font-size: 14px; /* was 12.5px */
  font-weight: 500; /* was 400 */
  color: rgba(255, 255, 255, 0.6); /* was 0.38 */
  text-decoration: none;
  letter-spacing: 0.2px;
  transition: color 0.25s;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.nav-links > li > a::after,
.nav-dropdown > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 1.5px;
  background: #e05a1e;
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-links > li > a:hover,
.nav-dropdown > a:hover {
  color: #fff;
}
.nav-links > li > a:hover::after,
.nav-dropdown > a:hover::after,
.nav-links > li > a.active::after,
.nav-dropdown > a.active::after {
  width: 100%;
}
.nav-links > li > a.active,
.nav-dropdown > a.active {
  color: #fff;
}

/* ===== ACTIONS ===== */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-signin {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  padding: 9px 20px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: linear-gradient(135deg, #ef6b2c 0%, #d14e14 100%);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.nav-signin:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(224, 90, 30, 0.35);
}

/* ===== CTA BUTTON ===== */
.nav-cta {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #ef6b2c 0%, #d14e14 100%);
  padding: 10px 24px;
  border-radius: 10px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow:
    0 4px 14px rgba(224, 90, 30, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition:
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s ease;
  white-space: nowrap;
  letter-spacing: 0.3px;
}
.nav-cta::after {
  display: none !important;
}
.nav-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.18),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 0.55s ease;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 10px 32px rgba(224, 90, 30, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.nav-cta:hover::before {
  left: 160%;
}
.nav-cta:active {
  transform: scale(0.97) translateY(-1px);
}

/* ===== DROPDOWN ===== */
.nav-dropdown {
  position: relative;
}
.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-dropdown > a svg {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-dropdown:hover > a svg {
  transform: rotate(180deg);
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: rgba(8, 8, 8, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  padding: 8px;
  min-width: 260px;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.25s,
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(255, 255, 255, 0.03);
  z-index: 300;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: rgba(8, 8, 8, 0.97);
  border-left: 1px solid rgba(255, 255, 255, 0.09);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

/* ===== DROPDOWN ITEMS ===== */
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 8px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.6); /* was 0.55 */
  font-size: 13px; /* was 12.5px */
  font-weight: 500;
  transition:
    background 0.2s,
    color 0.2s,
    padding-left 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  border-bottom: none;
}
.dropdown-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #e05a1e;
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.dropdown-item:hover::after {
  width: 100%;
}
.dropdown-item:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  padding-left: 18px;
}

.dropdown-item-icon {
  width: 34px;
  height: 34px;
  background: rgba(224, 90, 30, 0.12);
  border: 1px solid rgba(224, 90, 30, 0.2);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.dropdown-item:hover .dropdown-item-icon {
  background: rgba(224, 90, 30, 0.22);
  border-color: rgba(224, 90, 30, 0.5);
}

.dropdown-item-img {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  padding: 4px;
  transition:
    border-color 0.2s,
    background 0.2s,
    box-shadow 0.2s;
}
.dropdown-item-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: brightness(1.1) contrast(1.05);
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.2s;
}
.dropdown-item:hover .dropdown-item-img {
  border-color: rgba(224, 90, 30, 0.4);
  background: rgba(224, 90, 30, 0.06);
  box-shadow: 0 0 12px rgba(224, 90, 30, 0.15);
}
.dropdown-item:hover .dropdown-item-img img {
  transform: scale(1.1);
  filter: brightness(1.2) contrast(1.05);
}

#machinesDropdown {
  min-width: 300px;
}
#machinesDropdown .dropdown-item {
  padding: 10px 14px;
  gap: 14px;
}
#machinesDropdown .dropdown-item-name {
  font-size: 14px;
  font-weight: 500;
}
#machinesDropdown .dropdown-item-cap {
  font-size: 12px;
  margin-top: 2px;
}

.dropdown-item-info {
  flex: 1;
}
.dropdown-item-name {
  display: block;
  font-weight: 500;
  font-size: 13px;
}
.dropdown-item-cap {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.32);
  margin-top: 1px;
}
.dropdown-item:hover .dropdown-item-cap {
  color: rgba(255, 255, 255, 0.5);
}

.dropdown-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
  margin: 4px 8px;
}
.dropdown-view-all {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 8px;
  text-decoration: none;
  color: #e05a1e;
  font-size: 13px; /* was 11.5px */
  font-weight: 600;
  letter-spacing: 0.4px;
  transition: background 0.2s;
}
.dropdown-view-all::after {
  display: none !important;
}
.dropdown-view-all:hover {
  background: rgba(224, 90, 30, 0.09);
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 22px;
}
.dropdown-category-label {
  padding: 8px 16px 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  pointer-events: none;
}

/* ── mobile island + drawer hidden on desktop ── */
.mobile-island,
.mobile-drawer,
.mobile-overlay {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.nav-btn-icon {
  display: none;
}
.nav-link-icon {
  display: none;
}
.nav-dropdown-arrow {
  display: none;
}
.nav-more-toggle {
  display: none;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .site-nav .nav-links,
  .nav-links {
    gap: 8px;
  }
  .site-nav .nav-links > li > a,
  .site-nav .nav-dropdown > a,
  .nav-links > li > a,
  .nav-dropdown > a {
    font-size: 12px;
    padding: 8px 10px;
  }
  .nav-link-icon {
    display: block;
    width: 26px;
    height: 26px;
  }
  .nav-link-text {
    display: none;
  }
    .nav-dropdown-arrow {
    display: none;
  }
  .site-nav .nav-links > li > a,
  .site-nav .nav-dropdown > a,
  .nav-links > li > a,
  .nav-dropdown > a {
    flex-direction: column;
    gap: 3px;
    padding: 8px 10px;
  }
  .nav-link-text {
    display: block;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
  }
  .nav-links > li > a.active .nav-link-text,
  .nav-dropdown > a.active .nav-link-text {
    color: #e05a1e;
  }
  .nav-more-item {
    display: none;
  }
  .nav-more-toggle {
    display: block;
  }
  .nav-more-menu {
    min-width: 220px;
  }
}
/* ===== SIGN IN (icon-only circle, unchanged treatment) ===== */
.nav-signin {
  width: 44px;
  height: 44px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.nav-signin .nav-btn-icon {
  display: block;
  width: 18px;
  height: 18px;
}
.nav-signin .nav-btn-text {
  display: none;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .nav-cta {
    width: 44px;
    height: 44px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
  .nav-cta .nav-btn-text {
    display: none;
  }

    .nav-cta .nav-btn-icon {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
  }
}

/* ===== TALK TO EXPERT CTA (icon + text pill) ===== */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav-cta .nav-btn-icon {
  display: block;
  width: 16px;
  height: 16px;
}

/* ═══════════════════════════════
   MOBILE — FLOATING ISLAND NAV
═══════════════════════════════ */
@media (max-width: 768px) {
  /* .site-nav itself stays rendered so .nav-logo (its child) keeps
     showing, same as today's standalone logo — only the links/actions
     are hidden, and the glass-pill chrome is stripped off so the bar
     collapses down to just the logo's own box. */
  .site-nav {
    top: 22px;
    left: 40px;
    right: auto;
    width: auto;
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    justify-content: flex-start;
  }
  .site-nav .nav-links,
  .site-nav .nav-actions {
    display: none;
  }
  .nav-logo img {
    width: 120px;
    height: 48px;
    max-width: none;
    object-fit: contain;
  }
  .nav-logo {
    overflow: visible;
  }

    .site-nav.scrolled .nav-logo img {
    width: 70px;
    height: 28px;
  }

  /* ── ISLAND ── */
  .mobile-island {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 490;
    background: linear-gradient(180deg, #2a1408, #1a0d05);
    border: 1px solid rgba(224, 90, 30, 0.35);
    border-radius: 22px;
    padding: 6px;
    display: flex;
    align-items: center;
    gap: 2px;
    box-shadow:
      0 8px 32px rgba(0, 0, 0, 0.8),
      0 0 30px rgba(224, 90, 30, 0.25),
      0 0 0 1px rgba(224, 90, 30, 0.1);
    transition: transform 0.35s ease;
  }
  .mobile-island.drawer-open {
    transform: translateX(-50%) translateY(120px);
  }
  .island-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 9px 14px;
    border-radius: 16px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.25s ease;
    min-width: 52px;
  }
  .island-item.active {
    background: rgba(224, 90, 30, 0.15);
  }
  .island-item:active {
    transform: scale(0.94);
  }
  .island-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .island-icon svg {
    width: 18px;
    height: 18px;
    stroke: rgba(255, 255, 255, 0.45);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.25s;
  }
  .island-item.active .island-icon svg {
    stroke: #e05a1e;
  }
  .island-label {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.25s;
    white-space: nowrap;
  }
  .island-item.active .island-label {
    color: rgba(224, 90, 30, 0.85);
  }
  .island-more {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    margin-left: 2px;
  }
  .island-more svg {
    width: 16px;
    height: 16px;
    stroke: rgba(255, 255, 255, 0.4);
    fill: none;
    stroke-width: 2;
    transition: stroke 0.2s;
  }
  .island-more.open {
    background: rgba(224, 90, 30, 0.12);
    border-color: rgba(224, 90, 30, 0.25);
  }
  .island-more.open svg {
    stroke: #e05a1e;
  }

  /* ── OVERLAY ── */
  .mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 495;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    display: block;
  }
  .mobile-overlay.open {
    opacity: 1;
    pointer-events: all;
  }

  /* ── DRAWER ── */
  .mobile-drawer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 500;
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 24px 24px 0 0;
    padding: 12px 0 40px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: block;
  }
  .mobile-drawer.open {
    transform: translateY(0);
  }
  .drawer-handle {
    width: 36px;
    height: 3px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 2px;
    margin: 0 auto 20px;
  }
  .drawer-section-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.25);
    padding: 0 24px;
    margin-bottom: 6px;
    margin-top: 16px;
  }
  .drawer-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 24px;
    font-size: 16px; /* was 15px */
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6); /* was 0.45 */
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition:
      color 0.2s,
      background 0.2s;
    letter-spacing: -0.2px;
  }
  .drawer-link:active {
    background: rgba(255, 255, 255, 0.03);
  }
  .drawer-link.highlight {
    color: #e05a1e;
  }
  .drawer-link svg {
    width: 15px;
    height: 15px;
    stroke: rgba(255, 255, 255, 0.2);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
  }
  .drawer-link.highlight svg {
    stroke: rgba(224, 90, 30, 0.5);
  }
  .drawer-cta {
    display: block;
    margin: 22px 24px 0;
    background: #e05a1e;
    color: #fff;
    text-align: center;
    padding: 16px;
    border-radius: 12px;
    font-size: 13px; /* was 12px */
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: opacity 0.2s;
  }
  .drawer-cta:active {
    opacity: 0.85;
  }
}

/* ================================================================
   MOBILE BRIGHTNESS + PREMIUM POLISH  (auto-generated)
   Hard hex values — correct at ANY screen brightness level
================================================================ */
@media (max-width: 768px) {
  /* CARD BACKGROUNDS */
  .why-card,
  .infra-stat-box,
  .infra-floor,
  .quality-pillar,
  .story-img-cell,
  .explore-card,
  .pl-card,
  .bake-card,
  .ind-card,
  .machine-card,
  .blog-card,
  .timeline-card,
  .featured-card,
  .stat-block,
  .r-card,
  .t-card,
  .pkg-card,
  .pkg-info-card,
  .pkg-manpower-card,
  .contact-info-card,
  .post-sidebar-box,
  .flow-step-box,
  .iot-card,
  .infra-img-main,
  .tl-img-frame,
  .why-features .why-card,
  .cert-grid .cert-card,
  .export-panel,
  .r-card,
  .rating-callout {
    background: #1e1e1e;
    border-color: #3a3a3a;
  }

  /* BODY / DESCRIPTION TEXT */
  .why-card p,
  .infra-floor-body,
  .infra-floor-detail,
  .infra-intro,
  .quality-intro,
  .quality-pillar-body-inner li,
  .quality-pillar-sub,
  .story-body-text p,
  .explore-card-desc,
  .explore-header-sub,
  .about-hero-desc,
  .section-body,
  .why-header-right p,
  .pl-card-desc,
  .pl-hero-sub,
  .pl-card-flow span,
  .machine-card-desc,
  .bake-card-desc,
  .blog-card-excerpt,
  .blog-card-subtitle,
  .featured-desc,
  .timeline-desc,
  .tl-body,
  .r-quote,
  .t-card-quote,
  .pkg-desc,
  .pkg-info-sub,
  .line-meta-text,
  .post-content p,
  .detail-desc,
  .hero-desc,
  .page-sub,
  .csa-sub,
  .ind-sub,
  .bake-sub,
  .about-body,
  .process-sub,
  .cta-sub,
  .card-models,
  .card-count,
  .terms-clause-body p,
  .pp-section p,
  .pp-list li,
  .contact-subtitle,
  .footer-tagline,
  .blog-hero-desc,
  .step-label,
  .cta-sub {
    color: #cccccc;
  }

  /* SECONDARY / LABEL TEXT */
  .about-hero-stat-label,
  .infra-stat-box-label,
  .pl-stat-label,
  .csa-stat-l,
  .stat-label,
  .t-stat-label,
  .pkg-info-label,
  .pkg-manpower-label,
  .card-cat,
  .section-eyebrow,
  .line-hero-eyebrow,
  .flow-step-num,
  .blog-card-date,
  .post-hero-date,
  .r-loc,
  .t-card-loc,
  .cert-milestone-label,
  .line-nav-prev-hint,
  .line-nav-next-hint,
  .contact-info-label,
  .breadcrumb,
  .breadcrumb a,
  .back-btn,
  .pkg-machine-note {
    color: #aaaaaa;
  }

  /* CARD TITLES */
  .why-card h3,
  .infra-floor-name,
  .quality-pillar-title,
  .explore-card-title,
  .pl-card-name,
  .machine-card-name,
  .bake-card-name,
  .blog-card-title,
  .featured-name,
  .timeline-event-name,
  .tl-headline,
  .t-card-name,
  .pkg-card-name,
  .card-name,
  .cta-title,
  .models-cta-text h4,
  .iot-card-title,
  .contact-info-value {
    color: #ffffff;
    font-size: 15px;
  }

  /* STAT NUMBERS */
  .about-hero-stat-num,
  .infra-stat-box-num,
  .pl-stat-num,
  .csa-stat-n,
  .stat-num,
  .t-stat-num,
  .pkg-info-value,
  .pkg-manpower-value,
  .history-meta-num,
  .rating-big {
    color: #ffffff;
    font-size: 24px;
  }

  /* PILL / TAG CHIPS */
  .pl-card-capacity,
  .pl-card-machine-tag,
  .infra-badge,
  .line-meta-badge,
  .tl-tag,
  .model-tag,
  .card-tag,
  .pkg-tag,
  .pkg-material,
  .detail-tag,
  .filter-pill,
  .filter-btn {
    background: #252525;
    border-color: #3d3d3d;
    color: #cccccc;
  }

  /* SECTION TITLES */
  .section-title,
  .pl-lines-title,
  .pl-overview-title,
  .bake-title,
  .ind-title,
  .about-title,
  .featured-title,
  .timeline-title,
  .t-hero-title {
    font-size: clamp(28px, 7vw, 40px);
  }

  /* FLOW */
  .flow-step-name {
    color: #ffffff;
  }
  .flow-step-box {
    background: #1e1e1e;
    border-color: #3a3a3a;
  }

  /* FOOTER */
  .footer-col ul li a {
    color: #aaaaaa;
  }
  .footer-col h4.footer-col-title {
    color: #888888;
  }
  .footer-address {
    color: #aaaaaa;
  }
  .footer-bottom span,
  .footer-bottom-links a {
    color: #666666;
  }

  /* TESTIMONIALS */
  .t-card-quote,
  .r-quote {
    color: #cccccc;
  }
  .cert-milestone-year {
    color: #888888;
  }

  /* PACKAGES */
  .pkg-machine-name {
    color: #eeeeee;
  }
  .pkg-capacity-row span {
    color: #cccccc;
  }
  .pkg-capacity-row span:first-child {
    color: #eeeeee;
  }
  .pkg-note,
  .pkg-desc {
    color: #cccccc;
  }

  /* BLOG */
  .post-related-title {
    color: #cccccc;
  }

  /* MACHINE / MODEL */
  .detail-desc,
  .iot-card-desc,
  .right-sub,
  .models-cta-text p {
    color: #cccccc;
  }
  .specs-table td:first-child {
    color: #aaaaaa;
  }
  .specs-table td:last-child {
    color: #eeeeee;
  }

  /* PRIVACY / TERMS */
  .terms-notice,
  .pp-note {
    color: #cccccc;
  }
}

@media (max-width: 480px) {
  .pl-card-name,
  .machine-card-name,
  .bake-card-name,
  .why-card h3,
  .explore-card-title {
    font-size: 14px;
  }
  .section-title,
  .pl-lines-title {
    font-size: clamp(26px, 8vw, 34px);
  }
}

/* ================================================================
   PREMIUM MICRO-ANIMATIONS (auto-generated)
   Smooth, tasteful — respects prefers-reduced-motion
================================================================ */

/* Scroll reveal base */
.reveal,
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible,
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger delays */
.stagger-1 {
  transition-delay: 0.08s;
}
.stagger-2 {
  transition-delay: 0.16s;
}
.stagger-3 {
  transition-delay: 0.24s;
}
.stagger-4 {
  transition-delay: 0.32s;
}
.stagger-5 {
  transition-delay: 0.4s;
}
.stagger-6 {
  transition-delay: 0.48s;
}

/* Card hover lift — premium feel */
.why-card,
.infra-stat-box,
.infra-floor,
.explore-card,
.pl-card,
.bake-card,
.ind-card,
.machine-card,
.blog-card,
.featured-card,
.stat-block,
.r-card,
.t-card,
.pkg-card,
.pkg-info-card,
.timeline-card,
.contact-info-card {
  transition:
    border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

/* Shimmer on card hover */
.why-card::after,
.explore-card::after,
.pl-card::after,
.machine-card::after,
.blog-card::after,
.pkg-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(224, 90, 30, 0.6),
    transparent
  );
  opacity: 0;
  transform: scaleX(0);
  transition:
    opacity 0.4s,
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.why-card:hover::after,
.explore-card:hover::after,
.pl-card:hover::after,
.machine-card:hover::after,
.blog-card:hover::after,
.pkg-card:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

/* Stat number count-up glow on hover */
.about-hero-stat:hover .about-hero-stat-num,
.infra-stat-box:hover .infra-stat-box-num,
.stat-block:hover .stat-number {
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
}

/* Link underline slide */
.footer-col ul li a,
.drawer-link,
.toc-pill,
.filter-pill {
  transition:
    color 0.25s,
    padding-left 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.25s,
    border-color 0.25s,
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Button press feedback */
.nav-cta:active,
.fcta-btn-primary:active,
.line-cta-btn-primary:active,
.pkg-cta-primary:active,
.enquire-submit:active {
  transform: scale(0.97) translateY(0);
}

/* Image scale on card hover */
.bake-card:hover .bake-card-img,
.ind-line-pill:hover .ind-line-pill-icon img,
.blog-card:hover img {
  transform: scale(1.06);
}

/* Smooth border-radius pulse on active nav item */
.island-item.active .island-icon svg {
  filter: drop-shadow(0 0 4px rgba(224, 90, 30, 0.6));
}

/* Orange accent line slide-in on section hover */
.pl-card-cta-text,
.view-btn,
.blog-card-cta,
.explore-card-cta,
.featured-details {
  transition:
    letter-spacing 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.3s,
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Tablet-specific enhancements */
@media (min-width: 769px) and (max-width: 1024px) {
  .why-card:hover,
  .explore-card:hover,
  .pl-card:hover,
  .machine-card:hover,
  .blog-card:hover {
    transform: translateY(-4px);
    box-shadow:
      0 16px 48px rgba(0, 0, 0, 0.55),
      0 0 0 1px rgba(224, 90, 30, 0.06);
  }
}

/* Desktop-specific enhancements */
@media (min-width: 1025px) {
  .why-card:hover,
  .explore-card:hover,
  .pl-card:hover,
  .machine-card:hover,
  .blog-card:hover {
    transform: translateY(-8px);
    box-shadow:
      0 28px 72px rgba(0, 0, 0, 0.65),
      0 0 0 1px rgba(224, 90, 30, 0.07);
  }
  /* Subtle parallax depth on hero sections */
  .pl-hero-bg,
  .about-hero-orb,
  .blog-hero-orb {
    will-change: transform;
  }
}

/* Mobile — no hover transforms (tap only) */
@media (max-width: 768px) {
  .why-card:hover,
  .explore-card:hover,
  .pl-card:hover,
  .machine-card:hover,
  .blog-card:hover,
  .infra-floor:hover,
  .quality-pillar:hover {
    transform: none;
  }
  .why-card:active {
    transform: scale(0.98);
  }
  .pl-card:active,
  .blog-card:active,
  .machine-card:active {
    transform: scale(0.98);
  }
  .island-item:active {
    transform: scale(0.92);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
    transition-duration: 0.01ms;
  }
}

/* ===== THEME TOGGLE BUTTON ===== */
.theme-toggle-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: linear-gradient(135deg, #ef6b2c 0%, #d14e14 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(224, 90, 30, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.theme-toggle-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 32px rgba(224, 90, 30, 0.5);
}
.theme-toggle-btn:hover {
  background: rgba(224, 90, 30, 0.12);
  border-color: rgba(224, 90, 30, 0.4);
  transform: translateY(-1px);
}
.theme-toggle-btn:active {
  transform: scale(0.94);
}
.theme-toggle-btn .icon-moon {
  display: none;
}
html[data-theme="light"] .theme-toggle-btn .icon-sun {
  display: none;
}
html[data-theme="light"] .theme-toggle-btn .icon-moon {
  display: block;
}