/* ─── Reset & Base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0a1628;
  --navy-2:     #112040;
  --navy-3:     #1a3060;
  --gold:       #d4922a;
  --gold-light: #f0aa40;
  --gold-pale:  rgba(212,146,42,0.12);
  --white:      #ffffff;
  --off-white:  #f8f9fc;
  --text:       #111827;
  --text-muted: #6b7280;
  --border:     #e5e7eb;
  --radius:     10px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --shadow:     0 4px 16px rgba(10,22,40,0.10);
  --shadow-lg:  0 12px 40px rgba(10,22,40,0.16);
  --max-width:  1180px;
  --ease:       cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── Utilities ─────────────────────────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.label--gold  { color: var(--gold); }
.label--white { color: rgba(255,255,255,0.55); }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-header p {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
}

/* ─── Buttons ───────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s var(--ease);
  white-space: nowrap;
  text-decoration: none;
}
.btn--gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,146,42,0.35);
}
.btn--dark {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn--dark:hover {
  background: var(--navy-3);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10,22,40,0.25);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}
.btn--outline-light {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.2);
}
.btn--outline-light:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn--large { padding: 17px 36px; font-size: 1rem; }
.btn--sm    { padding: 9px 18px; font-size: 0.8125rem; }

/* ─── Header ────────────────────────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.header.scrolled {
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.logo__wordmark {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #F5C300;
  line-height: 1;
}
/* Horizontal variant for fixed header — image + wordmark side by side */
.logo--nav {
  flex-direction: row;
  gap: 10px;
  align-items: center;
}
.logo--nav .logo__wordmark {
  font-size: 1.1875rem;
}

.logo__mark {
  width: 38px; height: 38px;
  background: var(--gold);
  color: var(--white);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.125rem;
  flex-shrink: 0;
  letter-spacing: -0.02em;
}
.logo__text {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav a {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav a:hover { color: var(--white); }
.nav__cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-weight: 600 !important;
  font-size: 0.875rem !important;
}
.nav__cta:hover { background: var(--gold-light) !important; }
.nav__login {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.15);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.nav__login:hover { color: var(--white); border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.07); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

/* ─── Hero ──────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--navy);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(26,48,96,0.9) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 10% 80%, rgba(212,146,42,0.08) 0%, transparent 60%),
    linear-gradient(135deg, var(--navy) 0%, #0d1e3e 50%, #091530 100%);
}

/* Decorative grid lines */
.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
}

/* Decorative circle */
.hero__bg::after {
  content: '';
  position: absolute;
  right: -200px;
  top: -200px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.04);
  box-shadow: inset 0 0 0 80px rgba(212,146,42,0.03);
}

.hero__inner {
  position: relative;
  z-index: 1;
  padding: 140px 32px 80px;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.hero__eyebrow {
  margin-bottom: 28px;
}

.alcumus-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,146,42,0.15);
  color: var(--gold-light);
  border: 1px solid rgba(212,146,42,0.3);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero__headline {
  display: flex;
  flex-direction: column;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.0;
  margin-bottom: 28px;
  color: var(--white);
}
.hero__headline-top {
  font-size: clamp(3rem, 6vw, 5.5rem);
  color: var(--white);
}
.hero__headline-bottom {
  font-size: clamp(3rem, 6vw, 5.5rem);
  color: rgba(255,255,255,0.55);
}
.hero__headline-bottom em {
  font-style: normal;
  color: var(--gold-light);
}

.hero__desc {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: rgba(255,255,255,0.6);
  max-width: 540px;
  line-height: 1.75;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Stats bar at bottom of hero */
.hero__stats {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.05);
  border-top: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(4px);
}

.stats-row {
  display: flex;
  align-items: stretch;
  padding: 0;
}

.stat {
  flex: 1;
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat strong {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}
.stat span {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
}
.stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.1);
  align-self: stretch;
  margin: 16px 0;
}

/* ─── Intro ─────────────────────────────────────────────────────────────────── */
.intro {
  padding: 112px 0;
  background: var(--white);
}
.intro__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro__text .label { display: block; }
.intro__text h2 {
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 24px;
}
.intro__text p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.intro__text p strong { color: var(--navy); }
.intro__text .btn { margin-top: 12px; }

.intro__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.intro__blob {
  position: absolute;
  width: 300px; height: 300px;
  background: var(--gold-pale);
  border-radius: 50%;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
  filter: blur(40px);
}

