/* ============================================================
   SEO Pilot - Blog Styles
   ============================================================ */

/* ---- Navbar (miroir de landing-style.css) ---- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #e2e8f0;
}

.nav-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo img {
    height: 28px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: #475569;
    text-decoration: none;
    transition: color 0.15s;
}

.nav-links a:hover {
    color: #1e40af;
}

.nav-links a.nav-active {
    color: #1e40af;
    font-weight: 600;
}

.nav-btn-outline {
    padding: 0.5rem 1.25rem !important;
    border: 1.5px solid #3b82f6 !important;
    border-radius: 8px;
    color: #3b82f6 !important;
    font-weight: 600 !important;
    transition: all 0.15s !important;
}

.nav-btn-outline:hover {
    background: #eff6ff;
}

.nav-btn-primary {
    padding: 0.5rem 1.25rem !important;
    background: #3b82f6;
    border-radius: 8px;
    color: white !important;
    font-weight: 600 !important;
    transition: all 0.15s !important;
}

.nav-btn-primary:hover {
    background: #2563eb;
}

.nav-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #1e293b;
    border-radius: 2px;
    transition: 0.2s;
}

/* ---- Blog Hero ---- */
.blog-hero {
    padding: 7rem 1.5rem 3rem;
    background: linear-gradient(135deg, #eff6ff 0%, #e0f2fe 50%, #f0f9ff 100%);
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

.blog-hero-container {
    max-width: 680px;
    margin: 0 auto;
}

.blog-hero h1 {
    font-size: 2.25rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.blog-hero p {
    color: #475569;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.blog-hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: #64748b;
}

.blog-hero-stats strong {
    color: #1e40af;
    font-weight: 700;
}

/* ---- Blog Main ---- */
.blog-main {
    padding: 2.5rem 1.5rem 3rem;
    max-width: 1140px;
    margin: 0 auto;
}

.blog-container {
    width: 100%;
}

/* ---- Blog Filters ---- */
.blog-filters {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.blog-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1.15rem;
    background: white;
    border: 1.5px solid #e2e8f0;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #475569;
    cursor: pointer;
    transition: all 0.15s;
    font-family: inherit;
}

.blog-filter-btn:hover {
    border-color: #93c5fd;
    color: #2563eb;
    background: #f8fafc;
}

.blog-filter-btn.active {
    background: #1e40af;
    color: white;
    border-color: #1e40af;
}

.blog-filter-btn.active .filter-count {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.filter-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.4rem;
    height: 1.4rem;
    padding: 0 0.35rem;
    background: #f1f5f9;
    color: #64748b;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 20px;
}

/* ---- Blog Empty State ---- */
.blog-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: #94a3b8;
    font-size: 1rem;
}

/* ---- Blog Index (legacy, kept for compat) ---- */
.blog-intro {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3rem;
}

.blog-intro h1 {
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.blog-intro p {
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ---- Blog Grid ---- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: white;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.2s;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    border-color: #93c5fd;
}

.blog-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: linear-gradient(135deg, #eff6ff 0%, #e0f2fe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card-image .card-vs {
    font-size: 1.5rem;
    font-weight: 800;
    color: #3b82f6;
    text-align: center;
    padding: 1rem;
}

.blog-card-image .card-guide-icon {
    font-size: 3rem;
    text-align: center;
    line-height: 1.4;
}

.blog-card-image .card-guide-icon span {
    font-size: 1rem;
    font-weight: 700;
    color: #16a34a;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.blog-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-category {
    display: inline-block;
    padding: 0.25rem 0.7rem;
    background: #eff6ff;
    color: #2563eb;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
    width: fit-content;
}

.blog-card-category.cat-guide {
    background: #f0fdf4;
    color: #16a34a;
}

.blog-card-category.cat-comparatif {
    background: #eff6ff;
    color: #2563eb;
}

.blog-card-body h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.blog-card-body p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    flex: 1;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
    font-size: 0.8rem;
    color: #94a3b8;
}

/* ---- Page Content (wrapper articles) ---- */
.page-content {
    max-width: 960px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

/* ---- Article ---- */
.article-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 2.5rem;
    padding: 0 1rem;
}

.article-header .breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #94a3b8;
    margin-bottom: 1.5rem;
}

.article-header .breadcrumb a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.15s;
}

.article-header .breadcrumb a:hover {
    color: #3b82f6;
}

.article-header h1 {
    font-size: 2.25rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.article-header .article-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: #64748b;
}

.article-header .article-category {
    display: inline-block;
    padding: 0.3rem 0.85rem;
    background: #eff6ff;
    color: #2563eb;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 20px;
}

/* ---- Article Content ---- */
.article-content {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 1rem;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.article-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
}

.article-content h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1e293b;
    margin: 1.75rem 0 0.75rem;
}

.article-content p {
    font-size: 1rem;
    color: #334155;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.article-content ul,
.article-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
}

