/* Bailey's Moving & Storage — Hiring pages (mobile-first) */

:root {
  --blue: #1b437b;
  --blue-dark: #143264;
  --blue-muted: #2a5494;
  --orange: #ee7b22;
  --orange-dark: #d96a10;
  --text: #1a2332;
  --text-light: #5a6578;
  --text-muted: #8b95a5;
  --page-bg: #eef2f7;
  --bg-light: #f4f7fb;
  --surface: #ffffff;
  --border: #d8dee9;
  --border-strong: #c5cedb;
  --white: #ffffff;
  --gold: #f59e0b;
  --error: #b42318;
  --error-bg: #fef3f2;
  --success: #067647;
  --success-bg: #ecfdf3;
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(20, 50, 100, 0.06);
  --shadow-card: 0 4px 24px rgba(20, 50, 100, 0.08);
  --shadow-form: 0 8px 32px rgba(20, 50, 100, 0.1);
  --shadow-raised: 0 12px 40px rgba(20, 50, 100, 0.12);
  --header-h: 72px;
  --page-gutter: clamp(1.125rem, 4vw, 2rem);
  --section-gap: clamp(2rem, 5vw, 3.5rem);
  --max-w: 1180px;
  --touch: 3rem;
  --focus-ring: 0 0 0 3px rgba(27, 67, 123, 0.18);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body.baileys-hiring {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body.page-apply {
  background: var(--page-bg);
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0.875rem var(--page-gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-link {
  display: none;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
}

.header-link--muted {
  color: var(--text-light);
  font-weight: 500;
}

.header-link:hover,
.header-link--muted:hover {
  color: var(--orange);
}

.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: var(--touch);
  padding: 0 0.875rem;
  background: var(--orange);
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}

.btn-phone:hover {
  background: var(--orange-dark);
}

.icon-phone {
  flex-shrink: 0;
}

/* —— Main —— */
.site-main {
  flex: 1;
}

.page-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--section-gap) var(--page-gutter);
}

.page-wrap--narrow {
  max-width: 36rem;
}

/* —— Hero (home) —— */
.hero {
  position: relative;
  min-height: 0;
  padding: clamp(2.5rem, 6vw, 4rem) var(--page-gutter);
  background-color: var(--blue-dark);
  background-image: linear-gradient(
      115deg,
      rgba(20, 50, 100, 0.94) 0%,
      rgba(27, 67, 123, 0.82) 55%,
      rgba(27, 67, 123, 0.7) 100%
    ),
    var(--hero-bg, none);
  background-size: cover;
  background-position: center;
}

.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

.hero h1 {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.hero h1 .accent {
  color: var(--orange);
}

.hero__lead {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 1.25rem;
  max-width: 32rem;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.hero__badge {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--white);
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
}

/* —— Page band (subpages) —— */
.page-band {
  background: linear-gradient(100deg, var(--blue) 0%, var(--blue-dark) 100%);
  padding: 1.5rem 1rem;
  color: var(--white);
}

.page-band__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.page-band .eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange);
  margin-bottom: 0.35rem;
}

.page-band h1 {
  font-size: clamp(1.35rem, 4vw, 1.85rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
}

.page-band .sub {
  margin-top: 0.5rem;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.88);
}

/* —— Trust strip —— */
.trust-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem var(--page-gutter);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: var(--shadow-sm);
}

.page-apply .trust-strip {
  position: relative;
  z-index: 2;
  margin-top: -1px;
}

.trust-strip__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-width: min-content;
}

.trust-strip__item {
  flex-shrink: 0;
  text-align: center;
  padding: 0.25rem 1.25rem;
  border-right: 1px solid var(--border);
}

.trust-strip__item:last-child {
  border-right: none;
}

a.trust-strip__item--link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

a.trust-strip__item--link:hover,
a.trust-strip__item--link:focus-visible {
  text-decoration: none;
  color: inherit;
}

a.trust-strip__item--link:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.trust-strip__logo {
  height: 40px;
  width: auto;
  display: block;
  margin: 0 auto;
}

.trust-strip__stat {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
}

.trust-strip__label {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-light);
  margin-top: 0.25rem;
}

/* —— Section typography —— */
.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange);
  margin-bottom: 0.35rem;
}

h2.section-title {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.lead {
  color: var(--text-light);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

/* —— Cards —— */
.content-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: var(--shadow-card);
}

.content-card--form {
  border-left: 4px solid var(--orange);
  box-shadow: var(--shadow-form);
}

.content-card h1 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.loading-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem 1rem;
  text-align: center;
}

.loading-indicator--inline {
  flex-direction: row;
  padding: 0.75rem 0;
  justify-content: flex-start;
}

