/*
 * seo-landing.css — gedeelde stijl voor alle SEO-landingspagina's (views/seo/*).
 * De basis (nav, hero, feature-cards, compare-table, footer) is overgenomen uit
 * de inline <style> van view-home.php zodat de pagina's visueel consistent zijn;
 * daaronder staan de nieuwe SEO-componenten (prose, FAQ, CTA-band, related-links,
 * when-to-use, footer-kolommen). De pagina's laden óók /style-future2.css voor de
 * CSS-variabelen die de taalkiezer gebruikt.
 */

html, body {
    height: auto !important;
    overflow-y: auto !important;
    display: block !important;
    background-color: #f5f7fb;
}

/* ---- Nav ---- */
.landing-nav {
    display: flex; justify-content: space-between; align-items: center;
    max-width: 1280px; width: 100%; margin: 0 auto; padding: 25px 40px;
    position: relative; z-index: 100;
}
.nav-links { display: flex; gap: 40px; align-items: center; }
.nav-links a {
    color: #4a5568; text-decoration: none; font-weight: 700; font-size: 12px;
    text-transform: uppercase; letter-spacing: 1px; white-space: nowrap; transition: all 0.2s ease;
}
.nav-links a:not(.auth-button):hover { color: #2f74c8; transform: translateY(-1px); }
.nav-links .auth-button {
    padding: 10px 24px; border-radius: 50px;
    background: linear-gradient(135deg, #61aeee, #2f74c8); color: white; font-size: 12px;
    box-shadow: 0 4px 15px rgba(47, 116, 200, 0.3); border: none;
}
.nav-links .auth-button:hover {
    box-shadow: 0 6px 20px rgba(47, 116, 200, 0.4); transform: translateY(-2px);
    color: white !important; background: linear-gradient(135deg, #72bcfc, #3682de);
}

/* ---- Hero ---- */
.hero-section { text-align: center; padding: 80px 20px 60px; max-width: 1000px; margin: 0 auto; position: relative; }
.hero-eyebrow {
    display: inline-block; padding: 6px 14px; border-radius: 999px;
    background: rgba(47, 116, 200, 0.1); color: #2f74c8; font-size: 12px; font-weight: 800;
    letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 20px;
}
.hero-title { font-size: 3.5rem; font-weight: 800; line-height: 1.1; margin-bottom: 24px; letter-spacing: -0.03em; color: #1a202c; }
.hero-title span { background: linear-gradient(135deg, #61aeee 0%, #2f74c8 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-subtitle { font-size: 1.2rem; color: #718096; margin-bottom: 36px; max-width: 760px; margin-left: auto; margin-right: auto; line-height: 1.6; }
.vibe-list { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 40px; }
.vibe-list span {
    display: inline-block; padding: 6px 12px; background: #fff; border: 1px solid #e2e8f0;
    border-radius: 999px; font-size: 13px; font-weight: 600; color: #2d3748; box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.vibe-list span strong { color: #2f74c8; font-weight: 700; }
.cta-group { display: flex; gap: 16px; justify-content: center; margin-bottom: 40px; flex-wrap: wrap; }
.btn-lg { padding: 16px 32px; font-size: 15px; font-weight: 700; min-width: 200px; border-radius: 8px; text-decoration: none; display: inline-block; text-align: center; }
.btn-primary { background: linear-gradient(135deg, #61aeee, #2f74c8); color: white; border: none; box-shadow: 0 10px 25px rgba(47, 116, 200, 0.3); transition: transform 0.2s, box-shadow 0.2s; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 15px 35px rgba(47, 116, 200, 0.4); color:#fff; }
.btn-outline { background: transparent; border: 2px solid #cbd5e0; color: #4a5568; box-shadow: none; }
.btn-outline:hover { border-color: #a0aec0; color: #2d3748; background: #edf2f7; }
.hero-image-wrapper {
    border-radius: 16px; padding: 10px; background: #fff; border: 1px solid #e2e8f0;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15); max-width: 1100px; margin: 20px auto 0;
}
.hero-image-wrapper img { width: 100%; height: auto; display: block; border-radius: 10px; }

/* ---- Section headings ---- */
.section-header { text-align: center; margin-bottom: 50px; padding: 0 20px; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 12px; color: #2d3748; font-weight: 800; letter-spacing: -0.02em; }
.section-header p { color: #718096; font-size: 1.05rem; max-width: 680px; margin: 0 auto; line-height: 1.6; }

/* ---- Feature grid (hergebruik van home) ---- */
.features-section { padding-top: 90px; }
.features-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px; max-width: 1200px; margin: 0 auto; padding: 0 20px 90px;
}
.feature-card {
    background: #fff; border: 1px solid #edf2f7; border-radius: 16px; padding: 28px;
    transition: transform 0.2s, box-shadow 0.2s; box-shadow: 0 4px 6px rgba(0,0,0,0.02); position: relative;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 18px 25px -5px rgba(0, 0, 0, 0.08); }
.feature-icon {
    font-size: 2rem; margin-bottom: 16px; display: inline-block; background: #ebf8ff;
    width: 56px; height: 56px; line-height: 56px; text-align: center; border-radius: 12px; color: #3182ce;
}
.feature-card h3 { margin: 0 0 10px 0; color: #2d3748; font-size: 1.15rem; font-weight: 800; }
.feature-card p { color: #718096; line-height: 1.55; margin: 0; font-size: 14.5px; }
.feature-card p code {
    background: #edf2f7; color: #2d3748; padding: 1px 6px; border-radius: 4px; font-size: 12.5px;
    font-family: ui-monospace, "SF Mono", "Cascadia Code", Menlo, monospace; white-space: nowrap;
}

/* ---- SEO prose sections ---- */
.seo-section { padding: 80px 20px; border-top: 1px solid #e2e8f0; }
.seo-section.alt { background: #fff; }
.seo-prose { max-width: 780px; margin: 0 auto; }
.seo-prose h2 { font-size: 2.1rem; color: #2d3748; font-weight: 800; letter-spacing: -0.02em; margin: 0 0 20px; text-align: center; }
.seo-prose h3 { font-size: 1.25rem; color: #2d3748; font-weight: 800; margin: 34px 0 10px; }
.seo-prose p { color: #4a5568; line-height: 1.75; font-size: 1.05rem; margin: 0 0 18px; }
.seo-prose p code {
    background: #edf2f7; color: #2d3748; padding: 1px 6px; border-radius: 4px; font-size: 0.9em;
    font-family: ui-monospace, "SF Mono", "Cascadia Code", Menlo, monospace;
}
.seo-prose a { color: #2f74c8; text-decoration: none; font-weight: 600; }
.seo-prose a:hover { text-decoration: underline; }

/* ---- FAQ accordion (details/summary) ---- */
.faq-section { padding: 80px 20px; background: #fff; border-top: 1px solid #e2e8f0; }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
    background: #f7fafc; border: 1px solid #e2e8f0; border-radius: 12px;
    margin-bottom: 14px; overflow: hidden;
}
.faq-item summary {
    cursor: pointer; padding: 20px 22px; font-weight: 700; color: #2d3748; font-size: 1.05rem;
    list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: #2f74c8; font-size: 1.4rem; font-weight: 700; flex-shrink: 0; }
.faq-item[open] summary::after { content: "\2212"; }
.faq-item .faq-answer { padding: 0 22px 20px; color: #4a5568; line-height: 1.7; font-size: 1rem; }

/* ---- CTA band ---- */
.cta-band { background: linear-gradient(135deg, #61aeee 0%, #2f74c8 100%); padding: 70px 20px; text-align: center; }
.cta-band h2 { color: #fff; font-size: 2.1rem; font-weight: 800; margin: 0 0 14px; letter-spacing: -0.02em; }
.cta-band p { color: rgba(255,255,255,0.92); font-size: 1.1rem; max-width: 620px; margin: 0 auto 30px; line-height: 1.6; }
.cta-band .btn-lg { background: #fff; color: #2f74c8; box-shadow: 0 10px 25px rgba(0,0,0,0.15); }
.cta-band .btn-lg:hover { transform: translateY(-2px); color: #2f74c8; box-shadow: 0 15px 35px rgba(0,0,0,0.22); }

/* ---- Related pages ---- */
.related-section { padding: 70px 20px; background: #f8fafc; border-top: 1px solid #e2e8f0; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; max-width: 1000px; margin: 0 auto; }
.related-card {
    background: #fff; border: 1px solid #e2e8f0; border-radius: 12px; padding: 22px; text-decoration: none;
    display: block; transition: transform 0.2s, box-shadow 0.2s;
}
.related-card:hover { transform: translateY(-3px); box-shadow: 0 14px 28px -12px rgba(0,0,0,0.14); }
.related-card strong { display: block; color: #2f74c8; font-size: 1.02rem; margin-bottom: 6px; }
.related-card span { color: #718096; font-size: 13.5px; line-height: 1.5; }

/* ---- Comparison table (hergebruik van home) ---- */
.compare-section { background: #ffffff; padding: 90px 20px; border-top: 1px solid #e2e8f0; }
.compare-table-wrap {
    max-width: 1080px; margin: 0 auto; background: #fff; border: 1px solid #e2e8f0;
    border-radius: 18px; overflow: hidden; box-shadow: 0 18px 40px -20px rgba(0,0,0,0.12);
}
.compare-scroll { overflow-x: auto; }
table.compare-table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 640px; }
table.compare-table thead th {
    background: #f7fafc; color: #2d3748; font-size: 13px; font-weight: 800; letter-spacing: 0.04em;
    text-transform: uppercase; padding: 18px; text-align: center; border-bottom: 1px solid #e2e8f0; white-space: nowrap;
}
table.compare-table thead th:first-child { text-align: left; color: #718096; font-weight: 700; }
table.compare-table thead th.codey-col { background: linear-gradient(135deg, #61aeee, #2f74c8); color: #fff; }
table.compare-table tbody td { padding: 14px 18px; border-bottom: 1px solid #edf2f7; color: #4a5568; text-align: center; vertical-align: middle; }
table.compare-table tbody td:first-child { text-align: left; color: #2d3748; font-weight: 600; }
table.compare-table tbody tr:last-child td { border-bottom: none; }
table.compare-table tbody td.codey-cell { background: rgba(97, 174, 238, 0.06); color: #2f74c8; font-weight: 700; }
.compare-yes { color: #2f7a4d; font-weight: 800; font-size: 16px; }
.compare-no  { color: #cbd5e0; font-weight: 700; font-size: 16px; }
.compare-note { color: #718096; font-size: 12.5px; font-style: italic; }
.compare-footnote { max-width: 1080px; margin: 22px auto 0; font-size: 12px; color: #a0aec0; text-align: center; line-height: 1.6; padding: 0 12px; }

/* ---- When-to-use cards (vergelijkingspagina) ---- */
.when-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; max-width: 900px; margin: 0 auto; }
.when-card { background: #f7fafc; border: 1px solid #e2e8f0; border-radius: 16px; padding: 30px; }
.when-card.codey { background: #fff; border-color: #61aeee; box-shadow: 0 10px 30px -12px rgba(47,116,200,0.25); }
.when-card h3 { margin: 0 0 14px; font-size: 1.25rem; font-weight: 800; color: #2d3748; }
.when-card ul { margin: 0; padding-left: 20px; color: #4a5568; line-height: 1.7; }

/* ---- Footer met kolommen ---- */
footer.seo-footer { border-top: 1px solid #e2e8f0; padding: 60px 20px 40px; background: #fff; color: #718096; }
.footer-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 30px; max-width: 1100px; margin: 0 auto 40px; text-align: left; }
.footer-col h4 { color: #2d3748; font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; margin: 0 0 14px; }
.footer-col a { display: block; color: #718096; text-decoration: none; font-size: 14px; margin: 0 0 9px; transition: color 0.2s; }
.footer-col a:hover { color: #2f74c8; }
.footer-bottom { text-align: center; border-top: 1px solid #edf2f7; padding-top: 26px; max-width: 1100px; margin: 0 auto; }
.footer-bottom a { color: #718096; text-decoration: none; margin: 0 12px; font-size: 13px; }
.footer-bottom a:hover { color: #2f74c8; }
.footer-copyright { margin-top: 14px; font-size: 12px; color: #a0aec0; }

/* ---- Responsive ---- */
@media(max-width: 900px) {
    .landing-nav { padding: 20px; }
    .nav-links { gap: 18px; }
    .nav-links a { font-size: 11px; }
}
@media(max-width: 768px) {
    .hero-title { font-size: 2.4rem; }
    .landing-nav { flex-direction: column; gap: 15px; }
    .nav-links { flex-wrap: wrap; justify-content: center; }
    .cta-group { flex-direction: column; align-items: center; }
    .btn-lg { width: 100%; }
    .section-header h2 { font-size: 1.85rem; }
    .seo-prose h2 { font-size: 1.7rem; }
    .cta-band h2 { font-size: 1.7rem; }
}
