/* Gratis Claim - Clean, Local-Focused Design */
/* Typography: DM Sans + Space Grotesk */
/* Colors: Clean blues, whites, minimal accents */

:root {
    /* PRIMARY - Trust & Professional */
    --primary-blue: #1E3A5F;        /* Navy - authority, trust */
    --primary-blue-light: #2C5282;  /* Lighter navy */
    --primary-blue-dark: #1B3353;   /* Darker navy */
    --primary: #1E3A5F;             /* Keep for backward compatibility */
    --primary-dark: #1B3353;
    --primary-light: #2C5282;

    /* GREY SCALE - Text & Subtle Elements */
    --primary-grey: #374151;        /* Charcoal - primary text */
    --secondary-grey: #6B7280;      /* Medium grey - secondary text */
    --secondary: #374151;           /* Keep for backward compatibility */
    --secondary-light: #6B7280;

    /* CTA COLORS - Action & Conversion */
    --cta-red: #DC2626;             /* Primary CTAs (21% better conversion) */
    --cta-red-hover: #B91C1C;       /* Red hover state */
    --cta-yellow: #F59E0B;          /* Secondary CTAs, accents */
    --cta-yellow-hover: #D97706;    /* Yellow hover state */

    /* Legacy accent mapping to new CTA colors */
    --accent: #DC2626;
    --accent-dark: #B91C1C;

    /* BACKGROUNDS - Calm & Clean */
    --bg-white: #ffffff;
    --bg-light: #F9FAFB;            /* Very light grey */
    --bg-subtle: #F3F4F6;           /* Light grey sections */

    /* TEXT - High Contrast */
    --text: #1F2937;                /* Almost black for body text */
    --text-dark: #1F2937;
    --text-secondary: #6B7280;      /* Medium grey */
    --text-muted: #9CA3AF;          /* Light grey */
    --text-light: #D1D5DB;          /* Very light grey */

    /* BORDERS */
    --border: #E5E7EB;
    --border-light: #F3F4F6;

    /* SUPPORT COLORS */
    --success: #10B981;             /* Green for confirmations */

    /* SHADOWS */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* TYPOGRAPHY - Professional & Authority */
    --font-heading: 'Merriweather', Georgia, serif;
    --font-body: 'Montserrat', 'Segoe UI', sans-serif;

    /* SPACING */
    --header-height: 72px;

    /* RADIUS */
    --radius-sm: 6px;
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 18px; /* Larger for stressed users - better readability */
    line-height: 1.7;
    color: var(--text);
    background: var(--bg-white);
}

/* Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 0 0 var(--radius) 0;
    font-weight: 600;
    z-index: 100;
    transition: top 0.3s;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-top: 0;
    margin-bottom: 1.25rem;
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    margin-top: 3rem;
    margin-bottom: 1.25rem;
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

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

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.4;
    text-decoration: none;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary {
    background: var(--cta-red);
    color: white;
}

.btn-primary:hover {
    background: var(--cta-red-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--bg-subtle);
    color: var(--secondary);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--bg-light);
    border-color: var(--text-muted);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

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

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

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

/* =====================================================
   HEADER
===================================================== */
/* ===== MODERN HEADER DESIGN ===== */