.article-content li {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.article-content strong {
    color: #0f172a;
}

.article-content a {
    color: #2563eb;
    text-decoration: none;
    border-bottom: 1px solid #93c5fd;
    transition: color 0.15s, border-color 0.15s;
}

.article-content a:hover {
    color: #1e40af;
    border-bottom-color: #1e40af;
}

/* ---- Comparison Table ---- */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0 2rem;
    font-size: 0.9rem;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.comparison-table thead th {
    background: #1e293b;
    color: white;
    padding: 1rem 1.25rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
}

.comparison-table thead th:first-child {
    width: 35%;
}

.comparison-table tbody td {
    padding: 0.85rem 1.25rem;
    border-bottom: 1px solid #f1f5f9;
    color: #334155;
    vertical-align: top;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:nth-child(even) {
    background: #f8fafc;
}

.comparison-table tbody tr:hover {
    background: #eff6ff;
}

.comparison-table .check {
    color: #22c55e;
    font-weight: 700;
}

.comparison-table .cross {
    color: #ef4444;
    font-weight: 700;
}

.comparison-table .partial {
    color: #f59e0b;
    font-weight: 600;
}

/* ---- Verdict Box ---- */
.verdict-box {
    background: linear-gradient(135deg, #eff6ff 0%, #e0f2fe 100%);
    border: 2px solid #3b82f6;
    border-radius: 14px;
    padding: 2rem;
    margin: 2rem 0;
}

.verdict-box h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e40af;
    margin: 0 0 1rem;
}

.verdict-box p {
    color: #334155;
    margin-bottom: 0.75rem;
}

.verdict-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.verdict-col {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
}

.verdict-col h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #0f172a;
}

.verdict-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.verdict-col li {
    padding: 0.35rem 0 0.35rem 1.5rem;
    position: relative;
    font-size: 0.9rem;
    color: #475569;
}

.verdict-col li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: 700;
}

/* ---- CTA Box (articles) ---- */
.article-cta {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    border-radius: 14px;
    padding: 2.5rem;
    text-align: center;
    margin: 2.5rem 0;
    color: white;
}

.article-cta h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0 0 0.75rem;
    color: white;
}

.article-cta p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.article-cta .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.article-cta .btn-cta-primary {
    display: inline-flex;
    align-items: center;
    padding: 0.85rem 2rem;
    background: #22c55e;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 14px rgba(34, 197, 94, 0.35);
}

.article-cta .btn-cta-primary:hover {
    background: #16a34a;
    transform: translateY(-1px);
    border-bottom: none;
}

.article-cta .btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    padding: 0.85rem 2rem;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 10px;
    text-decoration: none;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    transition: all 0.2s;
}

.article-cta .btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-bottom-color: rgba(255, 255, 255, 0.4);
}

/* ---- Blog CTA Section (index page) ---- */
.blog-cta-section {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    padding: 3.5rem 1.5rem;
    text-align: center;
}

.blog-cta-container {
    max-width: 600px;
    margin: 0 auto;
}

.blog-cta-section h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.75rem;
}

.blog-cta-section p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.blog-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.blog-cta-buttons .btn-cta-primary {
    display: inline-flex;
    align-items: center;
    padding: 0.85rem 2rem;
    background: #22c55e;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 14px rgba(34, 197, 94, 0.35);
}

.blog-cta-buttons .btn-cta-primary:hover {
    background: #16a34a;
    transform: translateY(-1px);
}

.blog-cta-buttons .btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    padding: 0.85rem 2rem;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 10px;
    text-decoration: none;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    transition: all 0.2s;
}

.blog-cta-buttons .btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* ---- FAQ Schema Section ---- */
.faq-section {
    margin: 2.5rem 0;
}

.faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: white;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
    text-align: left;
    transition: background 0.15s;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-arrow {
    font-size: 0.7rem;
    color: #94a3b8;
    transition: transform 0.2s;
    flex-shrink: 0;
}

.faq-item.open .faq-arrow {
    transform: rotate(90deg);
}

.faq-answer {
    display: none;
    padding: 0 1.25rem 1rem;
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    display: block;
}

/* ---- Quiz ---- */
.quiz-container {
    background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 2.5rem;
    margin: 2rem 0;
    position: relative;
}

.quiz-progress {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.quiz-progress-bar {
    flex: 1;
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
    overflow: hidden;
}

.quiz-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #2563eb);
    border-radius: 3px;
    transition: width 0.4s ease;
}

.quiz-progress-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748b;
    white-space: nowrap;
}

.quiz-step {
    display: none;
    animation: quizFadeIn 0.3s ease;
}

.quiz-step.active {
    display: block;
}

@keyframes quizFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.quiz-question-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.quiz-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.quiz-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.15s;
    font-size: 0.92rem;
    color: #334155;
    text-align: left;
    line-height: 1.4;
}

