        * {

            font-family: 'Plus Jakarta Sans', sans-serif;
            gap: 1rem;
            margin: 0;
            padding: 0;
        }
        ::selection {
  background: #bc93f5;
  color: white;
}

::-moz-selection {
  background: #bc93f5;
  color: white;
}
/* ============================================
   TERMS & CONDITIONS PAGE STYLES
   ============================================ */

/* ---- Hero Section ---- */
.terms-hero {
    padding: 10rem 2rem 4rem;
    text-align: center;
    background: linear-gradient(180deg, #f8f7ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.terms-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 25% 30%, rgba(168, 85, 247, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 75% 70%, rgba(59, 130, 246, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.terms-hero-content {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.terms-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(168, 85, 247, 0.08);
    color: var(--primary);
    padding: 0.5rem 1.2rem;
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(168, 85, 247, 0.15);
}

.terms-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.terms-hero-sub {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 580px;
        margin: 0 auto 2rem;
}

.terms-meta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* ============================================
   QUICK SUMMARY BANNER
   ============================================ */
.terms-summary-section {
    padding: 0 2rem;
    margin-top: -1.5rem;
    margin-bottom: 2rem;
}

.terms-container {
    max-width: 900px;
    margin: 0 auto;
}

.summary-banner {
    display: flex;
    gap: 1.2rem;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.06) 0%, rgba(59, 130, 246, 0.04) 100%);
    border: 1px solid rgba(168, 85, 247, 0.15);
    border-radius: 16px;
    padding: 1.8rem 2rem;
    align-items: flex-start;
}

.summary-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(168, 85, 247, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.summary-text h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.summary-text p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   TABLE OF CONTENTS
   ============================================ */
.terms-toc-section {
    padding: 0 2rem 3rem;
}

/* ============================================
   TERMS CONTENT
   ============================================ */
.terms-content-section {
    padding: 2rem 2rem 4rem;
}

.terms-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

/* Terms Section (reuses policy-section pattern) */
.terms-section {
    position: relative;
    padding-left: 3.5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.terms-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.terms-section h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.terms-section p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.terms-section a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s;
}

.terms-section a:hover {
    opacity: 0.8;
}

/* ============================================
   HIGHLIGHT BOX (Section 1)
   ============================================ */
.terms-highlight-box {
    display: flex;
    gap: 1.2rem;
    background: rgba(34, 197, 94, 0.05);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 14px;
    padding: 1.5rem 1.8rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.highlight-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.terms-highlight-box h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
}

.terms-highlight-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-highlight-box ul li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0.3rem;
}

.terms-highlight-box ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: 700;
    font-size: 0.85rem;
}

/* ============================================
   SERVICES GRID (Section 2)
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: rgba(168, 85, 247, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.service-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(168, 85, 247, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.service-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ============================================
   ACCOUNT RULES (Section 3)
   ============================================ */
.account-rules {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.rule-item {
    display: flex;
    gap: 1.2rem;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 1.5rem;
    transition: border-color 0.3s ease;
    align-items: flex-start;
}

.rule-item:hover {
    border-color: rgba(168, 85, 247, 0.3);
}

.rule-number {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(168, 85, 247, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    flex-shrink: 0;
    border: 1px solid rgba(168, 85, 247, 0.15);
}

.rule-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
}

.rule-item p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ============================================
   USE RESTRICTIONS (Section 4)
   ============================================ */
.use-restrictions {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.restriction-category {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 1.5rem;
}

.restriction-category h4 {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: #ef4444;
    margin-bottom: 1rem;
}

.restriction-category h4 svg {
    color: #ef4444;
    flex-shrink: 0;
}

.restriction-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.restriction-category ul li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0.4rem;
}

.restriction-category ul li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: 700;
    font-size: 0.8rem;
    top: 0.15rem;
}

/* Warning Box */
.terms-warning-box {
    display: flex;
    gap: 0.8rem;
    background: rgba(239, 68, 68, 0.06);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 12px;
    padding: 1.2rem 1.5rem;
    align-items: flex-start;
}

.terms-warning-box svg {
    color: #ef4444;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.terms-warning-box p {
    font-size: 0.92rem;
    color: #991b1b;
    line-height: 1.6;
    margin-bottom: 0;
    font-weight: 500;
}