.intro__card {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.intro__card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow);
}
.intro__card--1 { margin-left: 0; }
.intro__card--2 { margin-left: 28px; }
.intro__card--3 { margin-left: 0; }

.intro__card-icon {
  width: 50px; height: 50px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  flex-shrink: 0;
}
.intro__card strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}
.intro__card span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ─── Services ──────────────────────────────────────────────────────────────── */
.services {
  padding: 112px 0;
  background: var(--off-white);
  border-top: 1px solid var(--border);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.service-card {
  background: var(--white);
  padding: 32px 28px;
  position: relative;
  transition: background 0.2s;
}
.service-card:hover { background: var(--navy); }
.service-card:hover .service-card__num { color: rgba(255,255,255,0.15); }
.service-card:hover .service-card__icon { background: rgba(212,146,42,0.15); color: var(--gold-light); }
.service-card:hover h3 { color: var(--white); }
.service-card:hover p  { color: rgba(255,255,255,0.55); }

.service-card__num {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--border);
  margin-bottom: 18px;
  transition: color 0.2s;
}
.service-card__icon {
  width: 50px; height: 50px;
  background: rgba(10,22,40,0.06);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  margin-bottom: 18px;
  transition: background 0.2s, color 0.2s;
}
.service-card h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  transition: color 0.2s;
}
.service-card p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.6;
  transition: color 0.2s;
}

/* ─── How It Works ──────────────────────────────────────────────────────────── */
.how-it-works {
  padding: 112px 0;
  background: var(--navy);
}
.how-it-works .section-header h2 { color: var(--white); }
.how-it-works .section-header p  { color: rgba(255,255,255,0.5); }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.step {
  padding: 48px 40px;
  background: rgba(255,255,255,0.03);
  transition: background 0.2s;
}
.step:hover { background: rgba(255,255,255,0.06); }
.step__number {
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.07);
  line-height: 1;
  margin-bottom: 20px;
}
.step__content h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.step__content p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

