/* =========================================================
   CyberSolar — shared stylesheet
   Design tokens + styles for all 5 header variants
   ========================================================= */

:root {
  /* Brand palette (CyberrSolarr brochure) */
  --cs-amber:   #f47c20;   /* brand orange */
  --cs-amber-d: #d9661a;
  --cs-green:   #1a8a43;   /* forest green */
  --cs-green-d: #12692f;
  --cs-navy:    #16305c;   /* brand navy blue */
  --cs-navy-2:  #1f3d70;
  --cs-slate:   #5b6b86;
  --cs-light:   #f4f7fb;
  --cs-white:   #ffffff;

  --cs-grad-sun: linear-gradient(135deg, #f47c20 0%, #f79a3c 45%, #1a8a43 135%);
  --cs-shadow:   0 10px 30px rgba(15, 23, 42, .12);
  --cs-radius:   14px;
  --cs-font:     'Rajdhani', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; }

body {
  font-family: var(--cs-font);
  color: var(--cs-navy);
  margin: 0;
}

a { text-decoration: none; }

/* Green accent utility (nature highlight) */
.text-green { color: var(--cs-green) !important; }

/* Reusable button */
.btn-solar {
  background: var(--cs-grad-sun);
  color: #fff;
  border: none;
  font-weight: 600;
  padding: .6rem 1.4rem;
  border-radius: 50px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn-solar:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(244, 124, 32, .4);
}

.feature-card {
  border:1px solid black;
}

/* Brand logo mark (shared) */
.cs-logo {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -.5px;
}
.cs-logo .mark {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: var(--cs-grad-sun);
  color: #fff;
  font-size: 1.1rem;
}
.cs-logo .brand-cyber { color: var(--cs-navy); }
.cs-logo .brand-solar { color: var(--cs-amber); }
.cs-logo .logo-img { height: 73px; width: auto; display: block; }

/* =========================================================
   SITE HEADER (Glass Split) — floats over video hero
   ========================================================= */
.site-header {
  position: absolute;
  top: 1.4rem; left: 0; right: 0;
  z-index: 20;
}
.site-header-inner {
  position: relative;
  display: flex; flex-wrap: nowrap; align-items: stretch;
  max-width: 1200px; margin: 0 auto;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
  min-height: 69px;
}
.sh-brand {
  display: flex; align-items: center;
  padding: 0 2.8rem 0 1.8rem;
  background: #fff;
  border-right: 1px solid rgba(255,255,255,.3);
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
  border-top-left-radius: 18px; border-bottom-left-radius: 18px;
  flex: 0 0 auto;
}
.sh-brand .cs-logo span { color: #fff; }
.sh-brand .cs-logo .mark { background: rgba(255,255,255,.3); }
.sh-nav {
  flex: 1 1 auto; min-width: 0;
  display: flex; align-items: center;
  justify-content: flex-end; gap: 1.15rem; padding: 0 1.6rem;
  white-space: nowrap;
}
.sh-nav .nav-link {
  color: #fff; font-weight: 600; letter-spacing: .3px; position: relative;
}
.sh-nav .nav-link::after {
  content: ''; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px; background: var(--cs-green); transition: width .25s ease;
}
.sh-nav .nav-link:hover::after,
.sh-nav .nav-link.active::after { width: 100%; }
.sh-nav .btn-glass {
  background: #fff; color: var(--cs-amber-d);
  border-radius: 50px; font-weight: 700; padding: .5rem 1.3rem;
}
/* Free Site Visit button + hover tooltip */
.fsv-wrap { position: relative; display: inline-flex; }
.fsv-wrap .btn-glass { background: var(--cs-grad-sun); color: #fff; }
.fsv-tip {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(6px);
  background: var(--cs-navy); color: #fff; white-space: nowrap;
  font-size: .78rem; font-weight: 600; padding: .45rem .8rem; border-radius: 8px;
  box-shadow: 0 10px 24px rgba(0,0,0,.28);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  z-index: 40;
}
.fsv-tip i { color: var(--cs-amber); }
.fsv-tip::before {
  content: ""; position: absolute; bottom: 100%; left: 50%; transform: translateX(-50%);
  border: 6px solid transparent; border-bottom-color: var(--cs-navy);
}
.fsv-wrap:hover .fsv-tip { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.sh-mobile {
  max-width: 1200px; margin: .8rem auto 0;
  background: rgba(15,23,42,.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 14px; padding: 1rem;
}
/* ---------- Mega menu ---------- */
.nav-mega { position: static; display: flex; align-items: center; }
.nav-link.has-caret { display: inline-flex; align-items: center; gap: .35rem; }
.nav-link .caret { font-size: .7rem; transition: transform .25s ease; }
.nav-mega:hover .caret { transform: rotate(180deg); }

.mega-panel {
  position: absolute; top: 100%; left: 0; right: 0; margin: 0 auto;
  width: min(1040px, 94vw); padding-top: 16px;      /* transparent bridge so hover survives the gap */
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
  z-index: 30;
}
.nav-mega:hover .mega-panel { opacity: 1; visibility: visible; transform: translateY(0); }

.mega-inner {
  background: white;
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  border-radius: 16px; padding: 1.4rem;
  box-shadow: 0 24px 60px rgba(15,23,42,.28);
  border: 1px solid rgba(255,255,255,.5);
  display: grid; gap: 1.2rem;
}
/* Services layout: link grid + promo */
.mega-services { grid-template-columns: 1fr 260px; }
.mega-cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: .35rem; }
.mega-cols-3 {
  grid-template-columns: repeat(3, max-content);
  justify-content: space-between;
  column-gap: 1rem; row-gap: .1rem;
}
.mega-cols-3 .mega-link { padding: .45rem .6rem; }
.mega-viewall { color: var(--cs-amber-d); font-weight: 700; }
.mega-viewall .mega-ic { background: var(--cs-grad-sun); color: #fff; }
.mega-viewall span i { font-size: .8rem; transition: transform .25s ease; }
.mega-viewall:hover span i { transform: translateX(3px); }
.mega-link {
  display: flex; align-items: center; gap: .75rem; padding: .6rem .7rem;
  border-radius: 10px; color: var(--cs-navy); font-weight: 600; font-size: .92rem;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.mega-link:hover, .mega-link.active { background: rgba(255,255,255,.72); color: var(--cs-amber-d); transform: translateX(3px); }
.mega-link.active .mega-ic, .mega-proj.active .mega-ic { background: var(--cs-amber); color: #fff; }
.mega-proj.active { border-color: var(--cs-amber); background: var(--cs-light); }
.mega-ic {
  width: 36px; height: 36px; flex: 0 0 auto; display: grid; place-items: center;
  border-radius: 9px; background: rgba(26,138,67,.12); color: var(--cs-green); font-size: 1.05rem;
  transition: background .2s ease, color .2s ease;
}
.mega-link:hover .mega-ic { background: var(--cs-amber); color: #fff; }

/* Live preview image (swaps on link hover) */
.mega-preview {
  position: relative; min-height: 240px; border-radius: 12px; overflow: hidden;
  background-size: cover; background-position: center;
  transition: background-image .25s ease; isolation: isolate;
}
.mega-preview .mp-shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,23,42,.05) 0%, rgba(15,23,42,.55) 55%, rgba(15,23,42,.88) 100%);
}
.mega-preview .mp-body {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1.2rem; color: #fff;
}
.mega-preview .mp-title { margin: 0; font-size: 1.15rem; font-weight: 800; }
.mega-preview .mp-text { margin: .25rem 0 .6rem; font-size: .84rem; opacity: .92; }
.mp-cta { display: inline-flex; align-items: center; gap: .4rem; font-weight: 700; color: var(--cs-amber); }
.mega-preview .mp-cta { color: #ffd479; }
.mega-preview:hover .mp-cta i { transform: translateX(4px); transition: transform .2s ease; }
/* fade the text on swap */
.mega-preview .mp-body.swapping { opacity: 0; transition: none; }
.mega-preview .mp-body { transition: opacity .2s ease; }

/* Projects layout: cards + stats bar */
.mega-projects { grid-template-columns: 1fr 300px; }
.mega-proj-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .6rem; }
.mega-proj-grid .mega-stats { grid-column: 1 / -1; }
.mega-proj {
  display: flex; align-items: center; gap: .8rem; padding: .8rem;
  border: 1px solid #eef1f5; border-radius: 12px; transition: .22s ease;
}
.mega-proj:hover { border-color: var(--cs-amber); background: var(--cs-light); transform: translateY(-2px); }
.mega-proj .mp-txt { display: flex; flex-direction: column; }
.mega-proj strong { color: var(--cs-navy); font-size: .95rem; }
.mega-proj small { color: var(--cs-slate); font-size: .78rem; }
.mega-stats {
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  border-top: 1px solid #eef1f5; padding-top: 1rem;
}
.ms-fig { text-align: center; }
.ms-fig b { display: block; font-size: 1.35rem; color: var(--cs-amber); line-height: 1; }
.ms-fig span { font-size: .75rem; color: var(--cs-slate); }
.ms-all { margin-left: auto; color: var(--cs-green-d); }
.ms-all:hover i { transform: translateX(4px); transition: transform .2s ease; }

/* Mobile submenus */
.sh-sub { display: flex; flex-direction: column; padding: .2rem 0 .4rem 1rem; }
.sh-sub a { display: flex; align-items: center; gap: .6rem; padding: .45rem 0; color: #cbd5e1; font-size: .9rem; }
.sh-sub a i { color: var(--cs-amber); }
.sh-sub a:hover { color: #fff; }

@media (max-width: 991.98px) {
  .site-header { top: 1rem; padding: 0 1rem; }
  .sh-brand { clip-path: none; flex: 1; padding: 0 1.4rem; border-radius: 18px 0 0 18px; }
}

/* =========================================================
   VIDEO HERO
   ========================================================= */
.hero-video {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-video video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero-video .hero-overlay {
  position: absolute; inset: 0;
  /* background: linear-gradient(120deg, rgba(15,23,42,.82) 0%, rgba(15,23,42,.55) 50%, rgba(217,119,6,.35) 100%); */
      background: linear-gradient(120deg, rgba(15, 23, 42, .82) 0%, rgba(15, 23, 42, .55) 50%, rgb(0 0 0 / 35%) 100%);
  z-index: 2;
}
.hero-content {
  position: relative; z-index: 10;
  color: #fff; padding: 7rem 0 11rem;   /* extra bottom keeps text above overlapping cards */
  max-width: 700px;
}
.hero-content .eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.3);
  padding: .4rem 1rem; border-radius: 50px;
  font-size: .85rem; font-weight: 500; margin-bottom: 1.2rem;
}
.hero-content h1 {
  font-weight: 700; font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.1; margin-bottom: 1.2rem;
}
.hero-content h1 .hl { color: var(--cs-green); }
.hero-content p.lead { color: #e2e8f0; font-size: 1.15rem; max-width: 560px; }
.hero-stats {
  display: flex; flex-wrap: wrap; gap: 2.5rem; margin-top: 3rem;
}
.hero-stats .stat .num { font-size: 2rem; font-weight: 700; color: var(--cs-green); }
.hero-stats .stat .lbl { font-size: .85rem; color: #cbd5e1; }
.hero-scroll {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  z-index: 10; color: #fff; font-size: 1.6rem; opacity: .8;
  animation: hero-bounce 1.8s infinite;
}
@keyframes hero-bounce { 0%,100%{transform:translate(-50%,0)} 50%{transform:translate(-50%,10px)} }

/* =========================================================
   ABOUT sections (shared)
   ========================================================= */
.py-6 { padding-top: 5rem; padding-bottom: 5rem; }
.sec-eyebrow {
  display: inline-block; color: var(--cs-green);
  font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  font-size: .85rem; margin-bottom: .6rem;
}
.sec-title {
  font-weight: 700; font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.15; margin-bottom: 1rem;
}
.sec-title .hl { color: var(--cs-amber); }

/* Features section overlaps video hero bottom (~half card height) */
.features {
  position: relative; z-index: 5;
  margin-top: -150px;
  padding-top: 0;
  padding-bottom: 1.5rem;
}

/* ---- Feature cards (active swaps to image bg on hover) ---- */
.feature-card {
  position: relative; overflow: hidden;
  background: #fff; border-radius: 18px;
  padding: 2.4rem 1.8rem;
  box-shadow: 0 12px 30px rgba(15,23,42,.06);
  min-height: 300px;
  transition: box-shadow .35s ease, transform .35s ease;
}
/* image + dark overlay layer, slides up from bottom */
.feature-card .fc-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  transform: translateY(100%);
  transition: transform .45s cubic-bezier(.4,0,.2,1);
}
.feature-card .fc-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,23,42,.25) 0%, rgba(15,23,42,.55) 60%, rgba(15,23,42,.78) 100%);
}
.feature-card .fc-body { position: relative; z-index: 1; }

.fc-icon {
  width: 74px; height: 74px; display: grid; place-items: center;
  border-radius: 50%; border: 1px solid #e2e8f0;
  font-size: 1.7rem; color: var(--cs-navy);
  margin-bottom: 1.6rem; transition: .35s ease;
}
.fc-title {
  font-weight: 700; text-transform: uppercase; letter-spacing: .5px;
  color: var(--cs-navy); margin-bottom: .8rem;
}
.fc-text { color: var(--cs-slate); margin: 0; }

/* active / hover state — show image, flip text to white */
.feature-card.active,
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 45px rgba(15,23,42,.22);
}
.feature-card.active .fc-bg { transform: translate(0, 0); }
.feature-card.active .fc-title,
.feature-card:hover .fc-title,
.feature-card.active .fc-text,
.feature-card:hover .fc-text { color: #fff; }
.feature-card.active .fc-icon,
.feature-card:hover .fc-icon {
  border-color: rgba(255,255,255,.6); color: #fff;
}

/* =========================================================
   SERVICES
   ========================================================= */
.services { background: var(--cs-light); padding-top: 3rem; }

/* =========================================================
   WHY CHOOSE + IMAGE STATS
   ========================================================= */
.why-point { display: flex; gap: .8rem; align-items: flex-start; }
.why-point i { font-size: 1.3rem; margin-top: 3px; }
.why-point strong { display: block; color: var(--cs-navy); }
.why-point span { color: var(--cs-slate); font-size: .88rem; }

.why-visual { position: relative; margin-bottom: 46px; }
/* decorative dashed ring, top-left, slowly rotating behind the image */
.why-visual::before {
  content: ""; position: absolute; top: -38px; left: -38px;
  width: 150px; height: 150px; border-radius: 50%;
  border: 2px dashed rgba(244,124,32,.55); z-index: 0; pointer-events: none;
  animation: whySpin 20s linear infinite;
}
/* soft green glow nested inside the ring */
.why-visual::after {
  content: ""; position: absolute; top: -14px; left: -14px;
  width: 90px; height: 90px; border-radius: 50%; z-index: 0; pointer-events: none;
  background: radial-gradient(circle, rgba(26,138,67,.22), transparent 68%);
}
@keyframes whySpin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .why-visual::before { animation: none; } }
.why-swiper {
  position: relative; z-index: 1;
  width: 100%; height: 400px; border-radius: 20px;
  box-shadow: 0 20px 45px rgba(15,23,42,.2);
}
.why-swiper img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 575.98px) { .why-swiper { height: 300px; } }
.why-figures {
  position: absolute; left: 50%; bottom: -46px; transform: translateX(-50%);
  z-index: 20;                       /* sit above the cube slider */
  width: 88%; background: #fff; border-radius: 16px;
  box-shadow: 0 14px 34px rgba(15,23,42,.16);
  display: grid; grid-template-columns: repeat(3, 1fr);
  padding: 1.3rem .5rem;
}
.why-swiper::part(pagination) { display: none; }   /* no dots */
.why-figures .fig { text-align: center; position: relative; }
.why-figures .fig + .fig::before {
  content: ''; position: absolute; left: 0; top: 15%; height: 70%; width: 1px; background: #e5e9f0;
}
.why-figures .num { font-size: 2rem; font-weight: 700; color: var(--cs-amber); line-height: 1; }
.why-figures span { font-size: .8rem; color: var(--cs-slate); }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials { background: var(--cs-light); overflow: hidden; }
.review-card {
  position: relative; overflow: hidden; height: 100%; min-height: 260px;
  width: 100%;
  display: flex; flex-direction: column;
  background: #fff; border-radius: 20px; padding: 2.4rem 2rem 2rem;
  box-shadow: 0 14px 40px rgba(15,23,42,.07);
  border: 1px solid #eef2f7;
  transition: transform .3s ease, box-shadow .3s ease;
}
.review-card .review-text { flex: 1 1 auto; }
.review-card::before {                 /* accent bar top */
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--cs-grad-sun);
}
.review-card:hover { transform: translateY(-6px); box-shadow: 0 26px 55px rgba(15,23,42,.14); }
.quote-mark {
  position: absolute; top: 1rem; right: 1.4rem;
  font-size: 4.5rem; line-height: 1; color: var(--cs-amber);
  opacity: .12;
}
.review-card .stars { color: var(--cs-amber); font-size: .95rem; margin-bottom: 1rem; letter-spacing: 2px; }
.review-text {
  position: relative; z-index: 1;
  color: var(--cs-navy); font-size: 1.08rem; line-height: 1.6;
  margin-bottom: 1.8rem;
}
.review-foot {
  display: flex; align-items: center; gap: .9rem;
  padding-top: 1.3rem; border-top: 1px solid #eef2f7;
}
.review-foot .avatar {
  flex: 0 0 auto; width: 52px; height: 52px; display: grid; place-items: center;
  border-radius: 50%; background: var(--cs-grad-sun); color: #fff; font-weight: 700; font-size: 1.2rem;
  box-shadow: 0 6px 16px rgba(244,124,32,.35);
}
.review-foot .who strong { display: block; color: var(--cs-navy); font-size: 1.05rem; }
.review-foot .who span { color: var(--cs-slate); font-size: .85rem; }

/* curved (fan) slider — side cards rotate + drop on an arc */
.tst-swiper { padding: 2.5rem 1rem 1rem; overflow: visible; }
.tst-swiper::part(container),
.tst-swiper::part(wrapper) { overflow: visible; }   /* let tilted corners show */
.tst-swiper swiper-slide {
  height: auto; display: flex;
  transform-origin: center bottom;
  transform: translateY(30px) scale(.94);
  opacity: .55;
  transition: transform .55s cubic-bezier(.4,0,.2,1), opacity .55s ease;
}
.tst-swiper swiper-slide.swiper-slide-prev  { transform: rotate(-7deg) translateY(34px); opacity: .9; }
.tst-swiper swiper-slide.swiper-slide-next  { transform: rotate(7deg)  translateY(34px); opacity: .9; }
.tst-swiper swiper-slide.swiper-slide-active {
  transform: rotate(0) translateY(0) scale(1.04); opacity: 1; z-index: 2;
}

/* custom nav buttons (own, not Swiper's SVG) */
.tst-nav { display: flex; justify-content: center; gap: 1rem; margin-top: 1.5rem; }
.tst-btn {
  width: 44px; height: 44px; border: none; border-radius: 50%;
  background: var(--cs-navy); color: #fff; cursor: pointer;
  display: grid; place-items: center; font-size: 1.2rem;
  box-shadow: 0 10px 24px rgba(15,23,42,.22);
  transition: background .25s ease, transform .25s ease;
}
.tst-btn:hover { background: var(--cs-amber-d); transform: translateY(-2px); }

/* =========================================================
   CTA BAND
   ========================================================= */
.cta-band {
  position: relative; overflow: hidden;
  background: var(--cs-navy) url('../images/pannel.webp') center/cover no-repeat;
  color: #fff; padding: 3.5rem 0 5rem; text-align: left;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  /* dark scrim on the left for text contrast, clear on the right to show panel */
  background: linear-gradient(90deg, rgba(15,23,42,.9) 0%, rgba(15,23,42,.65) 35%, rgba(15,23,42,.15) 60%, transparent 80%);
}
.cta-band > .container { position: relative; z-index: 1; }
.cta-inner { max-width: 560px; }
.cta-band h2 { font-weight: 700; font-size: clamp(1.8rem, 4vw, 2.6rem); }
.cta-band .hl { color: var(--cs-amber); }
.cta-band p { color: rgba(255,255,255,.9); margin: .5rem 0 0; }
.cta-band .btn-light { color: var(--cs-amber-d); font-weight: 700; }

/* =========================================================
   SERVICES — Bento Grid
   ========================================================= */
.sv1 { background: var(--cs-light); }
.svc-gif { max-width: 100%; height: auto; max-height: 240px; mix-blend-mode: multiply; }
.bento {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 150px;
}
.bento-item {
  position: relative; overflow: hidden;
  background: #fff; border-radius: 18px; padding: 1.4rem;
  display: flex; flex-direction: column; justify-content: space-between;
  box-shadow: 0 8px 22px rgba(15,23,42,.06);
  transition: transform .3s ease, box-shadow .3s ease;
}
.bento-item, .feature-card { transform-style: preserve-3d; will-change: transform; }
.bento-item:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(15,23,42,.14); }
/* while the cursor drives the 3D tilt: follow fast, lift above siblings */
.bento-item.tilting, .feature-card.tilting {
  transition: transform .08s linear, box-shadow .3s ease; z-index: 5;
  box-shadow: 0 30px 55px rgba(15,23,42,.22);
}
.bento-item[data-img] { cursor: pointer; }