/* Info Box */
.terms-info-box {
    display: flex;
    gap: 0.8rem;
    background: rgba(168, 85, 247, 0.05);
    border: 1px solid rgba(168, 85, 247, 0.15);
    border-radius: 12px;
    padding: 1.2rem 1.5rem;
    align-items: center;
}

.terms-info-box svg {
    color: var(--primary);
    flex-shrink: 0;
}

.terms-info-box p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ============================================
   IP GRID (Section 5)
   ============================================ */
.ip-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.ip-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 1.5rem;
    transition: border-color 0.3s ease;
}

.ip-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.ip-card.ours {
    border-color: rgba(168, 85, 247, 0.25);
}

.ip-card.ours:hover {
    border-color: rgba(168, 85, 247, 0.5);
}

.ip-card.yours {
    border-color: rgba(34, 197, 94, 0.25);
}

.ip-card.yours:hover {
    border-color: rgba(34, 197, 94, 0.5);
}

.ip-label {
    display: inline-block;
    padding: 0.25rem 0.8rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.8rem;
}

.ip-card.ours .ip-label {
    background: rgba(168, 85, 247, 0.1);
    color: var(--primary);
}

.ip-card.yours .ip-label {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
}

.ip-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.ip-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ip-card ul li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0.3rem;
}

.ip-card.ours ul li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 0.5rem;
    top: 0.45rem;
}

.ip-card.yours ul li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-size: 0.5rem;
    top: 0.45rem;
}

/* ============================================
   PROCESSING STEPS (Section 6)
   ============================================ */
.processing-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 1.5rem;
    position: relative;
}

.processing-steps::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 36px;
    bottom: 36px;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), rgba(168, 85, 247, 0.2));
    border-radius: 2px;
}

.process-step {
    display: flex;
    gap: 1.2rem;
    padding: 1.2rem 0;
    align-items: flex-start;
    position: relative;
}

.process-number {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
        font-size: 0.9rem;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 4px white, 0 0 0 5px rgba(168, 85, 247, 0.2);
}

.process-step h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
}

.process-step p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ============================================
   PAYMENT GRID (Section 7)
   ============================================ */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.payment-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.payment-card:hover {
    border-color: rgba(168, 85, 247, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.payment-icon {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.payment-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.payment-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Payment Table */
.payment-table {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.payment-row {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
    transition: background 0.2s ease;
}

.payment-row:last-child {
    border-bottom: none;
}

.payment-row:not(.header-row):hover {
    background: rgba(168, 85, 247, 0.03);
}

.payment-row.header-row {
    background: rgba(168, 85, 247, 0.05);
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.payment-row span:first-child {
    font-weight: 600;
    color: var(--text-dark);
}

.payment-row span:last-child {
    color: var(--text-light);
}

/* ============================================
   DISCLAIMER CARDS (Section 8)
   ============================================ */
.disclaimer-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.disclaimer-card {
    display: flex;
    gap: 1.2rem;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 1.5rem;
    align-items: flex-start;
    transition: border-color 0.3s ease;
}

.disclaimer-card:hover {
    border-color: rgba(251, 191, 36, 0.4);
}

.disclaimer-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.disclaimer-icon.warning {
    background: rgba(251, 191, 36, 0.1);
    color: #f59e0b;
}

.disclaimer-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
}

.disclaimer-card p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ============================================
   LIABILITY LIST (Section 9)
   ============================================ */
.liability-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.liability-item {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    padding: 0.8rem 1.2rem;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: border-color 0.3s ease;
}

.liability-item:hover {
    border-color: rgba(239, 68, 68, 0.3);
}

.liability-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(239, 68, 68, 0.08);
    color: #ef4444;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.liability-item p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Liability Cap */
.liability-cap {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.06) 0%, rgba(59, 130, 246, 0.04) 100%);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 14px;
    padding: 1.5rem 1.8rem;
    text-align: center;
}

.cap-label {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.liability-cap p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

.liability-cap strong {
    color: var(--text-dark);
}

/* ============================================
   INDEMNIFICATION LIST (Section 10)
   ============================================ */
.indemnify-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.indemnify-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem 1.4rem;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: border-color 0.3s ease;
}

.indemnify-item:hover {
    border-color: rgba(168, 85, 247, 0.3);
}

.indemnify-number {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(168, 85, 247, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.8rem;
    flex-shrink: 0;
    font-style: italic;
    border: 1px solid rgba(168, 85, 247, 0.15);
}

.indemnify-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ============================================
   TERMINATION GRID (Section 11)
   ============================================ */
.termination-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.termination-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.termination-card:hover {
    border-color: rgba(168, 85, 247, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.termination-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.termination-icon.user-icon {
    background: rgba(59, 130, 246, 0.08);
    color: #3b82f6;
}

.termination-icon.layrda-icon {
    background: rgba(168, 85, 247, 0.08);
    color: var(--primary);
}

.termination-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.termination-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.termination-card ul li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0.3rem;
}

.termination-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

/* ============================================
   LAW STEPS (Section 12)
   ============================================ */
.law-steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-bottom: 1.5rem;
}

.law-step {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 1.5rem 1.8rem;
    width: 100%;
    transition: border-color 0.3s ease;
}

.law-step:hover {
    border-color: rgba(168, 85, 247, 0.3);
}

.law-step-number {
    display: inline-block;
    background: rgba(168, 85, 247, 0.08);
    color: var(--primary);
    padding: 0.25rem 0.8rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.8rem;
    border: 1px solid rgba(168, 85, 247, 0.15);
}

.law-step h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.law-step p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

.law-step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0;
    color: var(--primary);
    opacity: 0.4;
}

/* ============================================
   CHANGES TIMELINE (Section 13)
   ============================================ */
.changes-timeline {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}

.changes-timeline::before {
    content: '';
    position: absolute;
    left: 5px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), rgba(168, 85, 247, 0.15));
    border-radius: 2px;
}