/* ─── CTA Band ──────────────────────────────────────────────────────────────── */
.cta-band {
  background: var(--gold);
  padding: 56px 0;
}
.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.cta-band p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
}
.cta-band .btn--gold {
  background: var(--white);
  color: var(--gold);
  border-color: var(--white);
  flex-shrink: 0;
}
.cta-band .btn--gold:hover {
  background: var(--off-white);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* ─── Join Network ──────────────────────────────────────────────────────────── */
.join-network {
  padding: 96px 0;
  background: var(--off-white);
  border-top: 1px solid var(--border);
}
.join-network__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.join-network__content .label { display: block; }
.join-network__content h2 {
  font-size: clamp(1.75rem, 2.5vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.join-network__content p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
}
.join-network__actions { display: flex; gap: 12px; flex-wrap: wrap; }

.join-network__steps {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.join-step {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.join-step:hover { box-shadow: var(--shadow); transform: translateX(4px); }
.join-step__num {
  width: 36px; height: 36px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 800;
  flex-shrink: 0;
}
.join-step strong { display: block; font-size: 0.9375rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.join-step span   { font-size: 0.8125rem; color: var(--text-muted); }

@media (max-width: 900px) {
  .join-network__inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ─── Quote Form ────────────────────────────────────────────────────────────── */
.quote {
  padding: 112px 0;
  background: var(--off-white);
  border-top: 1px solid var(--border);
}

.quote-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 52px 56px;
  max-width: 880px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}

fieldset {
  border: none;
  margin-bottom: 40px;
}
legend {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  width: 100%;
  margin-bottom: 24px;
  display: block;
}

.form-row { display: flex; gap: 20px; }
.form-row--2 > * { flex: 1; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
}
.form-group:last-child { margin-bottom: 0; }

label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
}
.required { color: var(--gold); }

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="password"],
select,
textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(10,22,40,0.07);
}
input::placeholder, textarea::placeholder { color: #c0c8d8; }
textarea { resize: vertical; min-height: 130px; }

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}

.file-upload {
  position: relative;
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s, background 0.2s;
  cursor: pointer;
  overflow: hidden;
}
.file-upload:hover, .file-upload.drag-over {
  border-color: var(--navy);
  background: rgba(10,22,40,0.02);
}
.file-upload input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}
.file-upload__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  text-align: center;
  color: var(--text-muted);
  gap: 6px;
  pointer-events: none;
}
.file-upload__content svg { color: var(--border); margin-bottom: 6px; }
.file-upload__content p { font-size: 0.9375rem; }
.file-upload__content p strong { color: var(--navy); }
.file-upload__content span { font-size: 0.8125rem; color: #a0aec0; }
.file-upload__files {
  padding: 0 16px 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.file-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(10,22,40,0.05);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 0.8rem;
  color: var(--navy);
  font-weight: 500;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 8px;
}
.form-note { font-size: 0.8rem; color: var(--text-muted); }

.form-success {
  text-align: center;
  padding: 56px 24px;
}
.form-success svg { color: #16a34a; margin: 0 auto 20px; }
.form-success h3 { font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.form-success p { color: var(--text-muted); }

/* ─── Footer ────────────────────────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
  padding: 72px 32px 56px;
}
.footer__brand .logo { margin-bottom: 16px; }
.footer__brand p {
  font-size: 0.875rem;
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 20px;
}
.footer__accreditation {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.03em;
}
.footer__links h4,
.footer__contact h4 {
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}
.footer__links ul { display: flex; flex-direction: column; gap: 11px; }
.footer__links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--white); }
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer__contact a:not(.btn) {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer__contact a:not(.btn):hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  padding-bottom: 22px;
  font-size: 0.8125rem;
}

/* ─── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .intro__inner { grid-template-columns: 1fr; gap: 48px; }
  .intro__visual { max-width: 480px; }
  .intro__card--2 { margin-left: 0; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  /* Always show a solid header on mobile so the nav toggle is always visible */
  .header {
    background: rgba(10,22,40,0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(255,255,255,0.06);
  }
  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--navy);
    padding: 28px 24px;
    gap: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    z-index: 99;
  }
  .nav-toggle { display: flex; }
  .steps { grid-template-columns: 1fr; }
  .stats-row { flex-direction: column; }
  .stat { padding: 20px 24px; }
  .stat-divider { width: 100%; height: 1px; margin: 0; }
  .footer__inner { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
  .form-row { flex-direction: column; }
  .quote-form { padding: 32px 24px; }
  .cta-band__inner { flex-direction: column; text-align: center; }
  .hero__inner { padding-top: 100px; padding-left: 20px; padding-right: 20px; }
}

@media (max-width: 600px) {
  .services__grid { grid-template-columns: 1fr; }
  /* Scale headline down further on very small screens to avoid overflow */
  .hero__headline-top,
  .hero__headline-bottom { font-size: clamp(2.25rem, 9vw, 3rem); }
  .hero__inner { padding-top: 90px; padding-bottom: 40px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .form-footer { flex-direction: column; align-items: stretch; }
  .form-footer .btn { width: 100%; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   JOBS SYSTEM & INVITE STYLES
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Logo image (replaces lettermark) ─────────────────────────────────────── */
.logo-img {
  height: 36px;
  width: auto;
  display: block;
}
.logo { display: inline-flex; flex-direction: column; align-items: center; gap: 6px; }

/* ─── Status badges ─────────────────────────────────────────────────────────── */
.status-badge, .priority-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 20px;
  white-space: nowrap;
}
.badge--pending     { background: rgba(251,191,36,0.15);  color: #b45309; }
.badge--inprogress  { background: rgba(59,130,246,0.12);  color: #1d4ed8; }
.badge--completed   { background: rgba(22,163,74,0.12);   color: #15803d; }
.badge--cancelled   { background: rgba(156,163,175,0.15); color: #6b7280; }
.badge--low         { background: rgba(156,163,175,0.15); color: #6b7280; }
.badge--medium      { background: rgba(251,191,36,0.15);  color: #b45309; }
.badge--high        { background: rgba(249,115,22,0.12);  color: #c2410c; }
.badge--urgent      { background: rgba(239,68,68,0.12);   color: #b91c1c; }

.overdue   { color: #b91c1c; font-weight: 600; }
.due-today { color: #c2410c; font-weight: 600; }
.due-soon  { color: #b45309; font-weight: 600; }

/* ─── Modal overlay ─────────────────────────────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,22,40,0.65);
  backdrop-filter: blur(4px);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.open { display: flex; }

.modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 660px;
  max-height: 90vh;
  overflow-y: auto;
  animation: modalIn 0.2s var(--ease);
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to   { opacity: 1; transform: none; }
}
.modal--sm { max-width: 440px; }

.modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px 20px;
  border-bottom: 1px solid var(--border);
}
.modal__header h3 { font-size: 1.125rem; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; }
.modal__close {
  width: 32px; height: 32px;
  background: var(--off-white);
  border: none; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  transition: background 0.15s, color 0.15s;
  flex-shrink: 0;
}
.modal__close:hover { background: var(--border); color: var(--navy); }
.modal__body  { padding: 24px 28px; }
.modal__footer {
  padding: 16px 28px 24px;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  border-top: 1px solid var(--border);
}

/* ─── Category pill grid (job modal) ───────────────────────────────────────── */
.cat-pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}
.cat-pill {
  padding: 5px 13px;
  border-radius: 20px;
  border: 1.5px solid var(--border);
  background: transparent;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.15s;
  font-family: inherit;
  line-height: 1.3;
}
.cat-pill:hover  { border-color: var(--navy); color: var(--navy); }
.cat-pill.active { background: var(--navy); border-color: var(--navy); color: #fff; }

/* ─── Jobs table ────────────────────────────────────────────────────────────── */
.jobs-toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.jobs-toolbar .filter-tabs { display: flex; gap: 4px; flex-wrap: wrap; }
.filter-tab {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.15s;
}
.filter-tab:hover  { border-color: var(--navy); color: var(--navy); }
.filter-tab.active { background: var(--navy); border-color: var(--navy); color: var(--white); }
.jobs-toolbar .spacer { flex: 1; }

.jobs-table-wrap { overflow-x: auto; }
.jobs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.jobs-table th {
  text-align: left;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  padding: 10px 14px;
  border-bottom: 2px solid var(--border);
  white-space: nowrap;
}
.jobs-table td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  vertical-align: middle;
}
.jobs-table tr:last-child td { border-bottom: none; }
.jobs-table tbody tr { transition: background 0.12s; cursor: pointer; }
.jobs-table tbody tr:hover { background: var(--off-white); }
.jobs-table .job-num   { font-weight: 700; color: var(--navy); font-family: monospace; font-size: 0.8125rem; }
.jobs-table .job-title { font-weight: 600; color: var(--navy); }
.jobs-table .job-addr  { color: var(--text-muted); font-size: 0.8125rem; max-width: 200px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.jobs-table .job-actions { display: flex; gap: 6px; }
.jobs-table .job-actions button {
  background: none; border: 1px solid var(--border);
  border-radius: 6px; padding: 4px 10px;
  font-size: 0.75rem; font-weight: 600; cursor: pointer;
  color: var(--text-muted); transition: all 0.12s;
}
.jobs-table .job-actions button:hover { border-color: var(--navy); color: var(--navy); background: var(--off-white); }
.jobs-table .job-actions .btn-danger:hover { border-color: #dc2626; color: #dc2626; }

/* ─── Jobs table — responsive column hiding ────────────────────────────────── */
/* On medium desktops/tablets: drop Assigned To (visible in detail panel) */
@media (max-width: 1100px) {
  .jobs-table .col-assigned { display: none; }
  .jobs-table td { padding: 10px 10px; }
  .jobs-table th { padding: 8px 10px; }
}
/* On small tablets: also drop Priority and tighten Address */
@media (max-width: 820px) {
  .jobs-table .col-priority { display: none; }
  .jobs-table .col-addr { max-width: 140px; }
}
/* On mobile: card layout — each row becomes its own block card */
@media (max-width: 600px) {
  .jobs-table-wrap { overflow-x: visible; }
  .jobs-table thead { display: none; }
  .jobs-table,
  .jobs-table tbody,
  .jobs-table tr,
  .jobs-table td { display: block; width: 100%; box-sizing: border-box; }
  .jobs-table tr {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 10px;
    padding: 0;
    overflow: hidden;
    cursor: pointer;
  }
  .jobs-table tr:last-child td { border-bottom: none; }
  .jobs-table td {
    padding: 8px 14px;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    font-size: 0.875rem;
  }
  /* Label prefix from data-label attribute */
  .jobs-table td[data-label]::before {
    content: attr(data-label);
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-bottom: 3px;
  }
  /* Hide assigned and due on mobile — show status + title + ref is enough */
  .jobs-table .col-assigned,
  .jobs-table .col-priority,
  .jobs-table .col-addr { display: block; } /* re-show addr on mobile cards */
  /* Address is useful in card view; restore display */
  .jobs-table .col-addr { max-width: 100%; white-space: normal; }
  /* Actions: show inline at bottom of card */
  .jobs-table .col-actions { background: var(--off-white); }
}

/* ─── Job detail slide-in panel ─────────────────────────────────────────────── */
.job-detail-panel {
  display: none;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  margin-top: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.job-detail-panel.open { display: block; }
.job-detail-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--off-white);
}
.job-detail-panel__header h3 { font-size: 1rem; font-weight: 800; color: var(--navy); letter-spacing: -0.01em; }
.job-detail-panel__body { padding: 24px; }
.job-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
@media (max-width: 900px) { .job-detail-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .job-detail-grid { grid-template-columns: 1fr; } }
.job-detail-field label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.job-detail-field span {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy);
  word-break: break-word;
}
.job-detail-field span.muted { color: var(--text-muted); font-weight: 400; }

/* ─── Contact detail drawer ─────────────────────────────────────────────────── */
/* ─── Contact drawer backdrop ─────────────────────────────────────────────── */
/* Backdrop catches outside-clicks to close the drawer but does NOT darken/blur
   the contacts grid — contacts stay fully visible while the drawer is open.    */
.contact-drawer-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: transparent;
  z-index: 1100;
}
.contact-drawer-backdrop.open { display: block; }

/* ─── Contact drawer (right-side slide-in) ────────────────────────────────── */
.contact-drawer {
  position: fixed;
  top: 0;
  right: -540px;
  width: 540px;
  max-width: 100vw;
  height: 100vh;
  overflow-y: auto;
  background: var(--white);
  /* Stronger shadow so the drawer reads as elevated without a page overlay */
  box-shadow: -8px 0 48px rgba(10,22,40,0.22), -2px 0 0 rgba(10,22,40,0.06);
  z-index: 1101;
  transition: right 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.contact-drawer.open { right: 0; }

@media (max-width: 580px) {
  .contact-drawer { width: 100vw; right: -100vw; }
  .contact-drawer.open { right: 0; }
}

.contact-drawer__header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--off-white);
}
.contact-drawer__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--white);
  flex-shrink: 0;
}
.contact-drawer__title { flex: 1; min-width: 0; }
.contact-drawer__title h3 {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.contact-drawer__title p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 1px;
}
.contact-drawer__actions { display: flex; gap: 8px; flex-shrink: 0; }

/* Inline type selector in the drawer header and on contact cards */
.contact-type-select {
  appearance: none;
  -webkit-appearance: none;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 3px 22px 3px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  background-color: var(--off-white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 7px center;
  transition: border-color 0.15s, background-color 0.15s;
  color: var(--navy);
  max-width: 160px;
}
.contact-type-select:hover  { border-color: var(--gold); }
.contact-type-select:focus  { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,146,42,0.15); }
.contact-type-select.type--court_manager { background-color: rgba(59,130,246,0.07); border-color: rgba(59,130,246,0.3); color: #1d4ed8; }
.contact-type-select.type--tradesperson  { background-color: rgba(22,163,74,0.07);  border-color: rgba(22,163,74,0.3);  color: #15803d; }
.contact-type-select.type--general       { background-color: rgba(107,114,128,0.07);border-color: rgba(107,114,128,0.3);color: #4b5563; }

/* Inline type select on contact cards */
.contact-card__type-select {
  appearance: none;
  -webkit-appearance: none;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 2px 18px 2px 8px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 5px center;
  color: inherit;
}
.contact-card__type-select:focus  { outline: none; }
.contact-card__type-select.contact-card__type--cm  { background-color: rgba(59,130,246,0.08);  color: #1d4ed8; border-color: rgba(59,130,246,0.25); }
.contact-card__type-select.contact-card__type--tp  { background-color: rgba(22,163,74,0.08);   color: #15803d; border-color: rgba(22,163,74,0.25); }
.contact-card__type-select.contact-card__type--gen { background-color: rgba(107,114,128,0.08); color: #4b5563; border-color: rgba(107,114,128,0.25); }

.contact-drawer__body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.contact-drawer__info {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cd-info-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cd-info-row label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}
.cd-info-row span, .cd-info-row a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  word-break: break-all;
}
.cd-info-row a { color: var(--gold); text-decoration: none; }
.cd-info-row a:hover { text-decoration: underline; }

.contact-drawer__jobs {
  display: flex;
  flex-direction: column;
}
.contact-drawer__jobs-header {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.contact-drawer__jobs-header h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy);
}
.cd-job-list { flex: 1; }
.cd-job-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.12s;
}
.cd-job-row:last-child { border-bottom: none; }
.cd-job-row:hover { background: var(--off-white); }
.cd-job-ref {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  width: 76px;
  flex-shrink: 0;
}
.cd-job-title {
  flex: 1;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cd-job-meta { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.cd-job-tp {
  font-size: 0.75rem;
  color: var(--text-muted);
  white-space: nowrap;
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cd-no-jobs {
  padding: 32px 24px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* ─── Call sheet ─────────────────────────────────────────────────────────────── */
.call-sheet-section {
  border-top: 1px solid var(--border);
  padding: 20px 24px 24px;
  background: var(--off-white);
}
.call-sheet-section h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.call-sheet-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-family: 'Inter', monospace;
  font-size: 0.8125rem;
  line-height: 1.7;
  color: var(--navy);
  white-space: pre-wrap;
  word-break: break-word;
  max-height: 320px;
  overflow-y: auto;
}
.call-sheet-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

@media print {
  body > *:not(#print-area) { display: none !important; }
  #print-area {
    display: block !important;
    font-family: 'Inter', sans-serif;
    font-size: 11pt;
    line-height: 1.6;
    color: #000;
    padding: 20mm;
    white-space: pre-wrap;
  }
}
#print-area { display: none; }

/* ─── Assign tradespeople section ───────────────────────────────────────────── */
.assign-section { border-top: 1px solid var(--border); padding-top: 20px; margin-top: 8px; }
.assign-section h4 { font-size: 0.875rem; font-weight: 800; color: var(--navy); margin-bottom: 14px; letter-spacing: -0.01em; }
.assign-list { display: flex; flex-direction: column; gap: 8px; }
.assign-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.875rem;
  transition: border-color 0.15s;
}
.assign-item.assigned { border-color: #22c55e; background: rgba(22,163,74,0.04); }
.assign-item__avatar {
  width: 32px; height: 32px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 800; color: var(--gold);
  flex-shrink: 0;
}
.assign-item__info { flex: 1; min-width: 0; }
.assign-item__info strong { display: block; font-weight: 700; color: var(--navy); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.assign-item__info span  { font-size: 0.75rem; color: var(--text-muted); }
.assign-item__btn {
  padding: 5px 12px; border-radius: 6px;
  font-size: 0.75rem; font-weight: 700;
  cursor: pointer; border: 1.5px solid; transition: all 0.15s;
  flex-shrink: 0;
}
.assign-item__btn--add    { border-color: var(--navy); color: var(--navy); background: var(--white); }
.assign-item__btn--add:hover { background: var(--navy); color: var(--white); }
.assign-item__btn--remove { border-color: #dc2626; color: #dc2626; background: var(--white); }
.assign-item__btn--remove:hover { background: #dc2626; color: var(--white); }

/* ─── Invite system ─────────────────────────────────────────────────────────── */
.invite-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.875rem;
}
.invite-row .invite-email { flex: 1; font-weight: 600; color: var(--navy); }
.invite-row .invite-date  { font-size: 0.75rem; color: var(--text-muted); }
.invite-status {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.invite-status--pending  { background: rgba(251,191,36,0.15); color: #b45309; }
.invite-status--accepted { background: rgba(22,163,74,0.12);  color: #15803d; }
.invite-status--expired  { background: rgba(156,163,175,0.15); color: #6b7280; }

/* ─── Tradesperson portal job cards ─────────────────────────────────────────── */
.tp-jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}
.tp-job-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  transition: border-color 0.15s, box-shadow 0.15s;
  cursor: pointer;
}
.tp-job-card:hover { border-color: var(--gold); box-shadow: 0 4px 20px rgba(212,146,42,0.1); }
.tp-job-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
}
.tp-job-card__num  { font-size: 0.75rem; font-weight: 700; color: var(--gold); font-family: monospace; letter-spacing: 0.04em; }
.tp-job-card__title { font-size: 1rem; font-weight: 800; color: var(--navy); letter-spacing: -0.01em; margin-bottom: 6px; line-height: 1.3; }
.tp-job-card__addr {
  display: flex;
  gap: 6px;
  align-items: flex-start;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.tp-job-card__addr svg { flex-shrink: 0; margin-top: 2px; }
.tp-job-card__meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.tp-job-card__due { font-size: 0.75rem; font-weight: 600; color: var(--text-muted); margin-left: auto; }

/* Job detail modal on tradesperson portal */
.tp-job-detail-field { margin-bottom: 16px; }
.tp-job-detail-field label { display: block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 4px; }
.tp-job-detail-field p { font-size: 0.9375rem; font-weight: 500; color: var(--navy); }

/* ─── Empty state ────────────────────────────────────────────────────────────── */
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
  text-align: center;
  color: var(--text-muted);
}
.empty-state svg { opacity: 0.25; margin-bottom: 16px; }
.empty-state h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.empty-state p  { font-size: 0.875rem; max-width: 320px; }
