/* =============================================
   Sup-Imm Unlock – Legal Sub-Pages Stylesheet
   Shared by: privacy_policy.html, terms_of_service.html
   ============================================= */

/* -------------------------------------------------------
   Base
------------------------------------------------------- */
body {
    font-family: 'Inter', sans-serif;
}

/* -------------------------------------------------------
   Section Cards
------------------------------------------------------- */
.section-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 2rem 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    transition: box-shadow 0.25s ease;
}
.section-card:hover {
    box-shadow: 0 6px 30px rgba(16, 43, 78, 0.08);
}
.section-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.75rem;
    bottom: 1.75rem;
    width: 4px;
    background: linear-gradient(to bottom, #D32131, #a01a27);
    border-radius: 0 4px 4px 0;
}

/* -------------------------------------------------------
   Section Titles (Forum font)
------------------------------------------------------- */
.section-title {
    font-family: 'Forum', serif;
    color: #102B4E;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.section-title .num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: #102B4E;
    color: #fff;
    border-radius: 50%;
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    flex-shrink: 0;
}

/* -------------------------------------------------------
   Body Text
------------------------------------------------------- */
.body-text {
    color: #4a5568;
    font-weight: 300;
    line-height: 1.8;
    font-size: 0.95rem;
}
.body-text strong {
    color: #102B4E;
    font-weight: 600;
}

/* -------------------------------------------------------
   Sub Headings
------------------------------------------------------- */
.sub-heading {
    font-family: 'Forum', serif;
    color: #102B4E;
    font-size: 1.05rem;
    font-weight: 600;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
}

/* -------------------------------------------------------
   Bullet List
------------------------------------------------------- */
.bullet-list {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0 0;
}
.bullet-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.35rem 0;
    color: #4a5568;
    font-weight: 300;
    font-size: 0.92rem;
    line-height: 1.7;
}
.bullet-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #D32131;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.55rem;
}

/* -------------------------------------------------------
   Numbered List
------------------------------------------------------- */
.numbered-list {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0 0;
    counter-reset: item;
}
.numbered-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: #4a5568;
    font-weight: 300;
    font-size: 0.92rem;
    line-height: 1.7;
    counter-increment: item;
}
.numbered-list li::before {
    content: counter(item) ".";
    color: #D32131;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
    min-width: 18px;
    margin-top: 0.05rem;
}

/* -------------------------------------------------------
   Rights Grid (Privacy Policy – Section 7)
------------------------------------------------------- */
.rights-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-top: 1rem;
}
.right-item {
    background: #f0f3f8;
    border-radius: 10px;
    padding: 1rem 1.25rem;
    border: 1px solid #e2e8f0;
}
.right-item-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.4rem;
}
.right-item .right-num {
    width: 34px;
    height: 22px;
    background: #D32131;
    color: #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
    flex-shrink: 0;
    padding: 0 4px;
}

/* -------------------------------------------------------
   Cookie Sub-sections (Privacy Policy – Section 9)
------------------------------------------------------- */
.cookie-sub {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 1rem 1.25rem;
    margin-bottom: 0.75rem;
}
.cookie-sub-title {
    font-family: 'Forum', serif;
    color: #102B4E;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.cookie-type-row {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.35rem 0;
    font-size: 0.88rem;
    color: #4a5568;
    font-weight: 300;
    line-height: 1.6;
}
.cookie-type-row strong {
    color: #102B4E;
    font-weight: 600;
}
.cookie-type-row::before {
    content: '◦';
    color: #D32131;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

/* -------------------------------------------------------
   Note / Warning Box
------------------------------------------------------- */
.note-box {
    background: #fffbeb;
    border: 1px solid #fcd34d;
    border-radius: 10px;
    padding: 1rem 1.25rem;
    font-size: 0.88rem;
    color: #92400e;
    font-weight: 300;
    line-height: 1.7;
    margin-top: 1rem;
}
.note-box strong {
    color: #78350f;
}

/* -------------------------------------------------------
   Contact Block
------------------------------------------------------- */
.contact-block {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #102B4E;
    color: #fff;
    border-radius: 12px;
    padding: 1.25rem 1.75rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}
.contact-block .label {
    font-size: 0.8rem;
    color: #93c5fd;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 600;
}
.contact-block a {
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
}
.contact-block a:hover {
    color: #fca5a5;
}

/* -------------------------------------------------------
   Navigation Pill Button
------------------------------------------------------- */
.nav-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #102B4E;
    color: #fff;
    padding: 0.6rem 1.3rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}
.nav-pill:hover {
    background: #D32131;
    transform: translateY(-1px);
}

/* -------------------------------------------------------
   Hero Badge
------------------------------------------------------- */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    padding: 0.4rem 1.1rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

/* -------------------------------------------------------
   Terms of Service – No Guarantee Disclaimer
------------------------------------------------------- */
.disclaimer-box {
    background: #fff8f8;
    border: 1.5px solid #D32131;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    position: relative;
    overflow: hidden;
}
.disclaimer-box::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: #D32131;
}

/* -------------------------------------------------------
   Terms of Service – Fee Table
------------------------------------------------------- */
.fee-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}
.fee-table th {
    background: #102B4E;
    color: #fff;
    padding: 0.75rem 1rem;
    text-align: left;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.fee-table th:first-child { border-radius: 8px 0 0 0; }
.fee-table th:last-child  { border-radius: 0 8px 0 0; }
.fee-table td {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    border-bottom: 1px solid #e5e9f2;
}
.fee-table tr:last-child td { border-bottom: none; }
.fee-table tr:nth-child(even) td { background: #f0f3f8; }

/* -------------------------------------------------------
   Responsive
------------------------------------------------------- */
@media (max-width: 640px) {
    .section-card {
        padding: 1.5rem 1.25rem;
    }
}
