:root {
  /* Pleasant blue palette — US Solar Market trust colors */
  --blue: #1B6CB0;
  --blue-dark: #145A94;
  --blue-deeper: #0E3D66;
  --blue-light: #E8F1F9;
  --blue-lighter: #F4F8FC;
  --sky: #4BA3E3;
  --gold: #E8A21A;
  --gold-light: #FEF7E8;
  --navy: #0B1D33;
  --white: #FFFFFF;
  --gray-50: #F8F9FB;
  --gray-100: #EDF0F4;
  --gray-200: #D8DDE5;
  --gray-400: #97A2B0;
  --gray-600: #5A6577;
  --gray-800: #2C3647;
  --gray-900: #1A2130;
  --green: #1B9E6D;
  --green-light: #E6F7F0;
    --deep-navy: #0A1628;
  --navy-alt: #112240;
  --deep-blue: #1B3A5C;
  --solar-gold: #e8a917;
  --solar-amber: #f5c842;
  --amber: #D4880F;
  --amber-bg: #FFF7E6;
  --amber-border: #F0D48B;
  --red: #C0392B;
  --red-bg: #FDF0EE;
  --ink: #111318;
    --ink-soft: #2D3142;
    --ink-muted: #5C6378;
    --paper: #FAFAF8;
    --paper-warm: #F5F3EF;
    --rule: #DDD9D1;
  --off-white: #f8f9fa;
  --warm-white:#fdfcf9;
  --light-blue: #a8c4e0;
  --teal: #2a9d8f;
  --emerald: #0d7c5f;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.05);
  --shadow-md: 0 4px 16px rgba(0,0,0,.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.08);
  --r: 12px;
}
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{font-family:'Plus Jakarta Sans',sans-serif;background:var(--white);color:var(--gray-900);-webkit-font-smoothing:antialiased}

/* ══ NAV ══ */
.nav{position:fixed;top:0;left:0;right:0;z-index:100;padding:1rem 8.5rem;display:flex;align-items:center;justify-content:space-between;backdrop-filter:blur(16px);background:rgba(255,255,255,.94);border-bottom:1px solid var(--gray-100);transition:all .35s}

.nav-left{display:flex;align-items:center;gap:1.5rem}
.nav-logo{display:flex;align-items:center;text-decoration:none}
.nav-logo img{height:75px;transition:height .35s}
.nav-badge{font-size:.62rem;font-weight:800;letter-spacing:.08em;text-transform:uppercase;padding:.3rem .65rem;border-radius:5px;background:var(--green-light);color:var(--green);border:1px solid rgba(27,158,109,.15);white-space:nowrap}
.nav-links{display:flex;gap:.25rem;list-style:none;align-items:center}
.nav-links>li{position:relative}
.nav-links>li>a{text-decoration:none;color:var(--gray-600);font-weight:600;font-size:.92rem;transition:all .2s;padding:.55rem .85rem;border-radius:7px;display:flex;align-items:center;gap:.35rem;white-space:nowrap}
.nav-links>li>a:hover,.nav-links>li:hover>a{color:var(--blue);background:var(--blue-light)}
.nav-links>li>a .caret{width:11px;height:11px;stroke:currentColor;fill:none;stroke-width:2.5;transition:transform .2s}
.nav-links>li:hover>a .caret{transform:rotate(180deg)}


/* Dropdowns */
.dropdown{position:absolute;top:calc(100% + 4px);left:0;min-width:240px;padding:.6rem 0;background:var(--white);border:1px solid var(--gray-100);border-radius:12px;box-shadow:var(--shadow-lg);opacity:0;visibility:hidden;transform:translateY(8px);transition:all .2s ease;z-index:110}
li:hover>.dropdown{opacity:1;visibility:visible;transform:translateY(0)}
.dropdown-label{font-size:.62rem;font-weight:800;letter-spacing:.1em;text-transform:uppercase;color:var(--gray-400);padding:.55rem 1.15rem .3rem;display:block}
.dropdown a{display:block;padding:.55rem 1.15rem;font-size:.88rem;font-weight:500;color:var(--gray-600);text-decoration:none;transition:all .15s}
.dropdown a:hover{background:var(--blue-light);color:var(--blue);padding-left:1.35rem}

.nav-right{display:flex;align-items:center;gap:.85rem}
.nav-reserve{padding:.6rem 1.4rem;border-radius:9px;background:transparent;border:1.5px solid var(--blue);color:var(--blue);text-decoration:none;font-size:.85rem;font-weight:700;transition:all .2s;white-space:nowrap}
.nav-reserve:hover{background:var(--blue-light);border-color:var(--blue-dark)}
.nav-cta{padding:.6rem 1.6rem;border-radius:9px;background:var(--blue);color:var(--white);text-decoration:none;font-size:.9rem;font-weight:700;transition:all .2s;white-space:nowrap}
.nav-cta:hover{background:var(--blue-dark);box-shadow:0 4px 14px rgba(27,108,176,.25)}

/* Hamburger */
.hamburger{display:none;width:44px;height:44px;border:1.5px solid var(--gray-200);background:var(--white);cursor:pointer;padding:0;flex-direction:column;justify-content:center;align-items:center;gap:6px;border-radius:8px;transition:all .2s}
.hamburger:hover{border-color:var(--blue);background:var(--blue-light)}
.hamburger span{display:block;width:22px;height:2px;background:var(--gray-800);border-radius:2px;transition:all .25s}
.hamburger.open span:nth-child(1){transform:rotate(45deg) translate(4px,6px)}
.hamburger.open span:nth-child(2){opacity:0}
.hamburger.open span:nth-child(3){transform:rotate(-45deg) translate(4px,-6px)}

