/* ================= RESET & ROOT ================= */
*,
*::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);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
  scroll-behavior: smooth;
}

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

/* ================= SHARED SECTION PATTERNS ================= */
/* Matches the section divider line pattern from main site */
.section-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.08),
    transparent
  );
  margin: 0 80px;
}

/* Eyebrow label — matches .ind-eyebrow / .bake-eyebrow pattern */
.eyebrow-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 500;
  margin-bottom: 20px;
}
.eyebrow-tag::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--orange);
  opacity: 0.7;
}

/* Section heading — matches .bake-title / .ind-title pattern */
.section-title {
  font-family: "Syne", sans-serif;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -1px;
  color: #fff;
  margin-bottom: 18px;
}
.section-title span {
  color: var(--orange);
}

.section-body {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.85;
  max-width: 560px;
}

/* ================= HERO BANNER ================= */
.about-hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 120px 80px 80px; /* ← changed 64px → 120px */
  overflow: hidden;
  background: #060606;
}

/* Ghost year BG — same idea as .hero::before vignette */
.about-hero-bg-num {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Syne", sans-serif;
  font-size: 28vw;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.03);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  letter-spacing: -4px;
}

/* Ambient orb — same concept as .ambient in main */
.about-hero-orb {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(224, 90, 30, 0.12) 0%,
    transparent 70%
  );
  top: 10%;
  right: -100px;
  pointer-events: none;
  z-index: 0;
  animation: orbFloat 8s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes orbFloat {
  from {
    transform: scale(1) translateY(0);
  }
  to {
    transform: scale(1.1) translateY(-40px);
  }
}

/* Noise texture overlay */
.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

/* Eyebrow row inside hero */
.about-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}
.about-hero-eyebrow span {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 500;
}
.about-hero-eyebrow-line {
  width: 48px;
  height: 1px;
  background: var(--orange);
  opacity: 0.6;
}
.about-hero-eyebrow-year {
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.25);
}

/* Hero title — matches #heroName style from main */
.about-hero-title {
  font-family: "Syne", sans-serif;
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -3px;
  margin-bottom: 36px;
}
.about-hero-title .line {
  display: block;
  overflow: hidden;
}
.about-hero-title .line-inner {
  display: block;
  background: linear-gradient(155deg, #fff 40%, rgba(255, 255, 255, 0.4));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-hero-title .accent {
  color: var(--orange);
  -webkit-text-fill-color: var(--orange);
}

.about-hero-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.85;
  max-width: 580px;
  margin-bottom: 52px;
}

/* Stats bar — matches .about-stats from main site exactly */
.about-hero-stats {
  display: flex;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  overflow: hidden;
  width: fit-content;
}
.about-hero-stat {
  padding: 20px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  transition:
    background 0.35s,
    transform 0.35s var(--ease-spring);
  cursor: default;
  position: relative;
}
.about-hero-stat::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(224, 90, 30, 0.5),
    transparent
  );
  transform: scaleX(0);
  transition: transform 0.4s var(--ease-spring);
}
.about-hero-stat:last-child {
  border-right: none;
}
.about-hero-stat:hover {
  background: rgba(224, 90, 30, 0.06);
  transform: translateY(-2px);
}
.about-hero-stat:hover::after {
  transform: scaleX(1);
}

.about-hero-stat-num {
  font-family: "Syne", sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  display: flex;
  align-items: flex-start;
  transition: transform 0.35s var(--ease-spring);
}
.about-hero-stat:hover .about-hero-stat-num {
  transform: scale(1.06);
}
.about-hero-stat-num sup {
  font-size: 14px;
  color: var(--orange);
  margin-top: 2px;
  margin-left: 1px;
}
.about-hero-stat-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.5px;
  text-align: center;
  text-transform: uppercase;
}

/* Scroll indicator — matches .scroll-hint from main */
.hero-scroll {
  position: absolute;
  bottom: 28px;
  right: 80px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  opacity: 0.3;
  pointer-events: none;
}
.hero-scroll span {
  font-size: 10px;
  letter-spacing: 2.5px;
  writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px;
  height: 22px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.7) translateY(-4px);
  }
  50% {
    opacity: 0.9;
    transform: scaleY(1) translateY(4px);
  }
}

