/* ── Page wrapper ── */
    .kt-kvkk-page {
      background: var(--g50);
      min-height: 100vh;
      padding: 48px 24px 80px;
    }

    /* ── Inner container ── */
    .kt-kvkk-container {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 260px 1fr;
      gap: 48px;
      align-items: start;
    }

    /* ══════════════════════
       SIDEBAR / TABLE OF CONTENTS
    ══════════════════════ */
    .kt-kvkk-toc {
      position: sticky;
      top: 145px;
      background: #fff;
      border: 1px solid var(--brd);
      border-radius: 10px;
      padding: 28px 20px;
      box-shadow: var(--shadow-sm);
    }

    .kt-kvkk-toc-label {
      font-size: .70rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--g400);
      margin-bottom: 16px;
      padding-bottom: 12px;
      border-bottom: 1px solid var(--brd);
    }

    .kt-kvkk-toc-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .kt-kvkk-toc-list li a {
      display: block;
      font-size: .82rem;
      color: var(--g600);
      text-decoration: none;
      padding: 7px 10px;
      border-radius: 6px;
      transition: background var(--tf), color var(--tf);
      line-height: 1.45;
    }

    .kt-kvkk-toc-list li a:hover {
      background: var(--surf-hover);
      color: var(--primary-blue);
    }

    .kt-kvkk-toc-list li a.kt-kvkk-toc-active {
      background: var(--surf);
      color: var(--primary-blue);
      font-weight: 600;
    }

    /* ── Toc number badge ── */
    .kt-kvkk-toc-num {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: var(--brd);
      color: var(--primary-blue-dark);
      font-size: .68rem;
      font-weight: 700;
      margin-right: 7px;
      flex-shrink: 0;
      transition: background var(--tf);
    }

    .kt-kvkk-toc-list li a:hover .kt-kvkk-toc-num,
    .kt-kvkk-toc-list li a.kt-kvkk-toc-active .kt-kvkk-toc-num {
      background: var(--primary-blue);
      color: #fff;
    }

    /* ══════════════════════
       ARTICLE / CONTENT AREA
    ══════════════════════ */
    .kt-kvkk-article {
      background: #fff;
      border: 1px solid var(--brd);
      border-radius: 12px;
      box-shadow: var(--shadow-sm);
      overflow: hidden;
    }

    /* ── Banner ── */
    .kt-kvkk-banner {
      background: var(--blue-deep);
      padding: 44px 52px 40px;
      position: relative;
      overflow: hidden;
    }

    .kt-kvkk-banner::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 80% at 90% 50%, rgba(41,94,195,.35) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 10% 80%, rgba(23,157,46,.12) 0%, transparent 60%);
      pointer-events: none;
    }

    .kt-kvkk-banner-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: .72rem;
      font-weight: 600;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: rgba(255,255,255,.55);
      margin-bottom: 14px;
    }

    .kt-kvkk-banner-eyebrow-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--primary-green-light);
      flex-shrink: 0;
    }

    .kt-kvkk-banner h2 {
      font-size: clamp(1.55rem, 3vw, 2.1rem);
      font-weight: 700;
      color: #fff;
      line-height: 1.3;
      position: relative;
      z-index: 1;
    }

    .kt-kvkk-banner-meta {
      margin-top: 18px;
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
      position: relative;
      z-index: 1;
    }

    .kt-kvkk-meta-item {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .kt-kvkk-meta-key {
      font-size: .68rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: rgba(255,255,255,.45);
    }

    .kt-kvkk-meta-val {
      font-size: .85rem;
      color: rgba(255,255,255,.85);
    }

    /* ── Content body ── */
    .kt-kvkk-body {
      padding: 48px 52px 56px;
    }

    /* ── Section ── */
    .kt-kvkk-section {
      margin-bottom: 44px;
      scroll-margin-top: 24px;
    }

    .kt-kvkk-section:last-child {
      margin-bottom: 0;
    }

    /* ── H3 heading ── */
    .kt-kvkk-section h3 {
      font-size: 1.08rem;
      font-weight: 700;
      color: var(--blue-deep);
      margin-bottom: 14px;
      padding-bottom: 10px;
      border-bottom: 2px solid var(--brd);
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .kt-kvkk-section-num {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 28px;
      height: 28px;
      border-radius: 50%;
      background: var(--primary-blue);
      color: #fff;
      font-size: .75rem;
      font-weight: 700;
      flex-shrink: 0;
    }

    /* ── Paragraph ── */
    .kt-kvkk-body p {
      font-size: .945rem;
      color: var(--g700);
      line-height: 1.85;
      margin-bottom: 14px;
    }

    .kt-kvkk-body p:last-child {
      margin-bottom: 0;
    }

    /* ── Lists ── */
    .kt-kvkk-list {
      list-style: none;
      margin: 10px 0 14px;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .kt-kvkk-list li {
      font-size: .93rem;
      color: var(--g700);
      line-height: 1.7;
      padding: 10px 14px 10px 42px;
      background: var(--g50);
      border: 1px solid var(--brd);
      border-radius: 7px;
      position: relative;
      transition: background var(--tf), border-color var(--tf);
    }

    .kt-kvkk-list li:hover {
      background: var(--surf-hover);
      border-color: rgba(41, 94, 195, .20);
    }

    .kt-kvkk-list li::before {
      content: '';
      position: absolute;
      left: 16px;
      top: 17px;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--primary-blue);
    }

    /* ── Two column list ── */
    .kt-kvkk-list-2col {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
    }

    /* ── Highlight box ── */
    .kt-kvkk-highlight {
      background: var(--surf);
      border-left: 3px solid var(--primary-blue);
      border-radius: 0 8px 8px 0;
      padding: 16px 20px;
      margin: 16px 0;
    }

    .kt-kvkk-highlight p {
      margin-bottom: 0 !important;
      color: var(--blue-deep) !important;
      font-size: .9rem !important;
    }

    /* ── Warning box ── */
    .kt-kvkk-warn {
      background: #fffbf0;
      border-left: 3px solid var(--primary-orange);
      border-radius: 0 8px 8px 0;
      padding: 16px 20px;
      margin: 16px 0;
    }

    .kt-kvkk-warn p {
      margin-bottom: 0 !important;
      color: var(--primary-orange-dark) !important;
      font-size: .9rem !important;
    }

    /* ── Rights table ── */
    .kt-kvkk-table-wrap {
      overflow-x: auto;
      border-radius: 8px;
      border: 1px solid var(--brd);
      margin: 16px 0;
    }

    .kt-kvkk-table {
      width: 100%;
      border-collapse: collapse;
      font-size: .88rem;
    }

    .kt-kvkk-table thead tr {
      color: #fff;
    }

    .kt-kvkk-table thead th {
      padding: 13px 18px;
      text-align: left;
      font-weight: 600;
      letter-spacing: .04em;
      font-size: .82rem;
      white-space: nowrap;
    }

    .kt-kvkk-table tbody tr {
      border-bottom: 1px solid var(--brd);
      transition: background var(--tf);
    }

    .kt-kvkk-table tbody tr:last-child {
      border-bottom: none;
    }

    .kt-kvkk-table tbody tr:hover {
      background: var(--surf-hover);
    }

    .kt-kvkk-table tbody td {
      padding: 12px 18px;
      color: var(--g700);
      line-height: 1.6;
      vertical-align: top;
    }

    .kt-kvkk-table tbody td:first-child {
      font-weight: 600;
      color: var(--blue-deep);
      white-space: nowrap;
    }

    /* ── Contact card ── */
    .kt-kvkk-contact-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 14px;
      margin: 16px 0;
    }

    .kt-kvkk-contact-card {
      background: var(--g50);
      border: 1px solid var(--brd);
      border-radius: 9px;
      padding: 18px;
      transition: background var(--tf), border-color var(--tf), box-shadow var(--tf);
    }

    .kt-kvkk-contact-card:hover {
      background: var(--surf-hover);
      border-color: rgba(41,94,195,.25);
      box-shadow: 0 3px 10px rgba(41,94,195,.08);
    }

    .kt-kvkk-contact-icon {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      background: var(--primary-blue);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 12px;
    }

    .kt-kvkk-contact-icon svg {
      width: 18px;
      height: 18px;
      stroke: #fff;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .kt-kvkk-contact-label {
      font-size: .70rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--g400);
      margin-bottom: 4px;
    }

    .kt-kvkk-contact-val {
      font-size: .88rem;
      color: var(--blue-deep);
      font-weight: 600;
      line-height: 1.4;
    }

    /* ── Divider ── */
    .kt-kvkk-divider {
      height: 1px;
      background: var(--brd);
      margin: 36px 0;
    }

    /* ── Footer note ── */
    .kt-kvkk-footer-note {
      margin-top: 48px;
      padding: 22px 28px;
      background: var(--blue-deep);
      border-radius: 10px;
      display: flex;
      align-items: flex-start;
      gap: 16px;
    }

    .kt-kvkk-footer-note-icon {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: rgba(255,255,255,.12);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .kt-kvkk-footer-note-icon svg {
      width: 18px;
      height: 18px;
      stroke: rgba(255,255,255,.9);
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .kt-kvkk-footer-note p {
      font-size: .86rem !important;
      color: rgba(255,255,255,.75) !important;
      margin-bottom: 0 !important;
    }

    .kt-kvkk-footer-note strong {
      color: #fff;
      font-weight: 700;
    }

    /* ══════════════════════
       RESPONSIVE
    ══════════════════════ */
    @media (max-width: 1100px) {
      .kt-kvkk-container {
        grid-template-columns: 220px 1fr;
        gap: 32px;
      }
    }

    @media (max-width: 860px) {
      .kt-kvkk-container {
        grid-template-columns: 1fr;
      }

      .kt-kvkk-toc {
        position: static;
        display: none; /* hidden on mobile, keep clean */
      }

      .kt-kvkk-banner {
        padding: 32px 28px 28px;
      }

      .kt-kvkk-body {
        padding: 32px 28px 40px;
      }

      .kt-kvkk-list-2col {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 560px) {
      .kt-kvkk-page {
        padding: 24px 12px 56px;
      }

      .kt-kvkk-banner {
        padding: 26px 20px 22px;
      }

      .kt-kvkk-body {
        padding: 26px 20px 32px;
      }

      .kt-kvkk-contact-grid {
        grid-template-columns: 1fr;
      }

      .kt-kvkk-banner h2 {
        font-size: 1.35rem;
      }
    }