  .page-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    padding: 80px 0 56px;
    overflow: hidden;
  }

  .page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  .page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .page-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      linear-gradient(
        135deg,
        rgba(30, 47, 61, 0.94) 0%,
        rgba(30, 47, 61, 0.88) 40%,
        rgba(44, 66, 82, 0.78) 70%,
        rgba(61, 90, 110, 0.7) 100%
      );
  }

  .page-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 100px;
    max-width: 720px;
  }

  .page-hero-content .section-label {
    color: var(--color-gold-light);
  }

  .page-hero-content h1 {
    font-size: 2.4rem;
    color: var(--color-white);
    margin-bottom: 16px;
    line-height: 1.15;
  }

  .page-hero-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    max-width: 620px;
  }

  /* ── Apply Section ── */
  .apply-section {
    padding: 80px 0;
    background: var(--color-gray-50);
  }

  .apply-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
  }

  .apply-steps-header {
    margin-bottom: 32px;
  }

  .apply-steps-header h2 {
    font-size: 1.6rem;
    color: var(--color-slate-darker);
    margin-top: 8px;
  }

  /* Steps list */
  .steps-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 40px;
  }

  .step-item {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--color-gray-200);
  }

  .step-item:first-child {
    padding-top: 0;
  }

  .step-item:last-child {
    border-bottom: none;
  }

  .step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-white);
    box-shadow: 0 2px 8px rgba(200, 150, 62, 0.25);
  }

  .step-body h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-slate-darker);
    margin-bottom: 4px;
  }

  .step-body p {
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--color-gray-500);
  }

  /* Download section */
  .download-section {
    background: var(--color-white);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid var(--color-gray-200);
  }

  .download-section h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-slate-darker);
    margin-bottom: 4px;
  }

  .download-section > p {
    font-size: 0.84rem;
    color: var(--color-gray-500);
    margin-bottom: 16px;
  }

  .download-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .download-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid var(--color-gray-200);
    background: var(--color-gray-50);
    transition: all 0.2s ease;
    text-decoration: none;
  }

  .download-card:hover {
    border-color: var(--color-gold-light);
    background: rgba(200, 150, 62, 0.04);
    transform: translateY(-1px);
  }

  .download-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200, 150, 62, 0.1);
    color: var(--color-gold);
    border-radius: 8px;
    flex-shrink: 0;
  }

  .download-text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .download-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-slate-darker);
  }

  .download-meta {
    font-size: 0.75rem;
    color: var(--color-gray-400);
  }

  .download-arrow {
    color: var(--color-gray-400);
    flex-shrink: 0;
    transition: color 0.2s;
  }

  .download-card:hover .download-arrow {
    color: var(--color-gold);
  }

  /* ── Form Card ── */
  .apply-form-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: 36px;
    border: 1px solid var(--color-gray-200);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 100px;
  }

  .apply-form-header {
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-gray-100);
  }

  .apply-form-header h2 {
    font-size: 1.3rem;
    color: var(--color-slate-darker);
    margin-bottom: 6px;
  }

  .apply-form-header p {
    font-size: 0.88rem;
    color: var(--color-gray-500);
    line-height: 1.5;
  }

  .apply-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .form-group > label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-gray-600);
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }

  .form-group input[type="text"],
  .form-group input[type="email"],
  .form-group input[type="tel"] {
    padding: 12px 14px;
    border: 1px solid var(--color-gray-200);
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: var(--font-body);
    color: var(--color-slate-darker);
    background: var(--color-white);
    transition: border-color 0.2s, box-shadow 0.2s;
  }

  .form-group input:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(200, 150, 62, 0.1);
  }

  .form-group input::placeholder {
    color: var(--color-gray-300);
  }

  /* Radio group */
  .radio-group {
    display: flex;
    gap: 20px;
  }

  .radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.88rem;
    color: var(--color-gray-600);
  }

  .radio-label input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }

  .radio-custom {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid var(--color-gray-300);
    position: relative;
    transition: border-color 0.2s;
    flex-shrink: 0;
  }

  .radio-label input:checked ~ .radio-custom {
    border-color: var(--color-gold);
  }

  .radio-label input:checked ~ .radio-custom::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-gold);
  }

  /* File drop zones */
  .file-drop-zone {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px 20px;
    border: 2px dashed var(--color-gray-200);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    gap: 6px;
  }

  .file-drop-zone:hover,
  .file-drop-zone.dragover {
    border-color: var(--color-gold);
    background: rgba(200, 150, 62, 0.03);
  }

  .file-drop-icon {
    color: var(--color-gray-300);
    margin-bottom: 4px;
  }

  .file-drop-zone:hover .file-drop-icon,
  .file-drop-zone.dragover .file-drop-icon {
    color: var(--color-gold);
  }

  .file-drop-text {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-gray-500);
  }

  .file-drop-hint {
    font-size: 0.75rem;
    color: var(--color-gray-300);
  }

  .file-selected {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #f0fdf4;
    border-radius: 6px;
    margin-top: 6px;
  }

  .file-selected[hidden] {
    display: none;
  }

  .file-name {
    font-size: 0.8rem;
    color: #16a34a;
    font-weight: 500;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .file-remove {
    background: none;
    border: none;
    color: var(--color-gray-400);
    font-size: 1.2rem;
    cursor: pointer;
    line-height: 1;
    padding: 0 4px;
  }

  .file-remove:hover {
    color: #dc2626;
  }

  .files-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 6px;
  }

  .files-list-item  {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: #f0fdf4;
    border-radius: 6px;
    font-size: 0.8rem;
    color: #16a34a;
    font-weight: 500;
  }

  .files-list-item .file-remove  {
    background: none;
    border: none;
    color: #9ca3af;
    font-size: 1.2rem;
    cursor: pointer;
    line-height: 1;
    padding: 0 4px;
    margin-left: auto;
  }

  .files-list-item .file-remove:hover  {
    color: #dc2626;
  }

  /* Submit button */
  .apply-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    color: var(--color-white);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.92rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(200, 150, 62, 0.3);
    margin-top: 8px;
    width: 100%;
  }

  .apply-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(200, 150, 62, 0.4);
  }

  .apply-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
  }

  /* Success state */
  .apply-success {
    text-align: center;
    padding: 32px 16px;
  }

  .apply-success[hidden] {
    display: none;
  }

  .success-icon {
    margin-bottom: 16px;
  }

  .apply-success h3 {
    font-size: 1.2rem;
    color: var(--color-slate-darker);
    margin-bottom: 8px;
  }

  .apply-success p {
    font-size: 0.9rem;
    color: var(--color-gray-500);
    line-height: 1.6;
  }

  /* ── Info Section ── */
  .info-section {
    padding: 80px 0;
    background: var(--color-white);
  }

  .info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .info-card {
    background: var(--color-gray-50);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--color-gray-200);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  }

  .info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-color: var(--color-gold-light);
  }

  .info-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200, 150, 62, 0.1);
    color: var(--color-gold);
    border-radius: 12px;
    margin-bottom: 20px;
  }

  .info-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-slate-darker);
    margin-bottom: 16px;
  }

  .info-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .info-card li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--color-gray-600);
    line-height: 1.5;
  }

  .info-card li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-gold);
    flex-shrink: 0;
  }

  /* ── Responsive ── */
  @media (min-width: 768px) {
    .page-hero {
      min-height: 460px;
    }

    .page-hero-content h1 {
      font-size: 3rem;
    }

    .info-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  @media (min-width: 1024px) {
    .apply-layout {
      grid-template-columns: 1fr 1fr;
      gap: 56px;
    }
  }

  @media (max-width: 640px) {
    .apply-form-card {
      padding: 24px;
      position: static;
    }

    .download-card {
      padding: 12px;
    }

    .download-name {
      font-size: 0.8rem;
    }
  }
