/* =========================================================
   xevantro - Corporate stylesheet
   ========================================================= */

:root {
  --bg: #f2f3f5;
  --bg-alt: #e8eaee;
  --surface: #ffffff;
  --ink: #1c2733;
  --ink-soft: #4b5a6b;
  --muted: #7a8794;
  --navy: #0c2233;
  --navy-deep: #08192b;
  --blue: #155f9c;
  --blue-dark: #0e4a7c;
  --teal: #0f9d8c;
  --teal-dark: #0b7d70;
  --amber: #e9a13b;
  --line: #dde1e6;
  --shadow-sm: 0 1px 2px rgba(12, 34, 51, 0.06), 0 1px 3px rgba(12, 34, 51, 0.08);
  --shadow-md: 0 6px 18px rgba(12, 34, 51, 0.08), 0 2px 6px rgba(12, 34, 51, 0.05);
  --shadow-lg: 0 18px 44px rgba(12, 34, 51, 0.14), 0 4px 12px rgba(12, 34, 51, 0.08);
  --radius: 0px;
  --radius-lg: 0px;
  --font: "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--teal); }
ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4 {
  margin: 0 0 0.4em;
  color: var(--navy);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
}

p { margin: 0 0 1em; color: var(--ink-soft); }

.container { width: min(1180px, 92%); margin-inline: auto; }

.section { padding: 88px 0; }
.section-alt { background: var(--bg-alt); }

/* ------- Eyebrow + headings ------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--teal);
  border-radius: 2px;
}
.sec-head { max-width: 720px; margin-bottom: 48px; }
.sec-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.sec-head p { font-size: 1.05rem; margin-bottom: 0; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head.center .eyebrow::before { display: none; }
.sec-head.center .eyebrow { justify-content: center; }

/* ------- Buttons ------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  background: none;
  font-family: inherit;
}
.btn svg { width: 16px; height: 16px; }
.btn-primary { background: linear-gradient(135deg, var(--blue), var(--teal)); color: #fff; box-shadow: 0 8px 20px rgba(21, 95, 156, 0.32); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(21, 95, 156, 0.4); color: #fff; }
.btn-outline { border-color: rgba(255,255,255,0.4); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; color: #fff; }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--navy-deep); color: #fff; transform: translateY(-2px); }
.btn-ghost { border-color: var(--line); color: var(--navy); background: #fff; }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }

/* =========================================================
   Top bar + Header
   ========================================================= */
.topbar {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  padding: 9px 0;
}
.topbar .container { display: flex; justify-content: space-between; gap: 16px; align-items: center; flex-wrap: wrap; }
.topbar a { color: rgba(255,255,255,0.85); }
.topbar a:hover { color: #fff; }
.topbar .tb-left, .topbar .tb-right { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.topbar .tb-item { display: inline-flex; align-items: center; gap: 7px; }
.topbar svg { width: 13px; height: 13px; opacity: 0.8; }

.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 14px 0; }

.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-mark {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  display: grid; place-items: center;
  color: #fff; font-weight: 900; font-size: 1.15rem;
  box-shadow: 0 6px 14px rgba(15, 157, 140, 0.35);
}
.brand-text { line-height: 1.1; }
.brand-text b { font-size: 1.25rem; color: var(--navy); letter-spacing: -0.02em; display: block; }
.brand-text span { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); }

.main-nav ul { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  padding: 9px 15px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.93rem;
  color: var(--ink-soft);
}
.main-nav a:hover { color: var(--blue); background: rgba(21, 95, 156, 0.07); }
.main-nav a.active { color: #fff; background: linear-gradient(135deg, var(--blue), var(--teal)); box-shadow: 0 6px 14px rgba(21,95,156,0.3); }

/* ------- Services dropdown ------- */
.has-dropdown { position: relative; }
.has-dropdown > .drop-link { display: inline-flex; align-items: center; gap: 7px; }
.has-dropdown > .drop-link .caret { width: 11px; height: 11px; transition: transform 0.2s ease; }
.has-dropdown:hover > .drop-link .caret,
.has-dropdown.open > .drop-link .caret { transform: rotate(180deg); }
.has-dropdown::before {
  content: "";
  position: absolute; left: 0; right: 0; top: 100%; height: 14px;
}

.dropdown {
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--surface); border: 1px solid var(--line); border-top: 3px solid var(--blue);
  box-shadow: var(--shadow-lg); min-width: 305px; padding: 10px;
  opacity: 0; visibility: hidden; z-index: 1200;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}
.has-dropdown:hover .dropdown,
.has-dropdown.open .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }

.main-nav .dropdown { display: block; gap: 0; }
.main-nav .dropdown li { display: block; margin: 0 0 2px; }
.main-nav .dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 0;
  font-size: 0.9rem; font-weight: 600; color: var(--ink-soft);
  white-space: nowrap;
}
.main-nav .dropdown a::before { content: "→"; color: var(--teal); font-size: 0.8rem; opacity: 0; transition: opacity 0.15s ease; }
.main-nav .dropdown a:hover { background: rgba(21, 95, 156, 0.07); color: var(--blue); padding-left: 17px; }
.main-nav .dropdown a:hover::before { opacity: 1; }