.loading-indicator__text {
  color: var(--text-light);
  font-size: 0.95rem;
}

.loading-spinner {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  border: 3px solid rgba(0, 82, 155, 0.15);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: loading-spin 0.75s linear infinite;
}

.loading-indicator--inline .loading-spinner {
  width: 1.25rem;
  height: 1.25rem;
  border-width: 2px;
}

@keyframes loading-spin {
  to {
    transform: rotate(360deg);
  }
}

.btn.is-loading {
  position: relative;
  color: transparent !important;
  pointer-events: none;
}

.btn.is-loading::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 1.125rem;
  height: 1.125rem;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: loading-spin 0.75s linear infinite;
}

.schedule-shell.is-busy {
  opacity: 0.65;
  pointer-events: none;
}

/* —— Job list —— */
.job-grid {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.job-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius-lg);
  padding: 1rem 1.125rem;
  min-height: var(--touch);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.job-card:hover,
.job-card:focus-visible {
  border-left-color: var(--blue);
  box-shadow: var(--shadow-card);
  outline: none;
}

.job-card__title {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 0.25rem;
}

.job-card__meta {
  font-size: 0.875rem;
  color: var(--text-light);
  font-weight: 500;
}

.job-card__cta {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--orange);
}

/* —— Forms —— */
.field {
  margin-bottom: 1.125rem;
}

.field label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text);
  margin-bottom: 0.375rem;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: var(--touch);
  padding: 0.8125rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  color: var(--text);
  background: var(--surface);
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-sm);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231b437b' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.75rem;
  cursor: pointer;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: var(--focus-ring);
}

.field textarea {
  min-height: 6rem;
  resize: vertical;
}

.hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

.captcha-wrap {
  margin-bottom: 1rem;
  overflow-x: auto;
}

.form-note {
  font-size: 0.8125rem;
  color: var(--text-light);
  margin-top: 0.75rem;
  line-height: 1.5;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--touch);
  padding: 0 1.5rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.15s, transform 0.12s, box-shadow 0.15s;
}

.btn-primary {
  width: 100%;
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(238, 123, 34, 0.35);
}

.btn-primary:hover:not(:disabled) {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(238, 123, 34, 0.4);
}

.btn-primary:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.btn-secondary {
  background: var(--white);
  color: var(--blue);
  border: 2px solid var(--blue);
}

.btn-secondary:hover {
  background: var(--bg-light);
}

/* —— Alerts —— */
.alert {
  padding: 0.875rem 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.alert-error {
  background: var(--error-bg);
  color: var(--error);
  border: 1px solid #fecdca;
}

.alert-success {
  background: var(--success-bg);
  color: var(--success);
  border: 1px solid #abefc6;
}

/* —— Schedule (Calendly-style) —— */
.schedule-page .page-wrap--narrow {
  max-width: 52rem;
  padding-bottom: 6rem;
}

.schedule-success {
  scroll-margin-top: 1rem;
}

.schedule-confirmation-details {
  margin: 0 0 1.25rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.schedule-confirmation-details__row {
  display: grid;
  grid-template-columns: minmax(5.5rem, 7rem) 1fr;
  gap: 0.5rem 1rem;
  align-items: start;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border);
}

.schedule-confirmation-details__row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.schedule-confirmation-details__row dt {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-light);
}

.schedule-confirmation-details__row dd {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.45;
}

.schedule-confirmation-details__row--multiline dd {
  font-weight: 500;
  white-space: pre-wrap;
}

.schedule-success__actions {
  margin-bottom: 1rem;
}

.schedule-success__foot--muted {
  margin-bottom: 0;
  font-size: 0.875rem;
}

@media (max-width: 480px) {
  .schedule-confirmation-details__row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
}

.schedule-page--calendly .page-band {
  display: none;
}

.schedule-shell {
  display: grid;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

@media (min-width: 768px) {
  .schedule-shell {
    grid-template-columns: minmax(260px, 34%) minmax(0, 1fr);
    min-height: 26rem;
  }
}

.schedule-sidebar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 1.25rem;
}

@media (min-width: 768px) {
  .schedule-sidebar {
    border-bottom: none;
    border-right: 1px solid var(--border);
    padding: 2rem 1.5rem;
  }
}

.schedule-sidebar__eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

