:root {
    --bg: #ffffff;
    --bg-soft: #f5f7fa;
    --bg-card: #ffffff;
    --bg-input: #f5f7fa;
    --text: #1a1a2e;
    --text-muted: #64748b;
    --accent: #2563eb;
    --accent-hover: #1d4ed8;
    --accent-light: rgba(37,99,235,0.08);
    --danger: #dc2626;
    --warning: #d97706;
    --success: #16a34a;
    --border: #e2e8f0;
    --radius: 12px;
    --shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.04);
    --shadow-lg: 0 4px 24px rgba(0,0,0,0.08);
}

* { margin:0; padding:0; box-sizing:border-box; }

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

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

/* ============ HERO ============ */
.hero {
    padding: 80px 0 60px;
    text-align: center;
    background: linear-gradient(180deg, #eef2ff 0%, var(--bg) 100%);
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--accent-light);
    border: 1px solid rgba(37,99,235,0.2);
    border-radius: 20px;
    font-size: 14px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--text);
}

.hero-sub {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-sub strong {
    color: var(--danger);
}

/* ============ AUDIT FORM ============ */
.audit-form {
    max-width: 640px;
    margin: 0 auto;
}

.input-group {
    display: flex;
    gap: 0;
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.2s;
    box-shadow: var(--shadow);
}

.input-group:focus-within {
    border-color: var(--accent);
}

.input-group input {
    flex: 1;
    padding: 16px 20px;
    background: transparent;
    border: none;
    color: var(--text);
    font-size: 16px;
    outline: none;
}

.input-group input::placeholder {
    color: var(--text-muted);
}

.input-group button {
    padding: 16px 28px;
    background: var(--accent);
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.input-group button:hover {
    background: var(--accent-hover);
}

.form-hint {
    margin-top: 12px;
    font-size: 13px;
    color: var(--text-muted);
}

/* Spinner */
.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    vertical-align: middle;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============ RESULTS ============ */
.results {
    padding: 60px 0;
}

.results-header {
    text-align: center;
    margin-bottom: 40px;
}

.results-header h2 {
    font-size: 28px;
    margin-bottom: 24px;
}

.results-summary {
    display: flex;
    justify-content: center;
    gap: 48px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--accent);
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ============ VIOLATIONS ============ */
.violations-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.violation-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    box-shadow: var(--shadow);
}

.violation-severity {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-top: 8px;
}

.violation-severity.critical { background: var(--danger); box-shadow: 0 0 8px rgba(220,38,38,0.3); }
.violation-severity.high { background: var(--warning); box-shadow: 0 0 8px rgba(217,119,6,0.3); }
.violation-severity.medium { background: var(--accent); }

.violation-content { flex: 1; }

.violation-type {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.violation-text {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
    word-break: break-word;
    color: var(--text);
}

.violation-words {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.violation-word {
    display: inline-block;
    padding: 2px 10px;
    background: rgba(220,38,38,0.08);
    border: 1px solid rgba(220,38,38,0.2);
    border-radius: 6px;
    font-size: 13px;
    color: var(--danger);
    font-family: monospace;
}

/* ============ TEASER CTA ============ */
.teaser-cta {
    text-align: center;
    padding: 48px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.teaser-count {
    font-size: 24px;
    margin-bottom: 12px;
}

.teaser-text {
    color: var(--text-muted);
    margin-bottom: 28px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37,99,235,0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.btn-secondary:hover {
    background: var(--accent-light);
}

.btn-lg { padding: 16px 32px; font-size: 17px; }
.btn-block { display: block; width: 100%; text-align: center; }

/* ============ FEATURES ============ */
.features {
    padding: 80px 0;
    background: var(--bg-soft);
}

.features h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 48px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-shadow: var(--shadow);
}

.feature-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text);
}

.feature-card p {
    font-size: 14px;
    color: var(--text-muted);
}

/* ============ PENALTIES ============ */
.penalties {
    padding: 80px 0;
}

.penalties h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 48px;
}

.penalties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.penalty-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow);
}

.penalty-card--danger {
    border-color: rgba(220,38,38,0.3);
    background: linear-gradient(180deg, rgba(220,38,38,0.04) 0%, var(--bg-card) 100%);
}

.penalty-amount {
    font-size: 32px;
    font-weight: 800;
    color: var(--danger);
    margin-bottom: 8px;
}

.penalty-desc {
    font-size: 14px;
    color: var(--text-muted);
}

