:root {
            --primary: #f9b41c;
            --primary-dark: #d99a0e;
            --primary-subtle: rgba(249, 180, 28, 0.1);
            --primary-border: rgba(249, 180, 28, 0.3);
            --success: #10b981;
            --danger: #ef4444;
            --bg: #f8fafc;
            --bg-card: #ffffff;
            --text: #0f172a;
            --text-muted: #64748b;
            --border: #e2e8f0;
            --radius: 14px;
            --shadow: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.7;
            font-size: 15px;
        }

        /* ── HEADER ── */
        .hero {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            padding: 48px 24px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute; inset: 0;
            background: radial-gradient(ellipse at 60% 0%, rgba(249,180,28,0.15) 0%, transparent 60%);
        }
        .hero-logo {
            display: inline-flex; align-items: center; gap: 10px;
            color: var(--primary); font-size: 20px; font-weight: 800;
            letter-spacing: -0.5px; margin-bottom: 24px;
            position: relative;
        }
        .hero-logo svg { width: 28px; height: 28px; }
        .hero h1 {
            color: #f8fafc; font-size: clamp(24px, 5vw, 36px);
            font-weight: 800; letter-spacing: -0.8px; margin-bottom: 10px;
            position: relative;
        }
        .hero p {
            color: #94a3b8; font-size: 14px; position: relative;
        }
        .hero-badge {
            display: inline-flex; align-items: center; gap: 6px;
            background: var(--primary-subtle); border: 1px solid var(--primary-border);
            color: var(--primary); padding: 6px 14px; border-radius: 20px;
            font-size: 12px; font-weight: 700; margin-top: 16px;
            position: relative;
        }

        /* ── LAYOUT ── */
        .container {
            max-width: 760px;
            margin: 0 auto;
            padding: 32px 20px 80px;
        }

        /* ── INTRO CARD ── */
        .intro-card {
            background: var(--primary-subtle);
            border: 1px solid var(--primary-border);
            border-radius: var(--radius);
            padding: 20px 24px;
            margin-bottom: 32px;
            display: flex; gap: 14px; align-items: flex-start;
        }
        .intro-card-icon {
            font-size: 24px; flex-shrink: 0; margin-top: 2px;
        }
        .intro-card p { color: var(--text); font-size: 14px; line-height: 1.6; }
        .intro-card strong { color: #0f172a; }

        /* ── SECTIONS ── */
        .section {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 28px;
            margin-bottom: 20px;
            box-shadow: var(--shadow);
        }
        .section-header {
            display: flex; align-items: center; gap: 12px;
            margin-bottom: 20px;
            padding-bottom: 16px;
            border-bottom: 2px solid var(--primary-subtle);
        }
        .section-number {
            width: 32px; height: 32px;
            background: var(--primary);
            color: #0f172a; font-weight: 800; font-size: 14px;
            border-radius: 8px; display: flex; align-items: center; justify-content: center;
            flex-shrink: 0;
        }
        .section h2 {
            font-size: 18px; font-weight: 700; color: var(--text);
            letter-spacing: -0.3px;
        }

        h3 {
            font-size: 15px; font-weight: 700; color: var(--text);
            margin: 20px 0 10px;
        }
        h3:first-child { margin-top: 0; }

        p { margin-bottom: 12px; }
        p:last-child { margin-bottom: 0; }

        /* ── TABLE ── */
        .data-table {
            width: 100%; border-collapse: collapse;
            margin: 16px 0; font-size: 13.5px;
            border-radius: 10px; overflow: hidden;
            border: 1px solid var(--border);
        }
        .data-table thead tr {
            background: #0f172a; color: #f8fafc;
        }
        .data-table th {
            padding: 11px 14px; text-align: left;
            font-weight: 700; font-size: 12px;
            text-transform: uppercase; letter-spacing: 0.5px;
        }
        .data-table td {
            padding: 11px 14px;
            border-bottom: 1px solid var(--border);
            vertical-align: top;
        }
        .data-table tbody tr:last-child td { border-bottom: none; }
        .data-table tbody tr:nth-child(odd) { background: #f8fafc; }
        .data-table tbody tr:hover { background: var(--primary-subtle); }

        /* ── RIGHTS GRID ── */
        .rights-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 12px;
            margin-top: 16px;
        }
        .right-item {
            background: var(--bg);
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 14px;
        }
        .right-item .right-icon {
            font-size: 20px; margin-bottom: 8px;
        }
        .right-item strong {
            display: block; font-size: 13px; font-weight: 700;
            margin-bottom: 4px;
        }
        .right-item p {
            font-size: 12px; color: var(--text-muted); margin: 0;
        }

        /* ── CONTACT CARD ── */
        .contact-card {
            background: #0f172a;
            border-radius: var(--radius);
            padding: 28px;
            color: #f8fafc;
            margin-bottom: 20px;
        }
        .contact-card h2 {
            font-size: 20px; font-weight: 800;
            color: var(--primary); margin-bottom: 8px;
        }
        .contact-card p { color: #94a3b8; font-size: 14px; margin-bottom: 20px; }
        .contact-row {
            display: flex; align-items: center; gap: 10px;
            padding: 12px 14px;
            background: rgba(255,255,255,0.07);
            border-radius: 10px; margin-bottom: 8px; font-size: 14px;
        }
        .contact-row:last-child { margin-bottom: 0; }
        .contact-row span:first-child { opacity: 0.6; font-size: 12px; min-width: 80px; }
        .contact-row a { color: var(--primary); text-decoration: none; font-weight: 600; }

        /* ── NOTICE BOX ── */
        .notice {
            background: var(--primary-subtle);
            border-left: 4px solid var(--primary);
            border-radius: 0 10px 10px 0;
            padding: 14px 16px;
            margin: 16px 0;
            font-size: 14px;
        }
        .notice.danger {
            background: rgba(239,68,68,0.08);
            border-color: var(--danger);
        }
        .notice.success {
            background: rgba(16,185,129,0.08);
            border-color: var(--success);
        }

        /* ── CHIP ── */
        .chip {
            display: inline-flex; align-items: center; gap: 4px;
            background: var(--primary-subtle); border: 1px solid var(--primary-border);
            color: #92650a; padding: 3px 10px; border-radius: 20px;
            font-size: 11px; font-weight: 700; white-space: nowrap;
        }
        .chip.green {
            background: rgba(16,185,129,0.1); border-color: rgba(16,185,129,0.3);
            color: #065f46;
        }

        /* ── LIST ── */
        ul.pt-list {
            list-style: none; padding: 0;
        }
        ul.pt-list li {
            padding: 6px 0 6px 22px;
            position: relative; font-size: 14px;
            border-bottom: 1px solid var(--border);
        }
        ul.pt-list li:last-child { border-bottom: none; }
        ul.pt-list li::before {
            content: '›'; position: absolute; left: 4px;
            color: var(--primary); font-weight: 800; font-size: 16px;
            top: 4px;
        }

        /* ── ACCORDION ── */
        .accordion-section {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            margin-bottom: 12px;
            box-shadow: var(--shadow);
            overflow: hidden;
        }
        .accordion-trigger {
            width: 100%; display: flex; align-items: center; gap: 12px;
            padding: 18px 24px; background: none; border: none;
            cursor: pointer; text-align: left;
            transition: background 0.15s ease;
        }
        .accordion-trigger:hover { background: var(--primary-subtle); }
        .accordion-trigger.open { background: var(--primary-subtle); }
        .accordion-number {
            width: 32px; height: 32px; flex-shrink: 0;
            background: var(--primary); color: #0f172a;
            font-weight: 800; font-size: 14px; border-radius: 8px;
            display: flex; align-items: center; justify-content: center;
        }
        .accordion-title-wrap { flex: 1; }
        .accordion-title {
            font-size: 16px; font-weight: 700;
            color: var(--text); letter-spacing: -0.2px;
            display: block;
        }
        .accordion-subtitle {
            font-size: 12px; color: var(--text-muted);
            font-weight: 400; display: block; margin-top: 2px;
        }
        .accordion-icon {
            width: 20px; height: 20px; flex-shrink: 0;
            color: var(--text-muted); transition: transform 0.25s ease;
        }
        .accordion-trigger.open .accordion-icon { transform: rotate(180deg); }
        .accordion-body {
            max-height: 0; overflow: hidden;
            transition: max-height 0.4s ease;
            padding: 0 24px;
        }
        .accordion-body.open {
            max-height: 3000px;
            padding: 0 24px 24px;
        }
        .accordion-divider {
            height: 2px; background: var(--primary-subtle);
            margin-bottom: 20px;
        }

        /* ── DATA CARDS (replaces wide 2.1 table) ── */
        .data-cards { display: flex; flex-direction: column; gap: 10px; margin: 16px 0; }
        .data-card {
            background: var(--bg);
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 14px 16px;
        }
        .data-card-top {
            display: flex; justify-content: space-between;
            align-items: flex-start; gap: 8px; margin-bottom: 4px;
        }
        .data-card-name { font-weight: 700; font-size: 14px; }
        .data-card-purpose { font-size: 13px; color: var(--text-muted); }
        .data-card-footer {
            display: flex; gap: 6px; flex-wrap: wrap; margin-top: 8px;
        }
        .badge-basis {
            background: #f1f5f9; border: 1px solid var(--border);
            color: var(--text-muted); padding: 2px 8px;
            border-radius: 6px; font-size: 11px; font-weight: 600;
        }
        .badge-required {
            padding: 2px 8px; border-radius: 6px;
            font-size: 11px; font-weight: 700;
        }
        .badge-required.yes {
            background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.3);
            color: #065f46;
        }
        .badge-required.optional {
            background: #f1f5f9; border: 1px solid var(--border);
            color: var(--text-muted);
        }

        /* ── FOOTER ── */
        .doc-footer {
            text-align: center; padding: 24px 20px;
            color: var(--text-muted); font-size: 12px; line-height: 1.8;
        }

        /* ── RESPONSIVE ── */
        @media (max-width: 600px) {
            .section { padding: 20px 16px; }
            .hero { padding: 36px 16px 32px; }
            .data-table { font-size: 12px; }
            .data-table th, .data-table td { padding: 9px 10px; }
            .rights-grid { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 380px) {
            .rights-grid { grid-template-columns: 1fr; }
        }