.header-modern {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--bg-white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

/* Trust Bar - Top Section */
.header-top {
    background: var(--primary-blue);
    padding: 0.75rem 0;
}

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

.header-trust-bar {
    display: flex;
    gap: 2rem;
    color: white;
    font-size: 0.875rem;
}

.trust-item {
    display: flex;
    align-items: center;
    font-weight: 500;
}

/* Prominent Phone Number - Red CTA */
.header-phone-prominent {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1.5rem;
    background: var(--cta-red);
    color: white;
    border-radius: 6px;
    font-weight: 700;
    transition: background 0.2s, transform 0.2s;
}

.header-phone-prominent:hover {
    background: var(--cta-red-hover);
    transform: translateY(-1px);
}

.header-phone-prominent svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.phone-content {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.phone-number {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.phone-subtitle {
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.9;
    line-height: 1;
}

/* Main Header - Navigation Section */
.header-main {
    padding: 1rem 0;
    background: var(--bg-white);
}

.header-main-inner {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Modern Logo */
.logo-modern {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-blue);
    font-family: var(--font-heading);
}

.logo-modern .logo-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
}

.logo-modern strong {
    color: var(--cta-red);
}

/* Modern Navigation */
.nav-modern {
    display: flex;
    gap: 2rem;
    margin-left: auto;
}

.nav-modern a {
    color: var(--primary-grey);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color 0.2s;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.nav-modern a:hover {
    color: var(--cta-red);
    border-bottom-color: var(--cta-red);
}

/* Red CTA Button */
.btn-cta-red {
    padding: 0.75rem 1.5rem;
    background: var(--cta-red);
    color: white;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-cta-red:hover {
    background: var(--cta-red-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.25);
}

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

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary-grey);
    transition: all 0.3s;
}

/* Sticky Scroll Behavior */
.header-modern.scrolled .header-top {
    display: none;
}

.header-modern.scrolled .header-main {
    padding: 0.75rem 0;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .header-trust-bar {
        gap: 1rem;
        font-size: 0.75rem;
    }

    .trust-item:last-child {
        display: none;
    }

    .phone-subtitle {
        display: none;
    }

    .header-phone-prominent {
        padding: 0.5rem 1rem;
    }

    .nav-modern {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .logo-modern {
        font-size: 1.25rem;
    }
}

@media (max-width: 640px) {
    .header-trust-bar {
        font-size: 0.7rem;
        gap: 0.75rem;
    }

    .trust-item:nth-child(2) {
        display: none;
    }

    .header-phone-prominent {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }
}

/* Mobile Navigation Menu Active State */
@media (max-width: 968px) {
    .nav-modern.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        padding: 1.5rem;
        gap: 0;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        border-top: 1px solid var(--border);
    }

    .nav-modern.active a {
        padding: 1rem;
        border-bottom: 1px solid var(--border-light);
        border-bottom-color: transparent;
    }

    .nav-modern.active a:hover {
        background: var(--bg-light);
        border-bottom-color: transparent;
    }
}

@media (max-width: 768px) {
    .nav-main {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--bg-white);
        padding: 1rem;
        flex-direction: column;
        gap: 0;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-lg);
    }

    .nav-main.active {
        display: flex;
    }

    .nav-main a {
        padding: 0.75rem 1rem;
        display: block;
        border-bottom: 1px solid var(--border-light);
    }

    .header-phone {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }
}

/* =====================================================
   HERO SECTION
===================================================== */
.hero {
    padding: calc(var(--header-height) + 4rem) 0 4rem;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary-dark);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
}

.hero h1 {
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

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

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 520px;
}

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

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.hero-feature svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
}

/* Hero Form */
.hero-form-wrapper {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
}

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

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

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

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

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--text);
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

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

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

    .hero-form-wrapper {
        max-width: 500px;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }

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

/* =====================================================
   TRUST BAR
===================================================== */
.trust-bar {
    padding: 1.5rem 0;
    background: var(--secondary);
}

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

.trust-item-value {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.trust-item-label {
    font-size: 0.875rem;
    color: var(--text-light);
}

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

    .trust-item-value {
        font-size: 1.5rem;
    }
}

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

/* =====================================================
   SECTIONS
===================================================== */
.section {
    padding: 5rem 0;
}

.section-light {
    background: var(--bg-light);
}

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

.section-label {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary-dark);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

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

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

/* =====================================================
   CARDS
===================================================== */
.card-grid {
    display: grid;
    gap: 1.5rem;
}

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

.card-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.card-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

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

@media (max-width: 600px) {
    .card-grid-2,
    .card-grid-3,
    .card-grid-4 {
        grid-template-columns: 1fr;
    }
}

.card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: all 0.3s ease;
}

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

a.card {
    display: block;
}

.card-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-blue);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1.25rem;
}

.card-icon svg {
    width: 24px;
    height: 24px;
}

