/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; max-width: 100vw; }

:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #dbeafe;
    --accent: #f59e0b;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --white: #ffffff;
    --danger: #ef4444;
    --success: #22c55e;
    --radius: 8px;
    --radius-lg: 12px;
    --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.1);
    --transition: 0.2s ease;
}

/* === Dark Mode === */
[data-theme="dark"] {
    --primary: #3b82f6;
    --primary-dark: #60a5fa;
    --primary-light: #1e293b;
    --gray-50: #1e293b;
    --gray-100: #1e293b;
    --gray-200: #334155;
    --gray-300: #475569;
    --gray-400: #64748b;
    --gray-500: #94a3b8;
    --gray-600: #cbd5e1;
    --gray-700: #e2e8f0;
    --gray-800: #f1f5f9;
    --gray-900: #f8fafc;
    --white: #0f172a;
    --danger: #f87171;
    --success: #4ade80;
    --shadow: 0 1px 3px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.3);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.4);
}
[data-theme="dark"] body { background: #0f172a; color: #e2e8f0; }
[data-theme="dark"] .navbar { background: rgba(15,23,42,0.95); border-bottom-color: #334155; }
[data-theme="dark"] .nav-links { background: #1e293b; }
[data-theme="dark"] .nav-links a, [data-theme="dark"] .nav-links .nav-dropdown-menu a { color: #e2e8f0; border-bottom-color: #334155; }
[data-theme="dark"] .mobile-close { color: #e2e8f0; }
[data-theme="dark"] .nav-links .btn-outline { color: #3b82f6; border-color: #3b82f6; }
[data-theme="dark"] .nav-links .btn-outline:hover { background: #3b82f6; color: #fff; }
[data-theme="dark"] .form-control { background: #1e293b; color: #e2e8f0; border-color: #334155; }
[data-theme="dark"] .form-control:focus { border-color: #3b82f6; box-shadow: 0 0 0 3px rgba(59,130,246,0.2); }
[data-theme="dark"] .hero { background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%); }
[data-theme="dark"] .footer { background: #020617; }
[data-theme="dark"] .auth-page { background: #0f172a; }
[data-theme="dark"] .auth-card { background: #1e293b; box-shadow: 0 8px 30px rgba(0,0,0,0.5); }
[data-theme="dark"] .pricing-card.popular { border-color: #3b82f6; }
[data-theme="dark"] .pricing-card.popular::before { background: #3b82f6; }
[data-theme="dark"] .result-price { background: #22c55e; }
[data-theme="dark"] .comparison-ours { background: #1e293b; border-color: #3b82f6; }
[data-theme="dark"] .comparison-other { background: #0f172a; border-color: #334155; }
[data-theme="dark"] .blog-article-content { color: #cbd5e1; }
[data-theme="dark"] select option { background: #1e293b; color: #e2e8f0; }

html { scroll-behavior: smooth; }

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

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }

img { max-width: 100%; height: auto; }

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

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    line-height: 1.4;
}

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

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: var(--white); }

.btn-lg { padding: 14px 32px; font-size: 17px; border-radius: var(--radius-lg); }
.btn-block { width: 100%; }

/* === Navbar === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    padding: 0 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    text-decoration: none;
}
.logo:hover { color: var(--gray-900); }
.logo-icon { font-size: 24px; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}
.nav-links a { color: var(--gray-600); font-weight: 500; font-size: 15px; }
.nav-links a:hover { color: var(--gray-900); }
.nav-links .btn { color: var(--primary); }
.nav-links .btn:hover { color: var(--white); }
.nav-links .btn-primary { color: var(--white); }

/* Nav dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-600);
    padding: 0;
}
.nav-dropdown-toggle:hover { color: var(--gray-900); }
.nav-dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    min-width: 160px;
    padding: 16px 0 8px;
    z-index: 200;
}
.nav-dropdown-menu a {
    display: block;
    padding: 8px 16px;
    color: var(--gray-600);
    font-size: 14px;
    font-weight: 500;
}
.nav-dropdown-menu a:hover {
    background: var(--gray-50);
    color: var(--gray-900);
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown.open .nav-dropdown-menu { display: block; }

.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; width: 40px; height: 40px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.mobile-toggle span { display: block; width: 22px; height: 2px; background: var(--gray-700); border-radius: 2px; transition: 0.3s ease; }
.mobile-close { display: none; }
.mobile-overlay { display: none; }

/* === Hero === */
.hero {
    padding: 140px 0 80px;
    text-align: center;
    background: linear-gradient(180deg, var(--primary-light) 0%, var(--white) 100%);
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.15;
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero .highlight { color: var(--primary); }

.hero p {
    font-size: 19px;
    color: var(--gray-500);
    max-width: 560px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid var(--gray-200);
}

.hero-stat { text-align: center; }
.hero-stat .number { font-size: 32px; font-weight: 700; color: var(--gray-900); }
.hero-stat .label { font-size: 14px; color: var(--gray-500); margin-top: 4px; }

/* === Sections === */
.section { padding: 80px 0; }
.section-alt { background: var(--gray-50); }

.section-header {
    text-align: center;
    margin-bottom: 48px;
}
.section-header h2 {
    font-size: 34px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}
.section-header p {
    font-size: 17px;
    color: var(--gray-500);
    max-width: 520px;
    margin: 0 auto;
}

/* === Features === */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition);
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
}

.feature-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; color: var(--gray-900); }
.feature-card p { font-size: 15px; color: var(--gray-500); line-height: 1.6; }

/* === Comparison === */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 800px;
    margin: 0 auto;
}

.comparison-card {
    border-radius: var(--radius-lg);
    padding: 32px;
}

.comparison-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.comparison-card ul {
    list-style: none;
}

.comparison-card ul li {
    padding: 8px 0;
    font-size: 15px;
    line-height: 1.6;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.comparison-card ul li:last-child {
    border-bottom: none;
}

.comparison-other {
    background: var(--white);
    border: 1px solid var(--gray-200);
}

.comparison-other h3 { color: var(--gray-500); }

.comparison-other ul li {
    color: var(--gray-500);
}

.comparison-other ul li::before {
    content: '\2717  ';
    color: var(--danger);
    font-weight: 700;
}

.comparison-ours {
    background: var(--primary-light);
    border: 2px solid var(--primary);
}

.comparison-ours h3 { color: var(--primary-dark); }

.comparison-ours ul li {
    color: var(--gray-700);
    border-bottom-color: rgba(37, 99, 235, 0.1);
}

.comparison-ours ul li::before {
    content: '\2713  ';
    color: var(--success);
    font-weight: 700;
}

/* === Testimonials === */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }

.testimonial-stars {
    color: #f59e0b;
    font-size: 16px;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-100);
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-avatar-placeholder {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.testimonial-author strong {
    font-size: 14px;
    color: var(--gray-800);
}

/* === How it works === */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    counter-reset: step;
}

.step { text-align: center; }
.step::before {
    counter-increment: step;
    content: counter(step);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-weight: 700;
    font-size: 20px;
    margin: 0 auto 16px;
}
.step h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.step p { font-size: 15px; color: var(--gray-500); }

/* === Pricing === */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 36px;
    text-align: center;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}
.pricing-card .btn { margin-top: auto; }
.pricing-card.popular {
    border-color: var(--primary);
    position: relative;
}
.pricing-card.popular::before {
    content: 'Meest gekozen';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.pricing-card h3 { font-size: 20px; font-weight: 600; margin-bottom: 8px; }
.pricing-price { font-size: 42px; font-weight: 700; color: var(--gray-900); margin: 16px 0; }
.pricing-price span { font-size: 16px; font-weight: 400; color: var(--gray-500); }

.pricing-searches {
    background: var(--gray-50);
    border-radius: 12px;
    padding: 14px 16px;
    margin: 4px 0 16px;
}
.pricing-searches-count {
    display: block;
    font-size: 52px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}
.pricing-searches-label {
    display: block;
    font-size: 13px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 4px;
}

.pricing-marketplaces {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}
.pricing-marketplaces span {
    background: var(--gray-100);
    color: var(--gray-600);
    font-size: 12px;
    font-weight: 500;
    padding: 3px 10px;
    border-radius: 20px;
}

.pricing-features { list-style: none; margin: 0 0 24px; text-align: left; }
.pricing-features li {
    padding: 8px 0;
    font-size: 15px;
    color: var(--gray-600);
    border-bottom: 1px solid var(--gray-100);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.pricing-features li::before { content: '✓'; color: var(--success); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* === Forms === */
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
}
.form-control {
    width: 100%;
    padding: 10px 14px;
    font-size: 15px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--gray-800);
    transition: border-color var(--transition);
    font-family: inherit;
}
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-light); }
select.form-control { padding-right: 36px !important; }

.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
    background: var(--gray-50);
}

.auth-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    width: 100%;
    max-width: 420px;
    box-shadow: var(--shadow-lg);
}
.auth-card h1 { font-size: 24px; text-align: center; margin-bottom: 8px; }
.auth-card .subtitle { text-align: center; color: var(--gray-500); margin-bottom: 28px; font-size: 15px; }
.auth-card .auth-footer { text-align: center; margin-top: 20px; font-size: 14px; color: var(--gray-500); }

.btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 11px 16px;
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-700);
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition);
    font-family: inherit;
}
.btn-google:hover { background: var(--gray-50); border-color: var(--gray-400); color: var(--gray-800); }

.auth-divider {
    display: flex;
    align-items: center;
    margin: 20px 0;
    gap: 12px;
}
.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--gray-200);
}
.auth-divider span {
    font-size: 13px;
    color: var(--gray-400);
    font-weight: 500;
}

.alert {
    padding: 12px 16px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
}
.alert-danger { background: #fef2f2; color: var(--danger); border: 1px solid #fecaca; }
.alert-success { background: #f0fdf4; color: var(--success); border: 1px solid #bbf7d0; }

/* === Dashboard === */
.dashboard { padding: 88px 0 40px; min-height: 100vh; background: var(--gray-50); }

.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}
.dashboard-header h1 { font-size: 28px; font-weight: 700; }

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

.stat-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow);
}
.stat-card .stat-label { font-size: 13px; color: var(--gray-500); font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }
.stat-card .stat-value { font-size: 28px; font-weight: 700; color: var(--gray-900); margin-top: 4px; }

.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 24px;
    margin-bottom: 24px;
}
.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.card-header h2 { font-size: 18px; font-weight: 600; }

/* === Table === */
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 12px 16px; text-align: left; font-size: 14px; }
th { background: var(--gray-50); color: var(--gray-500); font-weight: 600; text-transform: uppercase; font-size: 12px; letter-spacing: 0.5px; border-bottom: 2px solid var(--gray-200); }
td { border-bottom: 1px solid var(--gray-100); color: var(--gray-700); }
tr:hover td { background: var(--gray-50); }