.change-step {
    position: relative;
    padding-bottom: 1.8rem;
}

.change-step:last-child {
    padding-bottom: 0;
}

.change-dot {
    position: absolute;
    left: -2rem;
    top: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
    border: 3px solid white;
    box-shadow: 0 0 0 2px rgba(168, 85, 247, 0.3);
    z-index: 2;
    margin-left: 0px;
}

.change-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
}

.change-content p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

.change-content strong {
    color: var(--text-dark);
}

/* ============================================
   AGREEMENT BANNER
   ============================================ */
.agreement-banner-section {
    padding: 0 2rem 4rem;
}

.agreement-banner {
    background: linear-gradient(135deg, var(--text-dark) 0%, #1e293b 100%);
    border-radius: 20px;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    overflow: hidden;
}

.agreement-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(168, 85, 247, 0.15);
    filter: blur(80px);
    pointer-events: none;
}

.agreement-content {
    position: relative;
    z-index: 1;
}

.agreement-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.agreement-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

.agreement-actions {
    display: flex;
    gap: 0.8rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.agreement-btn {
    text-decoration: none;
    padding: 0.8rem 1.6rem;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.agreement-btn.primary {
    background: var(--primary);
    color: white;
}

.agreement-btn.primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.4);
}

.agreement-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.agreement-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* ============================================
   RESPONSIVE - TABLET (768px)
   ============================================ */
