/* ================================================================
   LETSELSCHADEGRATISCLAIMEN.NL - Practical, Conversion-focused
   Color: Teal/Green for trust and action
   Font: Inter + Outfit
   ================================================================ */

:root {
    --primary: #0d9488;
    --primary-dark: #0f766e;
    --primary-light: #14b8a6;
    --secondary: #1e293b;
    --accent: #f59e0b;
    --accent-light: #fbbf24;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --background: #f8fafc;
    --surface: #ffffff;
    --surface-alt: #f1f5f9;
    --text: #1e293b;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --transition: 0.2s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text);
    background: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--secondary);
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 1.25rem; }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-top: 2.5rem; margin-bottom: 1.25rem; }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); margin-top: 2rem; margin-bottom: 1rem; }
h4 { font-size: 1.25rem; margin-top: 1.5rem; margin-bottom: 0.75rem; }

p {
    margin-bottom: 1.25rem;
}

ul, ol {
    margin-bottom: 1.5rem;
    padding-left: 1.75rem;
}

li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

li:last-child {
    margin-bottom: 0;
}

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

a:hover {
    color: var(--primary-dark);
}

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

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-dark);
    color: white;
    padding: 8px 16px;
    z-index: 1000;
    transition: top var(--transition);
    font-weight: 600;
}

