﻿﻿/* ══════════════════════════════════════════════════
   SWATI EPC  ·  styles.css
   Brand Palette:
     Gold   →  #C9A84C
     Navy   →  #0B1929
     Dark   →  #06090E
     Light  →  #F7F8FA
══════════════════════════════════════════════════ */

/* ─── Reset ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html   { scroll-behavior: smooth; font-size: 16px; }
html, body {
  width: 100%;
  min-height: 100%;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}
section[id] { scroll-margin-top: 92px; }
body   { font-family: 'Inter', system-ui, sans-serif; color: #333; background: var(--dark) !important; overflow-x: hidden; line-height: 1.65; }
img    { display: block; max-width: 100%; }
.social-icon-img { width: 1em; height: 1em; object-fit: contain; display: block; }
.social-icon-svg { width: 1em; height: 1em; display: block; }
a      { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }
ul     { list-style: none; }

/* ─── CSS Variables ─────────────────────────── */
:root {
  --gold:   #C9A84C;
  --navy:   #0B1929;
  --dark:   #06090E;
  --light:  #F7F8FA;
  --text:   #555;
  --radius: 0px;
}

/* ─── Container ─────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 768px) { .container { padding: 0 20px; } }

/* ─── Colour utility ────────────────────────── */
.clr-gold { color: var(--gold); }

/* ─── Section Label ─────────────────────────── */
.sec-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.sec-label span:last-child {
  color: var(--gold);
  font-family: 'Orbitron', 'Inter', sans-serif;
  font-size: clamp(1.05rem, 2.7vw, 1.6rem);
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.1;
  text-transform: uppercase;
  text-shadow: 0 0 12px rgba(201,168,76,.2);
}
.sec-label-bar {
  display: block;
  width: 44px;
  height: 2px;
  background: linear-gradient(to right, var(--gold), rgba(201,168,76,.2));
  flex-shrink: 0;
}

/* ─── Section Heading ───────────────────────── */
.sec-heading {
  color: var(--navy);
  font-size: clamp(2.6rem, 5.2vw, 4rem);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.022em;
  margin-bottom: 1rem;
}
.sec-heading.white { color: #fff; }

.heading-underline {
  position: relative;
  display: inline-block;
}
.heading-underline::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
}

/* ─── Accent Lines ──────────────────────────── */
.sec-accent-line.left   { height: 3px; background: linear-gradient(to right, var(--gold) 0%, transparent 60%); }
.sec-accent-line.center { height: 3px; background: linear-gradient(to right, transparent, var(--gold) 40%, transparent); }

/* ─── Buttons ───────────────────────────────── */
.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--dark);
  border: none; padding: 14px 32px;
  font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase;
  transition: opacity .2s, transform .2s;
}
.btn-gold:hover { opacity: .9; transform: translateY(-2px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: rgba(255,255,255,.68);
  border: 1px solid rgba(255,255,255,.28); padding: 14px 32px;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  transition: border-color .2s, color .2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,.85); color: #fff; }

.btn-ghost-dark {
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent; color: rgba(255,255,255,.65);
  border: 1px solid rgba(255,255,255,.16); padding: 11px 22px;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  white-space: nowrap;
  transition: border-color .2s, color .2s;
}
.btn-ghost-dark:hover { border-color: var(--gold); color: var(--gold); }

.btn-submit {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--navy); color: #fff;
  border: none; padding: 14px 32px;
  font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.16em; text-transform: uppercase;
  margin-top: 6px;
  transition: opacity .2s, transform .2s;
}
.btn-submit:hover { opacity: .88; transform: translateY(-2px); }

/* ══════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════ */
#site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  border: 0;
  outline: 0;
  box-shadow: none;
  background: linear-gradient(to bottom, rgba(6,9,14,.92) 0%, rgba(6,9,14,.62) 72%, rgba(6,9,14,0) 100%);
  transition: background .3s, box-shadow .3s;
}
#site-header.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(0,0,0,.07);
}

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
  border: 0;
  outline: 0;
}

#site-header:focus,
#site-header:focus-within,
#site-header a:focus,
#site-header a:focus-visible,
#site-header button:focus,
#site-header button:focus-visible {
  outline: none;
  box-shadow: none;
}

