/* ============================================================
   CAREER PAGE — career.css
   PT Badak LNG | Halaman Karir & Rekrutmen
   ============================================================ */

/* ── Tab section visibility ─────────────────────────────────── */
.career-tab-section { display: none; }
.career-tab-section.active { display: block; }

/* ── A. SEARCH BAR ──────────────────────────────────────────── */
.career-search-wrap {
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 8px 40px rgba(0, 161, 156, 0.13), 0 2px 12px rgba(0,0,0,0.07);
  padding: 28px 32px;
  margin-bottom: 32px;
  border: 1px solid var(--border);
}

.career-search-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: flex-end;
}

.career-search-bar .search-field {
  flex: 2 1 220px;
  position: relative;
}

.career-search-bar .search-field i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--teal);
  font-size: 14px;
  pointer-events: none;
}

.career-search-bar .search-field input {
  width: 100%;
  padding: 12px 14px 12px 40px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: #fafcfc;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}

.career-search-bar .search-field input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 161, 156, 0.12);
  background: #fff;
}

.career-search-bar .search-field input::placeholder {
  color: #aab8c2;
}

.career-search-bar .filter-field {
  flex: 1 1 160px;
}

.career-search-bar .filter-field select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 13.5px;
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: #fafcfc;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2300A19C' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}

.career-search-bar .filter-field select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 161, 156, 0.12);
  background-color: #fff;
}

.career-search-bar .search-btn {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all .25s;
  white-space: nowrap;
  flex-shrink: 0;
}

.career-search-bar .search-btn:hover {
  background: linear-gradient(135deg, var(--teal-mid) 0%, var(--teal) 100%);
  box-shadow: 0 4px 18px rgba(0, 161, 156, 0.35);
  transform: translateY(-1px);
}

/* ── Results label ──────────────────────────────────────────── */
.career-results-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.career-results-label .count-badge {
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 800;
  padding: 2px 10px;
  border-radius: 20px;
}

/* ── B. JOB CARDS GRID ──────────────────────────────────────── */
.job-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.job-card {
  background: var(--white);
  border: 1.5px solid #e8f0ef;
  border-left: 4px solid var(--teal);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: box-shadow .28s, transform .28s, border-color .28s;
  position: relative;
}

.job-card:hover {
  box-shadow: 0 12px 40px rgba(0, 161, 156, 0.15), 0 3px 12px rgba(0,0,0,0.07);
  transform: translateY(-4px);
  border-color: var(--teal);
}

.job-card-dept {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
  width: fit-content;
}

