/* ========================================
   EXPORT CREDIT FINANCIAL SERVICES
   Finovate Layout · Green Brand · Rounded
   ======================================== */

/* ── Variables ── */
:root {
  --navy: #0C5C17;
  --navy-light: #0A4D13;
  --navy-lighter: #0E7A1F;
  --brand: #0C5C17;
  --brand-dark: #08430F;
  --brand-mid: #0A4F13;
  --brand-light: #dff1e1;
  --brand-lighter: #eef8ef;
  --accent: #10A328;
  --accent-light: #3DBD54;
  --gold: #C9A84C;
  --gold-dark: #B08D30;
  --gold-light: #FDF5E6;
  --white: #ffffff;
  --off-white: #F7F8FA;
  --gray-50: #f5f6f8;
  --gray-100: #eceef1;
  --gray-200: #dde0e4;
  --gray-300: #c5c9ce;
  --gray-400: #9da3ab;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 32px rgba(0,0,0,.12);
  --shadow-xl: 0 20px 50px rgba(0,0,0,.15);
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 50px;
  --ease: all .35s cubic-bezier(.4,0,.2,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font);
  color: var(--gray-700);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.7;
  font-weight: 400;
  margin: 0;
  font-size: 15px;
  background: var(--white);
}
img { max-width: 100%; height: auto; }
a { color: var(--brand); text-decoration: none; transition: var(--ease); }
a:hover { color: var(--accent); }
::selection { background: var(--brand); color: #fff; }

/* ── Utility ── */
.text-brand { color: var(--brand) !important; }
.bg-brand { background: var(--brand) !important; }
.text-gold { color: var(--gold) !important; }
.text-accent { color: var(--accent) !important; }
.ls-1 { letter-spacing: .1em; }
.smallest { font-size: .75rem; }
.section-padding { padding: 90px 0; }
.section-padding-sm { padding: 52px 0; }

/* ── Preloader ── */
#preloader {
  position: fixed; inset: 0;
  background: var(--brand-lighter);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  z-index: 99999;
  transition: opacity .5s, visibility .5s;
}
#preloader.loaded { opacity: 0; visibility: hidden; }
.preloader-logo { width: 110px; animation: pulse-scale 1.6s infinite; }
.preloader-bar {
  width: 80px; height: 3px; border-radius: 20px;
  background: var(--gray-200); overflow: hidden; margin-top: 20px;
}
.preloader-bar-fill {
  width: 35%; height: 100%; background: var(--brand);
  border-radius: 20px; animation: loader-slide 1.2s ease-in-out infinite;
}
@keyframes pulse-scale {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.04); opacity: .7; }
}
@keyframes loader-slide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(400%); }
}

/* ── Navbar ── */
.navbar {
  background: var(--white);
  padding: 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
  min-height: 70px;
  transition: var(--ease);
  z-index: 1030;
}
.navbar.navbar-hero {
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,.1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.navbar.navbar-hero .nav-link { color: rgba(255,255,255,.75); }
.navbar.navbar-hero .nav-link:hover,
.navbar.navbar-hero .nav-link.active {
  color: #fff;
  border-bottom-color: var(--accent);
}
.navbar.navbar-hero .btn-brand {
  background: var(--accent);
  border-color: var(--accent);
}
.navbar.navbar-hero .navbar-toggler {
  border-color: rgba(255,255,255,.3);
  color: #fff;
}
.navbar.navbar-hero .navbar-toggler-icon {
  filter: invert(1);
}
.navbar.navbar-hero .nav-flag { border-color: rgba(255,255,255,.2); }
.navbar.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  border-bottom-color: rgba(0,0,0,.06);
}
.navbar.scrolled .nav-link { color: var(--gray-600); }
.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
  color: var(--brand);
  border-bottom-color: var(--brand);
}
.navbar.scrolled .btn-brand {
  background: var(--brand);
  border-color: var(--brand);
}
.navbar.scrolled .navbar-toggler { border-color: var(--gray-300); }
.navbar.scrolled .navbar-toggler-icon { filter: none; }
.navbar.scrolled .nav-flag { border-color: var(--gray-200); }
.nav-logo { height: 62px; transition: var(--ease); }
.navbar.scrolled .nav-logo { height: 50px; }
.navbar.navbar-hero .nav-logo { filter: brightness(0) invert(1); }
.navbar.scrolled .nav-logo { filter: none; }
.navbar-brand { padding: 14px 0; }

