/* ═══════════════════════════════════════════════════════════
   SEASHELLS v5 — RESTRUCTURED · PHOTO-FORWARD · STREAMLINED
   External stylesheet — replaces all inline styles
═══════════════════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --green:      #1a5c2a;
  --green-dark: #0d2e15;
  --green-deep: #071a0c;
  --gold:       #c9962a;
  --gold-lt:    #e5b84a;
  --gold-bg:    #fff8ec;
  --white:      #ffffff;
  --off-white:  #f8f9f6;
  --light-grey: #f0f1ee;
  --ink:        #111814;
  --ink-soft:   #3a4a3e;
  --muted:      #6b7a6e;
  --nav-h:      80px;
  --radius:     6px;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: 'Barlow', sans-serif;
  background: var(--off-white);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* ── CUSTOM CURSOR (desktop only) ── */
@media (pointer: fine) {
  body { cursor: none; }
  .cursor {
    position: fixed; width: 10px; height: 10px;
    background: var(--gold); border-radius: 50%;
    pointer-events: none; z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width .2s, height .2s;
  }
  .cursor-ring {
    position: fixed; width: 38px; height: 38px;
    border: 1.5px solid var(--gold); border-radius: 50%;
    pointer-events: none; z-index: 9998;
    transform: translate(-50%, -50%);
    opacity: .5; transition: width .18s, height .18s;
  }
  body:has(a:hover) .cursor,
  body:has(button:hover) .cursor { width: 6px; height: 6px; }
  body:has(a:hover) .cursor-ring,
  body:has(button:hover) .cursor-ring { width: 54px; height: 54px; opacity: .25; }
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h); z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4rem;
  transition: background .35s, box-shadow .35s;
}
nav.transparent { background: transparent; }
nav.solid        { background: var(--green-dark); box-shadow: 0 2px 20px rgba(0,0,0,.3); }
nav.light-solid  { background: var(--white); box-shadow: 0 1px 0 rgba(0,0,0,.06); }

.nav-logo img { height: 36px; display: block; transition: filter .3s; }
nav.transparent .nav-logo img,
nav.solid .nav-logo img { filter: brightness(0) invert(1); }
nav.light-solid .nav-logo img { filter: none; }

.nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
.nav-links a { font-size: .875rem; font-weight: 500; color: rgba(255,255,255,.85); letter-spacing: .01em; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold-lt); }
nav.light-solid .nav-links a { color: var(--ink-soft); }
nav.light-solid .nav-links a:hover { color: var(--green); }

.nav-cta {
  background: var(--gold) !important; color: var(--ink) !important;
  padding: .65rem 1.5rem; font-weight: 700 !important;
  border-radius: var(--radius);
  transition: background .2s, transform .2s !important;
}
.nav-cta:hover { background: var(--gold-lt) !important; transform: translateY(-1px); }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span { width: 22px; height: 2px; background: var(--white); display: block; transition: transform .3s, opacity .3s; }
nav.light-solid .nav-hamburger span { background: var(--ink); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: .625rem;
  background: var(--gold); color: var(--ink);
  font-size: .875rem; font-weight: 700; letter-spacing: .02em;
  padding: .875rem 2rem; border-radius: var(--radius); border: none; cursor: pointer;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.btn-primary:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,150,42,.35); }
.btn-primary svg { transition: transform .2s; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-outline-white {
  display: inline-flex; align-items: center; gap: .625rem;
  border: 2px solid rgba(255,255,255,.5); color: var(--white);
  font-size: .875rem; font-weight: 600;
  padding: .875rem 2rem; border-radius: var(--radius);
  transition: border-color .2s, background .2s;
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,.08); }

.btn-green {
  display: inline-flex; align-items: center; gap: .625rem;
  background: var(--green); color: var(--white);
  font-size: .875rem; font-weight: 700; letter-spacing: .02em;
  padding: .875rem 2rem; border-radius: var(--radius); border: none; cursor: pointer;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.btn-green:hover { background: #226B33; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,92,42,.35); }

.btn-text-arrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .8rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--gold); transition: gap .2s;
}
.btn-text-arrow:hover { gap: .875rem; }

.btn-text-green {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .8rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--green); transition: gap .2s;
}
.btn-text-green:hover { gap: .875rem; }

/* ── SECTION LABELS ── */
.eyebrow {
  font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold); display: flex; align-items: center; gap: .625rem;
}
.eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--gold); }
.eyebrow.on-dark { color: var(--gold-lt); }
.eyebrow.on-dark::before { background: var(--gold-lt); }

.section-title {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800; line-height: 1.08; letter-spacing: -.02em; color: var(--ink);
}
.section-title.on-dark { color: var(--white); }
.section-title em { font-style: italic; font-weight: 700; color: var(--gold); }
.section-title.on-dark em { color: var(--gold-lt); }

/* ── LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; width: 100%; }

/* Prevent grid/flex children from overflowing their cells */
.impact-inner > *, .about-strip-inner > *, .faq-inner > *,
.sd-inner > *, .about-intro-grid > *, .svc-grid > *,
.clients-intro > *, .contact-grid > *, .banking-grid > *,
.cred-intro-grid > *, .footer-grid > * { min-width: 0; }
.section-pad    { padding: 6rem 0; }
.section-pad-sm { padding: 4rem 0; }
.gold-line { width: 60px; height: 3px; background: var(--gold); margin: .875rem 0 1.5rem; }

/* ── REVEAL ANIMATIONS ── */
.reveal        { opacity: 0; transform: translateY(28px);  transition: opacity .7s ease, transform .7s ease; }
.reveal-left   { opacity: 0; transform: translateX(-32px); transition: opacity .7s ease, transform .7s ease; }
.reveal-right  { opacity: 0; transform: translateX(32px);  transition: opacity .7s ease, transform .7s ease; }
.reveal.visible, .reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translate(0); }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .45s; }

