  
/* ===== RESET & ROOT ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --orange: #e05a1e;
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

body {
  background: #000;
  color: #fff;
  font-family: "DM Sans", sans-serif;
  overflow-x: hidden;
}

/* ===== HERO ===== */
.t-hero {
  background: #000;
  padding: 140px 80px 90px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.t-hero::before {
  content: "";
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(224, 90, 30, 0.09) 0%,
    transparent 65%
  );
  pointer-events: none;
  animation: heroPulse 6s ease-in-out infinite alternate;
}

@keyframes heroPulse {
  from {
    opacity: 0.6;
    transform: translateX(-50%) scale(1);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) scale(1.1);
  }
}

.t-eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 500;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.t-hero-title {
  font-family: "Syne", sans-serif;
  font-size: 58px;
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.05;
  background: linear-gradient(160deg, #fff 40%, rgba(255, 255, 255, 0.4));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
}

.t-hero-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.38);
  max-width: 440px;
  margin: 0 auto;
  line-height: 1.75;
  position: relative;
  z-index: 1;
}

.t-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.07),
    transparent
  );
}

/* ===== STATS BAR ===== */
.t-stats {
  background: #080808;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.t-stat {
  flex: 1;
  max-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 28px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  transition: background 0.3s;
  cursor: default;
}

.t-stat::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(224, 90, 30, 0.6),
    transparent
  );
  transform: scaleX(0);
  transition: transform 0.4s var(--ease-spring);
}

.t-stat:last-child {
  border-right: none;
}

.t-stat:hover {
  background: rgba(224, 90, 30, 0.04);
}

.t-stat:hover::after {
  transform: scaleX(1);
}

.t-stat-num {
  font-family: "Syne", sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: flex-start;
  line-height: 1;
}

.t-stat-num .plus {
  font-size: 16px;
  color: var(--orange);
  margin-top: 2px;
}

.t-stat-label {
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.28);
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

/* ===== MARQUEE STRIP ===== */
.client-strip {
  background: #060606;
  padding: 20px 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.client-strip::before,
.client-strip::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.client-strip::before {
  left: 0;
  background: linear-gradient(90deg, #060606, transparent);
}

.client-strip::after {
  right: 0;
  background: linear-gradient(-90deg, #060606, transparent);
}

.client-track {
  display: flex;
  gap: 44px;
  align-items: center;
  width: max-content;
  animation: scrollClients 35s linear infinite;
}

@keyframes scrollClients {
  from {
    transform: translateX(0);
  }

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

.client-strip:hover .client-track {
  animation-play-state: paused;
}

.client-name {
  font-family: "Syne", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.18);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.3s;
}

.client-name:hover {
  color: rgba(255, 255, 255, 0.45);
}

.client-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(224, 90, 30, 0.4);
  flex-shrink: 0;
}

/* ===== SHARED SECTION STYLES ===== */
.section {
  padding: 90px 80px;
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 80px;
  right: 80px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.07),
    transparent
  );
}

.section-head {
  margin-bottom: 48px;
}

.section-title {
  font-family: "Syne", sans-serif;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.8px;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 10px;
}

.section-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.7;
}

/* ===== VIDEO SECTION ===== */
.video-section {
  background: #080808;
}

/* Featured video — iframe fills the whole box */
.video-featured {
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  background: #0a0a0a;
}

.video-featured iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Video grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.video-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  overflow: hidden;
  transition:
    border-color 0.35s,
    transform 0.4s var(--ease-spring);
}

.video-card:hover {
  border-color: rgba(224, 90, 30, 0.35);
  transform: translateY(-4px);
}

/* iframe wrapper — maintains 16/9 and fills card width */
.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: #0a0a0a;
  overflow: hidden;
}

.video-thumb iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.video-info {
  padding: 12px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.video-client {
  font-family: "Syne", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 3px;
}

.video-loc {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.28);
}

/* ===== QUOTE SLIDER ===== */
.slider-section {
  background: #050505;
}

.slider-wrap {
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.t-card {
  min-width: calc(33.333% - 11px);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 28px 26px;
  margin-right: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.35s,
    background 0.35s;
  flex-shrink: 0;
}

.t-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(224, 90, 30, 0.45),
    transparent
  );
  transform: scaleX(0);
  transition: transform 0.5s var(--ease-spring);
}

.t-card:hover {
  border-color: rgba(224, 90, 30, 0.3);
  background: rgba(255, 255, 255, 0.04);
}

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

.quote-mark {
  font-family: "Syne", sans-serif;
  font-size: 52px;
  color: rgba(224, 90, 30, 0.2);
  line-height: 0.8;
  font-weight: 700;
  height: 30px;
}

.t-card-quote {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  flex: 1;
}

.t-card-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 14px;
}

.t-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(224, 90, 30, 0.12);
  border: 1px solid rgba(224, 90, 30, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Syne", sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  flex-shrink: 0;
}

.t-card-name {
  font-family: "Syne", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}

.t-card-loc {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.28);
}

.t-card-rating {
  margin-left: auto;
  font-family: "Syne", sans-serif;
  font-size: 11px;
  color: var(--orange);
  background: rgba(224, 90, 30, 0.1);
  border: 1px solid rgba(224, 90, 30, 0.2);
  padding: 3px 9px;
  border-radius: 20px;
  white-space: nowrap;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}

.slider-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    border-color 0.3s,
    color 0.3s,
    background 0.3s,
    transform 0.3s var(--ease-spring);
}

.slider-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(224, 90, 30, 0.08);
  transform: scale(1.08);
}

.slider-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}

.s-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition:
    background 0.3s,
    transform 0.3s;
}