/* ================= S1: OUR STORY ================= */
/* Background & padding matches .bake-section */
.story-section {
  background: #060606;
  padding: 72px 80px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.story-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 80px;
  right: 80px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.08),
    transparent
  );
}

/* Image grid */
.story-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 12px;
}

/* .story-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
} */
/* Matches .bake-card card style */
.story-img-cell {
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition:
    border-color 0.35s,
    background 0.35s;
}
.story-img-cell:hover {
  border-color: rgba(224, 90, 30, 0.3);
  background: rgba(255, 255, 255, 0.04);
}
.story-img-cell.tall {
  grid-row: span 2;
}
.story-img-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.story-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.15);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.story-img-placeholder svg {
  opacity: 0.3;
}

/* Small label tag — matches .story-tag style */
.story-tag {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 1px;
}

/* Right copy */
.story-body-text {
  margin-top: 24px;
}
.story-body-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.9;
  margin-bottom: 18px;
}
.story-body-text p:last-child {
  margin-bottom: 0;
}
.story-body-text strong {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

/* Highlighted callout — matches .ind-cta border style */
.story-highlight {
  margin-top: 32px;
  padding: 20px 24px;
  background: rgba(224, 90, 30, 0.05);
  border: 1px solid rgba(224, 90, 30, 0.2);
  border-radius: 12px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  position: relative;
  overflow: hidden;
}
.story-highlight::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--orange);
  border-radius: 2px;
}

/* ================= S2: WHY CS aerotherm ================= */
/* Background matches .about-section (#050505 → using #040404 for alternation) */
.why-section {
  background: #040404;
  padding: 72px 80px;
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 80px;
  right: 80px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.08),
    transparent
  );
}

.why-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 44px;
}
.why-header-right {
  padding-top: 16px;
}
.why-header-right p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.85;
}

.why-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

/* Cards — matches .ind-card exactly */
.why-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  position: relative;
  overflow: hidden;
  will-change: transform;
  transition:
    border-color 0.35s,
    background 0.35s,
    transform 0.4s var(--ease-spring),
    box-shadow 0.35s;
}
.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at var(--mx, 20%) var(--my, 20%),
    rgba(224, 90, 30, 0.08),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s;
}
.why-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);
}
.why-card:hover {
  border-color: rgba(224, 90, 30, 0.4);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-5px);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(224, 90, 30, 0.06);
}
.why-card:hover::before {
  opacity: 1;
}
.why-card:hover::after {
  opacity: 1;
  transform: scaleX(1);
}
.why-card:active {
  transform: translateY(-2px);
}

/* Icon — matches .ind-card-icon */
.why-card-icon {
  font-size: 24px;
  line-height: 1;
  width: 44px;
  height: 44px;
  background: rgba(224, 90, 30, 0.08);
  border: 1px solid rgba(224, 90, 30, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
  transition:
    transform 0.4s var(--ease-spring),
    background 0.3s;
}
.why-card:hover .why-card-icon {
  transform: scale(1.15) translateY(-2px);
  background: rgba(224, 90, 30, 0.14);
}

.why-card h3 {
  font-family: "Syne", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin: 0;
  transition: letter-spacing 0.3s var(--ease-spring);
}
.why-card:hover h3 {
  letter-spacing: 0.2px;
}

.why-card p {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}

/* ================= S3: QUALITY ================= */
.quality-section {
  background: #060606;
  padding: 72px 80px;
  position: relative;
  overflow: hidden;
}
.quality-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 80px;
  right: 80px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.08),
    transparent
  );
}

.quality-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 40px;
}
.quality-left-sticky {
  position: sticky;
  top: 80px;
}
.quality-tagline {
  font-family: "Syne", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-top: 24px;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.quality-tagline span {
  color: var(--orange);
}
.quality-intro {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.85;
  margin-bottom: 28px;
}

/* Penta badge — matches .ind-card-link orange label style */
.penta-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(224, 90, 30, 0.08);
  border: 1px solid rgba(224, 90, 30, 0.25);
  border-radius: 10px;
  padding: 12px 18px;
  font-size: 12px;
  font-weight: 500;
  color: var(--orange);
  letter-spacing: 1px;
}
.penta-badge::before {
  content: "⬟";
  font-size: 16px;
}

