/* Root Variables */
:root {
    --primary: #8B73E6;
    --primary-dark: #7059D4;
    --primary-light: #A48FEE;
    --secondary: #5AC7C4;
    --accent-orange: #FF9B6A;
    --accent-green: #4DC08C;
    --accent-pink: #F27373;
    --accent-blue: #5A8CF2;

    --text-primary: #1A1D26;
    --text-secondary: #5A6070;
    --text-tertiary: #8E95A5;

    --bg-primary: #FFFFFF;
    --bg-secondary: #F8F9FC;
    --bg-tertiary: #F0F2F7;

    --border-color: #E8EAF0;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --transition: all 0.3s ease;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-primary);
    background: var(--bg-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.02em;
}

h3 {
    font-size: 1.25rem;
}

p {
    color: var(--text-secondary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: var(--border-color);
}

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

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-block {
    width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    text-decoration: none;
}

.logo-icon {
    color: var(--primary);
}

.logo-img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    object-fit: cover;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links .btn-primary {
    color: white !important;
}

.nav-links .btn-primary:hover {
    color: white !important;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 160px 0 100px;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 24px;
}

.hero h1 {
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 48px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-tertiary);
}

.hero-gradient {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 115, 230, 0.1) 0%, rgba(90, 199, 196, 0.1) 100%);
    border-radius: 0 0 0 50%;
    z-index: -1;
}

/* Phone Mockup */
.phone-mockup {
    position: relative;
    width: 320px;
    height: 650px;
    background: #1A1D26;
    border-radius: 48px;
    padding: 12px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #F8F9FC 0%, #F0F2F7 100%);
    border-radius: 40px;
    overflow: hidden;
}

.app-preview {
    padding: 60px 24px 24px;
}

.preview-header {
    margin-bottom: 32px;
}