/* Mobile nav */
.mobile-menu{display:none;position:fixed;top:72px;left:0;right:0;bottom:0;background:var(--white);z-index:99;padding:1.5rem 2rem;overflow-y:auto;border-top:1px solid var(--gray-100)}
.mobile-menu.open{display:block}
.mobile-menu a{display:block;padding:.75rem 0;font-size:1rem;font-weight:600;color:var(--gray-800);text-decoration:none;border-bottom:1px solid var(--gray-100)}
.mobile-menu a:hover{color:var(--blue)}
.mobile-menu .mm-label{font-size:.65rem;font-weight:800;letter-spacing:.1em;text-transform:uppercase;color:var(--gray-400);padding:1.1rem 0 .35rem;border-bottom:none}
.mobile-menu .mm-sub{padding-left:1.25rem}
.mobile-menu .mm-sub a{font-weight:500;font-size:.95rem;color:var(--gray-600)}

/* Nav responsive — mid screens */
@media(max-width:1200px){
  .nav{padding:.85rem 2rem}
  .nav.scrolled{padding:.55rem 2rem}
  .nav-logo img{height:76px}
  .nav.scrolled .nav-logo img{height:34px}
  .nav-links>li>a{font-size:.82rem;padding:.45rem .6rem}
  .nav-cta{font-size:.82rem;padding:.5rem 1.2rem}
  .nav-reserve{display:none}
  .dropdown a{font-size:.82rem}
}
@media(max-width:900px){
  .nav{padding:.65rem 1.5rem}
  .nav.scrolled{padding:.5rem 1.5rem}
  .nav-logo img{height:52px}
  .nav.scrolled .nav-logo img{height:34px}
  .nav-links{display:none}
  .hamburger{display:flex}
  .nav-cta{display:none}
  .nav-reserve{display:none}
  .mobile-menu{top:62px}
}
@media(max-width:600px){
  .nav{padding:.55rem 1rem}
  .nav-logo img{height:36px}
  .nav.scrolled .nav-logo img{height:30px}
  .hamburger{width:40px;height:40px;gap:5px}
  .hamburger span{width:20px}
  .mobile-menu{top:56px;padding:1rem 1.25rem}
  .mobile-menu a{font-size:.92rem;padding:.65rem 0}
}

/* ══ HERO SLIDER ══ */
.slider{position:relative;width:100%;height:100vh;min-height:640px;overflow:hidden;background:var(--navy)}

.slide{position:absolute;inset:0;opacity:0;visibility:hidden;transition:opacity 1.2s ease,visibility 0s 1.2s}
.slide.active{opacity:1;visibility:visible;transition:opacity 1.2s ease,visibility 0s 0s;z-index:2}

/* Loading shimmer on slide bg while video loads */
.slide-bg{position:absolute;inset:0;background:var(--navy)}
.slide-bg img,.slide-bg video{width:100%;height:100%;object-fit:cover;display:block}
/* Ken Burns on images */
.slide-bg img{animation:kenBurns 12s ease both}
@keyframes kenBurns{0%{transform:scale(1)}100%{transform:scale(1.08)}}
/* Reset ken burns on inactive slides */
.slide:not(.active) .slide-bg img{animation:none}

/* Overlay — pleasant blue gradient */
.slide-overlay{position:absolute;inset:0;z-index:1}
.ov-blue{background:linear-gradient(105deg,rgba(11,29,51,.88) 0%,rgba(27,108,176,.45) 55%,rgba(75,163,227,.15) 100%)}
.ov-navy{background:linear-gradient(105deg,rgba(11,29,51,.9) 0%,rgba(14,61,102,.55) 50%,rgba(27,108,176,.2) 100%)}
.ov-green{background:linear-gradient(105deg,rgba(11,29,51,.88) 0%,rgba(27,158,109,.25) 50%,rgba(27,108,176,.15) 100%)}

/* Content */
.slide-content{position:absolute;inset:0;z-index:3;display:flex;align-items:center;padding:0 20rem}
.glass-card {
  /* 1. Semi-transparent background */
  background: rgba(255, 255, 255, 0.1); 

  
  /* 2. Frosted glass blur effect (Standard & Safari support) */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  
  /* 3. Subtle edge border */
  border: 1px solid rgba(255, 255, 255, 0.2);
  
  /* 4. Soft shadow for depth */
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  
  /* Final touches */
  border-radius: 12px;
  color: #fff;
  padding: 20px;
}
.slide-inner{max-width:1260px;width:100%;}