/* Logo */
.logo {
  display: flex; align-items: center; gap: 12px;
  flex-shrink: 0;
}
.logo-img { width: 48px; height: 48px; object-fit: contain; }
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-size: 1.55rem; font-weight: 700;
  color: #fff; letter-spacing: 0.16em; text-transform: uppercase;
  transition: color .3s;
}
.logo-sub {
  font-size: 0.57rem; color: rgba(255,255,255,.6);
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: color .3s;
}
#site-header.scrolled .logo-name { color: var(--navy); }
#site-header.scrolled .logo-sub  { color: #999; }

/* Desktop Nav */
.desktop-nav { display: flex; align-items: center; gap: 32px; }
.desktop-nav .nav-link {
  position: relative; background: none; border: none;
  color: rgba(255,255,255,.9);
  font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0;
  transition: color .2s;
}
.desktop-nav .nav-link::after {
  content: ''; position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width .25s;
}
.desktop-nav .nav-link:hover::after,
.desktop-nav .nav-link.active::after { width: 100%; }
.desktop-nav .nav-link.active { color: var(--gold); }
#site-header.scrolled .desktop-nav .nav-link { color: #333; }
#site-header.scrolled .desktop-nav .nav-link.active { color: var(--gold); }

/* Header right */
.header-right { display: flex; align-items: center; gap: 6px; }
.hdr-socials  { display: flex; align-items: center; }
.hdr-socials a {
  width: 52px; height: 52px; display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.28rem;
  transition: transform .15s, filter .2s;
}
.hdr-socials a[aria-label="Instagram"] { color: #E4405F; }
.hdr-socials a[aria-label="YouTube"] { color: #FF0033; }
.hdr-socials a:hover { transform: scale(1.12); filter: brightness(1.15); }
#site-header.scrolled .hdr-socials a[aria-label="Instagram"] { color: #E4405F; }
#site-header.scrolled .hdr-socials a[aria-label="YouTube"] { color: #FF0033; }

/* Hamburger */
.hamburger {
  display: none; background: none; border: none;
  color: #fff; font-size: 1.25rem; padding: 6px;
  transition: color .3s;
}
#site-header.scrolled .hamburger { color: var(--navy); }

/* Mobile menu */
.mobile-menu {
  display: none; flex-direction: column;
  background: #fff; border-top: 1px solid #f0f0f0;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  padding: 8px 20px 16px;
}
.mobile-menu a {
  display: block;
  background: none; border: none; border-bottom: 1px solid #f5f5f5;
  color: #333; font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-align: left; padding: 12px 0;
}
.mob-socials {
  display: flex; gap: 14px; padding-top: 14px;
}
.mob-socials a { color: #777; font-size: 1rem; }

@media (max-width: 900px)  { .hdr-socials  { display: none; } }
@media (max-width: 768px)  { .desktop-nav  { display: none; } .hamburger { display: block; } }

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
#hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: flex-start; overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(110deg,rgba(6,9,14,.97) 0%,rgba(11,25,41,.88) 45%,rgba(11,25,41,.5) 100%);
}

.hero-dots {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(201,168,76,.08) 1px, transparent 1px);
  background-size: 36px 36px;
}

.hero-epc-mark {
  position: absolute; top: 50%; right: 0;
  transform: translateY(-50%) translateX(8%);
  font-size: clamp(12rem, 22vw, 22rem);
  font-weight: 900; line-height: 1; letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201,168,76,.12);
  user-select: none; pointer-events: none;
}
@media (max-width: 1024px) { .hero-epc-mark { display: none; } }

.hero-gold-bar {
  position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(to bottom, transparent 0%, var(--gold) 30%, var(--gold) 70%, transparent 100%);
}

.hero-body {
  position: relative; z-index: 2;
  padding-top: clamp(96px, 12vh, 130px);
  padding-bottom: clamp(56px, 10vh, 100px);
  width: 100%;
}

/* Eyebrow */
.eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; }
.eyebrow-line { display: block; width: 32px; height: 1px; background: var(--gold); flex-shrink: 0; }
.eyebrow span:last-child {
  color: var(--gold); font-size: 0.63rem;
  font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase;
}

