.terms-page {
    min-height: 100vh;
    padding: 140px 0 80px;
    position: relative;
}

.terms-page-bg {
    position: fixed;
    inset: 0;
    background-image: radial-gradient(circle, var(--border) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

.terms-page .container {
    position: relative;
    z-index: 1;
}

.terms-header {
    text-align: center;
    margin-bottom: 64px;
}

.terms-meta {
    font-size: 14px;
    color: var(--text-subtle);
    margin-bottom: 16px;
}

.terms-page-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.1;
}

.terms-content {
    max-width: 720px;
    margin: 0 auto;
}

.terms-section {
    margin-bottom: 48px;
    animation: fadeInUp 0.6s ease-out both;
}

.terms-section:nth-child(1) { animation-delay: 0.05s; }
.terms-section:nth-child(2) { animation-delay: 0.1s; }
.terms-section:nth-child(3) { animation-delay: 0.15s; }
.terms-section:nth-child(4) { animation-delay: 0.2s; }
.terms-section:nth-child(5) { animation-delay: 0.25s; }
.terms-section:nth-child(6) { animation-delay: 0.3s; }
.terms-section:nth-child(7) { animation-delay: 0.35s; }
.terms-section:nth-child(8) { animation-delay: 0.4s; }
.terms-section:nth-child(9) { animation-delay: 0.45s; }
.terms-section:nth-child(10) { animation-delay: 0.5s; }
.terms-section:nth-child(11) { animation-delay: 0.55s; }
.terms-section:nth-child(12) { animation-delay: 0.6s; }
.terms-section:nth-child(13) { animation-delay: 0.65s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.terms-section h2 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    padding-top: 8px;
}

.terms-section > p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-muted);
}

.terms-note {
    font-size: 15px;
    color: var(--text-subtle);
    font-style: italic;
    margin-top: 16px !important;
}

.terms-warning {
    font-size: 15px;
    color: var(--coral);
    background: rgba(244, 113, 74, 0.08);
    padding: 16px;
    border-radius: var(--radius-md);
    border-left: 3px solid var(--coral);
    margin-top: 16px;
}

.terms-warning strong {
    color: var(--coral-dark);
}

.terms-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-top: 16px;
}

.terms-card h3 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.terms-card p {
    font-size: 15px;
    line-height: 1.6;
}

.terms-card-highlight {
    background: linear-gradient(135deg, rgba(244, 113, 74, 0.08) 0%, rgba(253, 244, 236, 1) 100%);
    border-color: rgba(244, 113, 74, 0.25);
}

.check-list,
.cross-list {
    margin: 16px 0;
}

.check-list li,
.cross-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-muted);
}

.check-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(244, 113, 74, 0.15);
    color: var(--coral);
    border-radius: 50%;
    font-size: 16px;
}

.cross-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(107, 96, 86, 0.1);
    color: var(--text-muted);
    border-radius: 50%;
    font-size: 16px;
}

.pricing-box {
    background: white;
    border: 2px solid var(--coral);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin: 20px 0;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.pricing-row:not(:last-child) {
    border-bottom: 1px solid var(--border);
}

.pricing-row h3 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
}

.pricing-row .price {
    font-size: 18px;
    font-weight: 700;
    color: var(--coral);
}

.terms-section-contact {
    text-align: center;
    padding: 48px;
    background: var(--surface);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 500;
    color: var(--coral);
    margin: 20px 0;
    padding: 16px 28px;
    background: white;
    border-radius: var(--radius-pill);
    border: 2px solid var(--coral);
    transition: var(--transition);
}

.contact-email:hover {
    background: var(--coral);
    color: white;
}

.contact-email .email-icon {
    width: 20px;
    height: 20px;
}

.contact-email .email-icon svg {
    width: 100%;
    height: 100%;
}

.company-name {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 8px;
}

.terms-footer {
    margin-top: 64px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition);
}

.back-link:hover {
    color: var(--coral);
}

.back-icon {
    width: 20px;
    height: 20px;
}

.back-icon svg {
    width: 100%;
    height: 100%;
}

.nav-link.active {
    color: var(--coral);
}

@media (max-width: 768px) {
    .terms-page {
        padding: 100px 0 60px;
    }

    .terms-section-contact {
        padding: 32px 20px;
    }

    .contact-email {
        font-size: 16px;
        padding: 14px 20px;
    }

    .pricing-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}