/* ============ PRICING ============ */
.pricing {
    padding: 80px 0;
    background: var(--bg-soft);
}
.pricing h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 8px;
}
.pricing-sub {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 48px;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}
.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    box-shadow: var(--shadow);
    transition: box-shadow 0.3s;
}
.pricing-card:hover {
    box-shadow: var(--shadow-lg);
}
.pricing-card--popular {
    border-color: var(--accent);
    border-width: 2px;
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}
.pricing-popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.pricing-badge {
    font-size: 13px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 8px;
}
.pricing-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text);
}
.pricing-price {
    font-size: 36px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 4px;
}
.pricing-period {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 24px;
}
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}
.pricing-features li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text);
    border-bottom: 1px solid rgba(0,0,0,0.04);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-disabled {
    color: var(--text-muted) !important;
    opacity: 0.6;
}

@media (max-width: 900px) {
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .pricing-card--popular { transform: none; }
}

/* ============ CONTACT ============ */
.contact {
    padding: 80px 0;
    background: var(--bg-soft);
}

.contact h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 12px;
}

.contact-sub {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 36px;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-form input,
.contact-form textarea {
    padding: 14px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

.contact-form textarea {
    min-height: 100px;
    resize: vertical;
}

/* ============ FOOTER ============ */
footer {
    padding: 32px 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
    border-top: 1px solid var(--border);
}

.footer-legal { font-size: 12px; color: var(--text-muted); margin-top: 8px; }
.footer-disclaimer {
    font-size: 11px;
    color: #94a3b8;
    max-width: 600px;
    margin: 12px auto 0;
    line-height: 1.5;
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }
.footer-payment {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.footer-payment-label {
    font-size: 12px;
    color: var(--text-muted);
}
.payment-badge {
    display: inline-block;
    padding: 4px 10px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text);
}

/* ============ ERROR/SUCCESS ============ */
.error-message {
    background: rgba(220,38,38,0.06);
    border: 1px solid rgba(220,38,38,0.2);
    border-radius: var(--radius);
    padding: 16px 20px;
    color: var(--danger);
    text-align: center;
    margin-top: 16px;
}

.success-message {
    background: rgba(22,163,74,0.06);
    border: 1px solid rgba(22,163,74,0.2);
    border-radius: var(--radius);
    padding: 16px 20px;
    color: var(--success);
    text-align: center;
    margin-top: 16px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 640px) {
    .input-group {
        flex-direction: column;
    }
    .input-group button {
        border-radius: 0;
    }
    .results-summary {
        gap: 24px;
    }
    .cta-buttons {
        flex-direction: column;
    }
}

/* ============ BLOG NAV ============ */
.blog-nav {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
}
.blog-nav .container {
    display: flex;
    align-items: center;
    gap: 24px;
}
.blog-nav .logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent);
    text-decoration: none;
}
.blog-nav .nav-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}
.blog-nav .nav-link:hover { color: var(--text); }

/* ============ BLOG INDEX ============ */
.blog-list { padding: 60px 0; }
.blog-list h1 { text-align: center; margin-bottom: 8px; }
.blog-subtitle { text-align: center; color: var(--text-muted); margin-bottom: 40px; }
.articles-grid { display: grid; gap: 24px; max-width: 800px; margin: 0 auto; }
.article-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 32px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: border-color 0.3s, box-shadow 0.3s;
}
.article-card:hover { border-color: var(--accent); box-shadow: var(--shadow-lg); }
.article-card h2 { font-size: 22px; margin: 8px 0 12px; }
.article-card h2 a { color: var(--text); text-decoration: none; }
.article-card h2 a:hover { color: var(--accent); }
.article-card p { color: var(--text-muted); line-height: 1.6; }
.article-date { color: var(--text-muted); font-size: 14px; }
.read-more { color: var(--accent); text-decoration: none; font-weight: 600; }