/* Department color variants */
.dept-engineering  { background: #e8f4ff; color: #1565c0; }
.dept-hse          { background: #fff3e0; color: #e65100; }
.dept-operasional  { background: #e8f5e9; color: #2e7d32; }
.dept-it           { background: #f3e5f5; color: #6a1b9a; }
.dept-finance      { background: #fce4ec; color: #b71c1c; }
.dept-default      { background: var(--teal-light); color: var(--teal-dark); }

.job-card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 14px;
}

.job-card-meta {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 14px;
}

.job-card-meta-row {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
}

.job-card-meta span {
  font-size: 12.5px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

.job-card-meta span i {
  font-size: 11px;
  color: var(--teal);
  width: 14px;
  flex-shrink: 0;
}

.job-type-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid var(--border);
}

.job-deadline {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #c0392b;
  font-weight: 600;
}

.job-deadline i { font-size: 11px; }

.job-card-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.job-card-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: #fff;
  font-size: 13.5px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  border: none;
  border-radius: 8px;
  padding: 11px 20px;
  cursor: pointer;
  text-decoration: none;
  transition: all .25s;
  margin-top: auto;
  letter-spacing: 0.3px;
}

.job-card-btn:hover {
  background: linear-gradient(135deg, var(--teal-mid) 0%, var(--teal) 100%);
  box-shadow: 0 4px 16px rgba(0, 161, 156, 0.3);
  color: #fff;
  transform: translateY(-1px);
}

/* ── No results notice ──────────────────────────────────────── */
.career-no-results {
  display: none;
  text-align: center;
  padding: 48px 24px;
  border-radius: 16px;
  background: #f8fbfb;
  border: 1.5px dashed var(--border);
  margin-bottom: 24px;
}

.career-no-results i {
  font-size: 40px;
  color: var(--border);
  margin-bottom: 14px;
}

.career-no-results p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.career-no-results strong { color: var(--navy); }

/* ── No position fallback ───────────────────────────────────── */
.career-fallback-notice {
  background: var(--teal-light);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.career-fallback-notice .notif-text {
  font-size: 14px;
  color: var(--navy);
}

.career-fallback-notice .notif-text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.career-fallback-notice a {
  color: var(--teal-dark);
  font-weight: 700;
  text-decoration: none;
}

.career-fallback-notice a:hover { text-decoration: underline; }

.career-fallback-notice .notif-icon {
  font-size: 36px;
  color: var(--teal);
  flex-shrink: 0;
}

/* ── C. BENEFIT CARDS ───────────────────────────────────────── */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}

.benefit-card {
  background: var(--navy-light);
  border: 1px solid rgba(0, 161, 156, 0.15);
  border-radius: 16px;
  padding: 28px 24px;
  transition: transform .28s, border-color .28s, box-shadow .28s;
  cursor: default;
}

.benefit-card:hover {
  transform: translateY(-5px) scale(1.015);
  border-color: var(--teal);
  box-shadow: 0 10px 36px rgba(0, 161, 156, 0.18);
}

.benefit-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.benefit-icon-wrap i {
  font-size: 22px;
  color: #fff;
}

.benefit-card-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
}

.benefit-card-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
}

/* ── D. TESTIMONIAL STRIP ───────────────────────────────────── */
.testimonial-strip {
  margin-top: 60px;
  padding: 36px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.testimonial-strip-label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--teal-mid);
  text-transform: uppercase;
  margin-bottom: 28px;
}

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

.testimonial-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  padding: 26px 24px;
  position: relative;
  transition: background .2s, border-color .2s;
}

.testimonial-box:hover {
  background: rgba(0, 161, 156, 0.07);
  border-color: rgba(0, 161, 156, 0.25);
}

.testimonial-quote-icon {
  font-size: 28px;
  color: var(--teal);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.testimonial-info-name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.testimonial-info-pos {
  font-size: 11.5px;
  color: var(--teal-mid);
  font-weight: 600;
}

/* ── E. PROCESS STEPS ───────────────────────────────────────── */
.process-steps-wrapper {
  padding: 48px 0 40px;
}

.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  padding-bottom: 12px;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  position: relative;
  z-index: 1;
  padding: 0 8px;
}

.step-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(0, 161, 156, 0.35);
  flex-shrink: 0;
  margin-bottom: 16px;
  border: 3px solid var(--white);
  outline: 3px solid var(--teal-light);
  transition: transform .25s, box-shadow .25s;
}

.process-step:hover .step-circle {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(0, 161, 156, 0.45);
}

.step-connector {
  position: absolute;
  top: 28px;
  left: calc(50% + 28px);
  width: calc(100% - 56px);
  height: 2px;
  background: linear-gradient(90deg, var(--teal-light), var(--border));
  z-index: 0;
}

.process-step:last-child .step-connector { display: none; }

.step-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 7px;
  line-height: 1.3;
}

.step-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 130px;
}

/* Vertical mobile */
.process-steps-mobile {
  display: none;
  flex-direction: column;
  gap: 0;
}

.process-step-v {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 28px;
  position: relative;
}

.process-step-v:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 56px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--teal-light), transparent);
}

.process-step-v .step-circle-v {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0, 161, 156, 0.3);
  border: 3px solid var(--white);
  outline: 3px solid var(--teal-light);
}

