@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

:root {
  --navy: #0d203e;
  --navy-mid: #122f5a;
  --blue: #1f5ac8;
  --soft-blue: #4b88f0;
  --accent: #47a7ff;
  --accent-light: #8fcbff;
  --silver: #c8d4e8;
  --light: #f7faff;
  --white: #ffffff;
  --text: #12203b;
  --text-muted: #5f718f;
  --border: rgba(71,122,201,0.18);
  --shadow: 0 8px 42px rgba(15,28,57,0.12);
  --shadow-lg: 0 24px 90px rgba(15,28,57,0.18);
  --radius: 18px;
  --radius-lg: 26px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: radial-gradient(circle at top left, rgba(71,122,201,0.12), transparent 24%),
              linear-gradient(180deg, #fdfdff 0%, #eaf0fb 100%);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

section {
  padding: 6rem 2rem;
}

img { display: block; max-width: 100%; }

a { transition: color 0.25s ease, transform 0.25s ease; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(11, 24, 50, 0.74);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px rgba(15, 28, 57, 0.14);
  padding: 0 2rem;
  min-height: 78px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.4s ease;
}

.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.nav-logo:hover { transform: translateY(-1px); }

.nav-logo img {
  height: 38px;
  width: auto;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.nav-logo:hover img {
  transform: scale(1.08);
  filter: brightness(1.12) drop-shadow(0 0 12px rgba(71, 138, 255, 0.4));
}

.nav-links {
  display: flex; align-items: center; gap: 2rem; list-style: none;
}

.nav-links a {
  color: rgba(245, 248, 255, 0.9);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: white;
  text-shadow: 0 0 18px rgba(71, 138, 255, 0.35);
}

.nav-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-light)) !important;
  color: white !important;
  padding: 0.65rem 1.5rem !important;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.2) !important;
  box-shadow: 0 22px 58px rgba(71, 122, 201, 0.24) !important;
  transition: all 0.3s ease !important;
  font-weight: 700;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 72px rgba(71, 122, 201, 0.28) !important;
}

.nav-burger {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 4px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-burger span {
  display: block; width: 24px; height: 2px;
  background: rgba(255, 255, 255, 0.9); border-radius: 2px; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 768px) {
  .nav-burger { display: flex; }
  .nav-links {
    display: none; position: fixed; top: 72px; left: 0; right: 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.55) 0%, rgba(26, 68, 128, 0.45) 100%);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    flex-direction: column;
    gap: 0; padding: 1rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 0.9rem 2rem; }
  .nav-cta { margin: 0.5rem 2rem !important; border-radius: 10px !important; text-align: center; display: block !important; }
}

/* ── FOOTER ── */
footer {
  background: linear-gradient(180deg, #081325 0%, #06141f 100%);
  color: var(--silver);
  padding: 4rem 2rem 2rem;
}

.footer-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 1rem; text-decoration: none;
}

.footer-logo img {
  height: 28px; width: auto;
}

.footer-brand p {
  font-size: 0.88rem; color: #7a8fa8;
  line-height: 1.75; max-width: 290px;
}

.footer-col h4 {
  color: white; font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.1rem;
}

.footer-col a {
  display: block; color: #7a8fa8; text-decoration: none;
  font-size: 0.88rem; margin-bottom: 0.65rem; transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent-light); }

.footer-contact-group {
  margin-bottom: 1.2rem;
}
.footer-contact-group strong {
  display: block; color: white; margin-bottom: 0.4rem;
  font-size: 0.95rem;
}
.footer-contact-group p,
.footer-contact-group a {
  display: block; margin-bottom: 0.35rem; color: #7a8fa8;
  font-size: 0.88rem; text-decoration: none;
}
.footer-contact-link {
  font-weight: 700; color: #ffffff;
}
.footer-contact-group a:hover { color: var(--accent-light); }

.footer-bottom {
  max-width: 1100px; margin: 2rem auto 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; color: #4a5e78; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: #4a5e78; text-decoration: none; transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--accent-light); }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── SHARED ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 2rem; }
.section-sm { padding: 4rem 2rem; }

h1, h2, h3 { font-family: 'DM Serif Display', serif; line-height: 1.18; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 1rem 2rem; border-radius: 18px;
  font-size: 0.95rem; font-weight: 700;
  text-decoration: none; border: none; cursor: pointer;
  box-shadow: 0 20px 70px rgba(71,122,201,0.16);
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.35px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--soft-blue));
  color: white;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 26px 90px rgba(71,122,201,0.22); filter: brightness(1.05); }
