/* ── IK HERO ───────────────────────────────────────────── */
    .ik-hero {
      background: linear-gradient(135deg, #020817 0%, #0a1628 45%, #0d1f3c 100%);
      padding: 96px 0 80px;
      position: relative;
      overflow: hidden;
    }
    .ik-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 70% 60% at 60% 40%, rgba(37,99,235,.18) 0%, transparent 70%),
                  radial-gradient(ellipse 40% 40% at 15% 70%, rgba(99,102,241,.12) 0%, transparent 60%);
    }
    .ik-hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(37,99,235,.14);
      border: 1px solid rgba(96,165,250,.25);
      border-radius: 20px;
      padding: 6px 16px;
      font-size: .75rem;
      font-weight: 700;
      color: #93c5fd;
      letter-spacing: .07em;
      text-transform: uppercase;
      margin-bottom: 20px;
    }
    .ik-hero h1 {
      font-size: clamp(2rem, 5vw, 3.2rem);
      font-weight: 900;
      color: #fff;
      line-height: 1.15;
      margin-bottom: 20px;
    }
    .ik-hero h1 .grad {
      background: linear-gradient(90deg, #60a5fa, #818cf8);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .ik-hero .lead {
      font-size: 1.05rem;
      color: rgba(255,255,255,.65);
      line-height: 1.75;
      max-width: 580px;
      margin-bottom: 32px;
    }
    .btn-ik-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 28px;
      background: linear-gradient(135deg, #2563eb, #4f46e5);
      color: #fff;
      border: none;
      border-radius: 12px;
      font-size: .95rem;
      font-weight: 700;
      text-decoration: none;
      transition: all .2s;
      font-family: inherit;
    }
    .btn-ik-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(37,99,235,.4); color: #fff; }
    .btn-ik-ghost {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 28px;
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.18);
      color: rgba(255,255,255,.85);
      border-radius: 12px;
      font-size: .95rem;
      font-weight: 600;
      text-decoration: none;
      transition: all .2s;
    }
    .btn-ik-ghost:hover { background: rgba(255,255,255,.13); color: #fff; }
    .ik-hero-img {
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 32px 80px rgba(0,0,0,.45);
    }
    .ik-hero-img img { width: 100%; height: auto; display: block; }

    /* ── STATS BAR ─────────────────────────────────────────── */
    .ik-stats-bar {
      background: rgba(255,255,255,.03);
      border-top: 1px solid rgba(255,255,255,.06);
      border-bottom: 1px solid rgba(255,255,255,.06);
      padding: 24px 0;
    }
    .ik-stat-item { text-align: center; }
    .ik-stat-num {
      font-size: 1.9rem;
      font-weight: 900;
      background: linear-gradient(90deg, #60a5fa, #818cf8);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1.1;
    }
    .ik-stat-label { font-size: .8rem; color: rgba(255,255,255,.5); margin-top: 4px; }

    /* ── SECTION SHARED ────────────────────────────────────── */
    .ik-section { padding: 80px 0; }
    .ik-section--dark { background: #070e1a; }
    .ik-section--mid { background: #0a1628; }
    .ik-section--light { background: #f8fafc; }
    .ik-eyebrow {
      display: inline-block;
      font-size: .72rem;
      font-weight: 800;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: #2563eb;
      margin-bottom: 12px;
    }
    .ik-section-title {
      font-size: clamp(1.6rem, 3.5vw, 2.2rem);
      font-weight: 900;
      color: #0f172a;
      line-height: 1.2;
      margin-bottom: 14px;
    }
    .ik-section-title.on-dark { color: #fff; }
    .ik-section-sub { font-size: 1rem; color: #64748b; line-height: 1.7; max-width: 580px; }
    .ik-section-sub.on-dark { color: rgba(255,255,255,.55); }

    /* ── WHY JOIN US ───────────────────────────────────────── */
    .ik-value-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    @media (max-width: 991px) { .ik-value-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 575px)  { .ik-value-grid { grid-template-columns: 1fr; } }
    .ik-value-card {
      position: relative;
      background: linear-gradient(145deg, #0d1f3c, #0a1628);
      border-radius: 24px;
      padding: 32px 28px;
      border: 1px solid rgba(255,255,255,.07);
      overflow: hidden;
      transition: all .3s ease;
    }
    .ik-value-card:hover { transform: translateY(-5px); box-shadow: 0 24px 56px rgba(0,0,0,.4); border-color: rgba(96,165,250,.25); }
    .ik-value-card-glow {
      position: absolute;
      width: 180px; height: 180px;
      border-radius: 50%;
      top: -50px; right: -50px;
      pointer-events: none;
      opacity: .1;
      transition: opacity .3s;
    }
    .ik-value-card:hover .ik-value-card-glow { opacity: .2; }
    .ik-value-num {
      font-size: .65rem;
      font-weight: 800;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: rgba(255,255,255,.2);
      margin-bottom: 18px;
    }
    .ik-value-icon {
      width: 56px;
      height: 56px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
      font-size: 1.3rem;
    }
    .ik-value-icon--blue   { background: rgba(37,99,235,.2);   color: #60a5fa; }
    .ik-value-icon--indigo { background: rgba(99,102,241,.2);  color: #a5b4fc; }
    .ik-value-icon--green  { background: rgba(16,185,129,.18); color: #6ee7b7; }
    .ik-value-icon--amber  { background: rgba(245,158,11,.18); color: #fde68a; }
    .ik-value-icon--cyan   { background: rgba(6,182,212,.18);  color: #67e8f9; }
    .ik-value-icon--rose   { background: rgba(244,63,94,.18);  color: #fda4af; }
    .ik-value-card h4 { font-size: 1.02rem; font-weight: 800; color: #fff; margin-bottom: 10px; }
    .ik-value-card p  { font-size: .875rem; color: rgba(255,255,255,.5); line-height: 1.7; margin: 0; }

    /* ── POSITIONS ─────────────────────────────────────────── */
    .ik-pos-card {
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 20px;
      padding: 32px;
      height: 100%;
      transition: all .25s;
    }
    .ik-pos-card:hover {
      background: rgba(37,99,235,.08);
      border-color: rgba(96,165,250,.35);
      transform: translateY(-3px);
      box-shadow: 0 16px 40px rgba(0,0,0,.25);
    }
    .ik-pos-badge {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      padding: 4px 12px;
      border-radius: 20px;
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: .05em;
      text-transform: uppercase;
      margin-bottom: 16px;
    }
    .ik-pos-badge--tam { background: rgba(16,185,129,.15); color: #6ee7b7; border: 1px solid rgba(16,185,129,.25); }
    .ik-pos-badge--hot { background: rgba(239,68,68,.15); color: #fca5a5; border: 1px solid rgba(239,68,68,.25); }
    .ik-pos-card h3 { font-size: 1.15rem; font-weight: 800; color: #fff; margin-bottom: 12px; }
    .ik-pos-card .ik-pos-desc { font-size: .875rem; color: rgba(255,255,255,.6); line-height: 1.7; margin-bottom: 20px; }
    .ik-pos-reqs { list-style: none; padding: 0; margin: 0 0 24px; }
    .ik-pos-reqs li {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      font-size: .82rem;
      color: rgba(255,255,255,.65);
      padding: 5px 0;
    }
    .ik-pos-reqs li i { color: #60a5fa; font-size: .72rem; margin-top: 3px; flex-shrink: 0; }
    .ik-pos-count {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: .78rem;
      color: rgba(255,255,255,.4);
      font-weight: 600;
      margin-bottom: 20px;
    }
    .btn-apply {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 11px 22px;
      background: linear-gradient(135deg, #2563eb, #4f46e5);
      color: #fff;
      border: none;
      border-radius: 10px;
      font-size: .85rem;
      font-weight: 700;
      text-decoration: none;
      transition: all .2s;
      font-family: inherit;
    }
    .btn-apply:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(37,99,235,.4); color: #fff; }

    /* ── WORKING HOURS ─────────────────────────────────────── */
    .ik-hours-card {
      background: #fff;
      border-radius: 20px;
      padding: 28px 32px;
      border: 1px solid #e2e8f0;
    }
    .ik-hours-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid #f1f5f9; }
    .ik-hours-row:last-child { border-bottom: none; }
    .ik-hours-day { font-size: .9rem; font-weight: 600; color: #334155; }
    .ik-hours-time { font-size: .9rem; font-weight: 700; color: #2563eb; }
    .ik-hours-badge { font-size: .72rem; font-weight: 700; background: #fee2e2; color: #dc2626; padding: 2px 10px; border-radius: 20px; }
    .ik-hours-badge--shift { background: #dbeafe; color: #1d4ed8; }

    /* ── CTA BOTTOM ────────────────────────────────────────── */
    .ik-bottom-cta {
      background: linear-gradient(135deg, #0a1628 0%, #1e3a8a 50%, #1e1b4b 100%);
      border-radius: 28px;
      padding: 60px 48px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .ik-bottom-cta::before {
      content: '';
      position: absolute;
      top: -80px; left: 50%; transform: translateX(-50%);
      width: 500px; height: 300px;
      background: radial-gradient(ellipse, rgba(99,102,241,.2) 0%, transparent 70%);
    }
    .ik-bottom-cta h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 900; color: #fff; margin-bottom: 14px; position: relative; }
    .ik-bottom-cta p { color: rgba(255,255,255,.6); font-size: .975rem; max-width: 460px; margin: 0 auto 32px; position: relative; }
    .ik-bottom-cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; position: relative; }