/* ── COUNTER ── */
.counter {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800; line-height: 1;
}

/* ── CLIENT TICKER ── */
.client-ticker {
  background: var(--white); overflow: hidden; padding: 2.5rem 0;
  border-top: 1px solid rgba(0,0,0,.06); border-bottom: 1px solid rgba(0,0,0,.06);
  position: relative; width: 100%; max-width: 100vw;
}
.client-ticker-track {
  display: flex; align-items: center;
  animation: clientScroll 30s linear infinite;
  white-space: nowrap;
}
.client-ticker-item {
  padding: 0 3rem; font-size: .95rem; font-weight: 800;
  letter-spacing: .05em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: .75rem; flex-shrink: 0;
}
.client-ticker-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
@keyframes clientScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── TABS ── */
.tab-buttons { display: flex; gap: 0; border-bottom: 1px solid rgba(0,0,0,.1); margin-bottom: 2.5rem; }
.tab-btn {
  font-size: .875rem; font-weight: 600; letter-spacing: .04em;
  color: var(--muted); padding: .875rem 1.75rem;
  background: none; border: none; border-bottom: 2px solid transparent;
  cursor: pointer; transition: color .2s, border-color .2s;
}
.tab-btn.active { color: var(--green); border-bottom-color: var(--gold); }
.tab-panel { display: none; }
.tab-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid rgba(0,0,0,.08); }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 0; background: none; border: none; cursor: pointer;
  text-align: left; font-size: 1rem; font-weight: 600; color: var(--ink); gap: 1rem;
}
.faq-icon {
  width: 28px; height: 28px; background: var(--green); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: background .2s, transform .2s;
}
.faq-icon svg { stroke: white; }
.faq-item.open .faq-icon { background: var(--gold); transform: rotate(45deg); }
.faq-answer { font-size: .9rem; color: var(--muted); line-height: 1.75; padding: 0 2rem 1.25rem 0; display: none; }
.faq-item.open .faq-answer { display: block; }

/* ── SERVICE CARD ── */
.service-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  transition: box-shadow .3s, transform .3s;
}
.service-card:hover { box-shadow: 0 20px 60px rgba(0,0,0,.12); transform: translateY(-6px); }
.sc-img { height: 240px; position: relative; overflow: hidden; }
.sc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover .sc-img img { transform: scale(1.04); }
.sc-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.5) 0%, transparent 60%); }
.sc-icon-badge {
  position: absolute; bottom: -1px; right: 1.5rem;
  width: 52px; height: 52px; background: var(--gold);
  border-radius: var(--radius) var(--radius) 0 0;
  display: flex; align-items: center; justify-content: center;
}
.sc-icon-badge svg { width: 22px; height: 22px; stroke: var(--ink); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.sc-body { padding: 2rem; }
.sc-title { font-size: 1.2rem; font-weight: 700; color: var(--ink); margin-bottom: .75rem; line-height: 1.25; }
.sc-desc  { font-size: .875rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.5rem; }

/* ── PROJECT CARD ── */
.project-card { position: relative; border-radius: var(--radius); overflow: hidden; height: 420px; }
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.project-card:hover img { transform: scale(1.05); }
.project-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 50%); }
.project-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem; }
.project-tag {
  font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  background: var(--gold); color: var(--ink); padding: .3rem .875rem; border-radius: 2rem;
  display: inline-block; margin-bottom: .875rem;
}
.project-title { font-size: 1.35rem; font-weight: 800; color: var(--white); margin-bottom: .5rem; line-height: 1.2; }
.project-desc  { font-size: .8rem; color: rgba(255,255,255,.7); line-height: 1.6; margin-bottom: 1rem; }

/* ── STAT ITEMS ── */
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800; color: var(--white); line-height: 1;
  display: flex; align-items: flex-end; justify-content: center; gap: .25rem;
}
.stat-suffix { font-size: 2rem; font-weight: 700; line-height: 1.3; color: var(--gold-lt); }
.stat-label { font-size: .75rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-top: .625rem; }
.stat-divider { width: 1px; background: rgba(255,255,255,.15); }

/* ── TESTIMONIAL CARD ── */
.testimonial-card {
  background: var(--white); border-radius: var(--radius); padding: 2rem;
  border-left: 4px solid var(--gold); box-shadow: 0 4px 20px rgba(0,0,0,.06);
}
.tc-quote { font-size: .9rem; color: var(--ink-soft); line-height: 1.75; margin-bottom: 1.5rem; font-style: italic; }
.tc-avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; overflow: hidden; flex-shrink: 0;
}
.tc-name { font-size: .9rem; font-weight: 700; color: var(--ink); }
.tc-role { font-size: .75rem; color: var(--muted); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  position: relative; min-height: 55vh; overflow: hidden;
  display: flex; align-items: flex-end;
}
.page-hero-img {
  position: absolute; inset: 0;
}
.page-hero-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(7,26,12,.85) 0%, rgba(26,92,42,.7) 100%);
}
.page-hero-pattern {
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'%3E%3Cpath d='M0 30 L60 30M30 0 L30 60'/%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-content {
  position: relative; z-index: 2;
  padding: calc(var(--nav-h) + 4rem) 0 5rem; width: 100%;
}
.page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 900;
  color: var(--white); line-height: 1.0; letter-spacing: -.03em;
}
.page-hero h1 em { font-style: italic; color: var(--gold-lt); }
.page-hero p {
  font-size: 1.1rem; color: rgba(255,255,255,.6); font-weight: 300;
  max-width: 540px; margin-top: 1.25rem; line-height: 1.75;
}
.page-hero-ghost {
  position: absolute; right: 2rem; bottom: -20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(8rem, 18vw, 16rem); font-weight: 900;
  color: rgba(255,255,255,.04); letter-spacing: -.04em; line-height: 1;
  pointer-events: none; z-index: 1;
}

