/* ============================================================
   PRABHAT POWERTECH — SHARED DESIGN SYSTEM
   ============================================================ */
:root {
  --gold: #f4b34a;
  --gold-bright: #ffc971;
  --gold-deep: #d99527;
  --ink: #0b1220;
  --ink-2: #101a2e;
  --ink-3: #16233d;
  --paper: #f7f9fc;
  --white: #ffffff;
  --text: #1c2637;
  --text-soft: #5a6a82;
  --text-inverse: #c8d3e4;
  --line: rgba(255, 255, 255, .12);
  --radius: 18px;
  --shadow-lg: 0 30px 60px -20px rgba(6, 12, 26, .45);
  --font-head: 'Oswald', sans-serif;
  --font-body: 'Manrope', sans-serif;
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
::selection { background: var(--gold); color: var(--ink); }

.container { width: min(1200px, 92%); margin-inline: auto; }

/* ============ SCROLL REVEAL ============ */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal-left { opacity: 0; transform: translateX(-46px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
.reveal-left.in { opacity: 1; transform: none; }
.reveal-right { opacity: 0; transform: translateX(46px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
.reveal-right.in { opacity: 1; transform: none; }
.reveal-scale { opacity: 0; transform: scale(.92); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
.reveal-scale.in { opacity: 1; transform: none; }
[data-stagger] > * { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
[data-stagger].in > * { opacity: 1; transform: none; }

/* ============ HEADER ============ */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: 18px 0;
  transition: padding .4s var(--ease-out), background .4s, box-shadow .4s;
}
.header::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: rgba(9, 15, 30, 0);
  backdrop-filter: blur(0px);
  transition: background .4s, backdrop-filter .4s;
}
.header.scrolled { padding: 10px 0; box-shadow: 0 10px 40px rgba(0,0,0,.35); }
.header.scrolled::before { background: rgba(9, 15, 30, .82); backdrop-filter: blur(16px); }
.header.solid { padding: 12px 0; }
.header.solid::before { background: rgba(9, 15, 30, .82); backdrop-filter: blur(16px); }

.header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo img { height: 58px; transition: height .4s var(--ease-out); filter: drop-shadow(0 4px 10px rgba(0,0,0,.4)); }
.header.scrolled .logo img, .header.solid .logo img { height: 46px; }

.nav ul { display: flex; align-items: center; gap: 2px; }
.nav a {
  position: relative; display: block; padding: 10px 12px;
  color: #eaf0fa; font-weight: 600; font-size: 14px; letter-spacing: .2px;
  transition: color .25s; white-space: nowrap;
}
.nav > ul > li > a::after {
  content: ''; position: absolute; left: 12px; right: 12px; bottom: 4px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease-out);
  border-radius: 2px;
}
.nav > ul > li > a:hover, .nav > ul > li > a.active { color: var(--gold); }
.nav > ul > li > a:hover::after, .nav > ul > li > a.active::after { transform: scaleX(1); }

.nav .dropdown { position: relative; }
.nav .dropdown > a i { font-size: 11px; margin-left: 4px; transition: transform .3s; display: inline-block; }
.nav .dropdown:hover > a i { transform: rotate(180deg); }
.nav .dropdown-menu {
  position: absolute; top: calc(100% + 14px); left: 50%;
  min-width: 250px; padding: 10px;
  background: rgba(13, 20, 38, .95); backdrop-filter: blur(20px);
  border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden;
  transform: translateX(-50%) translateY(14px) scale(.97);
  transition: all .35s var(--ease-out);
}
.nav .dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0) scale(1); }
.nav .dropdown-menu::before { content: ''; position: absolute; top: -14px; left: 0; right: 0; height: 14px; }
.nav .dropdown-menu a {
  padding: 10px 14px; border-radius: 9px; font-size: 13.5px; color: var(--text-inverse);
  display: flex; align-items: center; gap: 10px;
  transition: background .25s, color .25s, padding-left .25s;
  white-space: normal;
}
.nav .dropdown-menu a::before {
  content: '→'; color: var(--gold); opacity: 0; margin-left: -14px;
  transition: opacity .25s, margin-left .25s;
}
.nav .dropdown-menu a:hover { background: rgba(244, 179, 74, .1); color: var(--gold); padding-left: 18px; }
.nav .dropdown-menu a:hover::before { opacity: 1; margin-left: 0; }

.nav-toggle { display: none; background: none; border: 0; color: #fff; font-size: 28px; cursor: pointer; }

@media (max-width: 1140px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed; inset: 0; background: rgba(8, 13, 26, .97); backdrop-filter: blur(20px);
    display: grid; place-items: center;
    opacity: 0; visibility: hidden; transition: opacity .4s;
    overflow-y: auto;
  }
  .nav.open { opacity: 1; visibility: visible; }
  .nav ul { flex-direction: column; gap: 4px; text-align: center; padding: 60px 0; }
  .nav a { font-size: 19px; }
  .nav .dropdown-menu {
    position: static; transform: none; opacity: 1; visibility: visible;
    background: none; border: 0; box-shadow: none; display: none; min-width: 0;
  }
  .nav .dropdown.open .dropdown-menu { display: block; }
  .nav .dropdown-menu a { justify-content: center; }
  .nav-close { position: absolute; top: 22px; right: 26px; z-index: 2; }
}

/* ============ BUTTONS ============ */
.btn {
  position: relative; display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px; border-radius: 999px;
  font-family: var(--font-body); font-weight: 700; font-size: 14.5px; letter-spacing: .3px;
  cursor: pointer; border: 0; overflow: hidden; isolation: isolate;
  transition: transform .35s var(--ease-spring), box-shadow .35s;
}
.btn i { transition: transform .35s var(--ease-spring); }
.btn:hover i { transform: translateX(5px); }
.btn-gold { background: linear-gradient(120deg, var(--gold), var(--gold-deep)); color: var(--ink); box-shadow: 0 12px 28px -8px rgba(244, 179, 74, .55); }
.btn-gold::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(120deg, var(--gold-bright), var(--gold));
  opacity: 0; transition: opacity .35s;
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 18px 38px -8px rgba(244, 179, 74, .7); }
.btn-gold:hover::after { opacity: 1; }
.btn-ghost {
  background: rgba(255,255,255,.06); color: #fff;
  border: 1px solid rgba(255,255,255,.25); backdrop-filter: blur(8px);
}
.btn-ghost:hover { transform: translateY(-3px); background: rgba(255,255,255,.12); border-color: var(--gold); color: var(--gold); }

/* ============ HOME HERO ============ */
.hero { position: relative; min-height: 100svh; display: flex; flex-direction: column; justify-content: center; overflow: hidden; padding: 130px 0 110px; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transform: scale(1.06); }
.hero-shade {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(1000px 500px at 15% 20%, rgba(244, 179, 74, .14), transparent 60%),
    linear-gradient(180deg, rgba(7, 12, 25, .72) 0%, rgba(7, 12, 25, .55) 45%, var(--ink) 100%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 1; opacity: .5;
  background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 75%);
}
.hero .container { position: relative; z-index: 2; text-align: center; }

.hero-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 20px; border-radius: 999px;
  background: rgba(244, 179, 74, .1); border: 1px solid rgba(244, 179, 74, .35);
  color: var(--gold-bright); font-weight: 700; font-size: 12.5px; letter-spacing: 2.5px; text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.hero-kicker .bolt { animation: boltFlicker 3.2s infinite; }
@keyframes boltFlicker {
  0%, 100% { opacity: 1; } 88% { opacity: 1; } 90% { opacity: .3; } 92% { opacity: 1; } 95% { opacity: .5; } 97% { opacity: 1; }
}

.hero h1 {
  font-family: var(--font-head); font-weight: 600; text-transform: uppercase;
  font-size: clamp(38px, 6.4vw, 78px); line-height: 1.08; letter-spacing: 1px;
  color: #fff; margin: 26px 0 10px;
  text-shadow: 0 10px 40px rgba(0,0,0,.5);
}
.hero h1 .word { display: inline-block; overflow: hidden; vertical-align: bottom; }
.hero h1 .word > span { display: inline-block; transform: translateY(110%); animation: wordUp 1s var(--ease-out) forwards; animation-delay: calc(var(--i) * .12s + .2s); }
@keyframes wordUp { to { transform: translateY(0); } }
.gold-shimmer {
  background: linear-gradient(100deg, var(--gold-bright), var(--gold), #fff3d6, var(--gold));
  background-size: 250% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shimmer 5s linear infinite;
}
@keyframes shimmer { to { background-position: 250% center; } }

.hero-sub {
  color: var(--text-inverse); font-size: clamp(16px, 2.2vw, 21px); font-weight: 500;
  max-width: 720px; margin: 18px auto 0;
  opacity: 0; animation: fadeUp 1s var(--ease-out) .9s forwards;
}
.hero-sub .rotator {
  display: inline-block; position: relative; color: var(--gold); font-weight: 800; text-align: left;
  transition: width .45s var(--ease-out); vertical-align: bottom; white-space: nowrap;
}
.hero-sub .rotator span { position: absolute; left: 0; top: 0; white-space: nowrap; opacity: 0; transform: translateY(14px); transition: opacity .5s, transform .5s var(--ease-out); }
.hero-sub .rotator span.on { position: relative; opacity: 1; transform: none; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

.hero-ctas { display: flex; gap: 16px; justify-content: center; margin-top: 34px; flex-wrap: wrap; opacity: 0; animation: fadeUp 1s var(--ease-out) 1.15s forwards; }

.hero-stats {
  display: flex; justify-content: center; gap: clamp(26px, 6vw, 74px); flex-wrap: wrap;
  margin-top: 58px; opacity: 0; animation: fadeUp 1s var(--ease-out) 1.35s forwards;
}
.hero-stat { text-align: center; }
.hero-stat .num { font-family: var(--font-head); font-size: clamp(30px, 4vw, 46px); font-weight: 600; color: #fff; line-height: 1; }
.hero-stat .num em { font-style: normal; color: var(--gold); }
.hero-stat .label { color: var(--text-inverse); font-size: 12.5px; font-weight: 600; letter-spacing: 1.6px; text-transform: uppercase; margin-top: 8px; }

.scroll-hint {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2;
  color: rgba(255,255,255,.65); font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  opacity: 0; animation: fadeUp 1s 2s forwards;
}
.scroll-hint .line { width: 1px; height: 42px; background: linear-gradient(180deg, var(--gold), transparent); position: relative; overflow: hidden; }
.scroll-hint .line::after { content: ''; position: absolute; inset: 0; background: #fff; animation: scrollDrip 2s var(--ease-out) infinite; }
@keyframes scrollDrip { from { transform: translateY(-100%); } to { transform: translateY(100%); } }
@media (max-height: 760px) { .scroll-hint { display: none; } }

/* ============ PAGE HERO (inner pages) ============ */
.page-hero {
  position: relative; overflow: hidden;
  padding: 190px 0 90px;
  background: var(--ink);
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: var(--hero-img, none);
  background-size: cover; background-position: center;
  opacity: .28; transform: scale(1.05);
  animation: heroDrift 18s ease-in-out infinite alternate;
}
@keyframes heroDrift { to { transform: scale(1.12) translateY(-12px); } }
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(900px 400px at 12% 10%, rgba(244, 179, 74, .16), transparent 60%),
    linear-gradient(180deg, rgba(11, 18, 32, .35) 0%, var(--ink) 100%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .crumbs {
  display: inline-flex; align-items: center; gap: 10px; flex-wrap: wrap;
  color: var(--text-inverse); font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  opacity: 0; animation: fadeUp .8s var(--ease-out) .15s forwards;
}
.page-hero .crumbs a { color: var(--gold); transition: color .3s; }
.page-hero .crumbs a:hover { color: var(--gold-bright); }
.page-hero .crumbs i { font-size: 11px; opacity: .6; }
.page-hero h1 {
  font-family: var(--font-head); font-weight: 600; text-transform: uppercase;
  font-size: clamp(34px, 5vw, 62px); color: #fff; letter-spacing: 1px; line-height: 1.1;
  margin-top: 16px; overflow: hidden;
}
.page-hero h1 span { display: inline-block; transform: translateY(110%); animation: wordUp .9s var(--ease-out) .3s forwards; }
.page-hero .sub {
  color: var(--text-inverse); font-size: clamp(15px, 1.8vw, 18px); max-width: 640px; line-height: 1.75;
  margin-top: 18px; opacity: 0; animation: fadeUp .9s var(--ease-out) .55s forwards;
}
.page-hero .hero-bolt {
  position: absolute; right: 4%; bottom: -30px; z-index: 1;
  font-size: 240px; color: rgba(244, 179, 74, .07); transform: rotate(12deg);
}

/* ============ SECTIONS ============ */
.sec { padding: 96px 0; position: relative; }
.sec-dark { background: var(--ink); color: #eaf0fa; }
.sec-dark2 { background: var(--ink-2); color: #eaf0fa; }
.sec-light { background: var(--paper); }
.sec-head { max-width: 760px; margin-bottom: 54px; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head .kicker {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--gold-deep); font-weight: 800; font-size: 12.5px; letter-spacing: 3px; text-transform: uppercase;
}
.sec-dark .sec-head .kicker, .sec-dark2 .sec-head .kicker { color: var(--gold); }
.sec-head .kicker::before { content: ''; width: 34px; height: 2px; background: currentColor; border-radius: 2px; }
.sec-head.center .kicker::after { content: ''; width: 34px; height: 2px; background: currentColor; border-radius: 2px; }
.sec-head h2 {
  font-family: var(--font-head); font-weight: 600; text-transform: uppercase;
  font-size: clamp(28px, 4vw, 46px); line-height: 1.15; letter-spacing: .5px; margin-top: 14px;
  color: var(--ink);
}
.sec-dark .sec-head h2, .sec-dark2 .sec-head h2 { color: #fff; }
.sec-head p.lead { margin-top: 16px; color: var(--text-soft); font-size: 16.5px; line-height: 1.75; }
.sec-dark .sec-head p.lead, .sec-dark2 .sec-head p.lead { color: var(--text-inverse); }

/* ============ PROSE ============ */
.prose { max-width: 880px; margin-inline: auto; }
.prose p { color: var(--text-soft); line-height: 1.9; font-size: 16.5px; margin-bottom: 20px; }
.prose p b, .prose p strong { color: var(--ink); }
.sec-dark .prose p, .sec-dark2 .prose p { color: var(--text-inverse); }
.sec-dark .prose p b, .sec-dark2 .prose p b { color: #fff; }

/* ============ SECTORS CAROUSEL (home) ============ */
.sectors { padding-top: 20px; }
.sectors .swiper { padding: 20px 6px 60px; overflow: visible; }
.sector-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: var(--ink-3); border: 1px solid var(--line);
  transform: translateZ(0);
  transition: transform .5s var(--ease-out), box-shadow .5s, border-color .5s;
  display: block;
}
.sector-card:hover { transform: translateY(-10px); border-color: rgba(244, 179, 74, .55); box-shadow: 0 26px 50px -18px rgba(0,0,0,.65); }
.sector-card .thumb { height: 230px; overflow: hidden; position: relative; }
.sector-card .thumb::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(11, 18, 32, .92) 100%); }
.sector-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out), filter .8s; filter: saturate(.9); }
.sector-card:hover .thumb img { transform: scale(1.09); filter: saturate(1.1); }
.sector-card .body { padding: 20px 22px 24px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.sector-card .body h3 { font-family: var(--font-body); font-size: 16.5px; font-weight: 800; color: #fff; transition: color .3s; }
.sector-card:hover .body h3 { color: var(--gold); }
.sector-card .go {
  flex: 0 0 auto; width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.25); color: #fff; font-size: 16px;
  transition: all .4s var(--ease-spring);
}
.sector-card:hover .go { background: var(--gold); border-color: var(--gold); color: var(--ink); transform: rotate(-35deg) scale(1.08); }
.sector-card .num {
  position: absolute; top: 14px; left: 16px; z-index: 2;
  font-family: var(--font-head); font-size: 13px; letter-spacing: 2px; font-weight: 500;
  color: #fff; background: rgba(10, 16, 30, .55); backdrop-filter: blur(6px);
  padding: 5px 12px; border-radius: 999px; border: 1px solid rgba(255,255,255,.18);
}

.swiper-pagination-bullet { background: rgba(255,255,255,.4); opacity: 1; transition: all .3s; }
.swiper-pagination-bullet-active { background: var(--gold); width: 26px; border-radius: 6px; }
.sec-light .swiper-pagination-bullet { background: rgba(20, 35, 60, .35); }
.sec-light .swiper-pagination-bullet-active { background: var(--gold-deep); }
.sw-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 52px; height: 52px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25);
  background: rgba(13, 20, 38, .7); backdrop-filter: blur(10px); color: #fff;
  display: grid; place-items: center; font-size: 19px; cursor: pointer;
  transition: all .3s;
}
.sw-nav:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.sw-prev { left: -12px; } .sw-next { right: -12px; }
.sw-nav.swiper-button-disabled { opacity: .3; pointer-events: none; }

/* ============ WHY PRABHAT (home) ============ */
.why-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr; gap: 40px; } }
.why-copy p { color: var(--text-soft); line-height: 1.85; font-size: 16px; margin-bottom: 16px; }
.why-copy p b { color: var(--ink); }
.why-points { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 26px 0 32px; }
@media (max-width: 560px) { .why-points { grid-template-columns: 1fr; } }
.why-points li {
  display: flex; gap: 12px; align-items: center;
  background: #fff; border: 1px solid #e6ebf3; border-radius: 12px; padding: 14px 16px;
  font-weight: 700; font-size: 14px; color: var(--ink);
  transition: transform .35s var(--ease-out), box-shadow .35s, border-color .35s;
}
.why-points li:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: 0 14px 30px -14px rgba(20, 35, 60, .25); }
.why-points li i { color: var(--gold-deep); font-size: 19px; }

.video-shell { position: relative; }
.video-shell::before {
  content: ''; position: absolute; inset: -16px -16px 16px 16px; border-radius: var(--radius);
  border: 2px solid rgba(244, 179, 74, .5); z-index: 0;
  transition: inset .5s var(--ease-out);
}
.video-shell:hover::before { inset: -10px -10px 10px 10px; }
.video-shell video { position: relative; z-index: 1; width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-lg); display: block; background: #000; }
.video-badge {
  position: absolute; z-index: 2; bottom: 34px; left: -18px;
  background: linear-gradient(120deg, var(--gold), var(--gold-deep)); color: var(--ink);
  border-radius: 14px; padding: 16px 22px; font-weight: 800; box-shadow: 0 18px 36px -12px rgba(244, 179, 74, .6);
  display: flex; align-items: center; gap: 12px;
  animation: floaty 5s ease-in-out infinite;
}
.video-badge .yr { font-family: var(--font-head); font-size: 30px; line-height: 1; }
.video-badge small { display: block; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@media (max-width: 900px) { .video-badge { left: 12px; } }

/* ============ MARQUEE STRIP ============ */
.strip { background: var(--gold); color: var(--ink); overflow: hidden; padding: 16px 0; transform: rotate(-1deg) scale(1.02); }
.strip-track { display: flex; gap: 46px; white-space: nowrap; width: max-content; animation: marquee 26s linear infinite; }
.strip span { font-family: var(--font-head); text-transform: uppercase; font-weight: 600; letter-spacing: 2px; font-size: 15px; display: flex; align-items: center; gap: 46px; }
.strip i { font-size: 12px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============ CTA BAND ============ */
.cta-band { position: relative; overflow: hidden; }
.cta-band .glow {
  position: absolute; width: 640px; height: 640px; border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 179, 74, .16), transparent 65%);
  top: -240px; right: -140px; pointer-events: none;
  animation: glowDrift 9s ease-in-out infinite alternate;
}
@keyframes glowDrift { to { transform: translate(-70px, 60px) scale(1.15); } }
.cta-inner { position: relative; text-align: center; max-width: 820px; margin-inline: auto; }
.cta-inner p { color: var(--text-inverse); line-height: 1.85; margin: 20px 0 34px; font-size: 16px; }

/* ============ PILLARS ============ */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 940px) { .pillars { grid-template-columns: 1fr; } }
.pillar {
  position: relative; border-radius: var(--radius); padding: 38px 32px;
  background: linear-gradient(165deg, var(--ink-3), var(--ink-2));
  border: 1px solid var(--line); overflow: hidden;
  transition: transform .5s var(--ease-out), border-color .5s, box-shadow .5s;
}
.pillar::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0); transform-origin: left; transition: transform .6s var(--ease-out);
}
.pillar:hover { transform: translateY(-8px); border-color: rgba(244, 179, 74, .45); box-shadow: 0 30px 55px -22px rgba(0,0,0,.7); }
.pillar:hover::before { transform: scaleX(1); }
.pillar .ic {
  width: 62px; height: 62px; border-radius: 16px; display: grid; place-items: center;
  background: rgba(244, 179, 74, .12); border: 1px solid rgba(244, 179, 74, .35);
  color: var(--gold); font-size: 26px; margin-bottom: 22px;
  transition: transform .5s var(--ease-spring), background .4s;
}
.pillar:hover .ic { transform: rotate(-8deg) scale(1.1); background: rgba(244, 179, 74, .22); }
.pillar h3 { font-family: var(--font-head); text-transform: uppercase; letter-spacing: 1px; font-size: 21px; font-weight: 600; color: #fff; margin-bottom: 14px; }
.pillar p { color: var(--text-inverse); line-height: 1.8; font-size: 14.5px; }
.pillar ul { display: grid; gap: 12px; }
.pillar ul li { display: flex; gap: 12px; color: var(--text-inverse); font-size: 14px; line-height: 1.6; }
.pillar ul li i { color: var(--gold); flex: 0 0 auto; margin-top: 2px; }
.pillar .promise { font-family: var(--font-head); font-size: clamp(24px, 2.6vw, 32px); text-transform: uppercase; color: #fff; line-height: 1.25; font-weight: 500; }
.pillar .promise em { font-style: normal; }

/* ============ TESTIMONIALS (home) ============ */
.testi .swiper { padding: 30px 0 66px; }
.testi .swiper-slide { width: 300px; }
.testi-card {
  position: relative; border-radius: 14px; overflow: hidden;
  border: 1px solid #e4e9f2; background: #fff;
  box-shadow: 0 18px 40px -22px rgba(20, 35, 60, .3);
  transition: transform .5s var(--ease-out), box-shadow .5s;
  display: block;
}
.testi-card:hover { transform: translateY(-8px) rotate(.5deg); box-shadow: 0 30px 55px -22px rgba(20, 35, 60, .4); }
.testi-card img { width: 100%; height: 400px; object-fit: cover; object-position: top; }
.testi-card .zoom {
  position: absolute; inset: 0; display: grid; place-items: center;
  background: rgba(11, 18, 32, .45); opacity: 0; transition: opacity .4s;
}
.testi-card:hover .zoom { opacity: 1; }
.testi-card .zoom span {
  width: 54px; height: 54px; border-radius: 50%; background: var(--gold); color: var(--ink);
  display: grid; place-items: center; font-size: 21px;
  transform: scale(.6); transition: transform .4s var(--ease-spring);
}
.testi-card:hover .zoom span { transform: scale(1); }

/* ============ CLIENT LOGO MARQUEE (home) ============ */
.clients-wrap { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent); mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent); }
.logo-row { display: flex; gap: 22px; width: max-content; padding: 10px 0; }
.logo-row.r1 { animation: marquee 42s linear infinite; }
.logo-row.r2 { animation: marquee 42s linear infinite reverse; margin-top: 14px; }
.clients-wrap:hover .logo-row { animation-play-state: paused; }
.logo-chip {
  flex: 0 0 auto; width: 190px; height: 96px; border-radius: 14px; background: #fff;
  display: grid; place-items: center; padding: 16px;
  border: 1px solid #e4e9f2;
  transition: transform .4s var(--ease-out), box-shadow .4s;
}
.logo-chip:hover { transform: translateY(-5px); box-shadow: 0 16px 32px -16px rgba(20, 35, 60, .3); }
.logo-chip img { max-height: 62px; max-width: 100%; object-fit: contain; }