.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}
.badge-active { background: #dcfce7; color: #16a34a; }
.badge-inactive { background: var(--gray-100); color: var(--gray-500); }

/* === Footer === */
.footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: 56px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer .logo { color: var(--white); margin-bottom: 12px; }
.footer-desc { font-size: 14px; line-height: 1.7; max-width: 320px; }

.footer-col h4 { color: var(--white); font-size: 15px; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: var(--gray-400); font-size: 14px; }
.footer-col ul a:hover { color: var(--white); }

.footer-bottom {
    border-top: 1px solid var(--gray-700);
    padding-top: 20px;
    font-size: 13px;
    text-align: center;
}

/* === Blog === */
.blog-hero {
    padding: 140px 0 48px;
    text-align: center;
    background: var(--white);
}
.blog-hero h1 {
    font-size: 44px;
    font-weight: 800;
    color: var(--gray-900);
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}
.blog-hero p {
    font-size: 18px;
    color: var(--gray-400);
    max-width: 480px;
    margin: 0 auto;
    font-weight: 400;
}

.blog-list { padding: 24px 0 80px; }

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
}

.blog-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.25s ease;
    border: 1px solid var(--gray-100);
}
.blog-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.08); transform: translateY(-4px); }

.blog-card-image { display: block; aspect-ratio: 16/10; overflow: hidden; background: var(--gray-100); }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .blog-card-image img { transform: scale(1.05); }