.navbar-nav .nav-link {
  color: var(--gray-600);
  font-weight: 500;
  font-size: .82rem;
  padding: 24px 16px !important;
  text-transform: uppercase;
  letter-spacing: .06em;
  border-bottom: 2px solid transparent;
  transition: var(--ease);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--brand);
  border-bottom-color: var(--brand);
}
.navbar-toggler {
  border: 1px solid var(--gray-300);
  padding: 6px 10px;
  border-radius: var(--radius);
}
.navbar-toggler:focus { box-shadow: none; }

/* Navbar Flags */
.nav-flags a { display: inline-block; line-height: 0; }
.nav-flag {
  width: 22px; height: 15px;
  border-radius: 3px;
  object-fit: cover;
  transition: var(--ease);
  border: 1px solid var(--gray-200);
}
.nav-flag:hover {
  box-shadow: 0 0 0 2px var(--brand);
}

/* ── Buttons ── */
.btn-brand {
  background: var(--brand);
  color: #fff;
  border: 2px solid var(--brand);
  font-weight: 600;
  padding: 12px 32px;
  border-radius: var(--radius-pill);
  transition: var(--ease);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.btn-brand:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: #fff;
}
.btn-accent {
  background: var(--accent);
  color: #fff;
  border: 2px solid var(--accent);
  font-weight: 600;
  padding: 12px 32px;
  border-radius: var(--radius-pill);
  transition: var(--ease);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.btn-accent:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}
.btn-outline-brand {
  background: transparent;
  color: var(--brand);
  border: 2px solid var(--brand);
  font-weight: 600;
  padding: 12px 32px;
  border-radius: var(--radius-pill);
  transition: var(--ease);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.btn-outline-brand:hover {
  background: var(--brand);
  color: #fff;
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.35);
  font-weight: 600;
  padding: 12px 32px;
  border-radius: var(--radius-pill);
  transition: var(--ease);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.btn-outline-white:hover {
  background: #fff;
  border-color: #fff;
  color: var(--brand);
}
.btn-gold-solid {
  background: var(--gold);
  color: var(--brand);
  border: 2px solid var(--gold);
  font-weight: 600;
  padding: 12px 32px;
  border-radius: var(--radius-pill);
  transition: var(--ease);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.btn-gold-solid:hover {
  background: transparent;
  color: var(--gold);
}

/* ── Hero (Finovate style) ── */
.hero-section {
  background: #1a1a1a;
  position: relative;
  padding: 0;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20,20,20,.55) 0%, rgba(30,30,30,.35) 100%);
  z-index: 1;
}
.hero-text-col {
  padding: 140px 0 180px;
  padding-right: 48px;
  position: relative;
  z-index: 2;
}
.hero-title {
  font-size: 3.8rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.15;
  max-width: 620px;
  letter-spacing: -.02em;
}
.hero-title .text-highlight {
  position: relative;
  display: inline;
}
.hero-title .text-highlight::after {
  content: '';
  display: inline-block;
  width: 80px;
  height: 1px;
  background: rgba(255,255,255,.4);
  vertical-align: middle;
  margin-left: 18px;
}
.hero-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,.6);
  max-width: 500px;
  line-height: 1.85;
}

/* Hero CTA */
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0;
}
.hero-cta .btn-brand {
  border-radius: var(--radius-pill) 0 0 var(--radius-pill);
  padding-right: 24px;
}
.hero-cta-arrow {
  width: 48px;
  height: 48px;
  border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  border: 2px solid var(--accent);
  border-left: none;
  transition: var(--ease);
}
.hero-cta:hover .hero-cta-arrow {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}