/* Accordion pillars — matches .ind-card card pattern */
.quality-pillar {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  transition:
    border-color 0.35s,
    background 0.35s;
}
.quality-pillar:hover {
  border-color: rgba(224, 90, 30, 0.25);
}
.quality-pillar.open {
  border-color: rgba(224, 90, 30, 0.3);
}

.quality-pillar-header {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  cursor: pointer;
  user-select: none;
}
.quality-pillar-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition:
    background 0.3s,
    border-color 0.3s;
}
.quality-pillar:hover .quality-pillar-icon,
.quality-pillar.open .quality-pillar-icon {
  background: rgba(224, 90, 30, 0.1);
  border-color: rgba(224, 90, 30, 0.2);
}
.quality-pillar-title {
  font-family: "Syne", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  flex: 1;
}
.quality-pillar-sub {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.25);
  margin-top: 2px;
}
.quality-pillar-toggle {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  transition:
    border-color 0.25s,
    color 0.25s,
    transform 0.35s var(--ease-spring);
}
.quality-pillar.open .quality-pillar-toggle {
  border-color: var(--orange);
  color: var(--orange);
  transform: rotate(45deg);
}

.quality-pillar-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-spring);
}
.quality-pillar.open .quality-pillar-body {
  max-height: 400px;
}

.quality-pillar-body-inner {
  padding: 20px 24px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.quality-pillar-body-inner li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.65;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  list-style: none;
}
.quality-pillar-body-inner li:last-child {
  border-bottom: none;
}
.quality-pillar-body-inner li::before {
  content: "→";
  color: var(--orange);
  opacity: 0.8;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ================= S4: INFRASTRUCTURE ================= */
.infra-section {
  background: #040404;
  padding: 72px 80px;
  position: relative;
  overflow: hidden;
}
.infra-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 80px;
  right: 80px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.08),
    transparent
  );
}

.infra-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 40px;
}

.infra-intro {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.85;
  margin-bottom: 36px;
}

/* Stat boxes — matches .about-stat pattern */
.infra-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}
.infra-stat-box {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 20px 22px;
  transition:
    border-color 0.3s,
    background 0.3s,
    transform 0.35s var(--ease-spring);
  position: relative;
}
.infra-stat-box::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(224, 90, 30, 0.5),
    transparent
  );
  transform: scaleX(0);
  transition: transform 0.4s var(--ease-spring);
}
.infra-stat-box:hover {
  border-color: rgba(224, 90, 30, 0.3);
  background: rgba(224, 90, 30, 0.04);
  transform: translateY(-2px);
}
.infra-stat-box:hover::after {
  transform: scaleX(1);
}

.infra-stat-box-num {
  font-family: "Syne", sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 5px;
  display: flex;
  align-items: flex-start;
  transition: transform 0.35s var(--ease-spring);
}
.infra-stat-box:hover .infra-stat-box-num {
  transform: scale(1.04);
}
.infra-stat-box-num span {
  font-size: 14px;
  color: var(--orange);
  margin-top: 2px;
  margin-left: 3px;
}
.infra-stat-box-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Shop floors — matches .ind-card card style */
.infra-floors {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.infra-floor {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  overflow: hidden;
  transition:
    border-color 0.35s,
    background 0.35s;
}
.infra-floor:hover {
  border-color: rgba(224, 90, 30, 0.3);
  background: rgba(255, 255, 255, 0.04);
}
.infra-floor-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
}
.infra-floor-num {
  width: 32px;
  height: 32px;
  background: rgba(224, 90, 30, 0.1);
  border: 1px solid rgba(224, 90, 30, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Syne", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  flex-shrink: 0;
  transition: background 0.3s;
}
.infra-floor:hover .infra-floor-num {
  background: rgba(224, 90, 30, 0.16);
}
.infra-floor-name {
  font-family: "Syne", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  flex: 1;
}
.infra-floor-detail {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.28);
  letter-spacing: 0.2px;
}
.infra-floor-body {
  padding: 0 22px 18px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.32);
  line-height: 1.65;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 14px;
}