.card-title {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--secondary);
}

.card-text {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Location Card */
.location-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.location-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.location-card h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--secondary);
}

.location-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

/* =====================================================
   PROCESS SECTION
===================================================== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 28px;
    right: -1rem;
    width: calc(100% - 56px);
    height: 2px;
    background: var(--border);
    transform: translateX(50%);
}

.process-number {
    width: 56px;
    height: 56px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.process-step h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

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

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

    .process-step:not(:last-child)::after {
        display: none;
    }
}

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

/* =====================================================
   CITIES SECTION
===================================================== */
.cities-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.city-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: all 0.2s;
}

.city-tag:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.city-tag svg {
    width: 14px;
    height: 14px;
    color: var(--primary);
}

/* =====================================================
   FAQ SECTION
===================================================== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    overflow: hidden;
}

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

.faq-question:hover {
    color: var(--primary);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s;
}

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

.faq-answer {
    display: none;
    padding: 0 1.5rem 1.25rem;
}

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

.faq-answer p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin: 0;
}

/* =====================================================
   CTA SECTION
===================================================== */
.cta-section {
    padding: 5rem 0;
    background: var(--primary-blue) 100%);
    text-align: center;
}

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

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

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

.cta-section .btn-primary {
    background: white;
    color: var(--primary-dark);
}

.cta-section .btn-primary:hover {
    background: var(--bg-light);
}

.cta-section .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.cta-section .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* =====================================================
   FOOTER
===================================================== */
.footer {
    background: var(--secondary);
    padding: 4rem 0 2rem;
}

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

.footer-brand p {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin-top: 1rem;
    line-height: 1.7;
}

.footer-brand .logo {
    color: white;
}

.footer-brand .logo-icon {
    background: var(--primary);
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.25rem;
}

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

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

.footer-links a {
    color: var(--text-light);
    font-size: 0.9375rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--secondary-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.footer-bottom a {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.footer-bottom a:hover {
    color: var(--primary-light);
}

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

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* =====================================================
   CLAIM WIDGET (Floating)
===================================================== */
.claim-widget {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 999;
}

.claim-widget-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: var(--primary);
    color: white;
    border-radius: var(--radius-full);
    font-weight: 600;
    box-shadow: var(--shadow-xl);
    transition: all 0.3s ease;
}

.claim-widget-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

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

@media (max-width: 768px) {
    .claim-widget {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
    }

    .claim-widget-btn {
        width: 100%;
        justify-content: center;
    }
}

/* =====================================================
   MAP HERO - Unique Local-Focused Design
===================================================== */

/* ===== MODERN ASYMMETRIC HERO (60/40) ===== */

.hero-modern-asymmetric {
    padding: calc(var(--header-height) + 4rem) 0 5rem;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.hero-content-asymmetric {
    display: grid;
    grid-template-columns: 1.5fr 1fr; /* 60/40 split */
    gap: 4rem;
    align-items: center;
}

/* Left Side - Main Content */
.hero-main {
    max-width: 640px;
}

.hero-badge-subtle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(220, 38, 38, 0.08);
    color: var(--cta-red);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-badge-subtle svg {
    width: 16px;
    height: 16px;
}

.hero-main h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.highlight-red {
    color: var(--cta-red);
    position: relative;
}

.hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--secondary-grey);
    margin-bottom: 2.5rem;
    max-width: 540px;
}

/* PROMINENT POSTCODE SEARCH */
.postcode-search-prominent {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border: 2px solid var(--cta-red);
    margin-bottom: 2rem;
}

.postcode-search-prominent label {
    display: block;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.search-bar-large {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    background: var(--bg-light);
    padding: 0.5rem;
    border-radius: 8px;
}

.search-bar-large svg {
    margin-left: 0.5rem;
    color: var(--text-muted);
    flex-shrink: 0;
}

.search-bar-large input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 1rem;
    padding: 0.75rem;
    outline: none;
    color: var(--text);
}

.search-bar-large input::placeholder {
    color: var(--text-muted);
}