.process-step-v .step-body { padding-top: 6px; }

.process-step-v .step-label-v {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
}

.process-step-v .step-desc-v {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ── F. TIP CARDS ───────────────────────────────────────────── */
.tip-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}

.tip-card {
  background: var(--white);
  border-radius: 14px;
  border: 1.5px solid #f0f4f4;
  border-left: 4px solid var(--gold);
  padding: 24px 22px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: box-shadow .25s, transform .25s;
}

.tip-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

.tip-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(249, 163, 48, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.tip-icon i {
  font-size: 20px;
  color: var(--gold);
}

.tip-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.tip-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── G. CTA BANNER ──────────────────────────────────────────── */
.career-cta {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 60%, #005250 100%);
  padding: 80px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.career-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 50%, rgba(255,255,255,0.06) 0%, transparent 55%),
    radial-gradient(circle at 85% 30%, rgba(0,0,0,0.12) 0%, transparent 50%);
  pointer-events: none;
}

.career-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.career-cta-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.12);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.career-cta-title {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.career-cta-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.career-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-email-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 800;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  transition: all .25s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.cta-email-btn:hover {
  background: var(--navy);
  color: var(--teal-mid);
  box-shadow: 0 6px 28px rgba(0,0,0,0.25);
  transform: translateY(-2px);
}

.cta-email-btn i { font-size: 16px; }

.cta-phone-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  font-weight: 600;
}

.cta-phone-label i { color: rgba(255,255,255,0.5); }

/* ── Hero visual stat cards (reuse .hero-stat-card from style.css) ─ */
.career-hero-stats {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ── Section spacing ─────────────────────────────────────────── */
.career-section {
  padding: 80px 0;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 991px) {
  .job-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }

  .tip-cards-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-steps {
    display: none;
  }

  .process-steps-mobile {
    display: flex;
  }
}

@media (max-width: 767px) {
  .career-search-bar {
    flex-direction: column;
    gap: 10px;
  }

  .career-search-bar .search-field,
  .career-search-bar .filter-field {
    flex: none;
    width: 100%;
  }

  .career-search-bar .search-btn {
    width: 100%;
    justify-content: center;
  }

  .career-search-wrap {
    padding: 20px 18px;
  }

  .job-grid {
    grid-template-columns: 1fr;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .tip-cards-grid {
    grid-template-columns: 1fr;
  }

  .career-fallback-notice {
    flex-direction: column;
    text-align: center;
  }

  .career-cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-email-btn { width: 100%; justify-content: center; }

  .career-section { padding: 56px 0; }

  .career-cta { padding: 60px 5%; }
}

@media (max-width: 480px) {
  .career-search-wrap { padding: 16px 14px; }
}

/* ── ELNUSA-STYLE LAYOUT ────────────────────────────────────── */
.elnusa-section { padding: 72px 0; }

.elnusa-label {
  font-size: 11px; font-weight: 800; letter-spacing: 3px;
  text-transform: uppercase; color: var(--teal-dark);
  margin-bottom: 12px;
}

.elnusa-title {
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 800; color: var(--navy);
  line-height: 1.25; margin-bottom: 16px;
}

.elnusa-subtitle {
  font-size: 15px; color: var(--text-muted);
  line-height: 1.8; max-width: 640px;
  margin-bottom: 48px;
}

/* Intro */
.elnusa-intro p {
  font-size: 15px; color: #444;
  line-height: 2; max-width: 820px;
}

/* Reason grid */
.elnusa-reason-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px 56px;
  margin-top: 48px;
}

.elnusa-reason {
  display: flex; gap: 20px; align-items: flex-start;
}

.elnusa-reason-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 12px;
  background: var(--teal-light);
  display: flex; align-items: center; justify-content: center;
}

.elnusa-reason-icon i { font-size: 20px; color: var(--teal-dark); }