/* Headlines */
.hero-h1 {
  font-size: clamp(3.6rem, 8vw, 6.8rem);
  font-weight: 800; line-height: .94;
  letter-spacing: -0.025em; margin-bottom: 0;
}
.hero-h1.static  { color: #fff; margin-bottom: 2px; }
.hero-h1.cycling { color: var(--gold); margin-bottom: 20px; transition: opacity .35s ease; }
.hero-h1.cycling.fade { opacity: 0; }

.hero-sub {
  color: rgba(255,255,255,.6); max-width: 520px;
  font-size: clamp(.9rem, 1.4vw, 1.05rem); line-height: 1.9;
  margin-bottom: 40px;
}
.hero-sub strong { color: rgba(255,255,255,.85); font-weight: 500; }

/* CTAs */
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 72px; }

/* Stats */
.hero-stats {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 28px; padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,.08);
}
@media (max-width: 600px) { .hero-stats { grid-template-columns: repeat(2,1fr); } }

.h-stat { display: flex; flex-direction: column; }
.h-stat-num {
  color: var(--gold); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; line-height: 1; letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums; margin-bottom: 6px;
}
.h-stat-lbl {
  color: rgba(255,255,255,.5); font-size: 0.67rem;
  letter-spacing: 0.18em; text-transform: uppercase;
}

/* Scroll cue */
.scroll-cue {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  background: none; border: none; color: rgba(255,255,255,.3);
}
.sc-label { font-size: 0.57rem; letter-spacing: 0.22em; text-transform: uppercase; }
.sc-bar {
  display: block; width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(201,168,76,.7), transparent);
  animation: scPulse 1.8s ease-in-out infinite;
}
@keyframes scPulse {
  0%,100% { opacity: .4; transform: scaleY(1); }
  50%      { opacity: 1; transform: scaleY(1.12); }
}

/* ══════════════════════════════════════════════
   MARQUEE
══════════════════════════════════════════════ */
.marquee-wrap {
  overflow: hidden; background: var(--gold);
  border-top: 1px solid rgba(201,168,76,.35);
  border-bottom: 1px solid rgba(201,168,76,.35);
  padding: 14px 0;
}
.marquee-track {
  display: inline-flex; align-items: center; gap: 0;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
}
.marquee-track span {
  display: inline-flex; align-items: center; gap: 48px;
  color: var(--dark); font-size: 0.63rem;
  font-weight: 800; letter-spacing: 0.25em; text-transform: uppercase;
  padding-right: 48px;
}
.marquee-track span em {
  display: inline-block; width: 4px; height: 4px;
  background: rgba(6,9,14,.35); border-radius: 50%;
  font-style: normal; flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.333%); }
}

/* ══════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════ */
.about-section { background: #fff; position: relative; }
.about-section .container { padding-top: 96px; padding-bottom: 96px; }

.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 48px; } }

.about-left p { color: var(--text); font-size: .96rem; line-height: 1.9; margin-bottom: .9rem; }

/* Watermark */
.about-watermark {
  font-size: clamp(5rem, 14vw, 11rem); font-weight: 900;
  line-height: 1; letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(201,168,76,.15);
  user-select: none; margin-left: -4px;
}

/* Pillars */
.pillar-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px; margin-top: 32px;
}
@media (max-width: 500px) { .pillar-grid { grid-template-columns: 1fr; } }

