/* ================================================================
   CAPITAL GROUP OF COMPANIES — MAIN STYLESHEET
   ================================================================ */

/* ---------- 1. CSS VARIABLES ---------- */
:root {
  /* Brand palette */
  --c-green: #0B7A3A;
  --c-green-dark: #075C2B;
  --c-green-light: #12A34E;
  --c-red: #D71920;
  --c-red-dark: #A9131A;
  --c-black: #111111;
  --c-gray: #F8F9FA;
  --c-white: #FFFFFF;
  --c-gold: #B9903F;
  --c-gold-soft: rgba(185,144,63,.35);
  --header-h: 76px;

  /* Derived surfaces */
  --c-ink: #0E1210;
  --c-ink-soft: #1B221E;
  --c-border: rgba(17, 17, 17, 0.08);
  --c-border-light: rgba(255, 255, 255, 0.14);

  /* Typography */
  --font-body: 'Poppins', sans-serif;
  --font-display: 'Fraunces', serif;

  /* Layout */
  --container-w: 1200px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;

  /* Motion */
  --ease: cubic-bezier(.22,.9,.32,1);
  --dur: .6s;

  /* Shadow */
  --shadow-sm: 0 4px 16px rgba(17,17,17,.06);
  --shadow-md: 0 16px 40px rgba(17,17,17,.10);
  --shadow-lg: 0 24px 60px rgba(17,17,17,.16);
}

/* Careers UI: tuned typography and developer-friendly accents */
:root {
  --career-accent: linear-gradient(90deg, rgba(11,122,58,1), rgba(6,80,120,1));
  --career-card-bg: linear-gradient(180deg,#ffffff,#fbfcfd);
  --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, 'Roboto Mono', monospace;
}

/* ---------- 2. RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; height: 100%; }
body {
  font-family: var(--font-body);
  color: #121212;
  background: radial-gradient(circle at top, rgba(11,122,58,.08), transparent 32%), radial-gradient(circle at bottom right, rgba(215,25,32,.08), transparent 20%), #F4F6F8;
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
.container { width: min(100%, var(--container-w)); }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; color: var(--c-black); letter-spacing: -0.01em; }
p, li, span, a { overflow-wrap: anywhere; word-break: break-word; }
.hero-title, .hero-sub, .section-head h2, .section-sub, .why-us-card p, .reason p, .brand-name, .brand-tag { overflow-wrap: anywhere; word-break: break-word; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
:focus-visible { outline: 3px solid var(--c-green); outline-offset: 3px; }

.container { max-width: var(--container-w); margin: 0 auto; padding: 0 24px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

/* ---------- 3. PRELOADER ---------- */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--c-black);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .6s var(--ease), visibility .6s var(--ease);
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-mark { position: relative; width: 64px; height: 64px; }
.preloader-ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 3px solid rgba(11,122,58,.25);
  border-top-color: var(--c-green-light);
  animation: spin 1s linear infinite;
}
.preloader-core {
  position: absolute; inset: 20px; border-radius: 50%; background: var(--c-red);
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- 4. NAVIGATION ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h); display: flex; align-items: center;
  background: rgba(10, 12, 10, .94); backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 14px 30px rgba(0,0,0,.25);
}
.site-header.scrolled { box-shadow: 0 10px 22px rgba(0,0,0,.28); }
.navbar {
  width: 100%; max-width: var(--container-w); margin: 0 auto; padding: 0 18px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}
.nav-menu { display: flex; align-items: center; gap: 8px; }
.nav-link {
  font-size: .86rem; font-weight: 500; color: rgba(255,255,255,.82);
  position: relative; padding: 10px 12px; transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
  border-radius: calc(var(--radius-sm) / 1.5);
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo { height: 38px; width: auto; aspect-ratio: 1.49 / 1; object-fit: contain; border-radius: 8px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--font-display); font-weight: 600; font-size: .95rem; letter-spacing: .01em;
  color: var(--c-white); white-space: nowrap;
}
.brand-name em { color: var(--c-green-light); font-style: normal; }
.brand-tag {
  font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; color: var(--c-gold);
  font-weight: 600;
}

.nav-menu { display: flex; align-items: center; gap: 6px; }
.nav-link {
  font-size: .9rem; font-weight: 500; color: rgba(255,255,255,.82);
  position: relative; padding: 10px 16px; transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  white-space: nowrap;
}
.nav-link::after {
  content: ''; position: absolute; left: 16px; right: 16px; bottom: 4px; height: 2px;
  background: var(--c-red); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease);
}
.nav-link:hover { color: var(--c-white); background: rgba(255,255,255,.06); }
.nav-link:hover::after, .nav-link.active-link::after { transform: scaleX(1); }
.nav-link.active-link { color: var(--c-white); background: rgba(255,255,255,.08); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; border-radius: 100px; font-weight: 600; font-size: .88rem;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
  white-space: nowrap;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
}
.btn-quote {
  background: var(--c-red); color: var(--c-white); padding: 8px 18px;
  font-size: .82rem; font-weight: 700; letter-spacing: .02em;
  border-radius: 999px; border: 1px solid rgba(255,255,255,.15);
  box-shadow: 0 8px 20px rgba(215,25,32,.16);
}
.btn-quote:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(215,25,32,.22);
}

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; width: 28px; z-index: 1001;
}
.nav-toggle span {
  height: 2px; width: 100%; background: var(--c-white); border-radius: 999px;
  transition: transform .35s var(--ease), opacity .35s var(--ease), background .35s var(--ease);
}

/* ---------- 4b. APP SHELL / SECTION SWITCHING ---------- */
.app-shell { display: flex; flex-direction: column; min-height: 100vh; min-height: 100dvh; }
.app-main { flex: 1 1 auto; position: relative; padding-top: var(--header-h); }
.page-section { display: none; }
.page-section.active { display: block; animation: sectionIn .45s var(--ease); }
.page-section:not(.active), .page-section[hidden] { display: none !important; }
@keyframes sectionIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.section-head { scroll-margin-top: calc(var(--header-h) + 32px); }
@media (prefers-reduced-motion: reduce) { .page-section.active { animation: none; } }

