
:root {
  --bg: #0f172a;
  --bg-soft: #f1f5f9;
  --bg-card: #ffffff;
  --primary: #2563eb;
  --primary-soft: #dbeafe;
  --primary-dark: #1d4ed8;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --border-subtle: #e2e8f0;
  --radius-lg: 1.25rem;
  --radius-md: 0.75rem;
  --radius-pill: 999px;
  --shadow-soft: 0 18px 60px rgba(15, 23, 42, 0.18);
  --shadow-card: 0 10px 26px rgba(15, 23, 42, 0.12);
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-main);
  background: radial-gradient(circle at top left, #e0f2fe, #f8fafc 40%, #eef2ff);
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header / nav */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.9));
  border-bottom: 1px solid rgba(148, 163, 184, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.9rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #e5e7eb;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 1.1rem;
  background: radial-gradient(circle at 20% 0, #38bdf8, #2563eb);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: #f9fafb;
  box-shadow: 0 10px 26px rgba(37, 99, 235, 0.7);
}

.brand-text-main {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.brand-text-sub {
  margin-top: 0.1rem;
  display: block;
  font-size: 0.75rem;
  color: #9ca3af;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: #e5e7eb;
}

.nav-link {
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: background 0.15s ease, color 0.15s ease, transform 0.1s ease;
}

.nav-link .chip {
  font-size: 0.75rem;
  padding: 0.05rem 0.45rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(148, 163, 184, 0.25);
}

.nav-link:hover {
  background: rgba(148, 163, 184, 0.2);
  transform: translateY(-1px);
}

.nav-link--active {
  background: rgba(37, 99, 235, 0.3);
  border: 1px solid rgba(129, 140, 248, 0.7);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.phone-link {
  font-size: 0.8rem;
  color: #e5e7eb;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.phone-link .icon {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-pill);
  border: none;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  background: linear-gradient(135deg, #38bdf8, #2563eb);
  color: #f9fafb;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.45);
  white-space: nowrap;
  transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.55);
  background: linear-gradient(135deg, #0ea5e9, #1d4ed8);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(148, 163, 184, 0.6);
  color: #e5e7eb;
  box-shadow: none;
}

.btn-outline:hover {
  background: rgba(15, 23, 42, 0.8);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
}

/* Burger menu */

.nav-toggle {
  display: none;
  background: transparent;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  color: #e5e7eb;
  padding: 0.35rem 0.7rem;
  font-size: 0.85rem;
  gap: 0.4rem;
  align-items: center;
  cursor: pointer;
}

.nav-toggle .bars {
  width: 18px;
  height: 14px;
  position: relative;
}

.nav-toggle .bars::before,
.nav-toggle .bars::after,
.nav-toggle .bars span {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 999px;
  background: #e5e7eb;
  transition: transform 0.18s ease, opacity 0.18s ease, top 0.18s ease, bottom 0.18s ease;
}

.nav-toggle .bars span {
  top: 6px;
}

.nav-toggle .bars::before {
  top: 0;
}

.nav-toggle .bars::after {
  bottom: 0;
}

body.nav-open .nav-toggle .bars::before {
  top: 6px;
  transform: rotate(45deg);
}

body.nav-open .nav-toggle .bars::after {
  bottom: 6px;
  transform: rotate(-45deg);
}

body.nav-open .nav-toggle .bars span {
  opacity: 0;
}

/* Home hero */

.hero {
  background: radial-gradient(circle at top left, #1d4ed8, #020617);
  color: #e5e7eb;
  padding: 3.6rem 0 2.8rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.6);
  font-size: 0.78rem;
}

.hero-kicker .dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #4ade80;
  box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.4);
}

.hero-title {
  margin: 0.9rem 0 0.7rem;
  font-size: clamp(2.2rem, 3.1vw, 2.8rem);
  letter-spacing: -0.04em;
}

.hero-title .highlight {
  background: linear-gradient(120deg, #a5b4fc, #e0f2fe);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-text {
  font-size: 0.98rem;
  max-width: 40rem;
  color: #cbd5f5;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.3rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  font-size: 0.78rem;
  color: #9ca3af;
}

.hero-meta .badge {
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.85);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.hero-meta .badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #22c55e;
}

/* Hero side panel */

.hero-right {
  position: relative;
}

.hero-panel {
  background: rgba(15, 23, 42, 0.9);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.6);
  padding: 1.4rem;
  box-shadow: var(--shadow-soft);
}

.hero-panel-header {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.hero-panel-title {
  font-size: 0.88rem;
  font-weight: 500;
}

.hero-panel-sub {
  font-size: 0.78rem;
  color: #94a3b8;
}

.hero-pill {
  font-size: 0.75rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(96, 165, 250, 0.7);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(15, 23, 42, 0.9);
}

.hero-pill .dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
}

.hero-panel-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.hero-stat-card {
  background: rgba(15, 23, 42, 0.9);
  border-radius: 0.9rem;
  border: 1px solid rgba(148, 163, 184, 0.6);
  padding: 0.75rem 0.8rem;
  font-size: 0.8rem;
}

.hero-stat-label {
  font-size: 0.7rem;
  color: #9ca3af;
  margin-bottom: 0.2rem;
}

.hero-stat-value {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.hero-stat-note {
  font-size: 0.73rem;
  color: #94a3b8;
}

.hero-service-list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.8rem;
  color: #e5e7eb;
}

.hero-service-item {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
}

.hero-service-item .label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.hero-service-item .bullet {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #38bdf8;
}

.hero-service-item .tag {
  font-size: 0.7rem;
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
}

.hero-panel-footer {
  margin-top: 0.8rem;
  padding-top: 0.6rem;
  border-top: 1px dashed rgba(148, 163, 184, 0.6);
  font-size: 0.75rem;
  display: flex;
  justify-content: space-between;
  gap: 0.7rem;
  color: #9ca3af;
}

.hero-panel-footer strong {
  color: #e0e7ff;
}

.hero-panel-footer .link-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: #bfdbfe;
}

