﻿/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   XUNARIS â€” inner.css
   Shared styles for all inner pages (not homepage)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€ PAGE HERO â”€â”€ */
.page-hero {
  padding: 160px 0 100px;
  background: var(--c-bg);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--c-border);
  background-size: cover;
  background-position: center top;
}
/* Per-page background images */
.page-hero.hero-about {
  /* Dark office with city lights â€” professional, human */
  background-image: linear-gradient(135deg, rgba(4,13,26,.88) 0%, rgba(26,95,150,.28) 100%),
    url('../images/heroes/hero-about.jpg');
}
.page-hero.hero-services {
  /* Data centre corridor â€” dark, tech, dramatic */
  background-image: linear-gradient(135deg, rgba(4,13,26,.85) 0%, rgba(26,95,150,.25) 100%),
    url('../images/heroes/hero-services.jpg');
}
.page-hero.hero-contact {
  /* Person working late with city backdrop â€” approachable, real */
  background-image: linear-gradient(135deg, rgba(4,13,26,.88) 0%, rgba(10,37,64,.22) 100%),
    url('../images/heroes/hero-contact.jpg');
}
.page-hero.hero-insights {
  /* Strategy session â€” results-focused energy */
  background-image: linear-gradient(135deg, rgba(4,13,26,.88) 0%, rgba(26,95,150,.22) 100%),
    url('../images/heroes/hero-insights.jpg');
}
.page-hero.hero-service-detail {
  /* Circuit board close-up â€” dark, deep tech */
  background-image: linear-gradient(135deg, rgba(4,13,26,.85) 0%, rgba(26,95,150,.28) 100%),
    url('../images/heroes/hero-tech.jpg');
}
.page-hero.hero-industry {
  /* Clean solid dark blue background */
  background: var(--c-bg);
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(26,95,150,.25) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.page-hero-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--c-white);
  margin-bottom: 20px;
}
.page-hero-title em {
  font-style: normal;
  color: var(--c-cyan);
}
.page-hero-desc {
  font-size: 18px;
  color: var(--c-muted);
  line-height: 1.8;
  max-width: 560px;
}

/* â”€â”€ INNER SECTIONS â”€â”€ */
.inner-section {
  padding: 100px 0;
  border-top: 1px solid var(--c-border);
}
.inner-section.bg-alt {
  background: var(--c-bg-2);
}
.inner-section:first-of-type { border-top: none; }

/* â”€â”€ COMMON TEXT â”€â”€ */
.body-text {
  font-size: 16px;
  color: var(--c-muted);
  line-height: 1.85;
  margin-bottom: 20px;
}
.body-text:last-of-type { margin-bottom: 0; }

/* â”€â”€ ABOUT PAGE â”€â”€ */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img {
  width: 100%;
  height: 520px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--c-border);
  object-fit: cover;
}
.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px solid var(--c-border);
}
.about-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 700;
  color: var(--c-cyan);
  line-height: 1;
  margin-bottom: 6px;
}
.about-stat span {
  font-size: 13px;
  color: var(--c-muted);
  font-weight: 500;
}

/* Vision / Mission */
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 56px;
}
.vm-card {
  background: var(--c-bg-3);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  transition: border-color var(--t);
}
.vm-card:hover { border-color: rgba(0,210,255,.3); }
.vm-icon {
  color: var(--c-cyan);
  margin-bottom: 20px;
}
.vm-card h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 14px;
  letter-spacing: .02em;
  line-height: 1.3;
}
.vm-card p {
  font-size: 15px;
  color: var(--c-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}
.vm-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.vm-list li {
  font-size: 14px;
  color: var(--c-muted);
  padding-left: 18px;
  position: relative;
}
.vm-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-cyan);
}

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.value-card {
  background: var(--c-bg-3);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  transition: border-color var(--t), transform var(--t);
}
.value-card:hover {
  border-color: rgba(0,210,255,.3);
  transform: translateY(-4px);
}
.value-num {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.15);
  letter-spacing: .1em;
  margin-bottom: 20px;
}
.value-card h3 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 12px;
  line-height: 1.3;
  letter-spacing: .02em;
}
.value-card p {
  font-size: 14px;
  color: var(--c-muted);
  line-height: 1.75;
}

/* â”€â”€ CONTACT PAGE â”€â”€ */
.contact-section {
  padding: 100px 0 120px;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-form-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 36px;
  letter-spacing: .03em;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--c-bg-3);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--c-white);
  outline: none;
  transition: border-color var(--t);
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--c-muted); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--c-cyan); }
.form-group select option { background: var(--c-bg-3); }
.form-group textarea { resize: vertical; min-height: 130px; }

