/* ========================================= */
/* ===        VARIABLES & ROOT           === */
/* ========================================= */

:root {
 --navy: #06101f;
 --deep: #0c1e38;
 --steel: #142d4f;
 --accent: #b8963a;
 --accent2: #a07f2c; /* Shaded gold for contrast/hovers */
 --gold: #b8963a;
 --gold2: #a07f2c;
 --cream: #f4f0e8;
 --white: #ffffff;
 --g50: #fafbfc;
 --g100: #f2f4f7;
 --g200: #e4e8ee;
 --g300: #c0c9d6;
 --g500: #101828;
 --g700: #06101f;
 --g900: #101828;
 --serif: "Playfair Display", Georgia, serif;
 --sans: "Inter", -apple-system, sans-serif;
 --mw: 1320px;
 --radius: 0px;

 /* Typography & Spacing Constants */
 --title-fs: clamp(40px, 4.8vw, 64px);
 --title-fs-mob: 30px;
 --title-mb: 24px;
 --sec-header-mb: 70px;
}

@keyframes spin-glow {
 to {
  --border-angle: 1turn;
 }
}

@keyframes scrollp {
 0% {
  transform: scaleY(1);
  opacity: 0.25;
 }
 50% {
  transform: scaleY(0.5);
  opacity: 0.5;
 }
 100% {
  transform: scaleY(1);
  opacity: 0.25;
 }
}

@keyframes fu {
 from {
  opacity: 0;
  transform: translateY(36px);
 }
 to {
  opacity: 1;
  transform: translateY(0);
 }
}

@keyframes float {
 0%,
 100% {
  transform: translateY(0);
 }
 50% {
  transform: translateY(-8px);
 }
}

@keyframes fadeIn {
 from {
  opacity: 0;
  transform: translateY(10px);
 }
 to {
  opacity: 1;
  transform: translateY(0);
 }
}

/* ========================================= */
/* ===        GLOBALS & HELPERS          === */
/* ========================================= */

*,
*::before,
*::after {
 margin: 0;
 padding: 0;
 box-sizing: border-box;
}

html {
 scroll-behavior: smooth;
 overflow-x: hidden;
 scroll-padding-top: 80px;
}

body {
 font-family: var(--sans);
 color: var(--navy);
 background: var(--white);
 line-height: 1.6;
 -webkit-font-smoothing: antialiased;
}

p,
ul,
ol,
li {
 font-size: 18px;
}

.disclaimer {
 font-style: italic;
 color: var(--g500);
 border-top: 1px solid var(--g200);
 border-bottom: 1px solid var(--g200);
 padding: 15px 0;
 text-align: left;
 max-width: 100%;
 margin: 30px 0;
 font-size: 14px;
 width: 100%;
}

h1,
h2,
h3,
h4 {
 font-weight: 700;
 text-transform: uppercase;
 color: var(--navy);
}

img {
 max-width: 100%;
}

/* === SECTIONS === */
.sec {
 padding: clamp(80px, 12vw, 100px) clamp(24px, 4vw, 64px);
}

.sec:nth-of-type(even) {
 background-color: var(--white);
}

.sec:nth-of-type(odd) {
 background-color: var(--white);
}

.si {
 max-width: var(--mw);
 margin: 0 auto;
}

.label {
 font-size: 11px;
 letter-spacing: 0.2em;
 text-transform: uppercase;
 color: var(--accent);
 font-weight: 600;
 margin-bottom: 20px;
 display: inline-block;
 border-bottom: 1.5px solid var(--accent);
 padding-bottom: 6px;
}

.title {
 font-family: var(--serif);
 font-size: var(--title-fs);
 color: var(--navy);
 line-height: 1.12;
 margin-bottom: var(--title-mb);
 max-width: 800px;
 font-weight: 600;
 text-transform: uppercase;
}

.sec-header {
 text-align: left;
 margin: 0 0 var(--sec-header-mb) 0;
 width: 100%;
}

.sec-subheader {
 font-size: clamp(14px, 1.8vw, 16px);
 color: var(--gold);
 text-align: left;
 font-weight: 500;
 margin-top: -8px;
 margin-bottom: 0;
 max-width: 600px;
 margin-inline: 0;
 line-height: 1.6;
}

.sec-header .label {
 display: flex;
 justify-content: flex-start;
 width: fit-content;
 margin-inline: 0;
}

.sec-header .title {
 display: flex;
 align-items: center;
 justify-content: flex-start;
 gap: 28px;
 text-align: left;
 margin: 0 0 24px 0 !important;
 position: relative;
 max-width: 100%;
 overflow: hidden;
 width: 100%;
}

.sec-header .title::before,
.sec-header .title::after {
 display: none;
}

@property --border-angle {
 syntax: "<angle>";
 inherits: true;
 initial-value: 0turn;
}

.desc {
 font-size: 18px;
 line-height: 1.85;
 color: var(--g500);
 max-width: 660px;
 margin-bottom: 56px;
 text-align: left;
}

.badge-icon {
 width: 40px;
 height: 40px;
 border-radius: var(--radius);
 background: rgba(201, 164, 76, 0.08);
 border: 1px solid rgba(201, 164, 76, 0.2);
 display: flex;
 align-items: center;
 justify-content: center;
 color: var(--gold);
}

.badge-content {
 display: flex;
 flex-direction: column;
}

.badge-v {
 font-family: var(--serif);
 font-size: 26px;
 font-weight: 600;
 color: var(--navy);
 line-height: 1.1;
 margin-bottom: 2px;
}

.badge-v span {
 font-size: 14px;
 margin-left: 2px;
 color: var(--gold);
}

.badge-l {
 font-size: 11px;
 text-transform: uppercase;
 letter-spacing: 0.12em;
 color: var(--g500);
 font-weight: 600;
}

/* === FULL WIDTH IMAGE DIVIDER === */
.fw-img {
 width: 100%;
 position: relative;
 overflow: hidden;
}

.fw-img img {
 width: 100%;
 height: 480px;
 object-fit: cover;
 display: block;
}

.fw-img-o {
 position: absolute;
 inset: 0;
 background: linear-gradient(
  180deg,
  rgba(6, 16, 31, 0.3) 0%,
  rgba(6, 16, 31, 0.65) 100%
 );
 display: flex;
 align-items: flex-end;
 justify-content: center;
 padding: 48px clamp(24px, 4vw, 64px);
}

.fw-img-t {
 background: var(--white);
 padding: 36px 44px;
 max-width: 520px;
 width: 100%;
 border: 1px solid rgba(0, 0, 0, 0.04);
 box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
 position: relative;
 text-align: center;
 border-bottom: 3px solid var(--gold);
}

.fw-img-h {
 font-family: var(--serif);
 font-size: 26px;
 color: var(--navy);
 margin-bottom: 10px;
 font-weight: 500;
 letter-spacing: -0.01em;
}

.fw-img-p {
 font-size: 14.5px;
 line-height: 1.6;
 color: var(--g600);
 margin: 0;
}

/* === SITE & ENGINEERING === */

.site-grid {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 60px;
 align-items: start;
}

.site-map-img {
 border: 1px solid var(--g200);
 overflow: hidden;
 background: var(--white);
 margin-bottom: 24px;
}

.site-map-img img {
 width: 100%;
 height: auto;
 display: block;
}

.site-map-stack {
 display: flex;
 flex-direction: column;
 gap: 60px;
}

.site-map-wrapper {
 display: flex;
 flex-direction: column;
}

.site-map-title {
 font-family: var(--sans);
 font-size: 15px;
 font-weight: 600;
 color: var(--g300);
 margin-bottom: 12px;
 text-align: left;
}