/* Image placeholder — matches .about-img-placeholder from main */
.infra-img-wrap {
  position: relative;
}
.infra-img-main {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  transition:
    border-color 0.4s,
    background 0.4s;
}
.infra-img-main:hover {
  border-color: rgba(224, 90, 30, 0.2);
  background: rgba(255, 255, 255, 0.04);
}
.infra-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.infra-img-main .ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.15);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Glow under image — matches .about-img-glow from main */
.infra-img-glow {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 120px;
  background: radial-gradient(
    ellipse,
    rgba(224, 90, 30, 0.18),
    transparent 70%
  );
  pointer-events: none;
  opacity: 0.6; /* blur removed for perf */
  animation: aboutGlow 5s ease-in-out infinite alternate;
}
@keyframes aboutGlow {
  from {
    opacity: 0.6;
    transform: translateX(-50%) scaleX(0.9);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) scaleX(1.2);
  }
}

/* Badges — matches .ind-card-flow tag style */
.infra-badge-row {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.infra-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 7px 12px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.38);
  letter-spacing: 0.2px;
  transition:
    border-color 0.3s,
    color 0.3s;
}
.infra-badge:hover {
  border-color: rgba(224, 90, 30, 0.3);
  color: rgba(255, 255, 255, 0.6);
}
.infra-badge::before {
  content: "◆";
  font-size: 7px;
  color: var(--orange);
}

/* ================= S5: CERTIFICATIONS & Milstone css================= */
.cert-section {
  background: #060606;
  padding: 72px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cert-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 80px;
  right: 80px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.08),
    transparent
  );
}
.cert-header {
  margin-bottom: 44px;
}
.cert-header .section-title {
  text-align: center;
}
.cert-header .section-body {
  text-align: center;
  margin: 0 auto;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  justify-content: center;
  gap: 14px;
  max-width: 1200px;
  margin: 0 auto 60px;
}

/* ---- Base card ---- */
.cert-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 20px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  cursor: pointer;

  /* bg image set inline via style="" */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  will-change: transform;
  transition:
    transform 0.4s var(--ease-spring),
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

/* Dark overlay — always present, text readable at bottom */
.cert-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0.65) 50%,
    rgba(0, 0, 0, 0.92) 100%
  );
  z-index: 1;
  transition: background 0.5s ease;
}

/* Blue-black overlay on hover — covers entire card */
.cert-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(4, 14, 40, 0.94) 0%,
    rgba(0, 30, 70, 0.96) 50%,
    rgba(0, 10, 30, 0.97) 100%
  );
  z-index: 2;
  opacity: 0;
  transition: opacity 0.45s ease;
}

/* Hover state */
.cert-card:hover {
  transform: translateY(-8px);
  border-color: rgba(224, 90, 30, 0.5);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(224, 90, 30, 0.1),
    0 0 40px rgba(0, 60, 140, 0.2);
}
.cert-card:hover::after {
  opacity: 1;
}

/* Orange top shimmer line on hover */
.cert-card .cert-card-shimmer {
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(224, 90, 30, 0.7),
    transparent
  );
  z-index: 5;
  opacity: 0;
  transform: scaleX(0);
  transition:
    opacity 0.4s ease,
    transform 0.5s var(--ease-spring);
}
.cert-card:hover .cert-card-shimmer {
  opacity: 1;
  transform: scaleX(1);
}

/* "Hover to learn more" hint — visible by default, fades on hover */
.cert-card-hint {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(0, 0, 0, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 10px;
  color: #ffffff;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-weight: 500;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.cert-card-hint::before {
  content: "⊙";
  font-size: 11px;
  color: var(--orange);
  animation: hintPulse 2s ease-in-out infinite;
}
@keyframes hintPulse {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.4);
  }
}
.cert-card:hover .cert-card-hint {
  opacity: 0;
}

/* Content sits above both overlays */
.cert-card-name,
.cert-card-body,
.cert-card-badge {
  position: relative;
  z-index: 4;
  text-align: left;
}

/* Name — always visible */
.cert-card-name {
  font-family: "Syne", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 0;
  transition:
    letter-spacing 0.3s var(--ease-spring),
    margin-bottom 0.4s ease;
}
.cert-card:hover .cert-card-name {
  letter-spacing: 0.2px;
  margin-bottom: 10px;
}

/* Body — hidden by default, slides up on hover */
.cert-card-body {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(8px);
  margin-bottom: 0;
  transition:
    max-height 0.5s var(--ease-spring),
    opacity 0.4s ease 0.05s,
    transform 0.45s var(--ease-spring) 0.05s,
    margin-bottom 0.4s ease;
}
.cert-card:hover .cert-card-body {
  max-height: 120px;
  opacity: 1;
  transform: translateY(0);
  margin-bottom: 14px;
}

