    /* Global link reset — navbar/footer link'lerin default underline'ını kaldırır */
    a {
      text-decoration: none;
      color: inherit;
    }

    /* Body font-family — Bootstrap system-ui'yi override etmek için */
    body {
      font-family: 'Poppins', sans-serif;
    }

    /* ===== KARIYER PAGE ===== */

    /* Hero */
    .career-hero {
      background: linear-gradient(135deg, #5c1a58 0%, #3d1138 100%);
      color: #fff;
      padding: 5rem 1.5rem 4rem;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .career-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
      background-size: 48px 48px;
      mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
      -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
      pointer-events: none;
    }

    .career-hero-inner {
      position: relative;
      max-width: 800px;
      margin: 0 auto;
    }

    .career-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.18);
      backdrop-filter: blur(8px);
      color: #fff;
      padding: 0.5rem 1rem;
      border-radius: 9999px;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      margin-bottom: 1.5rem;
      text-transform: uppercase;
    }

    .career-badge .dot {
      width: 6px;
      height: 6px;
      background: #FFB800;
      border-radius: 50%;
      animation: cBlink 1.4s ease-in-out infinite;
    }

    @keyframes cBlink {

      0%,
      100% {
        opacity: 1;
      }

      50% {
        opacity: 0.3;
      }
    }

    .career-hero h1 {
      font-size: 2.25rem;
      font-weight: 800;
      line-height: 1.1;
      margin: 0 0 1rem;
      letter-spacing: -0.02em;
    }

    @media (min-width: 768px) {
      .career-hero h1 {
        font-size: 3.25rem;
      }
    }

    .career-hero h1 span {
      background: linear-gradient(135deg, #FFB800 0%, #FF6B6B 100%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      color: transparent;
    }

    .career-hero p {
      font-size: 1.0625rem;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.75);
      margin: 0 auto;
      max-width: 600px;
    }

    /* Why Section */
    .career-why {
      padding: 5rem 1.5rem 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .career-why-title {
      text-align: center;
      margin-bottom: 3rem;
    }

    .career-why-title h2 {
      font-size: 2rem;
      font-weight: 800;
      color: #0C003D;
      margin: 0 0 0.5rem;
    }

    .career-why-title p {
      color: rgba(12, 0, 61, 0.6);
      max-width: 600px;
      margin: 0 auto;
    }

    .career-benefits {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.25rem;
    }

    @media (min-width: 640px) {
      .career-benefits {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 1024px) {
      .career-benefits {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    .benefit-card {
      background: #fff;
      border: 1px solid rgba(12, 0, 61, 0.06);
      border-radius: 1.25rem;
      padding: 1.75rem 1.5rem;
      transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    }

    .benefit-card:hover {
      transform: translateY(-4px);
      border-color: rgba(92, 26, 88, 0.2);
      box-shadow: 0 12px 32px -16px rgba(92, 26, 88, 0.25);
    }

    .benefit-card .icon {
      width: 48px;
      height: 48px;
      background: rgba(92, 26, 88, 0.08);
      border-radius: 0.75rem;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem;
    }

    .benefit-card .icon svg {
      width: 24px;
      height: 24px;
      color: #5c1a58;
    }

    .benefit-card h3 {
      font-size: 1rem;
      font-weight: 700;
      color: #0C003D;
      margin: 0 0 0.5rem;
    }

    .benefit-card p {
      font-size: 0.875rem;
      line-height: 1.55;
      color: rgba(12, 0, 61, 0.65);
      margin: 0;
    }

    /* Open Positions */
    .career-positions {
      padding: 4rem 1.5rem;
      max-width: 1200px;
      margin: 0 auto;
    }

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

    @media (min-width: 768px) {
      .positions-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    .position-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      background: #fff;
      border: 1px solid rgba(12, 0, 61, 0.06);
      border-radius: 1rem;
      padding: 1.25rem 1.5rem;
      transition: all 0.2s;
      cursor: pointer;
    }

    .position-item:hover {
      border-color: #5c1a58;
      background: #f8f5f8;
    }

    .position-item .info h4 {
      font-size: 1rem;
      font-weight: 700;
      color: #0C003D;
      margin: 0 0 0.25rem;
    }

    .position-item .info span {
      font-size: 0.8125rem;
      color: rgba(12, 0, 61, 0.55);
    }

    .position-item .arrow {
      flex-shrink: 0;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(92, 26, 88, 0.08);
      color: #5c1a58;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s, color 0.2s, transform 0.2s;
    }

    .position-item:hover .arrow {
      background: #5c1a58;
      color: #fff;
      transform: translateX(3px);
    }

    .position-item .arrow svg {
      width: 16px;
      height: 16px;
    }

    /* Form */
    .career-form-section {
      padding: 4rem 1.5rem 6rem;
      max-width: 900px;
      margin: 0 auto;
    }

    .career-form-card {
      background: #fff;
      border-radius: 1.5rem;
      border: 1px solid rgba(12, 0, 61, 0.06);
      padding: 2.5rem;
      box-shadow: 0 10px 40px -20px rgba(92, 26, 88, 0.15);
    }

    @media (max-width: 600px) {
      .career-form-card {
        padding: 1.75rem 1.5rem;
      }
    }

    .career-form-card .form-header {
      text-align: center;
      margin-bottom: 2rem;
    }

    .career-form-card .form-header h2 {
      font-size: 1.75rem;
      font-weight: 800;
      color: #0C003D;
      margin: 0 0 0.5rem;
    }

    .career-form-card .form-header p {
      color: rgba(12, 0, 61, 0.6);
      margin: 0;
    }

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

    .form-grid .full {
      grid-column: 1 / -1;
    }

    @media (max-width: 600px) {
      .form-grid {
        grid-template-columns: 1fr;
      }

      .form-grid .full {
        grid-column: auto;
      }
    }

    .form-field {
      display: flex;
      flex-direction: column;
    }

    .form-field label {
      font-size: 0.8125rem;
      font-weight: 600;
      color: #0C003D;
      margin-bottom: 0.4rem;
    }

    .form-field label .req {
      color: #C2574A;
    }

    .form-field input,
    .form-field select,
    .form-field textarea {
      width: 100%;
      padding: 0.875rem 1rem;
      border: 1px solid transparent;
      border-radius: 0.75rem;
      font-size: 0.9375rem;
      font-family: 'Poppins', sans-serif;
      color: #0C003D;
      background: #f4f4f4;
      transition: border-color 0.2s, background 0.2s;
      outline: none;
    }

    .form-field textarea {
      resize: vertical;
      min-height: 100px;
    }

    .form-field input:focus,
    .form-field select:focus,
    .form-field textarea:focus {
      border-color: #5c1a58;
      background: #fff;
    }

    .form-field input::placeholder,
    .form-field textarea::placeholder {
      color: #999;
    }

    .form-field select {
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235c1a58' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 0.75rem center;
      background-size: 18px;
      padding-right: 2.5rem;
    }

    /* CV Upload */
    .cv-upload {
      position: relative;
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1.25rem 1.5rem;
      background: #f4f4f4;
      border: 2px dashed rgba(92, 26, 88, 0.25);
      border-radius: 0.875rem;
      cursor: pointer;
      transition: border-color 0.2s, background 0.2s;
    }

    .cv-upload:hover {
      border-color: #5c1a58;
      background: #f8f5f8;
    }

    .cv-upload input[type="file"] {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      cursor: pointer;
    }

    .cv-upload .icon {
      width: 44px;
      height: 44px;
      flex-shrink: 0;
      background: rgba(92, 26, 88, 0.1);
      border-radius: 0.625rem;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #5c1a58;
    }

    .cv-upload .icon svg {
      width: 22px;
      height: 22px;
    }

    .cv-upload .label {
      flex: 1;
      min-width: 0;
    }

    .cv-upload .label strong {
      display: block;
      font-size: 0.9375rem;
      color: #0C003D;
      margin-bottom: 2px;
    }

    .cv-upload .label small {
      font-size: 0.75rem;
      color: rgba(12, 0, 61, 0.55);
    }

    .cv-upload.has-file {
      border-style: solid;
      border-color: #5c1a58;
      background: #f8f5f8;
    }

    /* Consent */
    .career-consent {
      margin-top: 1.5rem;
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      padding: 1rem 1.25rem;
      background: #f4f4f4;
      border-radius: 0.75rem;
    }

    .career-consent input[type="checkbox"] {
      width: 18px;
      height: 18px;
      flex-shrink: 0;
      margin-top: 2px;
      accent-color: #5c1a58;
      cursor: pointer;
    }

    .career-consent label {
      font-size: 0.8125rem;
      line-height: 1.55;
      color: rgba(12, 0, 61, 0.75);
      cursor: pointer;
    }

    .career-consent label a {
      color: #5c1a58;
      font-weight: 600;
      text-decoration: underline;
    }

    /* Submit button */
    .career-submit {
      margin-top: 1.5rem;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.625rem;
      border-radius: 9999px;
      background: #5c1a58;
      padding: 1rem 2rem;
      font-size: 1rem;
      font-weight: 700;
      color: #fff;
      border: none;
      cursor: pointer;
      font-family: 'Poppins', sans-serif;
      transition: background 0.2s, transform 0.2s;
    }

    .career-submit:hover {
      background: #4a1547;
      transform: translateY(-1px);
    }

    .career-submit svg {
      width: 18px;
      height: 18px;
    }

    /* Disabled (submit anında) */
    .career-submit:disabled {
      cursor: not-allowed;
      opacity: 0.85;
    }

    /* İçindeki "default" ve "loading" span'leri inline-flex olarak hizala */
    .career-submit-default,
    .career-submit-loading {
      display: inline-flex;
      align-items: center;
      gap: 0.625rem;
    }

    /* Spinner — beyaz halka, dönen ipucu */
    .career-spinner {
      width: 18px;
      height: 18px;
      border: 2px solid rgba(255, 255, 255, 0.35);
      border-top-color: #fff;
      border-radius: 50%;
      animation: career-spin 0.8s linear infinite;
      display: inline-block;
    }

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

    /* Alerts */
    .career-alert {
      padding: 1rem 1.25rem;
      border-radius: 0.75rem;
      margin-bottom: 1.5rem;
      font-size: 0.9375rem;
    }

    .career-alert.error {
      background: #fdecea;
      color: #b71c1c;
      border-left: 4px solid #b71c1c;
    }

    .career-alert.success {
      background: #e8f5e9;
      color: #1b5e20;
      border-left: 4px solid #1b5e20;
      text-align: center;
      font-weight: 500;
    }

    .career-alert ul {
      margin: 0.5rem 0 0;
      padding-left: 1.25rem;
    }

    .career-alert ul li {
      list-style: disc;
    }

    /* Stats strip */
    .career-stats {
      background: #fff;
      border-top: 1px solid rgba(12, 0, 61, 0.06);
      border-bottom: 1px solid rgba(12, 0, 61, 0.06);
      padding: 2.5rem 1.5rem;
    }

    .career-stats-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
      text-align: center;
    }

    @media (min-width: 768px) {
      .career-stats-inner {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    .stat-item .num {
      font-size: 2rem;
      font-weight: 800;
      color: #5c1a58;
      line-height: 1;
      margin-bottom: 0.375rem;
    }

    @media (min-width: 768px) {
      .stat-item .num {
        font-size: 2.5rem;
      }
    }

    .stat-item .label {
      font-size: 0.8125rem;
      color: rgba(12, 0, 61, 0.6);
      font-weight: 500;
    }
