/* ===== TERMS HERO ===== */
.terms-hero {
    text-align: center;
    padding: 60px 40px;
    background: #0d0d1a;
    border-bottom: 1px solid #1a1a2e;
}

.terms-hero h1 {
    font-size: 42px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 10px;
}

.terms-hero p {
    font-size: 14px;
    color: #aaaaaa;
    margin-top: 6px;
}

/* ===== TERMS CONTENT ===== */
.terms-content {
    padding: 60px 40px;
    background: #0a0a0f;
}

.terms-container {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

/* TABLE OF CONTENTS */
.terms-toc {
    background: #0d0d1a;
    border: 1px solid #1a1a2e;
    border-radius: 16px;
    padding: 24px;
    position: sticky;
    top: 80px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.terms-toc h3 {
    font-size: 14px;
    font-weight: 700;
    color: #aaaaaa;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    padding-bottom: 12px;
    border-bottom: 1px solid #1a1a2e;
}

.terms-toc a {
    font-size: 13px;
    color: #aaaaaa;
    text-decoration: none;
    padding: 4px 0;
    transition: color 0.2s;
    line-height: 1.4;
}

.terms-toc a:hover {
    color: #00f5ff;
}

/* TERMS SECTIONS */
.terms-sections {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.terms-section {
    padding: 40px 0;
    border-bottom: 1px solid #1a1a2e;
}

.terms-section:last-child {
    border-bottom: none;
}

.terms-section h2 {
    font-size: 22px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 16px;
}

.terms-section p {
    font-size: 14px;
    color: #aaaaaa;
    line-height: 1.8;
    margin-bottom: 12px;
}

.terms-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 12px 0;
    padding-left: 0;
}

.terms-section ul li {
    font-size: 14px;
    color: #aaaaaa;
    line-height: 1.6;
    padding-left: 20px;
    position: relative;
}

.terms-section ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #00f5ff;
    font-size: 12px;
}

/* HIGHLIGHT BOXES */
.terms-highlight {
    background: rgba(0, 245, 255, 0.05);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-left: 3px solid #00f5ff;
    border-radius: 8px;
    padding: 16px 20px;
    margin: 16px 0;
    font-size: 14px;
    color: #aaaaaa;
    line-height: 1.7;
}

.terms-highlight strong {
    color: #00f5ff;
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
}

.terms-highlight.warning {
    background: rgba(255, 165, 0, 0.05);
    border-color: rgba(255, 165, 0, 0.3);
    border-left-color: #ffa500;
}

.terms-highlight.warning strong {
    color: #ffa500;
}

/* CONTACT */
.terms-contact {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.terms-contact span {
    background: #0d0d1a;
    border: 1px solid #1a1a2e;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 13px;
    color: #00f5ff;
    font-weight: 600;
}

/* MOBILE */
@media (max-width: 768px) {
    .terms-hero { padding: 40px 20px; }
    .terms-hero h1 { font-size: 30px; }
    .terms-content { padding: 30px 20px; }
    .terms-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .terms-toc { position: static; }
}