/* ============ XTILES — L&T-style hover reveal tiles ============ */
.xtile-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px; }
.xtile-grid.two { grid-template-columns: repeat(auto-fill, minmax(min(460px, 100%), 1fr)); }
.xtile {
  position: relative; border-radius: var(--radius); overflow: hidden; isolation: isolate;
  min-height: 340px; display: flex; align-items: flex-end;
  background: var(--ink-3); cursor: pointer;
  transition: transform .55s var(--ease-out), box-shadow .55s;
  transform-style: preserve-3d;
}
.xtile-grid.two .xtile { min-height: 400px; }
.xtile:hover { transform: translateY(-8px); box-shadow: 0 32px 60px -22px rgba(0,0,0,.75); }
.xtile .bg { position: absolute; inset: 0; z-index: -2; }
.xtile .bg img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease-out), filter .7s; filter: saturate(.85); }
.xtile:hover .bg img { transform: scale(1.1); filter: saturate(1.05) brightness(.75); }
.xtile::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(185deg, rgba(11,18,32,.05) 30%, rgba(11,18,32,.88) 78%, rgba(11,18,32,.96) 100%);
  transition: background .5s;
}
.xtile:hover::before { background: linear-gradient(185deg, rgba(11,18,32,.25) 0%, rgba(11,18,32,.93) 60%, rgba(11,18,32,.97) 100%); }
.xtile .tag {
  position: absolute; top: 18px; left: 20px;
  font-family: var(--font-head); font-size: 12.5px; letter-spacing: 2.5px; font-weight: 500; text-transform: uppercase;
  color: var(--gold-bright); background: rgba(10, 16, 30, .6); backdrop-filter: blur(8px);
  padding: 6px 14px; border-radius: 999px; border: 1px solid rgba(244, 179, 74, .35);
}
.xtile .meat { position: relative; padding: 26px 26px 24px; width: 100%; }
.xtile .meat::before {
  content: ''; position: absolute; top: 0; left: 26px; width: 44px; height: 3px; border-radius: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  transition: width .5s var(--ease-out);
}
.xtile:hover .meat::before { width: 96px; }
.xtile h3 {
  font-family: var(--font-head); font-weight: 600; text-transform: uppercase; letter-spacing: .5px;
  color: #fff; font-size: clamp(19px, 2vw, 24px); line-height: 1.25; padding-top: 18px;
  transition: color .35s;
}
.xtile:hover h3 { color: var(--gold-bright); }
.xtile .info {
  display: grid; grid-template-rows: 0fr; opacity: 0; transform: translateY(14px);
  transition: grid-template-rows .55s var(--ease-out), opacity .45s .05s, transform .55s var(--ease-out);
}
.xtile:hover .info, .xtile:focus-visible .info, .xtile.touch-open .info { grid-template-rows: 1fr; opacity: 1; transform: none; }
.xtile .info > div { overflow: hidden; }
.xtile .info p { color: var(--text-inverse); font-size: 14px; line-height: 1.7; padding-top: 12px; }
.xtile .info .cta {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 14px;
  color: var(--gold); font-weight: 800; font-size: 13.5px; letter-spacing: 1px; text-transform: uppercase;
}
.xtile .info .cta i { transition: transform .35s var(--ease-spring); }
.xtile:hover .info .cta i { transform: translateX(6px); }
.xtile .count {
  position: absolute; top: 16px; right: 20px;
  font-family: var(--font-head); font-weight: 600; font-size: 15px; color: #fff;
  background: rgba(244, 179, 74, .22); border: 1px solid rgba(244, 179, 74, .4);
  padding: 5px 13px; border-radius: 999px; backdrop-filter: blur(8px);
}