.schedule-sidebar__title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.schedule-sidebar__job {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.schedule-sidebar__location {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.875rem;
  line-height: 1.45;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.schedule-sidebar__location-icon {
  flex-shrink: 0;
  font-size: 1rem;
  line-height: 1.2;
}

.schedule-sidebar__hint {
  font-size: 0.8125rem;
  color: var(--text-light);
  line-height: 1.5;
}

.schedule-sidebar__interview {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.schedule-sidebar__tz {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 0.75rem;
  font-style: italic;
}

.schedule-picker {
  padding: 1.25rem 1.25rem 1.5rem;
}

@media (min-width: 768px) {
  .schedule-picker {
    padding: 1.75rem 2rem 2rem;
  }
}

.schedule-picker__heading {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
}

.cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.cal-nav__label {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--blue);
}

.cal-nav__btn {
  min-width: var(--touch);
  min-height: 2.25rem;
  padding: 0 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-family: inherit;
  font-size: 1.125rem;
  color: var(--blue);
  cursor: pointer;
}

.cal-nav__btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.25rem;
  text-align: center;
}

.cal-grid__dow {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-light);
  padding: 0.35rem 0;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: var(--text-light);
  cursor: default;
  font-family: inherit;
}

.cal-day--empty {
  visibility: hidden;
}

.cal-day--available {
  color: var(--blue);
  cursor: pointer;
}

.cal-day--available:hover {
  background: rgba(30, 64, 175, 0.08);
}

.cal-day--selected {
  background: var(--blue);
  color: var(--white);
}

.cal-day--selected:hover {
  background: var(--blue-dark);
}

.cal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 1rem;
  padding: 0;
  border: none;
  background: none;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue);
  cursor: pointer;
}

.cal-selected-day {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 0.75rem;
}

.slot-days {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.slot-day h2 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

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

@media (min-width: 769px) {
  .slot-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .slot-list {
    grid-template-columns: 1fr;
  }

  .slot-btn {
    min-height: var(--touch);
    padding: 0.875rem 1rem;
    font-size: 1rem;
  }
}

.slot-btn {
  width: 100%;
  min-height: 2.75rem;
  padding: 0.625rem 0.5rem;
  text-align: center;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--blue);
  background: var(--white);
  border: 2px solid var(--blue);
  border-radius: var(--radius-sm);
  cursor: pointer;
  white-space: nowrap;
}

.slot-btn:hover {
  background: rgba(30, 64, 175, 0.06);
}

.slot-btn.selected {
  border-color: var(--orange);
  background: rgba(238, 123, 34, 0.08);
  color: var(--blue);
}

.slot-btn:disabled {
  opacity: 0.55;
  cursor: default;
}

.schedule-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 0.75rem 1rem;
  padding-bottom: max(0.75rem, env(safe-area-inset-bottom));
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

.schedule-bar .btn-primary {
  max-width: 36rem;
  margin: 0 auto;
}

/* —— Footer —— */
.site-footer {
  background: var(--blue);
  color: var(--white);
  margin-top: auto;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2.75rem var(--page-gutter) 1.75rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.footer-logo {
  margin-bottom: 0.75rem;
}

.footer-tagline {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.footer-meta {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-heading {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.5rem;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.9375rem;
  margin-bottom: 0.35rem;
  min-height: 2rem;
  line-height: 2rem;
}

.footer-col a:hover {
  color: var(--orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 1rem;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

/* —— Tablet+ —— */
@media (min-width: 600px) {
  .logo-img {
    height: 44px;
  }

  .header-link {
    display: inline;
  }

  .btn-phone {
    font-size: 0.9375rem;
    padding: 0 1rem;
  }

  .hero {
    min-height: 420px;
    padding: clamp(3rem, 6vw, 4.5rem) var(--page-gutter);
    display: flex;
    align-items: center;
  }

  .page-wrap {
    padding: var(--section-gap) var(--page-gutter) calc(var(--section-gap) + 1rem);
  }

  .footer-inner {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .hero {
    min-height: 480px;
  }

  .page-wrap--split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
    max-width: var(--max-w);
  }
}

/* —— Apply page —— */
.page-apply .site-main {
  padding-bottom: 0;
}

.hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.apply-hero {
  min-height: clamp(340px, 55vh, 520px);
  padding: clamp(2.75rem, 7vw, 4.5rem) var(--page-gutter);
  display: flex;
  align-items: center;
}

.apply-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-dark) 100%);
}

.apply-hero h1 {
  max-width: 16ch;
  margin-bottom: 1rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.hero__lead {
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.hero__meta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
  max-width: 38rem;
}

.hero__pay,
.hero__location {
  margin: 0;
  padding: 0.875rem 1.125rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(8px);
  font-size: 0.9375rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
}

.hero__location {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero__location-label {
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--orange);
}

.hero__location-value {
  font-weight: 500;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--touch);
  padding: 0 1.5rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  transition: background 0.15s, border-color 0.15s, transform 0.12s;
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: var(--white);
  transform: translateY(-1px);
}

/* Content area */
.apply-body {
  background: var(--page-bg);
  padding: var(--section-gap) 0;
}

.apply-layout {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--page-gutter);
  display: flex;
  flex-direction: column;
  gap: var(--section-gap);
}

.apply-layout__main {
  display: flex;
  flex-direction: column;
  gap: var(--section-gap);
  min-width: 0;
}

/* Form panel */
.apply-form-section {
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

.apply-form-section__title {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 800;
  color: var(--blue);
  text-align: center;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.apply-form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-form);
  position: relative;
  overflow: hidden;
}

.apply-form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-dark));
}