.block { padding: 76px 0; }
.block-tight { padding: 54px 0; }
.block-alt { background: var(--c-gray); }
.block-dark { background: var(--c-black); color: var(--c-white); }

/* ---------- 5. HERO ---------- */
.hero {
  position: relative; min-height: calc(100vh - var(--header-h)); max-height: 960px; display: flex; align-items: center;
  /* small visual gap between fixed header and hero */
  margin-top: 1cm;
  background: radial-gradient(circle at top left, rgba(11,122,58,.24), transparent 22%), radial-gradient(circle at bottom right, rgba(215,25,32,.14), transparent 18%), linear-gradient(180deg, #070b08 0%, #090d0b 100%);
  overflow: hidden; isolation: isolate;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-overlay-img {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('../images/hero-overlay.png'), linear-gradient(180deg, rgba(15,61,34,.16), rgba(9,12,10,.72));
  background-size: cover; background-position: center bottom;
  opacity: .9;
  display: block;
}
.hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(9,12,10,.35) 0%, rgba(9,12,10,.55) 55%, rgba(9,12,10,.92) 100%),
    linear-gradient(90deg, rgba(9,12,10,.75) 0%, rgba(9,12,10,.15) 45%, rgba(9,12,10,.55) 100%);
}
.hero-grid {
  position: absolute; inset: -2px;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(70% 70% at 50% 40%, #000 30%, transparent 90%);
  animation: gridDrift 26s linear infinite;
}
@keyframes gridDrift { from { background-position: 0 0, 0 0; } to { background-position: 56px 56px, 56px 56px; } }
.hero-scanline {
  position: absolute; left: -10%; right: -10%; height: 240px; top: 30%;
  background: linear-gradient(180deg, transparent, rgba(18,163,78,.14), transparent);
  filter: blur(10px);
  animation: scan 9s ease-in-out infinite;
}
@keyframes scan { 0%,100% { transform: translateY(-160px); opacity: .5; } 50% { transform: translateY(220px); opacity: 1; } }
.hero-vignette {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(9,12,10,.2) 0%, rgba(9,12,10,.65) 100%);
}

.hero-inner {
  position: relative; z-index: 2; padding-top: 70px; padding-bottom: 70px;
  max-width: 880px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; text-align: center;
}
/* Hero overlay: professional imagery / illustration */
.hero-people {
  position: absolute;
  inset: 0 0 auto 0;
  height: 52%;
  left: 0;
  right: 0;
  margin: 0 auto;
  pointer-events: none;
  background-image: url('../images/hero-overlay.jpeg');
  background-repeat: no-repeat;
  background-position: center 28%;
  background-size: cover;
  opacity: 0.95;
  mix-blend-mode: multiply;
  filter: saturate(0.9) contrast(0.95);
  transform-origin: center top;
}

/* fallback gradient if image missing */
.hero-people:empty { background-image: linear-gradient(180deg, rgba(11,122,58,0.06), rgba(6,80,120,0.03)); }

@media (max-width: 900px) {
  .hero-people { display: block; height: 42%; background-position: center 36%; opacity: 0.85; }
}
@media (max-width: 520px) {
  .hero-people { display: none; }
}
.hero-inner > * { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.page-section.active .hero-inner > * { opacity: 1; transform: translateY(0); transition-delay: .15s; }
.hero-actions { display: flex; gap: 16px; margin-bottom: 44px; flex-wrap: wrap; justify-content: center; align-items: center; }
.hero-actions .btn { min-width: 180px; }
.hero-title { letter-spacing: -.03em; margin-left: auto; margin-right: auto; max-width: 780px; }
.hero-sub { font-size: 1.03rem; max-width: 640px; margin-left: auto; margin-right: auto; }
.eyebrow {
  display: inline-block; font-size: .78rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--c-green-light); font-weight: 600; margin-bottom: 18px;
}
.hero-title {
  font-size: clamp(2.2rem, 4.8vw, 3.6rem); color: var(--c-white); font-weight: 600;
  margin-bottom: 20px;
}
.type-wrap {
  /* keep typed text on its own row, separate from the preceding sentence */
  display: block;
  width: 100%;
  margin-top: 8px;
  min-height: 1.2em;
  white-space: nowrap;
}
.type-target {
  display: inline-block;
  white-space: nowrap;
  padding: 0.2rem 0.85rem;
  border-radius: 0.9rem;
  background: rgba(17, 107, 211, 0.98);
  color: #fff;
  box-shadow: 0 16px 32px rgba(8, 43, 105, 0.18);
  font-weight: 600;
}
.type-cursor {
  color: #fff;
  opacity: 1;
  animation: none;
}

.hero-sub { color: rgba(255,255,255,.78); font-size: 1.03rem; max-width: 640px; margin-bottom: 30px; margin-left: auto; margin-right: auto; }
.hero-actions { display: flex; gap: 18px; margin-bottom: 60px; flex-wrap: wrap; justify-content: center; align-items: center; }
.btn-primary {
  background: var(--c-green); color: var(--c-white);
  box-shadow: 0 12px 30px rgba(11,122,58,.35);
}
.btn-primary:hover { background: var(--c-green-light); transform: translateY(-3px); box-shadow: 0 16px 36px rgba(11,122,58,.45); }
.btn-outline {
  border: 1.5px solid rgba(255,255,255,.4); color: var(--c-white); background: rgba(255,255,255,.04);
  backdrop-filter: blur(6px);
}
.btn-outline:hover { border-color: var(--c-white); background: rgba(255,255,255,.12); transform: translateY(-3px); }
.btn-block { width: 100%; }
.btn-outline-dark {
  border: 1.5px solid var(--c-border); color: var(--c-black); background: transparent;
}
.btn-outline-dark:hover { border-color: var(--c-green); color: var(--c-green-dark); background: rgba(11,122,58,.06); transform: translateY(-2px); }