/* ── FOOTER ── */
footer { background: var(--ink); }
.footer-top { padding: 5rem 0 3rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; }
.footer-brand .fl-logo { margin-bottom: 1.25rem; }
.footer-brand .fl-logo img { height: 30px; filter: brightness(0) invert(1); opacity: .75; }
.footer-brand p { font-size: .85rem; color: rgba(255,255,255,.4); line-height: 1.75; max-width: 230px; }
.footer-socials { display: flex; gap: .75rem; margin-top: 1.5rem; }
.footer-socials a {
  width: 36px; height: 36px; border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.4); transition: border-color .2s, color .2s;
}
.footer-socials a:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h5 { font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .75rem; }
.footer-col a { font-size: .875rem; color: rgba(255,255,255,.45); transition: color .2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 0; }
.footer-copy { font-size: .8rem; color: rgba(255,255,255,.25); }
.footer-reg  { font-size: .7rem; color: rgba(255,255,255,.15); }

/* ══════════════════════════════════════════════════════════
   HOME PAGE
══════════════════════════════════════════════════════════ */

/* HERO — full-bleed photo with overlay + pinned stats bar */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

/* Full-bleed background photo */
.hero-bg-img { position: absolute; inset: 0; z-index: 0; }
.hero-bg-img img { width: 100%; height: 100%; object-fit: cover; object-position: 62% center; }

/* Directional gradient — deep dark-green left → transparent right */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    108deg,
    rgba(7,26,12,.97)  0%,
    rgba(7,26,12,.92) 35%,
    rgba(7,26,12,.60) 58%,
    rgba(7,26,12,.15) 100%
  );
}

/* Subtle grid texture */
.hero-grid {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 72px 72px;
}

/* Gold accent line on left edge */
.hero::before {
  content: '';
  position: absolute; left: 0; top: 15%; bottom: 15%;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  z-index: 3; opacity: .5;
}

/* Content area */
.hero-content {
  position: relative; z-index: 4;
  padding-top: calc(var(--nav-h) + 5rem);
  padding-bottom: 8rem; /* clears the stats bar */
}
.hero-inner {
  max-width: 660px;
  display: flex; flex-direction: column; gap: 1.75rem;
}

/* Eyebrow pill */
.hero-eyebrow {
  font-size: .68rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  background: rgba(201,150,42,.1); color: var(--gold-lt);
  padding: .45rem 1.1rem; border-radius: 2rem; width: fit-content;
  border: 1px solid rgba(201,150,42,.3);
  opacity: 0; transform: translateY(14px); animation: hfadeUp .6s .1s forwards;
}

/* Headline — tight, three-line block */
.hero-title {
  font-size: clamp(3.25rem, 6.5vw, 5.75rem);
  font-weight: 900; line-height: .97; letter-spacing: -.04em; color: var(--white);
  opacity: 0; transform: translateY(22px); animation: hfadeUp .75s .28s forwards;
}
.ht-gold   { color: var(--gold-lt); }
.ht-italic { font-style: italic; font-weight: 700; color: rgba(255,255,255,.6); }

/* Sub-copy */
.hero-desc {
  font-size: 1.05rem; font-weight: 300; color: rgba(255,255,255,.52);
  line-height: 1.75; max-width: 440px;
  opacity: 0; transform: translateY(14px); animation: hfadeUp .7s .48s forwards;
}

/* Buttons */
.hero-btns {
  display: flex; gap: 1rem; align-items: center; flex-wrap: wrap;
  opacity: 0; transform: translateY(12px); animation: hfadeUp .65s .62s forwards;
}

/* Social row */
.hero-socials {
  display: flex; align-items: center; gap: 1rem;
  opacity: 0; animation: hfadeIn .8s .88s forwards;
}
.hero-socials span {
  font-size: .63rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.28);
}
.hero-social-link {
  width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.45); transition: border-color .2s, color .2s, background .2s;
}
.hero-social-link:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,150,42,.1); }

/* Scroll indicator */
.hero-scroll {
  position: absolute; right: 3.5rem; bottom: 6.5rem; z-index: 5;
  display: flex; flex-direction: column; align-items: center; gap: .75rem;
  opacity: 0; animation: hfadeIn 1s 1.1s forwards;
}
.hero-scroll-line {
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, rgba(201,150,42,.6), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
.hero-scroll-label {
  font-size: .58rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.22); writing-mode: vertical-rl; transform: rotate(180deg);
}
@keyframes scrollPulse {
  0%, 100% { opacity: .45; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.2); }
}

/* Stats bar — frosted glass pinned to bottom */
.hero-stats-bar {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 5;
  background: rgba(5,18,9,.72);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid rgba(255,255,255,.07);
  opacity: 0; animation: hfadeIn .8s .7s forwards;
}
.hero-stats-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.hsi-item {
  padding: 1.5rem 2rem;
  border-right: 1px solid rgba(255,255,255,.07);
  display: flex; align-items: center; gap: 1.25rem;
}
.hsi-item:last-child { border-right: none; }
.hsi-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.25rem; font-weight: 800; color: var(--white);
  line-height: 1; letter-spacing: -.02em; flex-shrink: 0;
}
.hsi-vdiv { width: 1px; height: 30px; background: rgba(255,255,255,.14); flex-shrink: 0; }
.hsi-label {
  font-size: .62rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: rgba(255,255,255,.38); line-height: 1.45;
}

@keyframes hfadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes hfadeIn { to { opacity: 1; } }

