/* ============================================================
   INDUS HOLDINGS — Projects Page Styles (projects.css)
   Depends on: style.css, header.css, footer.css
   ============================================================ */

/* ── CINEMATIC HERO ── */
.project-hero {
   margin-top: 0px;
  min-height: 100vh;
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding: 120px 60px 200px;
}
.ph-bg           { position: absolute; inset: 0; }
.ph-bg-base      {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #040b14 0%, #080f1a 40%, #030a08 75%, #040c05 100%);
}
.ph-bg-glow      {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 0%   55%, rgba(21,101,168,.6)  0%, transparent 55%),
    radial-gradient(ellipse 50% 70% at 95%  45%, rgba(38,194,101,.45) 0%, transparent 55%),
    radial-gradient(ellipse 35% 45% at 50% 100%, rgba(21,101,168,.25) 0%, transparent 60%);
  animation: breathe 10s ease-in-out infinite alternate;
}
.ph-bg-grid      {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.ph-sweep        {
  position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.015) 50%, transparent 60%);
  animation: sweep 8s ease-in-out infinite;
}
.ph-img-overlay  {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right, rgba(4,11,20,.92) 45%, rgba(4,11,20,.5) 75%, rgba(4,11,20,.2) 100%);
}
.ph-bg-image     {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  filter: saturate(0.6) brightness(0.5);
}
.ph-orb { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; animation: orbFloat 14s ease-in-out infinite alternate; }
.ph-orb1 { width:600px;height:600px;background:rgba(21,101,168,.22);top:-150px;right:-150px; }
.ph-orb2 { width:450px;height:450px;background:rgba(38,194,101,.16);bottom:-100px;left:30%;animation-delay:-6s; }

.ph-content { position: relative; z-index: 2; max-width: 760px; }
.ph-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 18px; border-radius: 24px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,.7);
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 28px; animation: fadeUp .7s .1s both;
}
.ph-eyebrow-dot { width:7px;height:7px;border-radius:50%;background:var(--grad);animation:breathe 2s infinite alternate; }

.ph-content h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 86px); font-weight: 700;
  color: #fff; line-height: 1.0; letter-spacing: -2px;
  animation: fadeUp .7s .2s both;
}
.ph-content h1 em {
  font-style: normal; display: block;
  background: linear-gradient(135deg, #5AAEE0 0%, #6DD9A0 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.ph-sub {
  margin-top: 22px; font-size: 18px; font-weight: 300;
  color: rgba(255,255,255,.58); line-height: 1.8; max-width: 580px;
  animation: fadeUp .7s .3s both;
}
.ph-actions { margin-top: 40px; display: flex; gap: 16px; flex-wrap: wrap; animation: fadeUp .7s .4s both; }

/* Floating info panel */
.ph-panel {
  position: absolute; right: 60px; top: 50%; transform: translateY(-48%);
  z-index: 3; width: 320px; animation: fadeIn .9s .5s both;
}
.ph-panel-card {
  background: rgba(255,255,255,.07); backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.13); border-radius: 22px;
  padding: 28px; position: relative; overflow: hidden;
}
.ph-panel-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad);
}
.ph-panel-title { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 20px; }
.ph-panel-item {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.06);
  gap: 12px;
}
.ph-panel-item:last-child { border-bottom: none; padding-bottom: 0; }
.ph-panel-label { font-size: 12px; color: rgba(255,255,255,.4); flex-shrink: 0; }
.ph-panel-value {
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,.9);
  text-align: right; line-height: 1.4;
}
.ph-panel-value.grad {
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  font-size: 15px;
}
.ph-panel-value.active {
  color: #26C265; background: none;
  -webkit-text-fill-color: unset;
  display: flex; align-items: center; gap: 6px;
}
.ph-panel-value.active::before { content:''; width:7px;height:7px;border-radius:50%;background:#26C265;animation:breathe 1.5s infinite alternate;flex-shrink:0; }

/* Progress bar */
.ph-progress-wrap { margin-top: 20px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.06); }
.ph-progress-label { display: flex; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,.4); margin-bottom: 8px; }
.ph-progress-track { height: 6px; border-radius: 3px; background: rgba(255,255,255,.1); overflow: hidden; }
.ph-progress-bar   { height: 100%; border-radius: 3px; background: var(--grad); width: 75%; animation: growBar .8s .8s ease both; --bar-w: 75%; }