/* ============ PROJECT CARDS (listing pages) ============ */
.pcard-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(340px, 100%), 1fr)); gap: 24px; }
.pcard {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: var(--ink-3); border: 1px solid var(--line);
  cursor: pointer; isolation: isolate;
  transition: transform .5s var(--ease-out), border-color .5s, box-shadow .5s;
}
.pcard:hover { transform: translateY(-8px); border-color: rgba(244, 179, 74, .55); box-shadow: 0 30px 55px -20px rgba(0,0,0,.7); }
.pcard .ph { height: 250px; overflow: hidden; position: relative; }
.pcard .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out), filter .6s; filter: saturate(.9); }
.pcard:hover .ph img { transform: scale(1.09); filter: saturate(1.05) brightness(.85); }
.pcard .ph::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(11,18,32,.75) 100%); }
.pcard .bar { padding: 18px 20px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.pcard .bar h3 { font-family: var(--font-body); font-weight: 800; font-size: 16px; color: #fff; line-height: 1.35; transition: color .3s; }
.pcard:hover .bar h3 { color: var(--gold); }
.pcard .bar .go {
  flex: 0 0 auto; width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.25); color: #fff; font-size: 15px;
  transition: all .4s var(--ease-spring);
}
.pcard:hover .bar .go { background: var(--gold); border-color: var(--gold); color: var(--ink); transform: rotate(-35deg); }
/* hover overlay with quick facts */
.pcard .peek {
  position: absolute; inset: auto 0 0 0; z-index: 2;
  background: linear-gradient(180deg, rgba(11, 18, 32, .1), rgba(9, 14, 27, .97) 26%);
  padding: 46px 22px 20px;
  transform: translateY(101%); opacity: 0;
  transition: transform .55s var(--ease-out), opacity .4s;
  pointer-events: none;
}
.pcard:hover .peek { transform: none; opacity: 1; }
.pcard .peek h4 { font-family: var(--font-head); text-transform: uppercase; letter-spacing: 1px; color: var(--gold); font-size: 16px; margin-bottom: 10px; }
.pcard .peek dl { display: grid; gap: 7px; }
.pcard .peek .kv { display: grid; grid-template-columns: 92px 1fr; gap: 10px; align-items: start; }
.pcard .peek dt { color: var(--gold-bright); font-size: 10.5px; font-weight: 800; letter-spacing: 1.4px; text-transform: uppercase; padding-top: 2px; }
.pcard .peek dd { color: var(--text-inverse); font-size: 12.5px; line-height: 1.55; }
.pcard .peek .more {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 14px;
  color: var(--gold); font-weight: 800; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
}
@media (hover: none) { .pcard .peek { display: none; } }

/* ============ MODAL ============ */
.pmodal {
  position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 20px;
  opacity: 0; visibility: hidden; transition: opacity .35s, visibility 0s .35s;
}
.pmodal.open { opacity: 1; visibility: visible; transition: opacity .35s, visibility 0s; }
.pmodal .veil { position: absolute; inset: 0; background: rgba(5, 9, 18, .8); backdrop-filter: blur(10px); }
.pmodal .box {
  position: relative; width: min(980px, 100%); max-height: min(86vh, 900px); overflow: auto;
  background: linear-gradient(165deg, var(--ink-3), var(--ink-2));
  border: 1px solid rgba(244, 179, 74, .3); border-radius: 22px;
  box-shadow: 0 50px 100px -30px rgba(0,0,0,.9);
  transform: translateY(34px) scale(.96);
  transition: transform .45s var(--ease-out);
}
.pmodal.open .box { transform: none; }
.pmodal .close {
  position: sticky; top: 14px; margin-left: calc(100% - 58px); z-index: 3;
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25);
  background: rgba(10, 16, 30, .7); backdrop-filter: blur(8px); color: #fff; font-size: 19px;
  display: grid; place-items: center; cursor: pointer; transition: all .3s;
}
.pmodal .close:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); transform: rotate(90deg); }
.pmodal .grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-top: -44px; }
@media (max-width: 820px) { .pmodal .grid { grid-template-columns: 1fr; } }
.pmodal .imgside { position: relative; min-height: 320px; }
.pmodal .imgside img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 820px) { .pmodal .imgside { min-height: 240px; } .pmodal .imgside img { position: relative; height: 240px; } }
.pmodal .txtside { padding: 40px 36px; }
.pmodal .txtside .cat { color: var(--gold); font-size: 12px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; }
.pmodal .txtside h3 { font-family: var(--font-head); text-transform: uppercase; color: #fff; font-size: clamp(22px, 2.6vw, 30px); font-weight: 600; letter-spacing: .5px; margin: 10px 0 22px; line-height: 1.2; }
.pmodal .fields { display: grid; gap: 16px; }
.pmodal .field dt { color: var(--gold-bright); font-size: 11px; font-weight: 800; letter-spacing: 1.8px; text-transform: uppercase; margin-bottom: 4px; display: flex; align-items: center; gap: 8px; }
.pmodal .field dt::before { content: ''; width: 14px; height: 2px; background: var(--gold); border-radius: 2px; }
.pmodal .field dd { color: var(--text-inverse); font-size: 14.5px; line-height: 1.7; }
body.modal-lock { overflow: hidden; }

/* ============ TIMELINE ============ */
.timeline { position: relative; max-width: 900px; margin-inline: auto; }
.timeline::before {
  content: ''; position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; transform: translateX(-50%);
  background: linear-gradient(180deg, transparent, rgba(244, 179, 74, .55) 8%, rgba(244, 179, 74, .55) 92%, transparent);
}
.tl-item { position: relative; width: 50%; padding: 0 44px 46px 0; }
.tl-item:nth-child(even) { margin-left: 50%; padding: 0 0 46px 44px; }
.tl-item .dot {
  position: absolute; top: 6px; right: -9px; width: 18px; height: 18px; border-radius: 50%;
  background: var(--ink); border: 3px solid var(--gold); z-index: 2;
  box-shadow: 0 0 0 6px rgba(244, 179, 74, .15);
  animation: pulseDot 2.6s infinite;
}
.tl-item:nth-child(even) .dot { right: auto; left: -9px; }
@keyframes pulseDot { 0%, 100% { box-shadow: 0 0 0 5px rgba(244,179,74,.14); } 50% { box-shadow: 0 0 0 10px rgba(244,179,74,.05); } }
.tl-item .yr { font-family: var(--font-head); color: var(--gold); font-size: 26px; font-weight: 600; letter-spacing: 1px; margin-bottom: 8px; }
.tl-item .card {
  background: linear-gradient(165deg, var(--ink-3), var(--ink-2));
  border: 1px solid var(--line); border-radius: 16px; padding: 22px 24px;
  transition: transform .45s var(--ease-out), border-color .45s, box-shadow .45s;
}
.tl-item .card:hover { transform: translateY(-5px); border-color: rgba(244, 179, 74, .5); box-shadow: 0 24px 44px -18px rgba(0,0,0,.65); }
.tl-item h4 { color: #fff; font-size: 16.5px; font-weight: 800; margin-bottom: 8px; }
.tl-item p { color: var(--text-inverse); font-size: 14px; line-height: 1.7; }
@media (max-width: 700px) {
  .timeline::before { left: 10px; }
  .tl-item, .tl-item:nth-child(even) { width: 100%; margin-left: 0; padding: 0 0 40px 40px; }
  .tl-item .dot, .tl-item:nth-child(even) .dot { left: 2px; right: auto; }
}

/* ============ CHECK LIST (track record etc.) ============ */
.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 780px) { .check-grid { grid-template-columns: 1fr; } }
.check-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: linear-gradient(165deg, var(--ink-3), var(--ink-2));
  border: 1px solid var(--line); border-radius: 16px; padding: 22px 24px;
  transition: transform .4s var(--ease-out), border-color .4s, box-shadow .4s;
}
.check-item:hover { transform: translateX(8px); border-color: rgba(244, 179, 74, .5); box-shadow: 0 20px 40px -18px rgba(0,0,0,.6); }
.check-item .ic {
  flex: 0 0 auto; width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(244, 179, 74, .12); border: 1px solid rgba(244, 179, 74, .35); color: var(--gold); font-size: 18px;
  transition: transform .4s var(--ease-spring);
}
.check-item:hover .ic { transform: scale(1.12) rotate(-6deg); }
.check-item p { color: var(--text-inverse); font-size: 14.5px; line-height: 1.7; }
.check-item p b { color: #fff; }

/* ============ STAT BAND ============ */
.stat-band { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.stat-card {
  text-align: center; padding: 34px 20px;
  background: linear-gradient(165deg, var(--ink-3), var(--ink-2));
  border: 1px solid var(--line); border-radius: var(--radius);
  transition: transform .45s var(--ease-out), border-color .45s;
  position: relative; overflow: hidden;
}
.stat-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease-out);
}
.stat-card:hover { transform: translateY(-6px); border-color: rgba(244, 179, 74, .45); }
.stat-card:hover::after { transform: scaleX(1); }
.stat-card .num { font-family: var(--font-head); font-size: clamp(34px, 4vw, 50px); font-weight: 600; color: #fff; line-height: 1; }
.stat-card .num em { font-style: normal; color: var(--gold); }
.stat-card .label { color: var(--text-inverse); font-size: 12px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; margin-top: 10px; }

/* ============ POLICY / ICON CARDS ============ */
.icard-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.icard {
  background: #fff; border: 1px solid #e6ebf3; border-radius: var(--radius); padding: 32px 28px;
  transition: transform .45s var(--ease-out), box-shadow .45s, border-color .45s;
  position: relative; overflow: hidden;
}
.icard::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  transform: scaleX(0); transform-origin: left; transition: transform .55s var(--ease-out);
}
.icard:hover { transform: translateY(-8px); box-shadow: 0 26px 50px -22px rgba(20, 35, 60, .3); border-color: rgba(244, 179, 74, .6); }
.icard:hover::before { transform: scaleX(1); }
.icard .ic {
  width: 58px; height: 58px; border-radius: 15px; display: grid; place-items: center;
  background: rgba(244, 179, 74, .13); color: var(--gold-deep); font-size: 25px; margin-bottom: 20px;
  transition: transform .5s var(--ease-spring);
}
.icard:hover .ic { transform: rotate(-8deg) scale(1.1); }
.icard h3 { font-size: 17.5px; font-weight: 800; color: var(--ink); margin-bottom: 10px; }
.icard p { color: var(--text-soft); font-size: 14.5px; line-height: 1.75; }