.elnusa-reason h4 {
  font-size: 15px; font-weight: 700;
  color: var(--navy); margin-bottom: 8px;
}

.elnusa-reason p {
  font-size: 13.5px; color: var(--text-muted);
  line-height: 1.75; margin: 0;
}

/* Achievement grid */
.elnusa-achieve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border: 1px solid #e8edf2;
  border-radius: 16px;
  overflow: hidden;
  margin-top: 40px;
}

.elnusa-achieve {
  padding: 28px 28px;
  background: #fff;
  border-right: 1px solid #e8edf2;
  border-bottom: 1px solid #e8edf2;
}

.elnusa-achieve:nth-child(3n) { border-right: none; }
.elnusa-achieve:nth-last-child(-n+3) { border-bottom: none; }

.elnusa-achieve-year {
  font-size: 10px; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 10px;
}

.elnusa-achieve h5 {
  font-size: 14px; font-weight: 700;
  color: var(--navy); margin-bottom: 8px;
  line-height: 1.4;
}

.elnusa-achieve p {
  font-size: 13px; color: var(--text-muted);
  line-height: 1.7; margin: 0;
}

/* No job */
.elnusa-no-job {
  text-align: center;
  padding: 56px 24px;
  border: 1.5px dashed #d0d8e0;
  border-radius: 16px;
  background: #fff;
  margin-top: 32px;
}

.elnusa-no-job i {
  font-size: 40px; color: #c0cdd6;
  margin-bottom: 16px;
}

.elnusa-no-job h4 {
  font-size: 18px; font-weight: 700;
  color: var(--navy); margin-bottom: 10px;
}

.elnusa-no-job p {
  font-size: 14px; color: var(--text-muted);
  max-width: 480px; margin: 0 auto 24px;
  line-height: 1.8;
}

.elnusa-mail-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal-dark); color: #fff;
  font-size: 13.5px; font-weight: 700;
  padding: 12px 28px; border-radius: 50px;
  text-decoration: none;
  transition: background .2s, transform .2s;
}

.elnusa-mail-btn:hover {
  background: var(--navy); color: #fff;
  transform: translateY(-2px);
}

/* Testimonial grid */
.elnusa-testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.elnusa-testi {
  background: #f8f9fb;
  border: 1px solid #e8edf2;
  border-radius: 16px;
  padding: 28px 28px;
  display: flex; flex-direction: column; gap: 20px;
}

.elnusa-testi-quote {
  font-size: 14px; color: #444;
  line-height: 1.85; font-style: italic;
  flex: 1; margin: 0;
}

.elnusa-testi-author {
  display: flex; align-items: center; gap: 14px;
}

.elnusa-testi-avatar {
  width: 46px; height: 46px; flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800; color: #fff;
}

.elnusa-testi-name {
  font-size: 14px; font-weight: 700; color: var(--navy);
}

.elnusa-testi-pos {
  font-size: 12px; color: var(--text-muted); margin-top: 2px;
}

/* Responsive */
@media (max-width: 991px) {
  .elnusa-achieve-grid { grid-template-columns: repeat(2, 1fr); }
  .elnusa-achieve:nth-child(3n) { border-right: 1px solid #e8edf2; }
  .elnusa-achieve:nth-child(2n) { border-right: none; }
  .elnusa-achieve:nth-last-child(-n+3) { border-bottom: 1px solid #e8edf2; }
  .elnusa-achieve:nth-last-child(-n+2) { border-bottom: none; }
}

@media (max-width: 767px) {
  .elnusa-section { padding: 48px 0; }
  .elnusa-reason-grid { grid-template-columns: 1fr; gap: 28px; }
  .elnusa-achieve-grid { grid-template-columns: 1fr; }
  .elnusa-achieve { border-right: none !important; border-bottom: 1px solid #e8edf2 !important; }
  .elnusa-achieve:last-child { border-bottom: none !important; }
  .elnusa-testi-grid { grid-template-columns: 1fr; }
}
