/* Terms of Service Page Styles - Modern and Professional */

/* Terms Page Layout */
.modeno-terms-page {
    min-height: 100vh;
    background: #ffffff;
}

/* Hero Section */
.modeno-terms-hero {
    background: linear-gradient(135deg, #1e40af, #1e3a8a);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.modeno-terms-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.modeno-terms-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 10;
}

.modeno-terms-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.modeno-back-to-home {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-bottom: 32px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.modeno-back-to-home:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.modeno-back-to-home svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.modeno-back-to-home:hover svg {
    transform: translateX(-2px);
}

.modeno-terms-hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin: 0 0 16px 0;
    line-height: 1.1;
}

.modeno-terms-hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 32px 0;
    line-height: 1.5;
}

.modeno-terms-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.modeno-terms-company {
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
}

.modeno-terms-updated {
    font-family: var(--font-body);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

/* Terms Content */
.modeno-terms-content {
    padding: 80px 0;
    background: #f8f9fa;
}

.modeno-terms-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.modeno-terms-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
}

/* Table of Contents */
.modeno-terms-toc {
    position: sticky;
    top: 100px;
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    height: fit-content;
}

.modeno-toc-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 24px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #276fbf;
}

.modeno-toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modeno-toc-list li {
    margin: 0 0 8px 0;
}

.modeno-toc-link {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: #64748b;
    text-decoration: none;
    display: block;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.2s ease;
    line-height: 1.4;
}

.modeno-toc-link:hover {
    color: #276fbf;
    background: #f0f9ff;
    transform: translateX(4px);
}

.modeno-toc-link:active {
    color: #1a5490;
    background: #e0f2fe;
}

/* Main Content */
.modeno-terms-main {
    background: white;
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.modeno-terms-sections {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.modeno-terms-section {
    scroll-margin-top: 120px;
}

.modeno-terms-section-title {
    font-family: var(--font-heading);
    font-size: 1.875rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 24px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.modeno-section-number {
    background: linear-gradient(135deg, #276fbf, #1a5490);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    flex-shrink: 0;
}

.modeno-terms-section-content {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: #374151;
}

.modeno-terms-section-content p {
    margin: 0 0 16px 0;
}

.modeno-terms-section-content p:last-child {
    margin-bottom: 0;
}

/* Lists */
.modeno-terms-list {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.modeno-terms-list li {
    position: relative;
    padding-left: 24px;
    margin: 0 0 12px 0;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: #374151;
}

.modeno-terms-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: #276fbf;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Special Boxes */
.modeno-terms-notice {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 12px;
    padding: 20px;
    margin: 24px 0;
}

.modeno-terms-notice p {
    margin: 0;
    color: #92400e;
    font-weight: 500;
}

.modeno-terms-highlight {
    background: #e0f2fe;
    border: 1px solid #0ea5e9;
    border-radius: 12px;
    padding: 20px;
    margin: 24px 0;
}

.modeno-terms-highlight p {
    margin: 0;
    color: #0c4a6e;
    font-weight: 500;
}

.modeno-terms-warning {
    background: #fef2f2;
    border: 1px solid #ef4444;
    border-radius: 12px;
    padding: 20px;
    margin: 24px 0;
}

.modeno-terms-warning p {
    margin: 0;
    color: #dc2626;
    font-weight: 500;
}

/* Contact Boxes */
.modeno-final-contact {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border: 1px solid #cbd5e1;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    margin: 24px 0;
}

.modeno-final-contact h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 16px 0;
}

.modeno-final-contact p {
    margin: 0 0 8px 0;
    font-family: var(--font-body);
    color: #64748b;
}

.modeno-final-contact p:last-child {
    margin-bottom: 0;
}

/* Links */
.modeno-terms-link {
    color: #276fbf;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.modeno-terms-link:hover {
    color: #1a5490;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .modeno-terms-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .modeno-terms-toc {
        position: static;
        order: 2;
    }
    
    .modeno-terms-main {
        order: 1;
    }
}

@media (max-width: 768px) {
    .modeno-terms-hero {
        padding: 100px 0 60px;
    }
    
    .modeno-terms-hero-title {
        font-size: 2.5rem;
    }
    
    .modeno-terms-hero-subtitle {
        font-size: 1.125rem;
    }
    
    .modeno-terms-meta {
        flex-direction: column;
        gap: 16px;
    }
    
    .modeno-terms-content {
        padding: 60px 0;
    }
    
    .modeno-terms-container {
        padding: 0 20px;
    }
    
    .modeno-terms-main {
        padding: 32px;
    }
    
    .modeno-terms-toc {
        padding: 24px;
    }
    
    .modeno-terms-section-title {
        font-size: 1.5rem;
    }
    
    .modeno-section-number {
        width: 32px;
        height: 32px;
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .modeno-terms-hero-title {
        font-size: 2rem;
    }
    
    .modeno-terms-container {
        padding: 0 16px;
    }
    
    .modeno-terms-main {
        padding: 24px;
    }
    
    .modeno-terms-toc {
        padding: 20px;
    }
    
    .modeno-terms-section-title {
        font-size: 1.25rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .modeno-section-number {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.modeno-toc-link:focus,
.modeno-terms-link:focus {
    outline: 2px solid #276fbf;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .modeno-terms-toc {
        display: none;
    }
    
    .modeno-terms-hero {
        background: white;
        color: black;
        padding: 40px 0;
    }
    
    .modeno-terms-content {
        background: white;
        padding: 0;
    }
    
    .modeno-terms-main {
        box-shadow: none;
        border: none;
        padding: 0;
    }
}
