  
  *,
  *::before,
  *::after {
    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 ===== */
  .pl-hero {
    min-height: 100vh;
    background: #000;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 140px 80px 100px;
    /* ← added 140px top */
    position: relative;
    overflow: hidden;
  }

  .pl-hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(
        ellipse 60% 50% at 70% 40%,
        rgba(224, 90, 30, 0.06) 0%,
        transparent 70%
      ),
      radial-gradient(
        ellipse 40% 60% at 20% 60%,
        rgba(224, 90, 30, 0.03) 0%,
        transparent 60%
      );
    pointer-events: none;
  }

  .pl-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
    mask-image: radial-gradient(
      ellipse 80% 80% at 50% 50%,
      black 20%,
      transparent 80%
    );
  }

  .pl-hero-eyebrow {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange);
    font-weight: 500;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp 0.7s var(--ease-spring) 0.2s forwards;
  }

  .pl-hero-title {
    font-family: "Syne", sans-serif;
    font-size: clamp(52px, 7vw, 96px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -2px;
    background: linear-gradient(160deg, #fff 40%, rgba(255, 255, 255, 0.4));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    max-width: 700px;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-spring) 0.35s forwards;
  }

  .pl-hero-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.38);
    line-height: 1.7;
    max-width: 460px;
    margin-top: 20px;
    opacity: 0;
    animation: fadeUp 0.7s var(--ease-spring) 0.5s forwards;
  }

  .pl-hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 52px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    opacity: 0;
    animation: fadeUp 0.7s var(--ease-spring) 0.65s forwards;
  }

  .pl-stat-num {
    font-family: "Syne", sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: flex-start;
  }

  .pl-stat-plus {
    font-size: 16px;
    color: var(--orange);
    margin-top: 3px;
  }

  .pl-stat-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 4px;
  }

  .pl-scroll-hint {
    position: absolute;
    bottom: 40px;
    right: 80px;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.3;
    font-size: 10px;
    letter-spacing: 2.5px;
    animation: fadeUp 0.6s var(--ease-spring) 1s forwards;
  }

  .pl-scroll-line {
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #fff);
    animation: scrollLine 2s ease-in-out infinite;
  }

  @keyframes scrollLine {
    0%,
    100% {
      transform: scaleX(0.5);
      opacity: 0.3;
    }

    50% {
      transform: scaleX(1);
      opacity: 0.8;
    }
  }

  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(24px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Control system badge */
  .pl-control-badge {
    position: absolute;
    top: 120px;
    right: 80px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.02);
    font-size: 11px;
    opacity: 0;
    animation: fadeUp 0.7s var(--ease-spring) 0.8s forwards;
  }

  .pl-control-badge-label {
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 9.5px;
    margin-bottom: 8px;
  }

  .pl-control-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 5px;
  }

  .pl-control-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--orange);
    flex-shrink: 0;
  }

  /* ===== LINE CARDS ===== */
  .pl-lines {
    background: #060606;
    padding: 100px 80px;
    position: relative;
  }

  .pl-lines::before {
    content: "";
    position: absolute;
    top: 0;
    left: 80px;
    right: 80px;
    height: 1px;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.08),
      transparent
    );
  }

  .pl-lines-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 60px;
  }

  .pl-lines-eyebrow {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 12px;
  }

  .pl-lines-title {
    font-family: "Syne", sans-serif;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.8px;
  }

  .pl-lines-count {
    font-family: "Syne", sans-serif;
    font-size: 80px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.04);
    line-height: 1;
  }

  .pl-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .pl-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    padding: 32px 28px;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition:
      border-color 0.35s,
      background 0.35s,
      transform 0.4s var(--ease-spring),
      box-shadow 0.35s;
    position: relative;
    overflow: hidden;
  }

  .pl-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
      circle at var(--mx, 20%) var(--my, 20%),
      rgba(224, 90, 30, 0.07),
      transparent 60%
    );
    opacity: 0;
    transition: opacity 0.4s;
  }

  .pl-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(224, 90, 30, 0.5),
      transparent
    );
    opacity: 0;
    transform: scaleX(0);
    transition:
      opacity 0.4s,
      transform 0.5s var(--ease-spring);
  }

  .pl-card:hover {
    border-color: rgba(224, 90, 30, 0.35);
    background: rgba(255, 255, 255, 0.035);
    transform: translateY(-6px);
    box-shadow:
      0 24px 64px rgba(0, 0, 0, 0.6),
      0 0 0 1px rgba(224, 90, 30, 0.05);
  }

  .pl-card:hover::before {
    opacity: 1;
  }

  .pl-card:hover::after {
    opacity: 1;
    transform: scaleX(1);
  }

  .pl-card-num {
    font-family: "Syne", sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: rgba(224, 90, 30, 0.5);
    letter-spacing: 2px;
    margin-bottom: 20px;
  }

  .pl-card-icon {
    font-size: 28px;
    margin-bottom: 14px;
    transition: transform 0.4s var(--ease-spring);
  }

  .pl-card:hover .pl-card-icon {
    transform: scale(1.15) translateY(-3px);
  }

  .pl-card-name {
    font-family: "Syne", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: -0.2px;
  }

  .pl-card-desc {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 24px;
  }

  .pl-card-capacity {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 6px;
    padding: 5px 10px;
    margin-bottom: 20px;
  }

  .pl-card-capacity-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--orange);
  }

  .pl-card-flow {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 20px;
  }

  .pl-card-flow span {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.2);
    transition: color 0.3s;
  }

  .pl-card-flow-arr {
    color: rgba(224, 90, 30, 0.25) !important;
  }

  .pl-card:hover .pl-card-flow span {
    color: rgba(255, 255, 255, 0.4);
  }

  .pl-card:hover .pl-card-flow-arr {
    color: var(--orange) !important;
  }

  .pl-card-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .pl-card-cta-text {
    font-size: 11.5px;
    color: var(--orange);
    letter-spacing: 0.5px;
    transition: letter-spacing 0.3s var(--ease-spring);
  }

  .pl-card:hover .pl-card-cta-text {
    letter-spacing: 2px;
  }

  .pl-card-arrow {
    width: 28px;
    height: 28px;
    border: 1px solid rgba(224, 90, 30, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--orange);
    transition:
      background 0.25s,
      border-color 0.25s,
      transform 0.35s var(--ease-spring);
  }

  .pl-card:hover .pl-card-arrow {
    background: rgba(224, 90, 30, 0.15);
    border-color: rgba(224, 90, 30, 0.5);
    transform: translateX(4px);
  }

  /* large card for first */
  .pl-card.pl-card-lg {
    grid-column: span 2;
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
  }

  .pl-card-lg .pl-card-left {
    flex: 1;
  }

  .pl-card-lg .pl-card-right {
    flex: 0 0 240px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 40px;
  }

  .pl-card-machine-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    transition:
      border-color 0.2s,
      background 0.2s;
  }

  .pl-card:hover .pl-card-machine-tag {
    border-color: rgba(224, 90, 30, 0.15);
    background: rgba(224, 90, 30, 0.04);
  }

  .pl-card-machine-tag-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--orange);
    opacity: 0.5;
  }

  /* ===== OVERVIEW SECTION ===== */
  .pl-overview {
    background: #040404;
    padding: 100px 80px;
    position: relative;
  }

  .pl-overview::before {
    content: "";
    position: absolute;
    top: 0;
    left: 80px;
    right: 80px;
    height: 1px;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.08),
      transparent
    );
  }

  .pl-overview-header {
    margin-bottom: 60px;
  }

  .pl-overview-eyebrow {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 12px;
  }

  .pl-overview-title {
    font-family: "Syne", sans-serif;
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -0.8px;
    max-width: 500px;
  }

  .pl-comparison {
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
  }

  .pl-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12.5px;
  }

  .pl-table th {
    font-family: "Syne", sans-serif;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    padding: 16px 20px;
    text-align: left;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .pl-table td {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.6);
    vertical-align: middle;
  }

  .pl-table tr:last-child td {
    border-bottom: none;
  }

  .pl-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
    color: rgba(255, 255, 255, 0.8);
  }

  .pl-table-name {
    font-family: "Syne", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
  }

  .pl-table-badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 10px;
    background: rgba(224, 90, 30, 0.12);
    color: var(--orange);
    border: 1px solid rgba(224, 90, 30, 0.2);
  }

  .pl-table-link {
    color: var(--orange);
    text-decoration: none;
    font-size: 11.5px;
    letter-spacing: 0.5px;
    transition: letter-spacing 0.25s var(--ease-spring);
  }

  .pl-table-link:hover {
    letter-spacing: 2px;
  }