.apply-form-card .btn-primary {
  margin-top: 0.5rem;
  font-size: 1.0625rem;
  min-height: 3.25rem;
}

.apply-form-card .field {
  margin-bottom: 1.25rem;
}

.apply-form-card #form-alert:not([hidden]) {
  margin-bottom: 1.25rem;
}

.apply-form-card .field:last-of-type {
  margin-bottom: 0;
}

.req {
  color: var(--orange);
  font-weight: 700;
}

.field-checkbox {
  padding: 1rem 1.125rem;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
}

.field-checkbox .checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  line-height: 1.45;
}

.field-checkbox input[type="checkbox"] {
  width: 1.25rem;
  height: 1.25rem;
  min-height: auto;
  margin-top: 0.15rem;
  flex-shrink: 0;
  accent-color: var(--blue);
  cursor: pointer;
}

.field-hint {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  margin-left: 2rem;
}

.field-note {
  font-size: 0.875rem;
  color: var(--text);
  margin-top: 0.875rem;
  padding: 0.875rem 1rem;
  background: var(--surface);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--orange);
  line-height: 1.55;
}

.form-legal {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.form-legal + .form-legal {
  margin-top: 0.625rem;
  padding-top: 0;
  border-top: none;
}

.form-legal a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-legal a:hover {
  color: var(--orange);
}

/* Job details sidebar */
.job-details-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.job-details-card__accent {
  height: 5px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-muted) 100%);
}

.job-details-card__body {
  padding: clamp(1.5rem, 3vw, 2rem);
}

.job-details-card__title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 0.5rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.job-details-card__pay {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
}

.job-details-card__pay-note {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.job-details-card__label {
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--orange);
  margin: 1.5rem 0 0.625rem;
}

.job-details-card__label:first-of-type {
  margin-top: 1.25rem;
}

.job-details-card__text {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text);
}

.job-details-card__list {
  margin: 0;
  padding-left: 1.25rem;
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.55;
}

.job-details-card__list li {
  margin-bottom: 0.5rem;
  padding-left: 0.25rem;
}

.job-details-card__list li::marker {
  color: var(--orange);
}

.job-details-card__cta {
  margin-top: 1.75rem;
  padding: 1.5rem 1rem;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  text-align: center;
}

.job-details-card__cta .job-details-card__label {
  margin-top: 0;
}

.job-details-card__contact {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 1rem;
}

.job-details-card__phone {
  width: 100%;
  margin-bottom: 0.875rem;
}

.job-details-card__link {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.job-details-card__link:hover {
  color: var(--orange);
}

/* Video gallery */
.video-section {
  scroll-margin-top: calc(var(--header-h) + 1rem);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-card);
}

.video-section__title {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--blue);
  letter-spacing: -0.01em;
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

.video-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: box-shadow 0.15s;
}

.video-card:hover {
  box-shadow: var(--shadow-sm);
}

.video-card__heading {
  font-size: 1rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 0.875rem;
  text-align: center;
  line-height: 1.3;
}

.video-card__embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: var(--blue-dark);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.video-card__embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Social band */
.apply-social-band {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  color: var(--white);
  text-align: center;
  padding: clamp(2rem, 5vw, 3rem) var(--page-gutter);
  border-top: 4px solid var(--orange);
}

.apply-social-band p {
  font-weight: 600;
  font-size: 1.0625rem;
  margin-bottom: 1rem;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

.apply-social-band__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
}

.apply-social-band__links a {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0 1rem;
  color: var(--white);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  transition: background 0.15s, border-color 0.15s;
}

.apply-social-band__links a:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--white);
  color: var(--white);
}

/* Operations role list (home) */
.ops-role-list {
  list-style: none;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ops-role-list__item {
  padding: 1rem 1.125rem;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text);
}

.ops-role-list__item strong {
  display: block;
  color: var(--blue);
  font-weight: 800;
  margin-bottom: 0.2rem;
}

/* —— Home CTA row —— */
.home-cta-intro {
  margin-bottom: 1rem;
}

.home-cta-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  max-width: 40rem;
}

.home-cta-row .btn {
  width: 100%;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
  line-height: 1.3;
}