/* Hero image */
.hero-img-col {
  position: relative;
  align-self: stretch;
  z-index: 2;
}
.hero-image-block {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-image-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Hero bottom tabs */
.hero-tabs {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
}
.hero-tab {
  background: #fff;
  padding: 22px 28px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gray-600);
  transition: var(--ease);
  cursor: pointer;
  border: 1px solid var(--gray-100);
  border-bottom: none;
}
.hero-tab.active {
  color: var(--brand);
  background: #fff;
  border-color: var(--gray-200);
}
.hero-tab:hover {
  color: var(--brand);
}

/* ── Section Headers ── */
.section-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .68rem; font-weight: 700;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: 14px;
  padding: 0;
  background: none;
  border-radius: 0;
}
.section-label i { font-size: .62rem; }
.section-label-gold {
  color: var(--gold);
  background: none;
}
.section-label-dark {
  color: var(--gold);
  background: none;
}
.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
  line-height: 1.2;
  letter-spacing: -.02em;
}
.section-desc {
  color: var(--gray-500);
  max-width: 580px;
  font-size: .92rem;
  line-height: 1.8;
}

/* ── Divider Line (decorative) ── */
.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--brand);
  margin-right: 8px;
  vertical-align: middle;
}

/* ── Info Cards (Finovate style) ── */
.info-card {
  background: var(--gray-50);
  border-radius: var(--radius-xl);
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--ease);
  border: 1px solid var(--gray-100);
}
.info-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.info-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.info-badge {
  display: inline-block;
  padding: 6px 16px;
  border: 1.5px solid var(--brand);
  border-radius: var(--radius-pill);
  font-size: .68rem;
  font-weight: 600;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.info-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-300);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  font-size: .9rem;
  transition: var(--ease);
  flex-shrink: 0;
}
.info-arrow:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}
.info-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.3;
  margin-bottom: 20px;
  letter-spacing: -.01em;
}
.info-card-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: auto;
  height: 220px;
}
.info-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.info-card:hover .info-card-img img { transform: scale(1.04); }

/* Accent variant (green bg, image on top) */
.info-card-accent {
  background: var(--accent);
  border-color: var(--accent);
}
.info-card-accent .info-badge {
  border-color: #fff;
  color: #fff;
}
.info-card-accent .info-card-title {
  color: #fff;
}
.info-card-accent .info-arrow {
  border-color: rgba(255,255,255,.4);
  color: #fff;
}
.info-card-accent .info-arrow:hover {
  background: #fff;
  border-color: #fff;
  color: var(--brand);
}
.info-card-accent .info-card-img-top {
  margin-top: 0;
  margin-bottom: 20px;
  border-radius: var(--radius-lg);
  height: 240px;
}

/* ── About Block ── */
.about-img {
  position: relative; border-radius: var(--radius-lg); overflow: visible;
}
.about-img img {
  width: 100%; height: 380px; object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-img-badge {
  position: absolute; bottom: -16px; right: 20px;
  background: var(--brand); padding: 14px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  color: #fff;
}
.about-img-badge .fw-bold { color: #fff !important; }
.about-img-badge .text-muted { color: rgba(255,255,255,.5) !important; }

/* ── Step Cards ── */
.step-card {
  text-align: center;
  padding: 40px 28px;
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  height: 100%;
  transition: var(--ease);
  position: relative;
  overflow: hidden;
}
.step-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--brand);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  transform: scaleX(0);
  transition: transform .4s ease;
}
.step-card:hover::after { transform: scaleX(1); }
.step-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.step-number {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.step-card h5 {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 12px;
  color: var(--gray-900);
}
.step-card p { color: var(--gray-500); font-size: .88rem; margin-bottom: 0; line-height: 1.75; }

/* ── Service Cards ── */
.service-card {
  padding: 32px 28px;
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  transition: var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--brand);
  border-radius: var(--radius-lg) 0 0 0;
  transition: height .4s ease;
}
.service-card:hover::before { height: 100%; }
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.service-card-gold::before { background: var(--gold); }
.service-card-icon {
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--brand-light);
  color: var(--brand);
  font-size: 1.2rem;
  margin-bottom: 18px;
  transition: var(--ease);
}
.service-card:hover .service-card-icon {
  background: var(--brand);
  color: #fff;
}
.service-card-gold .service-card-icon {
  background: var(--gold-light);
  color: var(--gold-dark);
}
.service-card-gold:hover .service-card-icon {
  background: var(--gold);
  color: #fff;
}
.open-badge {
  display: inline-block;
  padding: 4px 14px;
  background: var(--brand-light);
  color: var(--brand);
  font-size: .65rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.service-link {
  color: var(--brand);
  font-weight: 600;
  font-size: .82rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--ease);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.service-link:hover { gap: 10px; color: var(--accent); }

/* ── Programme Cards ── */
.programme-card {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--ease);
  border-left: 3px solid transparent;
}
.programme-card:hover {
  border-left-color: var(--brand);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}