.site-map-stack img {
 width: 100%;
 height: auto;
 border: 1px solid var(--g200);
 background: var(--white);
 box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.map-nigeria {
 filter: grayscale(0.2) contrast(0.85);
 transform: scale(0.96);
 transform-origin: left top;
}

.map-project {
 transform: scale(1.02);
 transform-origin: left top;
 border: 2px solid rgba(6, 16, 31, 0.08); /* slight border emphasis */
}

.map-basin {
 filter: grayscale(0.35) contrast(0.8) opacity(0.85);
 transform: scale(0.96);
 transform-origin: left top;
}

.site-text {
 position: sticky;
 top: 100px;
}

.site-text p {
 font-size: 17px;
 line-height: 1.85;
 color: var(--g700);
 margin-bottom: 24px;
}

.site-dets {
 display: grid;
 grid-template-columns: repeat(2, 1fr);
 gap: 20px;
 margin-top: 36px;
}

.site-dets .site-det:last-child {
 grid-column: span 2;
}

.site-det {
 display: flex;
 align-items: center;
 gap: 16px;
 padding: 20px 24px;
 background: var(--white);
 border: 1px solid rgba(0, 0, 0, 0.04);
 border-radius: var(--radius);
 box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
 transition: all 0.3s ease;
}

.site-det:hover {
 transform: translateY(-4px);
 box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
 border-color: rgba(201, 164, 76, 0.2);
}

.site-det-icon {
 flex-shrink: 0;
 width: 44px;
 height: 44px;
 border-radius: var(--radius);
 background: rgba(201, 164, 76, 0.06);
 border: 1px solid rgba(201, 164, 76, 0.15);
 display: flex;
 align-items: center;
 justify-content: center;
 color: var(--gold);
 transition: all 0.3s ease;
}

.site-det:hover .site-det-icon {
 transform: scale(1.05) rotate(6deg);
 background: rgba(201, 164, 76, 0.1);
}

.site-det-content {
 display: flex;
 flex-direction: column;
 gap: 2px;
}

.site-det-l {
 font-size: 11px;
 text-transform: uppercase;
 letter-spacing: 0.12em;
 color: var(--g500);
 font-weight: 600;
 padding: 0;
}

.site-det-v {
 font-size: 15.5px;
 color: var(--navy);
 font-weight: 600;
}

/* === TECHNICAL IMMERSIVE === */
.tech-immersive {
 background:
  linear-gradient(rgba(12, 21, 36, 0.94), rgba(12, 21, 36, 0.94)),
  url("assets/technical-vision.png") !important;
 background-size: cover;
 background-position: center;
 background-attachment: fixed;
 color: var(--white);
}

.tech-header {
 text-align: center;
 margin-bottom: 50px;
}

.tech-label {
 font-size: 11px;
 font-weight: 600;
 letter-spacing: 0.2em;
 color: var(--gold);
 text-transform: uppercase;
 display: inline-flex;
 align-items: center;
 gap: 12px;
 margin-bottom: 16px;
}

.tech-label::before,
.tech-label::after {
 content: "";
 width: 30px;
 height: 1px;
 background: rgba(223, 179, 86, 0.4);
}

.tech-title {
 font-family: var(--serif);
 font-size: clamp(32px, 4vw, 44px);
 font-weight: 400;
 color: var(--white);
 margin-bottom: 12px;
}

.tech-subtitle {
 font-size: 15px;
 color: rgba(255, 255, 255, 0.6);
 max-width: 600px;
 margin: 0 auto;
 line-height: 1.6;
}

.tech-param-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 max-width: 1000px;
 margin: 0 auto 50px;
 border: 1px solid rgba(255, 255, 255, 0.05);
 border-radius: 4px;
 overflow: hidden;
}

.tech-card {
 padding: 32px;
 border-right: 1px solid rgba(255, 255, 255, 0.05);
 border-bottom: 1px solid rgba(255, 255, 255, 0.05);
 position: relative;
 transition: background 0.3s ease;
}

.tech-card:hover {
 background: rgba(255, 255, 255, 0.01);
}

.tech-card:nth-child(3n) {
 border-right: none;
}

.tech-card:nth-last-child(-n + 3) {
 border-bottom: none;
}

.tech-card::before {
 content: "";
 position: absolute;
 top: 0;
 left: 0;
 width: 0;
 height: 1.5px;
 background: var(--gold);
 transition: width 0.3s ease;
}

.tech-card:hover::before {
 width: 100px;
}

.tech-card-label {
 font-size: 10px;
 font-weight: 600;
 letter-spacing: 0.15em;
 color: rgba(255, 255, 255, 0.4);
 text-transform: uppercase;
 margin-bottom: 20px;
}

.tech-card h3 {
 font-family: var(--serif);
 font-size: 28px;
 color: var(--white);
 margin-bottom: 8px;
 font-weight: 400;
}

.tech-card h3 span {
 font-family: var(--sans);
 font-size: 13px;
 color: var(--gold);
 margin-left: 4px;
 text-transform: none;
 letter-spacing: 0.05em;
}

.tech-card p {
 font-size: 13.5px;
 color: rgba(255, 255, 255, 0.45);
 margin: 0;
 line-height: 1.5;
}

.tech-access-panel {
 max-width: 1000px;
 margin: 0 auto;
 padding: 60px 40px;
 text-align: center;
 background: #0a1629;
 background-image: radial-gradient(
  rgba(255, 255, 255, 0.1) 1px,
  transparent 1px
 );
 background-size: 16px 16px;
 border: 1px dashed rgba(223, 179, 86, 0.15);
 border-radius: var(--radius);
 position: relative;
}

.tech-access-panel h3 {
 font-family: var(--serif);
 font-size: 24px;
 color: var(--white);
 margin-bottom: 12px;
 font-weight: 400;
}

.tech-access-panel p {
 font-size: 14.5px;
 color: rgba(255, 255, 255, 0.5);
 line-height: 1.6;
 max-width: 600px;
 margin: 0 auto 24px;
}

.tech-btn {
 background: var(--gold);
 color: var(--navy);
 padding: 12px 24px;
 font-size: 12px;
 letter-spacing: 0.08em;
 text-transform: uppercase;
 font-weight: 600;
 border: none;
 border-radius: 4px;
 cursor: pointer;
 transition: all 0.3s;
 display: inline-block;
 text-decoration: none;
}

.tech-btn:hover {
 background: var(--gold2);
 transform: translateY(-1px);
}

/* === TECH SPECS === */
.tech {
 background: var(--navy);
}

.tech .label {
 color: var(--gold);
}

.tech .label::before {
 background: var(--gold);
}

.tech .title {
 color: var(--white);
}

.tech .desc {
 color: var(--g300);
}

.tech-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 1px;
 background: rgba(255, 255, 255, 0.04);
 border: 1px solid rgba(255, 255, 255, 0.04);
}

.tech-i {
 padding: 44px 36px;
 background: var(--navy);
 transition: all 0.3s;
 position: relative;
 overflow: hidden;
}

.tech-i::before {
 content: "";
 position: absolute;
 top: 0;
 left: 0;
 width: 0;
 height: 2px;
 background: var(--gold);
 transition: width 0.4s;
}

.tech-i:hover {
 background: var(--deep);
}

.tech-i:hover::before {
 width: 100%;
}

.tech-il {
 font-size: 10px;
 text-transform: uppercase;
 letter-spacing: 0.18em;
 color: var(--g500);
 margin-bottom: 14px;
 font-weight: 600;
}

.tech-iv {
 font-family: var(--serif);
 font-size: 32px;
 color: var(--white);
 margin-bottom: 4px;
 font-weight: 600;
}

.tech-iv span {
 color: var(--gold);
 font-size: 16px;
 font-family: var(--sans);
 font-weight: 500;
 margin-left: 4px;
}

.tech-in {
 font-size: 13px;
 color: var(--g500);
 line-height: 1.5;
 margin-top: 8px;
}

/* === DEVELOPMENT === */
.dev {
 background: var(--white);
}

.timeline {
 display: flex;
 position: relative;
 margin-top: 64px;
}

.timeline-line {
 position: absolute;
 top: 7px;
 left: 10%;
 right: 10%;
 height: 2px;
 background: var(--g200);
 z-index: 1;
}

.timeline-item {
 position: relative;
 z-index: 2;
 flex: 1;
 text-align: center;
 padding: 0 24px;
}

.timeline-dot {
 width: 14px;
 height: 14px;
 background: var(--gold);
 border-radius: 50%;
 margin: 0 auto 24px auto;
 box-shadow: 0 0 0 10px var(--cream);
}

.timeline-date {
 font-family: var(--sans);
 font-size: 13px;
 font-weight: 700;
 color: var(--accent);
 text-transform: uppercase;
 letter-spacing: 0.1em;
 margin-bottom: 16px;
}

.timeline-content h4 {
 font-family: var(--serif);
 font-size: 22px;
 color: var(--g900);
 margin-bottom: 12px;
}

.timeline-content p {
 font-size: 15px;
 color: var(--g500);
 line-height: 1.7;
}

/* === COMMUNITY === */
.comm {
 background: var(--white);
}

.comm-grid {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 48px;
 align-items: start;
}

.comm-text p {
 font-size: 17px;
 line-height: 1.85;
 color: var(--g700);
 margin-bottom: 20px;
}

.comm-imgs {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 8px;
}

.comm-imgs img {
 width: 100%;
 height: 220px;
 object-fit: cover;
 display: block;
 transition: all 0.4s;
}

.comm-imgs img:first-child {
 grid-column: 1/-1;
 height: 300px;
}

.comm-imgs img:hover {
 filter: brightness(1.05);
}

/* === TRACK RECORD === */
.track {
 background: var(--g900);
 position: relative;
 overflow: hidden;
}

.track::before {
 content: "";
 position: absolute;
 inset: 0;
 background: radial-gradient(
  ellipse at 20% 50%,
  rgba(26, 122, 90, 0.06),
  transparent 60%
 );
}

.track .si {
 position: relative;
 z-index: 1;
}

.track .label {
 color: var(--gold);
}

.track .label::before {
 background: var(--gold);
}

.track .title {
 color: var(--white);
}

.track .desc {
 color: var(--g300);
}

.track-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 20px;
}

.track-card {
 overflow: hidden;
 position: relative;
 transition: all 0.4s;
 cursor: pointer;
}