/* dark variant */
.sec-dark .icard, .sec-dark2 .icard { background: linear-gradient(165deg, var(--ink-3), var(--ink-2)); border-color: var(--line); }
.sec-dark .icard h3, .sec-dark2 .icard h3 { color: #fff; }
.sec-dark .icard p, .sec-dark2 .icard p { color: var(--text-inverse); }
.sec-dark .icard .ic, .sec-dark2 .icard .ic { color: var(--gold); border: 1px solid rgba(244, 179, 74, .35); }

/* ============ CHIP WALL (architects / consultants) ============ */
.chip-wall { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(320px, 100%), 1fr)); gap: 14px; }
.chip {
  display: flex; align-items: center; gap: 14px;
  background: #fff; border: 1px solid #e6ebf3; border-radius: 14px; padding: 17px 20px;
  font-weight: 700; font-size: 14px; color: var(--ink);
  transition: transform .35s var(--ease-out), border-color .35s, box-shadow .35s;
}
.chip:hover { transform: translateY(-4px) scale(1.015); border-color: var(--gold); box-shadow: 0 16px 34px -16px rgba(20, 35, 60, .28); }
.chip i { color: var(--gold-deep); font-size: 17px; flex: 0 0 auto; transition: transform .4s var(--ease-spring); }
.chip:hover i { transform: rotate(-10deg) scale(1.15); }

