/* VERITÄT — shared stylesheet (extracted from launch one-pager, extended for multi-page site) */

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

:root {
    --navy: #1a365d;
    --indigo: #5b21b6;
    --emerald: #10b981;
    --grey: #78716c;
    --charcoal: #2d2d2d;
    --offwhite: #f5f5f5;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--offwhite);
    color: var(--charcoal);
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Inter', 'Poppins', -apple-system, sans-serif;
    font-weight: 700;
    color: var(--navy);
}

h1 { font-size: 32px; margin-bottom: 16px; }
h2 { font-size: 24px; margin-bottom: 12px; }
h3 { font-size: 20px; margin-bottom: 10px; }

.tagline { font-size: 16px; color: var(--grey); font-weight: 400; margin-bottom: 24px; }
.container { max-width: 1200px; margin: 0 auto; }
.container-narrow { max-width: 820px; margin: 0 auto; }

/* HEADER / NAV */
header {
    background: var(--navy);
    color: white;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    flex-wrap: wrap;
    gap: 16px;
}

header .logo {
    font-family: 'Inter', 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

header .logo-mark { width: 30px; height: 30px; flex: none; }
header .logo-text { display: flex; flex-direction: column; }

header .logo-tag {
    font-size: 11px;
    font-weight: 400;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.5px;
}

header nav { display: flex; gap: 26px; align-items: center; flex-wrap: wrap; }
header nav a { color: white; text-decoration: none; font-size: 15px; transition: opacity 0.2s; }
header nav a.lang-switch { background: var(--emerald); color: white; font-weight: 700; padding: 8px 14px; border-radius: 6px; font-size: 14px; }
header nav a.lang-switch:hover { opacity: 0.9; }
header nav a:hover { opacity: 0.8; }
header nav a.active { border-bottom: 2px solid var(--emerald); padding-bottom: 2px; }

/* BUTTONS */
.btn {
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    transition: all 0.2s;
}
.btn-primary { background: var(--navy); color: white; }
.btn-primary:hover { background: #0f1f3d; box-shadow: 0 4px 12px rgba(26, 54, 93, 0.3); }
.btn-secondary { background: transparent; color: var(--indigo); border: 2px solid var(--indigo); }
.btn-secondary:hover { background: var(--indigo); color: white; }
.btn-nav { border: 1px solid white; color: white; padding: 8px 18px; border-radius: 6px; }

/* HERO */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, #14294a 100%);
    color: white;
    padding: 80px 40px;
    text-align: center;
}
.hero h1 { color: white; font-size: 48px; margin-bottom: 12px; }
.hero .tagline { color: rgba(255,255,255,0.9); font-size: 18px; margin-bottom: 32px; }
.hero p { font-size: 18px; margin-bottom: 32px; color: rgba(255,255,255,0.95); max-width: 640px; margin-left: auto; margin-right: auto; }
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero .btn-primary { background: white; color: var(--navy); font-weight: 700; }
.hero .btn-primary:hover { background: #f0f0f0; }
.hero .btn-secondary { border-color: white; color: white; }
.hero .btn-secondary:hover { background: white; color: var(--navy); }

/* Page hero (inner pages) */
.page-hero { background: var(--navy); color: white; padding: 48px 40px; text-align: center; }
.page-hero h1 { color: white; font-size: 36px; margin-bottom: 8px; }
.page-hero p { color: rgba(255,255,255,0.85); max-width: 640px; margin: 0 auto; }

/* SECTIONS */
.section-title { background: var(--navy); color: white; padding: 24px; margin: 40px 0 0 0; border-radius: 8px 8px 0 0; }
.section-title h2 { color: white; margin: 0; }
.section-content { background: white; padding: 40px; border-radius: 0 0 8px 8px; margin: 0 20px 40px 20px; }
.section-plain { padding: 48px 20px; }

/* SERVICE CARDS */
.services { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; margin-top: 40px; }
.card { background: white; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.08); transition: transform 0.2s, box-shadow 0.2s; display: flex; flex-direction: column; }
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 16px rgba(0,0,0,0.12); }
.card-header { background: var(--navy); color: white; padding: 16px; font-weight: 700; display: flex; align-items: center; gap: 10px; }
.card-header::before { content: ''; width: 4px; height: 4px; background: var(--emerald); border-radius: 50%; display: inline-block; }
.card-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { margin-bottom: 16px; }
.card-body ul { list-style: none; margin-bottom: 20px; }
.card-body li { padding: 8px 0; display: flex; align-items: flex-start; gap: 10px; }
.card-body li::before { content: '✓'; color: var(--emerald); font-weight: 700; font-size: 18px; }
.card-price { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 16px; margin-top: auto; }
.card .btn { width: 100%; text-align: center; }