.skip-link:focus {
    top: 0;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-sm {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ================================================================
   HEADER
   ================================================================ */

.header {
    background: var(--surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-top {
    background: var(--secondary);
    color: white;
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

.header-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.header-top a {
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.header-top a:hover {
    color: var(--primary-light);
}

.header-main {
    padding: 1rem 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--secondary);
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.nav-main {
    display: none;
}

@media (min-width: 1024px) {
    .nav-main {
        display: flex;
        gap: 0.5rem;
    }
}

.nav-main a {
    padding: 0.75rem 1rem;
    color: var(--text);
    font-weight: 500;
    border-radius: var(--radius);
    transition: all var(--transition);
}

.nav-main a:hover {
    background: var(--surface-alt);
    color: var(--primary);
}

.nav-main a.active {
    background: var(--primary);
    color: white;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-phone {
    display: none;
}

@media (min-width: 768px) {
    .header-phone {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }

    .header-phone-label {
        font-size: 0.75rem;
        color: var(--text-muted);
    }

    .header-phone-number {
        font-family: 'Outfit', sans-serif;
        font-weight: 700;
        font-size: 1.125rem;
        color: var(--primary);
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 4px 14px 0 rgb(13 148 136 / 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgb(13 148 136 / 0.45);
    color: white;
}

.btn-secondary {
    background: var(--surface);
    color: var(--text);
    border: 2px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent) 0%, #d97706 100%);
    color: white;
    box-shadow: 0 4px 14px 0 rgb(245 158 11 / 0.35);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgb(245 158 11 / 0.45);
    color: white;
}

.btn-lg {
    padding: 1.125rem 2rem;
    font-size: 1.0625rem;
}

.btn-sm {
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
}

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

@media (min-width: 1024px) {
    .mobile-toggle {
        display: none;
    }
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--secondary);
    border-radius: 2px;
    transition: all var(--transition);
}

/* ================================================================
   HERO SECTION
   ================================================================ */

.hero {
    background: linear-gradient(135deg, var(--secondary) 0%, #0f172a 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    opacity: 0.1;
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .hero {
        padding: 5rem 0;
    }

    .hero-inner {
        grid-template-columns: 1.1fr 0.9fr;
    }
}

.hero-content {
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero h1 {
    color: white;
    margin-bottom: 1.5rem;
}

.hero h1 span {
    color: var(--primary-light);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.hero-stat {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat-value {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-light);
}

.hero-stat-label {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.25rem;
}

.hero-form {
    background: var(--surface);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-xl);
}

.hero-form-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.hero-form-subtitle {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    transition: all var(--transition);
    font-family: inherit;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgb(13 148 136 / 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-hint {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* ================================================================
   TRUST BAR
   ================================================================ */

.trust-bar {
    background: var(--surface);
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
}

.trust-items {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

@media (min-width: 768px) {
    .trust-items {
        gap: 3rem;
    }
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.9375rem;
}

.trust-item svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
    flex-shrink: 0;
}

.trust-item strong {
    color: var(--text);
}

/* ================================================================
   SECTIONS
   ================================================================ */

.section {
    padding: 5rem 0;
}

.section-alt {
    background: var(--surface-alt);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.section-title {
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.125rem;
}

/* ================================================================
   CARDS
   ================================================================ */

.card-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .card-grid-2 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .card-grid-3 { grid-template-columns: repeat(3, 1fr); }
    .card-grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
    background: var(--surface);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    border: 1px solid var(--border);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.card-text {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.card-link {
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.card-link svg {
    transition: transform var(--transition);
}

.card-link:hover svg {
    transform: translateX(4px);
}

/* ================================================================
   CALCULATOR PREVIEW
   ================================================================ */

.calc-preview {
    background: linear-gradient(135deg, var(--secondary) 0%, #0f172a 100%);
    border-radius: var(--radius-2xl);
    padding: 3rem;
    color: white;
}

.calc-preview-inner {
    display: grid;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .calc-preview-inner {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }
}

.calc-preview h2 {
    color: white;
}

.calc-preview-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    margin: 1rem 0 1.5rem;
}

.calc-widget {
    background: var(--surface);
    border-radius: var(--radius-xl);
    padding: 2rem;
    color: var(--text);
}

/* ================================================================
   STEPS
   ================================================================ */

.steps {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .steps {
        grid-template-columns: repeat(4, 1fr);
    }
}

.step {
    position: relative;
    padding: 2rem;
    background: var(--surface);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    text-align: center;
}

.step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 auto 1.25rem;
}

.step-title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.step-text {
    color: var(--text-muted);
    font-size: 0.9375rem;
}

/* ================================================================
   FAQ
   ================================================================ */

.faq-list {
    display: grid;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    transition: all var(--transition);
}

.faq-question:hover {
    background: var(--surface-alt);
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--primary);
    transition: transform var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-muted);
    display: none;
}

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

/* ================================================================
   CTA SECTION
   ================================================================ */

.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 4rem 0;
    text-align: center;
    color: white;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-section .btn-primary {
    background: white;
    color: var(--primary);
    box-shadow: 0 4px 14px 0 rgb(0 0 0 / 0.2);
}

.cta-section .btn-primary:hover {
    background: var(--surface-alt);
}

/* ================================================================
   FOOTER
   ================================================================ */

.footer {
    background: var(--secondary);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: white;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.footer-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: white;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--primary-light);
    margin-top: 2px;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links a:hover {
    color: white;
}

/* ================================================================
   CLAIM WIDGET (floating)
   ================================================================ */

.claim-widget {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 90;
}

.claim-widget-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    box-shadow: 0 8px 30px rgb(13 148 136 / 0.4);
    transition: all var(--transition);
    border: none;
    cursor: pointer;
}

.claim-widget-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgb(13 148 136 / 0.5);
}

.claim-widget-btn svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 767px) {
    .claim-widget-btn span {
        display: none;
    }

    .claim-widget-btn {
        width: 56px;
        height: 56px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }
}

/* ================================================================
   ARTICLE STYLES
   ================================================================ */

.article-hero {
    background: linear-gradient(135deg, var(--secondary) 0%, #0f172a 100%);
    padding: 3rem 0;
    color: white;
}

@media (min-width: 768px) {
    .article-hero {
        padding: 4rem 0;
    }
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.5);
}

.article-hero h1 {
    color: white;
    max-width: 800px;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1.5rem;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
}

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

.article-body {
    max-width: 800px;
}

.article-body h2 {
    margin-top: 3rem;
    margin-bottom: 1.25rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.article-body h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.article-body h3 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.article-body p {
    margin-bottom: 1.5rem;
    color: var(--text);
    line-height: 1.8;
}

.article-body ul,
.article-body ol {
    margin-bottom: 1.75rem;
    padding-left: 1.75rem;
}

.article-body li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.article-body li:last-child {
    margin-bottom: 0;
}

.article-body blockquote {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--surface-alt);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.article-body table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
}

.article-body th,
.article-body td {
    padding: 0.875rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.article-body th {
    background: var(--surface-alt);
    font-weight: 600;
}

.article-body tr:hover td {
    background: var(--surface-alt);
}

/* ================================================================
   UTILITIES
   ================================================================ */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.hidden { display: none; }

@media (max-width: 767px) {
    .hide-mobile { display: none; }
}

@media (min-width: 768px) {
    .hide-desktop { display: none; }
}

/* ================================================================
   CALCULATOR HERO (Unique to this site)
   ================================================================ */

.calc-hero {
    background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
    padding: 3rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.calc-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.calc-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.calc-hero-inner {
    display: grid;
    gap: 2.5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .calc-hero-inner {
        grid-template-columns: 1fr 1.1fr;
        gap: 4rem;
    }
}

.calc-hero-text {
    color: white;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.hero-label::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.calc-hero h1 {
    color: white;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
    line-height: 1.15;
}

.calc-hero-text > p {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
}

.trust-badge svg {
    color: #10b981;
}

/* Calculator Widget */
.calculator-widget {
    background: white;
    border-radius: var(--radius-2xl);
    padding: 0;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.35);
    overflow: hidden;
}

.calc-header {
    background: linear-gradient(135deg, var(--secondary) 0%, #0f172a 100%);
    color: white;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.calc-header h2 {
    color: white;
    font-size: 1.25rem;
    margin: 0;
}

.calc-header p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin: 0;
}

.calc-progress {
    height: 4px;
    background: var(--border);
}

.calc-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    transition: width 0.4s ease;
}

.calc-form {
    padding: 2rem;
}

.calc-step {
    display: none;
}

.calc-step.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

.calc-label {
    display: block;
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--secondary);
    margin-bottom: 1.25rem;
    font-family: 'Outfit', sans-serif;
}

.calc-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

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

.calc-option input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.calc-option-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.25rem 1rem;
    background: var(--surface-alt);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    font-weight: 500;
    color: var(--text);
    min-height: 80px;
}

.calc-options.vertical .calc-option-box {
    flex-direction: row;
    justify-content: flex-start;
    min-height: auto;
    padding: 1rem 1.25rem;
}

.calc-option-box svg {
    color: var(--primary);
}

.calc-option input:checked + .calc-option-box {
    background: rgba(13, 148, 136, 0.1);
    border-color: var(--primary);
    color: var(--primary-dark);
}

.calc-option-box:hover {
    border-color: var(--primary-light);
    background: rgba(13, 148, 136, 0.05);
}

.calc-contact .form-group {
    margin-bottom: 1rem;
}

.calc-contact .form-input {
    font-size: 1.0625rem;
    padding: 1rem 1.25rem;
}

.calc-privacy {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.calc-nav {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.calc-nav .btn {
    flex: 1;
}

.calc-prev {
    flex: 0 0 auto !important;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* Calculator Result */
.calc-result {
    padding: 2.5rem;
    text-align: center;
}

.result-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.calc-result h3 {
    font-size: 1.25rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.result-amount {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
}

.result-amount::before {
    content: '€';
    font-size: 1.5rem;
    opacity: 0.7;
}

.result-sep {
    color: var(--text-light);
    font-weight: 400;
}

.calc-result > p {
    color: var(--text-muted);
    max-width: 320px;
    margin: 0 auto;
}

/* ================================================================
   STATS BAR
   ================================================================ */

.stats-bar {
    background: var(--surface);
    padding: 2rem 0;
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.1) 0%, rgba(13, 148, 136, 0.05) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.stat-content {
    min-width: 0;
}

.stat-value {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* ================================================================
   HOW IT WORKS - Timeline
   ================================================================ */

.how-it-works {
    background: var(--surface);
}

.steps-timeline {
    display: grid;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .steps-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .steps-timeline {
        grid-template-columns: repeat(4, 1fr);
    }
}

.step-item {
    position: relative;
    text-align: center;
    padding: 1.5rem;
}

.step-item .step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    margin: 0 auto 1.25rem;
    box-shadow: 0 8px 20px rgba(13, 148, 136, 0.3);
}

.step-item .step-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.step-item .step-content p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ================================================================
   DAMAGE GRID
   ================================================================ */

.damage-grid {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .damage-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .damage-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.damage-card {
    background: var(--surface);
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    border: 1px solid var(--border);
    transition: all 0.2s ease;
}

.damage-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.damage-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.15) 0%, rgba(13, 148, 136, 0.05) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 1.25rem;
}

.damage-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.damage-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.damage-range {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 0.375rem 0.875rem;
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 600;
}

.damage-range::before {
    content: '€ ';
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ================================================================
   FAQ GRID (2 columns)
   ================================================================ */

.faq-grid {
    display: grid;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.faq-grid .faq-item {
    height: fit-content;
}

.faq-grid .faq-question {
    font-size: 0.9375rem;
}

.faq-grid .faq-answer {
    font-size: 0.9rem;
}

/* ================================================================
   CTA SECTION (enhanced)
   ================================================================ */

.cta-section .cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.btn-white {
    background: white;
    color: var(--primary-dark);
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    font-weight: 600;
}

.btn-white:hover {
    background: var(--surface-alt);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.cta-phone {
    margin-top: 1.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

.cta-phone a {
    color: white;
    font-weight: 700;
    text-decoration: underline;
}

/* ================================================================
   CALCULATOR MODULE
   ================================================================ */

.calculator-module {
    background: var(--surface);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    max-width: 600px;
    margin: 0 auto;
}

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

.calc-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.calc-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.calc-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.calc-step {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.calc-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
}

.calc-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.calc-options-small {
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 480px) {
    .calc-options {
        grid-template-columns: 1fr;
    }
}

.calc-option {
    cursor: pointer;
}

.calc-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.calc-option-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--surface-alt);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    text-align: center;
    min-height: 80px;
}

.calc-option-box svg {
    width: 24px;
    height: 24px;
    stroke: var(--text-muted);
    transition: stroke var(--transition);
}

.calc-option-box span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text);
}

.calc-option input:checked + .calc-option-box {
    border-color: var(--primary);
    background: rgba(var(--primary), 0.05);
}

.calc-option input:checked + .calc-option-box svg {
    stroke: var(--primary);
}

.calc-option:hover .calc-option-box {
    border-color: var(--primary-light);
}

/* Slider */
.calc-slider-wrapper {
    padding: 0.5rem 0;
}

.calc-slider {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: var(--border);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: transform var(--transition);
}

.calc-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.calc-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    border: none;
    box-shadow: var(--shadow);
}

.calc-slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.calc-slider-value {
    text-align: center;
    margin-top: 0.75rem;
    font-size: 0.95rem;
    color: var(--text);
}

.calc-slider-value strong {
    color: var(--primary);
    font-size: 1.25rem;
}

/* Submit button */
.calc-submit {
    margin-top: 1rem;
}

.calc-submit svg {
    width: 20px;
    height: 20px;
    margin-right: 0.5rem;
    animation: spin 2s linear infinite;
    animation-play-state: paused;
}

.calc-submit:hover svg {
    animation-play-state: running;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Results */
.calc-result {
    text-align: center;
}

.calc-result-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--success);
    font-weight: 600;
    margin-bottom: 1rem;
}

.calc-result-header svg {
    width: 24px;
    height: 24px;
}

.calc-result-amount {
    margin-bottom: 1.5rem;
}

.amount-range {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.amount-min,
.amount-max {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.amount-sep {
    font-size: 1.5rem;
    color: var(--text-muted);
}

.calc-result-breakdown {
    background: var(--surface-alt);
    border-radius: var(--radius-lg);
    padding: 1rem;
    margin-bottom: 1rem;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.breakdown-item:not(:last-child) {
    border-bottom: 1px solid var(--border);
}

.calc-result-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.calc-cta {
    width: 100%;
}

.calc-cta svg {
    width: 20px;
    height: 20px;
    margin-left: 0.5rem;
}

/* ================================================================
   CLAIM PAGE STYLES
   ================================================================ */

.claim-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 4rem 0;
    min-height: auto;
}

.claim-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 968px) {
    .claim-hero-inner {
        grid-template-columns: 1fr;
    }
}

.claim-hero-content {
    color: white;
}

.claim-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-xl);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.claim-badge svg {
    width: 18px;
    height: 18px;
}

.claim-hero-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.claim-hero-content h1 span {
    color: var(--accent);
}

.claim-subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.claim-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.benefit-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--accent);
}

/* Claim Form */
.claim-form-wrapper {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-xl);
}

.claim-form-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.claim-form-header h2 {
    font-size: 1.5rem;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.claim-form-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.claim-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 500px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
}

.form-input,
.form-select,
.form-textarea {
    padding: 0.875rem 1rem;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color var(--transition), box-shadow var(--transition);
    background: white;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 20px;
    padding-right: 2.5rem;
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-checkbox {
    flex-direction: row;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--primary);
}

.checkbox-label a {
    color: var(--primary);
    text-decoration: underline;
}

.claim-submit {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.claim-submit svg {
    width: 20px;
    height: 20px;
    margin-right: 0.5rem;
}

.form-disclaimer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    justify-content: center;
    margin-top: 1rem;
}

.form-disclaimer svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    stroke: var(--success);
}

/* Trust Section */
.claim-trust {
    background: var(--surface-alt);
    padding: 3rem 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.trust-item {
    padding: 1rem;
}

.trust-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.trust-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Claim FAQ */
.claim-faq {
    padding: 4rem 0;
    background: white;
}

.claim-faq h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: var(--text);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

.faq-item {
    background: var(--surface-alt);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
}

.faq-item h3 {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.faq-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Calculator Section on homepage */
.calculator-section {
    background: var(--surface-alt);
    padding: 4rem 0;
}

.calculator-section .container {
    max-width: 700px;
}

.calculator-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.calculator-section .section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* ============================================================================
   MISSING CRITICAL LAYOUT CLASSES - PRODUCTION FIX
   ============================================================================ */

/* Content Layout Classes */
.content-main {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.content-grid.two-column {
    grid-template-columns: 2fr 1fr;
}

/* Legal Content Styling */
.legal-content {
    line-height: 1.8;
    color: var(--text);
}

.legal-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content h3 {
    margin-top: 1.75rem;
    margin-bottom: 1rem;
    font-size: 1.15rem;
    color: var(--text);
}

.legal-content ul {
    margin-bottom: 1.75rem;
    padding-left: 2rem;
    line-height: 1.8;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Call-to-Action Box */
.cta-box {
    background: var(--surface-alt);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    margin: 2rem 0;
    border-left: 4px solid var(--accent);
}

.cta-box h3 {
    margin-bottom: 0.5rem;
    color: var(--text);
}

.cta-box p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.cta-box .btn {
    margin: 0 0.5rem;
}

/* Highlight/Info Box */
.highlight-box {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.1) 0%, rgba(201, 162, 39, 0.05) 100%);
    border-left: 4px solid var(--accent);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin: 1.5rem 0;
}

.highlight-box h4 {
    color: var(--accent);
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.highlight-box p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.95rem;
}

/* Contact Info Grid */
.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.contact-item {
    background: var(--surface-alt);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
}

.contact-item h3 {
    margin-top: 0;
    margin-bottom: 1rem;
}

.contact-item p {
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.contact-item a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Steps Container - Stappenplannen */
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.step-card {
    background: var(--surface-alt);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
    border-top: 4px solid var(--accent);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--accent);
    color: var(--text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.step-content h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.step-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

/* Process Steps (flat design) */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.step {
    background: var(--surface-alt);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
}

.step h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

.step p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* Page Hero - Stappenplannen */
.page-hero.howto-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark, #0d1b2a) 100%);
    color: white;
    padding: 3rem 0;
    min-height: auto;
}

.page-hero.howto-hero h1 {
    color: white;
    margin-bottom: 0.5rem;
}

.page-hero.howto-hero .hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

/* Content + Sidebar Layout */
.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .content-grid {
        grid-template-columns: 2fr 1fr;
    }

    .content-main {
        padding-right: 2rem;
    }

    .content-sidebar {
        position: sticky;
        top: 2rem;
    }
}

/* Sidebar Card */
.sidebar-card {
    background: var(--surface-alt);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border-top: 4px solid var(--accent);
}

.sidebar-card h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.sidebar-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.sidebar-card .btn {
    width: 100%;
    margin-bottom: 1rem;
}

.sidebar-phone {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.sidebar-phone a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
}

/* Success Page Specific */
.success-wait-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    text-align: left;
}

.success-wait-section h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: white;
}

.success-wait-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
    list-style-type: disc;
}

.success-wait-section li {
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.success-wait-section p {
    margin-top: 1rem;
    opacity: 0.9;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .content-main {
        padding: 0 1rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .steps-container {
        grid-template-columns: 1fr;
    }

    .step-card {
        padding: 1.5rem;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

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

/* ========== CALCULATOR PAGES & MISSING COMPONENTS ========== */

/* Content Intro Spacing */
.content-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.content-intro p {
    margin: 0;
}

/* Calculator Grid Layout */
.calculator-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

/* Calculator Cards */
.calculator-card {
    background: var(--surface-alt);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.calculator-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--accent);
}

.calculator-card.featured {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    grid-column: 1 / -1;
}

.calculator-card.featured h2 {
    color: white;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.calculator-card.featured p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.calculator-card.featured .calc-features li {
    color: rgba(255, 255, 255, 0.9);
}

.calculator-card h2,
.calculator-card h3 {
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.calculator-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
    line-height: 1.6;
}

/* Calculator Icons */
.calc-icon {
    width: 48px;
    height: 48px;
    background: var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1rem;
}

.calculator-card.featured .calc-icon {
    background: rgba(255, 255, 255, 0.2);
}

.calc-icon svg {
    width: 28px;
    height: 28px;
}

/* Features List */
.calc-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.calc-features li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: var(--text);
    font-size: 0.95rem;
}

.calc-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    margin-right: 0.5rem;
}

.calculator-card.featured .calc-features li:before {
    color: rgba(255, 255, 255, 0.9);
}

/* Info Box */
.info-box {
    background: var(--surface-alt);
    border-left: 4px solid var(--accent);
    padding: 2rem;
    border-radius: var(--radius-md);
    margin: 3rem 0;
}

.info-box h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--primary);
}

.info-box p {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    margin: 3rem 0;
}

.cta-section h2 {
    color: white;
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* CTA Buttons Container */
.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.cta-buttons .btn {
    min-width: 200px;
}

/* ========== EMOJI & TEXT SPACING FIXES ========== */

/* Fix emoji spacing by adding letter-spacing and preventing collapse */
p, h1, h2, h3, h4, h5, h6, li, label, a {
    /* Ensure emojis have space around them */
    word-break: break-word;
    overflow-wrap: break-word;
}

/* Specific emoji spacing in lists */
ul li, ol li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    word-spacing: 0.1em;
}

/* Check mark lists (✓ style) */
.check-list li:before {
    content: "✓ ";
    color: var(--accent);
    font-weight: bold;
    margin-right: 0.25rem;
}

/* Button emoji spacing */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Paragraph with emoji spacing */
p {
    margin-bottom: 1rem;
}

p + h2, p + h3, p + h4 {
    margin-top: 2rem;
}

/* FAQ Section Fixes */
.faq-accordion {
    background: var(--surface-alt);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid var(--border-light);
    padding: 2rem;
    cursor: pointer;
    transition: background var(--transition);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item:hover {
    background: var(--surface);
}

.faq-item h3,
.faq-item h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 600;
}

.faq-item p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ========== RESPONSIVE FIXES ========== */
@media (max-width: 768px) {
    .calculator-card.featured {
        grid-column: 1;
    }

    .calculator-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

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

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

    .content-intro {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}

    .page-hero.howto-hero {
        padding: 2rem 0;
    }

    .legal-content ul {
        padding-left: 1.5rem;
    }
}