/* WHY CHOOSE */
.why-section { background: var(--off-white); }
.why-header  { text-align: center; max-width: 640px; margin: 0 auto 4rem; }
.why-grid    { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: rgba(0,0,0,.06); }
.why-card    { background: var(--white); padding: 2.5rem 2rem; transition: background .3s; }
.why-card:hover { background: var(--green); }
.why-card:hover .wc-icon-wrap    { background: rgba(255,255,255,.15); }
.why-card:hover .wc-title,
.why-card:hover .wc-desc         { color: rgba(255,255,255,.9); }
.why-card:hover .wc-desc         { color: rgba(255,255,255,.65); }
.why-card:hover .btn-text-arrow  { color: var(--gold-lt); }
.wc-icon-wrap {
  width: 52px; height: 52px; background: var(--gold-bg);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem; transition: background .3s;
}
.wc-icon-wrap svg { width: 22px; height: 22px; stroke: var(--green); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: stroke .3s; }
.why-card:hover .wc-icon-wrap svg { stroke: var(--gold-lt); }
.wc-title { font-size: 1.1rem; font-weight: 700; color: var(--ink); margin-bottom: .75rem; transition: color .3s; }
.wc-desc  { font-size: .875rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.5rem; transition: color .3s; }

/* ABOUT STRIP */
.about-strip { background: var(--white); }
.about-strip-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.about-tag {
  font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--gold); background: var(--gold-bg); padding: .375rem 1rem;
  border-radius: 2rem; display: inline-block; margin-bottom: 1.25rem;
}
.about-title { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 900; color: var(--ink); line-height: 1.1; letter-spacing: -.02em; margin-bottom: 1.5rem; }
.about-title em { font-style: italic; color: var(--green); }
.about-body { font-size: .95rem; color: var(--muted); line-height: 1.8; margin-bottom: 1.5rem; }
.about-img { position: relative; border-radius: var(--radius); overflow: hidden; }
.about-img-main { height: 480px; position: relative; overflow: hidden; }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.55) 0%, transparent 50%); }
.about-caption {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 100%);
}
.about-caption h4 { font-size: .875rem; font-weight: 700; color: var(--white); margin-bottom: .25rem; }
.about-caption p  { font-size: .75rem; color: rgba(255,255,255,.6); }
.about-stat-chip {
  position: absolute; top: 1.5rem; right: -1.5rem;
  background: var(--white); border-radius: var(--radius);
  padding: 1rem 1.5rem; box-shadow: 0 8px 32px rgba(0,0,0,.15);
}
.asc-num   { font-family: 'Barlow Condensed', sans-serif; font-size: 1.75rem; font-weight: 800; color: var(--green); line-height: 1; }
.asc-label { font-size: .65rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-top: .25rem; }
.about-stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px; background: rgba(0,0,0,.06); margin-top: 2rem; }
.asr-item  { background: var(--off-white); padding: 1.25rem 1rem; text-align: center; }
.asr-num   { font-family: 'Barlow Condensed', sans-serif; font-size: 2rem; font-weight: 800; color: var(--green); line-height: 1; }
.asr-label { font-size: .65rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-top: .35rem; }

/* SERVICES PREVIEW */
.services-preview { background: var(--off-white); }
.sv-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; }
.sv-grid   { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* STATS BAND */
.stats-band { background: var(--green-dark); position: relative; overflow: hidden; }
.stats-band::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green) 100%); opacity: .8;
}
.stats-band-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stats-band-item {
  padding: 4rem 2rem; text-align: center;
  border-right: 1px solid rgba(255,255,255,.1);
}
.stats-band-item:last-child { border-right: none; }

/* IMPACT TABS */
.impact-section { background: var(--off-white); }
.impact-inner   { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: start; }
.impact-tab-img { border-radius: var(--radius); overflow: hidden; height: 380px; position: relative; }
.impact-tab-img img { width: 100%; height: 100%; object-fit: cover; }
.impact-tab-img-overlay { position: absolute; inset: 0; background: rgba(7,26,12,.3); }
.impact-tab-text h3 { font-size: 1.35rem; font-weight: 800; color: var(--ink); margin-bottom: 1rem; letter-spacing: -.02em; }
.impact-tab-text p  { font-size: .9rem; color: var(--muted); line-height: 1.8; }

/* TESTIMONIALS */
.testimonials-section { background: var(--green-dark); position: relative; overflow: hidden; }
.testimonials-section::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--green-deep) 0%, #1a5c2a 100%); opacity: .6;
}
.testimonials-inner { position: relative; z-index: 2; }
.tc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }

/* TEAM */
.team-section { background: var(--off-white); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 3rem; }
.team-card {
  background: var(--white); border-radius: var(--radius); padding: 2rem; text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.06); transition: transform .3s, box-shadow .3s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.12); }
.team-photo { width: 120px; height: 120px; border-radius: 50%; margin: 0 auto 1.5rem; overflow: hidden; background: var(--light-grey); display: flex; align-items: center; justify-content: center; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-photo svg { width: 48px; height: 48px; }
.team-name { font-size: 1.2rem; font-weight: 700; color: var(--ink); margin-bottom: .5rem; }
.team-role { font-size: .875rem; color: var(--gold); font-weight: 600; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: .05em; }
.team-desc { font-size: .85rem; color: var(--muted); line-height: 1.7; }

/* FAQ */
.faq-section { background: var(--white); }
.faq-inner   { display: grid; grid-template-columns: 1fr 1.3fr; gap: 6rem; align-items: start; }
.faq-img     { border-radius: var(--radius); overflow: hidden; height: 500px; position: relative; }
.faq-img img { width: 100%; height: 100%; object-fit: cover; }
.faq-img-overlay { position: absolute; inset: 0; background: rgba(7,26,12,.45); }
.faq-img-quote {
  position: absolute; bottom: 2rem; left: 2rem; right: 2rem;
  font-family: 'Barlow Condensed', sans-serif; font-style: italic;
  font-size: 1.5rem; font-weight: 700; color: rgba(255,255,255,.7); line-height: 1.4;
}

/* CTA BAND */
.cta-band { background: var(--green); position: relative; overflow: hidden; }
.cta-band::before {
  content: ''; position: absolute; top: -60%; right: -10%;
  width: 500px; height: 500px; border-radius: 50%; background: rgba(0,0,0,.15);
}
.cta-band-img { position: absolute; inset: 0; }
.cta-band-img img { width: 100%; height: 100%; object-fit: cover; opacity: .15; }
.cta-inner { position: relative; z-index: 2; text-align: center; max-width: 700px; margin: 0 auto; }
.cta-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: var(--white); letter-spacing: -.03em; margin: 1rem 0 1.25rem; line-height: 1.05; }
.cta-body  { font-size: 1rem; color: rgba(255,255,255,.65); line-height: 1.75; margin-bottom: 2.5rem; }
.cta-avatars { display: flex; align-items: center; justify-content: center; gap: .25rem; margin-top: 1.5rem; }
.cta-avatar  { width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--white); background: var(--green-dark); display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.cta-avatar + .cta-avatar { margin-left: -10px; }
.cta-avatar-text { font-size: .75rem; color: rgba(255,255,255,.6); margin-left: .75rem; }