.track-card:hover {
 transform: translateY(-6px);
 box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.track-card img {
 width: 100%;
 height: 340px;
 object-fit: cover;
 display: block;
 transition: transform 0.6s;
}

.track-card:hover img {
 transform: scale(1.05);
}

.track-ov {
 position: absolute;
 inset: 0;
 background: linear-gradient(
  to top,
  rgba(6, 16, 31, 0.9) 0%,
  rgba(6, 16, 31, 0.15) 50%,
  rgba(6, 16, 31, 0.3) 100%
 );
 display: flex;
 flex-direction: column;
 justify-content: flex-end;
 padding: 32px;
}

.track-ov h4 {
 font-family: var(--serif);
 font-size: 24px;
 color: var(--white);
 margin-bottom: 4px;
}

.track-ov .track-cap {
 font-size: 11px;
 color: var(--gold);
 letter-spacing: 0.12em;
 text-transform: uppercase;
 font-weight: 600;
 margin-bottom: 8px;
}

.track-ov p {
 font-size: 13px;
 color: var(--g300);
 line-height: 1.5;
}

.track-summary {
 display: grid;
 grid-template-columns: repeat(4, 1fr);
 gap: 1px;
 margin-top: 40px;
 background: rgba(255, 255, 255, 0.04);
 border: 1px solid rgba(255, 255, 255, 0.04);
}

.track-sum-i {
 padding: 28px;
 background: var(--g900);
 text-align: center;
}

.track-sum-i h3 {
 font-family: var(--serif);
 font-size: 28px;
 color: var(--gold);
 margin-bottom: 4px;
}

.track-sum-i p {
 font-size: 11px;
 color: var(--g500);
 letter-spacing: 0.1em;
 text-transform: uppercase;
}

/* === TEAM === */
.team {
 background: var(--white);
}

.team-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 28px;
}

.tm-card {
 background: var(--g50);
 border: 1px solid var(--g200);
 overflow: hidden;
 transition: all 0.4s;
}

.tm-card:hover {
 border-color: var(--accent);
 box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
 transform: translateY(-6px);
}

.tm-hd {
 padding: 44px 36px 28px;
 background: linear-gradient(135deg, var(--navy), var(--deep));
 position: relative;
}

.tm-hd::after {
 content: "";
 position: absolute;
 bottom: 0;
 left: 36px;
 width: 44px;
 height: 3px;
 background: var(--gold);
}

.tm-name {
 font-family: var(--serif);
 font-size: 26px;
 color: var(--white);
 margin-bottom: 6px;
}

.tm-role {
 font-size: 12px;
 color: var(--gold);
 text-transform: uppercase;
 letter-spacing: 0.12em;
 font-weight: 600;
}

.tm-org {
 font-size: 13px;
 color: var(--g300);
 margin-top: 4px;
}

.tm-body {
 padding: 32px 36px 40px;
}

.tm-body p {
 font-size: 14px;
 color: var(--g500);
 line-height: 1.75;
 margin-bottom: 12px;
}

.tm-hl {
 margin-top: 18px;
 padding-top: 18px;
 border-top: 1px solid var(--g200);
}

.tm-hi {
 font-size: 12px;
 color: var(--g500);
 padding: 5px 0;
 display: flex;
 align-items: start;
 gap: 10px;
 line-height: 1.55;
}

.tm-hi::before {
 content: "\2014";
 color: var(--accent);
 flex-shrink: 0;
 font-weight: 700;
}

.mav-logo {
 font-style: italic;
 font-weight: 900;
}

.gan-logo {
 font-weight: 800;
}

.form-submit-btn {
 width: 100%;
 cursor: pointer;
}

.form-subtext {
 font-size: 12px;
 opacity: 0.6;
 margin-top: 10px;
 color: var(--white);
}