/* ============ BLOG ARTICLE ============ */
.blog-article { padding: 40px 0 60px; }
.container-narrow { max-width: 760px; margin: 0 auto; }
.article-meta { display: flex; gap: 16px; color: var(--text-muted); font-size: 14px; margin-bottom: 24px; }
.reading-time { color: var(--text-muted); }
.blog-article h1 { font-size: 32px; line-height: 1.3; margin-bottom: 24px; color: var(--text); }
.blog-article h2 {
    font-size: 24px;
    margin: 40px 0 16px;
    color: var(--text);
    border-bottom: 2px solid var(--border);
    padding-bottom: 8px;
}
.blog-article h3 { font-size: 18px; margin: 24px 0 12px; color: var(--text); }
.blog-article p { color: #374151; line-height: 1.8; margin-bottom: 16px; }
.blog-article ul, .blog-article ol { color: #374151; line-height: 1.8; margin-bottom: 16px; padding-left: 24px; }
.blog-article li { margin-bottom: 8px; }
.blog-article a { color: var(--accent); }
.article-intro p { font-size: 18px; color: var(--text); }

/* Table of Contents */
.toc {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 32px;
    margin: 32px 0;
}
.toc h3 { margin: 0 0 12px; font-size: 16px; color: var(--text-muted); }
.toc ol { padding-left: 20px; margin: 0; }
.toc li { margin-bottom: 6px; }
.toc a { color: var(--accent); text-decoration: none; }
.toc a:hover { text-decoration: underline; }

/* Info & Warning boxes */
.info-box {
    background: rgba(37,99,235,0.05);
    border-left: 4px solid var(--accent);
    border-radius: 0 8px 8px 0;
    padding: 20px 24px;
    margin: 20px 0;
}
.info-box h4 { color: var(--accent); margin: 0 0 8px; }
.info-box p { margin: 0; color: #374151; }
.warning-box {
    background: rgba(220,38,38,0.05);
    border-left: 4px solid var(--danger);
    border-radius: 0 8px 8px 0;
    padding: 20px 24px;
    margin: 20px 0;
    color: #374151;
}

/* Check grid */
.check-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin: 20px 0; }
.check-item { background: var(--bg-card); border-radius: var(--radius); padding: 20px; border: 1px solid var(--border); box-shadow: var(--shadow); }
.check-item h4 { margin: 0 0 12px; }
.check-item ul { padding-left: 18px; margin: 0; font-size: 14px; color: #374151; }
.check-item.critical { border-color: var(--danger); border-left: 4px solid var(--danger); }
.check-item.high { border-color: var(--warning); border-left: 4px solid var(--warning); }
.check-item.medium { border-color: #eab308; border-left: 4px solid #eab308; }

/* Example grid */
.example-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin: 20px 0; }
.example-card { background: var(--bg-card); border-radius: var(--radius); padding: 16px; box-shadow: var(--shadow); }
.example-card.violation { border: 1px solid rgba(220,38,38,0.3); }
.example-card.ok { border: 1px solid rgba(22,163,74,0.3); }
.example-label { font-weight: 700; font-size: 14px; margin-bottom: 8px; }
.example-text { font-size: 16px; margin-bottom: 8px; color: var(--text); }
.example-fix { color: var(--success); font-size: 14px; }
.example-why { color: var(--text-muted); font-size: 14px; font-style: italic; }

/* Tables */
.penalty-table, .violations-table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 15px; }
.penalty-table th, .violations-table th {
    background: var(--accent);
    color: white;
    padding: 12px 16px;
    text-align: left;
}
.penalty-table td, .violations-table td {
    padding: 10px 16px;
    border-bottom: 1px solid var(--border);
    color: #374151;
}
.penalty-table tr.highlight td {
    background: rgba(220,38,38,0.05);
    color: var(--text);
    font-weight: 600;
}

/* CTA inline */
.cta-inline { text-align: center; margin: 32px 0; }
.article-cta {
    background: linear-gradient(135deg, rgba(37,99,235,0.06) 0%, rgba(139,92,246,0.06) 100%);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    margin: 40px 0;
}
.article-cta h3 { color: var(--text); margin-bottom: 12px; }
.article-cta p { color: var(--text-muted); margin-bottom: 20px; }

/* Related articles */
.related-articles { padding: 40px 0; border-top: 1px solid var(--border); }
.related-articles h3 { margin-bottom: 20px; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.related-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    text-decoration: none;
    transition: border-color 0.3s;
    box-shadow: var(--shadow);
}
.related-card:hover { border-color: var(--accent); }
.related-card h4 { color: var(--text); margin: 0 0 8px; font-size: 16px; }
.related-card span { color: var(--accent); font-size: 14px; }

/* Blog CTA section */
.blog-cta {
    background: var(--bg-soft);
    text-align: center;
    padding: 60px 0;
    border-top: 1px solid var(--border);
}
.blog-cta h2 { margin-bottom: 12px; }
.blog-cta p { color: var(--text-muted); margin-bottom: 24px; }

/* ============ STICKY CTA (blog articles) ============ */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    z-index: 100;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta p { color: var(--text-muted); font-size: 14px; margin: 0; }
.sticky-cta .btn { padding: 10px 24px; font-size: 14px; }

/* ============ PAYMENT PAGE ============ */
.payment-hero { padding: 40px 0 60px; }
.payment-layout { display: grid; grid-template-columns: 1fr 420px; gap: 48px; align-items: start; }
.payment-badge {
    display: inline-block;
    background: var(--accent-light);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}
.payment-hero h1 { font-size: 28px; line-height: 1.3; margin-bottom: 24px; }

.order-card {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 24px;
}
.order-site { margin-bottom: 16px; }
.order-label { display: block; font-size: 13px; color: var(--text-muted); margin-bottom: 4px; }
.order-value { font-size: 18px; font-weight: 600; color: var(--accent); word-break: break-all; }
.order-stats { display: flex; gap: 24px; }
.order-stat { display: flex; flex-direction: column; }
.order-stat-num { font-size: 28px; font-weight: 700; color: var(--text); }
.order-stat-red { color: var(--danger) !important; }
.order-stat-label { font-size: 13px; color: var(--text-muted); }

.order-includes { margin-bottom: 24px; }
.order-includes h3 { font-size: 16px; margin-bottom: 16px; color: var(--text); }
.includes-list { list-style: none; padding: 0; margin: 0; }
.includes-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}
.includes-list li:last-child { border-bottom: none; }
.includes-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.includes-list strong { display: block; color: var(--text); font-size: 14px; }
.includes-list p { margin: 2px 0 0; font-size: 13px; color: var(--text-muted); }

.penalty-reminder {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: rgba(220,38,38,0.04);
    border: 1px solid rgba(220,38,38,0.15);
    border-radius: var(--radius);
    padding: 16px 20px;
}
.penalty-reminder-icon { font-size: 24px; flex-shrink: 0; }
.penalty-reminder strong { color: var(--danger); display: block; margin-bottom: 2px; }
.penalty-reminder p { margin: 0; font-size: 13px; color: var(--text-muted); }

.payment-price-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    position: sticky;
    top: 24px;
    box-shadow: var(--shadow-lg);
}
.price-tag { text-align: center; margin-bottom: 24px; }
.price-amount {
    display: block;
    font-size: 40px;
    font-weight: 800;
    color: var(--accent);
}
.price-desc { display: block; font-size: 14px; color: var(--text-muted); margin-top: 4px; }