/* ══════════════════════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════════════════════ */
.about-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.ai-title { font-size: clamp(2rem, 3.5vw, 2.75rem); font-weight: 900; letter-spacing: -.025em; line-height: 1.1; margin-bottom: 1.5rem; }
.ai-title em { font-style: italic; color: var(--green); }
.ai-body { font-size: .975rem; color: var(--muted); line-height: 1.85; font-weight: 300; }
.ai-body p + p { margin-top: 1rem; }
.ai-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.ai-img {
  height: 520px; border-radius: var(--radius); overflow: hidden; position: relative;
}
.ai-img img { width: 100%; height: 100%; object-fit: cover; }
.ai-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.55) 0%, transparent 50%); }
.ai-img-badge {
  position: absolute; top: 2rem; right: 2rem;
  background: var(--white); border-radius: var(--radius);
  padding: 1.25rem; box-shadow: 0 8px 32px rgba(0,0,0,.2);
}
.ai-img-badge-num   { font-family: 'Barlow Condensed', sans-serif; font-size: 2rem; font-weight: 800; color: var(--green); line-height: 1; }
.ai-img-badge-label { font-size: .65rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-top: .25rem; }
.ai-img-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem; background: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 100%); }
.ai-img-caption h4 { font-size: .95rem; font-weight: 700; color: var(--white); margin-bottom: .25rem; }
.ai-img-caption p  { font-size: .75rem; color: rgba(255,255,255,.6); }

/* MVV */
.mvv-section { background: var(--off-white); }
.mvv-grid    { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: rgba(0,0,0,.06); margin-top: 3rem; }
.mvv-card    { background: var(--white); padding: 2.5rem 2rem; transition: background .3s, transform .2s; }
.mvv-card:hover { background: var(--green); transform: translateY(-4px); }
.mvv-card:hover .mvv-icon-wrap { background: rgba(255,255,255,.1); }
.mvv-card:hover .mvv-title, .mvv-card:hover .mvv-body { color: rgba(255,255,255,.9); }
.mvv-card:hover .mvv-body { color: rgba(255,255,255,.65); }
.mvv-icon-wrap { width: 56px; height: 56px; background: var(--gold-bg); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1.5rem; transition: background .3s; }
.mvv-title { font-size: 1.2rem; font-weight: 800; color: var(--ink); margin-bottom: .875rem; letter-spacing: -.01em; transition: color .3s; }
.mvv-body  { font-size: .875rem; color: var(--muted); line-height: 1.75; transition: color .3s; }

/* STATS DARK */
.stats-dark { background: var(--green-dark); position: relative; overflow: hidden; }
.stats-dark::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--green-deep) 0%, #1a5c2a 100%); opacity: .7; }
.sd-inner  { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1.2fr; gap: 6rem; align-items: center; }
.sd-stats  { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: rgba(255,255,255,.1); }
.sd-stat   { background: rgba(255,255,255,.04); padding: 2.5rem 2rem; text-align: center; }
.sd-num    { font-family: 'Barlow Condensed', sans-serif; font-size: 3rem; font-weight: 800; color: var(--white); line-height: 1; }
.sd-label  { font-size: .65rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-top: .5rem; }
.sd-text h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 900; color: var(--white); letter-spacing: -.025em; margin-bottom: 1.5rem; }
.sd-text h2 em { font-style: italic; color: var(--gold-lt); }
.sd-text p  { font-size: .95rem; color: rgba(255,255,255,.55); line-height: 1.85; font-weight: 300; margin-bottom: 1.25rem; }
.sd-quote  { border-left: 3px solid var(--gold); padding-left: 1.5rem; margin: 2rem 0; }
.sd-quote p { font-family: 'Barlow Condensed', sans-serif; font-style: italic; font-size: 1.2rem; font-weight: 600; color: rgba(255,255,255,.7); line-height: 1.5; }

/* WHY PILLARS */
.why-pillars { background: var(--white); }
.wp-grid     { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5px; background: rgba(0,0,0,.06); margin-top: 3rem; }
.wp-card     { background: var(--off-white); padding: 2rem 1.5rem; text-align: center; transition: background .25s, transform .25s; }
.wp-card:hover { background: var(--green); transform: translateY(-4px); }
.wp-card:hover .wp-num, .wp-card:hover .wp-title { color: var(--white); }
.wp-card:hover .wp-body { color: rgba(255,255,255,.65); }
.wp-num   { font-family: 'Barlow Condensed', sans-serif; font-size: .875rem; font-weight: 700; letter-spacing: .06em; color: var(--gold); margin-bottom: 1rem; display: block; transition: color .25s; }
.wp-title { font-size: .9rem; font-weight: 700; color: var(--ink); margin-bottom: .625rem; transition: color .25s; }
.wp-body  { font-size: .8rem; color: var(--muted); line-height: 1.65; transition: color .25s; }