.contact-info { display: flex; flex-direction: column; gap: 0; padding-top: 72px; }
.contact-info-block {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--c-border);
}
.contact-info-block:first-child { padding-top: 0; }
.contact-info-block:last-of-type { border-bottom: none; }
.ci-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: rgba(0,210,255,.08);
  border: 1px solid rgba(0,210,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-cyan);
  flex-shrink: 0;
}
.ci-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 4px;
}
.ci-value {
  font-size: 16px;
  font-weight: 500;
  color: var(--c-white);
}
.contact-promise {
  margin-top: 36px;
  padding: 28px;
  background: var(--c-bg-3);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xl);
}
.contact-promise h3 {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--c-white);
  letter-spacing: .06em;
  margin-bottom: 16px;
}
.contact-promise ol {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  counter-reset: steps;
}
.contact-promise ol li {
  counter-increment: steps;
  font-size: 14px;
  color: var(--c-muted);
  padding-left: 28px;
  position: relative;
}
.contact-promise ol li::before {
  content: counter(steps);
  position: absolute;
  left: 0;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  color: var(--c-cyan);
}

/* â”€â”€ SERVICES WHY GRID â”€â”€ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.why-item {
  background: var(--c-bg-3);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  transition: border-color var(--t), transform var(--t);
}
.why-item:hover {
  border-color: rgba(0,210,255,.3);
  transform: translateY(-4px);
}
.why-item-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: rgba(0,210,255,.08);
  border: 1px solid rgba(0,210,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-cyan);
  margin-bottom: 20px;
}
.why-item h4 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 10px;
  letter-spacing: .02em;
}
.why-item p {
  font-size: 14px;
  color: var(--c-muted);
  line-height: 1.75;
}

/* â”€â”€ SERVICE DETAIL â”€â”€ */
.service-detail-hero { padding: 160px 0 80px; border-bottom: 1px solid var(--c-border); position: relative; overflow: hidden; }
.service-detail-hero::before { content:''; position:absolute; top:-80px; right:-100px; width:500px; height:500px; border-radius:50%; background:radial-gradient(circle, rgba(26,95,150,.3) 0%, transparent 65%); pointer-events:none; }
.service-breadcrumb { display:flex; align-items:center; gap:10px; font-size:12px; color:var(--c-muted); margin-bottom:24px; }
.service-breadcrumb a { color:var(--c-muted); transition:color var(--t); }
.service-breadcrumb a:hover { color:var(--c-cyan); }
.service-breadcrumb span { color:rgba(255,255,255,.2); }

.service-content-grid { display:grid; grid-template-columns:1fr 380px; gap:80px; align-items:start; }
.service-main-content { padding:80px 0; }
.service-main-content h2 {
  font-family:var(--font-head);
  font-size:clamp(20px,2.6vw,26px);
  font-weight:700;
  color:var(--c-white);
  margin:0 0 16px;
  letter-spacing:.02em;
  line-height:1.25;
  padding-left:16px;
  border-left:3px solid var(--c-cyan);
}
.service-main-content h2 em { font-style:normal; color:var(--c-cyan); }
.service-main-content p { font-size:16px; color:var(--c-muted); line-height:1.85; margin-bottom:20px; }

/* Visual separator between each content block */
.service-main-content > div + div {
  margin-top:40px;
  padding-top:36px;
  border-top:1px solid var(--c-border);
}

/* Bullet list */
.service-bullet-list { list-style:none; display:flex; flex-direction:column; gap:14px; margin:24px 0; }
.service-bullet-list li { font-size:15px; color:var(--c-text); padding-left:22px; position:relative; line-height:1.7; }
.service-bullet-list li::before { content:''; position:absolute; left:0; top:9px; width:7px; height:7px; border-radius:50%; background:var(--c-cyan); box-shadow:0 0 6px rgba(0,210,255,.5); }

.service-sidebar { padding:80px 0; position:sticky; top:100px; }
.service-sidebar-card {
  background: linear-gradient(135deg, rgba(10, 17, 88, 0.9) 0%, rgba(15, 30, 100, 0.7) 100%);
  border: 1.5px solid rgba(0, 180, 216, 0.25);
  border-radius: 20px;
  padding: 40px 32px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
.service-sidebar-card h4 {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--c-white);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0.95;
}
.service-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.service-tag-item {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-cyan);
  padding: 10px 18px;
  border: 1.5px solid var(--c-cyan);
  border-radius: 20px;
  background: rgba(0, 180, 216, 0.08);
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
}
.service-tag-item:hover {
  background: rgba(0, 180, 216, 0.15);
  box-shadow: 0 4px 16px rgba(0, 180, 216, 0.2);
  transform: translateY(-2px);
}
.service-tag-item a {
  color: inherit;
  text-decoration: none;
}