@media (min-width: 540px) {
  .home-cta-row {
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
  }
}

.home-cdl-crosslink {
  margin-top: clamp(2rem, 5vw, 3rem);
}

.home-cdl-crosslink__btn {
  display: inline-flex;
  margin-top: 0.25rem;
  width: auto;
  max-width: 100%;
}

/* —— Career path page —— */
.career-path-page .page-band--career {
  padding: clamp(1.75rem, 4vw, 2.5rem) var(--page-gutter);
}

.career-path {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
}

.career-path__intro {
  margin-top: -0.5rem;
}

.career-path__lead {
  margin-bottom: 1rem;
}

.career-step {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

.career-step__label {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  margin-bottom: 0.35rem;
}

.career-step__title {
  font-size: clamp(1.25rem, 3.5vw, 1.65rem);
  font-weight: 800;
  color: var(--blue);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.career-step__subtitle {
  font-size: 1rem;
  font-weight: 800;
  color: var(--blue);
  margin: 1.25rem 0 0.5rem;
}

.career-step__text {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.55;
  margin-bottom: 0.75rem;
}

.career-list,
.career-outcomes {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  color: var(--text-light);
  font-size: 0.9375rem;
  line-height: 1.55;
}

.career-list li,
.career-outcomes li {
  margin-bottom: 0.45rem;
}

.career-outcomes li strong {
  color: var(--text);
}

.career-callout {
  margin: 1.25rem 0 0;
  padding: 1rem 1.15rem;
  border-left: 4px solid var(--orange);
  background: var(--bg-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.5;
}

.career-callout strong {
  color: var(--blue);
}

.career-inline-link {
  display: inline-block;
  margin-top: 0.35rem;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
}

.career-inline-link:hover {
  color: var(--orange);
  text-decoration: underline;
}

.career-step__media {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}

.career-step__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.career-pay-tiers {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.25rem 0 1rem;
}

.career-pay-tier {
  padding: 1rem 1.15rem;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.career-pay-tier__name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 0.35rem;
}

.career-pay-tier__desc {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.5;
  margin: 0;
}

.career-path__pay-note {
  margin-bottom: 0;
}

.career-path__future {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.career-path__future-grid {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

.career-destinations {
  display: grid;
  gap: 1rem;
}

.career-path__future-grid .career-destinations {
  margin-top: 0;
}

.career-destination__title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 0.5rem;
}

.career-destination__text {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.55;
  margin: 0;
}

.career-path__cta .home-cta-row {
  max-width: none;
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .career-step {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 2rem;
    align-items: start;
  }

  .career-step--reverse .career-step__content {
    order: 2;
  }

  .career-step--reverse .career-step__media {
    order: 1;
  }

  .career-pay-tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .career-path__future-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 2rem;
  }
}

/* Cross-link to full careers page */
.careers-crosslink {
  background: var(--page-bg);
  border-top: 1px solid var(--border);
  padding: clamp(2rem, 5vw, 3rem) var(--page-gutter);
}

.careers-crosslink__inner {
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
}

.careers-crosslink__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

.careers-crosslink__title {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.careers-crosslink__text {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.careers-crosslink__btn {
  width: 100%;
  max-width: 22rem;
  margin: 0 auto;
}

/* Careers page — grouped by office */
.careers-by-office {
  max-width: var(--max-w);
}

.careers-by-office.page-wrap--narrow {
  max-width: var(--max-w);
}

.office-group {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.office-group:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.office-group__title {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 1rem;
  line-height: 1.2;
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

@media (min-width: 600px) {
  .hero__meta {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero__pay,
  .hero__location {
    flex: 1 1 16rem;
  }

  .hero__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .video-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

@media (min-width: 900px) {
  .apply-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) min(20rem, 32%);
    gap: 2.5rem;
    align-items: start;
  }

  .job-details-card {
    position: sticky;
    top: calc(var(--header-h) + 1.25rem);
  }

  .apply-form-section__title {
    text-align: left;
  }
}

@media (min-width: 1100px) {
  .apply-layout {
    grid-template-columns: minmax(0, 1fr) 22rem;
    gap: 3rem;
  }
}

/* —— Apply page (mockup layout) —— */
body.page-apply {
  background: var(--white);
}

.site-main--apply {
  max-width: none;
  padding: 0;
}

.apply-mobile-header {
  display: none;
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--blue-dark);
  border-bottom: 3px solid var(--orange);
  padding: 0.625rem 1.125rem;
  align-items: center;
  justify-content: space-between;
}

.apply-mobile-header__logo {
  height: 26px;
  width: auto;
}

.apply-mobile-header__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--orange);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.84rem;
  font-weight: 700;
}

.apply-hero-bg {
  background-color: var(--blue-dark);
  background-image: linear-gradient(
      120deg,
      rgba(27, 67, 123, 0.92) 0%,
      rgba(27, 67, 123, 0.8) 45%,
      rgba(27, 67, 123, 0.4) 75%,
      rgba(27, 67, 123, 0.15) 100%
    ),
    var(--apply-hero-photo, none);
  background-size: cover;
  background-position: center 30%;
}

.apply-hero {
  display: grid;
  grid-template-columns: 1fr min(500px, 42vw);
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
}

.apply-hero-nav {
  position: absolute;
  top: 1.75rem;
  left: 3.25rem;
  right: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 4;
}

.apply-hero-nav__logo {
  height: 52px;
  width: auto;
}

.apply-hero-nav__links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.apply-hero-nav__link {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  font-weight: 500;
}

.apply-hero-nav__link:hover {
  color: var(--white);
}

.apply-hero-nav__phone {
  display: inline-flex;
  align-items: center;
  background: var(--orange);
  color: var(--white);
  padding: 0.5rem 1.125rem;
  border-radius: 50px;
  font-size: 0.84rem;
  font-weight: 700;
}

.apply-hero-left {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 6.875rem 2.5rem 3rem 3.25rem;
  color: var(--white);
}

.apply-hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.625rem;
}

.apply-hero-headline {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 900;
  line-height: 1.06;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.apply-hero-sub {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
  max-width: 28rem;
  margin-bottom: 1.5rem;
}

.apply-hero-badges {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 1.75rem;
}

.apply-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1.125rem;
  width: fit-content;
  max-width: 100%;
}

.apply-badge__text strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.125rem;
}

.apply-badge__text small {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.65);
}

.apply-commute-link {
  display: inline-flex;
  color: var(--orange);
  font-weight: 600;
  font-size: 0.78rem;
  text-decoration: underline;
  margin-top: 0.25rem;
}

.apply-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.apply-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 2px solid transparent;
}