.pillar-card {
  display: flex; gap: 12px; padding: 16px;
  background: var(--light); border: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.pillar-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(201,168,76,.12);
  transform: translateY(-2px);
}
.pillar-icon {
  flex-shrink: 0; width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(201,168,76,.12); color: var(--gold);
  font-size: .9rem;
}
.pillar-title { color: var(--navy); font-size: 1.08rem; font-weight: 700; margin-bottom: 2px; }
.pillar-detail { color: #888; font-size: .73rem; line-height: 1.5; }

/* About image */
.about-img-wrap { position: relative; }
.about-img-shadow {
  position: absolute; top: 16px; right: -16px;
  width: 100%; height: 100%;
  background: var(--gold); opacity: .18;
}
.about-img-frame {
  position: relative; overflow: hidden;
  aspect-ratio: 3/4;
}
.about-img-frame img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.about-img-fade {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,9,14,.9) 0%, transparent 55%);
}
.about-markets {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px; z-index: 2;
}
.mkt-label {
  color: var(--gold); font-size: .59rem;
  font-weight: 700; letter-spacing: .24em; text-transform: uppercase;
  margin-bottom: 10px;
}
.mkt-item {
  display: flex; align-items: flex-start; gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding-bottom: 10px; margin-bottom: 10px;
}
.mkt-item:last-child { border-bottom: none; margin-bottom: 0; }
.mkt-item > span { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.mkt-item b   { display: block; color: #fff; font-size: .82rem; font-weight: 700; }
.mkt-item small { color: rgba(255,255,255,.45); font-size: .7rem; display: block; }

/* ══════════════════════════════════════════════
   STATS
══════════════════════════════════════════════ */
.stats-section {
  background: var(--dark); position: relative; overflow: hidden;
}
.stats-dots {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(201,168,76,.06) 1px, transparent 1px);
  background-size: 40px 40px;
}
.stats-gold-line {
  position: relative; z-index: 1;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  position: relative; z-index: 1;
}
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2,1fr); } }

.stat-block {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 48px 24px;
  border-right: 1px solid rgba(255,255,255,.05);
}
.stat-block:last-child { border-right: none; }
@media (max-width: 768px) {
  .stat-block:nth-child(2)  { border-right: none; }
  .stat-block:nth-child(n+3){ border-top: 1px solid rgba(255,255,255,.05); }
}

.stat-num {
  color: var(--gold); font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900; line-height: 1;
  letter-spacing: -0.03em; font-variant-numeric: tabular-nums;
  margin-bottom: 12px;
}
.stat-divider { width: 28px; height: 2px; background: rgba(201,168,76,.4); margin: 0 auto 12px; }
.stat-lbl { color: #fff; font-size: .82rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 4px; }
.stat-sub { color: rgba(255,255,255,.35); font-size: .69rem; letter-spacing: .06em; }

/* ══════════════════════════════════════════════
   SOLUTIONS
══════════════════════════════════════════════ */
.solutions-section { background: var(--light); }
.solutions-section .container { padding-top: 96px; padding-bottom: 96px; }

.sol-header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px 24px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}
.sol-sub {
  flex-basis: 100%;
  color: #777;
  font-size: 1rem;
  line-height: 1.62;
  max-width: 780px;
  margin-top: 2px;
  text-wrap: balance;
}

.sol-extra-head { margin-bottom: 14px; }
.sol-extra-head .sol-extra-title { margin-top: 0; }
.sol-extra-head .sol-extra-intro { margin-bottom: 0; }

.sol-list { border-top: 1px solid rgba(11,25,41,.1); }

.sol-item {
  border-bottom: 1px solid rgba(11,25,41,.1);
  cursor: pointer; transition: background .2s;
}

.sol-row {
  display: flex; align-items: center; gap: 22px;
  padding: 20px 0; transition: padding-left .2s;
}
.sol-item.open .sol-row,
.sol-item:hover .sol-row { padding-left: 10px; }

.sol-num {
  color: rgba(11,25,41,.2); font-size: .72rem; font-weight: 800;
  letter-spacing: .12em; min-width: 26px;
  transition: color .2s;
}
.sol-item.open .sol-num,
.sol-item:hover .sol-num { color: var(--gold); }

.sol-icon {
  flex-shrink: 0; width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(11,25,41,.06); color: var(--navy);
  font-size: .95rem;
  transition: background .2s, color .2s;
}
.sol-item.open .sol-icon,
.sol-item:hover .sol-icon { background: var(--gold); color: var(--dark); }

.sol-title {
  flex: 1; color: #1a1a2e;
  font-size: clamp(1.25rem, 2.1vw, 1.55rem); font-weight: 700;
  letter-spacing: -0.01em;
}

.sol-tags-row { display: flex; gap: 8px; flex-shrink: 0; }
@media (max-width: 768px) { .sol-tags-row { display: none; } }

.sol-tags-row span {
  background: rgba(11,25,41,.07); color: #666;
  font-size: .61rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 3px 10px;
  transition: background .2s, color .2s;
}
.sol-item.open .sol-tags-row span,
.sol-item:hover .sol-tags-row span { background: rgba(201,168,76,.15); color: var(--gold); }