/* â”€â”€ INSIGHTS PAGE â”€â”€ */
.insights-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.insight-card { background:var(--c-bg-3); border:1px solid var(--c-border); border-radius:var(--radius-xl); overflow:hidden; transition:transform var(--t), border-color var(--t); }
.insight-card:hover { transform:translateY(-6px); border-color:rgba(0,210,255,.3); }
.insight-img { position:relative; height:220px; overflow:hidden; }
.insight-img img { width:100%; height:100%; object-fit:cover; transition:transform .6s var(--ease); }
.insight-card:hover .insight-img img { transform:scale(1.06); }
.insight-tag { position:absolute; top:14px; left:14px; font-size:10px; font-weight:700; letter-spacing:.15em; text-transform:uppercase; color:var(--c-orange); background:rgba(0,0,0,.65); backdrop-filter:blur(6px); border:1px solid rgba(255,255,255,.3); padding:4px 10px; border-radius:100px; }
.insight-body { padding:28px; }
.insight-title { font-family:var(--font-head); font-size:16px; font-weight:700; color:var(--c-white); line-height:1.35; margin-bottom:12px; letter-spacing:.01em; }
.insight-desc { font-size:14px; color:var(--c-muted); line-height:1.75; margin-bottom:20px; }
.insight-results { display:flex; flex-direction:column; gap:6px; }
.insight-results span { font-size:13px; color:rgba(0,210,255,.85); font-weight:500; }
.insight-link { display:inline-flex; align-items:center; gap:6px; font-size:13.5px; font-weight:600; color:var(--c-cyan); transition:gap var(--t), opacity var(--t); }
.insight-link:hover { gap:10px; opacity:.8; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CHALLENGE CARDS (Industry pages)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.challenges-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--c-border);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-top: 48px;
}
.challenge-card {
  background: var(--c-bg-3);
  padding: 40px 44px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
}
.challenge-card:hover { background: rgba(0,210,255,0.04); }
/* Cyan left-bar on hover */
.challenge-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--c-cyan);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
}
.challenge-card:hover::before { transform: scaleY(1); }
/* Number marker */
.challenge-card::after {
  content: attr(data-num);
  position: absolute;
  top: 32px; right: 36px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  color: rgba(0,210,255,0.2);
  letter-spacing: .1em;
}
.challenge-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 14px;
  line-height: 1.3;
  letter-spacing: .01em;
}
.challenge-card p {
  font-size: 14.5px;
  color: rgba(255,255,255,0.48);
  line-height: 1.8;
  margin: 0;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ENGAGEMENT CARDS (approach / why sections on service pages)
══════════════════════════════════════ */
.engagement-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.engagement-card {
  background: var(--c-bg-3);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--t), transform var(--t);
}
.engagement-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-cyan), var(--c-blue));
  opacity: 0;
  transition: opacity var(--t);
}
.engagement-card:hover {
  border-color: rgba(0,210,255,.3);
  transform: translateY(-4px);
}
.engagement-card:hover::before { opacity: 1; }
.engagement-card h3 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 12px;
  letter-spacing: .02em;
  line-height: 1.3;
}
.engagement-card p {
  font-size: 14.5px;
  color: var(--c-muted);
  line-height: 1.8;
  margin: 0;
}

/* ══════════════════════════════════════
   OUTCOME CARDS (Service pages)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--c-border);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-top: 48px;
}
.outcome-card {
  background: var(--c-bg-3);
  padding: 48px 28px 40px;
  text-align: center;
  transition: background 0.3s ease;
  position: relative;
}
.outcome-card:hover { background: rgba(0,210,255,0.05); }
/* Cyan top-bar on hover */
.outcome-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--c-cyan), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.outcome-card:hover::before { transform: scaleX(1); }
.outcome-number {
  font-family: var(--font-head);
  font-size: clamp(34px, 3.5vw, 52px);
  font-weight: 700;
  color: var(--c-cyan);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}