.payment-note {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    background: var(--accent-light);
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.5;
}
.payment-note-icon { font-size: 18px; flex-shrink: 0; }

.payment-form .form-group { margin-bottom: 16px; }
.payment-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}
.payment-form .optional { font-weight: 400; color: var(--text-muted); }
.payment-form input,
.payment-form textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-size: 15px;
    transition: border-color 0.2s;
    box-sizing: border-box;
    font-family: inherit;
}
.payment-form input:focus,
.payment-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}
.payment-form textarea { resize: vertical; }

.pay-btn {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 8px;
}
.form-disclaimer {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 12px;
}

.success-card {
    text-align: center;
    padding: 32px 16px;
}
.success-icon { font-size: 48px; margin-bottom: 12px; }
.success-card h3 { color: var(--success); margin-bottom: 8px; }
.success-card p { color: var(--text-muted); }
.error-card {
    background: rgba(220,38,38,0.06);
    border: 1px solid rgba(220,38,38,0.2);
    border-radius: 10px;
    padding: 16px;
    color: var(--danger);
    text-align: center;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
}
.payment-methods-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.pay-icon {
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.payment-methods-info {
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ============ REPORT PAGE ============ */
.report-container {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 20px;
}

.report-header {
    text-align: center;
    padding: 48px 20px 32px;
    border-bottom: 1px solid var(--border);
}
.report-header h1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 12px;
}
.report-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.report-meta .url {
    font-size: 15px;
    color: var(--accent);
    font-weight: 600;
}
.report-meta .date {
    font-size: 14px;
    color: var(--text-muted);
}

.report-summary {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 32px 0;
}
.stat-card {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
}
.stat-card.danger {
    border-color: var(--danger);
    background: rgba(220,38,38,0.04);
}
.stat-value {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--text);
    line-height: 1.1;
}
.stat-card.danger .stat-value {
    color: var(--danger);
}
.stat-label {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Paywall */
.paywall {
    margin: 32px 0;
    border: 2px solid var(--accent);
    border-radius: 16px;
    overflow: hidden;
}
.paywall-content {
    padding: 40px 32px;
    text-align: center;
    background: linear-gradient(135deg, rgba(37,99,235,0.03), rgba(37,99,235,0.08));
}
.paywall-content h2 {
    font-size: 22px;
    margin: 0 0 12px;
    color: var(--text);
}
.paywall-content > p {
    color: var(--text-muted);
    margin: 0 0 16px;
    font-size: 15px;
}
.paywall-content ul {
    list-style: none;
    padding: 0;
    margin: 0 auto 24px;
    max-width: 400px;
    text-align: left;
}
.paywall-content ul li {
    padding: 6px 0;
    font-size: 14px;
    color: var(--text);
}
.price-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 24px 0 16px;
    flex-wrap: wrap;
}
.price-block .price {
    font-size: 36px;
    font-weight: 800;
    color: var(--accent);
}
.paywall-content .alternative {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 16px;
}
.paywall-content .alternative a {
    color: var(--accent);
}