.programme-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--brand-light);
  color: var(--brand);
  font-size: 1.1rem;
  transition: var(--ease);
}
.programme-card:hover .programme-icon {
  background: var(--brand);
  color: #fff;
}

/* ── Industry Cards ── */
.industry-card {
  text-align: center;
  padding: 28px 16px;
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  transition: var(--ease);
  position: relative;
  overflow: hidden;
}
.industry-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 0; height: 3px;
  background: var(--brand);
  transition: width .3s ease;
}
.industry-card:hover::after { width: 100%; }
.industry-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}
.industry-card i { font-size: 1.6rem; color: var(--brand); margin-bottom: 12px; display: block; }
.industry-card h6 { font-weight: 700; font-size: .82rem; margin-bottom: 4px; color: var(--gray-900); }
.industry-card p { font-size: .72rem; color: var(--gray-500); margin-bottom: 0; }
.industry-card-gold i { color: var(--gold); }
.industry-card-gold:hover::after { background: var(--gold); }

/* ── Image Card ── */
.img-card {
  border-radius: var(--radius-lg); overflow: hidden; height: 260px;
}
.img-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.img-card:hover img { transform: scale(1.04); }

/* ── Impact Card (dark sections) ── */
.impact-card {
  padding: 28px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  transition: var(--ease);
  border-left: 3px solid transparent;
}
.impact-card:hover {
  background: rgba(255,255,255,.1);
  border-left-color: var(--gold);
}

/* ── Quote Card ── */
.quote-card {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-left: 4px solid var(--brand);
  padding: 36px;
  border-radius: var(--radius-lg);
}

/* ── Gold Icon ── */
.gold-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--brand-light); color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}

/* ── Contact ── */
.contact-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--brand-light);
  color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.contact-form-wrap {
  background: var(--brand);
  padding: 40px;
  border-radius: var(--radius-xl);
  border: none;
}
.contact-form-wrap h5 { color: #fff !important; }
.contact-form-wrap p { color: rgba(255,255,255,.5) !important; }
.contact-form-wrap .form-control,
.contact-form-wrap .form-select {
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 13px 18px;
  font-size: .85rem;
  transition: var(--ease);
  background: rgba(255,255,255,.06);
  color: #fff;
}
.contact-form-wrap .form-control::placeholder { color: rgba(255,255,255,.35); }
.contact-form-wrap .form-control:focus,
.contact-form-wrap .form-select:focus {
  border-color: var(--gold);
  box-shadow: none;
  background: rgba(255,255,255,.08);
  color: #fff;
}
.contact-form-wrap .form-select {
  color: rgba(255,255,255,.4);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23C9A84C' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}
.contact-form-wrap .form-select option { background: var(--brand); color: #fff; }
.contact-form-wrap .btn-brand {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--brand);
}
.contact-form-wrap .btn-brand:hover {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}

/* ── Newsletter Banner ── */
.newsletter-section {
  background: var(--brand);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.newsletter-section::before {
  content: '';
  position: absolute;
  top: -60%; right: -10%;
  width: 400px; height: 400px;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 50%;
  pointer-events: none;
}
.newsletter-section h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #fff;
}
.newsletter-section p {
  color: rgba(255,255,255,.45);
  font-size: .88rem;
}
.newsletter-section .form-control {
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: #fff;
  border-radius: var(--radius-pill);
  padding: 13px 20px;
  font-size: .85rem;
}
.newsletter-section .form-control::placeholder { color: rgba(255,255,255,.35); }
.newsletter-section .form-control:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,.08);
  box-shadow: none;
  color: #fff;
}