/* ============ LOGO WALL (clients page) ============ */
.logo-wall { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 18px; }
.logo-cell {
  background: #fff; border: 1px solid #e6ebf3; border-radius: 16px; height: 120px;
  display: grid; place-items: center; padding: 20px; position: relative; overflow: hidden;
  filter: grayscale(1); transition: all .45s var(--ease-out);
}
.logo-cell::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  transform: scaleX(0); transition: transform .45s var(--ease-out);
}
.logo-cell:hover { filter: grayscale(0); transform: translateY(-6px); box-shadow: 0 20px 40px -18px rgba(20, 35, 60, .3); border-color: rgba(244, 179, 74, .5); }
.logo-cell:hover::after { transform: scaleX(1); }
.logo-cell img { max-height: 72px; max-width: 100%; object-fit: contain; }

/* ============ CERT / GALLERY CARDS ============ */
.cert-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr)); gap: 22px; }
.cert-card {
  position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer;
  background: #fff; border: 1px solid #e6ebf3; height: 380px;
  transition: transform .5s var(--ease-out), box-shadow .5s, border-color .5s;
  display: block;
}
.cert-card:hover { transform: translateY(-8px); box-shadow: 0 28px 55px -22px rgba(20, 35, 60, .35); border-color: rgba(244, 179, 74, .6); }
.cert-card img, .cert-card embed { width: 100%; height: 100%; object-fit: cover; object-position: top; border: 0; }
.cert-card .lay {
  position: absolute; inset: 0; display: grid; place-items: center; text-align: center;
  background: rgba(11, 18, 32, .55); opacity: 0; transition: opacity .4s; padding: 20px;
}
.cert-card:hover .lay { opacity: 1; }
.cert-card .lay > div { transform: translateY(12px); transition: transform .45s var(--ease-out); }
.cert-card:hover .lay > div { transform: none; }
.cert-card .lay .zi {
  width: 56px; height: 56px; border-radius: 50%; background: var(--gold); color: var(--ink);
  display: grid; place-items: center; font-size: 22px; margin: 0 auto 12px;
}
.cert-card .lay span { color: #fff; font-weight: 700; font-size: 14px; }
.cert-card .pdfmark {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  background: rgba(11, 18, 32, .75); color: var(--gold-bright); backdrop-filter: blur(6px);
  border: 1px solid rgba(244,179,74,.4); font-size: 11px; font-weight: 800; letter-spacing: 1.5px;
  padding: 5px 12px; border-radius: 999px;
}

/* ============ MFG ROWS ============ */
.mfg-row { display: grid; grid-template-columns: 1.05fr .95fr; gap: 54px; align-items: center; padding: 44px 0; }
.mfg-row.rev > .mfg-media { order: -1; }
@media (max-width: 880px) { .mfg-row { grid-template-columns: 1fr; gap: 30px; } .mfg-row.rev > .mfg-media { order: 0; } }
.mfg-copy h3 { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .5px; color: #fff; font-size: 24px; font-weight: 600; margin-bottom: 16px; display: flex; align-items: center; gap: 14px; }
.mfg-copy h3 i { color: var(--gold); font-size: 22px; }
.mfg-copy p { color: var(--text-inverse); line-height: 1.85; font-size: 15px; margin-bottom: 14px; }
.mfg-copy ul { display: grid; gap: 10px; margin: 6px 0 14px; }
.mfg-copy ul li { display: flex; gap: 12px; color: var(--text-inverse); font-size: 14.5px; line-height: 1.65; }
.mfg-copy ul li::before { content: '⚡'; color: var(--gold); flex: 0 0 auto; font-size: 13px; }
.mfg-media { position: relative; }
.mfg-media::before {
  content: ''; position: absolute; inset: -14px 14px 14px -14px; border-radius: var(--radius);
  border: 2px solid rgba(244, 179, 74, .4); transition: inset .5s var(--ease-out);
}
.mfg-media:hover::before { inset: -8px 8px 8px -8px; }
.mfg-media img { position: relative; border-radius: var(--radius); width: 100%; height: 340px; object-fit: cover; box-shadow: var(--shadow-lg); }
.brand-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 10px; }
.brand-badge {
  background: rgba(244, 179, 74, .1); border: 1px solid rgba(244, 179, 74, .4); color: var(--gold-bright);
  font-weight: 800; font-size: 12.5px; letter-spacing: 1px; padding: 8px 16px; border-radius: 999px;
  transition: all .35s;
}
.brand-badge:hover { background: var(--gold); color: var(--ink); transform: translateY(-3px); }

/* ============ JOB CARDS ============ */
.job-card {
  background: #fff; border: 1px solid #e6ebf3; border-radius: var(--radius); padding: 30px 32px;
  margin-bottom: 22px; position: relative; overflow: hidden;
  transition: transform .45s var(--ease-out), box-shadow .45s, border-color .45s;
}
.job-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: linear-gradient(180deg, var(--gold), var(--gold-deep));
  transform: scaleY(0); transform-origin: top; transition: transform .5s var(--ease-out);
}
.job-card:hover { transform: translateX(6px); box-shadow: 0 24px 48px -20px rgba(20, 35, 60, .28); border-color: rgba(244, 179, 74, .55); }
.job-card:hover::before { transform: scaleY(1); }
.job-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; flex-wrap: wrap; border-bottom: 1px solid #edf1f7; padding-bottom: 16px; margin-bottom: 16px; }
.job-top h3 { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .5px; font-weight: 600; font-size: 23px; color: var(--ink); }
.job-top h3 em { font-style: normal; color: var(--gold-deep); }
.job-badge { background: rgba(244, 179, 74, .13); border: 1px solid rgba(244, 179, 74, .45); color: #8a5f13; font-weight: 700; font-size: 13px; padding: 8px 16px; border-radius: 999px; display: inline-flex; align-items: center; gap: 8px; }
.job-meta { display: flex; flex-wrap: wrap; gap: 12px 30px; color: var(--text-soft); font-size: 14px; margin-bottom: 18px; }
.job-meta b { color: var(--ink); }
.job-meta span { display: inline-flex; gap: 8px; align-items: center; }
.job-meta i { color: var(--gold-deep); }
.job-desc { background: var(--paper); border-left: 4px solid var(--gold); border-radius: 10px; padding: 18px 20px; color: var(--text-soft); font-size: 14.5px; line-height: 1.75; margin-bottom: 22px; }
.job-desc b, .job-desc strong { color: var(--ink); }

/* ============ CONTACT ============ */
.contact-grid { display: grid; grid-template-columns: .9fr 1.4fr; gap: 30px; align-items: stretch; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { display: grid; gap: 16px; align-content: start; }
.cinfo {
  display: flex; gap: 18px; align-items: flex-start;
  background: linear-gradient(165deg, var(--ink-3), var(--ink-2));
  border: 1px solid var(--line); border-radius: 16px; padding: 22px 24px;
  transition: transform .4s var(--ease-out), border-color .4s;
}
.cinfo:hover { transform: translateX(6px); border-color: rgba(244, 179, 74, .5); }
.cinfo .ic {
  flex: 0 0 auto; width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center;
  background: rgba(244, 179, 74, .12); border: 1px solid rgba(244, 179, 74, .4); color: var(--gold); font-size: 20px;
}
.cinfo h4 { color: #fff; font-size: 15px; font-weight: 800; margin-bottom: 5px; }
.cinfo p, .cinfo a { color: var(--text-inverse); font-size: 14px; line-height: 1.65; }
.cinfo a:hover { color: var(--gold); }
.contact-form {
  background: linear-gradient(165deg, var(--ink-3), var(--ink-2));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 36px;
}
.contact-form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .contact-form .row2 { grid-template-columns: 1fr; } }
.contact-form input, .contact-form textarea {
  width: 100%; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px; padding: 15px 18px; color: #fff; font-family: var(--font-body); font-size: 14.5px;
  margin-bottom: 14px; transition: border-color .3s, background .3s, box-shadow .3s; resize: vertical;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(200, 211, 228, .55); }
.contact-form input:focus, .contact-form textarea:focus { outline: 0; border-color: var(--gold); background: rgba(255,255,255,.08); box-shadow: 0 0 0 4px rgba(244, 179, 74, .12); }
.map-frame { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-lg); line-height: 0; }
.map-frame iframe { width: 100%; height: 440px; border: 0; filter: saturate(.9); transition: filter .4s; }
.map-frame:hover iframe { filter: saturate(1.1); }

/* ============ SCROLLY SHOWCASE (pinned scroll-driven projects) ============ */
.scrolly-track { position: relative; height: calc(var(--n, 1) * 80vh + 102vh); height: calc(var(--n, 1) * 80svh + 102svh); }
@media (max-width: 880px) {
  /* cheaper scroll cost per project on phones (no dot rail to skip with) */
  .scrolly-track { height: calc(var(--n, 1) * 52vh + 102vh); height: calc(var(--n, 1) * 52svh + 102svh); }
}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.scrolly-stage {
  position: sticky; top: 0; height: 100vh; height: 100svh;
  display: flex; align-items: center; overflow: hidden;
}
.scrolly-grid {
  display: grid; grid-template-columns: 1.12fr .88fr;
  gap: clamp(28px, 4.5vw, 64px); align-items: center;
  width: min(1200px, 92%); margin-inline: auto;
}
@media (max-width: 880px) {
  .scrolly-grid { grid-template-columns: 1fr; gap: 20px; align-content: center; }
}

.s-viewport {
  position: relative; height: min(70vh, 640px); height: min(70svh, 640px);
  border-radius: var(--radius); overflow: hidden;
  background: var(--ink-3); border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}
@media (max-width: 880px) { .s-viewport { height: 36vh; height: 36svh; } }
.s-img {
  position: absolute; inset: 0; margin: 0;
  opacity: 0; transform: translateY(7%) scale(1.08);
  transition: opacity .65s var(--ease-out), transform .85s var(--ease-out);
}
.s-img.on { will-change: opacity, transform; }
.s-img.on { opacity: 1; transform: none; z-index: 2; }
.s-img.past { transform: translateY(-7%) scale(1.08); }
.s-img img { width: 100%; height: 100%; object-fit: cover; }
.s-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(200deg, transparent 55%, rgba(11, 18, 32, .5)); }
.s-num {
  position: absolute; z-index: 3; top: 16px; left: 18px;
  font-family: var(--font-head); font-size: 13px; letter-spacing: 2px; font-weight: 500;
  color: var(--gold-bright); background: rgba(10, 16, 30, .6); backdrop-filter: blur(8px);
  padding: 5px 13px; border-radius: 999px; border: 1px solid rgba(244, 179, 74, .35);
}