@media (min-width: 769px) and (max-width: 1100px) {
  .dropdown {
    left: auto; right: 0;
    transform: translateY(6px);
    max-width: calc(100vw - 30px);
  }
  .has-dropdown:hover .dropdown,
  .has-dropdown.open .dropdown { transform: translateY(0); }
}

/* ------- Services mega menu ------- */
/* Anchor to the sticky header so the menu centers relative to the container */
.has-dropdown.mega { position: static; }
.has-dropdown.mega::before { display: none; }

.has-dropdown.mega > .dropdown.mega-menu {
  min-width: 0;
  width: 1180px;
  max-width: 90vw;
  left: 50%; right: auto;
  transform: translateX(-50%) translateY(6px);
  padding: 34px 40px;
  margin: 0;
}
/* Hover bridge lives on the menu so hover is never lost across the gap */
.has-dropdown.mega > .dropdown.mega-menu::before {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 100%; height: 14px;
}
.has-dropdown.mega:hover > .dropdown.mega-menu,
.has-dropdown.mega.open > .dropdown.mega-menu { transform: translateX(-50%) translateY(0); }

.main-nav .dropdown.mega-menu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 44px;
  align-items: start;
}
.main-nav .dropdown.mega-menu .mega-col-title {
  display: block;
  margin-bottom: 14px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.main-nav .dropdown.mega-menu .mega-list { display: flex; flex-direction: column; gap: 0; }
.main-nav .dropdown.mega-menu .mega-list li { margin: 0; }
.main-nav .dropdown.mega-menu .mega-list a {
  display: flex;
  align-items: center;
  min-height: 55px;
  padding: 14px 6px;
  font-size: 0.92rem;
  line-height: 1.4;
  white-space: normal;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  transition: color 0.15s ease, padding-left 0.15s ease;
}
.main-nav .dropdown.mega-menu .mega-list a::before { content: none; }
.main-nav .dropdown.mega-menu .mega-list li:last-child a { border-bottom: none; }
.main-nav .dropdown.mega-menu .mega-list a:hover {
  background: none;
  color: var(--blue);
  padding-left: 10px;
  border-bottom: 1px solid var(--line);
}
.main-nav .dropdown.mega-menu .mega-list li:last-child a:hover { border-bottom: none; }

@media (min-width: 769px) and (max-width: 1100px) {
  .has-dropdown.mega > .dropdown.mega-menu {
    width: 680px;
    padding: 30px;
  }
  .main-nav .dropdown.mega-menu { grid-template-columns: repeat(2, 1fr); gap: 26px 32px; }
  .main-nav .dropdown.mega-menu .mega-col:nth-child(3) { grid-column: 1 / -1; }
  .main-nav .dropdown.mega-menu .mega-col:nth-child(3) .mega-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 32px;
  }
  .main-nav .dropdown.mega-menu .mega-col:nth-child(3) .mega-list li:nth-last-child(-n+2) a,
  .main-nav .dropdown.mega-menu .mega-col:nth-child(3) .mega-list li:nth-last-child(-n+2) a:hover { border-bottom: none; }
}

.header-cta { display: inline-flex; align-items: center; gap: 14px; }
.header-cta .btn { padding: 11px 20px; }