.blog-card-body { padding: 24px 24px 28px; }
.blog-card-meta { font-size: 13px; color: var(--gray-400); margin-bottom: 12px; font-weight: 500; letter-spacing: 0.02em; }
.blog-card-title { font-size: 19px; font-weight: 700; line-height: 1.4; margin-bottom: 10px; letter-spacing: -0.01em; }
.blog-card-title a { color: var(--gray-900); text-decoration: none; }
.blog-card-title a:hover { color: var(--primary); }
.blog-card-excerpt { font-size: 15px; color: var(--gray-500); line-height: 1.65; margin-bottom: 16px; }
.blog-card-link { font-size: 14px; font-weight: 600; color: var(--primary); letter-spacing: 0.01em; }
.blog-card-link:hover { text-decoration: underline; }

/* Blog article */
.blog-article { padding: 0 0 80px; background: var(--white); }

.blog-article-header { max-width: 680px; margin: 0 auto 48px; padding-top: 120px; }

.breadcrumb { font-size: 13px; color: var(--gray-400); margin-bottom: 24px; font-weight: 500; }
.breadcrumb a { color: var(--gray-400); text-decoration: none; }
.breadcrumb a:hover { color: var(--primary); }

.blog-article-header h1 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--gray-900);
    letter-spacing: -0.025em;
}
.blog-article-meta {
    font-size: 15px;
    color: var(--gray-400);
    display: flex;
    gap: 10px;
    align-items: center;
    font-weight: 400;
}