/* Badge — always visible at bottom */
.cert-card-badge {
  font-size: 10px;
  color: var(--orange);
  letter-spacing: 0.5px;
  background: rgba(224, 90, 30, 0.1);
  border: 1px solid rgba(224, 90, 30, 0.25);
  padding: 5px 12px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  transition:
    background 0.3s,
    letter-spacing 0.3s var(--ease-spring);
}
.cert-card-badge::before {
  content: "✦";
  font-size: 7px;
  opacity: 0.7;
}
.cert-card:hover .cert-card-badge {
  background: rgba(224, 90, 30, 0.18);
  letter-spacing: 1px;
}

/* ---- Timeline ---- */
.cert-timeline {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
.cert-timeline::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.08) 20%,
    rgba(255, 255, 255, 0.08) 80%,
    transparent
  );
}
.cert-milestone {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  position: relative;
  padding: 0 10px;
}
.cert-milestone-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 2;
  transition:
    background 0.3s,
    border-color 0.3s,
    transform 0.35s var(--ease-spring);
}
.cert-milestone:hover .cert-milestone-dot {
  background: var(--orange);
  border-color: var(--orange);
  transform: scale(1.4);
}
.cert-milestone-year {
  font-family: "Syne", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.2);
  transition: color 0.3s;
}
.cert-milestone:hover .cert-milestone-year {
  color: #fff;
}
.cert-milestone-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.28);
  text-align: center;
  line-height: 1.55;
  transition: color 0.3s;
}
.cert-milestone:hover .cert-milestone-label {
  color: rgba(255, 255, 255, 0.5);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .cert-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-hero,
  .story-section,
  .why-section,
  .quality-section,
  .infra-section,
  .cert-section,
  .fcta-section {
    padding: 100px 24px 56px;
  }

  .section-divider {
    margin: 0 24px;
  }

  /* Fix — hide scroll indicator, was overlapping stats */
  .hero-scroll {
    display: none;
  }

  /* Stats bar — vertical stack */
  .about-hero-stats {
    flex-direction: column;
    width: 100%;
    border-radius: 12px;
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
  }
  .about-hero-stat {
    flex-direction: row;
    justify-content: space-between;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: transparent;
    padding: 16px 20px;
  }
  .about-hero-stat:last-child {
    border-bottom: none;
  }
  .about-hero-stat-num {
    font-size: 22px;
  }

  /* Layout */
  .why-features,
  .cert-grid {
    grid-template-columns: 1fr;
  }
  .infra-stat-row {
    grid-template-columns: 1fr;
  }
  .cert-timeline {
    flex-direction: column;
    align-items: center;
  }
  .cert-timeline::before {
    display: none;
  }
  .cert-milestone {
    width: 100%;
  }
  .cert-card {
    background-size: contain;
    background-color: #0d0d0d;
    background-repeat: no-repeat;
    min-height: 280px;
  }
  .explore-section {
    padding: 56px 24px;
  }
  .explore-grid {
    grid-template-columns: 1fr 1fr;
  }
  .explore-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ================= SCROLL REVEAL ANIMATIONS ================= */
/* Same pattern as main site GSAP fromTo — CSS fallback version */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.75s var(--ease-out),
    transform 0.75s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.75s var(--ease-out),
    transform 0.75s var(--ease-out);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.75s var(--ease-out),
    transform 0.75s var(--ease-out);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.stagger-1 {
  transition-delay: 0.1s;
}
.stagger-2 {
  transition-delay: 0.2s;
}
.stagger-3 {
  transition-delay: 0.3s;
}
.stagger-4 {
  transition-delay: 0.4s;
}
.stagger-5 {
  transition-delay: 0.5s;
}
.stagger-6 {
  transition-delay: 0.6s;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .story-section {
    grid-template-columns: 1fr;
  }
  .infra-layout {
    grid-template-columns: 1fr;
  }
  .why-features {
    grid-template-columns: repeat(2, 1fr);
  }
  .cert-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .quality-grid {
    grid-template-columns: 1fr;
  }
  .quality-left-sticky {
    position: static;
  }
  .why-header {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .about-hero,
  .story-section,
  .why-section,
  .quality-section,
  .infra-section,
  .cert-section,
  .fcta-section {
    padding: 100px 24px 56px;
  }
  .section-divider {
    margin: 0 24px;
  }
  .about-hero-stats {
    flex-direction: column;
    width: 100%;
    border-radius: 12px;
  }
  .about-hero-stat {
    flex-direction: row;
    justify-content: space-between;
  }
  .why-features,
  .cert-grid {
    grid-template-columns: 1fr;
  }
  .infra-stat-row {
    grid-template-columns: 1fr;
  }
  .cert-timeline {
    flex-direction: column;
    align-items: center;
  }
  .cert-timeline::before {
    display: none;
  }
  .cert-milestone {
    width: 100%;
  }
  .explore-section {
    padding: 56px 24px;
  }
  .explore-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= EXPLORE MORE SECTION ================= */
.explore-section {
  background: #030303;
  padding: 80px 80px;
  position: relative;
  overflow: hidden;
}
.explore-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 80px;
  right: 80px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.08),
    transparent
  );
}