@media (max-width: 768px) {
    .terms-hero {
        padding: 8rem 1.5rem 3rem;
    }

    .terms-hero h1 {
        font-size: 2.5rem;
    }

    .terms-hero-sub {
        font-size: 1rem;
    }

    .terms-meta {
        gap: 1rem;
    }

    .terms-summary-section {
        padding: 0 1.5rem;
    }

    .summary-banner {
        padding: 1.5rem;
    }

    .terms-toc-section {
        padding: 0 1.5rem 2rem;
    }

    .terms-content-section {
        padding: 2rem 1.5rem 3rem;
    }

    .terms-section {
        padding-left: 2.8rem;
    }

    .terms-section h2 {
        font-size: 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .ip-grid {
        grid-template-columns: 1fr;
    }

    .payment-grid {
        grid-template-columns: 1fr;
    }

    .termination-grid {
        grid-template-columns: 1fr;
    }

    .rule-item {
        flex-direction: column;
        gap: 0.8rem;
    }

    .disclaimer-card {
        flex-direction: column;
        gap: 0.8rem;
    }

    .terms-highlight-box {
        flex-direction: column;
        gap: 0.8rem;
    }

    .agreement-banner {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .agreement-actions {
        width: 100%;
        justify-content: center;
    }

    .agreement-content h3 {
        font-size: 1.3rem;
    }

    .agreement-banner-section {
        padding: 0 1.5rem 3rem;
    }

    .payment-row {
        padding: 0.8rem 1.2rem;
        font-size: 0.88rem;
    }

    .summary-banner {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ============================================
   RESPONSIVE - MOBILE (480px)
   ============================================ */
@media (max-width: 480px) {
    .terms-hero {
        padding: 7rem 1rem 2.5rem;
    }

    .terms-hero h1 {
        font-size: 2rem;
    }

    .terms-hero-sub {
        font-size: 0.92rem;
    }

    .terms-meta {
        flex-direction: column;
        align-items: center;
        gap: 0.6rem;
    }

    .terms-summary-section {
        padding: 0 1rem;
        margin-top: -1rem;
    }

    .summary-banner {
        padding: 1.2rem;
        border-radius: 14px;
    }

    .summary-icon {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }

    .summary-text h3 {
        font-size: 1rem;
    }

    .summary-text p {
        font-size: 0.88rem;
    }

    .terms-toc-section {
        padding: 0 1rem 1.5rem;
    }

    .terms-content-section {
        padding: 1.5rem 1rem 3rem;
    }

    .terms-content {
        gap: 3rem;
    }

    .terms-section {
        padding-left: 0;
        padding-top: 3rem;
    }

    .terms-section .section-number {
        left: 0;
        top: 0;
    }

    .terms-section h2 {
        font-size: 1.3rem;
    }

    .terms-section p {
        font-size: 0.92rem;
    }

    /* Services Grid */
    .service-card {
        padding: 1.2rem;
    }

    .service-icon {
        width: 38px;
        height: 38px;
        border-radius: 10px;
    }

    .service-card h4 {
        font-size: 0.95rem;
    }

    .service-card p {
        font-size: 0.85rem;
    }

    /* Account Rules */
    .rule-item {
        padding: 1.2rem;
    }

    .rule-number {
        width: 32px;
        height: 32px;
        border-radius: 8px;
        font-size: 0.85rem;
    }

    .rule-item h4 {
        font-size: 0.95rem;
    }

    .rule-item p {
        font-size: 0.88rem;
    }

    /* Restrictions */
    .restriction-category {
        padding: 1.2rem;
    }

    .restriction-category h4 {
        font-size: 0.95rem;
    }

    .restriction-category ul li {
        font-size: 0.88rem;
        padding-left: 1.3rem;
    }

    .terms-warning-box {
        padding: 1rem 1.2rem;
        flex-direction: column;
        gap: 0.6rem;
    }

    .terms-warning-box p {
        font-size: 0.85rem;
    }

    .terms-info-box {
        padding: 1rem 1.2rem;
        flex-direction: column;
        gap: 0.6rem;
    }

    .terms-info-box p {
        font-size: 0.85rem;
    }

    /* Highlight Box */
    .terms-highlight-box {
        padding: 1.2rem;
        border-radius: 12px;
    }

    .highlight-icon {
        width: 36px;
        height: 36px;
        border-radius: 10px;
    }

    .terms-highlight-box h4 {
        font-size: 0.95rem;
    }

    .terms-highlight-box ul li {
        font-size: 0.85rem;
        padding-left: 1.3rem;
    }

    /* IP Grid */
    .ip-card {
        padding: 1.2rem;
    }

    .ip-card h4 {
        font-size: 0.95rem;
    }

    .ip-card ul li {
        font-size: 0.85rem;
    }

    /* Processing Steps */
    .processing-steps::before {
        left: 15px;
    }

    .process-number {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }

    .process-step h4 {
        font-size: 0.95rem;
    }

    .process-step p {
        font-size: 0.85rem;
    }

    /* Payment */
    .payment-card {
        padding: 1.2rem;
    }

    .payment-card h4 {
        font-size: 0.95rem;
    }

    .payment-card p {
        font-size: 0.85rem;
    }

    .payment-table {
        border-radius: 12px;
    }

    .payment-row {
        grid-template-columns: 1fr;
        gap: 0.3rem;
        padding: 0.8rem 1rem;
    }

    .payment-row.header-row {
        display: none;
    }

    .payment-row span:first-child {
        font-size: 0.88rem;
    }

    .payment-row span:last-child {
        font-size: 0.82rem;
    }

    /* Disclaimer */
    .disclaimer-card {
        padding: 1.2rem;
    }

    .disclaimer-icon {
        width: 36px;
        height: 36px;
        border-radius: 10px;
    }

    .disclaimer-card h4 {
        font-size: 0.95rem;
    }

    .disclaimer-card p {
        font-size: 0.85rem;
    }

    /* Liability */
    .liability-item {
        padding: 0.7rem 1rem;
    }

    .liability-icon {
        width: 24px;
        height: 24px;
        border-radius: 6px;
    }

    .liability-item p {
        font-size: 0.85rem;
    }

    .liability-cap {
        padding: 1.2rem;
        border-radius: 12px;
    }

    .liability-cap p {
        font-size: 0.9rem;
    }

    /* Indemnification */
    .indemnify-item {
        padding: 0.8rem 1rem;
    }

    .indemnify-number {
        width: 26px;
        height: 26px;
        border-radius: 6px;
        font-size: 0.75rem;
    }

    .indemnify-item p {
        font-size: 0.88rem;
    }

    /* Termination */
    .termination-card {
        padding: 1.2rem;
    }

    .termination-icon {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }

    .termination-card h4 {
        font-size: 0.95rem;
    }

    .termination-card ul li {
        font-size: 0.85rem;
        padding-left: 1.3rem;
    }

    /* Law Steps */
    .law-step {
        padding: 1.2rem;
    }

    .law-step h4 {
        font-size: 0.95rem;
    }

    .law-step p {
        font-size: 0.85rem;
    }

    /* Changes Timeline */
    .changes-timeline {
        padding-left: 1.5rem;
    }

    .change-dot {
        left: -1.5rem;
        width: 10px;
        height: 10px;
    }

    .change-content h4 {
        font-size: 0.95rem;
    }

    .change-content p {
        font-size: 0.85rem;
    }

    /* Agreement Banner */
    .agreement-banner-section {
        padding: 0 1rem 3rem;
    }

    .agreement-banner {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .agreement-content h3 {
        font-size: 1.15rem;
    }

    .agreement-content p {
        font-size: 0.88rem;
    }

    .agreement-actions {
        flex-direction: column;
    }

    .agreement-btn {
        padding: 0.75rem 1.4rem;
        font-size: 0.9rem;
        border-radius: 10px;
        justify-content: center;
        width: 100%;
    }
}

/* ============================================
   HOVER MICRO-INTERACTIONS
   ============================================ */
.service-icon {
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.05);
}

.rule-number {
    transition: all 0.3s ease;
}

.rule-item:hover .rule-number {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.process-number {
    transition: all 0.3s ease;
}

.process-step:hover .process-number {
    transform: scale(1.1);
    box-shadow: 0 0 0 4px white, 0 0 0 6px rgba(168, 85, 247, 0.3);
}

.termination-icon {
    transition: all 0.3s ease;
}

.termination-card:hover .termination-icon.user-icon {
    background: #3b82f6;
    color: white;
    transform: scale(1.05);
}

.termination-card:hover .termination-icon.layrda-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.05);
}

.law-step-number {
    transition: all 0.2s ease;
}

.law-step:hover .law-step-number {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.change-dot {
    transition: all 0.3s ease;
}

.change-step:hover .change-dot {
    transform: scale(1.3);
    box-shadow: 0 0 0 3px white, 0 0 0 5px rgba(168, 85, 247, 0.4);
}

.indemnify-number {
    transition: all 0.3s ease;
}

.indemnify-item:hover .indemnify-number {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.disclaimer-icon {
    transition: all 0.3s ease;
}

.disclaimer-card:hover .disclaimer-icon {
    transform: scale(1.05);
}

.payment-icon {
    transition: transform 0.3s ease;
}

.payment-card:hover .payment-icon {
    transform: scale(1.15);
}

/* ============================================
   SCROLL REVEAL DELAYS
   ============================================*/
.terms-section:nth-child(1) { transition-delay: 0s; }
.terms-section:nth-child(2) { transition-delay: 0.05s; }
.terms-section:nth-child(3) { transition-delay: 0.1s; }
.terms-section:nth-child(4) { transition-delay: 0.15s; }
.terms-section:nth-child(5) { transition-delay: 0.05s; }
.terms-section:nth-child(6) { transition-delay: 0.1s; }
.terms-section:nth-child(7) { transition-delay: 0.05s; }
.terms-section:nth-child(8) { transition-delay: 0.1s; }
.terms-section:nth-child(9) { transition-delay: 0.05s; }
.terms-section:nth-child(10) { transition-delay: 0.1s; }
.terms-section:nth-child(11) { transition-delay: 0.05s; }
.terms-section:nth-child(12) { transition-delay: 0.1s; }
.terms-section:nth-child(13) { transition-delay: 0.05s; }
.terms-section:nth-child(14) { transition-delay: 0.1s; }

/* ============================================
   ACTIVE TOC HIGHLIGHT
   ============================================ */
.terms-toc-section .toc-item.active {
    background: rgba(168, 85, 247, 0.08);
    color: var(--primary);
}

.terms-toc-section .toc-item.active .toc-number {
    background: var(--primary);
    color: white;
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    #main-nav,
    .mobile-menu,
    .agreement-banner-section,
    .footer {
        display: none !important;
    }

    .terms-hero {
        padding: 2rem 0;
        background: none;
    }

    .terms-hero::before {
        display: none;
    }

    .terms-hero h1 {
        font-size: 2rem;
    }

    .terms-section {
        opacity: 1 !important;
        transform: none !important;
        page-break-inside: avoid;
    }

    .terms-content-section {
        padding: 1rem 0;
    }

    .terms-container {
        max-width: 100%;
    }

    .services-grid,
    .ip-grid,
    .payment-grid,
    .termination-grid {
        grid-template-columns: 1fr;
    }

    .service-card,
    .ip-card,
    .payment-card,
    .termination-card,
    .rule-item,
    .disclaimer-card,
    .liability-item,
    .indemnify-item,
    .law-step,
    .restriction-category {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }

    .agreement-banner {
        display: none;
    }

    body {
        font-size: 12pt;
        color: #000;
    }

    a {
        color: #000;
        text-decoration: underline;
    }

    .toc-card {
        border: 1px solid #ddd;
        box-shadow: none;
    }

    .summary-banner {
        border: 1px solid #ddd;
        background: #f9f9f9;
    }
}

/* ============================================
   SELECTION STYLES
   ============================================ */
.terms-content-section ::selection {
    background: rgba(168, 85, 247, 0.15);
    color: var(--text-dark);
}

.terms-hero ::selection {
    background: rgba(168, 85, 247, 0.2);
    color: var(--text-dark);
}

/* ============================================
   FOCUS STYLES (Accessibility)
   ============================================ */
.terms-toc-section .toc-item:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    border-radius: 10px;
}

.agreement-btn:focus-visible {
    outline: 2px solid white;
    outline-offset: 2px;
}

.terms-section a:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    border-radius: 4px;
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    .terms-section {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .service-card,
    .payment-card,
    .termination-card,
    .ip-card,
    .rule-item,
    .disclaimer-card,
    .liability-item,
    .indemnify-item {
        transition: none;
    }

    .service-card:hover,
    .payment-card:hover,
    .termination-card:hover,
    .ip-card:hover {
        transform: none;
    }

    .service-icon,
    .rule-number,
    .process-number,
    .termination-icon,
    .change-dot,
    .indemnify-number,
    .disclaimer-icon,
    .payment-icon {
        transition: none;
    }

    .mobile-menu {
        transition: none;
    }

    .agreement-btn {
        transition: none;
    }

    .agreement-btn:hover {
        transform: none;
    }
}

/* ============================================
   DARK MODE SUPPORT (Optional)
   ============================================ */
@media (prefers-color-scheme: dark) {
    /* Uncomment below to enable dark mode */
    /*
    :root {
        --text-dark: #f1f5f9;
        --text-light: #94a3b8;
        --border-color: #334155;
        --bg-light: #0f172a;
    }

    body {
        background: #0f172a;
        color: #f1f5f9;
    }

    .terms-hero {
        background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    }

    .service-card,
    .payment-card,
    .termination-card,
    .ip-card,
    .rule-item,
    .disclaimer-card,
    .liability-item,
    .indemnify-item,
    .law-step,
    .restriction-category,
    .toc-card,
    .summary-banner {
        background: #1e293b;
    }
    */
}