.btn-primary:active { transform: translateY(-1px); }
.btn-outline { background: rgba(255,255,255,0.14); color: white; border: 1.5px solid rgba(255,255,255,0.35); }
.btn-outline:hover { border-color: rgba(255,255,255,0.72); background: rgba(255,255,255,0.22); transform: translateY(-2px); }
.btn-dark { background: linear-gradient(135deg, var(--navy), var(--navy-mid)); color: white; }
.btn-dark:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(10,22,40,0.25); }
.btn-ghost { background: rgba(255,255,255,0.08); color: white; border: 1px solid rgba(255,255,255,0.16); }
.btn-ghost:hover { background: rgba(255,255,255,0.16); transform: translateY(-2px); }

.card,
.service-card,
.contact-card,
.quick-card,
.value-item,
.reason-card,
.info-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.76);
  box-shadow: 0 20px 60px rgba(71,122,201,0.08);
  backdrop-filter: blur(16px);
}
.card:hover,
.service-card:hover,
.contact-card:hover,
.quick-card:hover,
.value-item:hover,
.reason-card:hover,
.info-item:hover { transform: translateY(-6px); box-shadow: 0 26px 86px rgba(71,122,201,0.14); }

footer {
  background: linear-gradient(180deg, #081325 0%, #06141f 100%);
  color: rgba(241,246,255,0.88);
}
.footer-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-col {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}
.footer-col h4 {
  color: white; font-size: 0.92rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1rem;
}
.footer-col a {
  display: block; color: rgba(255,255,255,0.82); text-decoration: none;
  font-size: 0.95rem; margin-bottom: 0.75rem; transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent-light); }
.footer-contact-group p,
.footer-contact-group a {
  display: block; margin-bottom: 0.35rem; color: rgba(255,255,255,0.7);
}
.footer-contact-link {
  font-weight: 700; color: white;
}

.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.78rem; font-weight: 800; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 1.2rem;
}
.section-label::before {
  content: '';
  width: 56px; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  border-radius: 999px;
  box-shadow: 0 0 14px rgba(71,122,201,0.25);
}