.outcome-card p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin: 0;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   INNER CTA CONTENT (alias for cta-inner)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.inner-cta-content {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.inner-cta-content .section-tag {
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}
.inner-cta-content .section-title { margin-bottom: 20px; }
.inner-cta-content .body-text {
  color: rgba(255,255,255,0.55);
  margin-bottom: 36px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   MID-SECTION IMAGE BANDS
   Adds visual variety between content sections
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.section-image-band {
  position: relative;
  padding: 100px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* CSS-only parallax */
  overflow: hidden;
}
/* iOS Safari does not support background-attachment:fixed — fall back to scroll */
@supports (-webkit-touch-callout: none) {
  .section-image-band { background-attachment: scroll; }
}
.section-image-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(4,13,26,0.88) 0%,
    rgba(26,95,150,0.3) 50%,
    rgba(4,13,26,0.92) 100%
  );
  z-index: 0;
}
.section-image-band > .container { position: relative; z-index: 1; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   BG-ALT ENHANCEMENT
   Industry & service pages get
   a subtle glow instead of flat dark
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.bg-alt {
  background-image:
    radial-gradient(ellipse at 15% 50%, rgba(0,210,255,0.04) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 50%, rgba(26,95,150,0.07) 0%, transparent 55%);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SPACING FIXES
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
/* Remove double-gap: when heading sits above service-content-grid,
   the 80px top padding stacks on top of 56px section-title margin */
.service-main-content { padding: 0 0 60px; }
.service-sidebar      { padding: 0; top: 100px; }

/* Inner page section titles â€” tighter bottom margin */
.inner-section .section-title { margin-bottom: 40px; }

/* â”€â”€ INNER CTA â”€â”€ */
.inner-cta {
  padding: 100px 0;
  background: var(--c-bg-3);
  border-top: 1px solid var(--c-border);
  position: relative;
  overflow: hidden;
}
.inner-cta::before {
  content:'';
  position:absolute;
  top:-100px; left:50%;
  transform:translateX(-50%);
  width:600px; height:400px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(26,95,150,.2) 0%, transparent 65%);
  pointer-events:none;
}
.inner-cta .cta-inner { position:relative; z-index:1; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   APPROACH PAGE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.approach-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-top: 56px;
}
.approach-step {
  display: flex;
  gap: 0;
  background: var(--c-bg-3);
  transition: background 0.3s ease;
}
.approach-step:hover { background: rgba(0,210,255,0.04); }
.approach-step-num {
  font-family: var(--font-head);
  font-size: 52px;
  font-weight: 700;
  color: rgba(0,210,255,0.06);
  line-height: 1;
  padding: 36px 0 36px 28px;
  flex-shrink: 0;
  width: 80px;
  align-self: flex-start;
  margin-top: 32px;
}
.approach-step-body {
  padding: 36px 36px 36px 0;
  flex: 1;
}
.approach-step-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--c-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-cyan);
  margin-bottom: 20px;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.approach-step:hover .approach-step-icon {
  background: rgba(0,210,255,0.08);
  border-color: rgba(0,210,255,0.3);
}
.approach-step-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--c-white);
  margin: 0 0 12px;
}
.approach-step-body p {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 20px;
}
.approach-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.approach-list li {
  font-size: 13.5px;
  color: rgba(255,255,255,0.4);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.approach-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--c-cyan);
  font-weight: 700;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CAREERS PAGE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.careers-roles {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.career-role {
  padding: 32px 36px;
  background: var(--c-bg-3);
  border-bottom: 1px solid var(--c-border);
  transition: background 0.3s ease;
}
.career-role:last-child { border-bottom: none; }
.career-role:hover { background: rgba(0,210,255,0.04); }
.career-role-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 14px;
}
.career-role-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 8px;
}
.career-role-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.career-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--c-cyan);
  background: rgba(0,210,255,0.1);
  border: 1px solid rgba(0,210,255,0.2);
  padding: 3px 10px;
  border-radius: 20px;
}
.career-location {
  font-size: 13px;
  color: var(--c-muted);
}
.career-role-desc {
  font-size: 14.5px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 680px;
  margin: 0;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   LEGAL PAGES (Privacy / Terms)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
}
.legal-content h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--c-white);
  margin: 48px 0 14px;
  padding-top: 48px;
  border-top: 1px solid var(--c-border);
}
.legal-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.legal-content p {
  font-size: 15.5px;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-bottom: 16px;
}
.legal-content ul {
  margin: 8px 0 20px 20px;
  padding: 0;
}
.legal-content ul li {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin-bottom: 6px;
  list-style: disc;
}
.legal-content a {
  color: var(--c-cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-content strong { color: rgba(255,255,255,0.8); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SITEMAP PAGE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}
.sitemap-col-title {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-cyan);
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--c-border);
}
.sitemap-links {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.sitemap-links li a {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.25s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sitemap-links li a::before {
  content: 'â€º';
  color: rgba(0,210,255,0.5);
  font-weight: 700;
}
.sitemap-links li a:hover { color: var(--c-cyan); }

/* â”€â”€ RESPONSIVE â”€â”€ */
@media (max-width: 900px) {
  .about-intro-grid,
  .vm-grid,
  .contact-layout,
  .service-content-grid { grid-template-columns: 1fr; gap: 48px; }
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .insights-grid { grid-template-columns: repeat(2,1fr); }
  .service-sidebar { position: static; padding-top: 0; }
}
  .approach-steps { grid-template-columns: 1fr; }
  .sitemap-grid { grid-template-columns: repeat(2,1fr); }
  .career-role-header { flex-direction: column; align-items: flex-start; }
  .challenges-grid { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: repeat(2,1fr); }
  .service-content-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .values-grid { grid-template-columns: 1fr; }
  .insights-grid { grid-template-columns: 1fr; }
  .about-stats { flex-direction: column; gap: 20px; }
  .sitemap-grid { grid-template-columns: 1fr; }
  .approach-step-num { font-size: 36px; padding-left: 20px; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .challenge-card { padding: 28px 24px; }
  .outcome-card { padding: 36px 20px 28px; }
}

/* ══════════════════════════════════════════════
   ARTICLE / INSIGHT PAGES
══════════════════════════════════════════════ */
.article-meta { display:flex; align-items:center; gap:20px; flex-wrap:wrap; margin-bottom:28px; }
.article-cat { font-size:11px; font-weight:700; letter-spacing:.16em; text-transform:uppercase; color:var(--c-cyan); background:rgba(0,210,255,.08); border:1px solid rgba(0,210,255,.2); padding:4px 12px; border-radius:100px; }
.article-date, .article-read { font-size:13px; color:var(--c-muted); }
.article-layout { display:grid; grid-template-columns:1fr 290px; gap:60px; align-items:start; }
.article-content { font-size:16px; color:var(--c-muted); line-height:1.9; }
.article-content h2 { font-family:var(--font-head); font-size:clamp(20px,2.5vw,26px); font-weight:700; color:var(--c-white); margin:44px 0 16px; letter-spacing:-.01em; line-height:1.2; }
.article-content h3 { font-family:var(--font-head); font-size:18px; font-weight:700; color:var(--c-white); margin:32px 0 12px; }
.article-content p { margin-bottom:20px; }
.article-content ul, .article-content ol { padding-left:0; margin-bottom:20px; display:flex; flex-direction:column; gap:10px; }
.article-content li { color:var(--c-muted); padding-left:22px; position:relative; font-size:15.5px; }
.article-content ul li::before { content:''; position:absolute; left:0; top:10px; width:6px; height:6px; border-radius:50%; background:var(--c-cyan); }
.article-content ol { counter-reset:ol-counter; }
.article-content ol li { counter-increment:ol-counter; }
.article-content ol li::before { content:counter(ol-counter) '.'; position:absolute; left:0; font-size:12px; font-weight:700; color:var(--c-cyan); top:3px; }
.article-callout { background:rgba(0,210,255,.05); border-left:3px solid var(--c-cyan); border-radius:0 var(--radius-sm) var(--radius-sm) 0; padding:20px 24px; margin:32px 0; }
.article-callout p { color:rgba(255,255,255,.75); font-style:italic; margin:0; font-size:16px; }
.article-sidebar { position:sticky; top:100px; display:flex; flex-direction:column; gap:24px; }
.article-sidebar-card { background:var(--c-bg-3); border:1px solid var(--c-border); border-radius:var(--radius-lg); padding:24px; }
.article-sidebar-card h4 { font-family:var(--font-head); font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.12em; color:rgba(255,255,255,.35); margin-bottom:16px; }
.article-toc { display:flex; flex-direction:column; gap:10px; }
.article-toc a { font-size:13px; color:var(--c-muted); transition:color var(--t); padding-left:14px; border-left:2px solid transparent; line-height:1.4; }
.article-toc a:hover { color:var(--c-white); border-left-color:var(--c-cyan); }
.article-related a { display:block; font-size:13.5px; color:var(--c-muted); padding:10px 0; border-bottom:1px solid var(--c-border); transition:color var(--t); line-height:1.5; }
.article-related a:last-child { border-bottom:none; padding-bottom:0; }
.article-related a:hover { color:var(--c-cyan); }
@media (max-width:900px) { .article-layout { grid-template-columns:1fr; } .article-sidebar { position:static; } }

/* ── Industries card grid ── */
.industries-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:56px; }
.industry-card { background:var(--c-bg-3); border:1px solid var(--c-border); border-radius:var(--radius-xl); padding:36px 32px; text-decoration:none; display:block; transition:border-color var(--t),transform var(--t),box-shadow var(--t); }
.industry-card:hover { border-color:rgba(0,210,255,.3); transform:translateY(-5px); box-shadow:0 16px 48px rgba(0,0,0,.4); }
.industry-card-icon { width:48px; height:48px; border-radius:var(--radius-sm); background:rgba(0,210,255,.08); border:1px solid rgba(0,210,255,.15); display:flex; align-items:center; justify-content:center; color:var(--c-cyan); margin-bottom:20px; }
.industry-card h3 { font-family:var(--font-head); font-size:17px; font-weight:700; color:var(--c-white); margin-bottom:10px; }
.industry-card p { font-size:14px; color:var(--c-muted); line-height:1.7; margin-bottom:20px; }
.industry-card-arrow { display:flex; align-items:center; gap:6px; font-size:12px; font-weight:600; letter-spacing:.08em; text-transform:uppercase; color:rgba(0,210,255,.6); transition:color var(--t),gap var(--t); }
.industry-card:hover .industry-card-arrow { color:var(--c-cyan); gap:10px; }

/* ── Partners page ── */
.partners-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:48px; }
.partner-card { background:var(--c-bg-3); border:1px solid var(--c-border); border-radius:var(--radius-lg); padding:36px 28px; text-align:center; transition:border-color var(--t),transform var(--t); }
.partner-card:hover { border-color:rgba(0,210,255,.25); transform:translateY(-4px); }
.partner-logo { font-family:var(--font-head); font-size:20px; font-weight:800; color:var(--c-white); margin-bottom:8px; }
.partner-type { font-size:11px; font-weight:600; letter-spacing:.14em; text-transform:uppercase; color:var(--c-cyan); opacity:.7; margin-bottom:14px; }
.partner-desc { font-size:14px; color:var(--c-muted); line-height:1.7; }