/* ── 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;
  }
}

/* ============ PRODUCTION LINES — RESPONSIVE ============ */

/* TABLET (max 1024px) */
@media (max-width: 1024px) {
  .pl-hero { padding: 120px 40px 80px; }
  .pl-control-badge { right: 40px; }
  .pl-lines, .pl-overview { padding: 80px 40px; }
  .pl-lines::before, .pl-overview::before { left: 40px; right: 40px; }
  .pl-grid { grid-template-columns: repeat(2, 1fr); }
  .pl-card.pl-card-lg { grid-column: span 2; }
  .pl-fcta { padding: 60px 40px; }
  .site-footer { padding: 32px 40px; }
}

/* MOBILE (max 768px) */
@media (max-width: 768px) {
  .pl-hero {
    min-height: auto;
    padding: 110px 20px 60px;
  }
  .pl-control-badge {
    position: static;
    top: auto; right: auto;
    align-self: flex-start;
    margin-bottom: 24px;
  }
  .pl-hero-sub { max-width: 100%; }
  .pl-hero-stats {
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 36px;
    padding-top: 28px;
  }
  .pl-stat-num { font-size: 24px; }
  .pl-stat-label { font-size: 9px; }

  .pl-lines, .pl-overview { padding: 60px 20px; }
  .pl-lines::before, .pl-overview::before { left: 20px; right: 20px; }

  .pl-lines-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 36px;
  }
  .pl-lines-title { font-size: 28px; }
  .pl-lines-count { font-size: 48px; }

  .pl-grid { grid-template-columns: 1fr; gap: 14px; }
  .pl-card { padding: 24px 20px; }

  .pl-card.pl-card-lg {
    grid-column: span 1;
    flex-direction: column;
    gap: 24px;
  }
  .pl-card-lg .pl-card-right {
    flex: none;
    padding-top: 0;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .pl-card-machine-tag { flex: 1 1 calc(50% - 4px); }

  .pl-overview-title { font-size: 26px; }

  .pl-table { font-size: 11.5px; }
  .pl-table th, .pl-table td { padding: 12px 14px; white-space: nowrap; }

  .pl-fcta { padding: 60px 24px; }
  .pl-fcta-title { font-size: 26px; }
  .pl-fcta-sub { font-size: 13px; }

  .site-footer { padding: 28px 20px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* SMALL PHONE (max 480px) */
@media (max-width: 480px) {
  .pl-control-badge { padding: 12px 16px; font-size: 10px; }
  .pl-hero-stats { gap: 16px; }
}

/* ============ PRODUCTION LINES — RESPONSIVE ============ */

/* ── Performance: respect reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
    transition-duration: 0.01ms;
  }
}

/* TABLET (max 1024px) */
@media (max-width: 1024px) {
  .pl-hero { padding: 120px 40px 80px; }
  .pl-control-badge { right: 40px; }
  .pl-lines, .pl-overview { padding: 80px 40px; }
  .pl-lines::before, .pl-overview::before { left: 40px; right: 40px; }
  .pl-grid { grid-template-columns: repeat(2, 1fr); }
  .pl-card.pl-card-lg { grid-column: span 2; }
  .pl-fcta { padding: 60px 40px; }
  .site-footer { padding: 32px 40px; }
}

/* MOBILE (max 768px) */
@media (max-width: 768px) {
  .pl-hero {
    min-height: auto;
    padding: 110px 20px 60px;
  }
  .pl-control-badge {
    position: static;
    top: auto;
    right: auto;
    align-self: flex-start;
    margin-bottom: 24px;
  }
  .pl-hero-sub { max-width: 100%; }
  .pl-hero-stats {
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 36px;
    padding-top: 28px;
  }
  .pl-stat-num { font-size: 24px; }
  .pl-stat-label { font-size: 9px; }

  .pl-lines, .pl-overview { padding: 60px 20px; }
  .pl-lines::before, .pl-overview::before { left: 20px; right: 20px; }

  .pl-lines-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 36px;
  }
  .pl-lines-title { font-size: 28px; }
  .pl-lines-count { font-size: 48px; }

  .pl-grid { grid-template-columns: 1fr; gap: 14px; }
  .pl-card { padding: 24px 20px; }

  .pl-card.pl-card-lg {
    grid-column: span 1;
    flex-direction: column;
    gap: 24px;
  }
  .pl-card-lg .pl-card-right {
    flex: none;
    padding-top: 0;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .pl-card-machine-tag { flex: 1 1 calc(50% - 4px); }

  .pl-overview-title { font-size: 26px; }

  /* ── Comparison table → card layout on mobile ── */
  .pl-comparison {
    border: none;
    border-radius: 0;
    overflow-x: visible;
  }

  .pl-table thead {
    display: none;
  }

  .pl-table,
  .pl-table tbody,
  .pl-table tr,
  .pl-table td {
    display: block;
    width: 100%;
  }

  .pl-table tr {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 12px;
  }

  .pl-table tr:hover td {
    background: none;
    color: rgba(255, 255, 255, 0.6);
  }

  .pl-table tr:last-child td {
    border-bottom: none;
  }

  .pl-table td {
    padding: 4px 0;
    border-bottom: none;
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
    white-space: normal;
  }

  /* Label each cell using data-label attribute */
  .pl-table td::before {
    content: attr(data-label);
    display: block;
    font-size: 9.5px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.25);
    margin-bottom: 2px;
    margin-top: 10px;
  }

  /* First td is the line name — no label above it, style as card header */
  .pl-table td:first-child {
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 4px;
  }

  .pl-table td:first-child::before {
    display: none;
  }

  .pl-fcta { padding: 60px 24px; }
  .pl-fcta-title { font-size: 26px; }
  .pl-fcta-sub { font-size: 13px; }

  .site-footer { padding: 28px 20px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* SMALL PHONE (max 480px) */
@media (max-width: 480px) {
  .pl-control-badge { padding: 12px 16px; font-size: 10px; }
  .pl-hero-stats { gap: 16px; }
}


/* ================================================================
   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;
  }
}


/* ── GHOST / WATERMARK NUMBERS — visible on mobile ── */
@media (max-width: 768px) {
  .pl-lines-count {
    color: rgba(255, 255, 255, 0.12);
    font-size: 48px;
  }
  .about-hero-bg-num {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.08);
    font-size: 20vw;
  }
  .history-intro-ghost {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.07);
    font-size: 18vw;
  }
  .tl-year-ghost {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.07);
  }
  .blog-hero-bg-text {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.07);
    font-size: 18vw;
  }
  .terms-hero-bg-text {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.07);
    font-size: 18vw;
  }
  .line-num-bg {
    display: none;
  }
  /* History timeline year numbers */
  .tl-year {
    -webkit-text-stroke: 1px rgba(224, 90, 30, 0.35);
    font-size: 44px;
  }
  /* Cert milestone years */
  .cert-milestone-year {
    color: #777777;
    font-size: 16px;
  }
  /* Stat ghost decorative numbers */
  .pl-lines-count {
    color: rgba(255, 255, 255, 0.14);
  }
  /* About hero year watermark */
  .history-meta-num {
    font-size: 22px;
    color: #ffffff;
  }
  .history-meta-label {
    color: #888888;
  }
}