/* PROCESS STEPS */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin-top: 32px; }
.step { background: white; border-radius: 8px; padding: 24px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.step .step-number { width: 36px; height: 36px; border-radius: 50%; background: var(--emerald); color: white; font-weight: 700; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }

/* TRUST STRIP */
.trust-strip { background: white; border-left: 4px solid var(--emerald); padding: 32px; margin: 40px 20px; border-radius: 0 6px 6px 0; box-shadow: 0 2px 8px rgba(0,0,0,0.08); }

/* BLOG */
.blog-card { background: white; border-radius: 8px; padding: 24px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); margin-bottom: 24px; }
.blog-card .blog-meta { font-size: 12px; color: var(--grey); margin-bottom: 8px; }
.blog-card a.blog-title { color: var(--navy); text-decoration: none; }
.blog-card a.blog-title:hover { text-decoration: underline; }

/* ARTICLE / PROSE (blog posts, legal pages) */
.prose { background: white; border-radius: 8px; padding: 48px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); margin: 40px 20px; }
.prose h2 { margin-top: 36px; }
.prose h3 { margin-top: 24px; }
.prose p, .prose ul, .prose ol { margin-bottom: 16px; }
.prose ul, .prose ol { padding-left: 24px; }
.prose li { margin-bottom: 6px; }
.prose a { color: var(--indigo); }
.prose blockquote { border-left: 4px solid var(--emerald); padding: 12px 20px; background: var(--offwhite); border-radius: 0 6px 6px 0; margin-bottom: 16px; color: var(--grey); font-size: 14px; }
.prose hr { border: none; height: 1px; background: #e0e0e0; margin: 32px 0; }
.prose .table-wrap { overflow-x: auto; margin-bottom: 16px; }
.prose table { border-collapse: collapse; width: 100%; font-size: 14px; }
.prose th, .prose td { border: 1px solid #e0e0e0; padding: 10px 14px; text-align: left; vertical-align: top; }
.prose th { background: var(--offwhite); color: var(--navy); }
.doc-meta { font-size: 13px; color: var(--grey); margin-bottom: 24px; }

/* FAQ */
.faq-item { background: white; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); margin-bottom: 12px; }
.faq-item summary { cursor: pointer; padding: 18px 24px; font-weight: 700; color: var(--navy); font-family: 'Inter', sans-serif; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--emerald); font-size: 22px; font-weight: 700; }
.faq-item[open] summary::after { content: '–'; }
.faq-item .faq-answer { padding: 0 24px 20px 24px; }
.faq-item .faq-answer p, .faq-item .faq-answer ul { margin-bottom: 12px; }
.faq-item .faq-answer ul { padding-left: 22px; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-details a { color: var(--navy); font-weight: 700; text-decoration: none; }
.contact-details p { margin-bottom: 16px; }
.contact-form { display: flex; flex-direction: column; gap: 12px; }
.contact-form input, .contact-form textarea { padding: 12px 14px; border: 1px solid #d6d3d1; border-radius: 6px; font-family: inherit; font-size: 14px; }
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form button { align-self: flex-start; }
.form-privacy-note { font-size: 12px; color: var(--grey); }
.form-privacy-note a { color: var(--indigo); }

/* CTA BLOCK */
.cta-block { background: var(--navy); color: white; border-radius: 8px; padding: 40px; text-align: center; margin: 40px 20px; }
.cta-block h2 { color: white; }
.cta-block p { color: rgba(255,255,255,0.9); margin-bottom: 20px; }
.cta-block .btn-primary { background: white; color: var(--navy); }

/* FOOTER */
footer { background: var(--navy); color: white; padding: 40px; text-align: center; margin-top: 60px; }
.footer-links { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; margin: 16px 0; }
.footer-links a { color: rgba(255,255,255,0.9); text-decoration: none; font-size: 13px; }
.footer-links a:hover { text-decoration: underline; }
.footer-legal { font-size: 12px; opacity: 0.7; margin-top: 16px; }

.divider { height: 1px; background: #e0e0e0; margin: 40px 0; }

@media (max-width: 768px) {
    header { flex-direction: column; gap: 16px; padding: 20px; }
    header nav { justify-content: center; gap: 16px; }
    .hero { padding: 48px 20px; }
    .hero h1 { font-size: 32px; }
    .page-hero { padding: 36px 20px; }
    .page-hero h1 { font-size: 28px; }
    .contact-grid { grid-template-columns: 1fr; }
    .section-content { padding: 24px; margin: 0 12px 32px 12px; }
    .prose { padding: 24px; margin: 24px 12px; }
}