/* ── Leadership page ── */
.leadership-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:32px; margin-top:56px; }
.leader-card { background:var(--c-bg-3); border:1px solid var(--c-border); border-radius:var(--radius-xl); overflow:hidden; transition:border-color var(--t),transform var(--t); }
.leader-card:hover { border-color:rgba(0,210,255,.25); transform:translateY(-4px); }
.leader-img-placeholder { width:100%; height:260px; background:linear-gradient(135deg,var(--c-bg-2) 0%,rgba(26,95,150,.2) 100%); display:flex; align-items:center; justify-content:center; font-family:var(--font-head); font-size:52px; font-weight:800; color:rgba(0,210,255,.25); }
/* Real photo in leader card */
.leader-photo-wrap { width:100%; height:300px; overflow:hidden; background:var(--c-bg-2); }
.leader-photo { width:100%; height:100%; object-fit:cover; object-position:center top; display:block; transition:transform .5s var(--ease,ease); }
.leader-card:hover .leader-photo { transform:scale(1.04); }
.leader-body { padding:24px 28px; }
.leader-name { font-family:var(--font-head); font-size:17px; font-weight:700; color:var(--c-white); margin-bottom:4px; }
.leader-title { font-size:13px; color:var(--c-cyan); font-weight:500; letter-spacing:.04em; margin-bottom:14px; display:block; }
.leader-bio { font-size:14px; color:var(--c-muted); line-height:1.7; margin-bottom:14px; }
.leader-contact-link { display:inline-flex; align-items:center; gap:5px; font-size:12.5px; font-weight:600; color:rgba(0,210,255,.55); transition:color var(--t),gap var(--t); }
.leader-contact-link:hover { color:var(--c-cyan); gap:8px; }