/* Bottom stats bar */
.ph-stats-bar {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  display: flex;
  background: rgba(4,11,20,.92); backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,.07);
}
.ph-stat {
  flex: 1; padding: 22px 32px;
  border-right: 1px solid rgba(255,255,255,.07);
  transition: background .3s; position: relative; overflow: hidden;
}
.ph-stat:hover { background: rgba(255,255,255,.04); }
.ph-stat::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--grad); transform: scaleX(0); transition: transform .3s; transform-origin: left;
}
.ph-stat:hover::before { transform: scaleX(1); }
.ph-stat:last-child { border-right: none; }
.ph-stat-num {
  font-family: var(--font-display); font-size: 30px; font-weight: 700; line-height: 1;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.ph-stat-label { font-size: 11px; color: rgba(255,255,255,.38); margin-top: 6px; line-height: 1.4; }

/* ── IMAGE GALLERY STRIP ── */
.img-strip { background: #0d1a28; padding: 0; overflow: hidden; }
.img-strip-inner { display: flex; height: 340px; }
.img-strip-main  { flex: 2; position: relative; overflow: hidden; }
.img-strip-side  { flex: 1; display: flex; flex-direction: column; }
.img-strip-side-top,
.img-strip-side-bot { flex: 1; position: relative; overflow: hidden; }
.img-frame { width: 100%; height: 100%; }
.img-frame img,
.img-frame svg { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; }
.img-frame:hover img,
.img-frame:hover svg { transform: scale(1.05); }
.img-label {
  position: absolute; bottom: 12px; left: 12px; z-index: 2;
  padding: 4px 12px; border-radius: 8px;
  background: rgba(4,11,20,.8); backdrop-filter: blur(8px);
  font-size: 11px; font-weight: 600; color: rgba(255,255,255,.75);
  letter-spacing: .5px;
}
.img-divider { width: 3px; background: var(--grad); flex-shrink: 0; }
.img-divider-h { height: 3px; background: var(--grad); }

/* ── PROJECT INTRO ── */
.project-intro { background: #fff; padding: 100px 60px; }
.project-intro-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center; }
.pi-left .sec-sub { max-width: 480px; }
.pi-body { margin-top: 24px; display: flex; flex-direction: column; gap: 16px; }
.pi-body p { font-size: 15px; color: var(--slate); line-height: 1.85; }
.pi-highlight {
  font-size: 17px; font-style: italic; font-weight: 300;
  color: var(--charcoal); padding-left: 20px; position: relative;
}
.pi-highlight::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--grad); border-radius: 3px;
}
.pi-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pi-info-card {
  border-radius: 16px; padding: 22px 20px;
  background: var(--cloud); border: 1px solid rgba(21,101,168,.08);
  transition: transform .3s, box-shadow .3s;
}
.pi-info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pi-info-icon { font-size: 28px; margin-bottom: 12px; display: block; }
.pi-info-label { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--silver); }
.pi-info-value { font-size: 15px; font-weight: 700; color: var(--charcoal); margin-top: 5px; line-height: 1.3; }

/* ── SINOMA PARTNERSHIP ── */
.sinoma { background: var(--charcoal); padding: 100px 60px; position: relative; overflow: hidden; }
.sinoma::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 70% at 0%   60%, rgba(21,101,168,.3) 0%, transparent 55%),
    radial-gradient(ellipse 40% 50% at 100% 40%, rgba(38,194,101,.2) 0%, transparent 55%);
}
.sinoma::after {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(-55deg, transparent, transparent 40px,
    rgba(255,255,255,.015) 40px, rgba(255,255,255,.015) 41px);
}
.sinoma-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.sinoma-grid  { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }

.sinoma-left .sec-title  { color: #fff; }
.sinoma-left .sec-sub    { color: rgba(255,255,255,.5); }
.sinoma-body { margin-top: 20px; display: flex; flex-direction: column; gap: 14px; }
.sinoma-body p { font-size: 15px; color: rgba(255,255,255,.6); line-height: 1.8; }

.sinoma-badge-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.sinoma-badge {
  padding: 8px 18px; border-radius: 10px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,.8);
  display: flex; align-items: center; gap: 8px;
}