.blog-article-image {
    max-width: 800px;
    margin: 0 auto 56px;
    border-radius: 16px;
    overflow: hidden;
}
.blog-article-image img { width: 100%; height: auto; display: block; }

.blog-article-content {
    max-width: 680px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 2;
    color: var(--gray-700);
    letter-spacing: -0.003em;
}
.blog-article-content > p:first-child {
    font-size: 20px;
    line-height: 1.9;
    color: var(--gray-600);
}
.blog-article-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 56px 0 20px;
    color: var(--gray-900);
    letter-spacing: -0.02em;
    line-height: 1.3;
}
.blog-article-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 44px 0 16px;
    color: var(--gray-900);
    letter-spacing: -0.01em;
    line-height: 1.35;
}
.blog-article-content p { margin-bottom: 28px; }
.blog-article-content ul, .blog-article-content ol {
    margin-bottom: 28px;
    padding-left: 24px;
}
.blog-article-content li {
    margin-bottom: 12px;
    line-height: 1.9;
}
.blog-article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 36px 0;
}
.blog-article-content blockquote {
    border-left: 3px solid var(--gray-900);
    padding: 4px 0 4px 28px;
    margin: 40px 0;
    background: none;
    font-style: italic;
    color: var(--gray-600);
    font-size: 20px;
    line-height: 1.8;
}
.blog-article-content a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(37, 99, 235, 0.3);
    transition: text-decoration-color var(--transition);
}
.blog-article-content a:hover { text-decoration-color: var(--primary); }
.blog-article-content pre {
    background: var(--gray-900);
    color: var(--gray-200);
    padding: 24px;
    border-radius: 12px;
    overflow-x: auto;
    margin: 36px 0;
    font-size: 14px;
    line-height: 1.7;
}
.blog-article-content table { width: 100%; border-collapse: collapse; margin: 36px 0; }
.blog-article-content th, .blog-article-content td { padding: 14px 18px; border-bottom: 1px solid var(--gray-200); text-align: left; font-size: 15px; }
.blog-article-content th { font-weight: 600; color: var(--gray-500); font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; border-bottom: 2px solid var(--gray-200); }