.sol-arrow {
  flex-shrink: 0; color: rgba(11,25,41,.2); font-size: .95rem;
  transform: rotate(-45deg);
  transition: color .2s, transform .25s;
}
.sol-item.open .sol-arrow,
.sol-item:hover .sol-arrow { color: var(--gold); transform: rotate(0deg); }

/* Accordion panel */
.sol-panel { max-height: 0; overflow: hidden; transition: max-height .38s cubic-bezier(.4,0,.2,1); }
.sol-item.open .sol-panel { max-height: 220px; }

.sol-panel p {
  padding: 0 0 20px 88px; color: var(--text);
  font-size: .87rem; line-height: 1.85;
}
@media (max-width: 600px) { .sol-panel p { padding-left: 0; } }

.sol-panel-tags {
  padding: 0 0 24px 88px; display: flex; flex-wrap: wrap; gap: 8px;
}
@media (max-width: 600px) { .sol-panel-tags { padding-left: 0; } }

.sol-panel-tags span {
  background: rgba(201,168,76,.1); color: var(--gold);
  font-size: .61rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 12px;
}

.sol-extra {
  margin-top: 28px;
  padding: 26px 24px;
  background: #fff;
  border: 1px solid rgba(11,25,41,.08);
}
.sol-extra p {
  color: var(--text);
  font-size: .9rem;
  line-height: 1.85;
  margin-bottom: 12px;
}
.sol-extra-intro {
  color: #4b5968;
  font-weight: 500;
}
.sol-extra-title {
  color: var(--navy);
  font-size: 1.32rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin: 18px 0 10px;
}
.sol-extra-list {
  display: grid;
  gap: 8px;
  margin: 0 0 8px;
  padding: 0;
  list-style: none;
}
.sol-extra-list li {
  color: var(--text);
  font-size: .88rem;
  line-height: 1.75;
  padding-left: 16px;
  position: relative;
}
.sol-extra-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.sol-bridge {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(11,25,41,.09);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.sol-bridge span {
  color: #455466;
  font-size: .8rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════════
   BLOGS
══════════════════════════════════════════════ */
.blogs-section { background: var(--navy); position: relative; overflow: hidden; }
.blogs-section .container { padding-top: 96px; padding-bottom: 96px; }
.blogs-dots {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(201,168,76,.05) 1px, transparent 1px);
  background-size: 40px 40px;
}

.blogs-header-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; flex-wrap: wrap; margin-bottom: 52px;
}
.blogs-header-row .sec-label span:last-child { color: var(--gold); }

/* Magazine */
.blogs-magazine {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 24px;
  align-items: start;
}
@media (max-width: 900px) { .blogs-magazine { grid-template-columns: 1fr; } }

/* Featured */
.blog-featured {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  height: clamp(340px, 50vh, 560px);
}
@media (max-width: 900px) { .blog-featured { height: clamp(300px, 52vh, 460px); } }
.blog-featured > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s;
}
.blog-featured:hover > img { transform: scale(1.04); }
.blog-feat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,9,14,.97) 0%, rgba(6,9,14,.4) 55%, transparent 100%);
}
.blog-feat-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 32px; z-index: 2;
}
.blog-feat-content h3 {
  color: #fff; font-size: clamp(1.45rem, 2.8vw, 2.1rem);
  font-weight: 800; line-height: 1.24; letter-spacing: -.01em;
  margin: 10px 0 10px;
}
.blog-feat-content p {
  color: rgba(255,255,255,.52); font-size: .82rem;
  line-height: 1.75; margin-bottom: 16px;
}
.blog-feat-foot { display: flex; align-items: center; justify-content: space-between; }

/* Blog badges */
.blog-badge {
  display: inline-block; padding: 3px 12px;
  font-size: .58rem; font-weight: 800;
  letter-spacing: .2em; text-transform: uppercase;
}
.blog-badge.gold { background: var(--gold); color: var(--dark); }
.blog-badge.dark { background: rgba(11,25,41,.85); color: var(--gold); backdrop-filter: blur(4px); }

