@import url("https://fonts.googleapis.com/css2?family=Syne:wght@700;800&family=DM+Sans:wght@300;400;500&display=swap");

/* ================= GLOBAL ================= */
* { 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 ===== */
.pkg-hero {
  min-height: 480px;
  background: #000;
  display: flex;
  align-items: flex-end;
  padding: 0 80px 88px;
  position: relative;
  overflow: hidden;
}
.pkg-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% -10%, rgba(224,90,30,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 100%, rgba(224,90,30,0.07) 0%, transparent 50%);
  pointer-events: none;
}
.pkg-hero-divider {
  position: absolute;
  left: 80px; right: 80px;
  height: 1px; top: 110px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
}
.pkg-hero-content { position: relative; z-index: 2; }

.pkg-eyebrow {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #e05a1e;
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.pkg-eyebrow::before {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  background: #e05a1e;
  border-radius: 1px;
}

.pkg-hero h1 {
  font-family: "Syne", sans-serif;
  font-size: 72px;
  font-weight: 800;
  letter-spacing: -2.5px;
  line-height: 0.97;
  color: #fff;
  /* crisp white — no gradient fade, maximum impact */
}

.pkg-hero-meta {
  margin-top: 24px;
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.pkg-hero-meta span { display: flex; align-items: center; gap: 6px; }
.pkg-hero-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,0.25); }

.pkg-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(224,90,30,0.15);
  border: 1px solid rgba(224,90,30,0.45);
  border-radius: 5px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 700;
  color: #e05a1e;
  font-family: "Syne", sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ===== LAYOUT ===== */
.pkg-layout {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 80px 140px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/* ===== SECTION ===== */
.pkg-section { scroll-margin-top: 110px; }
.pkg-section-title {
  font-family: "Syne", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.pkg-section-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.1), transparent);
}

/* ===== DESCRIPTION ===== */
.pkg-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.62);
  line-height: 1.9;
  max-width: 760px;
  font-weight: 400;
}

/* ===== TAGS ===== */
.pkg-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.pkg-tag {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 9px 18px;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.pkg-tag:hover { border-color: rgba(224,90,30,0.5); color: #fff; background: rgba(224,90,30,0.07); }

/* ===== MACHINES TABLE ===== */
.pkg-machines {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  overflow: hidden;
}
.pkg-machines-header {
  display: grid;
  grid-template-columns: 1fr 80px;
  background: rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 14px 24px;
}
.pkg-machines-header span {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  font-weight: 600;
}
.pkg-machine-row {
  display: grid;
  grid-template-columns: 1fr 80px;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.2s;
  align-items: center;
}
.pkg-machine-row:last-child { border-bottom: none; }
.pkg-machine-row:hover { background: rgba(255,255,255,0.03); }
.pkg-machine-name {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
}
.pkg-machine-qty {
  font-family: "Syne", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #e05a1e;
  text-align: center;
}
.pkg-machine-note {
  font-size: 12px;
  color: rgba(255,255,255,0.28);
  margin-top: 3px;
}

/* ===== CAPACITY TABLE ===== */
.pkg-capacity {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  overflow: hidden;
}
.pkg-capacity-header {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.5fr 1fr;
  background: rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 14px 24px;
}
.pkg-capacity-header span {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  font-weight: 600;
}
.pkg-capacity-row {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.5fr 1fr;
  padding: 17px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  align-items: center;
  transition: background 0.2s;
}
.pkg-capacity-row:last-child { border-bottom: none; }
.pkg-capacity-row:hover { background: rgba(255,255,255,0.03); }
.pkg-capacity-row span {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}
.pkg-capacity-row span:first-child {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 16px;
}
.pkg-capacity-note {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  line-height: 1.75;
  padding: 18px 24px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  background: rgba(255,255,255,0.02);
}

/* ===== INFO GRID ===== */
.pkg-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.pkg-info-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px;
  padding: 26px 24px;
  transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease-spring);
}
.pkg-info-card:hover {
  border-color: rgba(224,90,30,0.4);
  background: rgba(224,90,30,0.04);
  transform: translateY(-2px);
}
.pkg-info-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 12px;
  font-weight: 500;
}
.pkg-info-value {
  font-family: "Syne", sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.pkg-info-value span {
  font-size: 14px;
  color: rgba(255,255,255,0.38);
  font-weight: 400;
  font-family: "DM Sans", sans-serif;
}
.pkg-info-sub { font-size: 13px; color: rgba(255,255,255,0.3); margin-top: 6px; }

/* ===== RAW MATERIALS ===== */
.pkg-materials { display: flex; flex-wrap: wrap; gap: 10px; }
.pkg-material {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 6px;
  padding: 8px 16px;
  transition: border-color 0.25s, color 0.25s;
}
.pkg-material:hover { border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.8); }

