/* ============================================
     * HIRE STAFF PAGE SPECIFIC STYLES
     * ============================================ */

    .hero {
      padding: 150px 40px 90px;
      text-align: center;
      background: var(--color-bg-warm);
      border-bottom: 1px solid var(--color-border);
    }

    .hero h1 {
      font-size: 3rem;
      margin-bottom: 16px;
    }

    .hero p {
      font-size: 1.15rem;
      color: var(--color-text-muted);
      max-width: 680px;
      margin: 0 auto 32px;
    }

    .hero-cta {
      display: flex;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    .cta-button {
      display: inline-block;
      padding: 14px 32px;
      background: var(--color-gold);
      color: var(--color-text);
      text-decoration: none;
      font-weight: 600;
      font-size: 0.95rem;
      border-radius: 4px;
      transition: all 0.3s ease;
      border: 2px solid var(--color-gold);
    }

    .cta-button:hover {
      background: var(--color-text);
      border-color: var(--color-text);
      color: var(--color-bg-white);
      transform: translateY(-2px);
    }

    .cta-button.secondary {
      background: transparent;
      color: var(--color-text);
    }

    .cta-button.secondary:hover {
      background: var(--color-text);
      color: var(--color-bg-white);
    }

    .section {
      padding: 80px 40px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .section-header {
      text-align: center;
      margin-bottom: 50px;
    }

    .section-header h2 {
      font-size: 2rem;
      margin-bottom: 12px;
    }

    .section-header p {
      color: var(--color-text-muted);
      font-size: 1.05rem;
    }

    .roles-section {
      background: var(--color-bg-warm);
      border-bottom: 1px solid var(--color-border);
    }

    .roles-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    .role-card {
      display: block;
      background: var(--color-bg);
      padding: 28px 24px;
      border-radius: 6px;
      border: 1px solid var(--color-border);
      text-align: center;
      transition: all 0.3s ease;
      color: inherit;
      text-decoration: none;
    }

    .role-card:hover {
      border-color: var(--color-gold);
      transform: translateY(-4px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    }

    .role-card h3 {
      font-size: 1rem;
      margin-bottom: 8px;
      font-weight: 600;
    }

    .role-card p {
      color: var(--color-text-muted);
      font-size: 0.9rem;
    }

    .steps-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
    }

    .step-card {
      text-align: center;
      padding: 24px 18px;
    }

    .step-number {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      border: 2px solid var(--color-gold);
      color: var(--color-gold);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 16px;
      font-weight: 700;
    }

    .step-card h3 {
      font-size: 1rem;
      margin-bottom: 8px;
      font-weight: 600;
    }

    .step-card p {
      color: var(--color-text-muted);
      font-size: 0.9rem;
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }

    .why-card {
      background: var(--color-bg-warm);
      border-left: 3px solid var(--color-gold);
      padding: 28px;
    }

    .why-card h3 {
      font-size: 1rem;
      margin-bottom: 10px;
      font-weight: 600;
    }

    .why-card p {
      color: var(--color-text-muted);
      font-size: 0.9rem;
    }

    .included-strip {
      background: var(--color-bg);
      padding: 40px;
      border-top: 1px solid var(--color-border);
      border-bottom: 1px solid var(--color-border);
    }

    .included-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      gap: 40px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .included-item {
      display: flex;
      gap: 10px;
      align-items: center;
      color: var(--color-text);
      font-size: 0.9rem;
    }

    .included-item span {
      color: var(--color-gold);
    }

    .cta-section {
      padding: 80px 40px;
      text-align: center;
      border-top: 1px solid var(--color-border);
    }

    .cta-section h2 {
      font-size: 2rem;
      margin-bottom: 12px;
    }

    .cta-section p {
      color: var(--color-text-muted);
      margin-bottom: 28px;
    }

    @media (max-width: 1024px) {
      .roles-grid,
      .steps-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .why-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .hero {
        padding: 130px 20px 60px;
      }

      .hero h1 {
        font-size: 2.2rem;
      }

      .section {
        padding: 60px 20px;
      }

      .roles-grid,
      .steps-grid,
      .why-grid {
        grid-template-columns: 1fr;
      }

      .included-inner {
        gap: 20px;
      }
    }
