/* ============================================
   Page 03 — Trade License
   ============================================ */

.page-license {
    background: var(--paper);
    padding: 18mm 22mm;
    display: flex;
    flex-direction: column;
}

.page-license .pl-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--brand);
}

.page-license .pl-header .pl-title-block .pl-eyebrow {
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent-dark);
    font-weight: 600;
    margin-bottom: 6px;
}

.page-license .pl-header .pl-title {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 700;
    color: var(--brand);
    line-height: 1.1;
}

.page-license .pl-header .pl-seal {
    width: 64px;
    height: 64px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-dark);
    font-size: 24px;
}

/* License body — two columns */
.page-license .pl-body {
    display: grid;
    grid-template-columns: 1fr 70mm;
    gap: 24px;
    flex: 1;
}

/* Left — details table */
.page-license .pl-details {
    background: var(--paper-cool);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 20px 24px;
}

.page-license .pl-details .pld-row {
    display: grid;
    grid-template-columns: 130px 1fr;
    padding: 10px 0;
    border-bottom: 1px solid var(--line-soft);
    align-items: center;
}

.page-license .pl-details .pld-row:last-child {
    border-bottom: none;
}

.page-license .pl-details .pld-label {
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-soft);
    font-weight: 600;
}

.page-license .pl-details .pld-value {
    font-size: 13px;
    color: var(--ink);
    font-weight: 500;
}

.page-license .pl-details .pld-value.mono {
    font-family: var(--mono);
    font-size: 12px;
}

/* Right — QR + verification */
.page-license .pl-verify {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.page-license .pl-qr-box {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.page-license .pl-qr-box .plqr-img {
    width: 120px;
    height: 120px;
    margin: 0 auto 12px;
    display: block;
    object-fit: contain;
}

.page-license .pl-qr-box .plqr-title {
    font-size: 11px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 4px;
}

.page-license .pl-qr-box .plqr-sub {
    font-size: 9px;
    color: var(--ink-soft);
    line-height: 1.5;
}

.page-license .pl-verify-note {
    background: rgba(15,118,110,0.06);
    border: 1px solid rgba(15,118,110,0.15);
    border-radius: 10px;
    padding: 14px 18px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 10.5px;
    line-height: 1.55;
    color: var(--ink-soft);
}

.page-license .pl-verify-note i {
    color: var(--brand-2);
    font-size: 16px;
    margin-top: 1px;
    flex-shrink: 0;
}

/* Owner/Manager card */
.page-license .pl-owner {
    background: linear-gradient(135deg, var(--brand) 0%, #072538 100%);
    color: #fff;
    border-radius: 10px;
    padding: 18px 20px;
    margin-top: 16px;
}

.page-license .pl-owner .plo-label {
    font-size: 9px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-light);
    font-weight: 600;
    margin-bottom: 8px;
}

.page-license .pl-owner .plo-name {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.page-license .pl-owner .plo-role {
    font-size: 11px;
    color: rgba(255,255,255,0.7);
}

/* Activity badge */
.page-license .pl-activity {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    padding: 14px 20px;
    background: rgba(199,162,75,0.08);
    border: 1px solid rgba(199,162,75,0.2);
    border-radius: 10px;
}

.page-license .pl-activity .pla-icon {
    width: 40px;
    height: 40px;
    background: var(--accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
}

.page-license .pl-activity .pla-text {
    font-size: 12px;
    color: var(--ink);
}

.page-license .pl-activity .pla-text strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-dark);
    margin-bottom: 2px;
}