.apply-btn--orange {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.apply-btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.apply-hero-right {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  padding: 6.875rem 2.25rem 3rem 1.25rem;
}

.form-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 10px 48px rgba(0, 0, 0, 0.22);
  padding: 2.25rem 2rem;
  width: 100%;
}

.form-card-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

.form-card-sub {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.form-card-accent {
  width: 2.5rem;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  margin-bottom: 1.375rem;
}

.form-card--paused {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 26rem;
}

.form-card-paused-message {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--blue);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.form-card-paused-note {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
  margin: 0;
}

.form-group {
  margin-bottom: 0.875rem;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-700, var(--text));
  margin-bottom: 0.3rem;
}

.form-label .req {
  color: var(--orange);
}

.form-input,
.form-select {
  width: 100%;
  padding: 0.7rem 0.8rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.91rem;
  color: var(--text);
  background: var(--white);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7' viewBox='0 0 10 7'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 2rem;
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(238, 123, 34, 0.14);
}

.form-hint {
  font-size: 0.73rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin-bottom: 1.125rem;
}

.checkbox-row input[type="checkbox"] {
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.15rem;
  accent-color: var(--orange);
}

.checkbox-row label {
  font-size: 0.84rem;
  color: var(--text);
  line-height: 1.45;
}

.checkbox-note {
  font-size: 0.74rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 0.125rem;
}

.field.hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.captcha-wrap {
  margin-bottom: 1rem;
  min-height: 4rem;
}

.recaptcha-mount {
  min-height: 4.875rem;
}

.btn-submit {
  display: block;
  width: 100%;
  padding: 0.95rem 1.25rem;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

.btn-submit:hover {
  background: var(--orange-dark);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-disclaimer {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.7rem;
  line-height: 1.55;
}

.form-disclaimer a {
  color: var(--orange);
  text-decoration: underline;
}

.form-alert {
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}

.apply-videos-section {
  background: var(--bg-light);
  padding: 4.5rem var(--page-gutter) 5rem;
}

.apply-learn-section {
  background: var(--bg-light);
  padding: 4.5rem var(--page-gutter) 5rem;
}

.apply-learn-section__intro {
  max-width: 40rem;
  margin: 0 auto 2.5rem;
}

.apply-videos-block {
  max-width: 1100px;
  margin: 0 auto;
}

.career-path-callout {
  max-width: 1100px;
  margin: 3rem auto 0;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.career-path-callout--standalone {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.career-path-callout__inner {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  padding: 1.35rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.career-path-callout__media {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
}

.career-path-callout__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.career-path-callout__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.45rem;
}

.career-path-callout__title {
  font-size: clamp(1.15rem, 2.8vw, 1.45rem);
  font-weight: 800;
  color: var(--blue);
  line-height: 1.25;
  margin-bottom: 0.65rem;
}

.career-path-callout__text {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.55;
  margin: 0 0 1.15rem;
}

.career-path-callout__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
}

.career-path-callout__link:hover {
  color: var(--orange);
}

.career-path-callout__link:hover .career-path-callout__arrow {
  transform: translateX(0.2rem);
}

.career-path-callout__arrow {
  display: inline-block;
  transition: transform 0.15s ease;
}

@media (min-width: 768px) {
  .career-path-callout__inner {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 1.75rem;
    padding: 1.5rem 1.75rem;
  }

  .career-path-callout--standalone .career-path-callout__inner {
    max-width: 52rem;
    margin: 0 auto;
  }
}

.apply-section-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  text-align: center;
  margin-bottom: 0.5rem;
}

.apply-section-title {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--blue);
  text-align: center;
  margin-bottom: 0.5rem;
}

.apply-section-sub {
  font-size: 0.92rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 3rem;
}

.apply-videos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}