/* Divider between sections */
.blog-article-content hr {
    border: none;
    height: 1px;
    background: var(--gray-200);
    margin: 48px 0;
}

.blog-cta {
    max-width: 680px;
    margin: 64px auto;
    text-align: center;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 48px 40px;
}
.blog-cta h3 { font-size: 24px; font-weight: 700; margin-bottom: 10px; color: var(--gray-900); letter-spacing: -0.02em; }
.blog-cta p { font-size: 16px; color: var(--gray-500); margin-bottom: 24px; line-height: 1.6; }

.blog-related {
    max-width: 1080px;
    margin: 80px auto 0;
    padding-top: 64px;
    border-top: 1px solid var(--gray-200);
}
.blog-related h2 { font-size: 28px; font-weight: 700; margin-bottom: 32px; letter-spacing: -0.02em; }

/* === Responsive === */
@media (max-width: 768px) {
    .hero h1 { font-size: 32px; }
    .hero p { font-size: 16px; }
    .hero-stats { gap: 24px; flex-wrap: wrap; }
    .features-grid, .steps, .pricing-grid, .comparison-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -300px;
        width: 280px;
        height: 100vh;
        background: var(--white);
        padding: 80px 24px 24px;
        box-shadow: -4px 0 24px rgba(0,0,0,0.12);
        z-index: 200;
        transition: right 0.3s ease;
        overflow-y: auto;
        gap: 0;
    }
    .nav-links.active { right: 0; }
    .nav-links.active ~ .mobile-toggle { display: none; }
    .nav-links a, .nav-links .btn {
        padding: 14px 0;
        border-bottom: 1px solid var(--gray-200);
        font-size: 16px;
        width: 100%;
        text-align: left;
        border-radius: 0;
        color: var(--gray-900);
    }
    .nav-links .btn { text-align: center; margin-top: 8px; border-bottom: none; }
    .nav-links .btn-primary { color: var(--white); }

    .mobile-toggle { display: flex; z-index: 300; }

    .mobile-overlay {
        display: none;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: transparent;
        z-index: 99;
    }
    .mobile-overlay.active { display: block; }

    .mobile-close {
        position: absolute;
        top: 18px;
        right: 18px;
        background: none;
        border: none;
        font-size: 28px;
        cursor: pointer;
        color: var(--gray-600);
        z-index: 210;
        display: block;
    }

    .nav-dropdown { display: contents; }
    .nav-dropdown-menu,
    .nav-dropdown:hover .nav-dropdown-menu,
    .nav-dropdown.open .nav-dropdown-menu { display: contents; position: static; }
    .nav-dropdown-menu a { padding: 14px 0; font-size: 16px; border-bottom: 1px solid var(--gray-200); color: var(--gray-900); width: 100%; }
    .nav-dropdown-toggle { display: none; }
    .dashboard-header { flex-direction: column; gap: 16px; align-items: flex-start; }
    .blog-grid { grid-template-columns: 1fr; }
    .blog-related .blog-grid { grid-template-columns: 1fr; }
    .blog-hero h1 { font-size: 32px; }
    .blog-article-header h1 { font-size: 30px; }
    .blog-article-content { font-size: 17px; }
    .blog-article-content h2 { font-size: 24px; margin-top: 40px; }
    .blog-article-content h3 { font-size: 20px; margin-top: 32px; }
    .blog-cta { padding: 32px 24px; }
    .blog-related { padding-top: 40px; margin-top: 48px; }
}
