/* ═══════════════════════════════════════════════════════
   Terms & Conditions Page – 2026 Design System
   Prefix: tb-tc-
   Accent: #4e64df
   ═══════════════════════════════════════════════════════ */

/* ── Hero ── */
.tb-tc-hero {
    padding: 50px 0 60px;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fc 0%, #eef1f8 100%);
    position: relative;
    overflow: hidden;
}
.tb-tc-hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(78,100,223,.08) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    pointer-events: none;
}
.tb-tc-hero-inner {
    max-width: 720px;
    margin: 0 auto;
}
.tb-tc-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid #e3e6ed;
    border-radius: 6px;
    padding: 8px 20px;
    font-size: 1.85rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 24px;
}
.tb-tc-badge i { color: #4e64df; }
.tb-tc-title {
    font-size: 5rem;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.15;
    margin: 0 0 18px;
}
.tb-tc-title span { color: #4e64df; }
.tb-tc-subtitle {
    font-size: 1.5rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* ── Content Section ── */
.tb-tc-content {
    padding: 60px 0 80px;
    background: #fff;
}

/* ── Layout: Sidebar + Content ── */
.tb-tc-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 48px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}
.tb-tc-content-inner {
    max-width: 820px;
    min-width: 0;
}

/* ── Sidebar ── */
.tb-tc-sidebar {
    position: sticky;
    top: 30px;
    align-self: start;
}
.tb-tc-sidebar-inner {
    background: #f8f9fc;
    border: 1px solid #eef1f8;
    border-radius: 14px;
    padding: 24px 20px;
}
.tb-tc-sidebar-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a2e;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e3e6ed;
}
.tb-tc-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.tb-tc-nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 1.4rem;
    font-weight: 500;
    color: #666;
    text-decoration: none;
    transition: all .2s;
    line-height: 1.4;
}
.tb-tc-nav-link:hover {
    color: #4e64df;
    background: #eef1f8;
    text-decoration: none;
}
.tb-tc-nav-link.active {
    color: #4e64df;
    background: #e8ebf8;
    font-weight: 700;
}
.tb-tc-nav-num {
    flex-shrink: 0;
    font-size: 1.2rem;
    font-weight: 800;
    color: #bbb;
    min-width: 22px;
}
.tb-tc-nav-link.active .tb-tc-nav-num {
    color: #4e64df;
}

/* ── Intro Card ── */
.tb-tc-intro {
    background: #f8f9fc;
    border: 1px solid #eef1f8;
    border-radius: 18px;
    padding: 36px 40px;
    margin-bottom: 48px;
}
.tb-tc-intro p {
    font-size: 1.85rem;
    color: #555;
    line-height: 1.8;
    margin: 0;
}
.tb-tc-intro strong {
    color: #1a1a2e;
    font-weight: 700;
}

/* ── Section Block ── */
.tb-tc-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #f0f0f5;
}
.tb-tc-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.tb-tc-section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}
.tb-tc-section-num {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: #f0f2fa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    font-weight: 800;
    color: #4e64df;
}
.tb-tc-section-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.3;
}
.tb-tc-section p {
    font-size: 1.85rem;
    color: #555;
    line-height: 1.8;
    margin: 0 0 14px;
}
.tb-tc-section p:last-child {
    margin-bottom: 0;
}
.tb-tc-section strong {
    color: #1a1a2e;
    font-weight: 700;
}
.tb-tc-section a {
    color: #4e64df;
    font-weight: 600;
    text-decoration: none;
}
.tb-tc-section a:hover {
    text-decoration: underline;
}

/* ── Lists ── */
.tb-tc-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}
.tb-tc-list li {
    font-size: 1.85rem;
    color: #555;
    line-height: 1.8;
    padding-left: 28px;
    position: relative;
    margin-bottom: 8px;
}
.tb-tc-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    background: #4e64df;
    border-radius: 50%;
}
.tb-tc-list li strong {
    color: #1a1a2e;
    font-weight: 700;
}
.tb-tc-list li:last-child {
    margin-bottom: 0;
}
.tb-tc-list li a {
    color: #4e64df;
    font-weight: 600;
    text-decoration: none;
}
.tb-tc-list li a:hover {
    text-decoration: underline;
}

/* ── Contact CTA ── */
.tb-tc-cta {
    background: linear-gradient(135deg, #f8f9fc 0%, #eef1f8 100%);
    border-radius: 18px;
    padding: 44px 40px;
    margin-top: 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.tb-tc-cta::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(78,100,223,.06) 0%, transparent 70%);
    bottom: -200px;
    left: -100px;
    pointer-events: none;
}
.tb-tc-cta-icon {
    width: 56px;
    height: 56px;
    background: #4e64df;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 20px;
}
.tb-tc-cta h3 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 10px;
}
.tb-tc-cta p {
    font-size: 1.85rem;
    color: #555;
    margin: 0 0 24px;
    line-height: 1.6;
}
.tb-tc-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: #4e64df;
    color: #fff;
    border-radius: 12px;
    font-size: 1.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: background .25s, transform .15s;
}
.tb-tc-cta-btn:hover {
    background: #3d51c4;
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
}
.tb-tc-cta-btn i {
    font-size: 1.5rem;
}

/* ── Last Updated ── */
.tb-tc-updated {
    text-align: center;
    font-size: 1.7rem;
    color: #999;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid #f0f0f5;
}
.tb-tc-updated i {
    margin-right: 6px;
    color: #bbb;
}

/* ═══ Responsive ═══ */
@media (max-width: 991px) {
    .tb-tc-hero { padding: 80px 0 50px; }
    .tb-tc-title { font-size: 3.5rem; }
    .tb-tc-layout {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0 20px;
    }
    .tb-tc-sidebar {
        position: relative;
        top: 0;
        margin-bottom: 36px;
    }
    .tb-tc-sidebar-inner {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 8px;
        padding: 20px;
    }
    .tb-tc-sidebar-title {
        width: 100%;
        margin-bottom: 10px;
        padding-bottom: 10px;
    }
    .tb-tc-nav {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 6px;
    }
    .tb-tc-nav-link {
        padding: 6px 12px;
        font-size: 1.3rem;
    }
    .tb-tc-nav-num { display: none; }
}

@media (max-width: 767px) {
    .tb-tc-hero { padding: 70px 0 40px; }
    .tb-tc-title { font-size: 3rem; }
    .tb-tc-subtitle { font-size: 1.4rem; }
    .tb-tc-intro { padding: 28px 24px; }
    .tb-tc-section-title { font-size: 2.1rem; }
    .tb-tc-cta { padding: 32px 24px; }
    .tb-tc-cta h3 { font-size: 2.4rem; }
    .tb-tc-sidebar-inner { padding: 16px; }
    .tb-tc-nav-link { padding: 5px 10px; font-size: 1.25rem; }
}

@media (max-width: 480px) {
    .tb-tc-title { font-size: 2.5rem; }
    .tb-tc-section-header { gap: 12px; }
    .tb-tc-section-num { width: 38px; height: 38px; font-size: 1.6rem; }
    .tb-tc-section-title { font-size: 1.95rem; }
    .tb-tc-intro { padding: 24px 18px; border-radius: 14px; }
    .tb-tc-cta { padding: 28px 18px; border-radius: 14px; }
}
