/* ============================================================
   WP Syvkabale — SEO Content Styles
   Modern, lightweight design for content pages
   ============================================================ */

/* ── Base Reset & Typography ── */
.syvkabale-seo-content {
    max-width: 780px;
    margin: 48px auto 0;
    padding: 0 20px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 17px;
    line-height: 1.85;
    color: #334155;
    -webkit-font-smoothing: antialiased;
}

/* ── Headings ── */
.syvkabale-seo-content h2 {
    font-size: 26px;
    font-weight: 800;
    color: #0f172a;
    margin: 52px 0 16px;
    padding-bottom: 10px;
    border-bottom: 3px solid #d1fae5;
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.syvkabale-seo-content h2:first-of-type {
    margin-top: 32px;
}

.syvkabale-seo-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin: 32px 0 10px;
    line-height: 1.4;
}

/* ── Paragraphs & Links ── */
.syvkabale-seo-content p {
    margin: 0 0 18px;
}

.syvkabale-seo-content a {
    color: #059669;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1.5px solid rgba(5, 150, 105, 0.25);
    transition: color 0.2s, border-color 0.2s;
}

.syvkabale-seo-content a:hover {
    color: #047857;
    border-bottom-color: #047857;
}

/* ── Lists ── */
.syvkabale-seo-content ul,
.syvkabale-seo-content ol {
    margin: 0 0 20px;
    padding-left: 0;
    list-style: none;
}

.syvkabale-seo-content ul li,
.syvkabale-seo-content ol li {
    position: relative;
    padding: 8px 0 8px 28px;
    margin-bottom: 2px;
}

.syvkabale-seo-content ul li::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 17px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #059669, #10b981);
}

.syvkabale-seo-content ol {
    counter-reset: step-counter;
}

.syvkabale-seo-content ol li {
    counter-increment: step-counter;
}

.syvkabale-seo-content ol li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 7px;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #059669, #10b981);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── Tables ── */
.syvkabale-seo-content table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 24px 0 32px;
    font-size: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 12px rgba(0,0,0,0.04);
}

.syvkabale-seo-content thead th {
    text-align: left;
    padding: 14px 16px;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #f1f5f9;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
}

.syvkabale-seo-content tbody td {
    padding: 12px 16px;
    border-bottom: 1px solid #f1f5f9;
    border-left: none;
    border-right: none;
    color: #334155;
}

.syvkabale-seo-content tbody tr:last-child td {
    border-bottom: none;
}

.syvkabale-seo-content tbody tr {
    transition: background 0.15s;
}

.syvkabale-seo-content tbody tr:hover {
    background: #f0fdf4;
}

.syvkabale-seo-content tbody tr:nth-child(even) {
    background: #f8fafc;
}

.syvkabale-seo-content tbody tr:nth-child(even):hover {
    background: #f0fdf4;
}

.syvkabale-seo-content td strong {
    color: #0f172a;
}

/* ── Strong / Bold ── */
.syvkabale-seo-content strong {
    color: #1e293b;
    font-weight: 700;
}

/* ── Intro paragraph (first p after content starts) ── */
.syvkabale-seo-content > p:first-of-type {
    font-size: 19px;
    line-height: 1.75;
    color: #475569;
}

/* ── Navigation Bar ── */
.syvkabale-seo-nav {
    margin: 48px 0 24px;
    padding: 20px 24px;
    background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
    border: 1px solid #bbf7d0;
    border-radius: 14px;
    text-align: center;
    font-size: 15px;
    line-height: 2.2;
    position: relative;
    overflow: hidden;
}