/* Page hero (subpages) */

.page-hero {
  background: #020617;
  color: #e5e7eb;
  padding: 3rem 0 2.3rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.3);
}

.page-hero-inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.page-hero-kicker {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #93c5fd;
}

.page-hero-title {
  margin: 0;
  font-size: 2rem;
  letter-spacing: -0.04em;
}

.page-hero-text {
  font-size: 0.96rem;
  max-width: 40rem;
  color: #cbd5f5;
}

.page-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.8rem;
}

.page-hero-pill {
  padding: 0.18rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.9);
}

/* Sections */

main {
  padding-bottom: 4rem;
}

.section {
  padding: 2.8rem 0;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.8rem;
  max-width: 40rem;
}

.section-kicker {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #2563eb;
  font-weight: 500;
}

.section-title {
  margin: 0;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
}

.section-subtitle {
  font-size: 0.94rem;
  color: var(--text-muted);
}

/* Services grid */

.services {
  background: #f8fafc;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  padding: 1rem;
  box-shadow: var(--shadow-card);
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-tag {
  font-size: 0.75rem;
  font-weight: 500;
  color: #2563eb;
}

.service-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.service-body {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.service-meta {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: #64748b;
}

.service-chip {
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: var(--primary-soft);
  border: 1px solid #bfdbfe;
  color: #1e3a8a;
  font-size: 0.75rem;
}

.service-link {
  font-size: 0.8rem;
  color: var(--primary-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

/* Who / About helpers */

.who {
  background: #ffffff;
}

.who-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2rem;
}

.who-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.who-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  padding: 1rem;
  box-shadow: var(--shadow-card);
  font-size: 0.88rem;
}

.who-card-icon {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #e0f2fe;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
}

.who-card-title {
  font-size: 0.96rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.who-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  font-size: 0.8rem;
  color: #475569;
  margin-top: 1rem;
}

.who-fact-label {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #94a3b8;
  margin-bottom: 0.1rem;
}

.who-fact-value {
  font-weight: 600;
}

/* Steps */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.step-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  padding: 1rem;
  box-shadow: var(--shadow-card);
  font-size: 0.88rem;
}

.step-badge {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: #eff6ff;
  color: #1d4ed8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.82rem;
  margin-bottom: 0.5rem;
}

.step-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

/* Resources */

.resources {
  background: #f1f5f9;
}

.resources-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 1.5rem;
}

.resource-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  padding: 1rem;
  box-shadow: var(--shadow-card);
  font-size: 0.9rem;
}

.resource-card h3 {
  margin-top: 0;
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.resource-list {
  margin: 0.6rem 0 0;
  padding-left: 1.1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.resource-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.6rem;
}

.resource-chip {
  font-size: 0.75rem;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  background: #e0f2fe;
  color: #1e3a8a;
}

/* Careers */

.careers {
  background: radial-gradient(circle at top right, #e0f2fe, #eef2ff 40%, #f8fafc);
}

.career-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 1.75rem;
}

.role-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  font-size: 0.86rem;
}

.role-pill {
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: #ffffff;
  padding: 0.45rem 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.role-pill .label {
  font-size: 0.82rem;
  font-weight: 500;
}

.role-pill .dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
}