.s-head { display: flex; align-items: center; gap: 18px; margin-bottom: 24px; }
.s-count { font-family: var(--font-head); font-weight: 500; color: var(--text-inverse); font-size: 14px; letter-spacing: 2px; white-space: nowrap; }
.s-count .s-cur { color: var(--gold); font-size: 27px; font-weight: 600; }
.s-bar { flex: 1; height: 3px; border-radius: 3px; background: rgba(244, 179, 74, .16); overflow: hidden; }
.s-bar i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--gold), var(--gold-bright)); border-radius: 3px; }

.s-panels { display: grid; }
.s-panel {
  grid-area: 1 / 1; min-width: 0;
  opacity: 0; transform: translateY(30px);
  transition: opacity .5s var(--ease-out), transform .6s var(--ease-out);
  pointer-events: none; visibility: hidden;
}
.s-panel.on { opacity: 1; transform: none; pointer-events: auto; visibility: visible; transition-delay: .08s; }
.s-panel .cat { color: var(--gold); font-size: 12px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; }
.s-panel h3 {
  font-family: var(--font-head); font-weight: 600; text-transform: uppercase;
  color: #fff; font-size: clamp(21px, 2.6vw, 32px); line-height: 1.18; letter-spacing: .5px;
  margin: 10px 0 0;
}
.s-panel .s-body { color: var(--text-inverse); font-size: 15px; line-height: 1.75; margin-top: 16px; }
.s-rows { display: grid; gap: 13px; margin: 20px 0 26px; }
.s-row dt { color: var(--gold-bright); font-size: 10.5px; font-weight: 800; letter-spacing: 1.8px; text-transform: uppercase; margin-bottom: 3px; display: flex; align-items: center; gap: 8px; }
.s-row dt::before { content: ''; width: 14px; height: 2px; background: var(--gold); border-radius: 2px; }
.s-row dd { color: var(--text-inverse); font-size: 13.5px; line-height: 1.65; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
@media (max-width: 880px) {
  .s-panel h3 { font-size: 19px; }
  .s-rows { gap: 9px; margin: 14px 0 18px; }
  .s-row dd { -webkit-line-clamp: 2; }
  .s-head { margin-bottom: 14px; }
}

.s-dots {
  position: absolute; right: max(16px, 2.2vw); top: 50%; transform: translateY(-50%);
  display: grid; gap: 9px; z-index: 5;
}
.s-dot {
  width: 9px; height: 9px; border-radius: 50%; padding: 0; cursor: pointer;
  background: transparent; border: 1.5px solid rgba(244, 179, 74, .45);
  transition: all .35s var(--ease-out);
}
.s-dot:hover { border-color: var(--gold-bright); transform: scale(1.25); }
.s-dot.on { background: var(--gold); border-color: var(--gold); transform: scale(1.3); box-shadow: 0 0 10px rgba(244, 179, 74, .6); }
@media (max-width: 880px), (max-height: 620px) { .s-dots { display: none; } }

.s-hint {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); z-index: 5;
  color: rgba(255,255,255,.55); font-size: 10.5px; letter-spacing: 3px; text-transform: uppercase;
  display: flex; align-items: center; gap: 8px;
  transition: opacity .5s;
}
.s-hint i { color: var(--gold); animation: hintBob 1.8s ease-in-out infinite; }
@keyframes hintBob { 0%, 100% { transform: translateY(-2px); } 50% { transform: translateY(3px); } }
.s-hint.done { opacity: 0; }