/* ── Footer ── */
.footer-section {
  background: var(--gray-900);
  padding-top: 56px;
  color: rgba(255,255,255,.4);
  font-size: .84rem;
}
.footer-logo { height: 58px; filter: brightness(0) invert(1); opacity: .9; }
.footer-links { margin: 0; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,.4);
  font-size: .8rem;
  transition: var(--ease);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.footer-links a:hover { color: var(--accent); }
.social-icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.35);
  transition: var(--ease);
  font-size: .82rem;
}
.social-icon:hover { background: var(--brand); border-color: var(--brand); color: #fff; }

/* Footer flag card */
.footer-flag-card {
  padding: 12px 16px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  transition: var(--ease);
}
.footer-flag-card:hover { background: rgba(255,255,255,.06); border-color: var(--brand); }
.footer-flag-card img {
  width: 26px; height: 17px;
  border-radius: 2px; object-fit: cover;
}

/* ── Back to Top ── */
.btn-back-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  border: none;
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--ease);
  cursor: pointer;
  z-index: 999;
  box-shadow: var(--shadow-md);
}
.btn-back-top.show {
  opacity: 1; visibility: visible;
}
.btn-back-top:hover { background: var(--brand-dark); color: #fff; }

/* ── Page Hero (sub-pages) ── */
.page-hero {
  background: var(--brand);
  padding: 60px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero.has-splash {
  background-size: cover;
  background-position: center;
  padding: 80px 0 70px;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(12,92,23,.94) 0%, rgba(10,77,19,.88) 100%);
  pointer-events: none;
}
.page-hero .breadcrumb { margin-bottom: 10px; }
.page-hero .breadcrumb-item a { color: var(--gold); font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; }
.page-hero .breadcrumb-item a:hover { color: #fff; }
.page-hero .breadcrumb-item.active { color: rgba(255,255,255,.4); font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.2); }

/* ── Value Cards ── */
.value-card {
  text-align: center;
  padding: 32px 24px;
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  transition: var(--ease);
  position: relative;
  overflow: hidden;
}
.value-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--brand);
  transform: scaleX(0);
  transition: transform .35s ease;
}
.value-card:hover::after { transform: scaleX(1); }
.value-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.value-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--brand-light);
  color: var(--brand);
  font-size: 1.2rem;
  margin-bottom: 18px;
  transition: var(--ease);
}
.value-card:hover .value-icon {
  background: var(--brand);
  color: #fff;
}

/* ── Timeline ── */
.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: ''; position: absolute;
  left: 6px; top: 8px; bottom: 8px;
  width: 2px; background: var(--gray-200);
}
.timeline-item {
  position: relative; padding-bottom: 28px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: ''; position: absolute;
  left: -26px; top: 6px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--brand);
}

/* ── Article Cards ── */
.article-card {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--ease);
}
.article-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.article-card-img {
  height: 200px;
  overflow: hidden;
}
.article-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.article-card:hover .article-card-img img { transform: scale(1.05); }
.article-card-body {
  padding: 24px;
}
.article-card-body h5 {
  font-weight: 700;
  font-size: .95rem;
  margin-bottom: 10px;
  color: var(--gray-900);
  line-height: 1.4;
}
.article-card-body p {
  font-size: .84rem;
  color: var(--gray-500);
  margin-bottom: 14px;
  line-height: 1.75;
}

/* ── Featured Section ── */
.featured-section {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 48px;
  background: #fff;
  position: relative;
  border-left: 4px solid var(--brand);
  overflow: hidden;
}
.featured-section .open-badge {
  position: absolute;
  top: 20px;
  right: 20px;
}
.featured-stat {
  text-align: center;
  padding: 20px;
}
.featured-stat .number {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 6px;
}
.featured-stat .label {
  font-size: .72rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ── Region Card ── */
.region-card {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  transition: var(--ease);
}
.region-card:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow-sm);
}
.region-card img {
  width: 48px; height: 32px;
  border-radius: 3px; object-fit: cover;
  margin-bottom: 14px;
}

