/* scoped to .pt-page only */
.pt-page {
    background: #f5f6fa;
    padding: 56px 0 80px;
    font-family: 'Inter', sans-serif;
}

/* hero */
.pt-hero {
    background: linear-gradient(135deg, #d50032 0%, #8b0020 100%);
    border-radius: 20px;
    padding: 52px 48px 44px;
    margin-bottom: 48px;
    position: relative;
    overflow: hidden;
}
.pt-hero::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 260px; height: 260px;
    border-radius: 50%;
    background: rgba(255,255,255,.07);
    pointer-events: none;
}
.pt-hero::after {
    content: '';
    position: absolute;
    bottom: -80px; left: 30%;
    width: 340px; height: 340px;
    border-radius: 50%;
    background: rgba(255,255,255,.05);
    pointer-events: none;
}
.pt-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.18);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.pt-hero-badge svg { flex-shrink: 0; }
.pt-hero h1 {
    font-size: 38px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 14px;
    line-height: 1.2;
}
.pt-hero p {
    font-size: 16px;
    color: rgba(255,255,255,.85);
    margin: 0 0 28px;
    max-width: 620px;
    line-height: 1.7;
}
.pt-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.pt-hero-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,.8);
    font-weight: 500;
}
.pt-hero-meta-item svg { flex-shrink: 0; }

/* layout */
.pt-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 32px;
    align-items: start;
}

/* sticky toc */
.pt-toc {
    position: sticky;
    top: 90px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 20px rgba(0,0,0,.07);
    padding: 28px 20px;
    border: 1px solid #eee;
}
.pt-toc-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #999;
    margin: 0 0 16px 8px;
}
.pt-toc-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.pt-toc-list li { margin: 0; }
.pt-toc-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    color: #555;
    text-decoration: none;
    transition: all .18s ease;
    line-height: 1.3;
}
.pt-toc-list a:hover,
.pt-toc-list a.active {
    background: #fff0f3;
    color: #d50032;
    text-decoration: none;
}
.pt-toc-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px; height: 22px;
    border-radius: 6px;
    background: #f0f0f0;
    font-size: 11px;
    font-weight: 700;
    color: #888;
    flex-shrink: 0;
    transition: all .18s ease;
}
.pt-toc-list a:hover .pt-toc-num,
.pt-toc-list a.active .pt-toc-num {
    background: #d50032;
    color: #fff;
}

/* content cards */
.pt-section {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,.06);
    border: 1px solid #eee;
    padding: 36px 40px;
    margin-bottom: 20px;
    scroll-margin-top: 100px;
    transition: box-shadow .2s ease;
}
.pt-section:hover {
    box-shadow: 0 4px 28px rgba(213,0,50,.1);
}
.pt-section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}
.pt-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #d50032, #ff4060);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(213,0,50,.25);
}
.pt-icon svg { color: #fff; }
.pt-section-header-text { flex: 1; }
.pt-section h2 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.3;
}
.pt-section p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin: 0 0 14px;
}
.pt-section p:last-child { margin-bottom: 0; }
.pt-section ul {
    margin: 0 0 14px 0;
    padding-left: 0;
    list-style: none;
}
.pt-section ul li {
    position: relative;
    padding: 8px 0 8px 28px;
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    border-bottom: 1px solid #f5f5f5;
}
.pt-section ul li:last-child { border-bottom: none; }
.pt-section ul li::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #d50032;
}
.pt-section a {
    color: #d50032;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid rgba(213,0,50,.3);
    transition: border-color .15s;
}
.pt-section a:hover { border-color: #d50032; }

/* info box */
.pt-info-box {
    background: #fff8f9;
    border: 1px solid rgba(213,0,50,.15);
    border-left: 4px solid #d50032;
    border-radius: 0 12px 12px 0;
    padding: 16px 20px;
    margin-top: 16px;
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}
.pt-info-box strong { color: #d50032; }

/* contact footer */
.pt-contact {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d4e 100%);
    border-radius: 16px;
    padding: 36px 40px;
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 8px;
}
.pt-contact-icon {
    width: 52px; height: 52px;
    background: rgba(213,0,50,.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.pt-contact h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 6px;
}
.pt-contact p {
    font-size: 14px;
    color: rgba(255,255,255,.65);
    margin: 0;
}
.pt-contact a {
    color: #ff6080;
    font-weight: 500;
}

/* responsive */
@media (max-width: 991px) {
    .pt-layout { grid-template-columns: 1fr; }
    .pt-toc { position: static; margin-bottom: 24px; }
}
@media (max-width: 767px) {
    .pt-page { padding: 32px 0 60px; }
    .pt-hero { padding: 36px 24px 32px; border-radius: 16px; }
    .pt-hero h1 { font-size: 26px; }
    .pt-section { padding: 24px 20px; border-radius: 12px; }
    .pt-contact { flex-direction: column; text-align: center; padding: 28px 20px; }
    .pt-toc { display: none; }
}