.blog-meta-text {
  display: flex; align-items: center; gap: 5px;
  color: rgba(255,255,255,.38); font-size: .7rem;
}
.blog-meta-text i { font-size: .65rem; }

.read-link {
  display: inline-flex; align-items: center; gap: 5px;
  color: var(--gold); font-size: .66rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase; cursor: pointer;
  transition: gap .2s;
}
.blog-featured:hover .read-link,
.blog-card:hover .read-link { gap: 10px; }

/* Side cards */
.blogs-side { display: flex; flex-direction: column; gap: 24px; }

.blog-card {
  display: flex; flex-direction: column; overflow: hidden; cursor: pointer; flex: 1;
  border: 1px solid rgba(255,255,255,.07);
  background: rgba(255,255,255,.04);
  transition: border-color .2s, background .2s;
}
.blog-card:hover { border-color: rgba(201,168,76,.3); background: rgba(201,168,76,.04); }

.blog-card-img { position: relative; overflow: hidden; aspect-ratio: 16/9; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-img .blog-badge { position: absolute; top: 10px; left: 10px; }

.blog-card-body { display: flex; flex-direction: column; flex: 1; padding: 20px; }
.blog-card-body .blog-meta-text { margin-bottom: 10px; }
.blog-card-body h3 {
  color: #fff; font-size: 1.22rem; font-weight: 700;
  line-height: 1.4; margin-bottom: 8px;
}
.blog-card-body p {
  color: rgba(255,255,255,.4); font-size: .78rem;
  line-height: 1.75; flex: 1; margin-bottom: 12px;
}

.renew-card-img {
  background: linear-gradient(140deg, rgba(201,168,76,.15), rgba(11,25,41,.85));
}
.renew-card-img img {
  filter: brightness(.62) saturate(.92);
}
.renew-card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,9,14,.58), rgba(6,9,14,.2));
}
.renew-card-img .blog-badge { z-index: 2; }
.renew-list {
  list-style: none;
  display: grid;
  gap: 8px;
}
.renew-list li {
  color: rgba(255,255,255,.72);
  font-size: .79rem;
  line-height: 1.75;
  padding-left: 14px;
  position: relative;
}
.renew-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}
.renew-list li strong {
  color: #fff;
  font-weight: 700;
}
.renew-intro {
  color: rgba(255,255,255,.5) !important;
  font-size: .78rem !important;
  line-height: 1.75 !important;
  margin-bottom: 10px !important;
}
.renew-note {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.62) !important;
}

/* Renewables compact alignment */
#renewables .container { max-width: 1160px; }

#renewables .blogs-header-row {
  align-items: center;
  margin-bottom: 32px;
}

#renewables .sec-heading.white {
  font-size: clamp(2.3rem, 3.9vw, 3.25rem);
  margin-bottom: 0;
}

#renewables .blogs-magazine {
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}

#renewables .blog-featured {
  height: clamp(300px, 44vh, 480px);
}

#renewables .blog-feat-content { padding: 22px; }

#renewables .blog-feat-content h3 {
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  margin: 8px 0;
}

#renewables .blog-feat-content p {
  color: rgba(255,255,255,.95);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 0;
}

#renewables .blogs-side {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-items: stretch;
}

#renewables .blogs-side > .blog-card {
  height: 100%;
}

#renewables .renew-left-card { grid-column: 1 / -1; }

#renewables .blog-card-img { aspect-ratio: 18/4; }

#renewables .blog-card-body {
  padding: 20px 20px;
  justify-content: flex-start;
}

#renewables .blog-card-body p {
  color: rgba(255,255,255,.95);
  flex: 0 0 auto;
  margin-bottom: 12px;
}

#renewables .renew-intro {
  color: rgba(255,255,255,.95) !important;
  font-size: .98rem !important;
  line-height: 1.75 !important;
  margin-bottom: 12px !important;
}

#renewables .renew-list { gap: 6px; margin-top: 0; }

#renewables .renew-list li {
  color: rgba(255,255,255,.96);
  font-size: .98rem;
  line-height: 1.75;
  padding-left: 12px;
}

#renewables .renew-list li::before {
  top: 8px;
  width: 4px;
  height: 4px;
}

