     *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

      :root {
        --teal: #00b09c;
        --teal-dark: #019283;
        --teal-light: #e6f7f5;
        --teal-mid: #b2e8e2;
        --ink: #111827;
        --ink-soft: #374151;
        --muted: #6b7280;
        --border: #e5e7eb;
        --surface: #f9fafb;
        --white: #ffffff;
      }

      body {
        font-family: 'DM Sans', sans-serif;
        background: var(--white);
        color: var(--ink);
        padding-top: 64px;
      }

      /* ── Hero ── */
      .jd-hero {
        background: var(--teal-light);
        border-bottom: 1px solid var(--teal-mid);
        padding: 56px 24px 48px;
        animation: fadeUp 0.5s ease both;
      }

      .jd-hero-inner {
        max-width: 820px;
        margin: auto;
      }

      .jd-back {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 13px;
        color: var(--teal-dark);
        text-decoration: none;
        font-weight: 500;
        margin-bottom: 28px;
        transition: gap 0.2s;
      }
      .jd-back:hover { gap: 10px; }
      .jd-back svg { width: 16px; height: 16px; }

      .jd-tag {
        display: inline-block;
        background: var(--teal);
        color: #fff;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.07em;
        text-transform: uppercase;
        padding: 4px 12px;
        border-radius: 20px;
        margin-bottom: 16px;
      }

      .jd-hero h1 {
        font-family: 'DM Serif Display', serif;
        font-size: clamp(1.8rem, 4vw, 2.6rem);
        color: var(--ink);
        line-height: 1.2;
        margin-bottom: 24px;
      }

      .jd-pills {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
      }

      .jd-pill {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 13px;
        font-weight: 500;
        color: var(--ink-soft);
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 8px;
        padding: 6px 14px;
      }
      .jd-pill span.icon { font-size: 15px; }

      /* ── Layout ── */
      .jd-layout {
        max-width: 820px;
        margin: 0 auto;
        padding: 48px 24px 80px;
        display: grid;
        grid-template-columns: 1fr 280px;
        gap: 40px;
        align-items: start;
      }

      @media (max-width: 680px) {
        .jd-layout { grid-template-columns: 1fr; }
        .jd-sidebar { order: -1; }
      }

      /* ── Sections ── */
      .jd-section {
        margin-bottom: 40px;
        animation: fadeUp 0.5s ease both;
      }
      .jd-section:nth-child(1) { animation-delay: 0.05s; }
      .jd-section:nth-child(2) { animation-delay: 0.10s; }
      .jd-section:nth-child(3) { animation-delay: 0.15s; }
      .jd-section:nth-child(4) { animation-delay: 0.20s; }

      .jd-section h2 {
        font-family: 'DM Serif Display', serif;
        font-size: 1.25rem;
        color: var(--ink);
        margin-bottom: 14px;
        padding-bottom: 10px;
        border-bottom: 2px solid var(--teal-mid);
        display: flex;
        align-items: center;
        gap: 8px;
      }
      .jd-section h2 .sec-icon { font-size: 17px; }

      .jd-section p {
        font-size: 15px;
        color: var(--ink-soft);
        line-height: 1.75;
      }

      .jd-list {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 10px;
      }

      .jd-list li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 15px;
        color: var(--ink-soft);
        line-height: 1.6;
      }

      .jd-list li::before {
        content: '';
        flex-shrink: 0;
        width: 7px;
        height: 7px;
        margin-top: 7px;
        background: var(--teal);
        border-radius: 50%;
      }

      /* ── Perks grid ── */
      .jd-perks {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
      }

      @media (max-width: 460px) { .jd-perks { grid-template-columns: 1fr; } }

      .jd-perk-card {
        background: var(--teal-light);
        border: 1px solid var(--teal-mid);
        border-radius: 10px;
        padding: 14px 16px;
        display: flex;
        align-items: flex-start;
        gap: 10px;
      }
      .jd-perk-icon { font-size: 20px; line-height: 1; }
      .jd-perk-text { font-size: 13px; color: var(--ink-soft); font-weight: 500; line-height: 1.5; }

      /* ── Sidebar ── */
      .jd-sidebar {
        display: flex;
        flex-direction: column;
        gap: 20px;
        animation: fadeUp 0.5s 0.25s ease both;
      }

      .jd-apply-card {
        background: var(--teal);
        border-radius: 14px;
        padding: 28px 24px;
        color: #fff;
        text-align: center;
      }

      .jd-apply-card h3 {
        font-family: 'DM Serif Display', serif;
        font-size: 1.3rem;
        margin-bottom: 8px;
      }

      .jd-apply-card p {
        font-size: 13px;
        opacity: 0.88;
        margin-bottom: 20px;
        line-height: 1.6;
      }

      .jd-apply-btn {
        display: block;
        background: #fff;
        color: var(--teal-dark);
        font-weight: 700;
        font-size: 14px;
        text-decoration: none;
        padding: 11px 0;
        border-radius: 8px;
        transition: transform 0.15s, box-shadow 0.15s;
      }
      .jd-apply-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }

      .jd-whatsapp-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        background: #25D366;
        color: #fff;
        font-weight: 700;
        font-size: 14px;
        text-decoration: none;
        padding: 11px 0;
        border-radius: 8px;
        margin-top: 10px;
        transition: transform 0.15s, box-shadow 0.15s;
      }
      .jd-whatsapp-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
      .jd-whatsapp-btn svg { width: 18px; height: 18px; fill: #fff; }

      .jd-meta-card {
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: 14px;
        padding: 20px;
      }

      .jd-meta-card h4 {
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: var(--muted);
        font-weight: 600;
        margin-bottom: 14px;
      }

      .jd-meta-row {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 8px;
        padding: 9px 0;
        border-bottom: 1px solid var(--border);
        font-size: 13px;
      }
      .jd-meta-row:last-child { border-bottom: none; padding-bottom: 0; }
      .jd-meta-label { color: var(--muted); font-weight: 500; flex-shrink: 0; }
      .jd-meta-val { color: var(--ink); font-weight: 600; text-align: right; }

      .jd-note {
        background: #fffbeb;
        border: 1px solid #fde68a;
        border-radius: 10px;
        padding: 14px 16px;
        font-size: 13px;
        color: #92400e;
        line-height: 1.6;
      }

      @keyframes fadeUp {
        from { opacity: 0; transform: translateY(14px); }
        to   { opacity: 1; transform: translateY(0); }
      }