.explore-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 44px;
  gap: 40px;
  flex-wrap: wrap;
}
.explore-header-left {
}
.explore-header-sub {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.7;
  max-width: 340px;
  margin-top: 4px;
}

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

/* Each explore card */
.explore-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 28px 22px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  will-change: transform;
  transition:
    border-color 0.35s,
    background 0.35s,
    transform 0.4s var(--ease-spring),
    box-shadow 0.35s;
}
/* top orange shimmer on hover */
.explore-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(224, 90, 30, 0.1),
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.45s;
  pointer-events: none;
}
.explore-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 var(--ease-spring);
}
.explore-card:hover {
  border-color: rgba(224, 90, 30, 0.4);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-6px);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(224, 90, 30, 0.06);
}
.explore-card:hover::before {
  opacity: 1;
}
.explore-card:hover::after {
  opacity: 1;
  transform: scaleX(1);
}
.explore-card:active {
  transform: translateY(-2px);
}

.explore-card-icon {
  width: 42px;
  height: 42px;
  background: rgba(224, 90, 30, 0.08);
  border: 1px solid rgba(224, 90, 30, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition:
    transform 0.4s var(--ease-spring),
    background 0.3s;
}
.explore-card:hover .explore-card-icon {
  transform: scale(1.12) translateY(-2px);
  background: rgba(224, 90, 30, 0.15);
}

.explore-card-body {
  flex: 1;
}

.explore-card-title {
  font-family: "Syne", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 7px;
  line-height: 1.25;
  transition: letter-spacing 0.3s var(--ease-spring);
}
.explore-card:hover .explore-card-title {
  letter-spacing: 0.2px;
}

.explore-card-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.32);
  line-height: 1.6;
}

.explore-card-cta {
  font-size: 11px;
  color: var(--orange);
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 5px;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.3s,
    transform 0.35s var(--ease-spring);
}
.explore-card:hover .explore-card-cta {
  opacity: 1;
  transform: translateY(0);
}
.explore-card-cta-arr {
  transition: transform 0.3s var(--ease-spring);
}
.explore-card:hover .explore-card-cta-arr {
  transform: translateX(4px);
}

/* Featured card (history) — wider */
.explore-card.featured {
  grid-column: span 2;
  background: rgba(224, 90, 30, 0.04);
  border-color: rgba(224, 90, 30, 0.15);
}
.explore-card.featured:hover {
  border-color: rgba(224, 90, 30, 0.5);
  background: rgba(224, 90, 30, 0.08);
}
.explore-card.featured .explore-card-title {
  font-size: 16px;
}
.explore-card.featured .explore-card-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.38);
}

@media (max-width: 1024px) {
  .explore-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .explore-card.featured {
    grid-column: span 1;
  }
}
@media (max-width: 768px) {
  .explore-section {
    padding: 56px 24px;
  }
  .explore-section::before {
    left: 24px;
    right: 24px;
  }
  .explore-grid {
    grid-template-columns: 1fr 1fr;
  }
  .explore-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ── 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,
  .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;
  }
}

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

/* CERTIFICATE LIGHTBOX */
.cert-lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.cert-lightbox.active {
  display: flex;
}

.cert-lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cert-lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.cert-lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
}

.cert-lightbox-fullsize {
  color: #fff;
  background: #e05a1e;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.cert-card {
  cursor: pointer;
}

