/* ── SS HERO ───────────────────────────────────────────── */
    .ss-hero {
      background: linear-gradient(135deg, #030712 0%, #0a1628 40%, #134e4a 100%);
      padding: 88px 0 72px;
      position: relative;
      overflow: hidden;
    }
    .ss-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 55% 55% at 20% 40%, rgba(16,185,129,.14) 0%, transparent 65%),
        radial-gradient(ellipse 50% 50% at 80% 65%, rgba(37,99,235,.12) 0%, transparent 65%);
    }
    .ss-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(16,185,129,.14);
      border: 1px solid rgba(52,211,153,.24);
      border-radius: 20px;
      padding: 6px 16px;
      font-size: .72rem;
      font-weight: 700;
      color: #6ee7b7;
      letter-spacing: .08em;
      text-transform: uppercase;
      margin-bottom: 18px;
    }
    .ss-hero h1 {
      font-size: clamp(2rem, 4.5vw, 3rem);
      font-weight: 900;
      color: #fff;
      line-height: 1.15;
      margin-bottom: 18px;
    }
    .ss-hero h1 span {
      background: linear-gradient(90deg, #34d399, #60a5fa);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .ss-hero .lead { font-size: 1rem; color: rgba(255,255,255,.62); line-height: 1.75; max-width: 620px; }

    /* ── INTRO CARDS ───────────────────────────────────────── */
    .ss-intro-stat {
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 16px;
      padding: 24px;
      text-align: center;
    }
    .ss-intro-stat-num { font-size: 2rem; font-weight: 900; color: #34d399; }
    .ss-intro-stat-label { font-size: .8rem; color: rgba(255,255,255,.5); margin-top: 4px; }

    /* ── PROJECT SECTION ───────────────────────────────────── */
    .ss-section { padding: 0; }

    .ss-project {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 480px;
      align-items: stretch;
    }
    .ss-project--reverse { direction: rtl; }
    .ss-project--reverse > * { direction: ltr; }

    .ss-project-img {
      position: relative;
      overflow: hidden;
    }
    .ss-project-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .5s ease;
    }
    .ss-project:hover .ss-project-img img { transform: scale(1.04); }
    .ss-project-img-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(0,0,0,.2), transparent);
    }

    .ss-project-content {
      padding: 56px 56px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .ss-project--bg-dark { background: #0a1628; }
    .ss-project--bg-darkest { background: #070e1a; }
    .ss-project--bg-light { background: #f8fafc; }
    .ss-project--bg-white { background: #fff; }
    .ss-project--bg-teal { background: #0d2d2a; }
    .ss-project--bg-navy { background: #0a1628; }

    .ss-proj-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 5px 14px;
      border-radius: 20px;
      font-size: .68rem;
      font-weight: 800;
      letter-spacing: .07em;
      text-transform: uppercase;
      margin-bottom: 18px;
      width: fit-content;
    }
    .ss-proj-badge--red { background: rgba(239,68,68,.15); color: #fca5a5; border: 1px solid rgba(239,68,68,.25); }
    .ss-proj-badge--green { background: rgba(16,185,129,.15); color: #6ee7b7; border: 1px solid rgba(16,185,129,.25); }
    .ss-proj-badge--blue { background: rgba(37,99,235,.18); color: #93c5fd; border: 1px solid rgba(96,165,250,.25); }
    .ss-proj-badge--amber { background: rgba(245,158,11,.15); color: #fde68a; border: 1px solid rgba(245,158,11,.25); }
    .ss-proj-badge--purple { background: rgba(139,92,246,.15); color: #c4b5fd; border: 1px solid rgba(139,92,246,.25); }
    .ss-proj-badge--light { background: rgba(37,99,235,.1); color: #2563eb; border: 1px solid rgba(37,99,235,.2); }

    .ss-proj-title-dark {
      font-size: clamp(1.4rem, 2.8vw, 2rem);
      font-weight: 900;
      color: #fff;
      line-height: 1.2;
      margin-bottom: 16px;
    }
    .ss-proj-title-light {
      font-size: clamp(1.4rem, 2.8vw, 2rem);
      font-weight: 900;
      color: #0f172a;
      line-height: 1.2;
      margin-bottom: 16px;
    }
    .ss-proj-desc-dark {
      font-size: .9rem;
      color: rgba(255,255,255,.62);
      line-height: 1.8;
      margin-bottom: 28px;
    }
    .ss-proj-desc-light {
      font-size: .9rem;
      color: #475569;
      line-height: 1.8;
      margin-bottom: 28px;
    }
    .ss-proj-info {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .ss-proj-info-row {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: .85rem;
    }
    .ss-proj-info-row i { margin-top: 2px; flex-shrink: 0; }
    .ss-proj-info-row.dark { color: rgba(255,255,255,.7); }
    .ss-proj-info-row.dark i { color: #34d399; }
    .ss-proj-info-row.light { color: #334155; }
    .ss-proj-info-row.light i { color: #2563eb; }

    .btn-ss-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 12px 24px;
      background: linear-gradient(135deg, #059669, #0d9488);
      color: #fff;
      border: none;
      border-radius: 12px;
      font-size: .875rem;
      font-weight: 700;
      text-decoration: none;
      transition: all .2s;
      font-family: inherit;
      margin-top: 24px;
      width: fit-content;
    }
    .btn-ss-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(5,150,105,.4); color: #fff; }
    .btn-ss-blue {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 12px 24px;
      background: linear-gradient(135deg, #2563eb, #4f46e5);
      color: #fff;
      border: none;
      border-radius: 12px;
      font-size: .875rem;
      font-weight: 700;
      text-decoration: none;
      transition: all .2s;
      font-family: inherit;
      margin-top: 24px;
      width: fit-content;
    }
    .btn-ss-blue:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37,99,235,.4); color: #fff; }

    /* ── DEPREM ÖZEL ────────────────────────────────────────── */
    .ss-sms-box {
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 14px;
      padding: 20px 24px;
      margin-top: 20px;
    }
    .ss-sms-box h6 { font-size: .82rem; font-weight: 800; color: rgba(255,255,255,.8); margin-bottom: 10px; }
    .ss-sms-step {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: .82rem;
      color: rgba(255,255,255,.6);
      padding: 6px 0;
    }
    .ss-sms-step-num {
      width: 22px; height: 22px;
      background: #2563eb;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .68rem;
      font-weight: 800;
      color: #fff;
      flex-shrink: 0;
    }
    .ss-sms-code {
      display: inline-block;
      background: rgba(96,165,250,.15);
      border: 1px solid rgba(96,165,250,.25);
      border-radius: 6px;
      padding: 2px 10px;
      font-family: monospace;
      font-weight: 700;
      color: #93c5fd;
      font-size: .9em;
    }

    /* ── STAJ / INTERN ──────────────────────────────────────── */
    .ss-intern-features {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-top: 24px;
    }
    .ss-intern-feat {
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 12px;
      padding: 16px;
      font-size: .82rem;
      color: rgba(255,255,255,.7);
    }
    .ss-intern-feat i { color: #60a5fa; margin-right: 7px; }

    /* ── FIDAN / KODLA highlight ────────────────────────────── */
    .ss-highlight-tag {
      display: inline-block;
      background: rgba(16,185,129,.12);
      border: 1px solid rgba(16,185,129,.2);
      border-radius: 8px;
      padding: 12px 18px;
      font-size: .875rem;
      font-style: italic;
      color: #6ee7b7;
      margin-bottom: 24px;
    }
    .ss-highlight-tag-light {
      display: inline-block;
      background: #f0fdf4;
      border: 1px solid #bbf7d0;
      border-radius: 8px;
      padding: 12px 18px;
      font-size: .875rem;
      font-style: italic;
      color: #15803d;
      margin-bottom: 24px;
    }

    /* ── RESPONSIVE ─────────────────────────────────────────── */
    @media (max-width: 991px) {
      .ss-project { grid-template-columns: 1fr; min-height: auto; }
      .ss-project--reverse { direction: ltr; }
      .ss-project-content { padding: 40px 32px; }
      .ss-project-img { min-height: 280px; }
      .ss-intern-features { grid-template-columns: 1fr; }
    }
    @media (max-width: 575px) {
      .ss-project-content { padding: 32px 20px; }
    }