.nav-toggle {
  display: none;
  background: none; border: 1px solid var(--line); border-radius: 10px;
  width: 44px; height: 40px; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span { width: 20px; height: 2px; background: var(--navy); border-radius: 2px; transition: 0.25s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  background:
    radial-gradient(900px 480px at 88% -10%, rgba(15,157,140,0.35), transparent 60%),
    radial-gradient(820px 520px at -5% 20%, rgba(21,95,156,0.5), transparent 55%),
    linear-gradient(150deg, var(--navy-deep) 0%, var(--navy) 55%, #123c5e 100%);
  color: #fff;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(700px 420px at 70% 40%, #000, transparent);
  pointer-events: none;
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; padding: 96px 0 104px; z-index: 1; }
.hero .eyebrow { color: #7fd6cb; }
.hero .eyebrow::before { background: #7fd6cb; }
.hero h1 { color: #fff; font-size: clamp(2.1rem, 4.6vw, 3.4rem); margin-bottom: 18px; }
.hero h1 em { font-style: normal; background: linear-gradient(90deg, #57c9bc, #8fd3ff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero .lead { color: rgba(255,255,255,0.78); font-size: 1.12rem; max-width: 540px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }

.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 46px; max-width: 560px; }
.hero-stats > div { border-left: 2px solid rgba(255,255,255,0.18); padding-left: 16px; }
.hero-stats b { display: block; font-size: 1.7rem; color: #fff; line-height: 1.1; }
.hero-stats span { font-size: 0.82rem; color: rgba(255,255,255,0.65); }

.hero-visual { position: relative; }
.hero-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-lg);
}
.hero-card h3 { color: #fff; font-size: 0.95rem; margin-bottom: 18px; display: flex; justify-content: space-between; align-items: center; }
.hero-card h3 span { font-size: 0.75rem; color: #7fd6cb; font-weight: 600; }
.meter { margin-bottom: 16px; }
.meter .m-top { display: flex; justify-content: space-between; font-size: 0.8rem; color: rgba(255,255,255,0.75); margin-bottom: 7px; }
.meter .m-top b { color: #fff; }
.meter .bar { height: 8px; border-radius: 99px; background: rgba(255,255,255,0.14); overflow: hidden; }
.meter .bar i { display: block; height: 100%; border-radius: 99px; background: linear-gradient(90deg, var(--teal), #57c9bc); }
.hero-chip { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14); padding: 12px 14px; border-radius: 12px; margin-bottom: 10px; font-size: 0.86rem; color: rgba(255,255,255,0.85); }
.hero-chip svg { width: 18px; height: 18px; color: #7fd6cb; flex: none; }
.hero-float {
  position: absolute;
  background: #fff; color: var(--ink);
  border-radius: 14px; box-shadow: var(--shadow-lg);
  padding: 12px 16px; font-size: 0.82rem; font-weight: 700;
  display: flex; align-items: center; gap: 10px;
  animation: bob 5s ease-in-out infinite;
}
.hero-float .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 4px rgba(15,157,140,0.18); }
.hero-float.f1 { top: -18px; right: 6%; }
.hero-float.f2 { bottom: -16px; left: -4%; animation-delay: 2.2s; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* ------- client logos strip ------- */
.logos-band { background: var(--surface); border-bottom: 1px solid var(--line); padding: 22px 0; }
.logos-band .container { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.logos-band .label { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.logos-band ul { display: flex; gap: 34px; align-items: center; flex-wrap: wrap; }
.logos-band li { font-weight: 800; color: #9aa6b2; font-size: 1.05rem; letter-spacing: 0.02em; white-space: nowrap; }
.logos-band li:nth-child(even) { color: #a9b4c0; }

/* =========================================================
   Generic content helpers
   ========================================================= */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }

.media-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); position: relative; }
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.media-frame::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,0.12); border-radius: inherit; pointer-events: none; }

.check-list li { position: relative; padding-left: 30px; margin-bottom: 12px; color: var(--ink-soft); }
.check-list li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(15,157,140,0.14); color: var(--teal-dark);
  font-size: 0.72rem; font-weight: 900;
  display: grid; place-items: center;
}

/* ------- section intro band (page hero) ------- */
.page-hero {
  background:
    radial-gradient(760px 380px at 90% -20%, rgba(15,157,140,0.4), transparent 60%),
    radial-gradient(600px 420px at 0% 0%, rgba(21,95,156,0.55), transparent 55%),
    linear-gradient(150deg, var(--navy-deep), #123c5e);
  color: #fff; position: relative; overflow: hidden;
}
.page-hero .inner { padding: 74px 0 76px; position: relative; z-index: 1; }
.breadcrumb { display: flex; gap: 10px; align-items: center; font-size: 0.82rem; color: rgba(255,255,255,0.6); margin-bottom: 16px; }
.breadcrumb a { color: #7fd6cb; }
.breadcrumb svg { width: 12px; height: 12px; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.78); max-width: 640px; font-size: 1.06rem; margin-bottom: 0; }

/* ------- tabs / chips ------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.chip {
  border: 1px solid var(--line); background: var(--surface);
  border-radius: 999px; padding: 9px 18px; font-weight: 600; font-size: 0.88rem;
  color: var(--ink-soft); cursor: pointer; transition: 0.2s; font-family: inherit;
}
.chip:hover { border-color: var(--blue); color: var(--blue); }
.chip.active { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ------- cards ------- */
.service-card { padding: 30px 26px; display: flex; flex-direction: column; }
.service-icon {
  width: 54px; height: 54px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(21,95,156,0.12), rgba(15,157,140,0.14));
  color: var(--blue);
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { font-size: 1.12rem; }
.service-card p { font-size: 0.94rem; }
.service-card .card-link { margin-top: auto; font-weight: 700; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 6px; color: var(--blue); }
.service-card .card-link svg { width: 14px; height: 14px; transition: transform 0.2s; }
.service-card:hover .card-link svg { transform: translateX(4px); }

/* ------- featured solution cards ------- */
a.featured-card { display: flex; flex-direction: column; overflow: hidden; text-decoration: none; color: inherit; }
a.featured-card > img { display: block; width: 100%; height: 170px; object-fit: cover; border-bottom: 1px solid var(--line); }
a.featured-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
a.featured-card:hover > img { border-bottom-color: transparent; }
.featured-card-body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.featured-card-body h3 { font-size: 1.18rem; margin-bottom: 8px; }
.featured-card-body p { font-size: 0.94rem; margin-bottom: 18px; }
.featured-card .card-link { margin-top: auto; font-weight: 700; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 6px; color: var(--blue); }
.featured-card .card-link svg { width: 14px; height: 14px; transition: transform 0.2s; }
a.featured-card:hover .card-link svg { transform: translateX(4px); }

.sector-card { padding: 30px 26px; position: relative; overflow: hidden; }
.sector-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--blue), var(--teal)); opacity: 0; transition: opacity 0.22s; }
.sector-card:hover::before { opacity: 1; }
.sector-card .sc-icon { width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center; background: rgba(21,95,156,0.09); color: var(--blue); margin-bottom: 18px; }
.sector-card .sc-icon svg { width: 24px; height: 24px; }
.sector-card h3 { font-size: 1.06rem; }
.sector-card p { font-size: 0.9rem; }
.sector-card .tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.sector-card .tag { font-size: 0.72rem; font-weight: 700; color: var(--teal-dark); background: rgba(15,157,140,0.1); padding: 4px 10px; border-radius: 99px; }

.step-card { text-align: center; padding: 34px 24px; position: relative; }
.step-num {
  width: 52px; height: 52px; margin: 0 auto 18px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--teal)); color: #fff;
  font-weight: 900; font-size: 1.2rem; display: grid; place-items: center;
  box-shadow: 0 8px 18px rgba(21,95,156,0.3);
}
.step-card h3 { font-size: 1.05rem; }
.step-card p { font-size: 0.9rem; margin-bottom: 0; }
.step-card::after {
  content: "→";
  position: absolute; top: 40px; right: -20px;
  color: var(--line); font-size: 1.4rem; z-index: 2;
}
.step-card:last-child::after { display: none; }

.project-card { overflow: hidden; display: flex; flex-direction: column; }
.project-card .pc-img { height: 210px; background: linear-gradient(140deg, #1d4e78, #0f8f7f); position: relative; overflow: hidden; }
.project-card .pc-img::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.09) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.09) 1px, transparent 1px); background-size: 26px 26px; }
.project-card .pc-img .biz { position: absolute; bottom: 14px; left: 18px; color: #fff; font-weight: 800; font-size: 1.3rem; letter-spacing: 0.02em; }
.project-card .pc-img .badge { position: absolute; top: 14px; right: 14px; background: rgba(255,255,255,0.16); backdrop-filter: blur(4px); color: #fff; font-size: 0.7rem; font-weight: 700; padding: 5px 12px; border-radius: 99px; letter-spacing: 0.08em; text-transform: uppercase; }
.project-card .pc-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.project-card .pc-body h3 { font-size: 1.1rem; }
.project-card .pc-body p { font-size: 0.92rem; flex: 1; }
.project-meta { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 18px; font-size: 0.8rem; color: var(--muted); }
.project-meta span { display: inline-flex; align-items: center; gap: 6px; }
.project-meta svg { width: 14px; height: 14px; color: var(--teal); }

.testimonial { padding: 30px 28px; }
.testimonial .stars { color: var(--amber); letter-spacing: 3px; margin-bottom: 14px; font-size: 0.95rem; }
.testimonial blockquote { margin: 0 0 20px; font-size: 0.98rem; color: var(--ink-soft); }
.testimonial .who { display: flex; align-items: center; gap: 12px; }
.testimonial .ava { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--teal)); color: #fff; display: grid; place-items: center; font-weight: 800; }
.testimonial .who b { display: block; font-size: 0.92rem; color: var(--navy); }
.testimonial .who span { font-size: 0.8rem; color: var(--muted); }

/* ------- value/feature list ------- */
.feature-item { display: flex; gap: 16px; margin-bottom: 22px; }
.feature-item .fi-icon { flex: none; width: 46px; height: 46px; border-radius: 12px; background: linear-gradient(135deg, rgba(21,95,156,0.1), rgba(15,157,140,0.12)); color: var(--blue); display: grid; place-items: center; }
.feature-item .fi-icon svg { width: 22px; height: 22px; }
.feature-item h4 { font-size: 1rem; margin-bottom: 4px; }
.feature-item p { font-size: 0.9rem; margin-bottom: 0; }

/* ------- stats band ------- */
.stats-band {
  background:
    radial-gradient(700px 300px at 15% 120%, rgba(15,157,140,0.35), transparent 60%),
    linear-gradient(135deg, var(--navy), #123c5e);
  color: #fff; padding: 64px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stats-grid b { display: block; font-size: clamp(1.9rem, 3.6vw, 2.7rem); color: #fff; line-height: 1.1; }
.stats-grid b em { font-style: normal; color: #57c9bc; }
.stats-grid span { font-size: 0.86rem; color: rgba(255,255,255,0.7); }

/* ------- CTA band ------- */
.cta-band { background: linear-gradient(120deg, var(--blue-dark), var(--teal-dark)); border-radius: var(--radius-lg); padding: 52px 54px; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.cta-band::after { content: ""; position: absolute; right: -60px; top: -60px; width: 220px; height: 220px; border-radius: 50%; background: rgba(255,255,255,0.08); }
.cta-band::before { content: ""; position: absolute; right: 20px; bottom: -80px; width: 160px; height: 160px; border-radius: 50%; background: rgba(255,255,255,0.05); }
.cta-band h2 { color: #fff; font-size: clamp(1.4rem, 2.6vw, 2rem); margin-bottom: 6px; position: relative; z-index: 1; }
.cta-band p { color: rgba(255,255,255,0.82); margin-bottom: 0; position: relative; z-index: 1; }
.cta-band .btn { position: relative; z-index: 1; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer { background: var(--navy-deep); color: #fff; margin-top: 0; }

.footer-brandbar { padding: 56px 0 30px; display: flex; justify-content: space-between; align-items: flex-start; gap: 32px; flex-wrap: wrap; }
.footer-brandinfo { max-width: 470px; }
.footer-brandinfo .fb-logo { display: inline-flex; align-items: center; gap: 11px; }
.footer-brandinfo p { font-size: 0.92rem; line-height: 1.7; margin: 18px 0 0; color: #fff; }

.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  transition: 0.2s;
}
.footer-social a:hover { background: linear-gradient(135deg, var(--blue), var(--teal)); transform: translateY(-3px); }
.footer-social svg { width: 17px; height: 17px; fill: #fff; }

.footer-top { padding: 40px 0 44px; display: grid; grid-template-columns: 1fr 1.4fr 1.4fr 1.5fr; gap: 40px; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 22px; position: relative; padding-bottom: 12px; }
.footer-col h4::after { content: ""; position: absolute; left: 0; bottom: 0; width: 30px; height: 2px; background: linear-gradient(90deg, var(--teal), transparent); border-radius: 2px; }
.footer-col-list { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 11px; }
.footer-col a { color: #fff; font-size: 0.93rem; }
.footer-col a:hover { color: #57c9bc; padding-left: 3px; }
.footer-sectors { display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px; }

.footer-links { border-top: 1px solid rgba(255,255,255,0.09); padding: 15px 0; }
.footer-links ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px 34px; }
.footer-links a { color: #fff; font-size: 0.86rem; }
.footer-links a:hover { color: #57c9bc; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.09); padding: 22px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 0.83rem; }
.footer-bottom a { color: #fff; }
.footer-bottom a:hover { color: #57c9bc; }

/* =========================================================
   Pages specific
   ========================================================= */

/* About timeline */
.timeline { position: relative; padding-left: 34px; }
.timeline::before { content: ""; position: absolute; left: 9px; top: 6px; bottom: 6px; width: 2px; background: linear-gradient(var(--blue), var(--teal)); border-radius: 2px; }
.tl-item { position: relative; padding-bottom: 34px; }
.tl-item::before { content: ""; position: absolute; left: -34px; top: 5px; width: 20px; height: 20px; border-radius: 50%; background: var(--surface); border: 4px solid var(--teal); box-shadow: 0 0 0 4px rgba(15,157,140,0.14); }
.tl-item .tl-year { display: inline-block; font-size: 0.75rem; font-weight: 800; color: var(--teal-dark); background: rgba(15,157,140,0.1); padding: 4px 12px; border-radius: 99px; margin-bottom: 8px; }
.tl-item h3 { font-size: 1.08rem; }
.tl-item p { font-size: 0.92rem; margin-bottom: 0; }

/* team */
.team-card { text-align: center; padding: 28px 20px; }
.team-ava { width: 92px; height: 92px; border-radius: 50%; margin: 0 auto 16px; display: grid; place-items: center; font-size: 1.7rem; font-weight: 900; color: #fff; }
.team-card h3 { font-size: 1.02rem; margin-bottom: 2px; }
.team-card .role { font-size: 0.8rem; color: var(--teal-dark); font-weight: 700; margin-bottom: 12px; }
.team-card p { font-size: 0.86rem; margin-bottom: 0; }
.team-ava.c1 { background: linear-gradient(135deg, #155f9c, #2a86c9); }
.team-ava.c2 { background: linear-gradient(135deg, #0f9d8c, #35c7a4); }
.team-ava.c3 { background: linear-gradient(135deg, #e9a13b, #f0b95f); }
.team-ava.c4 { background: linear-gradient(135deg, #8a5fd0, #b18ae6); }
.team-ava.c5 { background: linear-gradient(135deg, #d05f7b, #e68aa0); }
.team-ava.c6 { background: linear-gradient(135deg, #3b7dd8, #7fa8ec); }

/* value cards */
.value-card { padding: 30px 26px; }
.value-card .value-ico { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; background: rgba(21,95,156,0.09); color: var(--blue); margin-bottom: 16px; }
.value-card .value-ico svg { width: 24px; height: 24px; }
.value-card h3 { font-size: 1.05rem; }
.value-card p { font-size: 0.9rem; margin-bottom: 0; }

/* services detail rows */
.service-row { padding: 26px; }
.service-row .sr-head { display: flex; align-items: center; gap: 16px; margin-bottom: 14px; }
.service-row .sr-head h3 { margin-bottom: 0; }
.service-row .sr-tag { font-size: 0.72rem; font-weight: 800; color: var(--blue); background: rgba(21,95,156,0.09); padding: 4px 12px; border-radius: 99px; }
.service-row ul.deliver { margin-top: 16px; }
.service-row ul.deliver li { position: relative; padding-left: 24px; margin-bottom: 9px; font-size: 0.9rem; color: var(--ink-soft); }
.service-row ul.deliver li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--teal-dark); font-weight: 900; }

/* sectors page */
.sector-big { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 44px; padding: 30px; align-items: center; }
.sector-big:nth-child(even) { direction: rtl; }
.sector-big > * { direction: ltr; }
.sector-big .sb-ico { width: 64px; height: 64px; border-radius: 18px; display: grid; place-items: center; background: linear-gradient(135deg, rgba(21,95,156,0.12), rgba(15,157,140,0.14)); color: var(--blue); margin-bottom: 16px; }
.sector-big .sb-ico svg { width: 30px; height: 30px; }
.sector-big h3 { font-size: 1.3rem; }
.sector-big p { font-size: 0.95rem; }

/* contact */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 40px; align-items: start; }
.contact-card { padding: 30px; }
.contact-card h3 { font-size: 1.25rem; margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 0.82rem; font-weight: 700; color: var(--navy); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; border: 1px solid var(--line); background: var(--bg);
  border-radius: 10px; padding: 12px 14px; font-family: inherit; font-size: 0.94rem; color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); background: #fff;
  box-shadow: 0 0 0 4px rgba(21,95,156,0.12);
}
.field textarea { resize: vertical; min-height: 130px; }

.info-card { display: flex; gap: 16px; align-items: flex-start; padding: 20px; margin-bottom: 16px; }
.info-card .ic-ico { flex: none; width: 46px; height: 46px; border-radius: 12px; background: linear-gradient(135deg, rgba(21,95,156,0.1), rgba(15,157,140,0.12)); color: var(--blue); display: grid; place-items: center; }
.info-card .ic-ico svg { width: 21px; height: 21px; }
.info-card h4 { font-size: 0.98rem; margin-bottom: 3px; }
.info-card p { font-size: 0.9rem; margin-bottom: 0; }

.office-hours { background: var(--bg-alt); border: 1px dashed var(--line); border-radius: var(--radius); padding: 24px; }
.office-hours h4 { font-size: 0.95rem; margin-bottom: 12px; }
.office-hours li { display: flex; justify-content: space-between; font-size: 0.88rem; padding: 7px 0; border-bottom: 1px dashed var(--line); }
.office-hours li:last-child { border-bottom: 0; }
.office-hours b { color: var(--navy); }

.map-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); height: 320px; background: var(--bg-alt); display: grid; place-items: center; color: var(--muted); }

/* FAQ */
.faq-item { margin-bottom: 12px; overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 18px 20px; font-family: inherit; font-size: 0.98rem; font-weight: 700; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 14px; transition: 0.2s; }
.faq-q:hover { border-color: var(--blue); }
.faq-q svg { width: 16px; height: 16px; flex: none; color: var(--teal); transition: transform 0.25s; }
.faq-item.open .faq-q { border-color: var(--teal); }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a p { padding: 6px 20px 20px; font-size: 0.92rem; margin: 0; }

/* =========================================================
   Reveal animation
   ========================================================= */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-col-sectors { grid-column: 1 / -1; }
  .footer-sectors { grid-template-columns: 1fr 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; padding: 70px 0; }
  .hero-visual { max-width: 520px; }
  .grid-2 { grid-template-columns: 1fr; gap: 36px; }
  .sector-big { grid-template-columns: 1fr; }
  .sector-big:nth-child(even) { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .main-nav {
    position: fixed; inset: 0 0 0 auto; width: 300px;
    background: var(--surface); box-shadow: -20px 0 60px rgba(0,0,0,0.18);
    transform: translateX(100%); transition: transform 0.3s ease;
    padding: 90px 26px 30px; z-index: 999;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 6px; }
  .main-nav a { display: block; padding: 13px 16px; border-radius: 10px; }
  .has-dropdown { position: static; }
  .has-dropdown::before { display: none; }
  .has-dropdown > .drop-link { width: 100%; justify-content: space-between; }
  .dropdown {
    position: static; transform: none; min-width: 0;
    background: transparent; border: none; box-shadow: none;
    padding: 2px 0 8px 16px; display: none;
    opacity: 1; visibility: visible;
    transition: none;
  }
  .has-dropdown:hover .dropdown { opacity: 1; visibility: visible; }
  .has-dropdown.open .dropdown { display: block; }
  .main-nav .dropdown li { margin: 0; }
  .main-nav .dropdown a { padding: 11px 14px; color: var(--ink-soft); white-space: normal; }
  .main-nav .dropdown a::before { opacity: 1; }
  .main-nav .dropdown.mega-menu { display: none; grid-template-columns: none; gap: 0; padding: 0; width: 100%; max-width: none; min-height: 0; }
  .main-nav .dropdown.mega-menu::before { display: none; }
  .main-nav .has-dropdown.open .dropdown.mega-menu { display: block; }
  .main-nav .dropdown.mega-menu .mega-col { margin-bottom: 20px; }
  .main-nav .dropdown.mega-menu .mega-col:last-child { margin-bottom: 0; }
  .main-nav .dropdown.mega-menu .mega-col-title { margin-bottom: 4px; }
  .main-nav .dropdown.mega-menu .mega-list a { min-height: 0; padding: 11px 14px; font-size: 0.9rem; }
  .main-nav .dropdown.mega-menu .mega-list a:hover { padding-left: 16px; }
  .nav-toggle { display: flex; }
  .header-cta .btn { display: none; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .step-card::after { display: none; }
  .logos-band .container { justify-content: center; text-align: center; }
  .topbar .container { justify-content: center; }
  .footer-top { grid-template-columns: 1fr; gap: 6px; }
  .footer-brandbar { padding: 44px 0 26px; }
  .footer-col { border-bottom: 1px solid rgba(255,255,255,0.08); padding: 6px 0; }
  .footer-col h4 { margin-bottom: 0; padding: 16px 0; cursor: pointer; user-select: none; padding-right: 30px; position: relative; }
  .footer-col h4::after { display: none; }
  .footer-col-title::before {
    content: "+"; position: absolute; right: 6px; top: 50%;
    transform: translateY(-50%); font-size: 1.25rem; font-weight: 400;
    color: #fff; line-height: 1; transition: transform 0.25s ease;
  }
  .footer-col.open .footer-col-title::before { transform: translateY(-50%) rotate(45deg); }
  .footer-col .footer-col-list { display: none; padding: 2px 0 18px; }
  .footer-col.open .footer-col-list { display: block; }
  .footer-sectors { grid-template-columns: 1fr 1fr; gap: 0 24px; }
  .footer-links ul { gap: 8px 22px; }
  .hero-float { display: none; }
}

@media (max-width: 480px) {
  .cta-band { padding: 36px 26px; }
  .stats-grid { grid-template-columns: 1fr; }
}

/* Force zero border radius everywhere */
* { border-radius: 0 !important; }

/* =========================================================
   Careers
   ========================================================= */

/* -------- Job list (careers page) -------- */
.job-count { font-size: 0.9rem; font-weight: 700; color: var(--teal-dark); margin: -6px 0 24px; }
.job-card { display: flex; flex-direction: column; padding: 26px; position: relative; overflow: hidden; text-decoration: none !important; }
.job-card:hover { text-decoration: none !important; }
.job-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--blue), var(--teal)); }
.jc-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 14px; }
.job-badge { display: inline-block; background: rgba(21,95,156,0.1); color: var(--blue-dark); font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; padding: 4px 10px; }
.job-badge.ghost { background: transparent; color: var(--ink-soft); border: 1px solid var(--line); }
.job-card h3 { font-size: 1.12rem; margin-bottom: 8px; }
.job-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.job-meta span { display: inline-flex; align-items: center; gap: 6px; font-size: 0.8rem; font-weight: 600; color: var(--ink-soft); background: var(--bg-alt); padding: 5px 10px; }
.job-meta svg { width: 13px; height: 13px; color: var(--teal); flex: none; }
.job-card p { flex: 1; margin-bottom: 18px; }
.jc-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; border-top: 1px solid var(--line); padding-top: 14px; }
.job-deadline { font-size: 0.76rem; font-weight: 600; color: var(--muted); }
.card-link { font-weight: 700; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 6px; color: var(--blue); }
.card-link svg { width: 14px; height: 14px; transition: transform 0.2s; }
.job-card:hover .card-link svg { transform: translateX(3px); }

/* -------- Job detail page -------- */
.job-layout { display: grid; grid-template-columns: 1fr 340px; gap: 26px; align-items: start; }
.job-main { display: grid; gap: 20px; }
.job-block { padding: 28px 30px; }
.job-block h2 { font-size: 1.15rem; margin-bottom: 14px; }
.bullet-list { list-style: none; padding: 0; margin: 0; }
.bullet-list li { position: relative; padding-left: 24px; margin-bottom: 10px; color: var(--ink-soft); font-size: 0.92rem; }
.bullet-list li::before { content: ""; position: absolute; left: 2px; top: 9px; width: 8px; height: 8px; transform: rotate(45deg); background: var(--teal); }
.skill-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { display: inline-block; font-size: 0.8rem; font-weight: 600; color: var(--blue-dark); background: rgba(21,95,156,0.08); padding: 5px 12px; }
.job-side { position: sticky; top: 100px; display: grid; gap: 20px; }
.job-apply-card { padding: 26px; }
.job-apply-card h3 { font-size: 1.1rem; margin-bottom: 14px; }
.job-facts { list-style: none; margin: 0 0 20px; padding: 0; }
.job-facts li { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; padding: 9px 0; border-bottom: 1px dashed var(--line); font-size: 0.86rem; }
.job-facts li:last-child { border-bottom: none; }
.job-facts span { color: var(--muted); }
.job-facts b { color: var(--navy); text-align: right; }
.job-note { font-size: 0.78rem; color: var(--muted); margin: 14px 0 0; text-align: center; }

/* -------- Apply page -------- */
.apply-layout { display: grid; grid-template-columns: 1fr 320px; gap: 26px; align-items: start; }
.apply-job-title { font-weight: 700; color: var(--blue); }
.apply-summary { position: sticky; top: 100px; }
.field-hint { display: block; font-size: 0.76rem; color: var(--muted); margin-top: 5px; }

/* form validation states */
.form-error { display: none; font-size: 0.78rem; font-weight: 600; color: #c0392b; margin-top: 6px; }
.field.invalid input,
.field.invalid select,
.field.invalid textarea { border-color: #c0392b; box-shadow: 0 0 0 4px rgba(192,57,43,0.1); }
.field.invalid .form-error { display: block; }

/* submit spinner */
.btn-spinner { display: inline-block; width: 14px; height: 14px; border: 2px solid rgba(255,255,255,0.35); border-top-color: #fff; border-radius: 50%; margin-right: 8px; vertical-align: -2px; animation: spin 0.7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* success / failure panels */
.apply-result { padding: 44px 30px; margin-bottom: 24px; text-align: center; }
.result-check { width: 62px; height: 62px; margin: 0 auto 18px; border-radius: 50%; background: rgba(15,157,140,0.14); color: var(--teal-dark); display: grid; place-items: center; }
.result-check svg { width: 30px; height: 30px; }
.apply-result.fail .result-check { background: rgba(192,57,43,0.12); color: #c0392b; }
.apply-result h3 { font-size: 1.35rem; margin-bottom: 10px; }
.apply-result p { max-width: 560px; margin: 0 auto 22px; }
.apply-result.fail { box-shadow: inset 4px 0 0 #c0392b; }

/* -------- HR admin / applications manager -------- */
.admin-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.admin-filters { margin: 4px 0 20px; }
.table-scroll { overflow-x: auto; margin-top: 20px; }
.apps-table { width: 100%; border-collapse: collapse; min-width: 1000px; font-size: 0.85rem; }
.apps-table th { text-align: left; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); padding: 10px 12px; border-bottom: 2px solid var(--line); white-space: nowrap; }
.apps-table td { padding: 12px; border-bottom: 1px solid var(--line); color: var(--ink-soft); vertical-align: top; }
.apps-table tr:hover td { background: var(--bg-alt); }
.apps-table b { color: var(--navy); }
.muted-cell { font-size: 0.78rem; color: var(--muted); }
.nowrap { white-space: nowrap; }
.resume-link { font-weight: 700; color: var(--blue); word-break: break-all; }
.status-select { font-size: 0.78rem; font-weight: 700; padding: 5px 8px; border: 1px solid var(--line); background: var(--surface); color: var(--navy); }
.status-new { border-left: 3px solid var(--blue); }
.status-under-review { border-left: 3px solid #e67e22; }
.status-shortlisted { border-left: 3px solid var(--teal); }
.status-interview { border-left: 3px solid #8e44ad; }
.status-selected { border-left: 3px solid #27ae60; }
.status-rejected { border-left: 3px solid #c0392b; }

/* -------- Careers responsive -------- */
@media (max-width: 980px) {
  .job-layout, .apply-layout { grid-template-columns: 1fr; }
  .job-side, .apply-summary { position: static; }
  .job-block { padding: 24px 22px; }
}
@media (max-width: 560px) {
  .jc-head { flex-direction: column; align-items: flex-start; }
  .job-card h3 { font-size: 1rem; }
  .job-facts li { flex-direction: column; align-items: flex-start; gap: 2px; }
  .job-facts b { text-align: left; }
  .admin-head { flex-direction: column; align-items: stretch; }
}

/* =========================================================
   Legal pages (Privacy Policy / Terms & Conditions)
   ========================================================= */
.legal-doc { max-width: 860px; }
.legal-doc .card { padding: 40px 44px; }
.legal-meta { font-size: 0.85rem; color: var(--muted); margin-bottom: 6px; }
.legal-doc h2 { font-size: 1.45rem; color: var(--navy); margin: 38px 0 10px; }
.legal-doc h2:first-of-type { margin-top: 0; }
.legal-doc p, .legal-doc li { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.75; }
.legal-doc ul { margin: 10px 0 0; padding-left: 22px; }
.legal-doc li { margin-bottom: 7px; }
.legal-doc a { color: var(--blue); font-weight: 600; }
.legal-doc a:hover { color: var(--teal-dark); }
@media (max-width: 640px) {
  .legal-doc .card { padding: 26px 22px; }
}