/* ── BG overrides ── */
.bg-light { background: var(--off-white) !important; }
.bg-brand .section-title { color: #fff !important; }
.bg-brand .text-brand { color: var(--gold) !important; }

/* ── Section Pill Badge ── */
.section-pill {
  display: inline-block;
  padding: 6px 20px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--gray-200);
  font-size: .7rem;
  font-weight: 600;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ── Champion Service Cards ── */
.champion-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--ease);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.champion-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.champion-card-img {
  position: relative;
  height: 280px;
  overflow: hidden;
}
.champion-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: var(--ease);
}
.champion-card:hover .champion-card-img img {
  transform: scale(1.05);
}
.champion-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: #A3D84C;
  color: var(--gray-800);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.champion-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: #fff;
}
.champion-card-footer span {
  font-size: .9rem;
  font-weight: 500;
  color: var(--gray-700);
}
.champion-arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--gray-500);
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
  text-decoration: none;
  transition: var(--ease);
  flex-shrink: 0;
}
.champion-arrow:hover {
  background: var(--brand);
  color: #fff;
}

/* ── Feature Card (Strategic Interventions) ── */
.feature-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--gray-100);
  transition: var(--ease);
  height: 100%;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand);
}
.feature-card .feature-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-lg);
  background: var(--brand-light);
  color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 18px;
  transition: var(--ease);
}
.feature-card:hover .feature-icon {
  background: var(--brand);
  color: #fff;
}
.feature-card h5 {
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--gray-800);
}
.feature-card p {
  font-size: .82rem;
  color: var(--gray-500);
  margin-bottom: 0;
  line-height: 1.6;
}

/* ── Title line decoration ── */
.title-line {
  display: inline-block;
  width: 50px;
  height: 3px;
  background: var(--gold);
  vertical-align: middle;
  margin-left: 12px;
  border-radius: 2px;
}

/* ── Stats Strip ── */
.stats-strip {
  background: var(--brand);
  border-radius: var(--radius-xl);
  padding: 40px 0;
  overflow: hidden;
}
.stat-item {
  padding: 12px 20px;
  border-right: 1px solid rgba(255,255,255,.15);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: .72rem;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ── Full-width CTA Banner ── */
.cta-banner {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0;
}
.cta-banner-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.cta-banner-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.3) 100%);
  z-index: 1;
}
.cta-banner-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.cta-banner .container {
  z-index: 2;
}

/* ── Industry List ── */
.industry-chart-wrap {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
}
.industry-shape {
  position: relative;
  height: 380px;
  display: flex; align-items: center; justify-content: center;
}
.industry-shape-blob {
  width: 320px; height: 320px;
  background: var(--brand-light);
  border-radius: 50%;
}
.industry-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-700);
  cursor: pointer;
  transition: var(--ease);
}
.industry-list-item:first-child { border-top: 1px solid var(--gray-100); }
.industry-list-item:hover {
  color: var(--brand);
  padding-left: 10px;
}
.industry-list-item i {
  font-size: .85rem;
  color: var(--gray-400);
  transition: var(--ease);
}
.industry-list-item:hover i { color: var(--brand); transform: translate(3px, -3px); }

/* ── Featured Accent Card ── */
.featured-accent-card {
  background: var(--brand);
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.featured-accent-img {
  height: 220px;
  overflow: hidden;
}
.featured-accent-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: var(--ease);
}
.featured-accent-card:hover .featured-accent-img img { transform: scale(1.05); }
.featured-accent-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* ── Testimonial Card ── */
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  height: 100%;
  border: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.testimonial-quote {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--gray-600);
  line-height: 1.7;
  border-left: 3px solid var(--gold);
  padding-left: 16px;
  margin: 0;
}
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  overflow: hidden;
}
.testimonial-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ── Partner Logos ── */
.partner-logo {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gray-300);
  letter-spacing: .03em;
  transition: var(--ease);
  user-select: none;
  white-space: nowrap;
}
.partner-logo:hover { color: var(--gray-500); }