.hero-stats {
  display: flex; gap: 10px; align-items: stretch; justify-content: center; width: 100%; max-width: 760px; margin: 0 auto;
  flex-wrap: nowrap;
}
.hero-stat-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(10px); border-radius: 16px;
  padding: 12px 12px; min-width: 0; flex: 1 1 0; max-width: 220px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 2px;
  text-align: center; transition: transform .4s var(--ease), background .4s var(--ease), border-color .3s var(--ease);
}
.hero-stat-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.28); }
.hero-stat-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.1); }
.hero-stat-num { font-family: var(--font-display); font-size: clamp(1.35rem, 1.8vw, 1.65rem); font-weight: 600; color: var(--c-white); }
.hero-stat-suffix { font-family: var(--font-display); font-size: clamp(1.35rem, 1.8vw, 1.65rem); font-weight: 600; color: var(--c-green-light); }
.hero-stat-label { width: 100%; font-size: .68rem; color: rgba(255,255,255,.68); margin-top: 4px; line-height: 1.3; }

.scroll-indicator {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,.7);
}
.scroll-mouse { width: 24px; height: 38px; border: 2px solid rgba(255,255,255,.5); border-radius: 14px; position: relative; }
.scroll-dot { position: absolute; top: 6px; left: 50%; width: 4px; height: 8px; background: var(--c-green-light); border-radius: 2px; transform: translateX(-50%); animation: scrollDot 1.6s ease-in-out infinite; }
@keyframes scrollDot { 0% { opacity: 1; top: 6px; } 100% { opacity: 0; top: 20px; } }
.scroll-word { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; }

/* ---------- 6. SECTION GENERICS ---------- */
.section-head { max-width: 700px; margin: 0 auto 48px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.section-divider {
  display: flex; align-items: center; gap: 10px; justify-content: center; margin-bottom: 14px;
}
.section-head.left .section-divider { justify-content: flex-start; }
.section-divider::before, .section-divider::after { content: ''; width: 26px; height: 1px; background: var(--c-gold); }
.section-divider svg { width: 16px; height: 16px; stroke: var(--c-red); }
.section-head h2 { font-size: clamp(1.8rem, 3.2vw, 2.4rem); margin: 10px 0 12px; }
.section-sub { color: #555; font-size: 1rem; line-height: 1.75; }
.about .eyebrow, .services .eyebrow, .why-us .eyebrow, .industries .eyebrow, .testimonials .eyebrow, .contact .eyebrow { color: var(--c-green); }

/* ---------- 7. ABOUT ---------- */
.about { background: var(--c-white); }
.about-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: center; }
.about-frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: transparent; padding: 0; box-shadow: none;
}
.section-image,
.about-frame img,
.industry-spotlight-media img,
.careers-visual img,
.leader-feature-photo img {
  border-radius: var(--radius-md);
  filter: drop-shadow(0 10px 24px rgba(0,0,0,.18));
  width: 100%;
  height: auto;
  min-height: 280px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}
.about-badge {
  position: absolute; bottom: 18px; right: 18px; background: var(--c-white);
  border-radius: var(--radius-md); padding: 12px 16px; box-shadow: var(--shadow-md);
  text-align: center; border: 1px solid var(--c-border);
  min-width: 108px;
}
.about-badge strong { display: block; font-family: var(--font-display); font-size: 1.3rem; color: var(--c-red); }
.about-badge span { font-size: .72rem; color: #555; line-height: 1.3; }
.about-visual { position: relative; }

.about-copy h2 { margin-bottom: 20px; }
.about-copy p { color: #444; margin-bottom: 16px; }
.about-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.pillar {
  padding: 22px; border-radius: var(--radius-md); background: var(--c-gray);
  border-top: 3px solid var(--c-green);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow-sm); }
.pillar h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--c-green-dark); }
.pillar p { font-size: .88rem; color: #555; }

/* ---------- 7b. MISSION / VISION / VALUES ---------- */
.mvv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.mvv-card {
  min-width: 0;
  width: 100%;
  padding: 38px 30px; border-radius: var(--radius-lg); background: var(--c-black); color: var(--c-white);
  position: relative; overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.mvv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.mvv-card::before {
  content: ''; position: absolute; top: -40%; right: -30%; width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(11,122,58,.35), transparent 70%);
}
.mvv-icon {
  width: 52px; height: 52px; border-radius: 50%; margin-bottom: 22px;
  display: flex; align-items: center; justify-content: center; position: relative; z-index: 1;
  border: 1.5px solid var(--c-gold-soft);
}
.mvv-icon svg { width: 24px; height: 24px; stroke: var(--c-gold); fill: none; }
.mvv-card h3 { color: var(--c-white); font-size: 1.15rem; margin-bottom: 12px; position: relative; z-index: 1; }
.mvv-card p, .mvv-card li { color: rgba(255,255,255,.68); font-size: .9rem; position: relative; z-index: 1; }
.mvv-card ul { display: flex; flex-direction: column; gap: 8px; }
.mvv-card li { display: flex; align-items: baseline; gap: 8px; }
.mvv-card li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--c-red); flex-shrink: 0; transform: translateY(-2px); }