/* PAGE HERO (subpages) */
.page-hero {
  background: radial-gradient(circle at 12% 10%, rgba(92, 154, 255, 0.28), transparent 25%),
              radial-gradient(circle at 85% 20%, rgba(78, 108, 255, 0.18), transparent 22%),
              linear-gradient(135deg, #081229 0%, #0f2d5a 100%);
  padding: 11rem 2rem 7rem;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 15%, rgba(255,255,255,0.1), transparent 18%),
              radial-gradient(circle at 20% 65%, rgba(74, 137, 255, 0.16), transparent 18%);
  pointer-events: none;
  animation: heroGlow 18s ease-in-out infinite;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: -10%; top: 20%; width: 420px; height: 420px;
  background: rgba(255,255,255,0.06);
  filter: blur(60px);
  border-radius: 50%;
  pointer-events: none;
  animation: heroPulse 18s ease-in-out infinite;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 63% 60% at 60% 42%, rgba(46,125,233,0.18), transparent 72%);
  animation: heroDrift 20s ease-in-out infinite;
}
.page-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: gridDrift 28s linear infinite;
}
.page-hero-inner {
  max-width: 860px; margin: 0 auto; position: relative; z-index: 1;
  padding: 2.5rem 0;
}
.page-hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  color: white; margin-bottom: 1.4rem;
  line-height: 1.05; letter-spacing: -0.04em;
  text-shadow: 0 24px 70px rgba(0,0,0,0.24);
}
.page-hero p {
  font-size: 1.1rem; color: rgba(226,236,255,0.92); line-height: 1.9; max-width: 640px;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 9999;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 1.5rem;
  border-radius: 24px;
  background: rgba(12, 22, 47, 0.96);
  color: #f5f8ff;
  box-shadow: 0 30px 80px rgba(3, 12, 29, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  animation: cookieBannerIn 0.35s ease-out;
}
.cookie-banner--hidden {
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
}
.cookie-banner__content {
  flex: 1 1 380px;
  min-width: 260px;
}
.cookie-banner__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.55rem;
  color: #ffffff;
}
.cookie-banner__text {
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(245, 248, 255, 0.9);
  margin: 0;
}
.cookie-banner__text a {
  color: #7fccff;
  text-decoration: underline;
}
.cookie-banner__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 160px;
}
.cookie-banner__button {
  appearance: none;
  border: none;
  border-radius: 16px;
  padding: 0.95rem 1.4rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #081325;
  background: linear-gradient(135deg, #7dd3fc, #0ea5e9);
  cursor: pointer;
  box-shadow: 0 18px 45px rgba(14, 90, 184, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cookie-banner__button:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 55px rgba(14, 90, 184, 0.35);
}
@media (max-width: 720px) {
  .cookie-banner {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    padding: 1.1rem 1rem;
  }
  .cookie-banner__actions {
    justify-content: stretch;
  }
  .cookie-banner__button {
    width: 100%;
  }
}
@keyframes cookieBannerIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideRight { from { opacity: 0; transform: translateX(-16px); } to { opacity: 1; transform: translateX(0); } }

.animate { animation: fadeUp 0.7s ease both; }
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

/* Servicecenter fine-tuning */
.contact-cards-grid { gap: 2rem; }
.contact-card { padding: 2rem; min-height: 260px; display: flex; flex-direction: column; }
.contact-card p { color: var(--text-muted); margin-bottom: 1.2rem; font-size: 0.95rem; }
.contact-card .contact-num { margin-top: 0.25rem; font-size: 0.98rem; color: var(--navy); }

.remote-section { padding: 5rem 2rem; }
.remote-content h2 { margin-bottom: 0.8rem; }
.remote-steps { gap: 1rem; }
.remote-step-text p { margin: 0; }

/* Slightly tighter sections for a premium layout */
section { padding: 5.5rem 2rem; }
@media (max-width: 1024px) { section { padding: 4rem 1.25rem; } }

/* CTA spacing */
.page-hero .btn { margin-top: 0.5rem; }

/* Career page */
.career-hero {
  position: relative; overflow: hidden; padding: 9rem 2rem 6rem;
  background: radial-gradient(circle at 10% 20%, rgba(71,122,201,0.16), transparent 26%),
              radial-gradient(circle at 85% 20%, rgba(110,185,255,0.2), transparent 24%),
              linear-gradient(135deg, #071426 0%, #112a50 48%, #153a6d 100%);
}
.career-hero::before,
.career-hero::after {
  content: ''; position: absolute; border-radius: 50%; filter: blur(70px); pointer-events: none; animation: floatOrb 12s ease-in-out infinite;
}
.career-hero::before { width: 320px; height: 320px; background: rgba(255,255,255,0.12); top: -80px; right: -80px; }
.career-hero::after { width: 240px; height: 240px; background: rgba(71,122,201,0.24); bottom: -40px; left: -40px; animation-delay: 2s; }
.career-orb {
  position: absolute; border-radius: 50%; filter: blur(18px); opacity: 0.5; pointer-events: none; animation: driftOrb 16s ease-in-out infinite;
}
.orb-a { width: 180px; height: 180px; background: rgba(255,255,255,0.14); top: 18%; left: 8%; }
.orb-b { width: 110px; height: 110px; background: rgba(71,122,201,0.3); bottom: 16%; right: 10%; animation-duration: 20s; }
.career-hero-inner {
  position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 2rem; align-items: center; max-width: 1180px; margin: 0 auto;
}
.career-hero-copy h1 { font-size: clamp(2.4rem, 4.3vw, 3.5rem); color: white; margin-bottom: 1rem; }
.career-hero-copy p { color: rgba(226,236,255,0.92); font-size: 1.02rem; line-height: 1.85; max-width: 620px; }
.career-badges { display: flex; flex-wrap: wrap; gap: 0.75rem; margin: 1.5rem 0 1rem; }
.career-badge {
  display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.6rem 0.9rem; border-radius: 999px;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  background: rgba(255,255,255,0.1); color: var(--accent-light); border: 1px solid rgba(255,255,255,0.18);
}
.career-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 1.8rem; }
.career-floating-stack { display: grid; gap: 1rem; }
.career-floating-card {
  background: rgba(255,255,255,0.11); border: 1px solid rgba(255,255,255,0.18); border-radius: 24px; padding: 1.35rem 1.4rem;
  box-shadow: 0 24px 90px rgba(5, 16, 35, 0.24); backdrop-filter: blur(16px); animation: riseCard 8s ease-in-out infinite;
}
.career-floating-card:nth-child(2) { animation-delay: 1.2s; }
.career-floating-card strong { display: block; color: white; font-size: 1.02rem; margin-bottom: 0.45rem; }
.career-floating-card p { color: rgba(229,239,255,0.82); font-size: 0.93rem; line-height: 1.7; }
.career-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%); padding: 6rem 2rem;
}
.career-overview {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 2rem; align-items: center;
}
.career-copy h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); color: var(--navy); margin-bottom: 1rem; }
.career-copy p { color: var(--text-muted); margin-bottom: 1.2rem; font-size: 1rem; }
.career-check-list { display: grid; gap: 0.75rem; margin-top: 1.5rem; }
.career-check-item {
  display: inline-flex; align-items: center; gap: 0.6rem; background: rgba(71,122,201,0.08); color: var(--navy); padding: 0.8rem 1rem;
  border-radius: 999px; font-weight: 600; width: fit-content; box-shadow: inset 0 0 0 1px rgba(71,122,201,0.08);
}
.career-highlight {
  background: linear-gradient(135deg, rgba(15,31,61,0.96), rgba(31,90,200,0.92)); color: white; border-radius: 30px; padding: 2.25rem;
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.career-highlight::before { content: ''; position: absolute; inset: auto auto -40px -35px; width: 160px; height: 160px; background: rgba(255,255,255,0.12); border-radius: 50%; filter: blur(10px); }
.career-highlight-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(255,255,255,0.14); color: var(--accent-light); padding: 0.45rem 0.8rem; border-radius: 999px; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1rem; }
.career-highlight h3 { font-size: 1.45rem; margin-bottom: 0.8rem; }
.career-highlight p { color: rgba(255,255,255,0.82); line-height: 1.8; margin-bottom: 1.2rem; }
.career-cards-section { background: white; padding: 5rem 2rem 6rem; }
.career-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.career-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(247,250,255,0.95)); border: 1px solid rgba(71,122,201,0.14); border-radius: 24px; padding: 2rem;
  box-shadow: var(--shadow); transition: transform 0.3s ease, box-shadow 0.3s ease; position: relative; overflow: hidden;
}
.career-card::after { content: ''; position: absolute; inset: auto -16px -16px auto; width: 120px; height: 120px; background: rgba(71,122,201,0.06); border-radius: 50%; transition: transform 0.3s ease; }
.career-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.career-card:hover::after { transform: scale(1.15); }
.career-icon { width: 56px; height: 56px; border-radius: 18px; display: inline-flex; align-items: center; justify-content: center; font-size: 1.6rem; background: rgba(71,122,201,0.1); margin-bottom: 1rem; }
.career-card h3 { font-family: 'DM Sans', sans-serif; font-size: 1.08rem; color: var(--navy); margin-bottom: 0.6rem; }
.career-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.75; }
.career-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
.career-metric { padding: 1.15rem 1rem; background: rgba(255,255,255,0.9); border: 1px solid rgba(71,122,201,0.12); border-radius: 18px; text-align: center; }
.career-metric strong { display: block; font-size: 1.25rem; color: var(--navy); }
.career-metric span { color: var(--text-muted); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }

/* Error / 404 page */
.error-section {
  background: var(--light); padding: 5rem 2rem 6rem;
}
.error-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
}
.error-card {
  background: white; border: 1px solid rgba(71,122,201,0.12); border-radius: 24px; padding: 2rem; box-shadow: var(--shadow);
}
.error-icon {
  width: 54px; height: 54px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 16px; background: rgba(71,122,201,0.1); font-size: 1.4rem; margin-bottom: 1rem;
}
.error-card h3 { color: var(--navy); margin-bottom: 0.8rem; font-size: 1.2rem; }
.error-card p, .error-card li { color: var(--text-muted); line-height: 1.75; }
.error-card ul { list-style: none; display: grid; gap: 0.5rem; margin-top: 0.6rem; }
.error-card a { color: var(--blue); text-decoration: none; font-weight: 600; }
.error-card a:hover { color: var(--accent); }

@media (max-width: 900px) {
  .career-hero-inner, .career-overview { grid-template-columns: 1fr; }
  .career-cards-grid, .career-metrics { grid-template-columns: 1fr; }
  .error-grid { grid-template-columns: 1fr; }
}

@keyframes floatOrb {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-10px, 14px, 0) scale(1.05); }
}
@keyframes driftOrb {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(14px, -20px, 0); }
}
@keyframes riseCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