.sinoma-right-card {
  border-radius: 24px; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1); padding: 40px;
  position: relative; overflow: hidden;
}
.sinoma-right-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad);
}
.sinoma-card-title {
  font-family: var(--font-display); font-size: 22px; font-weight: 700;
  color: #fff; margin-bottom: 28px;
  display: flex; align-items: center; gap: 12px;
}
.sinoma-stat-row { display: flex; flex-direction: column; gap: 16px; }
.sinoma-stat {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 18px; border-radius: 14px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.07);
  transition: background .25s;
}
.sinoma-stat:hover { background: rgba(255,255,255,.1); }
.sinoma-stat-icon {
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--grad); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.sinoma-stat-label { font-size: 12px; color: rgba(255,255,255,.4); }
.sinoma-stat-value { font-size: 14px; font-weight: 600; color: rgba(255,255,255,.9); margin-top: 3px; }

/* ── EPC FRAMEWORK ── */
.epc { background: var(--cloud); padding: 100px 60px; }
.epc-inner  { max-width: 1100px; margin: 0 auto; }
.epc-header { text-align: center; max-width: 580px; margin: 0 auto 56px; }
.epc-grid   { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.epc-card {
  border-radius: 22px; overflow: hidden;
  background: #fff; border: 1px solid rgba(21,101,168,.08);
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  transition: transform .35s, box-shadow .35s;
}
.epc-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.epc-card-top {
  padding: 36px 32px 28px; background: var(--grad); position: relative; overflow: hidden;
}
.epc-card.procurement .epc-card-top { background: linear-gradient(135deg,#1A9A4E 0%,#1565A8 100%); }
.epc-card.construction .epc-card-top { background: linear-gradient(135deg,#1565A8 0%,#C8962A 60%,#26C265 100%); }
.epc-card-top::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 24px, rgba(255,255,255,.04) 24px, rgba(255,255,255,.04) 25px);
}
.epc-card-top::after {
  content: ''; position: absolute; bottom:-40px;right:-40px;
  width:140px;height:140px;border-radius:50%;background:rgba(255,255,255,.08);
}
.epc-letter {
  font-family: var(--font-display); font-size: 64px; font-weight: 700;
  color: rgba(255,255,255,.2); line-height: 1; position: absolute;
  right: 24px; bottom: 16px; z-index: 0;
}
.epc-icon {
  width: 60px; height: 60px; border-radius: 18px;
  background: rgba(255,255,255,.2); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center; font-size: 26px;
  margin-bottom: 16px; position: relative; z-index: 1;
}
.epc-card-top h3 {
  font-family: var(--font-display); font-size: 24px; font-weight: 700;
  color: #fff; position: relative; z-index: 1;
}
.epc-card-top p { font-size: 13px; color: rgba(255,255,255,.7); margin-top: 6px; position: relative; z-index: 1; }
.epc-card-body  { padding: 28px 32px; }
.epc-step { display: flex; gap: 14px; margin-bottom: 18px; }
.epc-step:last-child { margin-bottom: 0; }
.epc-step-dot {
  width: 28px; height: 28px; border-radius: 8px; flex-shrink: 0;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: #fff; margin-top: 1px;
}
.epc-step h4  { font-size: 14px; font-weight: 700; color: var(--charcoal); }
.epc-step p   { font-size: 13px; color: var(--silver); margin-top: 4px; line-height: 1.55; }

/* ── GROUP SYNERGY ROLES ── */
.group-synergy { background: #fff; padding: 100px 60px; }
.gs-inner      { max-width: 1100px; margin: 0 auto; }
.gs-header     { text-align: center; max-width: 560px; margin: 0 auto 56px; }
.gs-grid       { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.gs-card {
  border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(21,101,168,.08);
  transition: transform .3s, box-shadow .3s;
  background: var(--cloud);
}
.gs-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.gs-card-top {
  height: 10px; background: var(--grad);
}
.gs-card-body { padding: 26px 24px 28px; }
.gs-company-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 16px;
  box-shadow: 0 6px 18px rgba(21,101,168,.28);
}
.gs-company-name { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--charcoal); line-height: 1.2; }
.gs-role-tag {
  display: inline-block; margin-top: 8px;
  padding: 4px 12px; border-radius: 8px;
  background: rgba(21,101,168,.08); border: 1px solid rgba(21,101,168,.15);
  font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  background-image: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.gs-desc { font-size: 13.5px; color: var(--silver); margin-top: 12px; line-height: 1.65; }

/* ── IMPACT SECTION ── */
.impact { background: var(--charcoal); padding: 100px 60px; position: relative; overflow: hidden; }
.impact::before {
  content: ''; position: absolute; inset: 0;
  background: var(--grad); opacity: .04;
  background-image: repeating-linear-gradient(-55deg, transparent, transparent 36px,
    rgba(255,255,255,.03) 36px, rgba(255,255,255,.03) 37px);
}
.impact-inner  { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.impact-header { text-align: center; max-width: 580px; margin: 0 auto 56px; }
.impact-header .sec-title { color: #fff; }
.impact-header p { color: rgba(255,255,255,.5); margin-top: 14px; font-size: 16px; line-height: 1.7; }
.impact-grid   { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-bottom: 52px; }
.impact-card {
  border-radius: 18px; padding: 28px 20px; text-align: center;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08);
  transition: background .3s, transform .3s;
}
.impact-card:hover { background: rgba(255,255,255,.1); transform: translateY(-6px); }
.impact-card-icon { font-size: 36px; display: block; margin-bottom: 14px; }
.impact-card-num  {
  font-family: var(--font-display); font-size: 36px; font-weight: 700; line-height: 1;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.impact-card-label { font-size: 13px; color: rgba(255,255,255,.45); margin-top: 8px; line-height: 1.4; }

/* Big quote banner */
.impact-quote {
  border-radius: 22px; padding: 48px 52px;
  background: var(--grad); position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center;
}
.impact-quote::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 28px, rgba(255,255,255,.04) 28px, rgba(255,255,255,.04) 29px);
}
.impact-quote::after {
  content: ''; position: absolute; top:-60px; right:-60px;
  width:240px; height:240px; border-radius:50%; background:rgba(255,255,255,.07);
}
.iq-mark { font-family: var(--font-display); font-size: 120px; color: rgba(255,255,255,.15); line-height: .8; margin-bottom: -20px; position: relative; z-index: 1; }
.iq-text { font-family: var(--font-display); font-size: clamp(18px,2.5vw,26px); font-weight: 400; font-style: italic; color: #fff; line-height: 1.5; position: relative; z-index: 1; }
.iq-attr { font-size: 14px; color: rgba(255,255,255,.6); margin-top: 16px; position: relative; z-index: 1; }
.iq-avatar {
  width: 80px; height: 80px; border-radius: 50%; flex-shrink: 0;
  overflow: hidden; border: 3px solid rgba(255,255,255,.25);
  position: relative; z-index: 1;
  background: rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 30px; font-weight: 700; color: #fff;
}
.iq-avatar img { width:100%; height:100%; object-fit:cover; object-position:center top; }

/* ── TIMELINE ── */
.ph-timeline { background: var(--cloud); padding: 100px 60px; }
.pht-inner   { max-width: 1000px; margin: 0 auto; }
.pht-header  { text-align: center; max-width: 560px; margin: 0 auto 64px; }

.pht-track { position: relative; }
.pht-track::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0;
  width: 3px; background: linear-gradient(to bottom, var(--blue), var(--green));
  transform: translateX(-50%); border-radius: 3px;
}
.pht-item {
  display: grid; grid-template-columns: 1fr 60px 1fr;
  margin-bottom: 52px; align-items: start;
}
.pht-item:last-child { margin-bottom: 0; }
.pht-item.right .pht-card { grid-column: 3; }
.pht-item.right .pht-dot  { grid-column: 2; }
.pht-item.right .pht-gap  { grid-column: 1; }
.pht-item.left  .pht-card { grid-column: 1; text-align: right; }
.pht-item.left  .pht-dot  { grid-column: 2; }
.pht-item.left  .pht-gap  { grid-column: 3; }

.pht-card {
  padding: 22px 26px; border-radius: 16px;
  background: #fff; border: 1px solid rgba(21,101,168,.08);
  box-shadow: 0 3px 16px rgba(0,0,0,.06);
  transition: box-shadow .3s, transform .3s;
}
.pht-card:hover { box-shadow: 0 12px 36px rgba(21,101,168,.13); transform: translateY(-3px); }
.pht-card.active-step {
  border-color: rgba(38,194,101,.3);
  box-shadow: 0 0 0 3px rgba(38,194,101,.12), 0 8px 28px rgba(38,194,101,.15);
}
.pht-dot {
  display: flex; align-items: flex-start; justify-content: center; padding-top: 22px;
}
.pht-dot-inner {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--grad); position: relative;
  box-shadow: 0 0 0 5px var(--cloud), 0 0 0 7px rgba(21,101,168,.2);
}
.pht-dot-inner.active {
  background: #26C265;
  box-shadow: 0 0 0 5px var(--cloud), 0 0 0 8px rgba(38,194,101,.4), 0 0 20px rgba(38,194,101,.4);
  animation: breathe 2s infinite alternate;
}
.pht-phase {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  display: block; margin-bottom: 6px;
}
.pht-card h4 { font-size: 16px; font-weight: 700; color: var(--charcoal); }
.pht-card p  { font-size: 13.5px; color: var(--silver); margin-top: 8px; line-height: 1.65; }
.active-badge {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 12px; padding: 5px 12px; border-radius: 8px;
  background: rgba(38,194,101,.1); border: 1px solid rgba(38,194,101,.25);
  font-size: 11px; font-weight: 700; color: #1A9A4E;
}
.active-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #26C265; animation: breathe 1.5s infinite alternate; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .ph-panel        { display: none; }
  .sinoma-grid     { grid-template-columns: 1fr; gap: 48px; }
  .project-intro-inner { grid-template-columns: 1fr; gap: 48px; }
  .impact-grid     { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 960px) {
  .project-hero    { padding: 100px 40px 180px; }
  .epc-grid        { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .gs-grid         { grid-template-columns: repeat(2, 1fr); }
  .ph-stats-bar    { flex-wrap: wrap; }
  .ph-stat         { min-width: 50%; border-bottom: 1px solid rgba(255,255,255,.07); }
  .ph-stat:nth-last-child(-n+2) { border-bottom: none; }
  .impact-quote    { grid-template-columns: 1fr; }
  .iq-avatar       { width: 56px; height: 56px; font-size: 22px; }
  .pht-track::before { left: 20px; transform: none; }
  .pht-item        { grid-template-columns: 44px 1fr !important; margin-bottom: 28px; }
  .pht-dot,
  .pht-item.right .pht-dot,
  .pht-item.left .pht-dot   { grid-column: 1 !important; grid-row: 1 !important; padding-top: 20px; }
  .pht-card,
  .pht-item.right .pht-card,
  .pht-item.left .pht-card  { grid-column: 2 !important; grid-row: 1 !important; text-align: left !important; }
  .pht-gap,
  .pht-item.right .pht-gap,
  .pht-item.left .pht-gap   { display: none !important; }
}
@media (max-width: 768px) {
  .project-hero    { padding: 80px 24px 160px; min-height: auto; }
  .img-strip-inner { flex-direction: column; height: auto; }
  .img-strip-main  { height: 200px; }
  .img-strip-side  { flex-direction: row; height: 120px; }
  .img-strip-side-top, .img-strip-side-bot { flex: 1; }
  .img-divider     { display: none; }
  .img-divider-h   { height: 3px; }
  .project-intro   { padding: 64px 24px; }
  .pi-info-grid    { grid-template-columns: 1fr; }
  .sinoma          { padding: 64px 24px; }
  .epc             { padding: 64px 24px; }
  .group-synergy   { padding: 64px 24px; }
  .gs-grid         { grid-template-columns: 1fr; }
  .impact          { padding: 64px 24px; }
  .impact-grid     { grid-template-columns: repeat(2, 1fr); }
  .impact-quote    { padding: 32px 28px; }
  .ph-timeline     { padding: 64px 24px; }
}
@media (max-width: 480px) {
  .impact-grid     { grid-template-columns: 1fr 1fr; }
  .ph-stat-num     { font-size: 24px; }
  .epc-card-top    { padding: 26px 24px 20px; }
}