.preview-header .greeting {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.preview-header .subtitle {
    font-size: 1rem;
    color: var(--text-tertiary);
}

.preview-tasks {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.preview-task {
    background: white;
    border-radius: var(--radius-lg);
    padding: 16px;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.preview-task.completed {
    opacity: 0.6;
}

.task-badge {
    display: inline-block;
    padding: 4px 8px;
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 4px;
    margin-bottom: 8px;
}

.task-badge.high-impact {
    background: rgba(242, 115, 115, 0.15);
    color: #D45A5A;
}

.task-badge.quick-win {
    background: rgba(77, 192, 140, 0.15);
    color: #3A9E70;
}

.task-badge.deep-work {
    background: rgba(139, 115, 230, 0.15);
    color: var(--primary);
}

.task-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.task-time {
    font-size: 0.8rem;
    color: var(--text-tertiary);
}

.task-check {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: var(--accent-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

/* What It's Not Section */
.not-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1A1D26 0%, #2D3142 100%);
}

.not-content {
    text-align: center;
}

.not-header h2 {
    color: white;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 40px;
}

.not-header .highlight {
    color: var(--accent-pink);
    font-style: italic;
}

.not-items {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.not-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
}

.not-icon {
    color: var(--accent-pink);
    font-size: 1.25rem;
    font-weight: 700;
}

.not-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: line-through;
    text-decoration-color: var(--accent-pink);
}

.not-cta {
    max-width: 500px;
    margin: 0 auto;
}

.not-tagline {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.not-tagline strong {
    color: var(--primary-light);
}

.not-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .not-items {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .not-item {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* Features Section */
.features {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon.purple {
    background: rgba(139, 115, 230, 0.12);
    color: var(--primary);
}

.feature-icon.green {
    background: rgba(77, 192, 140, 0.12);
    color: var(--accent-green);
}

.feature-icon.orange {
    background: rgba(255, 155, 106, 0.12);
    color: var(--accent-orange);
}

.feature-icon.blue {
    background: rgba(90, 140, 242, 0.12);
    color: var(--accent-blue);
}

.feature-icon.pink {
    background: rgba(242, 115, 115, 0.12);
    color: var(--accent-pink);
}

.feature-icon.teal {
    background: rgba(90, 199, 196, 0.12);
    color: var(--secondary);
}

.feature-card h3 {
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.95rem;
}

/* How It Works Section */
.how-it-works {
    padding: 120px 0;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.step {
    text-align: center;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-content h3 {
    margin-bottom: 8px;
}

.step-content p {
    font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 32px;
}

.testimonial-stars {
    color: #FFB800;
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.testimonial-card p {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 24px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
}

.author-role {
    font-size: 0.875rem;
    color: var(--text-tertiary);
}

/* Pricing Section */
.pricing {
    padding: 120px 0;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    flex: 1;
    max-width: 360px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 40px;
    position: relative;
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-lg);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.price .amount {
    font-size: 3rem;
    font-weight: 800;
}

.price .period {
    color: var(--text-tertiary);
}

.pricing-note {
    margin-top: 8px;
    font-size: 0.875rem;
    color: var(--accent-green);
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--bg-tertiary);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features .check {
    color: var(--accent-green);
    font-weight: 700;
}

/* Download Section */
.download {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.download-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.download h2 {
    color: white;
    margin-bottom: 16px;
}

.download p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin-bottom: 32px;
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    background: var(--text-primary);
    color: white;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 80px;
    margin-bottom: 48px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    margin-top: 12px;
}

.footer-brand .logo {
    color: white;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 12px;
    transition: var(--transition);
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtitle {
        margin: 0 auto 32px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image {
        display: none;
    }

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

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

    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}

/* Legal Pages - Modern Styles */

/* Legal Hero Section */
.legal-hero {
    position: relative;
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    overflow: hidden;
}

.legal-hero.privacy {
    background: linear-gradient(135deg, #E8F5F4 0%, var(--bg-primary) 100%);
}

.legal-hero-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.legal-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    color: white;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 24px rgba(139, 115, 230, 0.3);
}

.legal-hero.privacy .legal-icon {
    background: var(--secondary);
    box-shadow: 0 8px 24px rgba(90, 199, 196, 0.3);
}

.legal-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 16px;
}

.legal-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.legal-meta {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.legal-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: white;
    border-radius: 100px;
    font-size: 0.875rem;
    color: var(--text-tertiary);
    box-shadow: var(--shadow-sm);
}

.legal-hero-gradient {
    position: absolute;
    top: 0;
    right: -20%;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(139, 115, 230, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.legal-hero.privacy .legal-hero-gradient {
    background: radial-gradient(ellipse at center, rgba(90, 199, 196, 0.1) 0%, transparent 70%);
}

/* Legal Main Content */
.legal-main {
    padding: 80px 0;
}

.legal-wrapper {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 60px;
    align-items: start;
}

/* Table of Contents */
.legal-toc {
    position: sticky;
    top: 100px;
}

.toc-sticky h4 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-tertiary);
    margin-bottom: 16px;
}

.toc-sticky nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.toc-sticky nav a {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    border-left: 2px solid transparent;
    transition: var(--transition);
}

.toc-sticky nav a:hover {
    color: var(--primary);
    background: rgba(139, 115, 230, 0.05);
    border-left-color: var(--primary);
}

/* Legal Content */
.legal-content {
    max-width: 800px;
}

.legal-section {
    position: relative;
    padding: 40px;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
    border: 1px solid var(--border-color);
}

.section-number {
    position: absolute;
    top: -12px;
    left: 40px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    background: var(--bg-secondary);
    padding: 4px 12px;
    border-radius: 100px;
}

.legal-section h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.legal-section h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.legal-section p {
    margin-bottom: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.legal-section a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.legal-section a:hover {
    text-decoration: underline;
}

/* Legal Subsections */
.legal-subsection {
    padding: 24px;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    margin: 20px 0;
}

.legal-subsection h3 {
    font-size: 1rem;
    margin-bottom: 12px;
}

/* Legal Lists */
.legal-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.legal-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--bg-tertiary);
    color: var(--text-secondary);
    line-height: 1.6;
}

.legal-list li:last-child {
    border-bottom: none;
}

.list-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: rgba(77, 192, 140, 0.12);
    color: var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.legal-list.warning .list-icon {
    background: rgba(242, 115, 115, 0.12);
    color: var(--accent-pink);
}

/* Legal Callout */
.legal-callout {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: rgba(139, 115, 230, 0.08);
    border-radius: var(--radius-lg);
    margin: 24px 0;
    border-left: 4px solid var(--primary);
}

.legal-callout.success {
    background: rgba(77, 192, 140, 0.08);
    border-left-color: var(--accent-green);
}

.callout-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: white;
    color: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.legal-callout.success .callout-icon {
    color: var(--accent-green);
}

.callout-content p {
    margin-bottom: 12px;
}

.callout-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.callout-content ul li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    color: var(--text-secondary);
}

.callout-content ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary);
}

.legal-callout.success .callout-content ul li::before {
    color: var(--accent-green);
}

/* Legal Highlight */
.legal-highlight {
    padding: 24px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-lg);
    margin: 20px 0;
}

.legal-highlight p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

.legal-highlight.warning {
    background: rgba(255, 155, 106, 0.1);
    border: 1px solid rgba(255, 155, 106, 0.2);
}

/* Usage Grid */
.usage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 24px 0;
}

.usage-item {
    padding: 20px;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
}

.usage-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.usage-icon.purple {
    background: rgba(139, 115, 230, 0.12);
    color: var(--primary);
}

.usage-icon.green {
    background: rgba(77, 192, 140, 0.12);
    color: var(--accent-green);
}

.usage-icon.orange {
    background: rgba(255, 155, 106, 0.12);
    color: var(--accent-orange);
}

.usage-icon.blue {
    background: rgba(90, 140, 242, 0.12);
    color: var(--accent-blue);
}

.usage-item h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.usage-item p {
    font-size: 0.875rem;
    margin: 0;
    color: var(--text-secondary);
}

/* Third Party List */
.third-party-list {
    margin: 24px 0;
}

.third-party-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    margin-bottom: 12px;
}

.third-party-icon {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
}

.third-party-info h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.third-party-info p {
    font-size: 0.875rem;
    margin: 0;
    color: var(--text-tertiary);
}

/* Rights Grid */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 24px 0;
}

.right-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
}

.right-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.right-item h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.right-item p {
    font-size: 0.85rem;
    margin: 0;
    color: var(--text-tertiary);
}

/* Contact Card */
.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-lg);
    margin-top: 24px;
}

.contact-card .contact-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4px;
}

.contact-info a {
    color: white !important;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Responsive Legal Pages */
@media (max-width: 1024px) {
    .legal-wrapper {
        grid-template-columns: 1fr;
    }

    .legal-toc {
        display: none;
    }

    .usage-grid,
    .rights-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .legal-hero {
        padding: 120px 0 60px;
    }

    .legal-section {
        padding: 24px;
    }

    .section-number {
        left: 24px;
    }

    .legal-callout {
        flex-direction: column;
    }

    .contact-card {
        flex-direction: column;
        text-align: center;
    }
}