.btn-search-red {
    padding: 0.75rem 1.5rem;
    background: var(--cta-red);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.btn-search-red:hover {
    background: var(--cta-red-hover);
}

.search-hint {
    font-size: 0.875rem;
    color: var(--secondary-grey);
    margin-top: 0.75rem;
    margin-bottom: 0;
}

/* TRUST STATS - SIMPLE */
.hero-trust-inline {
    display: flex;
    gap: 2.5rem;
}

.trust-stat {
    display: flex;
    flex-direction: column;
}

.trust-stat strong {
    font-size: 2rem;
    font-weight: 700;
    color: var(--cta-red);
    line-height: 1;
}

.trust-stat span {
    font-size: 0.875rem;
    color: var(--secondary-grey);
    margin-top: 0.25rem;
}

/* RIGHT SIDE - CONTACT CARD */
.hero-visual-simple {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-card-contact {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    text-align: center;
}

.hero-card-contact h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin: 0 0 0.75rem 0;
}

.hero-card-contact > p {
    color: var(--secondary-grey);
    margin: 0 0 1.5rem 0;
}

.btn-phone-large {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1.25rem;
    background: var(--cta-yellow);
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 8px;
    transition: background 0.2s;
}

.btn-phone-large:hover {
    background: var(--cta-yellow-hover);
}

.hero-card-contact small {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
}

.divider-or {
    position: relative;
    text-align: center;
    margin: 1.5rem 0;
    color: var(--secondary-grey);
    font-size: 0.875rem;
}

.divider-or::before,
.divider-or::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: var(--bg-subtle);
}

.divider-or::before { left: 0; }
.divider-or::after { right: 0; }

.btn-cta-red-large {
    display: block;
    width: 100%;
    padding: 1.25rem;
    background: var(--cta-red);
    color: white;
    font-weight: 600;
    font-size: 1.125rem;
    border-radius: 8px;
    text-align: center;
    transition: background 0.2s;
}

.btn-cta-red-large:hover {
    background: var(--cta-red-hover);
}

/* CERTIFICATION BADGES */
.hero-certifications {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cert-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    border: 1px solid var(--border);
}

.cert-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1;
}

.cert-desc {
    font-size: 0.75rem;
    color: var(--secondary-grey);
    margin-top: 0.25rem;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .hero-content-asymmetric {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-main h1 {
        font-size: 2.5rem;
    }

    .hero-trust-inline {
        gap: 1.5rem;
    }

    .trust-stat strong {
        font-size: 1.5rem;
    }
}

@media (max-width: 640px) {
    .search-bar-large {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-search-red {
        width: 100%;
    }

    .hero-trust-inline {
        flex-wrap: wrap;
        gap: 1rem;
    }
}

/* OLD MAP HERO - Keep for backward compatibility */
.map-hero {
    padding: calc(var(--header-height) + 3rem) 0 4rem;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    position: relative;
    overflow: hidden;
}

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

@media (max-width: 1024px) {
    .map-hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.map-hero-text {
    max-width: 560px;
}

.coverage-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

/* Pulse animation removed - too AI-generated */

.coverage-count {
    font-weight: 700;
    color: var(--primary);
}

.map-hero h1 {
    font-size: clamp(2.25rem, 5vw, 3.25rem);
    color: var(--secondary);
    margin-bottom: 1.25rem;
    line-height: 1.15;
}

.map-hero h1 .highlight {
    color: var(--primary);
    position: relative;
}

.map-hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 8px;
    background: rgba(14, 165, 233, 0.2);
    z-index: -1;
}

.map-hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Postcode Search */
.postcode-search {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 480px) {
    .postcode-search {
        flex-direction: column;
    }
}

.postcode-input-wrapper {
    flex: 1;
    position: relative;
}

.postcode-input-wrapper svg {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: var(--text-muted);
}

.postcode-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    font-size: 1rem;
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    background: white;
    transition: all 0.2s;
}

.postcode-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
}

.btn-search {
    padding: 1rem 1.75rem;
    white-space: nowrap;
}

.btn-search svg {
    width: 18px;
    height: 18px;
}