#renewables .renew-note {
  margin-top: 12px;
  padding-top: 12px;
  color: rgba(255,255,255,.95) !important;
  font-size: .96rem !important;
  line-height: 1.75 !important;
}

@media (max-width: 900px) {
  #renewables .blogs-magazine {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  #renewables .blogs-side { grid-template-columns: 1fr; gap: 12px; }
  #renewables .blog-featured { height: clamp(260px, 42vh, 360px); }
  #renewables .blog-card-img { aspect-ratio: 16/5; }
}

/* ══════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════ */
.contact-section { background: #fff; }
.contact-section .container { padding-top: 96px; padding-bottom: 96px; }

.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } }

.contact-intro { color: var(--text); font-size: .95rem; line-height: 1.85; margin-bottom: 28px; }

.hours-card {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px; background: var(--light);
  border-left: 3px solid var(--gold); margin-bottom: 24px;
}
.hours-card > i { color: var(--navy); font-size: .9rem; margin-top: 2px; flex-shrink: 0; }
.hours-title { color: var(--navy); font-size: 1.04rem; font-weight: 700; margin-bottom: 4px; }
.hours-body  { color: #111; font-size: .78rem; line-height: 1.6; }

.offices { display: flex; flex-direction: column; gap: 10px; }
.office-card {
  padding: 18px; background: var(--light);
  border-left: 2px solid #ddd;
  transition: border-color .2s, box-shadow .2s;
}
.office-card:hover { border-left-color: var(--gold); box-shadow: 0 4px 20px rgba(201,168,76,.1); }
.office-region {
  color: var(--gold); font-size: .84rem; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase; margin-bottom: 8px;
}
.office-row {
  display: flex; align-items: center; gap: 8px;
  color: #111; font-size: .8rem; margin-bottom: 6px;
}
.office-row:last-child { margin-bottom: 0; }
.office-row i { color: var(--navy); font-size: .75rem; width: 14px; flex-shrink: 0; }
.office-link { color: #111; text-decoration: none; border-bottom: 1px dashed transparent; transition: color .2s, border-color .2s; }
.office-link:hover { color: var(--navy); border-bottom-color: var(--navy); }

/* Form */
.contact-form-wrap { position: relative; }
.contact-form {
  background: var(--light); padding: 40px;
  display: flex; flex-direction: column; gap: 16px;
}
.form-title {
  color: var(--navy); font-size: 1.45rem; font-weight: 700;
  padding-bottom: 14px; margin-bottom: 4px;
  border-bottom: 2px solid var(--gold); display: inline-block;
}
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 580px) { .form-row-2 { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  color: #444; font-size: .69rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: #fff; border: 1px solid #e0e0e0;
  padding: 11px 14px; font-size: .87rem; color: #333;
  font-family: inherit; outline: none; appearance: none;
  transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: none; }

/* Success */
.form-success {
  display: none; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 56px 32px;
  background: var(--navy); min-height: 480px;
}
.form-success.show { display: flex; }
.success-icon {
  width: 56px; height: 56px; display: flex; align-items: center; justify-content: center;
  background: var(--gold); margin-bottom: 20px; font-size: 1.3rem; color: var(--dark);
}
.form-success h3 { color: #fff; font-size: 1.65rem; font-weight: 700; margin-bottom: 12px; }
.form-success p  { color: rgba(255,255,255,.5); font-size: .87rem; line-height: 1.8; max-width: 280px; margin-bottom: 24px; }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
#site-footer {
  position: relative;
  background: radial-gradient(1200px 480px at 75% -10%, rgba(201,168,76,.2), transparent 65%),
              linear-gradient(180deg, #08131f 0%, #060e18 100%);
  border-top: 1px solid rgba(201,168,76,.3);
  overflow: hidden;
}
#site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  opacity: .35;
}

.footer-main { position: relative; z-index: 1; }
.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.55fr) repeat(3, minmax(200px, 1fr));
  gap: 18px;
  align-items: stretch;
  padding-top: 56px;
  padding-bottom: 40px;
}

/* Card shell */
.footer-brand,
.footer-col {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(201,168,76,.24);
  border-radius: 12px;
  padding: 24px 22px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
}