/* ── Contact Section ── */
.contact-section {
  background: var(--white);
}
.contact-wrap {
  background: var(--brand);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
}
.contact-section .section-label { color: var(--gold); }
.contact-section .form-control {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
  border-radius: var(--radius);
  padding: 12px 16px;
}
.contact-section .form-control::placeholder { color: rgba(255,255,255,.5); }
.contact-section .form-control:focus {
  background: rgba(255,255,255,.15);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.2);
  color: #fff;
}
.contact-section .btn-brand {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--gray-900);
}
.contact-section .btn-brand:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}
.contact-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: .9rem;
  flex-shrink: 0;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
  .hero-section { min-height: 75vh; }
  .hero-text-col { padding: 120px 0 100px; padding-right: 0; }
  .hero-title { font-size: 2.4rem; }
  .hero-subtitle { font-size: .9rem; }
  .hero-tabs .col { flex: 1; }
  .hero-tab { padding: 16px 14px; font-size: .6rem; }
  .section-padding { padding: 64px 0; }
  .section-title { font-size: 1.7rem; }

  /* Navbar mobile */
  .nav-logo { height: 48px; }
  .navbar.scrolled .nav-logo { height: 42px; }
  .navbar-brand { padding: 10px 0; }
  .nav-flags { margin-left: auto !important; margin-right: 8px; gap: 3px !important; flex-wrap: wrap; max-width: 200px; }
  .nav-flag { width: 18px; height: 12px; }

  .navbar.navbar-hero .navbar-collapse {
    background: var(--white);
    border-radius: var(--radius);
    padding: 14px 16px;
    margin-top: 8px;
    box-shadow: var(--shadow-lg);
  }
  .navbar.navbar-hero .navbar-collapse .nav-link { color: var(--gray-600); }
  .navbar.navbar-hero .navbar-collapse .nav-link:hover,
  .navbar.navbar-hero .navbar-collapse .nav-link.active { color: var(--brand); }
  .navbar-nav .nav-link {
    padding: 10px 0 !important;
    border-bottom: none;
    border-left: 3px solid transparent;
    padding-left: 12px !important;
  }
  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link.active {
    border-bottom-color: transparent;
    border-left-color: var(--brand);
    background: var(--brand-light);
  }
  .navbar-collapse {
    padding: 14px 0;
    border-top: 1px solid var(--gray-100);
    margin-top: 4px;
  }

  .about-img img { height: 300px; }
  .featured-section { padding: 32px 24px; }
  .contact-form-wrap { padding: 28px 20px; border-radius: var(--radius-lg); }
  .contact-wrap { padding: 40px 32px; }
  .page-hero { padding: 44px 0 48px; }
  .page-hero.has-splash { padding: 56px 0 48px; }

  .champion-card-img { height: 220px; }
  .industry-chart-wrap { max-width: 300px; }
  .cta-banner { min-height: 280px; padding: 60px 0; }
}

@media (max-width: 767px) {
  .section-padding { padding: 52px 0; }
  .section-title { font-size: 1.5rem; }
  .hero-section { min-height: 70vh; }
  .hero-text-col { padding: 100px 0 80px; }
  .hero-title { font-size: 2rem; }
  .hero-title .text-highlight::after { width: 40px; margin-left: 10px; }
  .hero-tabs { display: none; }
  .about-img img { height: 240px; }
  .quote-card { padding: 24px; }
  .newsletter-section h3 { font-size: 1.25rem; }
  .featured-section { padding: 24px 18px; }
  .featured-stat .number { font-size: 1.8rem; }
  .page-hero { padding: 36px 0 40px; }
  .page-hero.has-splash { padding: 42px 0 40px; }

  /* Navbar mobile */
  .nav-logo { height: 42px; }
  .navbar.scrolled .nav-logo { height: 38px; }
  .nav-flags { gap: 2px !important; margin-right: 4px; flex-wrap: wrap; max-width: 170px; }
  .nav-flag { width: 16px; height: 11px; border-radius: 2px; }

  .champion-card-img { height: 180px; }
  .champion-card-footer { padding: 14px 16px; }
  .champion-card-footer span { font-size: .8rem; }
  .stats-strip { padding: 28px 0; border-radius: var(--radius-lg); }
  .stat-number { font-size: 1.6rem; }
  .stat-item { padding: 10px 12px; border-right: none; border-bottom: 1px solid rgba(255,255,255,.15); }
  .stat-item:last-child { border-bottom: none; }
  .industry-chart-wrap { max-width: 280px; margin-bottom: 24px; }
  .cta-banner { min-height: 240px; padding: 48px 0; }
  .cta-banner h2 { font-size: 1.5rem !important; }
  .testimonial-card { padding: 24px 20px; }
  .testimonial-quote { font-size: .92rem; }
  .contact-wrap { padding: 32px 24px; }
  .featured-accent-card { min-height: auto; }
  .partner-logo { font-size: .95rem; }

  /* Hero CTA */
  .hero-cta .btn { font-size: .8rem; padding: 10px 16px; }
  .hero-cta-arrow { width: 40px; height: 40px; font-size: .85rem; }
  .btn-outline-white { font-size: .8rem; padding: 10px 16px; }
}