.career-card {
  background: #0f172a;
  border-radius: var(--radius-md);
  border: 1px solid rgba(148, 163, 184, 0.55);
  padding: 1rem;
  box-shadow: var(--shadow-soft);
  color: #e5e7eb;
  font-size: 0.9rem;
}

.career-card h3 {
  margin-top: 0;
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.career-card p {
  font-size: 0.86rem;
  color: #cbd5f5;
}

.career-meta {
  font-size: 0.8rem;
  color: #9ca3af;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
}

/* Contact / forms */

.contact {
  background: #020617;
  color: #e5e7eb;
}

.contact .section-header .section-title {
  color: #e5e7eb;
}

.contact .section-header .section-subtitle {
  color: #cbd5f5;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 1.75rem;
}

.contact-card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(148, 163, 184, 0.6);
  padding: 1rem;
  background: radial-gradient(circle at top left, #111827, #020617);
  box-shadow: var(--shadow-soft);
  font-size: 0.9rem;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0.8rem 0 0;
  font-size: 0.88rem;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.7rem;
}

.contact-icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.contact-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #94a3b8;
  margin-bottom: 0.1rem;
}

.contact-detail a {
  color: #bfdbfe;
}

.contact-form-card {
  background: rgba(15, 23, 42, 0.96);
  border-radius: var(--radius-md);
  border: 1px solid rgba(148, 163, 184, 0.7);
  padding: 1rem;
  box-shadow: var(--shadow-soft);
}

/* Apply layout */

.apply-page {
  background: #020617;
  color: #e5e7eb;
}

.apply-main {
  padding: 2.6rem 0 3.4rem;
}

.apply-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 1.75rem;
}

.callout {
  border-radius: var(--radius-md);
  border: 1px solid rgba(148, 163, 184, 0.6);
  padding: 1rem;
  background: linear-gradient(to bottom right, #020617, #020617);
  font-size: 0.9rem;
}

.callout ul {
  color: #cbd5f5;
}

/* Form elements */

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.85rem;
}

.form-group label {
  font-size: 0.78rem;
  color: #cbd5f5;
}

.form-group small {
  font-size: 0.7rem;
  color: #94a3b8;
}

.form-control,
select,
textarea {
  border-radius: 0.6rem;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.92);
  padding: 0.5rem 0.55rem;
  font-size: 0.86rem;
  color: #e5e7eb;
  outline: none;
  font-family: inherit;
  transition: border 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.form-control:focus,
select:focus,
textarea:focus {
  border-color: #38bdf8;
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.7);
  background: rgba(15, 23, 42, 1);
}

textarea {
  min-height: 100px;
  resize: vertical;
}

.form-row {
  margin-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: #cbd5f5;
}

.form-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.form-footer {
  margin-top: 0.9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: #94a3b8;
}

.preview-pill {
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  border: 1px dashed rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.9);
}

/* Footers */

.footer {
  background: #020617;
  border-top: 1px solid rgba(30, 64, 175, 0.7);
  color: #9ca3af;
  font-size: 0.78rem;
  padding: 1.5rem 0 1.9rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.footer-brand {
  font-size: 0.86rem;
  color: #e5e7eb;
}

.footer-nav-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9ca3af;
  margin-bottom: 0.5rem;
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-nav-list a {
  color: #e5e7eb;
  opacity: 0.85;
  font-size: 0.8rem;
}

.footer-nav-list a:hover {
  opacity: 1;
}

.footer-bottom {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.footer-links a {
  color: #cbd5f5;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  color: #e5e7eb;
}

.footer-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
}

/* Responsive */

@media (max-width: 960px) {
  .hero-inner,
  .who-grid,
  .resources-grid,
  .career-layout,
  .contact-grid,
  .apply-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-right {
    order: -1;
  }

  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .nav-links {
    position: fixed;
    inset: 56px 1.2rem auto;
    border-radius: 1rem;
    background: rgba(15, 23, 42, 0.98);
    padding: 0.7rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
    border: 1px solid rgba(148, 163, 184, 0.6);
    transform-origin: top right;
    transform: scale(0.96);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.16s ease, transform 0.16s ease;
  }

  body.nav-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-cta {
    display: none;
  }

  .services-grid,
  .who-cards,
  .steps-grid,
  .role-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .services-grid,
  .who-cards,
  .steps-grid,
  .role-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .form-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 3.1rem;
  }

  .header-inner {
    padding: 0.75rem 0;
  }

  .form-footer {
    flex-direction: column;
    align-items: stretch;
  }
}