/* Brand */
.footer-brand { display: flex; flex-direction: column; justify-content: space-between; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo img { width: 52px; height: 52px; object-fit: contain; }
.footer-logo-name {
  font-size: 1.45rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.footer-logo-sub {
  font-size: .56rem;
  color: #fff;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 2px;
}
.footer-brand p {
  color: #fff;
  font-size: .96rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 1.25rem;
  transition: transform .2s, filter .2s;
}
.footer-socials a:hover { transform: translateY(-2px); filter: brightness(1.08); }

/* Cols */
.footer-col { display: flex; flex-direction: column; align-items: flex-start; text-align: left; }
.footer-col h4 {
  color: #fff;
  font-size: .96rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  width: 100%;
}
.footer-col ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li {
  color: #fff;
  font-size: .98rem;
  line-height: 1.45;
}
.footer-col ul li a {
  color: #fff;
  font-size: .98rem;
  transition: color .2s, transform .2s;
}
.footer-col ul li a:hover { color: #fff; transform: translateX(4px); }

.markets-list li { display: flex; align-items: center; gap: 10px; }
.dot-gold {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.footer-email-block {
  margin-top: 18px;
  padding-top: 14px;
  width: 100%;
  border-top: 1px dashed rgba(255,255,255,.18);
}
.footer-email-block h4 { margin-bottom: 10px; }
.footer-email-block a {
  color: #fff;
  font-size: .98rem;
  font-weight: 600;
  word-break: break-word;
}
.footer-email-block a:hover { color: #fff; }

/* Bottom bar */
.footer-bottom-bar {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.24);
}
.footer-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 14px;
  padding-bottom: 16px;
}
.footer-bottom-content span {
  color: #fff;
  font-size: .8rem;
  letter-spacing: .04em;
}

/* Force pure white accents in footer */
#site-footer .clr-gold { color: #fff; }
#site-footer .dot-gold { background: #fff; }
#site-footer .footer-col h4,
#site-footer .footer-col ul,
#site-footer .footer-col ul li,
#site-footer .footer-col > li,
#site-footer .footer-col ul li a,
#site-footer .footer-col > li > a,
#site-footer .footer-brand p,
#site-footer .footer-email-block a,
#site-footer .footer-bottom-content span {
  color: #fff !important;
}
#site-footer .footer-col > li {
  list-style: none !important;
}
#site-footer .footer-col ul {
  list-style: none !important;
  padding-left: 0 !important;
  margin: 0 !important;
}

@media (max-width: 1000px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 620px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-top: 40px;
    padding-bottom: 28px;
  }
  .footer-brand,
  .footer-col { padding: 20px 18px; }
  .footer-bottom-content { justify-content: center; text-align: center; }
}

/* ══════════════════════════════════════════════
   SOCIAL FLOAT
══════════════════════════════════════════════ */
.social-float {
  position: fixed; bottom: 32px; right: 32px; z-index: 900;
  display: flex; flex-direction: column-reverse; align-items: center; gap: 8px;
}
.sf-toggle {
  width: 48px; height: 48px; background: var(--gold); color: var(--dark);
  border: none; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(201,168,76,.4);
  transition: transform .2s;
}
.sf-toggle:hover { transform: scale(1.1); }

.sf-links {
  display: flex; flex-direction: column-reverse; gap: 8px;
  overflow: hidden; max-height: 0;
  transition: max-height .3s ease;
}
.sf-links.open { max-height: 240px; }

.sf-links a {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  background: var(--navy); color: rgba(255,255,255,.7); font-size: .9rem;
  box-shadow: 0 2px 10px rgba(0,0,0,.25);
  transition: background .2s, color .2s;
}
.sf-links a:hover { background: var(--gold); color: var(--dark); }

/* ══════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
══════════════════════════════════════════════ */
.js-enabled .reveal[data-dir="left"]  { opacity: 0; transform: translateX(-32px); transition: opacity .75s ease, transform .75s ease; }
.js-enabled .reveal[data-dir="right"] { opacity: 0; transform: translateX( 32px); transition: opacity .75s ease .15s, transform .75s ease .15s; }
.js-enabled .reveal[data-dir="up"]    { opacity: 0; transform: translateY( 24px); }

.reveal.visible           { opacity: 1 !important; transform: none !important; }