.search-hints {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    font-size: 0.875rem;
}

.search-hints span {
    color: var(--text-muted);
}

.search-hints a {
    color: var(--primary);
    font-weight: 500;
    transition: color 0.2s;
}

.search-hints a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Map Visual */
.map-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.netherlands-map {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.map-svg {
    width: 100%;
    height: auto;
}

.map-shape {
    fill: rgba(14, 165, 233, 0.1);
    stroke: var(--primary);
    stroke-width: 2;
    filter: drop-shadow(0 4px 12px rgba(14, 165, 233, 0.15));
}

.map-dots .dot-active {
    fill: var(--primary);
    animation: dot-pulse 3s infinite;
}

.map-dots .dot-active:nth-child(2) { animation-delay: 0.3s; }
.map-dots .dot-active:nth-child(3) { animation-delay: 0.6s; }
.map-dots .dot-active:nth-child(4) { animation-delay: 0.9s; }
.map-dots .dot-active:nth-child(5) { animation-delay: 1.2s; }
.map-dots .dot-active:nth-child(6) { animation-delay: 1.5s; }
.map-dots .dot-active:nth-child(7) { animation-delay: 1.8s; }
.map-dots .dot-active:nth-child(8) { animation-delay: 2.1s; }
.map-dots .dot-active:nth-child(9) { animation-delay: 2.4s; }
.map-dots .dot-active:nth-child(10) { animation-delay: 2.7s; }

/* Dot-pulse and float animations removed - too AI-generated */

/* Map Info Cards - Simplified (no floating animation) */
.map-info-card {
    position: absolute;
    background: white;
    border-radius: var(--radius-lg);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.map-info-card.card-1 {
    top: 10%;
    right: -10%;
}

.map-info-card.card-2 {
    bottom: 30%;
    left: -15%;
}

.map-info-card.card-3 {
    bottom: 5%;
    right: 5%;
}

.info-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.info-icon svg {
    width: 20px;
    height: 20px;
}

.info-text {
    display: flex;
    flex-direction: column;
}

.info-value {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary);
}

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

@media (max-width: 768px) {
    .map-info-card {
        position: static;
        margin: 0.5rem;
    }

    .netherlands-map {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    .map-svg {
        display: none;
    }
}

/* =====================================================
   REGIONS SECTION
===================================================== */

.regions-section {
    padding: 5rem 0;
    background: white;
}

.regions-header {
    text-align: center;
    margin-bottom: 3rem;
}

.regions-header h2 {
    margin-bottom: 0.75rem;
}

.regions-header p {
    color: var(--text-secondary);
    font-size: 1.0625rem;
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

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

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

.region-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.region-card:hover {
    background: white;
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.region-icon {
    width: 44px;
    height: 44px;
    background: var(--primary-blue));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.region-icon svg {
    width: 22px;
    height: 22px;
}

.region-info {
    flex: 1;
    min-width: 0;
}

.region-info h3 {
    font-size: 1rem;
    color: var(--secondary);
    margin-bottom: 0.25rem;
}

.region-cities {
    font-size: 0.8125rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.region-count {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    background: rgba(16, 185, 129, 0.1);
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

/* =====================================================
   PROMISE SECTION
===================================================== */

.promise-section {
    padding: 4rem 0;
    background: var(--secondary);
}

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

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

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

.promise-card {
    text-align: center;
    padding: 2rem 1.5rem;
}

.promise-icon {
    width: 56px;
    height: 56px;
    background: rgba(14, 165, 233, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.promise-icon svg {
    width: 26px;
    height: 26px;
    color: var(--primary-light);
}

.promise-card h3 {
    font-size: 1rem;
    color: white;
    margin-bottom: 0.75rem;
}

.promise-card p {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* =====================================================
   CITIES SECTION
===================================================== */

.cities-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

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

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

.city-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.2s ease;
}

.city-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.city-card:hover .city-arrow {
    transform: translateX(4px);
}

.city-name {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--secondary);
}

.city-name svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

.city-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.city-experts {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.city-arrow {
    color: var(--primary);
    transition: transform 0.2s;
}

.city-arrow svg {
    width: 16px;
    height: 16px;
}

/* =====================================================
   HELP SECTION
===================================================== */

.help-section {
    padding: 5rem 0;
    background: white;
}

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

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

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

.help-card {
    display: block;
    padding: 2rem;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s ease;
}

.help-card:hover {
    background: white;
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.help-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-blue));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: white;
}

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

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

.help-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* =====================================================
   CONTACT SECTION
===================================================== */

.contact-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #ecfdf5 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 968px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.contact-info h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.contact-info > p {
    color: var(--text-secondary);
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.contact-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 2rem;
    transition: color 0.2s;
}

.contact-phone:hover {
    color: var(--primary-dark);
}

.contact-phone svg {
    width: 24px;
    height: 24px;
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.contact-feature svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
}

.contact-form-wrapper {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

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

.contact-form .form-row .form-group {
    margin-bottom: 0;
}

.contact-form .btn {
    width: 100%;
    margin-top: 0.5rem;
}

/* =====================================================
   UTILITY CLASSES
===================================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

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

/* =====================================================
   ARTICLE PAGES
===================================================== */
.article-header {
    padding: calc(var(--header-height) + 3rem) 0 3rem;
    background: var(--bg-light);
}

.article-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

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

.article-content .container {
    max-width: 800px;
}

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

.article-content h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.article-content p {
    margin-bottom: 1.25rem;
}

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

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

/* =====================================================
   ERROR PAGES
===================================================== */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.error-code {
    font-family: var(--font-heading);
    font-size: 8rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 1rem;
}

.error-page h1 {
    margin-bottom: 1rem;
}

.error-page p {
    max-width: 500px;
    margin: 0 auto 2rem;
}

/* ================================================================
   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;
}

/* Spin animation removed - too AI-generated */

/* 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: var(--primary-blue) 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;
}

/* ============================================================
   TEAM PAGE STYLES
   ============================================================ */

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

.team-member {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.member-info h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.member-title {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.member-education {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.member-description {
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.member-expertise {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.member-expertise strong {
    color: var(--text-secondary);
    display: block;
    margin-bottom: 0.5rem;
}

.member-expertise ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.member-expertise ul li {
    padding: 0.25rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.member-expertise ul li:before {
    content: "✓ ";
    color: var(--accent);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Certifications Section */
.certifications-section {
    margin: 4rem 0;
    padding: 3rem 0;
    background: var(--bg-light);
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.cert-card {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
    box-shadow: var(--shadow-sm);
}

.cert-card h4 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.cert-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Values Section */
.values-section {
    margin: 4rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    background: var(--bg-subtle);
    padding: 1.5rem;
    border-radius: var(--radius);
    transition: transform 0.2s ease;
}

.value-card:hover {
    transform: translateY(-2px);
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
}

.value-card h3 {
    color: var(--secondary);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.value-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Specializations Section */
.specializations-section {
    margin: 4rem 0;
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.spec-item {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.spec-item h4 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.spec-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.spec-item ul li {
    padding: 0.4rem 0;
    font-size: 0.9rem;
}

.spec-item ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.spec-item ul li a:hover {
    color: var(--primary);
}

/* Testimonials Section */
.testimonials-section {
    margin: 4rem 0;
    padding: 3rem 0;
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    border-top: 3px solid var(--accent);
}

.testimonial-text {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.testimonial-rating {
    color: var(--accent);
    font-size: 1.1rem;
}

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

.cta-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .team-grid,
    .cert-grid,
    .values-grid,
    .spec-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

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

    .cta-buttons .btn {
        width: 100%;
    }
}
/* SPACING FIXES - Consistente marges en padding */

/* Headings - Consistente spacing */
h1, h2, h3, h4, h5, h6 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

/* Eerste heading na section start heeft geen top margin nodig */
.section h1:first-child,
.section h2:first-child,
.content-main h1:first-child,
.content-main h2:first-child,
.page-hero h1 {
    margin-top: 0;
}

/* H2 specifiek */
h2 {
    margin-top: 3rem;
    margin-bottom: 1.25rem;
}

/* H3 specifiek */
h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* H4 specifiek */
h4 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

/* Content sections - Consistente padding */
.content-main {
    padding-right: 2rem;
}

.content-main > *:first-child {
    margin-top: 0;
}

.content-main > *:last-child {
    margin-bottom: 0;
}

/* Paragrafen na headings - kleinere spacing */
h1 + p,
h2 + p,
h3 + p,
h4 + p {
    margin-top: 0.5rem;
}

/* Lists - Consistente spacing */
ul, ol {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

ul li, ol li {
    margin-bottom: 0.5rem;
}

/* Sections - Consistente padding */
.section {
    padding: 4rem 0;
}

.section:first-of-type {
    padding-top: 2rem;
}

/* Content grid - Betere spacing */
.content-grid {
    gap: 3rem;
    margin-top: 2rem;
}

/* Intro text - Consistente spacing */
.intro-text {
    margin-bottom: 3rem;
}

.intro-text p:first-child {
    font-size: 1.125rem;
    line-height: 1.7;
}

/* FAQ items - Consistente spacing */
.faq-item {
    margin-bottom: 1.5rem;
}

.faq-item h4,
.faq-item h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
}

/* Info tables - Spacing */
.info-table {
    margin: 2rem 0;
}

.info-table table {
    margin: 0;
}

/* CTA boxes - Consistente spacing */
.cta-box {
    margin: 4rem 0;
    padding: 3rem 2rem;
}

.cta-box h2,
.cta-box h3 {
    margin-top: 0;
    margin-bottom: 1rem;
}

/* Sidebar - Consistente spacing */
.content-sidebar {
    padding-left: 0;
}

.sidebar-card {
    margin-bottom: 2rem;
    padding: 1.5rem;
}

.sidebar-card:last-child {
    margin-bottom: 0;
}

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

/* Related links - Spacing */
.related-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

/* Stats grid - Spacing */
.stats-grid {
    gap: 2rem;
    margin: 2rem 0;
}

/* Responsive spacing adjustments */
@media (max-width: 768px) {
    h1, h2, h3, h4 {
        margin-top: 1.5rem;
    }

    h2 {
        margin-top: 2rem;
    }

    .section {
        padding: 3rem 0;
    }

    .container {
        padding: 0 1rem;
    }

    .content-main {
        padding-right: 0;
    }

    .cta-box {
        padding: 2rem 1.5rem;
        margin: 3rem 0;
    }
}

/* ============================================
   MODERN ARTICLE GRID LAYOUTS
   ============================================ */

/* Article Grid - Responsive grid voor content cards */
.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

/* Article Card - Moderne cards met hover effecten */
.article-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 140px;
}

.article-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-blue));
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.article-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--cta-red);
}

.article-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--secondary);
    margin: 0 0 0.75rem 0;
    line-height: 1.3;
    transition: color 0.2s ease;
}

.article-card:hover h3 {
    color: var(--primary);
}

.article-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

/* Kennisbank Intro - Betere spacing */
.kennisbank-intro,
.stappenplan-intro {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.05), rgba(14, 165, 233, 0.02));
    border-left: 3px solid var(--primary);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 3rem;
}

.kennisbank-intro p,
.stappenplan-intro p {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text);
    margin: 0;
}

/* Step Box - Voor stappenplannen */
.step-box {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin: 2rem 0;
    position: relative;
    padding-left: 5rem;
}

.step-number {
    position: absolute;
    left: 2rem;
    top: 2rem;
    width: 48px;
    height: 48px;
    background: var(--primary-blue));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
}

.step-box h3 {
    margin-top: 0;
    color: var(--secondary);
    font-size: 1.25rem;
}

.step-box h4 {
    color: var(--text);
    font-size: 1rem;
    margin-top: 1.5rem;
}

/* Responsive aanpassingen */
@media (max-width: 768px) {
    .article-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 1rem;
    }
    
    .article-card {
        padding: 1.5rem;
        min-height: 120px;
    }
    
    .kennisbank-intro,
    .stappenplan-intro {
        padding: 1.25rem 1.5rem;
    }
    
    .step-box {
        padding: 1.5rem;
        padding-top: 5rem;
        padding-left: 1.5rem;
    }
    
    .step-number {
        left: 50%;
        top: 1.5rem;
        transform: translateX(-50%);
    }
}

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

/* Category Headers - Moderne section headers */
.kennisbank-intro + h2,
.section h2:first-of-type {
    position: relative;
    padding-bottom: 0.75rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.kennisbank-intro + h2::after,
.section h2:first-of-type::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-blue));
    border-radius: 2px;
}


/* FAQ List as Grid - Moderne grid layout voor FAQ items */
.faq-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.25rem;
    margin: 2rem 0;
    list-style: none;
    padding: 0;
}

.faq-list .faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: all 0.3s ease;
    display: block;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.faq-list .faq-item::after {
    content: '→';
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 1.25rem;
    color: var(--primary);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.faq-list .faq-item:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 16px -6px rgba(14, 165, 233, 0.25);
}

.faq-list .faq-item:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.faq-list .faq-item h3 {
    font-size: 1.0625rem;
    color: var(--secondary);
    margin: 0 0 0.5rem 0;
    padding-right: 2rem;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.faq-list .faq-item:hover h3 {
    color: var(--primary);
}

.faq-list .faq-item p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/* FAQ Intro en andere intro styling */
.faq-intro,
.schade-intro {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.05), rgba(14, 165, 233, 0.02));
    border-left: 3px solid var(--primary);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 3rem;
}

.faq-intro p,
.schade-intro p {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text);
    margin: 0;
}