/* decorative dot-grid pattern, fading into the top-right corner */
.bento-item:not(.b-lg)::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(circle at 1px 1px, rgba(26,138,67,.16) 1.4px, transparent 0) 0 0 / 15px 15px;
  -webkit-mask-image: radial-gradient(130px 130px at 100% 0%, #000 10%, transparent 72%);
          mask-image: radial-gradient(130px 130px at 100% 0%, #000 10%, transparent 72%);
  transition: background .3s ease;
}
/* spotlight glow that follows the cursor across the card */
.bento-item:not(.b-lg)::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; border-radius: inherit;
  background: radial-gradient(180px circle at var(--mx, 50%) var(--my, 50%),
              rgba(244,124,32,.20), rgba(26,138,67,.10) 40%, transparent 70%);
  opacity: 0; transition: opacity .3s ease;
}
.bento-item:not(.b-lg):hover::after { opacity: 1; }
.bento-item:not(.b-lg):hover::before {
  background: radial-gradient(circle at 1px 1px, rgba(244,124,32,.24) 1.4px, transparent 0) 0 0 / 15px 15px;
}
/* keep card content above the pattern */
.bento-item > * { position: relative; z-index: 1; }
.bento-item.b-lg {
  grid-row: span 2; grid-column: span 2; color: #fff;
  background-size: cover; background-position: center;
  transition: background-image .2s ease;
}
.bento-item.b-lg .b-txt h5,
.bento-item.b-lg .b-txt p { transition: opacity .2s ease; }
.bento-item.b-lg::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(150deg, rgba(244,124,32,.85) 0%, rgba(247,154,60,.7) 45%, rgba(26,138,67,.6) 100%);
}
.bento-item.b-lg > * { position: relative; z-index: 1; }
.bento-item.b-wide { grid-column: span 2; }
.b-icon {
  width: 52px; height: 52px; display: grid; place-items: center; border-radius: 13px;
  background: rgba(26,138,67,.12); color: var(--cs-green); font-size: 1.4rem;
}
.b-lg .b-icon { background: rgba(255,255,255,.25); color: #fff; width: 72px; height: 72px; font-size: 2rem; }
.bento-item h5 { font-weight: 700; color: var(--cs-navy); margin: 0 0 .2rem; font-size: 1.05rem; }
.bento-item p { color: var(--cs-slate); font-size: .85rem; margin: 0; }
.b-lg h5 { color: #fff; font-size: 1.6rem; }
.b-lg p { color: rgba(255,255,255,.9); font-size: 1rem; }
@media (max-width: 991.98px) { .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-item.b-lg, .bento-item.b-wide { grid-column: span 2; } .bento-item.b-lg { grid-row: span 1; } }
@media (max-width: 575.98px) { .bento { grid-template-columns: 1fr; } .bento-item, .bento-item.b-lg, .bento-item.b-wide { grid-column: span 1; } }

/* =========================================================
   BLOG / INSIGHTS
   ========================================================= */
.blog { background: var(--cs-white); padding-top: 1.5rem; }
.btn-outline-solar {
  border: 2px solid var(--cs-amber); color: var(--cs-amber-d); font-weight: 700;
  background: transparent; transition: .25s ease;
}
.btn-outline-solar:hover { background: var(--cs-grad-sun); color: #fff; border-color: transparent; }
/* card: content on top, image at the bottom, button overlapping the image */
.blog-card {
  background: #fff; border-radius: 22px; height: 100%;
  box-shadow: 0 12px 30px rgba(15,23,42,.08); border: 1px solid #eef1f5;
  display: flex; flex-direction: column; padding: 1.6rem 1.6rem 1.6rem;
  transition: transform .3s ease, box-shadow .3s ease;
}
.blog-card { position: relative; cursor: pointer; }
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 26px 50px rgba(15,23,42,.16); }
/* whole-card clickable: title link stretches over the card */
.bc-title a::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.bc-media { position: relative; z-index: 2; }   /* keep image + button clickable on their own */
.bc-body { display: flex; flex-direction: column; gap: .7rem; flex: 1; }
.bc-title { margin: 0; font-size: 1.28rem; font-weight: 700; line-height: 1.25;
  display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.bc-title a { color: var(--cs-navy); transition: color .2s ease; }
.bc-title a:hover { color: var(--cs-amber-d); }
.bc-meta { display: flex; gap: 1.1rem; align-items: center; }
.bc-meta span { display: inline-flex; align-items: center; gap: .4rem; color: var(--cs-slate); font-size: .82rem; font-weight: 500; }
.bc-meta i { font-size: .85rem; }
.bc-meta span:first-child i { color: var(--cs-green); }
.bc-meta span:last-child i { color: var(--cs-amber); }
.bc-text { color: var(--cs-slate); font-size: .9rem; margin: 0; line-height: 1.55;
  display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; flex: 1; }
/* outlined pill button that floats over the image top-left */
.bc-btn {
  align-self: flex-start; position: relative; z-index: 3;
  display: inline-flex; align-items: center; gap: .55rem;
  background: #fff; color: var(--cs-navy); font-weight: 700; font-size: .92rem;
  border: 1.5px solid var(--cs-navy); border-radius: 50px; padding: .6rem 1.2rem;
  margin: .4rem 0 -24px; transition: .25s ease;
  top: 15px;
    left: 10px;
}
.bc-btn i { transition: transform .2s ease; }
.bc-btn:hover { background: var(--cs-grad-sun); color: #fff; border-color: transparent; }
.bc-btn:hover i { transform: translateX(4px); }
/* image sits at the bottom, rounded, button overlaps its top edge */
.bc-media { position: relative; display: block; margin-top: 1rem; border-radius: 16px; overflow: hidden; height: 210px; }
.bc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.blog-card:hover .bc-media img { transform: scale(1.07); }
.bc-cat {
  position: absolute; right: 12px; top: 12px; z-index: 2;
  background: var(--cs-grad-sun); color: #fff; font-size: .7rem; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase; padding: .3rem .7rem; border-radius: 50px;
}

/* =========================================================
   FREE SITE VISIT — page banner + form
   ========================================================= */
.page-hero {
  position: relative; overflow: hidden;
  background: #0d1f3c url('../images/contact-banner.jpg') center/cover no-repeat;
  padding-bottom: 3.5rem;
}
.page-hero-overlay {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    linear-gradient(120deg, rgba(13,31,60,.92) 0%, rgba(22,48,92,.78) 45%, rgba(18,105,47,.6) 130%),
    radial-gradient(50% 90% at 85% 0%, rgba(244,124,32,.28), transparent 60%);
}
.page-hero-content {
  position: relative; z-index: 10; color: #fff;
  padding: 9rem 0 2.5rem; max-width: 760px;
}
.page-hero-content .eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.3);
  padding: .4rem 1rem; border-radius: 50px; font-size: .85rem; font-weight: 500; margin-bottom: 1.1rem;
}
.page-hero-content h1 { font-weight: 700; font-size: clamp(2rem, 5vw, 3.2rem); line-height: 1.1; margin-bottom: 1rem; }
.page-hero-content h1 .hl { color: var(--cs-amber); }
.page-hero-content p.lead { color: #e2e8f0; font-size: 1.12rem; max-width: 600px; margin: 0; }

.fsv-section { background: var(--cs-light); }
/* info rail */
.fsv-info {
  background: #fff; border-radius: var(--cs-radius); padding: 1.8rem;
  box-shadow: var(--cs-shadow); height: 100%;
}
.fsv-info h5 { color: var(--cs-navy); font-weight: 700; margin-bottom: 1.1rem; }
.fsv-benefits li { display: flex; align-items: flex-start; gap: .6rem; margin-bottom: .8rem; color: var(--cs-navy); font-weight: 500; }
.fsv-benefits i { color: var(--cs-green); font-size: 1.15rem; margin-top: 1px; }
.fsv-contact { display: flex; flex-direction: column; gap: .7rem; margin-top: 1.4rem; padding-top: 1.4rem; border-top: 1px solid #eef1f5; }
.fsv-contact a, .fsv-contact span { display: flex; align-items: center; gap: .6rem; color: var(--cs-slate); font-weight: 500; }
.fsv-contact a:hover { color: var(--cs-amber-d); }
.fsv-contact i { color: var(--cs-amber); }
.fsv-illus { display: block; width: 100%; height: auto; margin-top: 1.4rem; border-radius: 12px; }
/* form card */
.fsv-card { background: #fff; border-radius: var(--cs-radius); padding: 2.2rem; box-shadow: var(--cs-shadow); }
.fsv-card-title { color: var(--cs-navy); font-weight: 700; margin: 0; }
.fsv-card .form-label { font-weight: 600; color: var(--cs-navy); margin-bottom: .35rem; }
.fsv-card .form-control, .fsv-card .form-select { border-radius: 10px; padding: .6rem .8rem; border-color: #dde3ec; }
.fsv-card .form-control:focus, .fsv-card .form-select:focus {
  border-color: var(--cs-amber); box-shadow: 0 0 0 .2rem rgba(244,124,32,.18);
}
.fsv-card .input-group-text { border-radius: 10px; background: var(--cs-light); border-color: #dde3ec; color: var(--cs-navy); font-weight: 600; }
.req { color: var(--cs-amber-d); }
/* keep the Flatpickr (readonly) date input looking like a normal field */
.fsv-card input#visitDate[readonly], .fsv-card input.form-control[readonly] { background: #fff; opacity: 1; cursor: pointer; }
.fsv-date .input-group-text { cursor: pointer; }
.fsv-date .input-group-text i { color: var(--cs-amber); }
/* brand-tint the picker's selected day */
.flatpickr-day.selected, .flatpickr-day.selected:hover,
.flatpickr-day.startRange, .flatpickr-day.endRange {
  background: var(--cs-amber); border-color: var(--cs-amber);
}
.flatpickr-day.today { border-color: var(--cs-green); }
/* success state */
.fsv-success { text-align: center; padding: 2rem 1rem; }
.fsv-check {
  width: 74px; height: 74px; display: inline-grid; place-items: center; border-radius: 50%;
  background: var(--cs-grad-sun); color: #fff; font-size: 2.2rem; margin-bottom: 1.2rem;
  box-shadow: 0 10px 26px rgba(244,124,32,.4);
}
.fsv-success h3 { color: var(--cs-navy); font-weight: 700; }
.fsv-success p { color: var(--cs-slate); max-width: 46ch; margin: .5rem auto 0; }
@media (max-width: 991.98px) { .page-hero-content { padding-top: 8rem; } }

/* =========================================================
   BLOG DETAIL (post.php)
   ========================================================= */
.post { background: var(--cs-white); }
.mt-6 { margin-top: 4.5rem; }

.post-cover { position: relative; border-radius: 18px; overflow: hidden; margin-bottom: 1.6rem; box-shadow: var(--cs-shadow); }
.post-cover img { width: 100%; max-height: 440px; object-fit: cover; display: block; }

.post-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 1.4rem;
  padding-bottom: 1.4rem; margin-bottom: 1.6rem; border-bottom: 1px solid #eef1f5;
}
.post-meta span { display: inline-flex; align-items: center; gap: .45rem; color: var(--cs-slate); font-size: .9rem; }
.post-meta i { color: var(--cs-amber); }
.pm-author { color: var(--cs-navy) !important; font-weight: 500; }
.pm-avatar {
  width: 34px; height: 34px; display: inline-grid; place-items: center; border-radius: 50%;
  background: var(--cs-grad-sun); color: #fff; font-weight: 700; margin-right: .2rem;
}

/* article body typography */
.blog-article { color: #334155; font-size: 1.06rem; line-height: 1.8; }
.blog-article > *:first-child { margin-top: 0; }
.blog-article h2, .blog-article h3 { color: var(--cs-navy); font-weight: 700; margin: 2rem 0 .8rem; }
.blog-article h2 { font-size: 1.55rem; }
.blog-article h3 { font-size: 1.25rem; }
.blog-article p { margin: 0 0 1.15rem; }
.blog-article a { color: var(--cs-amber-d); text-decoration: underline; }
.blog-article img { max-width: 100%; height: auto; border-radius: 14px; margin: 1.2rem 0; }
.blog-article ul, .blog-article ol { margin: 0 0 1.15rem 1.1rem; }
.blog-article li { margin-bottom: .5rem; }
.blog-article blockquote {
  border-left: 4px solid var(--cs-amber); background: var(--cs-light);
  margin: 1.5rem 0; padding: 1rem 1.3rem; border-radius: 0 12px 12px 0;
  color: var(--cs-navy); font-style: italic;
}

/* share row */
.post-share { display: flex; align-items: center; gap: .6rem; margin-top: 2rem; padding-top: 1.4rem; border-top: 1px solid #eef1f5; }
.post-share span { font-weight: 700; color: var(--cs-navy); margin-right: .3rem; }
.post-share a {
  width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%;
  background: var(--cs-light); color: var(--cs-navy); transition: .25s ease;
}
.post-share a:hover { background: var(--cs-grad-sun); color: #fff; transform: translateY(-3px); }

/* sidebar */
.post-cta {
  background: var(--cs-grad-sun); color: #fff; border-radius: 18px;
  padding: 1.8rem; text-align: center; margin-bottom: 1.8rem; box-shadow: var(--cs-shadow);
}
.post-cta i { font-size: 2.2rem; }
.post-cta h5 { font-weight: 700; margin: .6rem 0 .3rem; }
.post-cta p { font-size: .9rem; opacity: .92; margin-bottom: 1rem; }
.post-cta .btn-light { color: var(--cs-amber-d); }

.side-card { background: #fff; border: 1px solid #eef1f5; border-radius: 18px; padding: 1.6rem; box-shadow: 0 10px 26px rgba(15,23,42,.05); }
.side-title { font-weight: 700; color: var(--cs-navy); margin-bottom: 1.1rem; padding-bottom: .7rem; border-bottom: 2px solid var(--cs-light); }
.side-post { display: flex; gap: .8rem; align-items: center; padding: .6rem 0; border-bottom: 1px solid #f1f4f8; }
.side-post:last-child { border-bottom: none; }
.sp-img { flex: 0 0 auto; width: 64px; height: 56px; border-radius: 10px; overflow: hidden; }
.sp-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.side-post:hover .sp-img img { transform: scale(1.08); }
.sp-txt strong { color: var(--cs-navy); font-size: .92rem; line-height: 1.3;
  display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.side-post:hover .sp-txt strong { color: var(--cs-amber-d); }
.sp-txt small { color: var(--cs-slate); font-size: .78rem; display: inline-flex; gap: .3rem; align-items: center; margin-top: .2rem; }
.sp-txt small i { color: var(--cs-green); }

/* =========================================================
   ABOUT US (about.php)
   ========================================================= */
.ab-profile { background: #fff; }
/* Mission / Vision / Values — stacked cards */
.vmv-stack { display: flex; flex-direction: column; gap: 1.1rem; }
.vmv-card {
  display: flex; gap: 1.1rem; align-items: flex-start;
  background: #fff; border: 1px solid #eef1f5; border-radius: 16px;
  border-left: 4px solid transparent; padding: 1.4rem 1.5rem;
  box-shadow: 0 10px 26px rgba(15,23,42,.05);
  transition: transform .3s ease, box-shadow .3s ease;
}
.vmv-card:hover { transform: translateX(5px); box-shadow: 0 18px 38px rgba(15,23,42,.12); }
.vmv-green { border-left-color: var(--cs-green); }
.vmv-navy  { border-left-color: var(--cs-navy); }
.vmv-amber { border-left-color: var(--cs-amber); }
.vmv-ic {
  flex: 0 0 auto; width: 56px; height: 56px; display: grid; place-items: center; border-radius: 14px;
  color: #fff; font-size: 1.5rem;
}
.vmv-green .vmv-ic { background: var(--cs-green); }
.vmv-navy  .vmv-ic { background: var(--cs-navy); }
.vmv-amber .vmv-ic { background: var(--cs-amber); }
.vmv-txt { flex: 1; }
.vmv-card h5 { font-weight: 700; margin: 0 0 .3rem; }
.vmv-green h5 { color: var(--cs-green); }
.vmv-navy  h5 { color: var(--cs-navy); }
.vmv-amber h5 { color: var(--cs-amber-d); }
.vmv-line { display: block; width: 40px; height: 3px; border-radius: 3px; margin: 0 0 .7rem; }
.vmv-green .vmv-line { background: var(--cs-green); }
.vmv-navy  .vmv-line { background: var(--cs-navy); }
.vmv-amber .vmv-line { background: var(--cs-amber); }
.vmv-card p { color: var(--cs-slate); font-size: .92rem; line-height: 1.6; margin: 0; }
.vmv-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: .35rem 1rem; }
.vmv-list li { position: relative; padding-left: 1.1rem; color: var(--cs-navy); font-size: .9rem; font-weight: 500; }
.vmv-list li::before { content: ''; position: absolute; left: 0; top: .5em; width: 7px; height: 7px; border-radius: 50%; background: var(--cs-amber); }

/* Why choose us */
.ab-why { background: var(--cs-light); }
.ab-why-pill {
  display: inline-block; background: var(--cs-navy); color: #fff;
  font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  padding: .7rem 1.6rem; border-radius: 12px; box-shadow: var(--cs-shadow);
}
.why-item {
  height: 100%; padding: 2rem 1rem 1.6rem;
  background: #fff; border: 1px solid #eef1f5; border-radius: 16px;
  box-shadow: 0 10px 26px rgba(15,23,42,.05);
  transition: transform .3s ease, box-shadow .3s ease;
}
.why-item:hover { transform: translateY(-6px); box-shadow: 0 22px 42px rgba(15,23,42,.14); border-color: transparent; }
.why-ic {
  width: 72px; height: 72px; display: inline-grid; place-items: center; border-radius: 50%;
  background: rgba(22,163,74,.1); color: var(--cs-green); font-size: 1.8rem; margin-bottom: 1.1rem;
  transition: .3s ease;
}
.why-item:hover .why-ic { background: var(--cs-grad-sun); color: #fff; transform: scale(1.08); }
.why-item p { color: var(--cs-navy); font-weight: 600; font-size: .92rem; margin: 0; line-height: 1.35; }

/* Promoters */
.ab-promoters { background: #fff; }
.promoter {
  display: flex; gap: 1.4rem; height: 100%;
  background: var(--cs-light); border: 1px solid #eef1f5; border-radius: 18px;
  padding: 1.8rem; box-shadow: 0 10px 26px rgba(15,23,42,.05);
  transition: transform .3s ease, box-shadow .3s ease;
}
.promoter:hover { transform: translateY(-5px); box-shadow: 0 20px 42px rgba(15,23,42,.12); }
.pr-photo {
  flex: 0 0 auto; width: 120px; height: 150px; border-radius: 12px;
  border: 2px dashed #c7d0dc; display: grid; place-items: center; align-content: center;
  color: #94a3b8; background: #fff;
}
.pr-photo i { font-size: 3rem; }
.pr-photo span { font-size: .7rem; letter-spacing: 1px; margin-top: .3rem; }
.pr-body h4 { font-weight: 700; color: var(--cs-navy); margin: 0; }
.pr-role { color: var(--cs-amber-d); font-weight: 600; font-size: .9rem; }
.pr-line { display: block; width: 40px; height: 3px; background: var(--cs-green); border-radius: 3px; margin: .6rem 0 .8rem; }
.pr-bio { color: var(--cs-slate); font-size: .9rem; line-height: 1.6; }
.pr-points { list-style: none; padding: 0; margin: 1rem 0 0; }
.pr-points li { color: var(--cs-navy); font-size: .88rem; margin-bottom: .5rem; display: flex; gap: .5rem; align-items: flex-start; }
.pr-points i { color: var(--cs-green); margin-top: 3px; }
@media (max-width: 575.98px) {
  .vmv-card { border-right: none; border-bottom: 1px solid #eef1f5; padding-bottom: 1.4rem; }
  .promoter { flex-direction: column; }
  .pr-photo { width: 100%; height: 130px; }
}

/* =========================================================
   CONTACT (contact.php)
   ========================================================= */
.contact-sec { background: var(--cs-light); }
.ct-info { margin-top: 1.6rem; display: flex; flex-direction: column; gap: 1rem; }
.ct-item {
  display: flex; align-items: center; gap: 1rem;
  background: #fff; border: 1px solid #eef1f5; border-radius: 14px; padding: 1.1rem 1.2rem;
  box-shadow: 0 8px 22px rgba(15,23,42,.05); transition: transform .25s ease, box-shadow .25s ease;
}
a.ct-item:hover { transform: translateX(5px); box-shadow: 0 16px 34px rgba(15,23,42,.12); }
.ct-ic {
  flex: 0 0 auto; width: 52px; height: 52px; display: grid; place-items: center; border-radius: 13px;
  background: var(--cs-grad-sun); color: #fff; font-size: 1.3rem;
}
.ct-item strong { display: block; color: var(--cs-navy); font-size: 1rem; }
.ct-item small { color: var(--cs-slate); font-size: .88rem; }
.ct-social { display: flex; align-items: center; gap: .6rem; margin-top: 1.6rem; }
.ct-social span { font-weight: 700; color: var(--cs-navy); margin-right: .3rem; }
.ct-social a {
  width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%;
  background: #fff; border: 1px solid #eef1f5; color: var(--cs-navy); transition: .25s ease;
}
.ct-social a:hover { background: var(--cs-grad-sun); color: #fff; transform: translateY(-3px); border-color: transparent; }

.ct-card { height: 100%; }
.ct-map { border-radius: 18px; overflow: hidden; box-shadow: var(--cs-shadow); line-height: 0; }
.ct-map iframe { width: 100%; height: 380px; border: 0; }

/* =========================================================
   PRODUCT / CATEGORY CARDS (Floating Action)
   ========================================================= */
.pcd2 { position: relative; display: flex; flex-direction: column; height: 100%; background: #fff; border-radius: 18px; overflow: hidden; box-shadow: 0 10px 26px rgba(15,23,42,.07); transition: transform .3s ease, box-shadow .3s ease; cursor: pointer; }
.pcd2-media { flex: 0 0 auto; }
.pcd2-body { flex: 1 1 auto; }
/* whole-card click via stretched title link */
.pcd2-body h5 a::after { content: ''; position: absolute; inset: 0; z-index: 1; }
.pcd2-fab { z-index: 2; }
.pcd2:hover { transform: translateY(-6px); box-shadow: 0 24px 46px rgba(15,23,42,.16); }
.pcd2-media { position: relative; height: 210px; }
.pcd2-media img { width: 100%; height: 100%; object-fit: cover; }
.pcd2-chip { position: absolute; top: 1rem; left: 1rem; background: rgba(255,255,255,.92); color: var(--cs-navy); font-size: .74rem; font-weight: 700; padding: .3rem .8rem; border-radius: 50px; }
.pcd2-fab { position: absolute; right: 1.1rem; bottom: -22px; width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; background: var(--cs-grad-sun); color: #fff; font-size: 1.2rem; box-shadow: 0 10px 22px rgba(244,124,32,.45); transition: transform .3s ease; }
.pcd2:hover .pcd2-fab { transform: translateY(-4px) rotate(45deg); }
.pcd2-body { padding: 1.8rem 1.3rem 1.4rem; }
.pcd2-body h5 { font-weight: 700; margin: 0 0 .4rem; }
.pcd2-body h5 a { color: var(--cs-navy); transition: color .2s ease; }
.pcd2-body h5 a:hover { color: var(--cs-amber-d); }
.pcd2-body p { color: var(--cs-slate); font-size: .9rem; margin: 0; }

/* Footer — Kilowatt (oversized wordmark) */
.cs-footer {
  position: relative; isolation: isolate;
  background: #0c0a09; color: #a8a29e;
  padding: 6rem 0 0; overflow: hidden;
}
/* subtle amber glow bleeding from the top edge */
.cs-footer::before {
  content: ""; position: absolute; inset: 0 0 auto; height: 220px; z-index: -1;
  background: radial-gradient(60% 100% at 50% 0%, rgba(244,124,32,.18), transparent 70%);
  pointer-events: none;
}
/* top wave shape divider */
.cs-footer { padding-top: 7.5rem; }
.cs-footer .foot-shape {
  position: absolute; top: 0; left: 0; width: 100%; height: 78px;
  line-height: 0; z-index: 2; pointer-events: none;
}
.cs-footer .foot-shape svg { width: 100%; height: 100%; display: block; }
.cs-footer a { color: #a8a29e; transition: .2s; }
.cs-footer a:hover { color: var(--cs-amber); }

.cs-footer .foot-top {
  display: grid; grid-template-columns: 1.4fr .8fr .8fr 1fr; gap: 2.25rem;
  padding-bottom: 2.5rem;
}
/* Lead / CTA */
.cs-footer .foot-logo {
  display: inline-block; margin-bottom: 1.5rem; padding: .7rem 1rem;
  background: #fff; border-radius: 12px; line-height: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
}
.cs-footer .foot-logo img { height: 58px; width: auto; }
.cs-footer .foot-lead h3 {
  color: #fafaf9; font-size: 1.6rem; font-weight: 800; line-height: 1.15;
  letter-spacing: -.02em; margin: 0 0 .85rem; max-width: 20ch;
}
.cs-footer .foot-lead .hl { color: var(--cs-amber); }
.cs-footer .foot-lead p { margin: 0 0 1.35rem; line-height: 1.6; max-width: 38ch; }
.cs-footer .foot-cta {
  display: inline-flex; align-items: center; gap: .6rem; color: #fafaf9;
  font-weight: 700; border-bottom: 2px solid var(--cs-amber); padding-bottom: .25rem;
}
.cs-footer .foot-cta .arw { transition: .25s; }
.cs-footer .foot-cta:hover { color: #fafaf9; }
.cs-footer .foot-cta:hover .arw { transform: translateX(6px); }

/* Link columns */
.cs-footer .foot-col h5 {
  color: #fafaf9; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  margin: 0 0 1rem; font-weight: 700;
  font-family: ui-monospace, 'Cascadia Code', Consolas, monospace;
}
.cs-footer .foot-col ul { margin: 0; }
.cs-footer .foot-col li { margin-bottom: .65rem; }
.cs-footer .foot-contact li { display: flex; gap: .65rem; align-items: flex-start; }
.cs-footer .foot-contact i { color: var(--cs-amber); margin-top: .15rem; }

/* Oversized wordmark — letters drop in one after another */
.cs-footer .foot-wordmark {
  font-size: clamp(2.4rem, 13.2vw, 11rem); font-weight: 900; line-height: .8;
  letter-spacing: -.05em; text-align: center; white-space: nowrap; user-select: none;
  padding: .4rem 0 .25rem; position: relative;
}
.cs-footer .foot-wordmark span {
  display: inline-block;
  background: linear-gradient(180deg, #292524 0%, #1c1917 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  -webkit-text-stroke: 1px #44403c;
}
.cs-footer .foot-wordmark .sun-o {
  -webkit-text-stroke: 0; color: var(--cs-amber); background: none;
  text-shadow: 0 0 40px rgba(244, 124, 32, .6);
}
/* start state (only once JS marks it ready, so no-JS still shows) */
.cs-footer .foot-wordmark.ready span {
  opacity: 0; transform: translateY(-140%) rotate(-6deg);
}
.cs-footer .foot-wordmark.in span {
  animation: wm-drop .62s cubic-bezier(.34, 1.4, .5, 1) forwards;
  animation-delay: calc(var(--i) * .085s);
}
@keyframes wm-drop {
  0%   { opacity: 0; transform: translateY(-140%) rotate(-6deg); }
  55%  { opacity: 1; }
  75%  { transform: translateY(8%) rotate(1.5deg); }
  100% { opacity: 1; transform: translateY(0) rotate(0); }
}
@media (prefers-reduced-motion: reduce) {
  .cs-footer .foot-wordmark.ready span { opacity: 1; transform: none; }
  .cs-footer .foot-wordmark.in span { animation: none; }
}

/* Bottom bar */
.cs-footer .foot-bottom {
  display: flex; flex-wrap: wrap; gap: .9rem; justify-content: space-between; align-items: center;
  padding: 1.4rem 0; border-top: 1px solid #292524; font-size: .8rem; color: #78716c;
  font-family: ui-monospace, 'Cascadia Code', Consolas, monospace; letter-spacing: .04em;
}
.cs-footer .foot-social { display: flex; gap: 1.1rem; }
.cs-footer .foot-social a { color: #a8a29e; font-size: 1.05rem; }
.cs-footer .foot-social a:hover { color: var(--cs-amber); }

@media (max-width: 991.98px) {
  .cs-footer .foot-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 575.98px) {
  .cs-footer .foot-top { grid-template-columns: 1fr; }
}