/* ---------- 7c. LEADERSHIP TEAM ---------- */
.leadership-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; align-items: center; }
.leader-card, .testimonial-card { min-width: 0; }
.leadership-copy h3 { font-size: clamp(1.9rem, 2.8vw, 2.6rem); margin-bottom: 24px; color: var(--c-black); line-height: 1.05; }
.leadership-copy p { color: #333; margin-bottom: 18px; line-height: 1.8; font-size: 1rem; }
.leadership-feature { margin-bottom: 34px; }
.leadership-feature-reverse .leader-feature-photo { order: 2; }
.leadership-feature-reverse .leadership-copy { order: 1; }
.leader-feature-photo { display: flex; flex-direction: column; gap: 16px; width: 100%; max-width: 600px; margin: 0 auto; }
.leader-photo-frame { border-radius: 28px; overflow: hidden; box-shadow: 0 28px 70px rgba(0, 0, 0, 0.12); height: 420px; }
.leader-photo-frame img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center; }
.leader-role { display: inline-block; font-size: .88rem; color: var(--c-green-dark); margin-top: 14px; letter-spacing: .07em; text-transform: uppercase; }
@media (max-width: 960px) {
  .leadership-grid { grid-template-columns: 1fr; }
  .leadership-feature-reverse .leadership-copy,
  .leadership-feature-reverse .leader-feature-photo { order: initial; }
  .leader-photo-frame { min-height: 360px; height: auto; }
}