.s-dot.active {
  background: var(--orange);
  transform: scale(1.5);
}

/* ===== SERVICE RATINGS ===== */
.service-section {
  background: #040404;
}

.rating-callout {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  background: rgba(224, 90, 30, 0.07);
  border: 1px solid rgba(224, 90, 30, 0.18);
  border-radius: 16px;
  margin-bottom: 36px;
}

.rating-big {
  font-family: "Syne", sans-serif;
  font-size: 64px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}

.rating-unit {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.rating-sep {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.08);
}

.rating-callout-title {
  font-family: "Syne", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}

.rating-callout-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.7;
  max-width: 480px;
}

.ratings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.r-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition:
    border-color 0.35s,
    transform 0.4s var(--ease-spring);
  position: relative;
  overflow: hidden;
}

.r-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--orange);
  transition: height 0.4s var(--ease-spring);
}

.r-card:hover {
  border-color: rgba(224, 90, 30, 0.28);
  transform: translateY(-3px);
}

.r-card:hover::before {
  height: 100%;
}

.r-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(224, 90, 30, 0.1);
  border: 1px solid rgba(224, 90, 30, 0.2);
  border-radius: 20px;
  padding: 4px 12px;
  font-family: "Syne", sans-serif;
  font-size: 12px;
  color: var(--orange);
  width: fit-content;
}

.r-quote {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
  flex: 1;
}

.r-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 12px;
}

.r-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-family: "Syne", sans-serif;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
}

.r-name {
  font-family: "Syne", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}

.r-loc {
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.25);
}

/* ===== CLIENTS SECTION ===== */
.clients-section {
  background: #060606;
}

.clients-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 56px;
}

.clients-text p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.85;
  margin-bottom: 14px;
}

.export-panel {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 28px;
}

.export-panel-title {
  font-family: "Syne", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}

.export-panel-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 18px;
}

.export-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.export-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.38);
}

.export-list li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

.export-list li span {
  color: rgba(255, 255, 255, 0.65);
}

/* Logo grid */
.logos-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.18);
  margin-bottom: 20px;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.logo-cell {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  aspect-ratio: 3/2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  transition:
    border-color 0.3s,
    background 0.3s,
    transform 0.35s var(--ease-spring);
  cursor: default;
  overflow: hidden;
}

.logo-cell:hover {
  border-color: rgba(224, 90, 30, 0.3);
  background: rgba(224, 90, 30, 0.04);
  transform: translateY(-3px);
}

/* Place your <img> inside .logo-cell — it will be desaturated and brighten on hover */
.logo-cell img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(0) brightness(1);
  transition: filter 0.3s, transform 0.35s var(--ease-spring);
}

.logo-cell:hover img {
  filter: grayscale(0) brightness(1.1);
  transform: scale(1.12);
}

/* Fallback text name shown if no img */
.logo-cell .logo-name {
  font-family: "Syne", sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.22);
  letter-spacing: 0.5px;
  text-align: center;
  transition: color 0.3s;
}

.logo-cell:hover .logo-name {
  color: rgba(255, 255, 255, 0.55);
}

/* ===== CTA ===== */
.t-cta {
  background: var(--orange);
  padding: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.t-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 20% 50%,
      rgba(255, 255, 255, 0.07),
      transparent 60%
    ),
    radial-gradient(ellipse at 80% 50%, rgba(0, 0, 0, 0.08), transparent 60%);
  pointer-events: none;
}

.t-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.07) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
  pointer-events: none;
}

.t-cta-inner {
  position: relative;
  z-index: 2;
}

.t-cta-title {
  font-family: "Syne", sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.8px;
  margin-bottom: 10px;
}

.t-cta-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 28px;
}

.t-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.t-cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--orange);
  font-family: "Syne", sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 10px;
  text-decoration: none;
  transition:
    transform 0.35s var(--ease-spring),
    box-shadow 0.3s;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.t-cta-btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(224, 90, 30, 0.08) 50%,
    transparent 65%
  );
  transform: translateX(-150%);
  transition: transform 0.5s ease;
}

.t-cta-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.t-cta-btn-primary:hover::after {
  transform: translateX(200%);
}

.t-cta-btn-primary .arr {
  transition: transform 0.3s var(--ease-spring);
}

.t-cta-btn-primary:hover .arr {
  transform: translateX(5px);
}

.t-cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 14px 28px;
  border-radius: 10px;
  transition:
    background 0.25s,
    border-color 0.25s,
    transform 0.35s var(--ease-spring);
}

.t-cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.65);
  transform: translateY(-3px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .logo-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 900px) {
  .t-hero {
    padding: 120px 40px 70px;
  }

  .t-hero-title {
    font-size: 38px;
  }

  .section {
    padding: 70px 40px;
  }

  .section::before {
    left: 40px;
    right: 40px;
  }

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

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

  .clients-intro {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .t-card {
    min-width: calc(50% - 8px);
  }

  .t-cta {
    padding: 60px 40px;
  }

  .t-stats {
    flex-wrap: wrap;
  }

  .t-stat {
    min-width: 50%;
  }
}

@media (max-width: 600px) {
  .t-hero {
    padding: 100px 24px 60px;
  }

  .t-hero-title {
    font-size: 30px;
  }

  .section {
    padding: 60px 24px;
  }

  .section::before {
    left: 24px;
    right: 24px;
  }

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

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

  .t-card {
    min-width: calc(100% - 0px);
  }

  .t-cta {
    padding: 50px 24px;
  }

  .t-cta-title {
    font-size: 26px;
  }
}

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


/* ================================================================
   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.40s; }
.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;
  }
}