/* ── Why Xunaris differentiator cards ── */
.diff-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:48px; }
.diff-card { background:var(--c-bg-3); border:1px solid var(--c-border); border-radius:var(--radius-xl); padding:36px 32px; transition:border-color var(--t),transform var(--t); }
.diff-card:hover { border-color:rgba(0,210,255,.25); transform:translateY(-4px); }
.diff-num { font-family:var(--font-head); font-size:42px; font-weight:800; color:rgba(0,210,255,.07); line-height:1; margin-bottom:16px; }
.diff-card h3 { font-family:var(--font-head); font-size:16px; font-weight:700; color:var(--c-white); margin-bottom:10px; }
.diff-card p { font-size:14px; color:var(--c-muted); line-height:1.75; }

@media (max-width:900px) { .industries-grid,.partners-grid,.leadership-grid,.diff-grid { grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px) { .industries-grid,.partners-grid,.leadership-grid,.diff-grid { grid-template-columns:1fr; } }

/* ══════════════════════════════════════════════
   CAREERS — SECONDARY SUB-NAV
══════════════════════════════════════════════ */
.careers-subnav {
  background: rgba(6,20,40,.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--c-border);
  position: sticky;
  top: 72px;
  z-index: 90;
}
.careers-subnav-inner {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.careers-subnav-label {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  padding: 18px 24px 18px 0;
  border-right: 1px solid var(--c-border);
  margin-right: 8px;
  white-space: nowrap;
}
.careers-subnav-group {
  position: relative;
  display: flex;
  align-items: center;
}
.careers-subnav-group > a,
.careers-subnav-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,.65);
  padding: 18px 20px;
  border: none;
  background: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: color var(--t);
  white-space: nowrap;
}
.careers-subnav-btn svg { transition: transform var(--t); }
.careers-subnav-group:hover > .careers-subnav-btn,
.careers-subnav-group > a:hover { color: var(--c-white); }
.careers-subnav-group.open > .careers-subnav-btn { color: var(--c-cyan); }
.careers-subnav-group.open > .careers-subnav-btn svg { transform: rotate(180deg); }
.careers-subnav-dropdown {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  background: rgba(6,20,40,.98);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  padding: 10px 0;
  min-width: 200px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .2s, transform .2s;
  z-index: 100;
}
.careers-subnav-group:hover .careers-subnav-dropdown,
.careers-subnav-group.open .careers-subnav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.careers-subnav-dropdown a {
  display: block;
  padding: 9px 20px;
  font-size: 13.5px;
  color: rgba(255,255,255,.65);
  transition: color var(--t), background var(--t);
}
.careers-subnav-dropdown a:hover { color: var(--c-white); background: rgba(255,255,255,.04); }
.careers-subnav-active {
  color: var(--c-cyan) !important;
  border-bottom: 2px solid var(--c-cyan);
}