/* ============ FOOTER ============ */
.footer { background: #070c18; color: var(--text-inverse); padding: 80px 0 0; border-top: 1px solid var(--line); position: relative; }
.footer::before {
  content: ''; position: absolute; top: -1px; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.footer-grid { display: grid; grid-template-columns: 1.2fr .7fr .9fr 1.2fr; gap: 44px; }
@media (max-width: 1000px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .footer-grid { grid-template-columns: 1fr; } }
.footer h4 { color: #fff; font-family: var(--font-head); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 500; font-size: 17px; margin-bottom: 22px; }
.footer .flogo img { height: 62px; margin-bottom: 20px; }
.footer address { font-style: normal; line-height: 1.9; font-size: 14.5px; }
.footer address a { color: var(--gold); }
.footer-links li { margin-bottom: 4px; }
.footer-links a {
  font-size: 14.5px; padding: 5px 0; display: inline-flex; align-items: center; gap: 8px;
  transition: color .3s, transform .3s var(--ease-out); transform-origin: left;
}
.footer-links a::before { content: '›'; color: var(--gold); transition: transform .3s; }
.footer-links a:hover { color: var(--gold); transform: translateX(6px); }
.footer .form-grid { display: grid; gap: 12px; }
.footer input {
  width: 100%; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.14);
  border-radius: 11px; padding: 13px 16px; color: #fff; font-family: var(--font-body); font-size: 14px;
  transition: border-color .3s, background .3s, box-shadow .3s;
}
.footer input::placeholder { color: rgba(200, 211, 228, .55); }
.footer input:focus { outline: 0; border-color: var(--gold); background: rgba(255,255,255,.08); box-shadow: 0 0 0 4px rgba(244, 179, 74, .12); }
.copyright { margin-top: 64px; padding: 26px 0; border-top: 1px solid rgba(255,255,255,.08); text-align: center; font-size: 13.5px; }
.copyright a { color: var(--gold); }

/* Back to top */
.to-top {
  position: fixed; right: 26px; bottom: 26px; z-index: 90;
  width: 50px; height: 50px; border-radius: 50%;
  background: linear-gradient(140deg, var(--gold), var(--gold-deep)); color: var(--ink);
  display: grid; place-items: center; font-size: 22px;
  opacity: 0; visibility: hidden; transform: translateY(16px);
  transition: all .4s var(--ease-out);
  box-shadow: 0 14px 30px -10px rgba(244, 179, 74, .6);
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { transform: translateY(-4px); }

/* ============================================================
   V2 — ELECTRIC COLOR SYSTEM (L&T-inspired vibrancy)
   ============================================================ */
:root {
  --blue: #1273e6;
  --blue-deep: #0a3d7a;
  --cyan: #22c1e8;
  --violet: #8b5cf6;
  --emerald: #12b981;
  --orange: #ff7a29;
  --coral: #ff5470;
  --sky: #eaf3fe;
}

/* --- vivid page-hero aurora --- */
.page-hero::after {
  background:
    radial-gradient(820px 380px at 10% 8%, rgba(18, 115, 230, .38), transparent 60%),
    radial-gradient(700px 340px at 92% 22%, rgba(244, 179, 74, .30), transparent 62%),
    radial-gradient(560px 300px at 55% 108%, rgba(34, 193, 232, .22), transparent 65%),
    linear-gradient(180deg, rgba(11, 18, 32, .30) 0%, var(--ink) 100%);
}
.page-hero h1 span {
  background: linear-gradient(95deg, #fff 55%, var(--gold-bright) 78%, var(--cyan) 105%);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* --- section headers: colored kicker + animated underline --- */
.sec-head .kicker { color: var(--blue); }
.sec-head .kicker::before, .sec-head.center .kicker::after { background: var(--gold); }
.sec-dark .sec-head .kicker, .sec-dark2 .sec-head .kicker { color: var(--cyan); }
.sec-head h2 { position: relative; }
.sec-head:not(.center) h2::after {
  content: ''; display: block; width: 74px; height: 4px; border-radius: 4px; margin-top: 14px;
  background: linear-gradient(90deg, var(--blue), var(--cyan) 55%, var(--gold));
}

/* --- brighter light sections --- */
.sec-light { background: linear-gradient(180deg, #f4f8fe 0%, #ffffff 60%); }
.sec-sky { background: linear-gradient(160deg, var(--sky), #f7fbff 55%, #fff); }

/* --- accent-cycled cards (icards, chips, stat cards, pillars, check items) --- */
.icard:nth-of-type(6n+1) .ic { background: rgba(244,179,74,.14); color: var(--gold-deep); }
.icard:nth-of-type(6n+2) .ic { background: rgba(18,115,230,.12); color: var(--blue); }
.icard:nth-of-type(6n+3) .ic { background: rgba(34,193,232,.13); color: #0d94b5; }
.icard:nth-of-type(6n+4) .ic { background: rgba(139,92,246,.12); color: var(--violet); }
.icard:nth-of-type(6n+5) .ic { background: rgba(18,185,129,.12); color: var(--emerald); }
.icard:nth-of-type(6n+6) .ic { background: rgba(255,122,41,.13); color: var(--orange); }
.icard:nth-of-type(6n+2)::before { background: linear-gradient(90deg, var(--blue), var(--cyan)); }
.icard:nth-of-type(6n+3)::before { background: linear-gradient(90deg, var(--cyan), var(--emerald)); }
.icard:nth-of-type(6n+4)::before { background: linear-gradient(90deg, var(--violet), var(--blue)); }
.icard:nth-of-type(6n+5)::before { background: linear-gradient(90deg, var(--emerald), var(--cyan)); }
.icard:nth-of-type(6n+6)::before { background: linear-gradient(90deg, var(--orange), var(--gold)); }

.chip:nth-of-type(5n+2) i { color: var(--blue); }
.chip:nth-of-type(5n+3) i { color: var(--violet); }
.chip:nth-of-type(5n+4) i { color: var(--emerald); }
.chip:nth-of-type(5n+5) i { color: var(--orange); }
.chip:nth-of-type(5n+2):hover { border-color: var(--blue); }
.chip:nth-of-type(5n+3):hover { border-color: var(--violet); }
.chip:nth-of-type(5n+4):hover { border-color: var(--emerald); }
.chip:nth-of-type(5n+5):hover { border-color: var(--orange); }

.pillar:nth-of-type(3n+1) .ic { color: var(--gold); border-color: rgba(244,179,74,.4); background: rgba(244,179,74,.12); }
.pillar:nth-of-type(3n+2) .ic { color: var(--cyan); border-color: rgba(34,193,232,.4); background: rgba(34,193,232,.1); }
.pillar:nth-of-type(3n+3) .ic { color: var(--violet); border-color: rgba(139,92,246,.45); background: rgba(139,92,246,.12); }
.pillar:nth-of-type(3n+2)::before { background: linear-gradient(90deg, var(--cyan), transparent); }
.pillar:nth-of-type(3n+3)::before { background: linear-gradient(90deg, var(--violet), transparent); }

.stat-card:nth-of-type(4n+2) .num em { color: var(--cyan); }
.stat-card:nth-of-type(4n+3) .num em { color: var(--violet); }
.stat-card:nth-of-type(4n+4) .num em { color: var(--emerald); }
.stat-card:nth-of-type(4n+2)::after { background: linear-gradient(90deg, var(--cyan), transparent); }
.stat-card:nth-of-type(4n+3)::after { background: linear-gradient(90deg, var(--violet), transparent); }
.stat-card:nth-of-type(4n+4)::after { background: linear-gradient(90deg, var(--emerald), transparent); }

.check-item:nth-of-type(4n+2) .ic { color: var(--cyan); border-color: rgba(34,193,232,.4); background: rgba(34,193,232,.1); }
.check-item:nth-of-type(4n+3) .ic { color: var(--violet); border-color: rgba(139,92,246,.45); background: rgba(139,92,246,.1); }
.check-item:nth-of-type(4n+4) .ic { color: var(--emerald); border-color: rgba(18,185,129,.4); background: rgba(18,185,129,.1); }

.cinfo:nth-of-type(4n+2) .ic { color: var(--cyan); border-color: rgba(34,193,232,.4); background: rgba(34,193,232,.1); }
.cinfo:nth-of-type(4n+3) .ic { color: var(--emerald); border-color: rgba(18,185,129,.4); background: rgba(18,185,129,.1); }
.cinfo:nth-of-type(4n+4) .ic { color: var(--violet); border-color: rgba(139,92,246,.45); background: rgba(139,92,246,.1); }

/* --- per-sector accents (set --acc inline) --- */
.xtile { --acc: var(--gold); }
.xtile .meat::before { background: linear-gradient(90deg, var(--acc), rgba(255,255,255,.65)); }
.xtile .tag { color: #fff; border-color: color-mix(in srgb, var(--acc) 60%, transparent); background: color-mix(in srgb, var(--acc) 30%, rgba(10,16,30,.6)); }
.xtile:hover h3 { color: color-mix(in srgb, var(--acc) 62%, #fff); }
.xtile .info .cta { color: color-mix(in srgb, var(--acc) 70%, #fff); }
.xtile:hover { border-color: transparent; }
.xtile::after {
  content: ''; position: absolute; inset: 0; z-index: -1; border-radius: inherit;
  background: linear-gradient(200deg, transparent 40%, color-mix(in srgb, var(--acc) 55%, transparent) 130%);
  opacity: 0; transition: opacity .5s;
}
.xtile:hover::after { opacity: 1; }
.xtile .count { background: color-mix(in srgb, var(--acc) 32%, rgba(10,16,30,.5)); border-color: color-mix(in srgb, var(--acc) 55%, transparent); }

.scrolly-stage { --acc: var(--gold); }
.s-count .s-cur { color: var(--acc); }
.s-bar i { background: linear-gradient(90deg, var(--acc), var(--cyan)); }
.s-num { color: #fff; border-color: color-mix(in srgb, var(--acc) 55%, transparent); background: color-mix(in srgb, var(--acc) 28%, rgba(10,16,30,.6)); }
.s-panel .cat { color: var(--acc); }
.s-row dt { color: color-mix(in srgb, var(--acc) 70%, #fff); }
.s-row dt::before { background: var(--acc); }
.s-dot.on { background: var(--acc); border-color: var(--acc); box-shadow: 0 0 10px color-mix(in srgb, var(--acc) 60%, transparent); }

/* --- timeline accent cycle --- */
.tl-item:nth-child(6n+2) .yr { color: var(--cyan); }
.tl-item:nth-child(6n+3) .yr { color: var(--violet); }
.tl-item:nth-child(6n+4) .yr { color: var(--emerald); }
.tl-item:nth-child(6n+5) .yr { color: var(--orange); }
.tl-item:nth-child(6n+6) .yr { color: var(--blue); }
.tl-item:nth-child(6n+2) .dot { border-color: var(--cyan); box-shadow: 0 0 0 6px rgba(34,193,232,.14); }
.tl-item:nth-child(6n+3) .dot { border-color: var(--violet); box-shadow: 0 0 0 6px rgba(139,92,246,.14); }
.tl-item:nth-child(6n+4) .dot { border-color: var(--emerald); box-shadow: 0 0 0 6px rgba(18,185,129,.14); }
.tl-item:nth-child(6n+5) .dot { border-color: var(--orange); box-shadow: 0 0 0 6px rgba(255,122,41,.14); }
.tl-item:nth-child(6n+6) .dot { border-color: var(--blue); box-shadow: 0 0 0 6px rgba(18,115,230,.14); }
.tl-item:nth-child(6n+2) .card:hover { border-color: rgba(34,193,232,.5); }
.tl-item:nth-child(6n+3) .card:hover { border-color: rgba(139,92,246,.5); }
.tl-item:nth-child(6n+4) .card:hover { border-color: rgba(18,185,129,.5); }
.tl-item:nth-child(6n+5) .card:hover { border-color: rgba(255,122,41,.5); }
.tl-item:nth-child(6n+6) .card:hover { border-color: rgba(18,115,230,.5); }

/* --- ticker variants --- */
.strip.blue { background: linear-gradient(90deg, var(--blue-deep), var(--blue)); color: #fff; }
.strip.blue i { color: var(--gold-bright); }

/* --- hero aurora upgrade --- */
.hero-shade {
  background:
    radial-gradient(1000px 520px at 12% 18%, rgba(18, 115, 230, .34), transparent 60%),
    radial-gradient(900px 460px at 88% 30%, rgba(244, 179, 74, .26), transparent 62%),
    radial-gradient(700px 400px at 50% 110%, rgba(34, 193, 232, .20), transparent 60%),
    linear-gradient(180deg, rgba(7, 12, 25, .66) 0%, rgba(7, 12, 25, .5) 45%, var(--ink) 100%);
}
.hero-stat:nth-child(2) .num em { color: var(--cyan); }
.hero-stat:nth-child(3) .num em { color: var(--violet); }
.hero-stat:nth-child(4) .num em { color: var(--emerald); }

/* --- L&T-style business mosaic (homepage sectors) --- */
.mosaic { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 230px; gap: 18px; }
.mosaic .xtile { min-height: 0; }
.mosaic .xtile.big { grid-column: span 2; grid-row: span 2; }
.mosaic .xtile.wide { grid-column: span 2; }
@media (max-width: 1000px) { .mosaic { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .mosaic { grid-template-columns: 1fr; grid-auto-rows: 240px; } .mosaic .xtile.big { grid-column: span 1; grid-row: span 1; } }

/* --- statement parallax band --- */
.statement {
  position: relative; overflow: hidden; padding: 120px 0;
  background-image: var(--band-img); background-size: cover; background-position: center;
  background-attachment: fixed;
}
@media (hover: none) { .statement { background-attachment: scroll; } }
.statement::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(7, 15, 30, .92) 25%, rgba(10, 61, 122, .72) 60%, rgba(244, 179, 74, .28) 130%);
}
.statement .container { position: relative; z-index: 1; }
.statement .big {
  font-family: var(--font-head); text-transform: uppercase; font-weight: 600;
  font-size: clamp(30px, 4.6vw, 56px); line-height: 1.12; color: #fff; letter-spacing: .5px;
  max-width: 900px;
}
.statement .big em { font-style: normal; }
.statement p.tail { color: var(--text-inverse); font-size: 16.5px; line-height: 1.8; max-width: 640px; margin-top: 18px; }

/* --- news / story cards (light) --- */
.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr)); gap: 24px; }
.news-card {
  background: #fff; border: 1px solid #e4ecf6; border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .45s var(--ease-out), box-shadow .45s, border-color .45s;
}
.news-card:hover { transform: translateY(-8px); box-shadow: 0 28px 55px -24px rgba(10, 61, 122, .35); border-color: rgba(18, 115, 230, .45); }
.news-card .nimg { height: 210px; overflow: hidden; position: relative; }
.news-card .nimg img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out); }
.news-card:hover .nimg img { transform: scale(1.08); }
.news-card .ndate {
  position: absolute; top: 14px; left: 14px;
  background: var(--gold); color: var(--ink); font-weight: 800; font-size: 12px;
  padding: 6px 13px; border-radius: 999px;
}
.news-card .nbody { padding: 24px 24px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.news-card h3 { font-size: 18.5px; font-weight: 800; color: var(--ink); line-height: 1.35; transition: color .3s; }
.news-card:hover h3 { color: var(--blue); }
.news-card p { color: var(--text-soft); font-size: 14px; line-height: 1.7; flex: 1; }
.news-card .nmore { color: var(--blue); font-weight: 800; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; display: inline-flex; align-items: center; gap: 8px; }
.news-card .nmore i { transition: transform .35s var(--ease-spring); }
.news-card:hover .nmore i { transform: translateX(6px); }

/* --- gradient CTA band --- */
.cta-band.vivid { background: linear-gradient(120deg, var(--blue-deep) 0%, var(--blue) 45%, #7db3ec 100%); }
.cta-band.vivid .glow { background: radial-gradient(circle, rgba(244, 179, 74, .4), transparent 65%); }
.cta-band.vivid .sec-head .kicker { color: var(--gold-bright); }
.cta-band.vivid p { color: #e3eefc; }

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  .reveal, .reveal-left, .reveal-right, .reveal-scale, [data-stagger] > * { opacity: 1; transform: none; }
  .page-hero .crumbs, .page-hero .sub, .hero-sub, .hero-ctas, .hero-stats, .scroll-hint { opacity: 1; }
  .page-hero h1 span, .hero h1 .word > span { transform: none; }
}