/* ---------- 7d. CAREERS ---------- */
.careers-hero-block {
  padding: 5rem 0 3rem;
  background-image: linear-gradient(rgba(7,18,29,0.64), rgba(7,18,29,0.70)), url('../images/careers.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.careers-hero-container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}
.careers-hero-copy {
  max-width: 720px;
  width: 100%;
  padding: 2.5rem 2rem;
  background: transparent;
  border: none;
  border-radius: 0;
  backdrop-filter: none;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.careers-hero-label {
  color: var(--c-green);
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.careers-hero-copy h2 {
  font-size: clamp(2.8rem, 4vw, 3.4rem);
  line-height: 1.04;
  margin-bottom: 1rem;
  color: #fff;
}
.hero-copy {
  max-width: 620px;
  color: rgba(255,255,255,0.95);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 2rem;
}
.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 1.25rem;
}
.hero-actions .btn {
  min-width: 180px;
}
.careers-portal { display: grid; grid-template-columns: 1fr minmax(280px, 360px); gap: 30px; align-items: start; margin-top: 2rem; }
.careers-main { display: flex; flex-direction: column; gap: 24px; }
.careers-side { display: none; }

.jobs-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.job-card {
  background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(245,248,250,.96));
  border: 1px solid rgba(17,17,17,.06);
  padding: 18px 18px;
  border-radius: 16px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  box-shadow: 0 10px 28px rgba(15,23,42,0.05);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.job-card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(15,23,42,0.08); }
.no-jobs-notice {
  background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(245,248,250,.96));
  border: 1px solid rgba(17,17,17,.06);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  color: var(--c-muted, #6b7280);
  font-size: 1rem;
  box-shadow: 0 10px 28px rgba(15,23,42,0.05);
}
.job-info { flex: 1 1 auto; min-width: 0; }
.job-left { display:flex; flex-direction:column; gap:8px; }
.job-card-top { display:flex; justify-content:space-between; align-items:flex-start; gap:10px; }
.job-title { font-size: 1.02rem; margin:0; font-weight:600; letter-spacing: -0.01em; }
.job-title code { font-family: var(--mono); font-weight:500; font-size:.75rem; color:var(--c-green-dark); background: rgba(11,122,58,0.06); padding:2px 6px; border-radius:999px; margin-left:8px; }
.job-pill { font-size:.72rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:var(--c-green-dark); background: rgba(11,122,58,0.08); padding:6px 8px; border-radius:999px; white-space:nowrap; }
.job-company { font-size: .9rem; color: #5a5f66; }
.job-meta { font-size: .82rem; color: #7a7f85; display:flex; gap:10px; align-items:center; flex-wrap:wrap; }
.job-tags { display:flex; gap:8px; flex-wrap:wrap; margin-top:2px; }
.job-tag { font-size:.78rem; color:#064e3b; background: rgba(6,80,120,0.06); padding:6px 8px; border-radius:999px; border:1px solid rgba(6,80,120,0.06); }
.job-actions { display:flex; flex-direction:column; gap:8px; align-items:flex-end; flex-shrink:0; }
.job-apply { background: var(--career-accent); color:#fff; border:none; padding:10px 14px; border-radius:999px; font-weight:700; cursor:pointer; }
.job-deadline { font-family: var(--mono); font-size:.82rem; color:#0f172a; background: rgba(15,23,42,0.05); padding:6px 8px; border-radius:999px; }

@media (max-width: 960px) {
  .careers-hero-container { min-height: auto; padding: 3rem 0; }
  .careers-hero-copy { padding: 2.75rem 1.75rem; }
  .careers-hero-copy h2 { font-size: clamp(2.4rem, 5vw, 3rem); }
  .careers-portal { grid-template-columns: 1fr; }
  .careers-side { display: none; }
}

@media (max-width: 680px) {
  .careers-hero-copy { padding: 2rem 1.25rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .jobs-list { grid-template-columns: 1fr; }
}
.careers-welcome {
  background: linear-gradient(180deg, rgba(255,255,255,1), rgba(250,252,253,1));
  padding: 26px;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(17,17,17,0.04);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 768px) {
  .careers-intro {
    grid-template-columns: 1fr;
  }
  .careers-visual {
    height: 320px;
    aspect-ratio: 4 / 3;
  }
  .careers-visual img {
    height: 100%;
  }
}
.careers-welcome p {
  line-height: 1.8;
  max-width: 720px;
}
.careers-welcome .btn-outline {
  border: 1.5px solid rgba(15,23,42,.22);
  color: var(--c-black);
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(6px);
}
.careers-welcome .btn-outline:hover,
.careers-welcome .btn-outline:focus-visible {
  border-color: var(--c-green);
  color: var(--c-green-dark);
  background: rgba(11,122,58,.08);
  transform: translateY(-2px);
}
.applicant-status-message { margin-top: 12px; font-size: .95rem; color: #444; }
.view-all-jobs-wrap { margin-top: 14px; text-align: left; }
.careers-actions { display:flex; gap:12px; margin-top:12px; align-items:center; }
.careers-side { padding-bottom: 96px; }
.careers-side .quick-access { background: linear-gradient(180deg,#fff,#fbfcfd); padding: 18px; border-radius: 12px; box-shadow: var(--shadow-sm); margin-bottom: 16px; }
.careers-welcome h3 { margin-bottom: 12px; }
.latest-jobs h4 { margin: 4px 0 12px; }
.careers-side .quick-access ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.careers-side .quick-access a { color: var(--c-green); }
.careers-side .help-tip { background: linear-gradient(160deg, rgba(11,122,58,.06), rgba(255,255,255,.02)); padding: 16px; border-radius: 10px; font-size: .95rem; margin-bottom: 0; }

/* ---------- MODAL: simple app modals ---------- */
.cg-modal { position: fixed; inset: 0; display: none; align-items: center; justify-content: center; background: rgba(6,8,10,0.45); z-index: 1100; }
.cg-modal[aria-hidden="false"] { display: flex; }
.cg-modal-dialog { background: var(--c-white); padding: 22px; width: 100%; max-width: 560px; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); position: relative; }
.cg-modal-close { position: absolute; right: 12px; top: 12px; background: transparent; border: none; font-size: 1.4rem; cursor: pointer; }
.cg-modal .form-field { margin-bottom: 12px; }
.cg-modal label { display: block; font-size: .86rem; margin-bottom: 6px; color: #333; }
.cg-modal input, .cg-modal textarea { width: 100%; padding: 10px 12px; border-radius: 8px; border: 1px solid var(--c-border); }
.cg-modal .form-note { margin-top: 8px; font-size: .9rem; }

.leader-card { text-align: center; }
.leader-photo {
  width: 128px; height: 128px; border-radius: 50%; margin: 0 auto 18px; position: relative;
  background: linear-gradient(160deg, var(--c-green), var(--c-black));
  display: flex; align-items: center; justify-content: center;
  border: 3px solid var(--c-white); box-shadow: var(--shadow-md);
}
.leader-photo svg { width: 52px; height: 52px; stroke: rgba(255,255,255,.85); fill: none; }
.leader-card h3 { font-size: 1.02rem; margin-bottom: 2px; }
.leader-role { display: block; font-size: .78rem; color: var(--c-red); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 10px; }
.leader-card p { font-size: .85rem; color: #666; }

/* ---------- 8. SERVICES ---------- */
.services { background: var(--c-gray); }
.services-grid { display: grid; grid-template-columns: repeat(5, minmax(220px, 1fr)); gap: 28px; }
.service-card {
  background: linear-gradient(180deg, #ffffff 0%, #f5f7f8 100%); border-radius: calc(var(--radius-lg) + 6px); padding: 36px 30px;
  border: 1px solid rgba(17,17,17,.08); position: relative; overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease), background .4s var(--ease);
}
.service-card h3 { font-size: 1.1rem; margin-bottom: 12px; }
.service-card p { color: #4d565f; line-height: 1.65; }
.service-card-link { color: var(--c-green-dark); }
.service-card:hover { transform: translateY(-10px); box-shadow: 0 22px 60px rgba(17,17,17,.09); }
.service-card::before {
  content: ''; position: absolute; inset: 0; opacity: 0;
  background: linear-gradient(160deg, rgba(11,122,58,.06), rgba(215,25,32,.04));
  transition: opacity .4s var(--ease);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 52px; height: 52px; border-radius: 14px; margin-bottom: 20px;
  background: linear-gradient(160deg, var(--c-green), var(--c-green-dark));
  display: flex; align-items: center; justify-content: center; position: relative; z-index: 1;
  transition: transform .4s var(--ease);
}
.service-card:hover .service-icon { transform: rotate(-6deg) scale(1.06); }
.service-icon svg { width: 26px; height: 26px; fill: var(--c-white); }
.service-card h3 { font-size: 1.05rem; margin-bottom: 10px; position: relative; z-index: 1; }
.service-card p { font-size: .87rem; color: #555; margin-bottom: 16px; position: relative; z-index: 1; }
.service-card-link {
  font-size: .8rem; font-weight: 700; color: var(--c-green-dark); position: relative; z-index: 1;
  display: inline-flex; align-items: center; gap: 6px;
}
.service-card-link svg { width: 13px; height: 13px; stroke: var(--c-green-dark); fill: none; transition: transform .3s var(--ease); }
.service-card:hover .service-card-link svg { transform: translateX(4px); }

/* ---------- 8b. SERVICE DETAIL VIEW ---------- */
.services-back {
  display: inline-flex; align-items: center; gap: 8px; font-size: .84rem; font-weight: 600;
  color: var(--c-green-dark); margin-bottom: 30px;
}
.services-back svg { width: 15px; height: 15px; stroke: var(--c-green-dark); fill: none; }
.service-detail-head { display: flex; align-items: center; gap: 22px; margin-bottom: 30px; }
.service-detail-icon {
  width: 68px; height: 68px; border-radius: 18px; flex-shrink: 0;
  background: linear-gradient(160deg, var(--c-green), var(--c-green-dark));
  display: flex; align-items: center; justify-content: center;
}
.service-detail-icon svg { width: 32px; height: 32px; fill: var(--c-white); }
.service-detail-eyebrow { color: var(--c-red); font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.service-detail-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.3rem); }
.service-detail-body { display: grid; grid-template-columns: 1.3fr .9fr; gap: 34px; align-items: start; }
.service-detail-body p { color: #444; margin-bottom: 16px; font-size: 1rem; }
.service-detail-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 0; }
.service-detail-list li { display: flex; gap: 12px; align-items: flex-start; font-size: .92rem; color: #fff; background: rgba(255,255,255,.08); border-radius: 14px; padding: 14px 16px; }
.service-detail-list svg { width: 18px; height: 18px; fill: var(--c-green); flex-shrink: 0; margin-top: 3px; }
.service-detail-aside {
  background: var(--c-black); color: var(--c-white); border-radius: var(--radius-lg);
  padding: 30px 26px; width: 100%; max-width: 430px; align-self: start;
}
.service-detail-aside h3 { color: var(--c-white); font-size: 1.05rem; margin-bottom: 16px; }
.service-detail-aside p { color: rgba(255,255,255,.66); font-size: .88rem; margin-bottom: 22px; }

/* ---------- 9. WHY CHOOSE US ---------- */
.why-us { background: var(--c-black); color: var(--c-white); }
.why-us-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: center; }
.why-us-card {
  background: linear-gradient(160deg, rgba(11,122,58,.22), rgba(255,255,255,.03));
  border: 1px solid var(--c-border-light); border-radius: var(--radius-lg);
  padding: 50px 40px; position: relative; min-height: 320px; display: flex; flex-direction: column; justify-content: center;
}
.why-us-quote { font-family: var(--font-display); font-size: 5rem; color: var(--c-red); line-height: .5; display: block; margin-bottom: 20px; }
.why-us-card p { font-size: 1.25rem; font-family: var(--font-display); font-weight: 500; line-height: 1.5; }
.why-us-signoff { display: block; margin-top: 24px; font-size: .8rem; color: rgba(255,255,255,.55); letter-spacing: .05em; }
.why-us-copy .eyebrow { color: var(--c-green-light); }
.why-us-copy h2 { color: var(--c-white); margin-bottom: 36px; }
.reasons-list { display: flex; flex-direction: column; gap: 26px; }
.reason { display: flex; gap: 20px; align-items: flex-start; }
.reason-index { font-family: var(--font-display); font-size: 1.1rem; color: var(--c-red); font-weight: 600; padding-top: 2px; }
.reason h3 { color: var(--c-white); font-size: 1.05rem; margin-bottom: 4px; }
.reason p { color: rgba(255,255,255,.62); font-size: .88rem; }

/* ---------- 10. INDUSTRIES ---------- */
.industries { background: var(--c-white); }
.industry-spotlight {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr); gap: 28px;
  align-items: center; margin-bottom: 32px; padding: 24px; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(11,122,58,.04), rgba(255,255,255,.96));
  border: 1px solid rgba(11,122,58,.08); box-shadow: none;
  width: 100%; max-width: 100%; overflow: hidden;
}
@media (max-width: 780px) {
  .industry-spotlight {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px;
  }
  .industry-spotlight-media img {
    height: 240px;
  }
}
.industry-spotlight-media { min-width: 0; }
.industry-spotlight-media img {
  width: 100%; height: 420px; object-fit: cover; border-radius: var(--radius-md);
  box-shadow: none; display: block;
}
.industry-spotlight-copy {
  display: flex; flex-direction: column; justify-content: center; min-width: 0;
}
.industry-spotlight-copy h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.6rem); margin: 8px 0 12px; color: var(--c-black);
  line-height: 1.3;
}
.industry-spotlight-copy p { color: #555; line-height: 1.7; margin: 0; }
.industries-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.industry-chip {
  text-align: center; padding: 28px 18px; border-radius: 24px;
  background: var(--c-white); font-weight: 700; font-size: .92rem; color: var(--c-black);
  border: 1px solid rgba(17,17,17,.08);
  transition: all .35s var(--ease);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  box-shadow: 0 14px 28px rgba(17,17,17,.05);
}
.industry-chip svg { width: 26px; height: 26px; stroke: var(--c-green-dark); fill: none; transition: stroke .3s var(--ease); }
.industry-chip:hover {
  background: var(--c-white); border-color: var(--c-green); color: var(--c-green-dark);
  transform: translateY(-4px); box-shadow: var(--shadow-sm);
}
.industry-chip:hover svg { stroke: var(--c-red); }

/* ---------- 5b. HERO BADGE ---------- */
.hero-badge {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 8px 14px; margin-bottom: 22px;
  border: 1px solid var(--c-gold-soft); border-radius: 100px; background: rgba(185,144,63,.08);
  font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--c-gold);
  max-width: 100%; flex-wrap: wrap; text-align: center; line-height: 1.4;
}
.hero-badge svg { width: 13px; height: 13px; stroke: var(--c-gold); fill: none; flex-shrink: 0; }

/* ---------- 11. STATISTICS BAND ---------- */
.stats-band {
  background: linear-gradient(120deg, var(--c-green-dark), var(--c-green));
  padding: 60px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; text-align: center; align-items: stretch; }
.stat-block {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 2px;
  padding: 18px 12px; border: 1px solid rgba(255,255,255,.16); border-radius: 18px;
  background: rgba(255,255,255,.08); min-height: 100%;
}
.stat-num { font-family: var(--font-display); font-size: clamp(1.8rem, 2.2vw, 2.4rem); font-weight: 600; color: var(--c-white); }
.stat-suffix { font-family: var(--font-display); font-size: clamp(1.8rem, 2.2vw, 2.4rem); font-weight: 600; color: rgba(255,255,255,.75); }
.stat-label { width: 100%; color: rgba(255,255,255,.85); font-size: .78rem; letter-spacing: .04em; margin-top: 6px; line-height: 1.4; }

/* ---------- 12. TESTIMONIALS ---------- */
.testimonials { background: var(--c-gray); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; align-items: stretch; }
.testimonial-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfa 100%); border-radius: 26px; padding: 32px;
  border: 1px solid rgba(17,17,17,.08); position: relative; width: 100%; min-width: 0; box-sizing: border-box;
  display: flex; flex-direction: column; justify-content: space-between; gap: 18px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s var(--ease);
  overflow-wrap: anywhere; word-break: break-word;
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(11,122,58,.22); }
.testimonial-card p { font-size: .95rem; color: #333; margin: 0; line-height: 1.7; font-style: italic; }
.testimonial-card footer { margin-top: auto; padding-top: 14px; border-top: 1px solid rgba(17,17,17,.08); }
.testimonial-card footer strong { display: block; font-size: .9rem; color: var(--c-green-dark); }
.testimonial-card footer span { display: block; font-size: .78rem; color: #777; margin-top: 4px; }

.reports-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.report-card {
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 40px rgba(15,23,42,0.06);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.report-card h3 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--c-black);
  line-height: 1.4;
}

.report-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.report-category,
.report-period {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(15,118,110,0.08);
  color: var(--c-green-dark);
  font-size: .82rem;
  font-weight: 700;
}

.report-card p {
  margin: 0;
  color: rgba(15,23,42,0.75);
  line-height: 1.75;
}

.report-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.report-actions .report-date {
  color: rgba(15,23,42,0.55);
  font-size: .88rem;
}

.report-empty {
  padding: 28px 24px;
  text-align: center;
  color: rgba(15,23,42,0.65);
  border: 1px dashed rgba(15,23,42,0.18);
  border-radius: var(--radius-md);
  background: rgba(246,251,249,0.72);
  grid-column: 1 / -1;
  max-width: 480px;
  margin: 0 auto;
}

@media (max-width: 980px) {
  .reports-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- 13. CONTACT ---------- */
.contact { background: var(--c-white); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: start; margin-bottom: 60px; }
.contact-copy p { color: #444; margin: 16px 0 28px; }
.contact-details { display: flex; flex-direction: column; gap: 16px; margin-bottom: 30px; }
.contact-details li { display: flex; align-items: center; gap: 14px; font-size: .92rem; color: #333; }
.contact-details svg { width: 20px; height: 20px; fill: var(--c-red); flex-shrink: 0; }
.btn-whatsapp { background: #1EA952; color: var(--c-white); }
.btn-whatsapp svg { width: 18px; height: 18px; fill: var(--c-white); }
.btn-whatsapp:hover { background: #178a41; transform: translateY(-2px); }

.contact-form {
  background: var(--c-gray); border-radius: var(--radius-lg); padding: 40px;
  border: 1px solid var(--c-border); display: flex; flex-direction: column; gap: 18px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label { font-size: .8rem; font-weight: 600; color: #444; }
.form-field input, .form-field select, .form-field textarea {
  padding: 13px 16px; border-radius: var(--radius-sm); border: 1px solid var(--c-border);
  background: var(--c-white); font-size: .92rem; transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--c-green); box-shadow: 0 0 0 3px rgba(11,122,58,.14); outline: none;
}
.form-note { font-size: .82rem; color: var(--c-green-dark); min-height: 1em; }

.map-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--c-border); box-shadow: var(--shadow-sm); }
.map-wrap iframe { width: 100%; height: 280px; border: 0; display: block; filter: grayscale(.15) contrast(1.05); }
.quote-callout {
  margin-top: 24px; padding: 24px 26px; border-radius: var(--radius-md);
  background: var(--c-black); color: var(--c-white); display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.quote-callout p { font-size: .9rem; color: rgba(255,255,255,.7); margin: 0; }
.quote-callout strong { display: block; color: var(--c-white); font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 4px; }

/* ---------- 14. FOOTER ---------- */
.site-footer {
  background: linear-gradient(180deg, #0B0F0C 0%, #060807 100%);
  color: rgba(255,255,255,.75); flex-shrink: 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 28px 30px;
  align-items: start; padding: 42px 32px 30px; border-bottom: 1px solid rgba(255,255,255,.1);
  max-width: var(--container-w); margin: 0 auto;
  width: 100%;
}
.footer-brand { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.footer-brand img { height: 44px; width: auto; aspect-ratio: 1.49 / 1; object-fit: contain; border-radius: 8px; }
.footer-brand p { font-family: var(--font-display); color: var(--c-white); font-size: 1rem; margin: 0; line-height: 1.45; }
.footer-brand span { display: block; font-family: var(--font-body); font-size: .72rem; color: var(--c-gold); letter-spacing: .1em; text-transform: uppercase; margin-top: 2px; }
.footer-tagline { font-size: .84rem; color: rgba(255,255,255,.62); margin: 8px 0 0; max-width: 320px; line-height: 1.7; }
.footer-col { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.footer-col h3 { font-family: var(--font-body); font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--c-white); margin: 0 0 4px; }
.footer-col a, .footer-col button {
  display: block; font-size: .92rem; margin: 0; transition: color .3s var(--ease), transform .3s var(--ease);
  color: rgba(255,255,255,.78); text-align: left; line-height: 1.55;
}
.footer-col a:hover, .footer-col button:hover { color: var(--c-green-light); transform: translateX(4px); }
.social-row { display: flex; gap: 10px; margin-top: 12px; }
.social-row a {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center; transition: all .3s var(--ease);
}
.social-row a svg { width: 15px; height: 15px; fill: rgba(255,255,255,.8); }
.social-row a:hover { background: var(--c-green); border-color: var(--c-green); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  max-width: var(--container-w); margin: 0 auto; padding: 18px 32px 28px; font-size: .78rem; flex-wrap: wrap; gap: 10px;
  color: rgba(255,255,255,.7);
}
.footer-credit { margin: 0; }

@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 24px;
    padding: 42px 26px 30px;
  }
}
@media (max-width: 940px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 42px 24px 30px;
  }
}
.footer-credit a { color: var(--c-green); text-decoration: underline; }
.footer-legal a { text-decoration: underline; }

/* ---------- 15. FLOATING UI ---------- */
.floating-cta {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 58px; height: 58px; border-radius: 50%; background: #1EA952;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 28px rgba(30,169,82,.4);
  animation: none;
  transition: transform .3s var(--ease);
}
.floating-cta svg { width: 28px; height: 28px; fill: var(--c-white); }
.floating-cta:hover { transform: scale(1.08); }

.back-to-top {
  position: fixed; bottom: 28px; right: 98px; z-index: 900;
  width: 46px; height: 46px; border-radius: 50%; background: var(--c-black);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s var(--ease), background .3s var(--ease);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top svg { width: 20px; height: 20px; fill: var(--c-white); }
.back-to-top:hover { background: var(--c-green); }

/* ---------- 16. SCROLL REVEAL ---------- */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0; transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal-up { transform: translateY(36px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-up.is-visible, .reveal-left.is-visible, .reveal-right.is-visible {
  opacity: 1; transform: translate(0,0);
}

/* ---------- 17. PREMIUM VISUAL ENHANCEMENTS ---------- */
body {
  background:
    radial-gradient(circle at top left, rgba(11,122,58,.14), transparent 28%),
    radial-gradient(circle at 90% 10%, rgba(215,25,32,.12), transparent 24%),
    linear-gradient(135deg, #f6f8fa 0%, #eef2f4 100%);
}

.site-header {
  background: rgba(7, 10, 9, .94);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.nav-link, .btn {
  letter-spacing: .01em;
}

.btn {
  padding: 14px 28px;
  font-size: .94rem;
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
}

.hero {
  box-shadow: inset 0 -1px 0 rgba(255,255,255,.04);
}

.hero-inner {
  max-width: 940px;
}

.hero-title {
  text-shadow: 0 10px 30px rgba(0,0,0,.24);
}

.hero-sub {
  font-size: 1.12rem;
  line-height: 1.8;
  max-width: 680px;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 28px;
  justify-content: center;
  align-items: center;
}

.hero-highlights span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.9);
  font-size: .78rem;
  font-weight: 600;
  line-height: 1.3;
  backdrop-filter: blur(10px);
  text-align: center;
  white-space: nowrap;
}

.hero-badge {
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
}

.hero-stat-card {
  background: linear-gradient(145deg, rgba(255,255,255,.16), rgba(255,255,255,.06));
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 14px 36px rgba(0,0,0,.14);
}

.section-head h2 {
  font-size: clamp(2rem, 3.7vw, 2.85rem);
}

.section-sub {
  font-size: 1.05rem;
  line-height: 1.8;
}

.service-card,
.industry-chip,
.testimonial-card,
.pillar,
.contact-form,
.careers-welcome,
.quick-access,
.mvv-card {
  box-shadow: 0 18px 40px rgba(17,17,17,.06);
}

.service-card:hover,
.industry-chip:hover,
.testimonial-card:hover,
.pillar:hover,
.mvv-card:hover {
  box-shadow: 0 22px 48px rgba(17,17,17,.1);
}

.why-us-card {
  box-shadow: 0 24px 60px rgba(0,0,0,.24);
}

.stats-band {
  position: relative;
  overflow: hidden;
}

.stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(255,255,255,.06), transparent 35%, rgba(255,255,255,.04));
  pointer-events: none;
}

.stat-block {
  padding: 12px 10px;
}

.contact-form {
  background: linear-gradient(180deg, #fbfcfd 0%, #f2f5f7 100%);
}

.site-footer {
  background: linear-gradient(180deg, #0b1110 0%, #050706 100%);
}

@media (max-width: 768px) {
  .hero-highlights {
    gap: 8px;
    justify-content: center;
  }

  .hero-highlights span {
    font-size: .74rem;
    padding: 8px 11px;
  }
}

@media (max-width: 576px) {
  .hero-highlights {
    gap: 8px;
    justify-content: center;
  }

  .hero-highlights span {
    font-size: .7rem;
    padding: 7px 10px;
    white-space: normal;
    line-height: 1.25;
  }
  .hero-badge {
    padding: 8px 12px; font-size: .66rem; letter-spacing: .1em; margin-bottom: 18px;
  }
  .hero-title {
    font-size: clamp(1.95rem, 8vw, 2.6rem);
  }

  .hero-sub {
    font-size: 1rem;
  }

  .hero-actions .btn {
    padding: 12px 18px;
  }
}

.jobs-empty {
  background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(245,248,250,.96));
  border: 1px solid rgba(17,17,17,.06);
  border-radius: 16px;
  padding: 40px 24px;
  text-align: center;
  box-shadow: 0 10px 28px rgba(15,23,42,0.05);
}
.jobs-empty h2 {
  font-size: 1.3rem;
  margin: 0 0 10px 0;
  color: var(--c-dark, #111827);
}
.jobs-empty p {
  margin: 0;
  color: var(--c-muted, #6b7280);
  font-size: 1rem;
}

.reports-gate p { margin: 0 0 16px 0; color: var(--c-muted, #6b7280); }
.reports-admin-form { display: flex; flex-direction: column; gap: 10px; max-width: 320px; margin: 0 auto; }
.reports-admin-form input {
  padding: 12px 14px; border-radius: 10px; border: 1px solid rgba(17,17,17,.12);
  font-size: .9rem; width: 100%; box-sizing: border-box;
}
.reports-admin-note { font-size: .82rem; color: var(--c-red); min-height: 18px; margin: 4px 0 0 0; }

.industries-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 140px;
  gap: 16px;
  margin-top: 40px;
}
.industries-gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,.14));
  position: relative;
}
.industries-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .5s var(--ease);
}
.industries-gallery-item:hover img {
  transform: scale(1.06);
}
.industries-gallery-featured {
  grid-column: span 2;
  grid-row: span 2;
}
@media (max-width: 900px) {
  .industries-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }
  .industries-gallery-featured {
    grid-column: span 2;
    grid-row: span 2;
  }
}
@media (max-width: 560px) {
  .industries-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }
  .industries-gallery-featured {
    grid-column: span 1;
    grid-row: span 1;
  }
}
.leader-title {
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--c-black);
  text-align: center;
  padding-top: 12px;
  border-top: 2px solid var(--c-gold);
  margin: 0;
}
