/* Force all header font elements to uppercase */
    h1,
    h2,
    h3,
    .btn,
    .tag,
    .why-card h3,
    .job-title,
    .pay-label,
    .section-head h2,
    .apply-copy h2,
    .form-card h3,
    .hero h1,
    .footer-logo {
      text-transform: uppercase !important;
    }
    /* ─── OCTOSQUARES: SITEWIDE 200 + TIGHT KERNING ─── */
    h1,
    h2,
    h3,
    .section-head h2,
    .apply-copy h2,
    .form-card h3,
    .why-card h3,
    .footer-logo,
    .tag,
    .job-title,
    .pay-label {
      letter-spacing: -0.04em;
      font-weight: 200;
    }    /* ─── BUTTONS: EXTRABOLD 800 ─── */
    .btn,
    a.btn,
    button.btn {
      font-weight: 800 !important;
      letter-spacing: -0.02em;
    }

    /* ─── CARBON FIBER ─── */
    .carbon {
      background-color: #0e1014;
      background-image:
        repeating-linear-gradient(
          45deg,
          transparent,
          transparent 2px,
          rgba(255,255,255,0.018) 2px,
          rgba(255,255,255,0.018) 4px
        ),
        repeating-linear-gradient(
          -45deg,
          transparent,
          transparent 2px,
          rgba(255,255,255,0.018) 2px,
          rgba(255,255,255,0.018) 4px
        ),
        repeating-linear-gradient(
          0deg,
          rgba(255,255,255,0.012) 0px,
          rgba(255,255,255,0.012) 1px,
          transparent 1px,
          transparent 8px
        ),
        repeating-linear-gradient(
          90deg,
          rgba(255,255,255,0.012) 0px,
          rgba(255,255,255,0.012) 1px,
          transparent 1px,
          transparent 8px
        );
      background-size: 8px 8px, 8px 8px, 8px 8px, 8px 8px;
    }

    /* ─── NOISE TEXTURE OVERLAY ─── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("");
      pointer-events: none;
      z-index: 9999;
      opacity: 0.4;
    }

    
    

    /* ─── UTILITY ─── */
    
    .teal { color: var(--steel-accent); }
    .tag {
      display: inline-block;
      font-family: var(--font-head);
      font-style: italic;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--steel-accent);
      background: var(--steel-accent-glow);
      border: 1px solid rgba(145,154,172,0.2);
      padding: 5px 14px;
      border-radius: 2px;
      margin-bottom: 18px;
    }

    /* ─── BUTTONS ─── */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-head);
      font-style: italic;
      font-weight: 800;
      font-size: 15px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 14px 32px;
      border-radius: 3px;
      cursor: pointer;
      transition: all 0.2s;
      border: none;
    }
    .btn-primary {
      background: var(--teal);
      color: var(--black);
    }
    .btn-primary:hover {
      background: #009ada;
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(145,154,172,0.22);
    }
    .btn-outline {
      background: transparent;
      color: var(--white);
      border: 1.5px solid rgba(255,255,255,0.35);
    }
    .btn-outline:hover {
      border-color: var(--teal);
      color: var(--teal);
      transform: translateY(-2px);
    }
    .btn-lg { font-size: 13px; padding: 11px 24px; }
    .btn svg { width: 16px; height: 16px; flex-shrink: 0; }    /* ─── STICKY FLOATING CTA ─── */
    @keyframes pulse-glow {
      0%, 100% { box-shadow: 0 0 0 0 rgba(145,154,172,0.28); }
      50%       { box-shadow: 0 0 0 14px rgba(0,154,218,0); }
    }    /* ─── HERO ─── */
    .hero {
      position: relative;
      min-height: 68vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      padding-top: 190px;
      padding-bottom: 40px;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(105deg, rgba(10,10,10,0.97) 0%, rgba(10,10,10,0.75) 55%, rgba(10,10,10,0.4) 100%),
        url('/assets/images/hero-fleet.jpg') center/cover no-repeat;
    }
    .hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, transparent 60%, var(--black) 100%);
    }
    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 760px;
      text-align: center;
      margin: 0 auto;
    }

    /* ─── HERO LAYOUT ─── */
    .hero-layout {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
    }

    .hero-col-left {
      text-align: center;
      min-width: 0;
      max-width: 100%;
      width: 100%;
      background: transparent;
      border: none;
      border-radius: 0;
      padding: 40px 36px;
    }

    /* ─── YOUTUBE SECTION ─── */
    .youtube-section {
      background: var(--black);
      padding: 80px 0;
    }
    .youtube-inner {
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
    }

    /* ─── SECTION DIVIDER ─── */
    .section-divider {
      width: 100%;
      height: 1px;
      background: linear-gradient(90deg, transparent 0%, rgba(0,154,218,0.35) 50%, transparent 100%);
      margin: 0;
    }

    @media (max-width: 900px) {
      .hero-col-left {
        padding: 28px 20px;
      }
      .youtube-section {
        padding: 56px 0;
      }
    }    .hero h1 {
      font-family: var(--font-head);
      font-style: italic;
      font-weight: 200;
      font-size: clamp(28px, 4vw, 52px);
      line-height: 0.92;
      letter-spacing: -0.03em;
      text-transform: uppercase;
      margin-bottom: 24px;
    }
    .hero h1 .line-accent { color: var(--teal); display: block; }
    .hero-sub {
      font-size: clamp(17px, 2.2vw, 20px);
      color: var(--offwhite);
      max-width: 520px;
      margin: 0 auto 12px;
      font-weight: 400;
      line-height: 1.55;
      text-align: center;
    }
    .hero-urgency {
      font-size: 13px;
      font-weight: 600;
      color: var(--teal);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }
    .hero-urgency::before {
      content: '';
      display: inline-block;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--teal);
      animation: blink 1.2s step-end infinite;
    }
    @keyframes blink {
      0%, 100% { opacity: 1; }
      50%       { opacity: 0.2; }
    }    .hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
    /* ── Hero Form ── */
    .hero-form-wrap {
      margin-top: 32px;
      background: rgba(19,22,25,0.82);
      border: 1px solid rgba(145,154,172,0.18);
      border-radius: 4px;
      padding: 24px 28px 20px;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      max-width: 680px;
      margin-left: auto;
      margin-right: auto;
    }
    .hero-form-label {
      font-family: var(--font-head);
      font-style: italic;
      font-weight: 800;
      font-size: 11px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--steel-accent);
      margin-bottom: 14px;
      display: block;
    }
    .hero-form-row {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr auto;
      gap: 10px;
      align-items: end;
    }
    .hero-form-group label {
      display: block;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--steel-accent);
      margin-bottom: 6px;
    }
    .hero-form-group input,
    .hero-form-group select {
      width: 100%;
      background: rgba(10,10,10,0.7);
      border: 1px solid rgba(145,154,172,0.25);
      border-radius: 3px;
      padding: 10px 12px;
      font-family: var(--font-body);
      font-size: 14px;
      color: var(--white);
      outline: none;
      transition: border-color 0.2s;
      box-sizing: border-box;
    }
    .hero-form-group input:focus,
    .hero-form-group select:focus { border-color: var(--teal); }
    .hero-form-group input::placeholder { color: rgba(200,204,212,0.35); }
    .hero-form-group select option { background: #131619; color: var(--white); }
    .hero-form-submit {
      white-space: nowrap;
      padding: 10px 20px;
      font-size: 13px;
    }
    .hero-form-disclaimer {
      font-size: 11px;
      color: rgba(200,204,212,0.45);
      margin-top: 12px;
      text-align: center;
    }
    @media (max-width: 680px) {
      .hero-form-row { grid-template-columns: 1fr 1fr; }
      .hero-form-submit { grid-column: 1 / -1; width: 100%; justify-content: center; }
    }    @media (max-width: 440px) {
      .hero-form-row { grid-template-columns: 1fr; }
    }    .hero-stats {
      position: relative;
      z-index: 2;
      display: flex;
      gap: 40px;
      margin-top: 64px;
      padding-top: 40px;
      border-top: 1px solid var(--border);
      flex-wrap: wrap;
    }
    .hero-stat-num {
      font-family: var(--font-head);
      font-style: italic;
      font-weight: 200;
      font-size: 42px;
      color: var(--steel-accent);
      line-height: 1;
    }
    .hero-stat-label {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--offwhite);
      margin-top: 4px;
    }

    /* ─── SECTION SHELL ─── */
    section { padding: 100px 0; }
    .section-head {
      margin-bottom: 56px;
    }
    .section-head h2 {
      font-family: var(--font-head);
      font-style: italic;
      font-weight: 200;
      font-size: clamp(36px, 5vw, 58px);
      line-height: 1;
      text-transform: uppercase;
      letter-spacing: -0.03em;
    }
    .section-head p {
      margin-top: 14px;
      font-size: 17px;
      color: var(--offwhite);
      max-width: 540px;
      line-height: 1.6;
    }

    /* ─── WHY AJG ─── */
    .why { background: var(--steel); }
    .why-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2px;
    }
    .why-card {
      background: var(--steel-mid);
      padding: 40px 36px;
      border-bottom: 3px solid transparent;
      transition: border-color 0.25s, background 0.25s;
      position: relative;
      overflow: hidden;
    }
    .why-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: var(--steel-accent);
      transform: scaleX(0);
      transition: transform 0.3s;
      transform-origin: left;
    }
    .why-card:hover::before { transform: scaleX(1); }
    .why-card:hover { background: var(--steel-lt); }
    .why-icon {
      width: 48px;
      height: 48px;
      background: var(--steel-accent-glow);
      border: 1px solid rgba(145,154,172,0.18);
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }
    .why-icon svg { width: 22px; height: 22px; color: var(--steel-accent); }
    .why-card h3 {
      font-family: var(--font-head);
      font-style: italic;
      font-weight: 200;
      font-size: 20px;
      text-transform: uppercase;
      letter-spacing: -0.02em;
      margin-bottom: 10px;
    }
    .why-card p { font-size: 15px; color: var(--offwhite); line-height: 1.6; }

    /* ─── POSITIONS ─── */
    .positions { background: var(--black); padding-top: 32px; }
    .positions-grid { display: flex; flex-direction: column; gap: 16px; }

    /* ─── 2-COLUMN POSITIONS LAYOUT ─── */
    .positions-layout {
      display: grid;
      grid-template-columns: 1fr 380px;
      gap: 32px;
      align-items: start;
    }
    .positions-col-left {
      min-width: 0;
    }
    .positions-col-right {
      position: sticky;
      top: 100px;
      align-self: start;
    }
    .form-sidebar {
      background: var(--steel-mid);
      border: 1px solid var(--border);
      border-radius: 4px;
      padding: 28px 24px;
    }
    .form-sidebar input,
    .form-sidebar select {
      width: 100%;
      background: rgba(19,22,25,0.8);
      border: 1px solid rgba(145,154,172,0.2);
      border-radius: 3px;
      padding: 9px 12px;
      color: var(--white);
      font-size: 13px;
      font-family: inherit;
      outline: none;
      box-sizing: border-box;
    }
    .form-sidebar select {
      appearance: none;
    }
    .form-sidebar label {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--offwhite);
      display: block;
      margin-bottom: 4px;
    }
    .job-card {
      background: var(--steel-mid);
      border: 1px solid var(--border);
      border-left: 4px solid var(--steel-accent);
      padding: 28px 32px;
      display: flex;
      align-items: center;
      gap: 32px;
      justify-content: space-between;
      transition: background 0.2s, transform 0.2s;
      flex-wrap: wrap;
    }
    .job-card:hover {
      background: var(--steel-lt);
      transform: translateX(4px);
    }
    .job-title {
      font-family: var(--font-head);
      font-style: italic;
      font-weight: 200;
      font-size: 22px;
      text-transform: uppercase;
      letter-spacing: -0.02em;
      margin-bottom: 8px;
    }
    .job-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 10px;
    }
    .badge {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 2px;
      background: rgba(255,255,255,0.07);
      color: var(--offwhite);
    }
    .badge-teal { background: var(--steel-accent-glow); color: var(--steel-accent); border: 1px solid rgba(145,154,172,0.2); }
    .badge-urgent { background: rgba(232,58,58,0.12); color: #ff7070; border: 1px solid rgba(232,58,58,0.25); }
    .job-detail { font-size: 14px; color: var(--offwhite); }
    .job-pay {
      text-align: right;
      min-width: 160px;
    }
    .pay-amount {
      font-family: var(--font-head);
      font-style: italic;
      font-weight: 200;
      font-size: 32px;
      color: var(--steel-accent);
      line-height: 1;
    }
    .pay-label { font-size: 12px; color: var(--offwhite); margin-top: 2px; letter-spacing: 0.06em; text-transform: uppercase; }

    /* ─── TESTIMONIALS ─── */
    .testimonials { background: var(--steel); }
    .testi-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px;
    }
    .testi-card {
      background: var(--steel-mid);
      border: 1px solid var(--border);
      padding: 36px 32px;
      position: relative;
      overflow: hidden;
    }
    .testi-card::before {
      content: '"';
      position: absolute;
      top: -20px;
      right: 20px;
      font-family: var(--font-head);
      font-style: italic;
      font-weight: 900;
      font-size: 140px;
      color: rgba(145,154,172,0.05);
      line-height: 1;
      pointer-events: none;
    }
    .testi-stars {
      display: flex;
      gap: 3px;
      margin-bottom: 16px;
    }
    .testi-stars svg { width: 14px; height: 14px; color: var(--steel-accent); fill: var(--steel-accent); }
    .testi-quote {
      font-size: 16px;
      line-height: 1.65;
      color: var(--white);
      margin-bottom: 24px;
      font-style: italic;
    }
    .testi-driver {
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .testi-avatar {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      background: var(--steel-lt);
      border: 2px solid rgba(145,154,172,0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-head);
      font-style: italic;
      font-weight: 200;
      font-size: 18px;
      color: var(--steel-accent);
      flex-shrink: 0;
    }
    .testi-name {
      font-weight: 700;
      font-size: 15px;
    }
    .testi-role { font-size: 13px; color: var(--offwhite); }

    /* ─── FAQ ─── */
    .faq { background: var(--black); }
    .faq-list { display: flex; flex-direction: column; gap: 2px; max-width: 820px; padding-right: 48px; }
    .faq-item {
      border: 1px solid var(--border);
      background: var(--steel-mid);
      overflow: hidden;
    }
    .faq-q {
      width: 100%;
      background: none;
      border: none;
      color: var(--white);
      text-align: left;
      padding: 22px 28px;
      font-family: var(--font-body);
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      transition: background 0.2s;
    }
    .faq-q:hover { background: var(--steel-lt); }
    .faq-q svg {
      width: 18px;
      height: 18px;
      flex-shrink: 0;
      color: var(--teal);
      transition: transform 0.3s;
    }
    .faq-item.open .faq-q svg { transform: rotate(45deg); }
    .faq-item.open .faq-
    .faq-a-inner { padding: 0 48px 24px 28px; }

    /* ─── APPLY FORM ─── */
    .apply {
      background: var(--steel);
      position: relative;
      overflow: hidden;
    }
    .apply::before {
      content: '';
      position: absolute;
      top: -200px;
      right: -200px;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(145,154,172,0.05) 0%, transparent 70%);
      pointer-events: none;
    }
    .apply-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }
    .apply-copy h2 {
      font-family: var(--font-head);
      font-style: italic;
      font-weight: 200;
      font-size: clamp(36px, 4.5vw, 54px);
      text-transform: uppercase;
      line-height: 0.95;
      margin-bottom: 20px;
    }
    .apply-copy p {
      font-size: 16px;
      color: var(--offwhite);
      line-height: 1.65;
      margin-bottom: 28px;
    }
    .apply-perks { list-style: none; display: flex; flex-direction: column; gap: 12px; }
    .apply-perks li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 15px;
      font-weight: 500;
    }
    .apply-perks li::before {
      content: '';
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--steel-accent);
      flex-shrink: 0;
    }
    .form-card {
      background: var(--steel-mid);
      border: 1px solid var(--border);
      padding: 44px 40px;
    }
    .form-card h3 {
      font-family: var(--font-head);
      font-style: italic;
      font-weight: 200;
      font-size: 22px;
      text-transform: uppercase;
      letter-spacing: -0.02em;
      margin-bottom: 28px;
    }
    .form-group { margin-bottom: 18px; }
    .form-group label {
      display: block;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--offwhite);
      margin-bottom: 6px;
    }
    .form-group input,
    .form-group select {
      width: 100%;
      background: var(--steel-lt);
      border: 1px solid var(--border);
      color: var(--white);
      font-family: var(--font-body);
      font-size: 15px;
      padding: 13px 16px;
      border-radius: 2px;
      outline: none;
      transition: border-color 0.2s;
      appearance: none;
    }
    .form-group input:focus,
    .form-group select:focus {
      border-color: var(--teal);
    }
    .form-group input::placeholder { color: rgba(200,204,212,0.4); }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form-submit { width: 100%; justify-content: center; margin-top: 8px; }
    .form-disclaimer {
      font-size: 12px;
      color: rgba(200,204,212,0.5);
      margin-top: 12px;
      text-align: center;
    }

    /* ─── FOOTER ─── */
    footer {
      background: var(--black);
      border-top: 1px solid var(--border);
      padding: 48px 0 32px;
    }
    .footer-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 24px;
    }
    .footer-logo {
      font-family: var(--font-head);
      font-style: italic;
      font-weight: 200;
      font-size: 22px;
    }
    .footer-logo span { color: var(--steel-accent); }
    .footer-links {
      display: flex;
      gap: 24px;
      list-style: none;
      flex-wrap: wrap;
    }
    .footer-links a:hover { color: var(--steel-accent); }
    .footer-copy {
      font-size: 12px;
      color: rgba(200,204,212,0.35);
      width: 100%;
      text-align: center;
      margin-top: 24px;
      padding-top: 24px;
      border-top: 1px solid var(--border);
    }

    /* ─── DIVIDER ─── */
    .divider {
      width: 60px;
      height: 3px;
      background: var(--steel-accent);
      margin: 18px 0 28px;
    }

    /* ─── ANIMATIONS ─── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(32px); }
      to   { opacity: 1; transform: translateY(0); }
    }    .fade-up { animation: fadeUp 0.7s ease both; }
    .delay-1 { animation-delay: 0.1s; }
    .delay-2 { animation-delay: 0.22s; }
    .delay-3 { animation-delay: 0.36s; }
    .delay-4 { animation-delay: 0.5s; }
    .delay-5 { animation-delay: 0.64s; }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 900px) {
      .apply-inner { grid-template-columns: 1fr; gap: 48px; }    }    @media (max-width: 600px) {
      section { padding: 72px 0; }
      .hero-stats { gap: 28px; }
      .form-row { grid-template-columns: 1fr; }
      .job-pay { text-align: left; }
      .form-card { padding: 28px 22px; }
      
      .job-card { padding: 18px 16px; }
      .positions-grid { gap: 16px; padding: 0 4px; }
      .job-pay .btn { width: 100%; justify-content: center; display: flex; }
      .job-title { font-size: 18px; }
      .job-pay div[style*="font-size:22px"] { font-size: 26px !important; }
    }    @media (max-width: 900px) {
      .positions-layout {
        grid-template-columns: 1fr;
      }
      .positions-col-right {
        position: static;
        order: -1; /* form shows ABOVE jobs on mobile */
      }
    }