/* Category descriptions onder h2 */
.section h2 + p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin-top: -0.5rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .faq-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .faq-intro,
    .schade-intro {
        padding: 1.25rem 1.5rem;
    }
}


/* =====================================================
   MOBILE STICKY CTA - High Conversion
===================================================== */

.mobile-cta-sticky {
    display: none;
}

@media (max-width: 768px) {
    .mobile-cta-sticky {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
        padding: 0.75rem;
        background: white;
        box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
        z-index: 999;
        border-top: 1px solid var(--border);
    }

    .btn-mobile-call {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        padding: 1rem;
        background: var(--cta-yellow);
        color: white;
        font-weight: 700;
        border-radius: 8px;
        font-size: 1rem;
        transition: background 0.2s;
    }

    .btn-mobile-call:hover {
        background: var(--cta-yellow-hover);
    }

    .btn-mobile-call svg {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
    }

    .btn-mobile-claim {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1rem;
        background: var(--cta-red);
        color: white;
        font-weight: 700;
        border-radius: 8px;
        font-size: 1rem;
        text-align: center;
        transition: background 0.2s;
    }

    .btn-mobile-claim:hover {
        background: var(--cta-red-hover);
    }

    /* Add padding to body so content doesn't hide behind sticky CTA */
    body {
        padding-bottom: 80px;
    }
}

/* =====================================================
   PROVINCE GRID - Multi-column Layout
===================================================== */

.province-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2.5rem 0;
}

.province-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: box-shadow 0.2s;
}

.province-card:hover {
    box-shadow: var(--shadow-md);
}

.province-card h3 {
    font-size: 1.25rem;
    color: var(--primary-blue);
    margin: 0 0 1rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--cta-red);
}

.city-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.city-list li {
    margin: 0;
}

.city-list a {
    display: block;
    padding: 0.5rem 0.75rem;
    color: var(--text);
    font-size: 0.9375rem;
    border-radius: var(--radius);
    transition: all 0.2s;
    border-left: 3px solid transparent;
}

.city-list a:hover {
    background: var(--bg-light);
    border-left-color: var(--cta-red);
    color: var(--primary-blue);
    transform: translateX(4px);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .province-grid {
        grid-template-columns: 1fr;
    }
    
    .city-list {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 769px) and (max-width: 1200px) {
    .province-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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