@media (max-width: 575px) {
  .section-padding { padding: 40px 0; }
  .section-title { font-size: 1.3rem; }
  .hero-text-col { padding: 80px 0 50px; }
  .hero-title { font-size: 1.5rem; }
  .hero-title .text-highlight::after { display: none; }
  .page-hero { padding: 28px 0 32px; }
  .page-hero h1 { font-size: 1.3rem !important; }
  .step-card { padding: 24px 18px; }
  .step-number { width: 42px; height: 42px; font-size: 1rem; }
  .service-card { padding: 24px 20px; }
  .value-card { padding: 24px 18px; }
  .footer-section { padding-top: 36px; }
  .contact-form-wrap { padding: 22px 16px; border-radius: var(--radius); }
  .contact-wrap { padding: 24px 16px; border-radius: var(--radius-lg); }
  .article-card-img { height: 150px; }
  .featured-section { border-left-width: 3px; }

  /* Navbar mobile small */
  .nav-logo { height: 36px; }
  .navbar.scrolled .nav-logo { height: 34px; }
  .navbar-brand { padding: 8px 0; }
  .nav-flags { gap: 2px !important; margin-right: 4px; margin-left: 6px !important; flex-wrap: wrap; max-width: 150px; }
  .nav-flag { width: 14px; height: 10px; border-radius: 2px; }
  .navbar-toggler { padding: 4px 8px; font-size: .75rem; }

  .champion-card-img { height: 130px; }
  .champion-badge { width: 28px; height: 28px; font-size: .65rem; top: 10px; left: 10px; }
  .champion-card-footer { padding: 12px 14px; }
  .champion-card-footer span { font-size: .68rem; }
  .champion-arrow { width: 28px; height: 28px; font-size: .65rem; }
  .feature-card { padding: 20px 16px; }
  .feature-card h5 { font-size: .85rem; }
  .feature-card p { font-size: .75rem; }
  .feature-icon { width: 44px; height: 44px; font-size: 1.1rem; }
  .cta-banner h2 { font-size: 1.15rem !important; }
  .featured-accent-img { height: 140px; }
  .featured-accent-body { padding: 18px; }
  .featured-accent-body h3 { font-size: 1.1rem !important; }
  .testimonial-card { padding: 20px 16px; }
  .testimonial-quote { font-size: .82rem; padding-left: 12px; }
  .stats-strip { border-radius: var(--radius); padding: 20px 0; }
  .stat-number { font-size: 1.3rem; }
  .stat-label { font-size: .6rem; }
  .industry-list-item { font-size: .88rem; padding: 14px 0; }
  .section-pill { font-size: .6rem; padding: 5px 14px; }
  .partner-logo { font-size: .85rem; }
  .footer-logo { height: 42px; }

  /* Hero CTA small */
  .hero-cta .btn { font-size: .75rem; padding: 8px 14px; }
  .hero-cta-arrow { width: 36px; height: 36px; font-size: .8rem; }
  .btn-outline-white { font-size: .75rem; padding: 8px 14px; }

  /* Info cards small */
  .info-card { padding: 24px 18px; }
  .info-card-title { font-size: 1rem; }
  .info-badge { width: 36px; height: 36px; font-size: .75rem; }
}