.apply-video-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.apply-video-card__label {
  padding: 0.75rem 0.875rem 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
}

.apply-video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: var(--bg-light);
}

.apply-video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.apply-video-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: #1a202c;
}

.apply-video-poster img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.apply-video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 4rem;
  height: 4rem;
  margin: -2rem 0 0 -2rem;
  border-radius: 50%;
  background: rgba(238, 123, 34, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.apply-video-play::after {
  content: "";
  position: absolute;
  left: 54%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 0.65rem 0 0.65rem 1.1rem;
  border-color: transparent transparent transparent var(--white);
}

.apply-video-fallback {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  z-index: 2;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--white);
  background: rgba(27, 67, 123, 0.85);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  text-decoration: none;
}

.apply-video-fallback:hover {
  background: var(--orange);
}

.form-hint--warn {
  color: var(--error);
  margin-bottom: 1rem;
}

.apply-details-section {
  padding-top: 2rem;
  padding-bottom: 3rem;
}

.confirm-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.apply-footer {
  background: var(--blue-dark);
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  padding: 1.75rem 1.25rem;
  font-size: 0.78rem;
}

.apply-footer a {
  color: var(--orange);
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .apply-hero {
    grid-template-columns: 1fr 420px;
  }
  .apply-videos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .apply-mobile-header {
    display: flex;
  }

  .apply-hero {
    grid-template-columns: 1fr;
  }

  .apply-hero-nav {
    display: none;
  }

  .apply-hero-right {
    display: none;
  }

  .apply-hero-left {
    padding: 2rem 1.25rem 1.25rem;
    text-align: center;
    align-items: center;
  }

  .apply-hero-badges {
    align-items: center;
    width: 100%;
  }

  .apply-badge {
    width: 100%;
    max-width: 22rem;
  }

  .apply-hero-ctas {
    justify-content: center;
    margin-bottom: 0.5rem;
  }

  .apply-hero-bg::after {
    content: "";
    display: block;
  }

  .apply-hero {
    padding-bottom: 0;
  }

  .apply-hero-right {
    display: flex;
    padding: 0 1rem 1.75rem;
    margin-top: 0.75rem;
  }

  .apply-hero-right .form-card {
    box-shadow: var(--shadow-raised);
  }

  .apply-videos-grid {
    grid-template-columns: 1fr;
    max-width: 32rem;
    gap: 1.5rem;
  }

  .apply-videos-section {
    padding-top: 3rem;
  }
}

/* —— CDL drivers recruiting page —— */
body.cdl-drivers-page .site-header {
  display: none;
}

.cdl-hero {
  position: relative;
  min-height: min(92vh, 52rem);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(3rem, 8vw, 5rem) var(--page-gutter);
  background-color: var(--blue-dark);
  background-image: linear-gradient(rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.62)), var(--cdl-hero-bg, none);
  background-size: cover;
  background-position: center;
  text-align: center;
  color: var(--white);
}

.cdl-hero__inner {
  max-width: 44rem;
  margin: 0 auto;
}

.cdl-hero__logo {
  display: inline-block;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.cdl-hero__logo img {
  height: clamp(2.5rem, 6vw, 3.5rem);
  width: auto;
}

.cdl-hero h1 {
  font-size: clamp(1.85rem, 5.5vw, 3.25rem);
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 1rem;
  color: var(--white);
}

.cdl-hero__tagline {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 1.75rem;
  line-height: 1.45;
}

.cdl-hero__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.cdl-hero__actions .btn {
  width: auto;
  max-width: 100%;
  flex: 0 0 auto;
  padding-left: 1.75rem;
  padding-right: 1.75rem;
  white-space: nowrap;
}

.cdl-hero__phone {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.85);
  color: var(--white);
}