.syvkabale-seo-nav::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(5,150,105,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.syvkabale-seo-nav strong {
    display: block;
    margin-bottom: 6px;
    color: #064e3b;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.syvkabale-seo-nav a {
    color: #059669;
    text-decoration: none;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
    border-bottom: none;
}

.syvkabale-seo-nav a:hover {
    background: rgba(5, 150, 105, 0.1);
    color: #047857;
    border-bottom: none;
}

/* ── FAQ Section Styling ── */
.syvkabale-seo-content .syvkabale-faq-section h2 {
    text-align: center;
    border-bottom: none;
    margin-bottom: 24px;
}

.syvkabale-faq-item {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.syvkabale-faq-item:hover {
    border-color: #a7f3d0;
    box-shadow: 0 2px 8px rgba(5, 150, 105, 0.08);
}

.syvkabale-faq-item h3 {
    margin: 0;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.15s;
}

.syvkabale-faq-item h3::before {
    content: '❓';
    font-size: 14px;
    flex-shrink: 0;
}

.syvkabale-faq-item h3:hover {
    background: #f8fafc;
}

.syvkabale-faq-item p {
    margin: 0;
    padding: 0 20px 16px 48px;
    color: #475569;
    font-size: 15px;
    line-height: 1.7;
}

/* ── Tip Cards (for tips page) ── */
.syvkabale-seo-content .syvkabale-tip {
    background: linear-gradient(135deg, #fff, #f8fafc);
    border: 1px solid #e2e8f0;
    border-left: 4px solid #059669;
    border-radius: 0 12px 12px 0;
    padding: 20px 24px;
    margin: 20px 0;
    transition: transform 0.2s, box-shadow 0.2s;
}

.syvkabale-seo-content .syvkabale-tip:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.syvkabale-seo-content .syvkabale-tip h3 {
    margin: 0 0 8px;
    font-size: 18px;
    color: #059669;
}

.syvkabale-seo-content .syvkabale-tip p {
    margin: 0;
}

/* ── Stat Cards ── */
.syvkabale-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 14px;
    margin: 24px 0 32px;
}

.syvkabale-stat {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #f1f5f9;
    border-radius: 14px;
    padding: 20px;
    text-align: center;
}

.syvkabale-stat .stat-value {
    font-size: 28px;
    font-weight: 800;
    color: #34d399;
    line-height: 1.2;
}

.syvkabale-stat .stat-label {
    font-size: 12px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

/* ── Variant Cards ── */
.syvkabale-variant-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 24px;
    margin: 20px 0;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.syvkabale-variant-card:hover {
    border-color: #a7f3d0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.syvkabale-variant-card h3 {
    margin: 0 0 12px;
    font-size: 20px;
    color: #0f172a;
}

.syvkabale-variant-card p {
    margin: 0 0 12px;
}

.syvkabale-variant-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.syvkabale-variant-meta span {
    background: #f1f5f9;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #475569;
}

.syvkabale-variant-meta span strong {
    color: #059669;
}

/* ── CTA Block ── */
.syvkabale-cta {
    background: linear-gradient(135deg, #059669, #047857);
    color: #fff;
    text-align: center;
    padding: 32px 28px;
    border-radius: 16px;
    margin: 40px 0 16px;
    position: relative;
    overflow: hidden;
}

.syvkabale-cta::before {
    content: '🃏';
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 80px;
    opacity: 0.1;
    transform: rotate(15deg);
}

.syvkabale-cta h3 {
    color: #fff;
    font-size: 22px;
    margin: 0 0 8px;
}

.syvkabale-cta p {
    color: rgba(255,255,255,0.85);
    margin: 0 0 20px;
    font-size: 16px;
}

.syvkabale-cta a {
    display: inline-block;
    background: #fff;
    color: #059669;
    padding: 12px 32px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    border: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.syvkabale-cta a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    border: none;
    color: #047857;
}

/* ── Frontpage Feature Grid ── */
.syvkabale-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin: 32px 0;
}

.syvkabale-feature {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 24px 20px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.syvkabale-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    border-color: #a7f3d0;
}

.syvkabale-feature-icon {
    font-size: 36px;
    margin-bottom: 10px;
    display: block;
}

.syvkabale-feature h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 6px;
}

.syvkabale-feature p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* ── Blockquote / Callout ── */
.syvkabale-seo-content blockquote,
.syvkabale-callout {
    background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
    border-left: 4px solid #059669;
    border-radius: 0 12px 12px 0;
    padding: 18px 24px;
    margin: 24px 0;
    font-style: normal;
    color: #064e3b;
    font-size: 16px;
}

.syvkabale-callout strong {
    color: #047857;
}

/* ── Responsive ── */
@media (max-width: 640px) {
    .syvkabale-seo-content {
        font-size: 16px;
        padding: 0 16px;
    }

    .syvkabale-seo-content h2 {
        font-size: 22px;
        margin-top: 36px;
    }

    .syvkabale-seo-content h3 {
        font-size: 18px;
    }

    .syvkabale-seo-content > p:first-of-type {
        font-size: 17px;
    }

    .syvkabale-stats {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .syvkabale-seo-content table {
        font-size: 13px;
    }

    .syvkabale-seo-content thead th,
    .syvkabale-seo-content tbody td {
        padding: 8px 10px;
    }

    .syvkabale-seo-nav {
        font-size: 14px;
        padding: 16px;
    }
}

/* ── Print ── */
@media print {
    .syvkabale-seo-nav,
    .syvkabale-cta,
    .syvkabale-wrapper {
        display: none !important;
    }
}
