/* ===================================================================
   CP Staffing — About Page
   Matches the site's premium enterprise design language
   =================================================================== */

:root {
  --black: #03050b;
  --navy: #071426;
  --navy2: #0b1f3c;
  --blue: #248cff;
  --cyan: #22e6ff;
  --purple: #8b5cff;
  --gold: #d6ac4f;
  --text: #ffffff;
  --muted: #b8c3d6;
  --line: rgba(255,255,255,.12);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--black);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
}

a { color: inherit; text-decoration: none; }

/* Keep the sticky header from covering section headings on scroll */
.about-hero,
.mission,
.pillars,
.why,
.services-overview,
.final-cta {
  scroll-margin-top: 130px;
}

/* ===================== HEADER ===================== */
.site-header {
  height: 112px;
  padding: 0 64px;
  display: flex;
  align-items: center;
  gap: 34px;
  background: rgba(3,5,11,.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}

.logo img { width: 300px; height: auto; display: block; }

.desktop-nav {
  display: flex;
  gap: 32px;
  margin-left: auto;
  font-size: 16px;
  color: var(--muted);
}

.desktop-nav a:hover,
.desktop-nav a.active { color: white; }

.desktop-nav a.active {
  border-bottom: 2px solid var(--gold);
  padding-bottom: 10px;
}

.top-cta {
  background: linear-gradient(135deg, #f2d27a, #c79632);
  color: #050505;
  padding: 18px 28px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 15px;
  transition: transform .25s ease, box-shadow .25s ease;
}

.top-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(214,172,79,.3);
}

.menu-btn {
  background: none;
  border: 0;
  cursor: pointer;
  display: none;
}

.menu-btn span {
  display: block;
  width: 30px;
  height: 2px;
  background: white;
  margin: 7px 0;
}

.mobile-menu {
  display: none;
  background: #050915;
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.mobile-menu a {
  display: block;
  padding: 14px;
  border-bottom: 1px solid var(--line);
}

.mobile-menu.open { display: block; }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 17px 28px;
  border-radius: 8px;
  font-weight: 900;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.btn.gold {
  background: linear-gradient(135deg, #f2d27a, #c79632);
  color: #050505;
  box-shadow: 0 10px 30px rgba(214,172,79,.22);
}

.btn.gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 42px rgba(214,172,79,.36);
}

.btn.outline {
  border-color: rgba(255,255,255,.35);
  color: white;
  background: rgba(255,255,255,.02);
}

.btn.outline:hover {
  transform: translateY(-2px);
  border-color: var(--blue);
  box-shadow: 0 14px 36px rgba(36,140,255,.24);
}

/* ===================== SHARED TYPOGRAPHY ===================== */
.eyebrow {
  color: #a9d4ff;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 900;
}

.eyebrow.center { text-align: center; }
.gold-text { color: var(--gold); }

.mission h2,
.pillars h2,
.why h2,
.services-overview h2,
.final-cta h2 {
  font-family: Georgia, serif;
  font-size: clamp(38px, 4vw, 64px);
  line-height: 1.05;
  margin: 14px 0 42px;
}

/* ===================== SECTION 1 — HERO ===================== */
.about-hero {
  min-height: 640px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 56px;
  padding: 110px 7%;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 78% 38%, rgba(36,140,255,.32), transparent 28%),
    radial-gradient(circle at 90% 60%, rgba(139,92,255,.18), transparent 25%),
    linear-gradient(135deg, #03050b 0%, #06152c 58%, #03050b 100%);
}

.about-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 88px 88px;
  opacity: .5;
  pointer-events: none;
}

.hero-copy { max-width: 720px; position: relative; z-index: 2; }

.about-hero h1 {
  font-size: clamp(46px, 5vw, 80px);
  line-height: 1.02;
  margin: 22px 0 26px;
  letter-spacing: -2px;
}

.about-hero h1 span,
.mission h2 span,
.final-cta h2 span {
  background: linear-gradient(90deg, #9ddaff, #9f72ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 22px;
  color: var(--muted);
  line-height: 1.55;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  margin-top: 38px;
  flex-wrap: wrap;
}

.hero-actions.center { justify-content: center; }

/* hero talent / technology network */
.hero-visual {
  position: relative;
  z-index: 2;
  min-height: 440px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.talent-network {
  position: relative;
  width: min(540px, 92%);
  aspect-ratio: 1 / .9;
  border-radius: 36px;
  background:
    radial-gradient(circle at 62% 24%, rgba(255,255,255,.85), transparent 4%),
    radial-gradient(circle at 52% 50%, rgba(36,140,255,.30), transparent 36%),
    radial-gradient(circle at 70% 60%, rgba(139,92,255,.22), transparent 32%);
  animation: floaty 10s ease-in-out infinite;
}

.talent-network:before {
  content: "";
  position: absolute;
  inset: 0;
  background: center / contain no-repeat
    url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20600%20500%22%3E%3Cg%20stroke%3D%22%236aa8ff%22%20stroke-width%3D%221%22%20stroke-opacity%3D%220.28%22%20fill%3D%22none%22%3E%3Cline%20x1%3D%22120%22%20y1%3D%2290%22%20x2%3D%22200%22%20y2%3D%22180%22%2F%3E%3Cline%20x1%3D%22200%22%20y1%3D%22180%22%20x2%3D%22300%22%20y2%3D%2270%22%2F%3E%3Cline%20x1%3D%22300%22%20y1%3D%2270%22%20x2%3D%22410%22%20y2%3D%22200%22%2F%3E%3Cline%20x1%3D%22410%22%20y1%3D%22200%22%20x2%3D%22470%22%20y2%3D%22110%22%2F%3E%3Cline%20x1%3D%22470%22%20y1%3D%22110%22%20x2%3D%22520%22%20y2%3D%22260%22%2F%3E%3Cline%20x1%3D%22520%22%20y1%3D%22260%22%20x2%3D%22200%22%20y2%3D%22330%22%2F%3E%3Cline%20x1%3D%22200%22%20y1%3D%22330%22%20x2%3D%22470%22%20y2%3D%22400%22%2F%3E%3Cline%20x1%3D%22470%22%20y1%3D%22400%22%20x2%3D%22400%22%20y2%3D%22330%22%2F%3E%3Cline%20x1%3D%22400%22%20y1%3D%22330%22%20x2%3D%22300%22%20y2%3D%22440%22%2F%3E%3Cline%20x1%3D%22300%22%20y1%3D%22440%22%20x2%3D%22130%22%20y2%3D%22400%22%2F%3E%3Cline%20x1%3D%22130%22%20y1%3D%22400%22%20x2%3D%2270%22%20y2%3D%22250%22%2F%3E%3Cline%20x1%3D%2270%22%20y1%3D%22250%22%20x2%3D%22120%22%20y2%3D%2290%22%2F%3E%3Cline%20x1%3D%22300%22%20y1%3D%22250%22%20x2%3D%22200%22%20y2%3D%22180%22%2F%3E%3Cline%20x1%3D%22300%22%20y1%3D%22250%22%20x2%3D%22410%22%20y2%3D%22200%22%2F%3E%3Cline%20x1%3D%22300%22%20y1%3D%22250%22%20x2%3D%22200%22%20y2%3D%22330%22%2F%3E%3Cline%20x1%3D%22300%22%20y1%3D%22250%22%20x2%3D%22400%22%20y2%3D%22330%22%2F%3E%3Cline%20x1%3D%22300%22%20y1%3D%22250%22%20x2%3D%22300%22%20y2%3D%2270%22%2F%3E%3Cline%20x1%3D%22300%22%20y1%3D%22250%22%20x2%3D%22300%22%20y2%3D%22440%22%2F%3E%3Cline%20x1%3D%22200%22%20y1%3D%22180%22%20x2%3D%22200%22%20y2%3D%22330%22%2F%3E%3Cline%20x1%3D%22410%22%20y1%3D%22200%22%20x2%3D%22400%22%20y2%3D%22330%22%2F%3E%3Cline%20x1%3D%22120%22%20y1%3D%2290%22%20x2%3D%22300%22%20y2%3D%2270%22%2F%3E%3Cline%20x1%3D%22470%22%20y1%3D%22110%22%20x2%3D%22300%22%20y2%3D%2270%22%2F%3E%3Cline%20x1%3D%22470%22%20y1%3D%22400%22%20x2%3D%22300%22%20y2%3D%22440%22%2F%3E%3Cline%20x1%3D%22130%22%20y1%3D%22400%22%20x2%3D%22300%22%20y2%3D%22440%22%2F%3E%3C%2Fg%3E%3Ccircle%20cx%3D%22300%22%20cy%3D%22250%22%20r%3D%2216%22%20fill%3D%22%234d9bff%22%20opacity%3D%220.18%22%2F%3E%3Ccircle%20cx%3D%22300%22%20cy%3D%22250%22%20r%3D%226.5%22%20fill%3D%22%234d9bff%22%20opacity%3D%220.55%22%2F%3E%3Ccircle%20cx%3D%22300%22%20cy%3D%22250%22%20r%3D%225%22%20fill%3D%22%23ffffff%22%2F%3E%3Ccircle%20cx%3D%22120%22%20cy%3D%2290%22%20r%3D%2210%22%20fill%3D%22%234d9bff%22%20opacity%3D%220.18%22%2F%3E%3Ccircle%20cx%3D%22120%22%20cy%3D%2290%22%20r%3D%224.5%22%20fill%3D%22%234d9bff%22%20opacity%3D%220.55%22%2F%3E%3Ccircle%20cx%3D%22120%22%20cy%3D%2290%22%20r%3D%223%22%20fill%3D%22%23ffffff%22%2F%3E%3Ccircle%20cx%3D%22300%22%20cy%3D%2270%22%20r%3D%2211%22%20fill%3D%22%239f72ff%22%20opacity%3D%220.18%22%2F%3E%3Ccircle%20cx%3D%22300%22%20cy%3D%2270%22%20r%3D%224.7%22%20fill%3D%22%239f72ff%22%20opacity%3D%220.55%22%2F%3E%3Ccircle%20cx%3D%22300%22%20cy%3D%2270%22%20r%3D%223.2%22%20fill%3D%22%23ffffff%22%2F%3E%3Ccircle%20cx%3D%22470%22%20cy%3D%22110%22%20r%3D%2210%22%20fill%3D%22%234d9bff%22%20opacity%3D%220.18%22%2F%3E%3Ccircle%20cx%3D%22470%22%20cy%3D%22110%22%20r%3D%224.5%22%20fill%3D%22%234d9bff%22%20opacity%3D%220.55%22%2F%3E%3Ccircle%20cx%3D%22470%22%20cy%3D%22110%22%20r%3D%223%22%20fill%3D%22%23ffffff%22%2F%3E%3Ccircle%20cx%3D%22520%22%20cy%3D%22260%22%20r%3D%2210%22%20fill%3D%22%239f72ff%22%20opacity%3D%220.18%22%2F%3E%3Ccircle%20cx%3D%22520%22%20cy%3D%22260%22%20r%3D%224.5%22%20fill%3D%22%239f72ff%22%20opacity%3D%220.55%22%2F%3E%3Ccircle%20cx%3D%22520%22%20cy%3D%22260%22%20r%3D%223%22%20fill%3D%22%23ffffff%22%2F%3E%3Ccircle%20cx%3D%22470%22%20cy%3D%22400%22%20r%3D%2210%22%20fill%3D%22%234d9bff%22%20opacity%3D%220.18%22%2F%3E%3Ccircle%20cx%3D%22470%22%20cy%3D%22400%22%20r%3D%224.5%22%20fill%3D%22%234d9bff%22%20opacity%3D%220.55%22%2F%3E%3Ccircle%20cx%3D%22470%22%20cy%3D%22400%22%20r%3D%223%22%20fill%3D%22%23ffffff%22%2F%3E%3Ccircle%20cx%3D%22300%22%20cy%3D%22440%22%20r%3D%2211%22%20fill%3D%22%23e7c46a%22%20opacity%3D%220.18%22%2F%3E%3Ccircle%20cx%3D%22300%22%20cy%3D%22440%22%20r%3D%224.7%22%20fill%3D%22%23e7c46a%22%20opacity%3D%220.55%22%2F%3E%3Ccircle%20cx%3D%22300%22%20cy%3D%22440%22%20r%3D%223.2%22%20fill%3D%22%23ffffff%22%2F%3E%3Ccircle%20cx%3D%22130%22%20cy%3D%22400%22%20r%3D%2210%22%20fill%3D%22%239f72ff%22%20opacity%3D%220.18%22%2F%3E%3Ccircle%20cx%3D%22130%22%20cy%3D%22400%22%20r%3D%224.5%22%20fill%3D%22%239f72ff%22%20opacity%3D%220.55%22%2F%3E%3Ccircle%20cx%3D%22130%22%20cy%3D%22400%22%20r%3D%223%22%20fill%3D%22%23ffffff%22%2F%3E%3Ccircle%20cx%3D%2270%22%20cy%3D%22250%22%20r%3D%2210%22%20fill%3D%22%234d9bff%22%20opacity%3D%220.18%22%2F%3E%3Ccircle%20cx%3D%2270%22%20cy%3D%22250%22%20r%3D%224.5%22%20fill%3D%22%234d9bff%22%20opacity%3D%220.55%22%2F%3E%3Ccircle%20cx%3D%2270%22%20cy%3D%22250%22%20r%3D%223%22%20fill%3D%22%23ffffff%22%2F%3E%3Ccircle%20cx%3D%22200%22%20cy%3D%22180%22%20r%3D%228%22%20fill%3D%22%23e7c46a%22%20opacity%3D%220.18%22%2F%3E%3Ccircle%20cx%3D%22200%22%20cy%3D%22180%22%20r%3D%223.9%22%20fill%3D%22%23e7c46a%22%20opacity%3D%220.55%22%2F%3E%3Ccircle%20cx%3D%22200%22%20cy%3D%22180%22%20r%3D%222.4%22%20fill%3D%22%23ffffff%22%2F%3E%3Ccircle%20cx%3D%22410%22%20cy%3D%22200%22%20r%3D%228%22%20fill%3D%22%239f72ff%22%20opacity%3D%220.18%22%2F%3E%3Ccircle%20cx%3D%22410%22%20cy%3D%22200%22%20r%3D%223.9%22%20fill%3D%22%239f72ff%22%20opacity%3D%220.55%22%2F%3E%3Ccircle%20cx%3D%22410%22%20cy%3D%22200%22%20r%3D%222.4%22%20fill%3D%22%23ffffff%22%2F%3E%3Ccircle%20cx%3D%22200%22%20cy%3D%22330%22%20r%3D%228%22%20fill%3D%22%234d9bff%22%20opacity%3D%220.18%22%2F%3E%3Ccircle%20cx%3D%22200%22%20cy%3D%22330%22%20r%3D%223.9%22%20fill%3D%22%234d9bff%22%20opacity%3D%220.55%22%2F%3E%3Ccircle%20cx%3D%22200%22%20cy%3D%22330%22%20r%3D%222.4%22%20fill%3D%22%23ffffff%22%2F%3E%3Ccircle%20cx%3D%22400%22%20cy%3D%22330%22%20r%3D%228%22%20fill%3D%22%23e7c46a%22%20opacity%3D%220.18%22%2F%3E%3Ccircle%20cx%3D%22400%22%20cy%3D%22330%22%20r%3D%223.9%22%20fill%3D%22%23e7c46a%22%20opacity%3D%220.55%22%2F%3E%3Ccircle%20cx%3D%22400%22%20cy%3D%22330%22%20r%3D%222.4%22%20fill%3D%22%23ffffff%22%2F%3E%3C%2Fsvg%3E");
  -webkit-mask-image: radial-gradient(ellipse at 55% 50%, black 0%, black 60%, transparent 84%);
          mask-image: radial-gradient(ellipse at 55% 50%, black 0%, black 60%, transparent 84%);
  opacity: .9;
  z-index: 1;
  transform-origin: 55% 50%;
  animation: netDrift 16s ease-in-out infinite alternate;
}

/* slow pulsing glow behind the network */
.talent-network:after {
  content: "";
  position: absolute;
  inset: 12%;
  z-index: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 52% 48%, rgba(36,140,255,.4), transparent 60%),
    radial-gradient(circle at 66% 60%, rgba(139,92,255,.3), transparent 60%);
  filter: blur(26px);
  animation: glowPulse 7s ease-in-out infinite;
  pointer-events: none;
}

@keyframes floaty {
  0%, 100% { transform: translateY(-6px); }
  50% { transform: translateY(6px); }
}

/* subtle drift so nodes/connection lines feel alive */
@keyframes netDrift {
  0%   { transform: scale(1) translate(0, 0); }
  50%  { transform: scale(1.025) translate(0.8%, -0.8%); }
  100% { transform: scale(1.01) translate(-0.8%, 0.6%); }
}

/* slow breathing glow */
@keyframes glowPulse {
  0%, 100% { opacity: .55; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.07); }
}

/* ===================== SECTION 2 — MISSION ===================== */
.mission {
  padding: 100px 7%;
  text-align: center;
  background: linear-gradient(180deg, #061426, #03050b);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.mission-inner { max-width: 860px; margin: 0 auto; }
.mission h2 { margin: 14px 0 28px; }
.mission p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 19px;
  max-width: 760px;
  margin: 0 auto 18px;
}

/* ===================== SECTIONS 3 & 4 — CARD GRIDS ===================== */
.pillars,
.why {
  position: relative;
  overflow: hidden;
  padding: 110px 7% 90px;
  text-align: center;
}

.pillars {
  background:
    radial-gradient(760px 480px at 16% 16%, rgba(36,140,255,.10), transparent 60%),
    linear-gradient(180deg, #03050b, #05101f);
}

.why {
  background:
    radial-gradient(760px 520px at 84% 84%, rgba(139,92,255,.12), transparent 60%),
    linear-gradient(135deg, #03050b, #071b35);
}

.pillars:before,
.why:before {
  content: "";
  position: absolute;
  inset: -8%;
  z-index: 0;
  background: center / cover no-repeat
    url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20600%20400%22%3E%3Cg%20stroke%3D%22%236aa8ff%22%20stroke-width%3D%221%22%20stroke-opacity%3D%220.12%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M40%2080%20L160%2040%20L300%20110%20L430%2060%20L560%20120%20M160%2040%20L150%20200%20M300%20110%20L260%20250%20L430%2060%20M260%20250%20L120%20320%20M430%2060%20L520%20230%20L560%20120%20M520%20230%20L400%20350%20M150%20200%20L40%2080%20M150%20200%20L260%20250%20M120%20320%20L260%20250%20M400%20350%20L520%20230%20M40%2080%20L120%20320%22%2F%3E%3C%2Fg%3E%3Ccircle%20cx%3D%2240%22%20cy%3D%2280%22%20r%3D%222.6%22%20fill%3D%22%239cc2ff%22%20fill-opacity%3D%220.35%22%2F%3E%3Ccircle%20cx%3D%22160%22%20cy%3D%2240%22%20r%3D%223%22%20fill%3D%22%239cc2ff%22%20fill-opacity%3D%220.35%22%2F%3E%3Ccircle%20cx%3D%22300%22%20cy%3D%22110%22%20r%3D%223.2%22%20fill%3D%22%239cc2ff%22%20fill-opacity%3D%220.35%22%2F%3E%3Ccircle%20cx%3D%22560%22%20cy%3D%22120%22%20r%3D%222.4%22%20fill%3D%22%239cc2ff%22%20fill-opacity%3D%220.35%22%2F%3E%3Ccircle%20cx%3D%22150%22%20cy%3D%22200%22%20r%3D%223%22%20fill%3D%22%239cc2ff%22%20fill-opacity%3D%220.35%22%2F%3E%3Ccircle%20cx%3D%22520%22%20cy%3D%22230%22%20r%3D%222.6%22%20fill%3D%22%239cc2ff%22%20fill-opacity%3D%220.35%22%2F%3E%3Ccircle%20cx%3D%22120%22%20cy%3D%22320%22%20r%3D%222.4%22%20fill%3D%22%239cc2ff%22%20fill-opacity%3D%220.35%22%2F%3E%3Ccircle%20cx%3D%22400%22%20cy%3D%22350%22%20r%3D%222.4%22%20fill%3D%22%239cc2ff%22%20fill-opacity%3D%220.35%22%2F%3E%3Ccircle%20cx%3D%22430%22%20cy%3D%2260%22%20r%3D%223%22%20fill%3D%22%23b6abff%22%20fill-opacity%3D%220.4%22%2F%3E%3Ccircle%20cx%3D%22260%22%20cy%3D%22250%22%20r%3D%223.4%22%20fill%3D%22%23e7c46a%22%20fill-opacity%3D%220.4%22%2F%3E%3C%2Fsvg%3E");
  opacity: .45;
  -webkit-mask-image: radial-gradient(120% 100% at 50% 50%, #000 26%, transparent 80%);
          mask-image: radial-gradient(120% 100% at 50% 50%, #000 26%, transparent 80%);
  pointer-events: none;
}

.pillars > *,
.why > * { position: relative; z-index: 1; }

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1240px;
  margin: 0 auto;
  text-align: left;
}

/* Glassmorphism cards */
.feature-card {
  min-height: 220px;
  padding: 32px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(36,140,255,.7);
  box-shadow: 0 26px 70px rgba(36,140,255,.16), 0 0 30px -8px rgba(36,140,255,.5);
}

.feature-card h3 {
  font-size: 22px;
  margin: 0 0 14px;
}

.feature-card p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* ===================== SHARED PILL ===================== */
.pill {
  display: inline-flex;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(36,140,255,.15);
  color: #9ddaff;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 900;
  margin: 0 0 18px;
}

.pill.purple {
  background: rgba(139,92,255,.16);
  color: #c3b0ff;
}

/* ===================== SECTION 5 — SERVICES OVERVIEW ===================== */
.services-overview {
  position: relative;
  overflow: hidden;
  padding: 110px 7% 90px;
  text-align: center;
  background:
    radial-gradient(720px 480px at 14% 18%, rgba(36,140,255,.10), transparent 60%),
    radial-gradient(720px 520px at 88% 86%, rgba(139,92,255,.10), transparent 60%),
    #05070c;
  border-top: 1px solid var(--line);
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  max-width: 1080px;
  margin: 0 auto;
  text-align: left;
}

/* Glassmorphism cards */
.overview-card {
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.overview-card:hover {
  transform: translateY(-8px);
  border-color: rgba(36,140,255,.6);
  box-shadow: 0 26px 70px rgba(36,140,255,.16), 0 0 34px -8px rgba(36,140,255,.5);
}

.overview-card ul {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 14px;
}

.overview-card li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
  font-size: 16px;
}

.overview-card li:before {
  content: "";
  position: absolute;
  left: 0;
  top: .5em;
  width: 12px;
  height: 7px;
  border-left: 2px solid #9ddaff;
  border-bottom: 2px solid #9ddaff;
  transform: rotate(-45deg);
}

/* ===================== SECTION 6 — FINAL CTA ===================== */
.final-cta {
  position: relative;
  overflow: hidden;
  padding: 120px 7%;
  text-align: center;
  background:
    radial-gradient(circle at 50% 30%, rgba(36,140,255,.22), transparent 32%),
    linear-gradient(135deg, #03050b, #071b35);
}

.final-cta-inner { max-width: 820px; margin: 0 auto; position: relative; z-index: 2; }
.final-cta h2 { margin: 14px 0 22px; }
.final-cta p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
  max-width: 620px;
  margin: 0 auto 36px;
}

/* ===================== FOOTER ===================== */
.site-footer {
  padding: 55px 7%;
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 36px;
  background: #020306;
  border-top: 1px solid var(--line);
}

.footer-brand img { width: 260px; }

.site-footer p,
.site-footer a {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.site-footer h4 {
  color: var(--gold);
  text-transform: uppercase;
  font-size: 13px;
}

.site-footer a {
  display: block;
  margin: 10px 0;
  transition: color .2s ease, padding-left .2s ease;
}

.site-footer a:hover { color: #9ddaff; padding-left: 4px; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1000px) {
  .desktop-nav,
  .top-cta { display: none; }

  .menu-btn {
    display: block;
    margin-left: auto;
  }

  .site-header {
    height: 96px;
    padding: 0 28px;
    justify-content: space-between;
  }

  .logo img { width: 230px; }

  .about-hero,
  .mission,
  .pillars,
  .why,
  .services-overview,
  .final-cta {
    scroll-margin-top: 100px;
  }

  .about-hero {
    grid-template-columns: 1fr;
    padding: 56px 7% 70px;
    min-height: auto;
  }

  .hero-copy { order: 1; }
  .hero-visual { order: 2; min-height: 320px; margin-top: 24px; }
  .talent-network { width: min(420px, 90%); }

  .grid-4,
  .overview-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .pillars,
  .why,
  .services-overview {
    padding: 80px 7%;
  }

  .hero-actions { flex-direction: column; }
  .hero-actions.center { align-items: stretch; }
}

@media (max-width: 640px) {
  .grid-4 { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .talent-network,
  .talent-network:before,
  .talent-network:after {
    animation: none;
  }
}