/* REG GRID */
.reg-section { background: var(--off-white); }
.reg-grid    { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.reg-card    { background: var(--white); padding: 2rem; border-top: 3px solid var(--gold); border-radius: 0 0 var(--radius) var(--radius); transition: transform .2s, box-shadow .2s; }
.reg-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.1); }
.rc-badge  { font-size: .65rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; background: var(--gold-bg); color: var(--gold); padding: .3rem .875rem; border-radius: 2rem; display: inline-block; margin-bottom: .875rem; }
.rc-title  { font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: .625rem; }
.rc-body   { font-size: .85rem; color: var(--muted); line-height: 1.65; }
.rc-ref    { font-size: .75rem; color: var(--muted); margin-top: .75rem; padding: .4rem .875rem; background: var(--off-white); display: inline-block; border-radius: 2rem; }

/* ══════════════════════════════════════════════════════════
   SERVICES PAGE
══════════════════════════════════════════════════════════ */
.svc-tabs-nav       { background: var(--white); border-bottom: 1px solid rgba(0,0,0,.08); position: sticky; top: var(--nav-h); z-index: 100; }
.svc-tabs-nav-inner { display: flex; overflow-x: auto; scrollbar-width: none; }
.svc-tabs-nav-inner::-webkit-scrollbar { display: none; }
.stn-btn {
  font-size: .75rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  color: var(--muted); padding: 1.125rem 2rem;
  border: none; border-bottom: 3px solid transparent; background: none; cursor: pointer;
  white-space: nowrap; transition: color .2s, border-color .2s;
  display: flex; align-items: center; gap: .625rem;
}
.stn-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.stn-btn:hover, .stn-btn.active { color: var(--green); border-bottom-color: var(--gold); }

.svc-section:nth-child(odd)  { background: var(--white); }
.svc-section:nth-child(even) { background: var(--off-white); }
.svc-grid           { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.svc-grid.flip      { direction: rtl; }
.svc-grid.flip > *  { direction: ltr; }
.svc-panel          { border-radius: var(--radius); overflow: hidden; height: 500px; position: relative; }
.svc-panel img      { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.svc-panel:hover img { transform: scale(1.04); }
.svc-panel-overlay  { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.55) 0%, transparent 50%); }
.svc-panel-badge    { position: absolute; top: 1.5rem; left: 1.5rem; background: var(--gold); color: var(--ink); font-size: .65rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: .4rem 1rem; border-radius: 2rem; }
.svc-panel-num      { position: absolute; bottom: -10px; right: 1rem; font-family: 'Barlow Condensed', sans-serif; font-size: 8rem; font-weight: 900; color: rgba(255,255,255,.06); line-height: 1; }
.svc-panel-tagline  { position: absolute; bottom: 2rem; left: 2rem; right: 2rem; font-family: 'Barlow Condensed', sans-serif; font-style: italic; font-size: 1.35rem; font-weight: 600; color: rgba(255,255,255,.65); line-height: 1.4; }
.svc-num    { font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 700; letter-spacing: .05em; color: var(--muted); margin-bottom: .75rem; }
.svc-title  { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 900; letter-spacing: -.025em; line-height: 1.1; margin-bottom: 1.25rem; color: var(--ink); }
.svc-desc   { font-size: .975rem; color: var(--muted); line-height: 1.8; margin-bottom: 2rem; font-weight: 300; }
.svc-caps   { margin-bottom: 2.5rem; }
.svc-caps-title { font-size: .65rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--ink); margin-bottom: 1rem; }
.svc-cap-item { display: flex; align-items: center; gap: .875rem; padding: .75rem 0; border-bottom: 1px solid rgba(0,0,0,.05); }
.svc-cap-item:last-child { border-bottom: none; }
.svc-cap-dot  { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.svc-cap-text { font-size: .875rem; color: var(--ink-soft); }

.svc-cta-banner { background: var(--green); position: relative; overflow: hidden; }
.svc-cta-banner::before { content: ''; position: absolute; right: -5%; top: -50%; width: 400px; height: 400px; border-radius: 50%; background: rgba(0,0,0,.1); }
.svc-cta-inner  { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: center; gap: 3rem; }
.svc-cta-text h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 900; color: var(--white); letter-spacing: -.02em; margin-bottom: .75rem; }
.svc-cta-text p  { font-size: .95rem; color: rgba(255,255,255,.6); line-height: 1.7; max-width: 500px; }

/* ══════════════════════════════════════════════════════════
   CLIENTS / PORTFOLIO PAGE
══════════════════════════════════════════════════════════ */
.clients-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.ci-stats  { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: rgba(0,0,0,.06); }
.ci-stat   { background: var(--off-white); padding: 2.5rem 2rem; text-align: center; }
.ci-num    { font-family: 'Barlow Condensed', sans-serif; font-size: 3rem; font-weight: 800; color: var(--green); line-height: 1; }
.ci-label  { font-size: .65rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--muted); margin-top: .5rem; }
.client-mosaic { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: rgba(0,0,0,.06); margin-top: 3rem; }
.cm-cell   {
  background: var(--white); padding: 2.5rem 2rem;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: .5rem; transition: background .2s, transform .2s; min-height: 110px;
}
.cm-cell:hover { background: var(--off-white); transform: translateY(-2px); }
.cm-name   { font-family: 'Barlow Condensed', sans-serif; font-size: 1.25rem; font-weight: 800; letter-spacing: .02em; display: block; }
.cm-type   { font-size: .65rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--muted); display: block; }
.cm-sector { font-size: .7rem; color: var(--muted); opacity: .7; }
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.clients-cta   { background: var(--green); text-align: center; position: relative; overflow: hidden; }
.clients-cta::before { content: ''; position: absolute; top: -50%; right: -5%; width: 500px; height: 500px; border-radius: 50%; background: rgba(0,0,0,.1); }
.clients-cta-inner { position: relative; z-index: 2; }
.clients-cta h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); font-weight: 900; color: var(--white); letter-spacing: -.025em; margin: 1rem 0 1.25rem; }
.clients-cta p  { font-size: 1rem; color: rgba(255,255,255,.65); line-height: 1.75; margin-bottom: 2rem; max-width: 540px; margin-left: auto; margin-right: auto; }