/* Chips */
.slide-chips{display:flex;gap:.45rem;flex-wrap:wrap;margin-bottom:1.1rem}
.schip{font-size:.6rem;font-weight:800;letter-spacing:.08em;text-transform:uppercase;padding:.28rem .7rem;border-radius:5px;backdrop-filter:blur(6px)}
.schip-blue{background:var(--blue);color:var(--white)}
.schip-gold{background:rgba(232,160,32,.14);color:#Fac765;border:1px solid rgba(232,160,32,.36)}
.schip-green{background:rgba(232,160,32,.14);color:#6EDDB4;border:1px solid rgba(27,158,109,.25)}
.schip-ghost{background:rgba(232,160,32,.14);color:rgba(255,255,255,.85);border:1px solid rgba(255,255,255,.15)}

.slide h2{font-size:clamp(2.2rem,4.5vw,4.6rem);font-weight:800;line-height:1.12;letter-spacing:-.03em;color:var(--white);}
.slide h2 .hl-sky{color:#7EC8F5}
.slide h2 .hl-gold{color:#FDCE5A}
.slide h2 .hl-green{color:#6EDDB4}

.slide-desc{margin-top:1rem;margin-bottom:1rem;font-size:1.2rem;line-height:1.7;color:rgba(255,255,255,.95);max-width:880px}

.slide-btns{display:flex;gap:.55rem;margin-top:1.75rem;flex-wrap:wrap}
.sbtn{display:inline-flex;align-items:center;gap:.4rem;padding:.72rem 1.5rem;border-radius:8px;font-size:.85rem;font-weight:700;text-decoration:none;transition:all .25s}
.sbtn svg{width:15px;height:15px}
.sbtn-blue{background:var(--blue);color:var(--white)}
.sbtn-blue:hover{background:var(--sky);box-shadow:0 6px 18px rgba(27,108,176,.3);transform:translateY(-2px)}
.sbtn-white{background:var(--white);color:var(--gray-900)}
.sbtn-white:hover{background:var(--gray-50);transform:translateY(-2px);box-shadow:0 6px 18px rgba(0,0,0,.08)}
.sbtn-ghost{color:#1a1a1a;border:1.5px solid rgba(255,255,255,.2);background:rgba(255,255,255,.05);backdrop-filter:blur(4px)}
.sbtn-ghost:hover{background:rgba(255,255,255,.12);border-color:rgba(255,255,255,.35)}

/* Slide stats row */
.slide-kpis{display:flex;gap:2rem;margin-top:2rem; background-color:#1a1a1a; padding:12px;}
.kpi{padding-left:.85rem}
.kpi .kv{font-size:1.1rem;font-weight:800;color:var(--white);line-height:1}
.kpi.blue .kv{color:#7EC8F5}
.kpi.gold .kv{color:#FDCE5A}
.kpi.green .kv{color:#6EDDB4}
.kpi .kl{font-size:.65rem;color:rgba(255,255,255,.4);font-weight:600;margin-top:.15rem}
/* Bullet checklist */
.slide-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.slide-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 14px;
  color: rgba(255,255,255,0.95);
  line-height: 1.4;
  width:100%;
  margin-bottom:4px;
}
.slide-bullets li::before {
  content: '';
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #E8A020;
  flex-shrink: 0;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a0800' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 10px 10px;
  background-repeat: no-repeat;
  background-position: center;
}

/* 2-column bullets */
.slide-bullets-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px 28px;
  max-width: 620px;
}
@media (max-width: 480px) {
  .slide-bullets-2col { grid-template-columns: 1fr; }
  .ctrl-right {overflow:hidden;}
  .ctrl-left {overflow:hidden;}
  .dot {max-width:12px;}
  .hi1 {display:none;}
  .slide-col-head {margin-top:12px;}
  .m1 {margin-bottom:12px;}
}

/* 2-column layout for slide 2 */
.slide-cols2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.4rem;
}
@media (max-width: 560px) {
  .slide-cols2 { grid-template-columns: 1fr; }
}
.slide-col-head {
  font-size: 10px;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 11px;
  font-weight: 600;
  background: rgba(255,255,255,.8);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  padding: 5px 14px 5px 7px;
  max-width:170px;
  text-align:center;
}

/* Step pills */
.slide-steps {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  max-width:720px;
}
.slide-step {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.8);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  padding: 5px 14px 5px 7px;
  font-size: 12px;
  color: rgba(0,0,0,.8);
  margin-bottom:8px;
}
.slide-step-n {
  background: #E8A020;
  color: #1a0800;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Tag pills row */
.slide-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}
.slide-tg {
  background: rgba(255,255,255,.8);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  padding: 4px 14px;
  font-size: 12px;
  color: rgba(0,0,0,.8);
}

/* Feature checklist table */
.slide-ftbl {
  background: rgba(255,255,255,.07);
  border-radius: 10px;
  overflow: hidden;
  max-width: 360px;
  margin-bottom: 1.3rem;
}
.slide-fr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 16px;
  font-size: 13px;
  color: rgba(255,255,255,.78);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.slide-fr:last-child { border-bottom: none; }
.slide-fck {
  color: #4ADE80;
  font-size: 16px;
  flex-shrink: 0;
}

/* ── Slide 7 Timeline ── */
.slide-tl{display:grid;grid-template-columns:repeat(4,1fr);gap:0;margin:1.6rem 0 1.75rem;max-width:820px}
.slide-tl-step{position:relative;padding-right:1.5rem}
.slide-tl-step:last-child{padding-right:0}
/* Connecting line between steps */
.slide-tl-step:not(:last-child)::after{content:'';position:absolute;top:1.05rem;left:calc(2.1rem + 8px);right:0;height:1px;background:linear-gradient(90deg,rgba(253,206,90,.45) 0%,rgba(255,255,255,.08) 100%)}
/* Numbered circle */
.slide-tl-num{display:inline-flex;width:2.1rem;height:2.1rem;border-radius:50%;background:rgba(253,206,90,.12);border:1.5px solid rgba(253,206,90,.45);color:#FDCE5A;font-size:.7rem;font-weight:800;align-items:center;justify-content:center;letter-spacing:.02em;margin-bottom:.9rem;position:relative;z-index:1}
.slide-tl-title{font-size:.68rem;font-weight:800;color:rgba(255,255,255,.92);text-transform:uppercase;letter-spacing:.08em;margin-bottom:.55rem}
.slide-tl-subs{display:flex;flex-direction:column;gap:.35rem}
.slide-tl-subs span{font-size:.68rem;color:rgba(255,255,255,.52);line-height:1.4;display:flex;align-items:flex-start;gap:.4rem}
.slide-tl-subs span::before{content:'—';color:rgba(253,206,90,.45);flex-shrink:0;font-size:.55rem;margin-top:.15rem}
@media(max-width:700px){.slide-tl{grid-template-columns:repeat(2,1fr);gap:1.25rem 1rem}.slide-tl-step::after{display:none}.slide-tl-step{padding-right:0}}

/* Container & Section Context */
.nanopv-bento-section {
  padding: 80px 20px;
  background-color: #faf9f6; /* Premium warm gallery off-white background */
  font-family:'Plus Jakarta Sans',sans-serif;
  color: #1a2530;
}

.bento-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Base Grid Layout Components */
.bento-grid {
  display: grid;
  gap: 24px;
}

.row-1 {
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
}

.row-2 {
  grid-template-columns: 1.8fr 1.2fr;
}

@media (max-width: 992px) {
  .row-1, .row-2 {
    grid-template-columns: 1fr;
  }
}

/* Base Bento Card Standards */
.bento-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.015);
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-sizing: border-box;
}

/* Card Variation Styles (Backgrounds) */
.main-headline-card {
  background: transparent;
  border: none;
  box-shadow: none;
  padding-left: 10px;
  justify-content: center;
}

.tint-bg {
  background-color: #f7f5ee; /* Soft bone/cream tint card */
}

.gradient-light-bg {
  background: linear-gradient(180deg, #fcfdfe 0%, #eceef1 100%);
}

.blue-gradient-bg {
  background: linear-gradient(180deg, #7ec0ee 0%, #145a94 80%);
}

.dark-slate-bg {
  background-color: #11161d; /* Deep slate background layer */
}

/* Typography Overrides */
.bento-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #0d233a;
  line-height: 1.15;
  margin: 0 0 16px 0;
  letter-spacing: -0.03em;
}

.bento-subtitle {
  font-size: 1.15rem;
  color: #556b82;
  margin: 0;
  line-height: 1.5;
}

.card-heading {
  font-size: 1.45rem;
  font-weight: 700;
  color: #0d233a;
  margin: 16px 0 12px 0;
}

.card-text {
  font-size: 0.95rem;
  color: #556b82;
  line-height: 1.6;
  margin: 0;
}

/* Compact Tags/Labels */
.bento-tag {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 12px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.04);
  color: #475569;
}

/* Inline Image Containers (Cards 2 & 3) */
.feature-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.feature-card .card-text-wrapper {
  margin-bottom: 24px;
}

.feature-card .img-wrapper {
  width: 100%;
  height: 150px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.feature-card .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(102%) brightness(98%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover .img-wrapper img {
  transform: scale(1.05);
}

/* Background Image Overlay Architecture (Cards 4 & 5) */
.image-cover-card {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.card-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -1;
  mix-blend-mode: overlay; /* Seamless integration into underlying brand gradients */
  opacity: 0.45;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.image-cover-card:hover .card-image-overlay {
  transform: scale(1.03);
}

.opacity-25 {
  opacity: 0.25;
  mix-blend-mode: luminosity; /* Keeps complex background graphics strictly within brand dark mode profiles */
}

.card-content-z {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.visual-card-content {
  position: relative;
  z-index: 2;
  margin-top: auto; /* Forces content block to sit cleanly at the card baseline */
  max-width: 85%;
}

/* Interactive Stakeholder Chip Styling */
.stakeholders-bento-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0;
}

.s-tag {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: #f1f5f9;
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
  transition: all 0.25s ease;
}

.s-tag:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

/* Global Utilities */
.text-white { color: #ffffff !important; }
.text-white-muted { color: #cbd5e1 !important; }
.tag-dark { background: rgba(255, 255, 255, 0.15) !important; color: #ffffff !important; }
.tag-accent { background: #145a94 !important; color: #ffffff !important; }
.mt-auto { margin-top: auto !important; }

/* Content animations — reset per slide */
.slide .slide-chips,.slide h2,.slide .slide-desc,.slide .slide-btns,.slide .slide-kpis,.slide .slide-tl{opacity:0;transform:translateY(20px)}
.slide.active .slide-chips{animation:fadeSlide .6s .15s both}
.slide.active h2{animation:fadeSlide .6s .25s both}
.slide.active .slide-desc{animation:fadeSlide .6s .4s both}
.slide.active .slide-tl{animation:fadeSlide .6s .5s both}
.slide.active .slide-btns{animation:fadeSlide .6s .62s both}
.slide.active .slide-kpis{animation:fadeSlide .6s .7s both}
@keyframes fadeSlide{from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}

/* ── Slider Controls ── */
.ctrl-bottom{position:absolute;bottom:0;left:0;right:0;z-index:10;padding:0 3rem 2rem;display:flex;align-items:flex-end;justify-content:space-between}
.ctrl-left{display:flex;align-items:center;gap:1rem}
.dots{display:flex;gap:.35rem}
.dot{width:28px;height:3px;border-radius:2px;background:rgba(255,255,255,.2);cursor:pointer;transition:all .3s;border:none;padding:0}
.dot.active{background:var(--white);width:44px}
.counter{font-size:.7rem;font-weight:700;color:rgba(255,255,255,.4);letter-spacing:.05em}
.ctrl-right{display:flex;align-items:center;gap:.35rem}
.arrow{width:40px;height:40px;border-radius:9px;border:1.5px solid rgba(255,255,255,.15);background:rgba(255,255,255,.05);backdrop-filter:blur(6px);display:flex;align-items:center;justify-content:center;cursor:pointer;transition:all .25s}
.arrow:hover{background:rgba(255,255,255,.15);border-color:rgba(255,255,255,.3)}
.arrow svg{width:16px;height:16px;stroke:var(--white);fill:none;stroke-width:2}
.pp-btn{width:40px;height:40px;border-radius:9px;border:1.5px solid rgba(255,255,255,.15);background:rgba(255,255,255,.05);backdrop-filter:blur(6px);display:flex;align-items:center;justify-content:center;cursor:pointer;transition:all .25s}
.pp-btn:hover{background:rgba(255,255,255,.15)}
.pp-btn svg{width:14px;height:14px;stroke:var(--white);fill:none;stroke-width:2}

/* Progress */
.progress{position:absolute;bottom:0;left:0;right:0;height:3px;background:rgba(255,255,255,.06);z-index:11}
.progress-bar{height:100%;background:linear-gradient(90deg,var(--blue),var(--sky));width:0%;border-radius:0 2px 2px 0}

/* ══ SHARED ══ */
.container{max-width:1200px;margin:0 auto;padding:0 3rem}
.sec{padding:5.5rem 0}
.sec-alt{background:var(--gray-50)}
.sec-blue{background:var(--blue);color:var(--white)}
.sec-navy{background:var(--navy);color:var(--white)}
.slbl{font-size:.66rem;font-weight:800;letter-spacing:.13em;text-transform:uppercase;color:var(--blue);margin-bottom:.5rem}
.sec-blue .slbl,.sec-navy .slbl{color:rgba(255,255,255,.5)}
.stitle{font-size:clamp(1.7rem,3vw,2.3rem);font-weight:800;line-height:1.18;letter-spacing:-.025em;margin-bottom:.75rem}
.sec-blue .stitle,.sec-navy .stitle{color:var(--white)}
.ssub{font-size:.95rem;line-height:1.7;color:var(--gray-600);max-width:560px}
.sec-blue .ssub,.sec-navy .ssub{color:rgba(255,255,255,.6)}
.btn{display:inline-flex;align-items:center;gap:.45rem;padding:.72rem 1.5rem;border-radius:8px;font-size:.85rem;font-weight:700;text-decoration:none;transition:all .25s}
.btn svg{width:15px;height:15px}
.btn-blue{background:var(--blue);color:var(--white)}
.btn-blue:hover{background:var(--blue-dark);box-shadow:0 6px 18px rgba(27,108,176,.2);transform:translateY(-2px)}
.btn-outline{color:var(--gray-800);border:1.5px solid var(--gray-200);background:var(--white)}
.btn-outline:hover{border-color:var(--blue);color:var(--blue)}

/* Certs */
.cert-strip{padding:1.75rem 3rem;background:var(--white);border-bottom:1px solid var(--gray-100);display:flex;justify-content:center;align-items:center;gap:2.5rem;flex-wrap:wrap}
.cert-strip img{height:100px;opacity:.52;filter:grayscale(70%);transition:all .3s}
.cert-strip img:hover{opacity:.9;filter:grayscale(0%)}

/* ══ MFG ══ */
.mfg-grid{display:grid;grid-template-columns:1fr 1fr;gap:3.5rem;align-items:start;margin-top:2rem}
.mfg-text p{font-size:.93rem;line-height:1.8;color:var(--gray-600);margin-bottom:1rem}
.mfg-hl{padding:.9rem 1.1rem;background:var(--blue-light);border-left:3px solid var(--blue);border-radius:0 8px 8px 0;font-size:.88rem;line-height:1.6;color:var(--blue-dark);font-weight:600;margin:1.25rem 0}
.pipeline{display:flex;flex-direction:column}
.pstep{display:flex;gap:.85rem;padding:1rem 0;border-bottom:1px solid var(--gray-100)}
.pstep:last-child{border-bottom:none}
.pi{width:38px;height:38px;border-radius:9px;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.pi svg{width:17px;height:17px;fill:none;stroke-width:2}
.pi-blue{background:var(--blue-light)}.pi-blue svg{stroke:var(--blue)}
.pi-gold{background:var(--gold-light)}.pi-gold svg{stroke:var(--gold)}
.pi-green{background:var(--green-light)}.pi-green svg{stroke:var(--green)}
.pstep h4{font-size:.85rem;font-weight:700;color:var(--gray-900);margin-bottom:.12rem}
.pstep p{font-size:.75rem;line-height:1.5;color:var(--gray-400)}
.ptag{display:inline-block;font-size:.55rem;font-weight:800;letter-spacing:.06em;text-transform:uppercase;padding:.18rem .45rem;border-radius:4px;margin-top:.3rem}
.ptag-blue{background:var(--blue-light);color:var(--blue)}
.ptag-gold{background:var(--gold-light);color:var(--gold)}
.ptag-green{background:var(--green-light);color:var(--green)}

/* ══ FEOC ══ */
.feoc-hdr{text-align:center;max-width:640px;margin:0 auto 2.5rem}
.feoc-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem}
.fc{padding:1.6rem;border-radius:var(--r);background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.08);transition:all .3s}
.fc:hover{background:rgba(255,255,255,.12);transform:translateY(-3px)}
.fci{width:40px;height:40px;border-radius:9px;background:rgba(255,255,255,.1);display:flex;align-items:center;justify-content:center;margin-bottom:.85rem}
.fci svg{width:18px;height:18px;stroke:var(--white);fill:none;stroke-width:1.8}
.fc h4{font-size:.88rem;font-weight:700;color:var(--white);margin-bottom:.3rem}
.fc p{font-size:.76rem;line-height:1.55;color:rgba(255,255,255,.5)}
.feoc-bar{display:grid;grid-template-columns:repeat(4,1fr);gap:.75rem;margin-top:2.5rem}
.fb{text-align:center;padding:1.5rem;border-radius:var(--r);background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.08);transition:background .25s}
.fb:hover{background:rgba(255,255,255,.1)}
.fb .fv{font-size:2rem;font-weight:800;color:var(--white);letter-spacing:-.02em}
.fb:last-child .fv{color:#FDCE5A}
.fb .fl{font-size:.62rem;color:rgba(255,255,255,.45);margin-top:.2rem;font-weight:700;letter-spacing:.04em;text-transform:uppercase}

/* ══ PRODUCTS ══ */
.pgrid{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem;margin-top:2rem}
.pc{padding:1.4rem;border-radius:var(--r);background:var(--white);border:1px solid var(--gray-100);transition:all .3s;text-decoration:none;color:var(--gray-900);display:flex;flex-direction:column}
.pc:hover{box-shadow:var(--shadow-lg);transform:translateY(-3px);border-color:rgba(27,108,176,.15)}
.pc .pcc{font-size:.55rem;font-weight:800;letter-spacing:.07em;text-transform:uppercase;padding:.18rem .45rem;border-radius:4px;background:var(--blue-light);color:var(--blue);width:fit-content;margin-bottom:.65rem}
.pc h4{font-size:.95rem;font-weight:700;margin-bottom:.25rem}
.pc p{font-size:.75rem;line-height:1.5;color:var(--gray-400);flex-grow:1}
.pc .pw{margin-top:.65rem;padding-top:.55rem;border-top:1px solid var(--gray-100);font-size:1.1rem;font-weight:800;color:var(--blue)}
.pc .pw span{font-size:.62rem;color:var(--gray-400);font-weight:600}

/* ══ ABOUT ══ */
.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:3.5rem;align-items:center;margin-top:2rem}
.about-img{border-radius:14px;overflow:hidden;box-shadow:var(--shadow-lg)}
.about-img img{width:100%;display:block}
.about-text p{font-size:.93rem;line-height:1.8;color:var(--gray-600);margin-bottom:1rem}
.cklist{display:flex;flex-direction:column;gap:.45rem;margin-top:1rem}
.ck{display:flex;align-items:center;gap:.5rem;font-size:.85rem;color:var(--gray-600);font-weight:500}
.ck svg{width:17px;height:17px;stroke:var(--green);fill:none;stroke-width:2.5;flex-shrink:0}

/* ══ PROJECTS ══ */
.prow{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem;margin-top:2rem}
.pj{border-radius:var(--r);overflow:hidden;aspect-ratio:4/3}
.pj img{width:100%;height:100%;object-fit:cover;transition:transform .5s}
.pj:hover img{transform:scale(1.05)}

/* ══ NEWS ══ */
.ngrid{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem;margin-top:2rem}
.nc{border-radius:var(--r);overflow:hidden;background:var(--white);border:1px solid var(--gray-100);transition:all .3s;text-decoration:none;color:var(--gray-900)}
.nc:hover{box-shadow:var(--shadow-md);transform:translateY(-3px)}
.nc-img{height:150px;overflow:hidden}
.nc-img img{width:100%;height:100%;object-fit:cover;transition:transform .4s}
.nc:hover .nc-img img{transform:scale(1.05)}
.nc-body{padding:1.1rem 1.4rem}
.nc-body .date{font-size:.65rem;font-weight:700;color:var(--gray-400);text-transform:uppercase;letter-spacing:.05em;margin-bottom:.35rem}
.nc-body h4{font-size:.88rem;font-weight:700;line-height:1.35}

/* ══ NL ══ */
.nlbar{padding:2.5rem;border-radius:14px;background:linear-gradient(105deg,var(--blue-deeper) 0%,var(--blue) 100%);display:grid;grid-template-columns:1fr 1fr;gap:2rem;align-items:center;margin-top:2.5rem;border:1px solid rgba(255,255,255,.06)}
.nlbar .stitle{color:var(--white);font-size:1.15rem}
.nlbar .slbl{color:rgba(255,255,255,.5)}
.nlf{display:flex;gap:.4rem}
.nlf input{flex:1;padding:.7rem .9rem;border-radius:8px;border:1px solid rgba(255,255,255,.2);background:rgba(255,255,255,.08);color:var(--white);font-family:inherit;font-size:.85rem;outline:none}
.nlf input::placeholder{color:rgba(255,255,255,.35)}
.nlf input:focus{border-color:rgba(255,255,255,.4)}
.nlf button{padding:.7rem 1.3rem;border-radius:8px;border:none;background:var(--white);color:var(--blue);font-family:inherit;font-size:.82rem;font-weight:700;cursor:pointer;transition:all .2s;white-space:nowrap}
.nlf button:hover{background:var(--gray-50)}

/* ══ CTA ══ */
.cta-sec{padding:4.5rem 3rem;text-align:center;background:var(--blue-lighter);border-top:1px solid var(--gray-100)}
.cta-in{max-width:520px;margin:0 auto}

/* 1. GLOBAL VARIABLES (Ensure these exist in your :root) */
/* 2. BASE HERO STRUCTURE (Shared by all versions) */

.hero {
  position: relative;
  min-height:70vh;
  display: flex;
  align-items: center;
  background: var(--deep-navy);
  color: var(--off-white);
  overflow: hidden;
  padding: 3rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(170deg, var(--deep-navy) 0%, var(--navy-alt) 45%, var(--deep-blue) 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(168,196,224,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168,196,224,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* 3. TYPOGRAPHY & ELEMENTS */
.hero h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.03em;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}
.blue { color: var(--light-blue); }
.gold { color: var(--solar-gold); }
.hero-actions { display: flex; gap: 1rem; margin-top: 2rem; opacity: 0; animation: fadeUp 0.8s 0.9s forwards; }
.hero-subtitle {
  font-size: 1.15rem;
  color: var(--light-blue);
  line-height: 1.7;
  max-width: 680px;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1.1rem;
  border: 1px solid rgba(232, 169, 23, 0.3);
  border-radius: 100px;
  color: var(--solar-gold);
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}

/* 4. MODIFIER: ARCHITECTURAL VERSION */
.hero--arch .line {
  position: absolute;
  background: rgba(168, 196, 224, 0.06);
  z-index: 1;
}
.hero--arch .line.v1 { width: 1px; height: 100%; left: 20%; }
.hero--arch .line.h1 { height: 1px; width: 100%; top: 35%; }

.hero--arch .accent-box {
  position: absolute;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(42, 157, 143, 0.12);
  top: 18%;
  right: 22%;
  transform: rotate(12deg);
  animation: archFloat 8s ease-in-out infinite;
}

/* 5. MODIFIER: PRODUCT SHOWCASE (Split Layout) */
.hero--product .hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding:8rem 3rem 3rem;
}

.hero-product-img {
  position: relative;
  display: flex;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
}

.hero-product-img img {
  max-width: 100%;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.4));
  transition: transform 0.6s ease;
}

.hero-product-img:hover img { transform: scale(1.05); }
.hero-breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; color: var(--light-blue); margin-bottom: 1.5rem; opacity: 0; animation: fadeUp 0.8s 0.2s forwards; }
.hero-breadcrumb a { color: var(--light-blue); text-decoration: none; opacity: 0.7; transition: opacity 0.3s; }
.hero-breadcrumb a:hover { opacity: 1; }
.hero-breadcrumb .sep { opacity: 0.4; }
.hero-tag { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1.1rem; border: 1px solid rgba(46,110,166,0.4); border-radius: 100px; color: var(--light-blue); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.5rem; opacity: 0; animation: fadeUp 0.8s 0.3s forwards; }
.hero-tag .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--poly-blue); animation: blink 2s infinite; }

/* 6. BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 2rem;
  border-radius: 100px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-gold {
  background: var(--solar-gold);
  color: var(--deep-navy);
}

.btn-gold:hover {
  background: var(--solar-amber);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232, 169, 23, 0.3);
}
.btn-outline-light  {
  background: transparent;
  color: var(--off-white);
  border: 1px solid rgba(168, 196, 224, 0.3);
}

.btn-outline-light:hover {
 border-color: var(--solar-gold); 
 color: var(--solar-amber); 
 transform: translateY(-2px);
}

/* 7. ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes archFloat {
  0%, 100% { transform: rotate(12deg) translateY(0); }
  50% { transform: rotate(12deg) translateY(-15px); }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ══ FOOTER ══ */
footer{background:var(--gray-900);color:var(--gray-400);padding:3.5rem 3rem 1.5rem}
.fgrid{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr 1fr;gap:2rem;padding-bottom:2rem;border-bottom:1px solid rgba(255,255,255,.06)}
.fgrid .fb-brand p{font-size:.78rem;line-height:1.65;opacity:.55;margin-top:.5rem;max-width:240px}
.fcol h5{font-size:.62rem;font-weight:800;letter-spacing:.1em;text-transform:uppercase;color:var(--gray-200);margin-bottom:.65rem}
.fcol ul{list-style:none;display:flex;flex-direction:column;gap:.8rem}
.fcol a{color:var(--gray-400);text-decoration:none;font-size:.78rem;transition:color .2s}
.fcol a:hover{color:var(--sky)}
.fbot{max-width:1200px;margin:0 auto;padding-top:1.25rem;display:flex;justify-content:space-between;font-size:.68rem;opacity:.35}

.reveal{opacity:0;transform:translateY(25px);transition:all .7s cubic-bezier(.16,1,.3,1)}
.reveal.visible{opacity:1;transform:translateY(0)}

.aboutconetent {
	padding: 100px 0;
	display: grid;
	width: 100%;
}
.about-images-content {
	position: relative;
	float: left;
	display: inline;
	max-width: 450px;
	gap: 40px;
}
.main-img {
	width: 100%;
	border-radius: 12px;
}
.small-img {
	position: absolute;
	right: 0;
	bottom: -40px;
	width: 50%;
	border-radius: 12px;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}
.stat-box {
	position: absolute;
	left: 30px;
	bottom: 80px;
	background: #1f3b63;
	color: white;
	padding: 25px;
	border-radius: 12px;
	width: 180px;
	text-align: center;
}
.stat-box h2 {
	font-size: 45px;
	font-weight: 800;
}
.subtitle {
	font-weight: 600;
	color: #1f3b63;
	margin-bottom: 10px;
}
.title {
	font-size: 44px;
	font-weight: 800;
	margin-bottom: 20px;
}
.about-text1 {
	color: #555;
	line-height: 1.7;
	display: grid;
	padding-left: 30px;
}

/* ══ RESPONSIVE ══ */
/* ══ STATS BAR ══ */
.stats-bar{background:var(--white);border-bottom:1px solid var(--gray-100);padding:2.25rem 3rem}
.stats-inner{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:repeat(4,1fr);gap:0}
.stat-item{text-align:center;padding:1.25rem 1.5rem;border-right:1px solid var(--gray-100)}
.stat-item:last-child{border-right:none}
.stat-item .sv{font-size:2rem;font-weight:800;color:var(--blue);line-height:1;letter-spacing:-.025em}
.stat-item .sl{font-size:.62rem;color:var(--gray-600);text-transform:uppercase;letter-spacing:.08em;font-weight:700;margin-top:.4rem}

/* ══ PRODUCT SECTION CTA ══ */
.prod-cta{text-align:center;margin-top:2.5rem}
.prod-cta .btn-outline{color:var(--blue);border:1.5px solid var(--blue);background:var(--white);border-radius:8px;font-size:.85rem;font-weight:700;padding:.7rem 1.6rem;display:inline-flex;align-items:center;gap:.45rem;text-decoration:none;transition:all .25s}
.prod-cta .btn-outline svg{width:14px;height:14px;stroke:currentColor;fill:none;stroke-width:2.5}
.prod-cta .btn-outline:hover{background:var(--blue);color:var(--white);box-shadow:0 6px 18px rgba(27,108,176,.2);transform:translateY(-2px)}

@media(max-width:1400px){.slide-content{padding:0 8rem}}
@media(max-width:1200px){.slide-content{padding:0 4rem}}
@media(max-width:1080px){.pgrid{grid-template-columns:repeat(2,1fr)}.feoc-grid{grid-template-columns:1fr 1fr}.feoc-bar{grid-template-columns:repeat(2,1fr)}.stats-inner{grid-template-columns:repeat(2,1fr)}.stat-item:nth-child(2){border-right:none}.stat-item:nth-child(3){border-right:1px solid var(--gray-100)}.stat-item:nth-child(3),.stat-item:nth-child(4){border-top:1px solid var(--gray-100)}}
@media(max-width:900px){
  .slider{min-height:100svh}
  .slide-content{padding:0 1.5rem}.slide h2{font-size:clamp(1.7rem,5vw,2.5rem)}.slide-kpis{gap:1rem;flex-wrap:wrap}
  .ctrl-bottom{padding:0 1.5rem 1.5rem}
  .container{padding:0 1.5rem}
  .mfg-grid{grid-template-columns:1fr;gap:2rem}
  .feoc-grid{grid-template-columns:1fr}
  .about-grid{grid-template-columns:1fr;gap:2rem}
  .prow{grid-template-columns:1fr 1fr}
  .ngrid{grid-template-columns:1fr}
  .nlbar{grid-template-columns:1fr;gap:1.25rem;padding:1.75rem}
  .fgrid{grid-template-columns:1fr 1fr;gap:1.5rem}
  .cert-strip{gap:1.25rem}.cert-strip img{height:26px}
}
@media(max-width:600px){
  .slide-kpis{gap:.75rem}.kpi .kv{font-size:1.1rem}.slide-desc{font-size:.88rem}
  .slide-btns{flex-direction:column}.sbtn{width:fit-content}
  .pp-btn{display:none}
  .pgrid{grid-template-columns:1fr}
  .feoc-bar{grid-template-columns:1fr}
  .prow{grid-template-columns:1fr}
  .fgrid{grid-template-columns:1fr}
  .fbot{flex-direction:column;gap:.4rem;text-align:center}
  .nlf{flex-direction:column}
  .stats-inner{grid-template-columns:repeat(2,1fr)}
  .stat-item{border-right:none;border-bottom:1px solid var(--gray-100)}
  .stat-item:last-child{border-bottom:none}
}

/* ═══════════════════════════════════════════════════════ MARQUEE TICKER STRIP ═══════════════════════════════════════════════════════ */
 .marquee-section {
     background:var(--blue);
     overflow:hidden;
     padding:14px 0;
     border-top:1px solid rgba(255,255,255,.08);
     border-bottom:1px solid rgba(255,255,255,.08);
}
 .marquee-track {
     display:flex;
     gap:0;
     width:max-content;
     animation:marqueeScroll 28s linear infinite;
}
 .marquee-track:hover {
     animation-play-state:paused;
}
 @keyframes marqueeScroll {
     from{
        transform:translateX(0)
    }
     to{
        transform:translateX(-50%)
    }
}
 .marquee-item {
     display:flex;
     align-items:center;
     gap:18px;
     padding:0 32px;
     font-size:13px;
     font-weight:600;
     color:rgba(255,255,255,.8);
     text-transform:uppercase;
     letter-spacing:2px;
     white-space:nowrap;
}
 .marquee-item i {
     color:rgba(255,255,255,.4);
     font-size:10px;
}

/* ══ SITE FOOTER ══ */
.site-footer {
  background: #0a1628;
  color: rgba(255,255,255,0.7);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.footer-top {
  padding: 64px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-top .footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 2.6fr;
  gap: 56px;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin: 18px 0 20px;
  max-width: 360px;
}
.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.footer-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #e8a020;
  border: 1px solid rgba(232,160,32,0.35);
  background: rgba(232,160,32,0.08);
  border-radius: 6px;
  padding: 5px 10px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.footer-social a:hover {
  background: #e8a020;
  border-color: #e8a020;
  color: #0a1628;
}
.footer-social svg { width: 16px; height: 16px; }
.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.fcol h5 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 20px;
  position: relative;
  padding-bottom: 12px;
}
.fcol h5::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 28px; height: 2px;
  background: #e8a020;
}
.fcol ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.fcol ul li a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 13.5px;
  line-height: 1.5;
  transition: color .2s ease;
}
.fcol ul li a:hover { color: #e8a020; }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.footer-contact svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: #e8a020;
}
.footer-bottom {
  padding: 22px 0;
}
.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.45);
}
.footer-bottom-sep {
  color: rgba(255,255,255,0.45);
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color .2s ease;
}
.footer-legal a:hover { color: #e8a020; }
@media (max-width: 980px) {
  .footer-top .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
}
@media (max-width: 600px) {
  .footer-cols { grid-template-columns: 1fr; gap: 32px; }
  .footer-top { padding: 48px 0 36px; }
  .footer-bottom-row { flex-direction: column; align-items: flex-start; text-align: left; }
}