/* Violations list */
.violations-list {
    padding: 32px 0;
}
.violations-list h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 20px;
    color: var(--text);
}
.violation-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.violation-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.violation-card.severity-critical {
    border-left: 4px solid var(--danger);
}
.violation-card.severity-high {
    border-left: 4px solid var(--warning);
}
.violation-card.severity-medium {
    border-left: 4px solid #eab308;
}
.violation-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: var(--bg-soft);
    flex-wrap: wrap;
}
.severity-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    white-space: nowrap;
}
.severity-badge.critical {
    background: rgba(220,38,38,0.1);
    color: var(--danger);
}
.severity-badge.high {
    background: rgba(217,119,6,0.1);
    color: var(--warning);
}
.severity-badge.medium {
    background: rgba(234,179,8,0.1);
    color: #a16207;
}
.element-type {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}
.occurrence-count {
    font-size: 12px;
    color: var(--text-muted);
    margin-left: auto;
}
.violation-body {
    padding: 16px 20px;
}
.violation-text {
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--text);
    line-height: 1.5;
}
.foreign-words {
    margin-bottom: 10px;
    font-size: 14px;
}
.foreign-word {
    display: inline-block;
    background: rgba(220,38,38,0.08);
    color: var(--danger);
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    margin: 2px 4px 2px 0;
}
.violation-pages {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 8px;
}
.violation-pages a {
    color: var(--accent);
    word-break: break-all;
    display: block;
    margin-top: 2px;
}

/* Hidden violations */
.hidden-violations {
    text-align: center;
    padding: 40px 20px;
    background: var(--bg-soft);
    border-radius: 12px;
    border: 2px dashed var(--border);
    margin-top: 16px;
}
.hidden-violations p {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 16px;
    color: var(--text-muted);
}

/* Report footer */
.report-footer {
    padding: 32px 0 48px;
    border-top: 1px solid var(--border);
    margin-top: 16px;
}
.report-footer h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 16px;
}
.penalties-info {
    background: var(--bg-soft);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 32px;
}
.penalties-info p {
    margin: 0 0 12px;
    font-size: 14px;
    color: var(--text-muted);
}
.penalties-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.penalties-info li {
    padding: 6px 0;
    font-size: 14px;
    color: var(--text);
    border-bottom: 1px solid var(--border);
}
.penalties-info li:last-child {
    border-bottom: none;
}

/* CTA block */
.cta-block {
    background: linear-gradient(135deg, rgba(37,99,235,0.04), rgba(37,99,235,0.1));
    border: 1px solid rgba(37,99,235,0.2);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
}
.cta-block h3 {
    margin: 0 0 8px;
}
.cta-block p {
    color: var(--text-muted);
    margin: 0 0 20px;
    font-size: 15px;
}

/* Contact form in report */
.contact-form-inline {
    max-width: 480px;
    margin: 0 auto;
    text-align: left;
}
.contact-form-inline .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}
.contact-form-inline .form-group {
    margin-bottom: 12px;
}
.contact-form-inline label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}
.contact-form-inline input,
.contact-form-inline textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    background: #fff;
    transition: border-color 0.2s;
    box-sizing: border-box;
}
.contact-form-inline input:focus,
.contact-form-inline textarea:focus {
    border-color: var(--accent);
    outline: none;
}
.contact-form-inline textarea {
    resize: vertical;
    min-height: 80px;
}
.contact-form-inline .btn {
    width: 100%;
    margin-top: 4px;
}
.form-success {
    text-align: center;
    padding: 20px;
    color: var(--success, #16a34a);
    font-weight: 600;
}

@media (max-width: 600px) {
    .report-summary { grid-template-columns: repeat(2, 1fr); }
    .contact-form-inline .form-row { grid-template-columns: 1fr; }
    .price-block { flex-direction: column; }
    .stat-value { font-size: 24px; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
    .payment-layout { grid-template-columns: 1fr; }
    .payment-price-card { position: static; }
}

@media (max-width: 768px) {
    .blog-article h1 { font-size: 24px; }
    .check-grid, .example-grid { grid-template-columns: 1fr; }
    .article-cta { padding: 24px; }
    .hero { padding: 60px 0 40px; }
    .features, .penalties, .contact { padding: 48px 0; }
    .sticky-cta { flex-direction: column; gap: 8px; padding: 10px 16px; }
    .sticky-cta p { display: none; }
}