/* ===== MANPOWER ===== */
.pkg-manpower { display: flex; gap: 16px; flex-wrap: wrap; }
.pkg-manpower-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px;
  padding: 22px 28px;
  flex: 1;
  min-width: 180px;
  transition: border-color 0.3s, background 0.3s;
}
.pkg-manpower-card:hover { border-color: rgba(224,90,30,0.3); background: rgba(224,90,30,0.04); }
.pkg-manpower-icon {
  width: 46px; height: 46px;
  border-radius: 10px;
  background: rgba(224,90,30,0.1);
  border: 1px solid rgba(224,90,30,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}
.pkg-manpower-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 4px;
  font-weight: 500;
}
.pkg-manpower-value {
  font-family: "Syne", sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

/* ===== NOTE BOX ===== */
.pkg-note {
  background: rgba(224,90,30,0.04);
  border: 1px solid rgba(224,90,30,0.18);
  border-left: 4px solid #e05a1e;
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
}

/* ===== CTA ROW ===== */
.pkg-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.pkg-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #e05a1e;
  color: #fff;
  font-family: "Syne", sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 15px 36px;
  border-radius: 10px;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.3s;
}
.pkg-cta-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(224,90,30,0.5); }
.pkg-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  font-weight: 500;
  padding: 15px 36px;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.15);
  transition: border-color 0.25s, color 0.25s, transform 0.35s var(--ease-spring);
}
.pkg-cta-secondary:hover { border-color: rgba(255,255,255,0.4); color: #fff; transform: translateY(-3px); }

/* ===== FADE-UP ===== */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s var(--ease-out), transform 0.7s var(--ease-spring);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== PACKAGES INDEX ===== */
.packages-hero {
  min-height: 480px;
  background: #000;
  display: flex;
  align-items: flex-end;
  padding: 140px 80px 88px;
  position: relative;
  overflow: hidden;
}
.packages-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% -10%, rgba(224,90,30,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 100%, rgba(224,90,30,0.07) 0%, transparent 50%);
  pointer-events: none;
}
.packages-hero-divider {
  position: absolute;
  left: 80px; right: 80px;
  height: 1px; top: 110px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
}
.packages-hero-content { position: relative; z-index: 2; }
.packages-eyebrow {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.packages-eyebrow::before { content: ""; display: block; width: 36px; height: 2px; background: var(--orange); border-radius: 1px; }
.packages-hero h1 {
  font-family: "Syne", sans-serif;
  font-size: 72px;
  font-weight: 800;
  letter-spacing: -2.5px;
  line-height: 0.97;
  color: #fff;
}
.packages-hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 560px;
  margin-top: 20px;
  font-weight: 400;
}
.packages-hero-stats {
  display: flex;
  gap: 56px;
  margin-top: 52px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.09);
}
.packages-hero-stat .num {
  font-family: "Syne", sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.packages-hero-stat .num sup { font-size: 20px; color: var(--orange); }
.packages-hero-stat .lbl {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 6px;
  font-weight: 500;
}

.packages-section { background: #060606; padding: 88px; }
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pkg-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 18px;
  padding: 34px 28px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.35s, background 0.35s, transform 0.4s var(--ease-spring), box-shadow 0.35s;
  position: relative;
  overflow: hidden;
}
.pkg-card::after {
  content: "";
  position: absolute;
  top: 0; left: 20%; right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(224,90,30,0.7), transparent);
  opacity: 0;
  transform: scaleX(0);
  transition: opacity 0.4s, transform 0.5s var(--ease-spring);
}
.pkg-card:hover { border-color: rgba(224,90,30,0.45); background: rgba(255,255,255,0.05); transform: translateY(-7px); box-shadow: 0 24px 60px rgba(0,0,0,0.6); }
.pkg-card:hover::after { opacity: 1; transform: scaleX(1); }
.pkg-card-num { font-size: 11px; letter-spacing: 2px; color: rgba(224,90,30,0.6); font-family: "Syne", sans-serif; font-weight: 700; }
.pkg-card-name { font-family: "Syne", sans-serif; font-size: 20px; font-weight: 800; color: #fff; letter-spacing: -0.3px; line-height: 1.15; }
.pkg-card-desc { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.7; flex: 1; }
.pkg-card-chips { display: flex; flex-wrap: wrap; gap: 7px; }
.pkg-chip { font-size: 11px; color: var(--orange); letter-spacing: 0.5px; background: rgba(224,90,30,0.1); border: 1px solid rgba(224,90,30,0.25); padding: 4px 12px; border-radius: 20px; text-transform: uppercase; font-weight: 600; }
.pkg-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.07); margin-top: auto; }
.pkg-card-capacity { font-family: "Syne", sans-serif; font-size: 17px; font-weight: 800; color: #fff; display: flex; flex-direction: column; gap: 3px; }
.pkg-card-capacity span { font-size: 11px; color: rgba(255,255,255,0.32); font-family: "DM Sans", sans-serif; font-weight: 400; letter-spacing: 0.5px; text-transform: uppercase; }
.pkg-card-arrow { font-size: 20px; color: var(--orange); transition: transform 0.3s var(--ease-spring); }
.pkg-card:hover .pkg-card-arrow { transform: translateX(6px); }

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

/* ═══════════════════════════════
   TABLET 769px–1024px
═══════════════════════════════ */
@media (min-width: 769px) and (max-width: 1024px) {
  .pkg-hero { padding: 0 40px 72px; }
  .pkg-hero h1 { font-size: 56px; }
  .pkg-hero-divider { left: 40px; right: 40px; }
  .pkg-layout { padding: 0 40px 100px; gap: 64px; }
  .pkg-info-grid { grid-template-columns: repeat(3, 1fr); }
  .packages-hero { padding: 120px 40px 72px; }
  .packages-hero h1 { font-size: 56px; }
  .packages-section { padding: 64px 40px; }
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .pkg-capacity-header,
  .pkg-capacity-row { grid-template-columns: 2fr 1fr 1.2fr 1fr; }
}

/* ═══════════════════════════════
   MOBILE max 768px
═══════════════════════════════ */
@media (max-width: 768px) {
  .pkg-hero { padding: 100px 24px 56px; min-height: auto; }
  .pkg-hero-divider { left: 24px; right: 24px; top: 80px; }
  .pkg-hero h1 { font-size: clamp(36px, 10vw, 52px); letter-spacing: -1.5px; line-height: 1; }
  .pkg-eyebrow { font-size: 11px; }
  .pkg-hero-meta { font-size: 13px; gap: 10px; }
  .pkg-badge { font-size: 11px; }

  .pkg-layout { padding: 0 20px 100px; gap: 52px; }
  .pkg-section-title { font-size: 10px; }
  .pkg-desc { font-size: 15px; line-height: 1.8; }

  .pkg-machines-header { grid-template-columns: 1fr 60px; padding: 12px 18px; }
  .pkg-machine-row { grid-template-columns: 1fr 60px; padding: 15px 18px; }
  .pkg-machine-name { font-size: 15px; }
  .pkg-machine-qty { font-size: 15px; }

  .pkg-capacity-header { grid-template-columns: 1.5fr 1fr; padding: 12px 18px; }
  .pkg-capacity-header span:nth-child(3),
  .pkg-capacity-header span:nth-child(4) { display: none; }
  .pkg-capacity-row { grid-template-columns: 1.5fr 1fr; padding: 14px 18px; }
  .pkg-capacity-row span:nth-child(3),
  .pkg-capacity-row span:nth-child(4) { display: none; }
  .pkg-capacity-row span { font-size: 14px; }
  .pkg-capacity-row span:first-child { font-size: 15px; }
  .pkg-capacity-note { font-size: 12px; padding: 14px 18px; }

  .pkg-info-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .pkg-info-value { font-size: 28px; }
  .pkg-info-label { font-size: 10px; }

  .pkg-material { font-size: 13px; }
  .pkg-manpower-card { padding: 18px 20px; }
  .pkg-manpower-value { font-size: 26px; }

  .pkg-cta-row { flex-direction: column; }
  .pkg-cta-primary, .pkg-cta-secondary { width: 100%; justify-content: center; font-size: 15px; padding: 16px 24px; }

  .packages-hero { padding: 100px 24px 56px; min-height: auto; }
  .packages-hero h1 { font-size: clamp(36px, 10vw, 52px); letter-spacing: -1.5px; }
  .packages-hero-sub { font-size: 15px; }
  .packages-hero-stats { gap: 24px; flex-wrap: wrap; }
  .packages-hero-stat .num { font-size: 32px; }
  .packages-section { padding: 52px 20px; }
  .packages-grid { grid-template-columns: 1fr; }
  .pkg-card { padding: 26px 22px; }
  .pkg-card-name { font-size: 18px; }
  .pkg-card-desc { font-size: 14px; }
}

/* ═══════════════════════════════
   SMALL MOBILE max 480px
═══════════════════════════════ */
@media (max-width: 480px) {
  .pkg-hero h1 { font-size: clamp(30px, 9vw, 44px); }
  .pkg-info-grid { grid-template-columns: 1fr 1fr; }
  .pkg-manpower { flex-direction: column; }
}


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

/* ── MOBILE: hide duplicate Talk to Expert in pkg-cta-row ── */
@media (max-width: 768px) {
  .pkg-cta-row {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }
  /* Hide the middle "Talk to Expert" button — footer CTA covers this */
  .pkg-cta-row .pkg-cta-primary:not(:last-child) {
    display: none;
  }
  /* Prev / Next take equal width */
  .pkg-cta-row .pkg-cta-secondary,
  .pkg-cta-row .pkg-cta-primary:last-child {
    flex: 1 1 calc(50% - 5px);
    justify-content: center;
    text-align: center;
    font-size: 13px;
    padding: 12px 16px;
    margin-left: 0;
  }
}

/* ── Hide duplicate Talk to Expert in pkg-cta-row (all screen sizes) ── */
.pkg-cta-row .pkg-cta-primary:not(:last-child) {
  display: none;
}
.pkg-cta-row {
  justify-content: space-between;
}
.pkg-cta-row .pkg-cta-secondary,
.pkg-cta-row .pkg-cta-primary:last-child {
  margin-left: 0;
}
@media (max-width: 768px) {
  .pkg-cta-row .pkg-cta-secondary,
  .pkg-cta-row .pkg-cta-primary:last-child {
    flex: 1 1 calc(50% - 5px);
    justify-content: center;
    font-size: 13px;
    padding: 12px 16px;
  }
}

/* ── "← All Packages" — make it look like a proper button ── */
.pkg-hero-meta a[href*="packages"] {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 7px 16px;
  border-radius: 8px;
  transition: background 0.25s, border-color 0.25s, transform 0.3s cubic-bezier(0.16,1,0.3,1);
}
.pkg-hero-meta a[href*="packages"]:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateX(-3px);
}
@media (max-width: 768px) {
  .pkg-hero-meta a[href*="packages"] {
    font-size: 11px;
    padding: 6px 14px;
  }
}