/* ══════════════════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.cf-group   { margin-bottom: 1.75rem; }
.cf-label   { font-size: .65rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); display: block; margin-bottom: .5rem; }
.cf-input, .cf-textarea, .cf-select {
  width: 100%; padding: .875rem 1rem; background: var(--off-white);
  border: 1.5px solid transparent; border-radius: var(--radius);
  font-family: 'Barlow', sans-serif; font-size: .9rem; color: var(--ink);
  outline: none; transition: border-color .2s, background .2s; -webkit-appearance: none;
}
.cf-input:focus, .cf-textarea:focus, .cf-select:focus { border-color: var(--green); background: var(--white); }
.cf-textarea { height: 120px; resize: vertical; }
.cf-row     { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.cf-submit  {
  background: var(--green); color: var(--white);
  font-family: 'Barlow', sans-serif; font-size: .85rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  padding: 1rem 2.5rem; border: none; border-radius: var(--radius); cursor: pointer;
  display: inline-flex; align-items: center; gap: .75rem;
  transition: background .2s, transform .2s, box-shadow .2s; margin-top: .5rem;
}
.cf-submit:hover { background: #226B33; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,92,42,.3); }
.cf-note    { font-size: .75rem; color: var(--muted); margin-top: .875rem; }
.cf-success { display: none; background: rgba(26,92,42,.08); border-left: 3px solid var(--green); padding: 1rem 1.25rem; margin-bottom: 1.5rem; font-size: .875rem; color: var(--green); border-radius: 0 var(--radius) var(--radius) 0; }
.cf-success.show { display: block; }
.contact-info-intro { font-size: .975rem; color: var(--muted); line-height: 1.85; font-weight: 300; margin-bottom: 2.5rem; }
.ci-rows    { display: flex; flex-direction: column; }
.ci-row     { display: grid; grid-template-columns: 52px 1fr; gap: 1.25rem; padding: 1.5rem 0; border-bottom: 1px solid rgba(0,0,0,.06); }
.ci-row:first-child { border-top: 1px solid rgba(0,0,0,.06); }
.ci-icon    { width: 44px; height: 44px; background: var(--gold-bg); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ci-icon svg { width: 18px; height: 18px; stroke: var(--green); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.ci-lbl     { font-size: .65rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; color: var(--gold); margin-bottom: .375rem; }
.ci-val     { font-size: .9rem; color: var(--ink); line-height: 1.55; }
.ci-val a   { color: inherit; transition: color .2s; }
.ci-val a:hover { color: var(--green); }
.map-strip  { height: 320px; background: var(--ink); position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.map-grid   { position: absolute; inset: 0; background: repeating-linear-gradient(0deg, rgba(255,255,255,.025) 0, rgba(255,255,255,.025) 1px, transparent 1px, transparent 56px), repeating-linear-gradient(90deg, rgba(255,255,255,.025) 0, rgba(255,255,255,.025) 1px, transparent 1px, transparent 56px); }
.map-pin    { position: relative; z-index: 2; text-align: center; }
.map-pin-dot { width: 16px; height: 16px; background: var(--gold); border-radius: 50%; margin: 0 auto 1rem; box-shadow: 0 0 0 8px rgba(201,150,42,.2), 0 0 0 16px rgba(201,150,42,.1); }
.map-pin h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.5rem; font-weight: 800; color: rgba(255,255,255,.8); margin-bottom: .375rem; }
.map-pin p  { font-size: .8rem; color: rgba(255,255,255,.35); margin-bottom: 1rem; }
.map-pin a  { font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--gold-lt); border-bottom: 1px solid rgba(229,184,74,.4); padding-bottom: .2rem; }
.socials-section { background: var(--off-white); text-align: center; }
.socials-row { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.social-btn {
  display: inline-flex; align-items: center; gap: .75rem;
  padding: .875rem 2rem; border: 1.5px solid rgba(0,0,0,.1);
  color: var(--ink-soft); font-size: .8rem; font-weight: 700; letter-spacing: .03em;
  border-radius: var(--radius); transition: background .2s, border-color .2s, color .2s;
}
.social-btn:hover { background: var(--green); border-color: var(--green); color: var(--white); }
.social-btn svg { width: 16px; height: 16px; }

/* ══════════════════════════════════════════════════════════
   CREDENTIALS PAGE
══════════════════════════════════════════════════════════ */
.cred-intro-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 6rem; align-items: start; }
.cred-grid   { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.cred-card   { background: var(--white); padding: 2rem; border-top: 3px solid var(--gold); border-radius: 0 0 var(--radius) var(--radius); transition: transform .2s, box-shadow .2s; }
.cred-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.1); }
.cred-badge  { font-size: .65rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; background: var(--gold-bg); color: var(--gold); padding: .3rem .875rem; border-radius: 2rem; display: inline-block; margin-bottom: .875rem; }
.cred-title  { font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: .625rem; }
.cred-body   { font-size: .85rem; color: var(--muted); line-height: 1.65; }
.cred-ref    { font-size: .75rem; color: var(--muted); margin-top: .75rem; padding: .4rem .875rem; background: var(--off-white); display: inline-block; border-radius: 2rem; }
.partners-dark  { background: var(--green-dark); position: relative; overflow: hidden; }
.partners-dark::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--green-deep) 0%, #1a5c2a 100%); opacity: .7; }
.partners-inner { position: relative; z-index: 2; }
.partners-grid  { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: rgba(255,255,255,.06); margin-top: 3rem; }
.partner-cell   { background: rgba(255,255,255,.03); padding: 2.5rem 2rem; text-align: center; transition: background .2s; }
.partner-cell:hover { background: rgba(255,255,255,.08); }
.partner-name   { font-family: 'Barlow Condensed', sans-serif; font-size: 1.35rem; font-weight: 800; display: block; margin-bottom: .375rem; }
.partner-role   { font-size: .6rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.3); display: block; }
.partner-desc   { font-size: .775rem; color: rgba(255,255,255,.35); margin-top: .75rem; line-height: 1.55; }
.banking-grid   { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.bank-card      { background: var(--green); border-radius: var(--radius); padding: 3rem; overflow: hidden; position: relative; }
.bank-card::before { content: ''; position: absolute; top: -40%; right: -10%; width: 300px; height: 300px; border-radius: 50%; background: rgba(0,0,0,.12); }
.bank-card-inner { position: relative; z-index: 2; }
.bank-card h3   { font-family: 'Barlow Condensed', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--gold-lt); margin-bottom: 2rem; letter-spacing: .01em; }
.bank-row  { display: grid; grid-template-columns: 110px 1fr; gap: 1rem; padding: .875rem 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.bank-row:last-child { border-bottom: none; }
.bank-lbl  { font-size: .6rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: rgba(255,255,255,.3); }
.bank-val  { font-size: .875rem; color: rgba(255,255,255,.75); }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  nav { padding: 0 1.5rem; }
  .nav-links {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: var(--green-dark); flex-direction: column; align-items: stretch;
    padding: 1.5rem; gap: .25rem; display: none;
  }
  .nav-links.open { display: flex; }
  .nav-hamburger  { display: flex; }

  /* hero */
  .hero-inner        { max-width: 100%; }
  .hero-content      { padding-top: calc(var(--nav-h) + 3rem); padding-bottom: 10rem; }
  .hero-stats-inner  { grid-template-columns: 1fr 1fr; }
  .hero-scroll       { display: none; }
  .hero::before      { display: none; }

  /* about strip */
  .about-strip-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-stat-chip   { display: none; }

  /* services grid */
  .sv-grid { grid-template-columns: 1fr 1fr; }

  /* stats band */
  .stats-band-inner { grid-template-columns: 1fr 1fr; }
  .stats-band-item  { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }

  /* why grid */
  .why-grid { grid-template-columns: 1fr 1fr; }
  .why-card { padding: 2rem 1.5rem; }

  /* tabs/faq/impact */
  .tc-grid { grid-template-columns: 1fr; }
  .faq-inner { grid-template-columns: 1fr; }
  .faq-img   { display: none; }
  .impact-inner { grid-template-columns: 1fr; gap: 2rem; }
  .tab-panel.active { grid-template-columns: 1fr; gap: 2rem; }

  /* inner page grids */
  .about-intro-grid, .sd-inner     { grid-template-columns: 1fr; gap: 3rem; }
  .mvv-grid                         { grid-template-columns: 1fr; }
  .wp-grid                          { grid-template-columns: 1fr 1fr; }
  .reg-grid                         { grid-template-columns: 1fr 1fr; }
  .ai-img                           { height: 320px; }
  .svc-grid, .svc-grid.flip         { grid-template-columns: 1fr; direction: ltr; gap: 2.5rem; }
  .svc-panel                        { height: 300px; }
  .svc-cta-inner                    { flex-direction: column; text-align: center; }
  .clients-intro                    { grid-template-columns: 1fr; gap: 3rem; }
  .client-mosaic                    { grid-template-columns: 1fr 1fr; }
  .projects-grid                    { grid-template-columns: 1fr; }
  .contact-grid                     { grid-template-columns: 1fr; gap: 3rem; }
  .cf-row                           { grid-template-columns: 1fr; }
  .cred-intro-grid, .banking-grid   { grid-template-columns: 1fr; gap: 3rem; }
  .cred-grid                        { grid-template-columns: 1fr 1fr; }
  .partners-grid                    { grid-template-columns: 1fr 1fr; }
  .footer-grid                      { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 640px) {
  .container      { padding: 0 1.25rem; }

  .hero-title         { font-size: clamp(2.75rem, 12vw, 3.5rem); }
  .hero-content       { padding-top: calc(var(--nav-h) + 2.5rem); padding-bottom: 12rem; }
  .hero-stats-inner   { grid-template-columns: 1fr 1fr; }
  .hsi-item           { padding: 1rem 1rem; gap: .875rem; }
  .hsi-num            { font-size: 1.75rem; }

  .why-grid        { grid-template-columns: 1fr; }
  .why-card        { padding: 1.75rem 1.25rem; }
  .reveal-left,
  .reveal-right    { transform: translateY(28px); }
  .sv-grid         { grid-template-columns: 1fr; }
  .about-stats-row { grid-template-columns: 1fr 1fr; }
  .reg-grid        { grid-template-columns: 1fr; }
  .cred-grid       { grid-template-columns: 1fr; }
  .footer-grid     { grid-template-columns: 1fr; }
  .footer-bottom   { flex-direction: column; gap: .5rem; text-align: center; }
  .socials-row     { flex-direction: column; align-items: center; }
  .sd-stats        { grid-template-columns: 1fr 1fr; }
  .wp-grid         { grid-template-columns: 1fr; }
  .partners-grid   { grid-template-columns: 1fr 1fr; }
  .client-mosaic   { grid-template-columns: 1fr 1fr; }
  .tab-buttons     { overflow-x: auto; scrollbar-width: none; flex-wrap: nowrap; }
  .tab-buttons::-webkit-scrollbar { display: none; }
  .hero-btns       { flex-direction: column; align-items: flex-start; }
  .page-hero-ghost { display: none; }
}