.cdl-hero__phone:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  color: var(--white);
}

.cdl-subnav {
  position: sticky;
  top: 0;
  z-index: 90;
  background: var(--blue);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-sm);
}

.cdl-subnav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem 1.25rem;
  padding: 0.65rem var(--page-gutter);
}

.cdl-subnav a {
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  padding: 0.35rem 0;
}

.cdl-subnav a:hover {
  color: var(--orange);
}

.cdl-drivers {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
}

.cdl-stats {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.cdl-stat {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 9.5rem;
  padding: 2.5rem 1rem 1.25rem;
  border: 5px solid var(--blue);
  border-radius: 50%;
  aspect-ratio: 1;
  max-width: 11rem;
  margin: 0 auto;
  text-align: center;
}

.cdl-stat--compact {
  padding-top: 2.75rem;
}

.cdl-stat__value {
  position: absolute;
  top: -0.85rem;
  right: -0.35rem;
  width: 3.25rem;
  height: 3.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 800;
}

.cdl-stat__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-light);
  line-height: 1.35;
}

.cdl-parallax {
  min-height: clamp(12rem, 28vw, 18rem);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.cdl-benefits__grid {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.cdl-benefit {
  text-align: center;
}

.cdl-benefit__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 0.75rem;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
}

.cdl-benefit__title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 0.5rem;
}

.cdl-benefit__text {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.55;
  margin: 0;
}

.cdl-cta-band {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
  background: linear-gradient(100deg, var(--blue) 0%, var(--blue-dark) 100%);
  border: none;
  color: var(--white);
}

.cdl-cta-band__copy {
  flex: 1;
  min-width: 0;
}

.cdl-cta-band .section-title,
.cdl-cta-band .lead {
  color: var(--white);
}

.cdl-cta-band .lead {
  opacity: 0.92;
}

.cdl-cta-band__btn {
  width: auto;
  flex-shrink: 0;
  align-self: flex-start;
  padding-left: 1.75rem;
  padding-right: 1.75rem;
  white-space: nowrap;
  background: var(--orange);
}

.cdl-cta-band__btn:hover:not(:disabled) {
  background: var(--orange-dark);
}

.cdl-team__hint {
  margin-top: -0.25rem;
  margin-bottom: 1.25rem;
}

.cdl-team__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.cdl-team-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.cdl-team-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.cdl-team-card__photo {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.cdl-team-card__name,
.cdl-team-card__role {
  display: block;
  padding: 0 0.75rem;
}

.cdl-team-card__name {
  padding-top: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 800;
  color: var(--blue);
}

.cdl-team-card__role {
  padding-bottom: 0.85rem;
  font-size: 0.8125rem;
  color: var(--text-light);
}

.cdl-dialog {
  padding: 0;
  border: none;
  border-radius: var(--radius-lg);
  max-width: min(32rem, calc(100vw - 2rem));
  width: min(32rem, calc(100vw - 2rem));
  box-shadow: var(--shadow-raised);
}

.cdl-dialog[open] {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  max-height: calc(100vh - 2rem);
  overflow: auto;
}

.cdl-dialog::backdrop {
  background: rgba(20, 50, 100, 0.55);
}

.cdl-dialog__panel {
  padding: 0;
}

.cdl-dialog__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid var(--border);
}

.cdl-dialog__header h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--blue);
  margin: 0;
}

.cdl-dialog__close {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: var(--radius-sm);
  background: var(--bg-light);
  color: var(--text);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.cdl-dialog__close:hover {
  background: var(--border);
}

.cdl-dialog__body {
  padding: 1rem 1.15rem 1.25rem;
}

.cdl-dialog__body p {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.55;
  margin-bottom: 0.75rem;
}

.cdl-dialog__body p:last-child {
  margin-bottom: 0;
}

.cdl-contact__phone-block {
  margin: 1.5rem 0;
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.cdl-contact__phone {
  display: inline-block;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 900;
  color: var(--blue);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.cdl-contact__phone:hover {
  color: var(--orange);
}

.cdl-contact__phone-note {
  margin: 0.35rem 0 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.cdl-contact__details {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.cdl-contact__details a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
}

.cdl-contact__details a:hover {
  color: var(--orange);
}

.cdl-contact__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  margin-bottom: 0.25rem;
}

@media (min-width: 640px) {
  .cdl-hero__actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }

  .cdl-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .cdl-team__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .cdl-cta-band {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
  }

  .cdl-cta-band__btn {
    align-self: center;
  }
}

@media (min-width: 900px) {
  .cdl-benefits__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  .cdl-parallax {
    background-attachment: scroll;
  }
}