/* ══════════════════════════════════════════════
   CAREERS HOMEPAGE — HERO
══════════════════════════════════════════════ */
.careers-hero {
  background: var(--c-bg-dark);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.careers-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 60% 40%, rgba(0,210,255,.06) 0%, transparent 70%);
  pointer-events: none;
}
.careers-hero-inner { display: grid; grid-template-columns: 1fr 420px; gap: 80px; align-items: center; }
.careers-hero-title { font-family: var(--font-head); font-size: clamp(36px,5vw,64px); font-weight: 800; color: var(--c-white); line-height: 1.05; letter-spacing: -.03em; margin-bottom: 20px; }
.careers-hero-title em { font-style: normal; color: var(--c-cyan); }
.careers-hero-desc { font-size: 17px; color: var(--c-muted); line-height: 1.8; margin-bottom: 36px; max-width: 540px; }
.careers-hero-stats { display: flex; gap: 36px; }
.careers-hero-stat strong { display: block; font-family: var(--font-head); font-size: 28px; font-weight: 800; color: var(--c-white); }
.careers-hero-stat span { font-size: 12px; color: var(--c-muted); letter-spacing: .05em; }

/* Quick job search box */
.careers-search-box {
  background: rgba(6,20,40,.8);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl);
  padding: 32px;
  backdrop-filter: blur(20px);
}
.careers-search-box h3 { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--c-white); margin-bottom: 20px; }
.csb-row { display: flex; flex-direction: column; gap: 12px; }
.csb-input {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--c-bg-3);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  transition: border-color var(--t);
}
.csb-input:focus-within { border-color: rgba(0,210,255,.4); }
.csb-input svg { color: rgba(255,255,255,.3); flex-shrink: 0; }
.csb-input input, .csb-input select {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--c-white);
}
.csb-input select option { background: var(--c-bg-2); color: var(--c-white); }
.csb-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.csb-tag {
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(0,210,255,.08);
  border: 1px solid rgba(0,210,255,.2);
  color: rgba(255,255,255,.6);
  cursor: pointer;
  transition: all var(--t);
}
.csb-tag:hover { background: rgba(0,210,255,.15); color: var(--c-white); }

/* ══════════════════════════════════════════════
   CAREER TRACKS
══════════════════════════════════════════════ */
.career-tracks-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--c-border); border: 1px solid var(--c-border); border-radius: var(--radius-xl); overflow: hidden; margin-top: 48px; }
.career-track-card {
  background: var(--c-bg-2);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-decoration: none;
  transition: background var(--t);
  cursor: pointer;
}
.career-track-card:hover { background: var(--c-bg-3); }
.career-track-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(0,210,255,.08); border: 1px solid rgba(0,210,255,.15); display: flex; align-items: center; justify-content: center; color: var(--c-cyan); }
.career-track-name { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--c-white); }
.career-track-desc { font-size: 13.5px; color: var(--c-muted); line-height: 1.65; }
.career-track-link { display: flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: rgba(0,210,255,.55); margin-top: auto; transition: color var(--t), gap var(--t); }
.career-track-card:hover .career-track-link { color: var(--c-cyan); gap: 9px; }

/* ══════════════════════════════════════════════
   CAREER STAGES
══════════════════════════════════════════════ */
.career-stages-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.career-stage-card {
  background: var(--c-bg-3);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-decoration: none;
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
}
.career-stage-card:hover { border-color: rgba(0,210,255,.3); transform: translateY(-5px); box-shadow: 0 20px 60px rgba(0,0,0,.4); }
.career-stage-badge { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--c-cyan); background: rgba(0,210,255,.08); border: 1px solid rgba(0,210,255,.2); padding: 4px 12px; border-radius: 100px; width: fit-content; }
.career-stage-card h3 { font-family: var(--font-head); font-size: 18px; font-weight: 700; color: var(--c-white); line-height: 1.25; }
.career-stage-card p { font-size: 14px; color: var(--c-muted); line-height: 1.75; }
.career-stage-arrow { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: rgba(0,210,255,.5); margin-top: auto; transition: color var(--t), gap var(--t); }
.career-stage-card:hover .career-stage-arrow { color: var(--c-cyan); gap: 10px; }

/* ══════════════════════════════════════════════
   BENEFITS GRID
══════════════════════════════════════════════ */
.benefits-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.benefit-card { background: var(--c-bg-3); border: 1px solid var(--c-border); border-radius: var(--radius-xl); padding: 36px 28px; transition: border-color var(--t), transform var(--t); }
.benefit-card:hover { border-color: rgba(0,210,255,.2); transform: translateY(-3px); }
.benefit-icon { width: 48px; height: 48px; border-radius: var(--radius-sm); background: rgba(0,210,255,.08); border: 1px solid rgba(0,210,255,.15); display: flex; align-items: center; justify-content: center; color: var(--c-cyan); margin-bottom: 20px; }
.benefit-card h3 { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--c-white); margin-bottom: 10px; }
.benefit-card p { font-size: 14px; color: var(--c-muted); line-height: 1.75; }

/* ══════════════════════════════════════════════
   HOW WE HIRE — STEPS
══════════════════════════════════════════════ */
.hire-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; margin-top: 56px; }
.hire-steps::before { content: ''; position: absolute; top: 36px; left: calc(12.5%); right: calc(12.5%); height: 1px; background: linear-gradient(90deg, var(--c-cyan) 0%, rgba(0,210,255,.3) 100%); z-index: 0; }
.hire-step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.hire-step-num { width: 72px; height: 72px; border-radius: 50%; background: var(--c-bg-2); border: 2px solid var(--c-cyan); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 20px; font-weight: 800; color: var(--c-cyan); margin-bottom: 20px; flex-shrink: 0; }
.hire-step h4 { font-family: var(--font-head); font-size: 14px; font-weight: 700; color: var(--c-white); margin-bottom: 8px; }
.hire-step p { font-size: 13px; color: var(--c-muted); line-height: 1.65; }

