/* Extracted verbatim from pricing/index.html so all seven language copies share one file. */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f9fafb;
}
.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 40px 20px;
}
header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
}
header img {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
}
h1 {
    font-size: 2rem;
    color: #111;
    margin-bottom: 8px;
}
/* Вводный абзац в шапке — тот же приглушённый стиль, что у .support-intro
   на /support/ и у подзаголовка на /google-drive-sync/. */
.pricing-intro {
    color: #6b7280;
    font-size: 0.9rem;
}
.last-updated {
    color: #6b7280;
    font-size: 0.9rem;
}
h2 {
    font-size: 1.4rem;
    color: #111;
    margin-top: 32px;
    margin-bottom: 16px;
}
p {
    margin-bottom: 16px;
    color: #374151;
}
ul {
    margin-bottom: 16px;
    padding-left: 24px;
}
li {
    margin-bottom: 8px;
    color: #374151;
}
.section {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.section h2:first-child {
    margin-top: 0;
}
footer {
    text-align: center;
    padding: 24px;
    color: #6b7280;
    font-size: 0.85rem;
    border-top: 1px solid #e5e7eb;
    margin-top: 40px;
}
footer a {
    color: #059669;
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}
a {
    color: #059669;
}

@media (prefers-color-scheme: dark) {
    body {
        background: #111827;
        color: #e5e7eb;
    }
    h1, h2 {
        color: #f9fafb;
    }
    p, li {
        color: #d1d5db;
    }
    .section {
        background: #1f2937;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    }
    .last-updated {
        color: #9ca3af;
    }
    footer {
        border-top-color: #374151;
        color: #9ca3af;
    }
    .pricing-intro {
        color: #9ca3af;
    }
    header {
        border-bottom-color: #374151;
    }
}