/* === FOOTER === */
.foot {
 padding: 36px clamp(24px, 4vw, 64px);
 background: #040a14;
 border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.foot-i {
 max-width: var(--mw);
 margin: 0 auto;
 display: flex;
 justify-content: space-between;
 align-items: center;
}

.foot-t {
 font-size: 12px;
 color: var(--g500);
}

.foot-links {
 display: flex;
 gap: 32px;
}

.foot-links a {
 font-size: 11px;
 color: var(--g500);
 text-decoration: none;
 text-transform: uppercase;
 letter-spacing: 0.12em;
 transition: color 0.3s;
}

.foot-links a:hover {
 color: var(--gold);
}

/* === UTILITY HELPERS === */
.u-text-white {
 color: var(--white) !important;
}

.u-w-full {
 width: 100% !important;
}

.u-cursor-pointer {
 cursor: pointer;
}

.u-m-0 {
 margin: 0 !important;
}

.fw-img {
 margin: 0 !important;
}

.fw-img img {
 height: 360px;
 width: 100%;
 object-fit: cover;
 display: block;
}

/* === MULTI-PURPOSE SECTION === */
.multipurpose {
 background: var(--white);
 padding-bottom: clamp(60px, 12vw, 100px);
}

.sec-desc {
 max-width: 850px;
 margin: 0 auto 45px;
 text-align: center;
 color: var(--g600);
 font-size: 15.5px;
 line-height: 1.8;
}

.sec-desc p {
 margin-bottom: 20px;
}

.sec-desc p:last-child {
 margin-bottom: 0;
}

/* ========================================= */
/* ===        REVEAL ANIMATIONS          === */
/* ========================================= */

/* === REVEAL SYSTEM === */
.reveal-top,
.reveal-bottom,
.reveal-left,
.reveal-right,
.reveal-scale {
 opacity: 0;
 transition:
  opacity 1.4s ease,
  transform 1.4s cubic-bezier(0.165, 0.84, 0.44, 1);
 will-change: opacity, transform;
}

.reveal-top.revealed,
.reveal-bottom.revealed,
.reveal-left.revealed,
.reveal-right.revealed,
.reveal-scale.revealed {
 opacity: 1 !important;
 transform: translate(0) scale(1) !important;
}

.reveal-top {
 transform: translateY(-30px);
}

.reveal-bottom {
 transform: translateY(30px);
}

.reveal-left {
 transform: translateX(-30px);
}

.reveal-right {
 transform: translateX(30px);
}

.reveal-scale {
 transform: scale(0.95);
}

/* === STAGGER SYSTEM === */
.stagger-1 {
 transition-delay: 0.1s !important;
}

.stagger-2 {
 transition-delay: 0.2s !important;
}

.stagger-3 {
 transition-delay: 0.5s !important;
}

.stagger-4 {
 transition-delay: 0.8s !important;
}

.stagger-5 {
 transition-delay: 1.1s !important;
}

.stagger-6 {
 transition-delay: 1.4s !important;
}

.stagger-7 {
 transition-delay: 1.7s !important;
}

.stagger-8 {
 transition-delay: 2s !important;
}

.stagger-9 {
 transition-delay: 2.3s !important;
}

.stagger-10 {
 transition-delay: 2.6s !important;
}

/* ========================================= */
/* ===        NAVIGATION                 === */
/* ========================================= */

/* === NAV === */
.nav {
 position: fixed;
 top: 0;
 left: 0;
 right: 0;
 z-index: 1000;
 transition: all 0.5s;
 padding: 0 clamp(24px, 4vw, 64px);
 border-bottom: 2px solid;
 border-image: linear-gradient(to right, #b3935836 30%, #d9c38a73 60%) 1;
 box-shadow:
  0 8px 32px rgba(201, 164, 76, 0.15),
  0 4px 8px rgba(0, 0, 0, 0.4);
}

.nav.scrolled {
 background: rgba(10, 22, 41, 0.92);
 backdrop-filter: blur(10px);
 box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.nav.scrolled {
 background: rgba(6, 16, 31, 0.97);
 backdrop-filter: blur(24px);
}

.nav-i {
 max-width: var(--mw);
 margin: 0 auto;
 display: flex;
 align-items: center;
 justify-content: space-between;
 height: 76px;
 gap: 20px;
}

.nav-logo {
 text-decoration: none;
 display: flex;
 align-items: center;
}

.nav-logo img {
 height: 55px;
 width: auto;
 transition: opacity 0.3s;
}

.nav-links {
 display: flex;
 gap: 20px;
 align-items: center;
}

.nav-links a {
 color: rgba(255, 255, 255, 0.65);
 text-decoration: none;
 font-size: 10px;
 letter-spacing: 0.14em;
 text-transform: uppercase;
 font-weight: 500;
 transition: all 0.3s;
 position: relative;
}

.nav-links a:hover {
 color: var(--white);
}

.nav-links a.active {
 color: var(--gold);
}

.nav-links a.active::after {
 content: "";
 position: absolute;
 bottom: -4px;
 left: 50%;
 transform: translateX(-50%);
 width: 4px;
 height: 4px;
 background: var(--gold);
 border-radius: 1000px;
}

.nav-links a.active:hover::after {
 width: 100%;
 height: 1.5px;
 border-radius: 0;
 left: 0;
 transform: translateX(0);
}

.nav-links a::after {
 content: "";
 position: absolute;
 bottom: -6px;
 left: 0;
 width: 0;
 height: 1.5px;
 background: var(--gold);
 transition: all 0.3s ease-in-out;
}

.nav-links a:hover::after {
 width: 100%;
}

.nav-cta {
 background: var(--gold) !important;
 color: var(--navy) !important;
 padding: 8px 22px !important;
 font-weight: 600 !important;
 letter-spacing: 0.1em !important;
 border: none !important;
 border-radius: var(--radius) !important;
 cursor: pointer;
 transition: all 0.3s !important;
}

.nav-cta.active {
 color: var(--navy) !important;
}

.nav-cta:hover {
 background: var(--gold2) !important;
 transform: translateY(-1px) !important;
}

.nav-cta::after {
 display: none !important;
}

.mob-tog {
 display: none;
 background: none;
 border: none;
 cursor: pointer;
 padding: 8px;
}

.mob-tog span {
 display: block;
 width: 26px;
 height: 2px;
 background: var(--white);
 margin: 6px 0;
 transition: all 0.3s ease;
}

.mob-tog.active span:nth-child(1) {
 transform: translateY(8px) rotate(45deg);
}

.mob-tog.active span:nth-child(2) {
 opacity: 0;
}

.mob-tog.active span:nth-child(3) {
 transform: translateY(-8px) rotate(-45deg);
}

/* ========================================= */
/* ===        HERO SECTION               === */
/* ========================================= */

/* === HERO === */
.hero {
 position: relative;
 min-height: 100dvh;
 display: flex;
 align-items: center;
 overflow: hidden;
 background: var(--navy);
}

.hero-bg {
 position: absolute;
 inset: 0;
}

.hero-bg img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 filter: brightness(1) saturate(1.4);
}

.hero-bg::after {
 content: "";
 position: absolute;
 inset: 0;
 background: linear-gradient(
  180deg,
  rgba(6, 16, 31, 1) 10%,
  rgba(12, 30, 56, 0.9) 35%,
  rgba(6, 16, 31, 0.4) 100%
 );
 opacity: 0.8;
}

.hero-mesh {
 position: absolute;
 inset: 0;
 background-image:
  linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
  linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
 background-size: 100px 100px;
}

.hero-glow {
 position: absolute;
 top: 10%;
 right: 5%;
 width: 600px;
 height: 600px;
 background: radial-gradient(
  circle,
  rgba(201, 164, 76, 0.06) 0%,
  transparent 70%
 );
 pointer-events: none;
}

.hero-c {
 position: relative;
 z-index: 2;
 max-width: var(--mw);
 margin: 0 auto;
 padding-block: 150px 20px;
 padding-inline: clamp(24px, 4vw, 24px);
 width: 100%;
 display: flex;
 flex-direction: column;
 align-items: center;
 text-align: center;
 min-height: 100dvh;
 justify-content: space-between;
 gap: 20px;
}

.hero-top {
 display: flex;
 flex-direction: column;
 align-items: center;
 text-align: center;
 gap: 14px;
}

.hero-bottom {
 display: flex;
 flex-direction: column;
 align-items: center;
 gap: clamp(20px, 10vw, 80px);
}

.hero-top .divider {
 width: 100%;
 height: 3px;
 background: var(--white);
 border-radius: 100%;
}

.hero-h {
 font-family: var(--serif);
 font-size: clamp(38px, 5vw, 62px);
 color: var(--white);
 line-height: 1;
 font-weight: 400;
 max-width: 1200px;
 opacity: 0;
 animation: fu 0.8s ease 0.4s forwards;
 font-weight: 600;
 line-height: 1.2;
 text-transform: capitalize;
}

.hero-sub-h {
 font-size: clamp(17px, 2vw, 20px);
 color: var(--white);
 max-width: 620px;
 line-height: 1.75;
 font-weight: 500;
 opacity: 0;
 animation: fu 0.8s ease 0.6s forwards;
}

.hero-btn {
 display: inline-block;
 margin-top: 25px;
 padding: 14px 34px;
 background: var(--gold);
 color: var(--navy) !important;
 font-weight: 700;
 text-transform: uppercase;
 letter-spacing: 0.08em;
 border-radius: var(--radius);
 text-decoration: none;
 opacity: 0;
 animation: fu 0.8s ease 0.7s forwards;
 transition: all 0.3s ease;
 font-size: 13px;
 cursor: pointer;
}

.hero-btn:hover {
 transform: translateY(-2px);
 box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
 background: #e0be6c;
}

.hero-h em {
 color: var(--gold2);
}

.hero-h strong {
 font-weight: 700;
}

.hero-p {
 font-size: clamp(17px, 1.8vw, 24px);
 color: var(--white);
 max-width: 620px;
 line-height: 1.75;
 font-weight: 300;
 opacity: 0;
 animation: fu 0.8s ease 0.6s forwards;
}

.hero-stats {
 position: relative;
 background: rgba(12, 37, 68, 0.45);
 backdrop-filter: blur(2px);
 -webkit-backdrop-filter: blur(16px);
 border-radius: var(--radius);
 box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
 z-index: 2;
 width: 100%;
 max-width: 100%;
 margin: 0 auto;
 opacity: 0;
 animation: fu 0.8s ease 0.8s forwards;
 display: flex;
 justify-content: space-between;
 align-items: center;
 padding: 18px 20px;
 gap: 10px;
 border: 2px solid #ffffff0f;
}

.hero-stats::before {
 content: "";
 position: absolute;
 inset: 0;
 z-index: -1;
 padding: 2px;
 background: conic-gradient(
  from var(--border-angle),
  transparent 70%,
  var(--gold, rgba(217, 195, 138, 1)) 100%
 );
 -webkit-mask:
  linear-gradient(#fff 0 0) content-box,
  linear-gradient(#fff 0 0);
 -webkit-mask-composite: xor;
 mask-composite: exclude;
 animation: spin-glow 3s linear infinite;
}

.hero-stats .divider {
 width: 1px;
 height: -webkit-fill-available;
 background-color: rgba(255, 255, 255, 0.15);
}

.hero-stat {
 position: relative;
 flex: 1;
 max-width: 20%;
 min-width: fit-content;
 padding-inline: 10px;
 padding-top: 14px;
 display: flex;
 flex-direction: row;
 align-items: center;
 gap: 15px;
 border-top: 1px solid rgba(255, 255, 255, 0.15);
 transition: background-color 0.3s;
}

.hero-stat svg {
 width: 44px;
 height: 44px;
 color: var(--gold);
 flex-shrink: 0;
 opacity: 0.9;
}

.hero-stat-text {
 display: flex;
 flex-direction: column-reverse;
 align-items: flex-start;
}

.hero-stat::before {
 content: "";
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 height: 2px;
 background: linear-gradient(90deg, var(--gold), transparent);
 opacity: 0;
 transition: opacity 0.3s;
}

.hero-stat:hover::before {
 opacity: 1;
}

.hero-stat-v {
 font-family: var(--serif);
 font-size: clamp(20px, 1.76vw, 24px);
 color: var(--white);
 line-height: 1;
 margin-bottom: 6px;
 font-weight: 500;
 text-align: left;
}

.hero-stat-v span {
 font-size: 0.4em;
 color: var(--gold);
 font-family: var(--sans);
 font-weight: 500;
 letter-spacing: 0.05em;
 margin-left: 4px;
}

.hero-stat-l {
 font-size: 12px;
 color: rgba(255, 255, 255, 0.7);
 text-transform: uppercase;
 letter-spacing: 0.12em;
 font-family: var(--sans);
 font-weight: 500;
}

/* ========================================= */
/* ===        MULTIPURPOSE SECTION       === */
/* ========================================= */

.m-timeline-container {
 position: relative;
 padding-top: 40px;
 margin-bottom: 40px;
}

.m-timeline-line-h {
 position: absolute;
 top: 75px;
 left: 15%;
 right: 15%;
 height: 2px;
 background: #1a2332;
 z-index: 1;
}

.m-timeline-items {
 display: flex;
 justify-content: space-between;
 position: relative;
 z-index: 2;
}

.m-timeline-item {
 text-align: center;
 width: 30%;
 display: flex;
 flex-direction: column;
 align-items: center;
}

.m-timeline-date {
 font-weight: 600;
 font-size: 13px;
 color: var(--g900);
 margin-bottom: 8px;
}

.m-timeline-dot {
 width: 12px;
 height: 12px;
 border-radius: 50%;
 background: #1a2332;
 margin-bottom: 8px;
}

.m-timeline-line-v {
 width: 2px;
 height: 16px;
 background: #1a2332;
 margin-bottom: 4px;
}

.m-timeline-box {
 border: 1px solid var(--g200);
 padding: 16px;
 background: var(--white);
 border-top: 3px solid var(--gold);
 box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
 text-align: left;
}

/* --- Right Column Infographic Timeline --- */
.m-timeline-infographic {
 padding: 30px 0 40px;
}

.m-timeline-header-accent {
 display: flex;
 align-items: center;
 gap: 16px;
 margin-bottom: 30px;
 padding: 0 10px;
}

.m-timeline-header-accent .line {
 flex-grow: 1;
 background: var(--g200);
 width: clamp(20px, 9%, 100px);
 flex-shrink: 0;
 height: 1.5px;
 background: var(--gold);
 opacity: 0.45;
}

.m-timeline-header-accent .line-left {
 border-radius: 100% 0% 0% 100%;
}

.m-timeline-header-accent .line-right {
 border-radius: 0% 100% 100% 0%;
}

.m-timeline-header-accent .title {
 font-family: var(--serif);
 font-size: 24px;
 color: var(--navy);
 white-space: nowrap;
 margin-bottom: 0;
 font-weight: 600;
}

.m-timeline-dates {
 display: flex;
 justify-content: space-between;
 text-align: center;
 font-weight: 600;
 font-size: 14px;
 color: var(--navy);
}

.m-timeline-date-item {
 width: 32%;
 opacity: 0;
 transform: translateY(15px);
 transition:
  opacity 0.2s ease,
  transform 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.m-timeline-infographic.revealed .m-timeline-date-item {
 opacity: 1;
 transform: translateY(0);
}

.m-timeline-dates .m-timeline-date-item:nth-child(1) {
 transition-delay: 0.2s;
}

.m-timeline-dates .m-timeline-date-item:nth-child(2) {
 transition-delay: 0.5s;
}

.m-timeline-dates .m-timeline-date-item:nth-child(3) {
 transition-delay: 0.8s;
}

.m-timeline-bar-wrap {
 position: relative;
 height: 12px;
 margin-bottom: 24px;
}

.m-timeline-bar-wrap .line-h {
 position: absolute;
 top: 6px;
 left: 0;
 right: 0;
 height: 1px;
 background: var(--gold);
 width: 0;
 transition: width 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0.1s;
}

.m-timeline-infographic.revealed .m-timeline-bar-wrap .line-h {
 width: 100%;
}

.m-timeline-bar-wrap .tick {
 position: absolute;
 top: 6px;
 width: 2px;
 height: 20px;
 background: var(--gold);
 transform: scaleY(0);
 transform-origin: top;
 transition: transform 0.1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.m-timeline-infographic.revealed .m-timeline-bar-wrap .tick {
 transform: scaleY(1);
}

.m-timeline-bar-wrap .tick-left {
 left: 16%;
 transition-delay: 0.7s;
}

.m-timeline-bar-wrap .tick-center {
 left: 50%;
 transition-delay: 1.5s;
}

.m-timeline-bar-wrap .tick-right {
 right: 16%;
 transition-delay: 2.3s;
}

.m-timeline-bar-wrap .node-dot {
 position: absolute;
 aspect-ratio: 1;
 clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
 top: 3px;
 height: 8px;
 background: var(--gold);
 z-index: 1;
 transform: scale(0);
 transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) 1.2s;
}

.m-timeline-infographic.revealed .m-timeline-bar-wrap .node-dot {
 transform: scale(1);
}

.m-timeline-bar-wrap .node-left {
 left: 32.4%;
 transition-delay: 0.8s;
}

.m-timeline-bar-wrap .node-right {
 right: 32.3%;
 transition-delay: 1.6s;
}

.m-timeline-cols {
 display: flex;
 justify-content: space-between;
 align-items: start;
 position: relative;
}

.m-timeline-col {
 width: 32%;
 text-align: center;
 padding: 0 12px;
}

.m-timeline-col h4 {
 font-size: 16px;
 color: var(--g800);
 font-weight: 700;
 margin-bottom: 8px;
 font-family: var(--serif);
}

.m-timeline-col p {
 font-size: 12px;
 color: var(--g500);
 line-height: 1.6;
 margin: 0;
}

.m-timeline-divider-v {
 width: 1px;
 background: var(--g200);
 height: 170px;
 align-self: flex-start;
 margin-top: -54px;
}

.m-timeline-mobile-date {
 display: none;
}

.mp-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 32px;
 margin-top: 50px;
}

.mp-card {
 background: var(--white);
 padding: 36px 32px;
 border-radius: var(--radius);
 border: 1.5px solid var(--g200);
 transition: all 0.3s ease-in-out 0s;
 display: flex;
 flex-direction: column;
 align-items: center;
 text-align: center;
}

.mp-card:hover {
 transform: translateY(-3px);
 box-shadow: 0 16px 32px rgba(11, 31, 59, 0.04);
 border-color: var(--gold);
}

.mp-icon {
 width: 44px;
 height: 44px;
 color: var(--gold);
 margin-bottom: 20px;
}

.mp-title {
 font-family: var(--sans);
 font-size: 16px;
 font-weight: 700;
 text-transform: uppercase;
 color: var(--navy);
 margin-bottom: 12px;
 letter-spacing: 0.05em;
}

.mp-text {
 font-size: 14.5px;
 color: var(--g600);
 line-height: 1.7;
 margin-bottom: 12px;
}

.mp-text:last-child {
 margin-bottom: 0;
}

/* === TIMELINE SYNC OVERRIDES === */
.m-timeline-infographic.revealed
 .m-timeline-dates
 .m-timeline-date-item:nth-child(1) {
 transition-delay: 0.1s !important;
}

.m-timeline-infographic.revealed .m-timeline-bar-wrap .tick-left {
 transition-delay: 0.2s !important;
}

.m-timeline-infographic.revealed .m-timeline-cols .m-timeline-col:nth-child(1) {
 transition-delay: 0.25s !important;
}

.m-timeline-infographic.revealed .m-timeline-bar-wrap .node-left {
 transition-delay: 0.5s !important;
}

.m-timeline-infographic.revealed
 .m-timeline-dates
 .m-timeline-date-item:nth-child(2) {
 transition-delay: 0.7s !important;
}

.m-timeline-infographic.revealed .m-timeline-bar-wrap .tick-center {
 transition-delay: 0.7s !important;
}

.m-timeline-infographic.revealed .m-timeline-cols .m-timeline-col:nth-child(3) {
 transition-delay: 0.75s !important;
}

.m-timeline-infographic.revealed .m-timeline-bar-wrap .node-right {
 transition-delay: 1s !important;
}

.m-timeline-infographic.revealed
 .m-timeline-dates
 .m-timeline-date-item:nth-child(3) {
 transition-delay: 1.2s !important;
}

.m-timeline-infographic.revealed .m-timeline-bar-wrap .tick-right {
 transition-delay: 1.2s !important;
}

.m-timeline-infographic.revealed .m-timeline-cols .m-timeline-col:nth-child(5) {
 transition-delay: 1.25s !important;
}

/* ========================================= */
/* ===        ABOUT SECTION              === */
/* ========================================= */

/* === ABOUT === */
.about {
 position: relative;
 overflow: hidden;
}

.sec.about {
 color: var(--g800);
 position: relative;
 overflow: hidden;
}

.sec.about::before {
 content: "";
 position: absolute;
 top: -30%;
 right: -20%;
 width: 600px;
 height: 600px;
 background: radial-gradient(
  circle,
  rgba(201, 164, 76, 0.03) 0%,
  rgba(249, 250, 251, 0) 70%
 );
 z-index: 1;
 pointer-events: none;
}

.ab-grid {
 display: grid;
 grid-template-columns: 1.15fr 0.85fr;
 gap: clamp(40px, 6vw, 80px);
 max-width: var(--mw);
 margin: 0 auto;
 position: relative;
 z-index: 2;
 align-items: center;
}

.ab-content {
 text-align: left;
}

.ab-content p {
 color: var(--g700);
 font-size: 16px;
 line-height: 1.8;
 text-align: left;
 margin-bottom: 20px;
}

.benefits-list {
 display: grid;
 grid-template-columns: repeat(2, 1fr);
 gap: 24px;
 margin-top: 40px;
 counter-reset: benefit-counter;
 width: 100%;
}

.benefit-item {
 background: var(--white);
 border: 1px solid rgba(0, 0, 0, 0.04) !important;
 border-radius: var(--radius);
 padding: 28px;
 position: relative;
 text-align: left;
 display: flex;
 flex-direction: column;
 gap: 16px;
 align-items: flex-start;
 box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
 transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.benefit-item:hover {
 transform: translateY(-8px);
 border-color: rgba(201, 164, 76, 0.2) !important;
 box-shadow: 0 16px 36px rgba(0, 0, 0, 0.04);
}

.benefit-item::before {
 counter-increment: benefit-counter;
 content: "0" counter(benefit-counter);
 position: absolute;
 top: 24px;
 right: 24px;
 font-family: var(--serif);
 font-size: 32px;
 font-weight: 700;
 color: var(--gold);
 opacity: 0.12;
 transition: opacity 0.3s ease;
}

.benefit-item:hover::before {
 opacity: 0.3;
}

.benefit-icon {
 flex-shrink: 0;
 width: 44px;
 height: 44px;
 border-radius: var(--radius);
 background: rgba(201, 164, 76, 0.06);
 border: 1px solid rgba(201, 164, 76, 0.15);
 display: flex;
 align-items: center;
 justify-content: center;
 color: var(--gold);
 transition: transform 0.3s ease;
}

.benefit-item:hover .benefit-icon {
 transform: rotate(8deg) scale(1.05);
 background: rgba(201, 164, 76, 0.1);
}

.benefit-text h4 {
 color: var(--navy) !important;
 font-size: 18px;
 font-weight: 600;
 margin-bottom: 6px;
 font-family: var(--serif);
}

.benefit-text p {
 color: var(--g600) !important;
 font-size: 13.5px;
 line-height: 1.6;
 margin: 0 !important;
 text-align: left !important;
}

/* === IMAGE COLUMN === */
.ab-image-wrapper {
 position: relative;
 padding-right: 20px;
 padding-bottom: 20px;
 height: 100%;
}

.ab-image-frame {
 position: relative;
 border-radius: var(--radius);
 overflow: visible;
 box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
 z-index: 2;
 height: 100%;
}

.ab-image-frame img {
 width: 100%;
 height: 520px;
 object-fit: cover;
 border-radius: var(--radius);
 display: block;
 filter: brightness(0.95);
 transition: filter 0.4s ease;
 height: 100%;
}

.ab-image-frame:hover img {
 filter: brightness(1);
}

.ab-decorative-frame {
 position: absolute;
 top: 30px;
 right: -15px;
 bottom: -15px;
 left: 30px;
 border: 2px solid rgba(201, 164, 76, 0.4);
 border-radius: var(--radius);
 z-index: 1;
 pointer-events: none;
 transition: all 0.4s ease;
}

.ab-image-wrapper:hover .ab-decorative-frame {
 transform: translate(-5px, -5px);
 border-color: var(--gold);
}

.ab-stats-badge {
 position: absolute;
 bottom: 40px;
 left: -30px;
 backdrop-filter: blur(16px);
 background: rgba(255, 255, 255, 0.85);
 border: 1px solid rgba(201, 164, 76, 0.15);
 border-radius: var(--radius);
 padding: 18px 24px;
 display: flex;
 align-items: center;
 gap: 14px;
 box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
 animation: float 4s ease-in-out infinite;
 z-index: 3;
}

/* ========================================= */
/* ===        SIGNIFICANCE               === */
/* ========================================= */

/* === CONTEXT (Nigeria Energy) === */
/* === CONTEXT (Nigeria Energy) === */
/* === NATIONAL SIGNIFICANCE === */
.sig {
 background-color: #0b1426 !important;
 color: var(--white);
 position: relative;
 overflow: hidden;
}

.sig-grid {
 display: grid;
 grid-template-columns: 1.1fr 0.9fr;
 gap: 80px;
 align-items: center;
}

.sig-label {
 font-size: 11px;
 letter-spacing: 0.18em;
 text-transform: uppercase;
 color: var(--gold);
 font-weight: 600;
 margin-bottom: 24px;
 display: flex;
 align-items: center;
 gap: 12px;
}

.sig-label::before {
 content: "";
 width: 30px;
 height: 1.5px;
 background: var(--gold);
 display: inline-block;
}

.sig-title {
 font-family: var(--serif);
 font-size: clamp(34px, 4vw, 52px);
 color: var(--white);
 line-height: 1.15;
 margin-bottom: 28px;
 font-weight: 500;
}

.sig-text p {
 font-size: 16px;
 line-height: 1.8;
 color: var(--g300);
 margin-bottom: 20px;
}

.sig-text p strong {
 color: var(--white);
 font-weight: 600;
}

.sig-cards {
 display: grid;
 grid-template-columns: repeat(2, 1fr);
 gap: 16px;
}

.sig-card {
 background: rgba(255, 255, 255, 0.02);
 border: 1px solid rgba(255, 255, 255, 0.05);
 padding: 32px 24px;
 border-radius: var(--radius);
 transition: all 0.3s ease;
}

.sig-card:hover {
 background: rgba(255, 255, 255, 0.04);
 border-color: rgba(201, 164, 76, 0.15);
 transform: translateY(-3px);
}

.sig-card h3 {
 font-family: var(--serif);
 font-size: 34px;
 color: var(--gold);
 margin-bottom: 4px;
 font-weight: 500;
 display: flex;
 align-items: baseline;
 gap: 4px;
}

.sig-card h3 span {
 font-size: 13px;
 font-family: var(--sans);
 color: var(--g400);
 font-weight: 500;
}

.sig-card p {
 font-size: 12.5px;
 color: var(--g400);
 line-height: 1.5;
 margin: 0;
}

/* ========================================= */
/* ===        IMPACT SECTION             === */
/* ========================================= */

/* === IMPACT SECTION === */
.impact {
 position: relative;
 overflow: hidden;
 border-top: 1px solid rgba(0, 0, 0, 0.02);
 border-bottom: 1px solid rgba(0, 0, 0, 0.02);
}

.impact-i {
 max-width: var(--mw);
 margin: 0 auto;
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 24px;
 position: relative;
 z-index: 1;
}

.impact-item {
 padding: 36px 32px;
 text-align: center;
 display: flex;
 flex-direction: column;
 align-items: center;
 gap: 16px;
 background: var(--white);
 border-radius: var(--radius);
 border: 1px solid rgba(0, 0, 0, 0.04);
 box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
 position: relative;
 transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.impact-item:hover {
 transform: translateY(-5px);
 box-shadow: 0 16px 36px rgba(0, 0, 0, 0.05);
 border-color: rgba(201, 164, 76, 0.2);
}

.impact-item::before {
 content: "";
 position: absolute;
 inset: 12px;
 border: 1px solid rgba(201, 164, 76, 0.08);
 pointer-events: none;
 transition: border-color 0.4s;
}

.impact-item:hover::before {
 border-color: rgba(201, 164, 76, 0.25);
}

.impact-icon {
 width: 44px;
 height: 44px;
 color: var(--gold);
 background: rgba(201, 164, 76, 0.05);
 padding: 10px;
 border-radius: 50%;
 flex-shrink: 0;
 transition:
  transform 0.4s ease,
  background-color 0.4s ease;
}

.impact-item:hover .impact-icon {
 transform: scale(1.1);
 background: rgba(201, 164, 76, 0.1);
}

.impact-item h4 {
 font-family: var(--serif);
 font-size: 24px;
 color: var(--navy);
 margin-bottom: 2px;
 font-weight: 500;
 letter-spacing: -0.01em;
}

.impact-item p {
 font-size: 13px;
 color: var(--g600);
 letter-spacing: 0.05em;
 text-transform: uppercase;
 font-weight: 600;
 max-width: 200px;
 line-height: 1.5;
}

/* ========================================= */
/* ===        DEVELOPMENT STATUS         === */
/* ========================================= */

.dev-stat {
 padding-top: 60px;
 padding-bottom: 20px; /* Reduced to balance space to next sec */
}

.dev-stat-list {
 max-width: 800px;
 margin: 0;
}

.dev-stat-list ul {
 list-style: none;
 padding: 0;
 margin: 0;
 display: flex;
 flex-direction: column;
 gap: 28px;
}

.dev-stat-list li {
 position: relative;
 padding-left: 28px;
 font-size: 18px;
 color: var(--navy);
 line-height: 1.6;
}

.dev-stat-list li::before {
 content: "•";
 position: absolute;
 left: 0;
 color: var(--gold);
 font-size: 32px;
 line-height: 0.9;
 top: -2px;
}

/* ========================================= */
/* ===        LOCATION SECTION           === */
/* ========================================= */

/* --- Location --- */
.sec.location {
 padding-top: 60px;
}

.loc-canvas {
 position: relative;
 background: var(--white);
 border: 1px solid rgba(0, 0, 0, 0.06);
 border-radius: var(--radius);
 box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
 max-width: 800px;
 margin: 0 auto 32px;
 overflow: hidden;
}

.loc-canvas img {
 width: 100%;
 height: auto;
 display: block;
}

.loc-overlay {
 position: absolute;
 bottom: 20px;
 left: 20px;
 background: rgba(11, 31, 59, 0.85); /* Calm Navy Glassmorphic */
 padding: 10px 18px;
 border-radius: 8px;
 color: var(--white);
 backdrop-filter: blur(8px);
 -webkit-backdrop-filter: blur(8px);
 font-size: 14px;
 font-weight: 500;
 letter-spacing: 0.5px;
 border: 1px solid rgba(255, 255, 255, 0.1);
}

.loc-desc {
 text-align: center;
 max-width: 920px;
 margin: 0 auto;
 color: var(--g700);
 font-size: 20px;
 line-height: 1.6;
 font-weight: 500;
}

.tech-access-panel .lock-icon {
 color: var(--gold);
 margin-bottom: 16px;
 opacity: 0.85;
}

/* ========================================= */
/* ===        ESG & SUSTAINABILITY       === */
/* ========================================= */

/* === ESG === */
.sec.esg {
}

.esg-desc {
 text-align: center;
 max-width: 600px;
 margin-bottom: 60px;
 color: var(--g500);
 line-height: 1.6;
 text-align: left;
}

.sec.esg {
}

.esg-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 40px;
 margin-top: 50px;
}

.esg-item {
 background: var(--white);
 border-radius: var(--radius);
 overflow: hidden;
 box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
 transition:
  opacity 1.4s ease,
  transform 1.4s cubic-bezier(0.165, 0.84, 0.44, 1),
  box-shadow 0.4s ease;
}

.esg-item.revealed {
 transition:
  opacity 0.4s ease,
  transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
  box-shadow 0.4s ease;
}

.esg-item:hover {
 transform: translateY(-8px) !important;
 box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12) !important;
 cursor: pointer;
}

.ab-investor-footer {
 margin-top: 32px;
 padding-top: 16px;
 border-top: 1px solid rgba(6, 16, 31, 0.08);
}

.esg-item-img {
 aspect-ratio: 1.8;
 overflow: hidden;
 position: relative;
}

/* .esg-item-img.green-cast::after {
 content: "";
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background: rgba(6, 16, 31, 0.45);
 mix-blend-mode: multiply;
 pointer-events: none;
} */

/* .esg-item:nth-child(3) .esg-item-img img {
 object-fit: contain;
 width: 100%;
 max-height: 260px;
} */

.esg-item-img img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 object-position: top;
 display: block;
}

.esg-item-content {
 padding: 24px;
}

.esg-item-content h3 {
 font-family: var(--serif);
 font-size: 20px;
 color: var(--navy);
 margin-bottom: 16px;
}

.dv-extra {
 margin-top: 24px;
 padding-top: 12px;
 border-top: 1px solid rgba(0, 0, 0, 0.05);
 text-align: left;
}

.dv-extra-title {
 font-size: 14px;
 color: var(--g500);
 margin-bottom: 0;
}

.dv-extra-title strong {
 font-weight: 600;
 color: var(--g600);
}

.dv-extra-desc {
 font-size: 13px;
 color: var(--g500);
}

.esg-bullet-list {
 list-style: none;
 padding: 0;
 margin: 0;
 display: flex;
 flex-direction: column;
 gap: 12px;
}

.esg-bullet-list li {
 display: flex;
 gap: 12px;
 align-items: flex-start;
}

.esg-bullet-dot {
 color: var(--gold);
 font-weight: bold;
 font-size: 18px;
}

.esg-bullet-content {
 flex: 1;
}

.esg-bullet-content h4 {
 font-size: 15px;
 color: var(--g800);
 margin-bottom: 4px;
}

.esg-bullet-content p {
 font-size: 14px;
 color: var(--g500);
 line-height: 1.5;
 margin: 0;
}

.esg-c::before {
 content: "";
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 height: 3px;
 background: var(--accent);
 transform: scaleX(0);
 transition: transform 0.4s;
}

.esg-c:hover::before {
 transform: scaleX(1);
}

.esg-c:hover {
 border-color: var(--accent);
 transform: translateY(-6px);
 box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
}

.esg-ic {
 width: 60px;
 height: 60px;
 margin: 0 auto 20px;
 background: var(--g100);
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 font-size: 26px;
 transition: all 0.3s;
}

.esg-c:hover .esg-ic {
 background: rgba(26, 122, 90, 0.08);
}

.esg-c h4 {
 font-family: var(--serif);
 font-size: 20px;
 color: var(--g900);
 margin-bottom: 10px;
}

.esg-c p {
 font-size: 14px;
 color: var(--g500);
 line-height: 1.65;
}

.sec.fin .esg-desc {
 font-size: 12px;
 color: var(--g500);
 margin-bottom: 35px;
 max-width: 450px;
 margin-inline: auto;
}

/* ========================================= */
/* ===        DEVELOPER                  === */
/* ========================================= */

/* === DEVELOPER (REVISED) === */
.dvlp {
 background: var(--white);
}

.dv-bio {
 max-width: 800px;
 text-align: center;
}

.dv-bio p {
 font-size: 16px;
 line-height: 1.8;
 color: var(--g700);
 margin-bottom: 20px;
 text-align: left;
}

/* ========================================= */
/* ===        PARTNERS                   === */
/* ========================================= */

/* === FINANCING === */
.fin {
 background: var(--deep);
 color: var(--white);
 position: relative;
 overflow: hidden;
}

.fin::before {
 content: "";
 position: absolute;
 inset: 0;
 background: radial-gradient(
  ellipse at 90% 20%,
  rgba(201, 164, 76, 0.04),
  transparent 50%
 );
}

.fin .si {
 position: relative;
 z-index: 1;
}

.fin .label {
 color: var(--gold);
}

.fin .label::before {
 background: var(--gold);
}

.sec.fin {
 background: var(--white);
}

.partners-grid {
 display: flex;
 justify-content: center;
 gap: 60px;
 margin-top: 40px;
 align-items: center;
}

.partner-item {
 text-align: center;
 display: flex;
 flex-direction: column;
 align-items: center;
}

.partner-logo {
 font-size: 22px;
 font-weight: 800;
 color: var(--navy);
 margin-bottom: 4px;
 letter-spacing: 1px;
}

.partner-sub {
 font-size: 7.5px;
 font-weight: 600;
 color: var(--g500);
 letter-spacing: 3.5px;
 text-transform: uppercase;
}

.fin-card h5 {
 font-size: 16px;
 color: var(--white);
 margin-bottom: 4px;
 font-weight: 600;
}

.fin-card p {
 font-size: 13px;
 color: var(--g500);
 line-height: 1.55;
}

/* ========================================= */
/* ===        CONTACT                    === */
/* ========================================= */

/* === CONTACT === */
.contact {
 background:
  linear-gradient(rgba(4, 11, 22, 0.94), rgba(4, 11, 22, 0.94)),
  url("./assets/dam-img-1.jpg");
 background-size: cover;
 background-position: center;
 background-attachment: fixed;
 position: relative;
 padding: 60px 0;
 color: var(--white);
 text-align: center;
}

.con-wrap {
 max-width: 740px;
 margin: 0 auto;
 padding: 0 24px;
}

.con-row {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 20px;
}

.con-title {
 font-family: var(--serif);
 font-size: var(--title-fs);
 color: var(--white);
 margin-bottom: var(--title-mb);
 font-weight: 600;
}

.con-divider {
 width: 40px;
 height: 1.5px;
 background: var(--gold);
 margin: 0 auto 24px;
}

.con-desc {
 color: rgba(255, 255, 255, 0.75);
 font-size: 15px;
 line-height: 1.6;
 margin-bottom: 30px;
 max-width: 480px;
 margin-inline: auto;
}

.con-form-new {
 text-align: left;
 margin-bottom: 40px;
}

.con-group {
 margin-bottom: 20px;
}

.con-group label {
 display: block;
 font-size: 10px;
 letter-spacing: 0.16em;
 text-transform: uppercase;
 color: rgba(255, 255, 255, 0.5);
 font-weight: 600;
 margin-bottom: 8px;
}

.con-group input,
.con-group textarea {
 width: 100%;
 background: rgba(255, 255, 255, 0.03);
 border: 1px solid rgba(255, 255, 255, 0.08);
 border-radius: var(--radius);
 padding: 14px;
 color: var(--white);
 font-size: 14.5px;
 font-family: var(--sans);
 transition: all 0.3s ease;
 resize: vertical;
}

.con-group input:focus,
.con-group textarea:focus {
 outline: none;
 border-color: rgba(201, 164, 76, 0.3);
 background: rgba(255, 255, 255, 0.05);
}

.con-btn {
 width: 100%;
 padding: 15px;
 background: var(--gold);
 border: none;
 border-radius: var(--radius);
 color: var(--navy);
 font-weight: 600;
 font-size: 14px;
 letter-spacing: 0.1em;
 cursor: pointer;
 transition: all 0.3s ease;
}

.con-btn:hover {
 background: #e5c06a;
 transform: translateY(-2px);
}

.con-success {
 text-align: center;
 padding: 40px 20px;
 background: rgba(255, 255, 255, 0.03);
 border: 1px solid rgba(255, 255, 255, 0.06);
 border-radius: var(--radius);
 animation: fadeIn 0.5s ease forwards;
 margin-bottom: 40px;
}

.con-success-ic {
 width: 50px;
 height: 50px;
 background: var(--gold);
 color: var(--navy);
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 font-size: 24px;
 margin: 0 auto 16px;
 font-weight: bold;
}

.con-success h3 {
 font-family: var(--serif);
 font-size: 20px;
 color: var(--gold);
 margin-bottom: 8px;
}

.con-success p {
 font-size: 14.5px;
 color: rgba(255, 255, 255, 0.7);
 max-width: 350px;
 margin: 0 auto;
 line-height: 1.6;
}

.con-btn:hover {
 background: var(--gold2);
}

.con-footer-info {
 font-size: 13px;
 color: rgba(255, 255, 255, 0.4);
 letter-spacing: 0.02em;
}

/* === DEVELOPMENT & EXECUTION ROADMAP === */
.roadmap-sec {
 background-color: var(--white);
 position: relative;
 overflow: hidden;
}

.roadmap-bg {
 position: absolute;
 top: 0;
 right: 0;
 bottom: 0;
 width: 50%;
 background-image: url("./assets/dam-img-4.png");
 background-size: cover;
 background-position: center;
 opacity: 0.25;
 -webkit-mask-image: linear-gradient(to right, transparent, black 80%);
 mask-image: linear-gradient(to right, transparent, black 80%);
 z-index: 0;
}

.roadmap-sec .si {
 position: relative;
 z-index: 1;
}

.roadmap-timeline {
 display: flex;
 position: relative;
 margin-top: 60px;
 gap: 36px;
 align-items: flex-start;
 justify-content: space-between;
}

.roadmap-line {
 position: absolute;
 top: 8px;
 left: 0;
 right: 0;
 height: 2px;
 background: var(--g200);
 z-index: 1;
}

.roadmap-item {
 position: relative;
 z-index: 2;
 flex: 1;
 text-align: left;
}

.roadmap-dot {
 width: 18px;
 height: 18px;
 background: var(--g300);
 border-radius: 50%;
 margin-bottom: 24px;
 box-shadow: 0 0 0 8px var(--white);
 transition: all 0.3s ease;
 position: relative;
}

.roadmap-item.active .roadmap-dot {
 background: var(--gold);
 box-shadow: 0 0 0 8px rgba(201, 164, 76, 0.15);
}

/* .roadmap-item:hover .roadmap-dot {
 background: var(--accent);
} */

.roadmap-date {
 font-family: var(--sans);
 font-size: 11px;
 font-weight: 600;
 color: var(--gold);
 text-transform: uppercase;
 letter-spacing: 0.12em;
 margin-bottom: 8px;
 display: block;
}

.roadmap-content h4 {
 font-family: var(--serif);
 font-size: 18px;
 color: var(--navy);
 margin-bottom: 12px;
 font-weight: 700;
 line-height: 1.35;
}

.roadmap-content p {
 font-size: 13.5px;
 color: var(--g500);
 line-height: 1.7;
}

@media (max-width: 991px) {
 .roadmap-timeline {
  flex-direction: column;
  margin-top: 40px;
  gap: 40px;
 }
 .roadmap-line {
  top: 0;
  bottom: 0;
  left: 8px;
  width: 2px;
  height: auto;
  right: auto;
 }
 .roadmap-item {
  display: flex;
  text-align: left;
  gap: 24px;
  width: 100%;
 }
 .roadmap-dot {
  margin-bottom: 0;
  flex-shrink: 0;
 }
}

/* ========================================= */
/* ===        RESPONSIVENESS (BREAKPOINTS) === */
/* ========================================= */

@media (max-width: 500px) {
 .sig-cards {
  grid-template-columns: 1fr;
 }
 .dv-extra-title {
  font-size: 11px;
 }
}

@media (max-width: 640px) {
 .benefits-list {
  grid-template-columns: 1fr;
 }
 .ab-image-frame img {
  height: 380px;
 }
 .badge-v {
  font-size: 22px;
 }
 .title {
  font-size: var(--title-fs-mob);
 }
 .desc {
  font-size: 14px;
  margin-bottom: 24px;
 }
 .con-group {
  margin-bottom: 16px;
 }
 .con-group input,
 .con-group textarea {
  padding: 12px;
  font-size: 14px;
 }
 .con-btn {
  padding: 14px;
 }
 .con-footer-info {
  font-size: 12px;
  line-height: 1.5;
 }
}

@media (max-width: 768px) {
 .sec-header {
  text-align: center;
 }
 .sec-header .label {
  justify-content: center;
  margin-inline: auto;
 }
 .sec-header .title {
  justify-content: center;
  text-align: center;
 }
 .sec-subheader {
  text-align: center;
  margin-inline: auto;
 }

 .site-dets {
  grid-template-columns: 1fr;
 }
 .site-dets .site-det:last-child {
  grid-column: span 1;
 }
 .m-timeline-dates,
 .m-timeline-bar-wrap,
 .m-timeline-divider-v {
  display: none !important;
 }
 .m-timeline-cols {
  flex-direction: column;
  gap: 30px;
  border-left: 2px solid var(--gold);
  padding-left: 24px;
  margin-left: 12px;
 }
 .m-timeline-col {
  width: 100% !important;
  text-align: left !important;
  padding: 0 !important;
  position: relative;
 }
 .m-timeline-col::before {
  content: "";
  position: absolute;
  left: -31px;
  top: 6px;
  width: 12px;
  height: 12px;
  aspect-ratio: 1;
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  background: var(--gold);
 }
 .m-timeline-mobile-date {
  display: block;
  font-size: 13px;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 4px;
 }
 .con-row {
  grid-template-columns: 1fr;
  gap: 0;
 }
 .partners-grid {
  flex-direction: column;
  gap: 40px;
 }
}

@media (max-width: 991px) {
 .sig-grid {
  grid-template-columns: 1fr;
  gap: 20px;
 }
 .impact-i {
  grid-template-columns: 1fr;
  gap: 16px;
 }
 .merged-grid {
  grid-template-columns: 1fr;
  gap: 40px;
 }
 .m-inline-grid,
 .m-benefits-subgrid {
  grid-template-columns: 1fr;
 }
 .m-timeline-header-accent {
  padding-inline: 0px;
 }
 .m-timeline-header-accent .line {
  width: clamp(4px, 1%, 100px);
 }
 .eng-grid {
  grid-template-columns: 1fr;
  gap: 40px;
 }
 .dv-split {
  grid-template-columns: 1fr;
  gap: 50px;
 }
 .dv-bio {
  max-width: 100%;
 }
 .dv-area-card {
  padding: 30px 35px 30px 50px;
 }
 .dv-area-num {
  left: -15px;
 }
 .mp-grid {
  grid-template-columns: 1fr;
  gap: 20px;
 }
}

@media (max-width: 1200px) {
 .hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
 }
 .hero-stats .divider {
  display: none !important;
 }
 .hero-stat {
  max-width: 100%;
 }
 .site-text {
  position: unset;
 }
 .ab-grid,
 .ctx-grid,
 .site-grid,
 .comm-grid,
 .dv-grid,
 .fin-grid,
 .con-grid {
  grid-template-columns: 1fr;
  gap: 48px;
 }
 .tech-grid,
 .esg-grid,
 .eng-showcase {
  grid-template-columns: repeat(2, 1fr);
 }
 .team-grid,
 .track-grid {
  grid-template-columns: repeat(2, 1fr);
 }
 .impact-i {
  grid-template-columns: 1fr;
 }
 .track-summary {
  grid-template-columns: repeat(2, 1fr);
 }
 .ctx-stats {
  grid-template-columns: 1fr 1fr;
 }
 .benefits-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
 }
}

@media (max-width: 1024px) {
 .ab-grid {
  grid-template-columns: 1fr;
  gap: 50px;
 }
 .ab-image-wrapper {
  width: 100%;
  max-width: 100%;
  padding: 0 20px 20px 0;
 }
 .ab-stats-badge {
  left: -20px;
 }
 .ab-decorative-frame {
  top: 20px;
  right: -10px;
  bottom: -10px;
  left: 20px;
 }
 .nav-i {
  height: 70px;
 }
 .nav-logo img {
  height: 50px;
 }
 .nav-links {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(4, 11, 22, 0.98);
  backdrop-filter: blur(12px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 40px;
  transform: translateY(-20px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 99;
 }
 .nav.nav-active .nav-links {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
 }
 .nav-links a {
  font-size: 14px;
  color: var(--white);
  font-weight: 500;
  transition: color 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.12em;
 }
 .nav-links a:hover {
  color: var(--gold);
 }
 .nav-links .nav-cta {
  width: 80%;
  text-align: center;
  padding: 12px;
  margin-top: 16px;
 }
 .mob-tog {
  display: block;
  position: relative;
  z-index: 100;
 }
 .hero-stats,
 .tech-param-grid,
 .dev-grid,
 .esg-grid,
 .team-grid,
 .track-grid,
 .ctx-stats,
 .track-summary {
  grid-template-columns: 1fr;
 }
 .tech-param-grid {
  border: none;
 }
 .tech-card {
  border-right: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
  padding: 24px;
 }
 .tech-card:last-child {
  border-bottom: none !important;
 }
 .tech-access-panel {
  padding: 30px 20px;
 }
 .comm-imgs {
  grid-template-columns: 1fr;
 }
 .foot-i {
  flex-direction: column;
  gap: 16px;
  text-align: center;
 }
 .fw-img img {
  height: 320px;
 }
 .fw-img-o {
  padding: 16px;
  align-items: center;
 }
 .fw-img-t {
  padding: 24px 20px;
  max-width: 100%;
 }
 .eng-full {
  grid-column: auto;
 }
 .benefits-list {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
 }
 .ab-image-wrapper.reveal-item {
  transform: translateX(40px);
 }
 .ab-image-wrapper.reveal-item.revealed {
  transform: translateX(0);
 }
}

/* --- Text Color Refinements --- */
.contact .disclaimer {
 color: var(--white) !important;
 border-top: 1px solid rgba(255, 255, 255, 0.2);
 border-bottom: 1px solid rgba(255, 255, 255, 0.2);
 text-align: center;
}

.foot {
 background: var(--navy); /* Setting explicit background just in case */
}

.foot-t,
.foot-links a {
 color: var(--white) !important;
 opacity: 0.85;
 transition: opacity 0.3s ease;
}

.foot-links a:hover {
 opacity: 1;
}

/* === DEV STATS GRID === */
.dev-stats-grid {
 display: grid;
 grid-template-columns: repeat(4, 1fr);
 gap: 30px;
 margin: 50px 0;
 border-top: 1px solid var(--g200);
 border-bottom: 1px solid var(--g200);
 padding: 40px 0;
}

.dev-stat-item {
 text-align: left;
 border-right: 1px solid var(--g200);
 padding-right: 30px;
}

.dev-stat-item:last-child {
 border-right: none;
 padding-right: 0;
}

.dev-stat-value {
 font-family: var(--serif);
 font-size: 42px;
 color: var(--gold);
 line-height: 1.1;
 margin-bottom: 12px;
 font-weight: 600;
}

.dev-stat-value .unit {
 font-family: var(--sans);
 font-size: 20px;
 color: var(--navy);
 font-weight: 600;
}

.dev-stat-label {
 font-family: var(--sans);
 font-size: 14px;
 font-weight: 600;
 color: var(--navy);
 text-transform: uppercase;
 letter-spacing: 0.12em;
 line-height: 1.5;
}

@media (max-width: 900px) {
 .dev-stats-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 30px;
 }
 .dev-stat-item:nth-child(even) {
  border-right: none;
 }
}

@media (max-width: 500px) {
 .dev-stats-grid {
  grid-template-columns: 1fr;
  gap: 30px;
  padding: 30px 0;
 }
 .dev-stat-item {
  border-right: none !important;
  padding-right: 0;
  border-bottom: 1px solid var(--g200);
  padding-bottom: 30px;
 }
 .dev-stat-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
 }
}