/* ══════════════════════════════════════════════
   JOB SEARCH PAGE
══════════════════════════════════════════════ */
.jobs-search-header { background: var(--c-bg-2); border-bottom: 1px solid var(--c-border); padding: 48px 0 32px; }
.jobs-search-bar {
  display: flex;
  gap: 12px;
  background: var(--c-bg-3);
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 8px 8px 8px 20px;
  align-items: center;
  max-width: 820px;
  margin: 0 auto;
  transition: border-color var(--t);
}
.jobs-search-bar:focus-within { border-color: rgba(0,210,255,.4); }
.jobs-search-bar svg { color: rgba(255,255,255,.3); flex-shrink:0; }
.jobs-search-bar input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--c-white);
}
.jobs-search-bar input::placeholder { color: rgba(255,255,255,.3); }
.jobs-search-divider { width: 1px; height: 28px; background: var(--c-border); }
.jobs-search-bar select {
  background: none;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,.55);
  cursor: pointer;
  padding: 0 8px;
}
.jobs-search-bar select option { background: var(--c-bg-2); color: var(--c-white); }
.jobs-filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; justify-content: center; }
.jobs-filter-chip {
  font-size: 12.5px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 100px;
  border: 1px solid var(--c-border);
  color: rgba(255,255,255,.5);
  background: transparent;
  cursor: pointer;
  transition: all var(--t);
  font-family: var(--font-body);
}
.jobs-filter-chip:hover { border-color: rgba(0,210,255,.3); color: rgba(255,255,255,.85); }
.jobs-filter-chip.active { background: rgba(0,210,255,.1); border-color: rgba(0,210,255,.5); color: var(--c-cyan); }
.jobs-results-info { font-size: 13px; color: var(--c-muted); margin-bottom: 28px; }
.jobs-results-info strong { color: var(--c-white); }
.job-card {
  background: var(--c-bg-3);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--t);
}
.job-card:hover { border-color: rgba(0,210,255,.25); }
.job-card-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  cursor: pointer;
}
.job-card-title { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--c-white); margin-bottom: 8px; }
.job-card-meta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.job-card-tag { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--c-cyan); background: rgba(0,210,255,.08); border: 1px solid rgba(0,210,255,.2); padding: 3px 10px; border-radius: 100px; }
.job-card-loc { font-size: 13px; color: var(--c-muted); display: flex; align-items: center; gap: 4px; }
.job-card-type { font-size: 13px; color: rgba(255,255,255,.4); }
.job-card-toggle { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.4); white-space: nowrap; transition: color var(--t); }
.job-card:hover .job-card-toggle { color: var(--c-cyan); }
.job-card-toggle svg { transition: transform .25s; }
.job-card.open .job-card-toggle svg { transform: rotate(180deg); }
.job-card-toggle-text { font-size: 12.5px; }
.job-card-body {
  padding: 0 28px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .25s;
}
.job-card.open .job-card-body { max-height: 600px; padding: 0 28px 28px; }
.job-card-body-inner { border-top: 1px solid var(--c-border); padding-top: 24px; }
.job-card-desc { font-size: 14.5px; color: var(--c-muted); line-height: 1.8; margin-bottom: 20px; }
.job-card-reqs { margin-bottom: 24px; }
.job-card-reqs h5 { font-family: var(--font-head); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.35); margin-bottom: 12px; }
.job-card-reqs ul { display: flex; flex-direction: column; gap: 7px; padding: 0; }
.job-card-reqs li { font-size: 14px; color: var(--c-muted); padding-left: 18px; position: relative; }
.job-card-reqs li::before { content: ''; position: absolute; left: 0; top: 9px; width: 5px; height: 5px; border-radius: 50%; background: var(--c-cyan); }
.job-card-actions { display: flex; gap: 12px; }

/* Responsive */
@media (max-width:1024px) { .careers-hero-inner { grid-template-columns: 1fr; } .careers-search-box { max-width: 600px; } }
@media (max-width:768px) { .career-tracks-grid { grid-template-columns: repeat(2,1fr); } .career-stages-grid { grid-template-columns:1fr; } .benefits-grid { grid-template-columns:repeat(2,1fr); } .hire-steps { grid-template-columns:repeat(2,1fr); gap:32px; } .hire-steps::before { display:none; } .careers-subnav-label { display:none; } .job-card-header { grid-template-columns:1fr; } }
@media (max-width:560px) { .career-tracks-grid,.benefits-grid { grid-template-columns:1fr; } .hire-steps { grid-template-columns:1fr; } }