.quiz-option:hover {
    border-color: #93c5fd;
    background: #f0f9ff;
}

.quiz-option.selected {
    border-color: #3b82f6;
    background: #eff6ff;
    color: #1e40af;
    font-weight: 600;
}

.quiz-option-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.quiz-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    gap: 1rem;
}

.quiz-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s;
    border: none;
    font-family: inherit;
}

.quiz-btn-prev {
    background: white;
    color: #64748b;
    border: 1.5px solid #e2e8f0;
}

.quiz-btn-prev:hover {
    background: #f8fafc;
    color: #475569;
}

.quiz-btn-next {
    background: #3b82f6;
    color: white;
}

.quiz-btn-next:hover {
    background: #2563eb;
}

.quiz-btn-next:disabled {
    background: #cbd5e1;
    cursor: not-allowed;
}

.quiz-btn-submit {
    background: #22c55e;
    color: white;
    padding: 0.8rem 2rem;
    font-size: 1rem;
}

.quiz-btn-submit:hover {
    background: #16a34a;
}

.quiz-btn-submit:disabled {
    background: #cbd5e1;
    cursor: not-allowed;
}

/* Quiz Result */
.quiz-result {
    display: none;
    animation: quizFadeIn 0.4s ease;
}

.quiz-result.active {
    display: block;
}

.quiz-result-header {
    text-align: center;
    margin-bottom: 2rem;
}

.quiz-result-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: #22c55e;
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.quiz-result-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.quiz-result-desc {
    font-size: 1rem;
    color: #475569;
    line-height: 1.7;
}

.quiz-result-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.quiz-result-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 0.75rem;
}

.quiz-result-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quiz-result-card li {
    padding: 0.3rem 0 0.3rem 1.5rem;
    position: relative;
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.6;
}

.quiz-result-card li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: 700;
}

.quiz-result-links {
    margin-top: 1rem;
}

.quiz-result-links h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.quiz-result-links a {
    display: inline-block;
    margin: 0.25rem 0.25rem 0.25rem 0;
    padding: 0.3rem 0.75rem;
    background: #eff6ff;
    color: #2563eb;
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.15s;
}

.quiz-result-links a:hover {
    background: #dbeafe;
}

.quiz-restart {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: none;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    color: #64748b;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s;
    font-family: inherit;
}

.quiz-restart:hover {
    background: #f8fafc;
    color: #475569;
}

/* Quiz card on index */
.blog-card-category.cat-quiz {
    background: #faf5ff;
    color: #7c3aed;
}

.blog-card-image .card-quiz-icon {
    font-size: 3rem;
    text-align: center;
    line-height: 1.4;
}

.blog-card-image .card-quiz-icon span {
    font-size: 1rem;
    font-weight: 700;
    color: #7c3aed;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .page-content {
        padding: 1.5rem 1rem;
    }

    .article-header {
        padding: 0 0.25rem;
    }

    .article-content {
        padding: 0 0.25rem;
    }

    .blog-hero {
        padding: 6rem 1rem 2rem;
    }

    .blog-hero h1 {
        font-size: 1.6rem;
    }

    .blog-hero p {
        font-size: 0.95rem;
    }

    .blog-hero-stats {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .blog-main {
        padding: 1.5rem 1rem 2rem;
    }

    .blog-filters {
        gap: 0.4rem;
    }

    .blog-filter-btn {
        padding: 0.4rem 0.9rem;
        font-size: 0.8rem;
    }

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

    .article-header h1 {
        font-size: 1.6rem;
    }

    .article-content h2 {
        font-size: 1.25rem;
    }

    .comparison-table {
        font-size: 0.8rem;
        min-width: 400px;
    }

    .comparison-table thead th,
    .comparison-table tbody td {
        padding: 0.65rem 0.75rem;
    }

    .verdict-box {
        padding: 1.25rem;
    }

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

    .verdict-col {
        padding: 1rem;
    }

    .article-cta {
        padding: 1.5rem;
        margin-left: -0.25rem;
        margin-right: -0.25rem;
        border-radius: 10px;
    }

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

    .blog-cta-section {
        padding: 2rem 1rem;
    }

    .blog-cta-section h2 {
        font-size: 1.35rem;
    }

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

    .faq-question {
        padding: 0.85rem 1rem;
        font-size: 0.88rem;
    }

    .faq-answer {
        padding: 0 1rem 0.85rem;
    }

    .quiz-container {
        padding: 1.5rem;
        margin-left: -0.25rem;
        margin-right: -0.25rem;
    }

    .quiz-options {
        grid-template-columns: 1fr;
    }

    .quiz-question-title {
        font-size: 1.1rem;
    }

    .quiz-result-title {
        font-size: 1.25rem;
    }

    .quiz-nav {
        flex-wrap: wrap;
    }
}

@media (max-width: 640px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
        border-bottom: 1px solid #e2e8f0;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-mobile-toggle {
        display: flex;
    }
}
