/*
Theme Name: Finadvies Haarlem
Theme URI: https://financieelsparrenhaarlem.nl
Author: Finadvies Haarlem Ondernemers
Author URI: https://financieelsparrenhaarlem.nl
Description: Professioneel WordPress thema voor financieel advies voor ondernemers in Haarlem. Modern paars/blauw design met lead generation focus.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: finadvies-haarlem
Tags: one-column, two-columns, custom-menu, featured-images, theme-options, translation-ready, business, portfolio
*/

/* ============================================
   Finadvies Haarlem Ondernemers - Stylesheet
   Modern Purple/Blue Gradient Theme
   ============================================ */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Playfair+Display:wght@500;600;700&display=swap');

/* CSS Variables */
:root {
    /* Primary Colors - Purple/Blue */
    --primary-purple: #6366f1;
    --primary-purple-dark: #4f46e5;
    --primary-purple-light: #818cf8;
    
    /* Secondary - Deep Blue */
    --secondary-blue: #1e1b4b;
    --secondary-blue-light: #312e81;
    
    /* Accent Colors */
    --accent-pink: #ec4899;
    --accent-cyan: #06b6d4;
    --accent-violet: #8b5cf6;
    
    /* Gradient Colors */
    --gradient-start: #fdf4ff;
    --gradient-mid: #fae8ff;
    --gradient-end: #e0e7ff;
    --gradient-blue: #dbeafe;
    
    /* Neutrals */
    --grey-50: #fafafa;
    --grey-100: #f4f4f5;
    --grey-200: #e4e4e7;
    --grey-300: #d4d4d8;
    --grey-400: #a1a1aa;
    --grey-500: #71717a;
    --grey-600: #52525b;
    --grey-700: #3f3f46;
    --grey-800: #27272a;
    --grey-900: #18181b;
    
    /* Backgrounds */
    --bg-light: #faf5ff;
    --bg-white: #ffffff;
    --bg-gradient: linear-gradient(180deg, #fdf4ff 0%, #fae8ff 25%, #e0e7ff 50%, #dbeafe 75%, #f0f9ff 100%);
    
    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --section-padding: 6rem 0;
    --section-padding-mobile: 4rem 0;
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --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);
    --shadow-purple: 0 10px 40px rgba(99, 102, 241, 0.3);
    --shadow-glow: 0 0 40px rgba(139, 92, 246, 0.15);
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--grey-800);
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
}

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

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: var(--grey-600);
}

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

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

/* ============================================
   Navigation
   ============================================ */
.navbar {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    padding: 0.75rem 0;
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    text-decoration: none;
}

.navbar-brand .brand-name {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-blue);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.navbar-brand .brand-tagline {
    font-size: 0.7rem;
    color: var(--grey-500);
    font-weight: 500;
}

.navbar-nav .nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--grey-600);
    padding: 0.5rem 1.25rem;
    position: relative;
    transition: var(--transition-smooth);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1.25rem;
    right: 1.25rem;
    height: 2px;
    background: var(--primary-purple);
    transform: scaleX(0);
    transition: var(--transition-smooth);
    border-radius: 1px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.current-menu-item > a,
.navbar-nav .current_page_item > a {
    color: var(--secondary-blue);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.btn-nav-cta {
    background: var(--primary-purple);
    color: var(--bg-white) !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-purple);
}

.btn-nav-cta:hover {
    background: var(--primary-purple-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(99, 102, 241, 0.4);
}

.btn-nav-cta::after {
    display: none !important;
}

/* WordPress Menu Styles */
.navbar-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.navbar-nav li {
    list-style: none;
}

.navbar-nav li a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--grey-600);
    padding: 0.5rem 1.25rem;
    display: block;
    transition: var(--transition-smooth);
}

.navbar-nav li a:hover,
.navbar-nav li.current-menu-item > a,
.navbar-nav li.current_page_item > a {
    color: var(--secondary-blue);
}

/* ============================================
   Hero Section - Gradient Background
   ============================================ */
.hero {
    background: linear-gradient(180deg, 
        #fdf4ff 0%, 
        #fae8ff 20%, 
        #f3e8ff 40%,
        #e0e7ff 60%, 
        #dbeafe 80%,
        #e0f2fe 100%
    );
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, 
        rgba(186, 230, 253, 0.4) 0%,
        transparent 100%
    );
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(139, 92, 246, 0.2);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--grey-700);
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
}

.hero-badge::before {
    content: '✨';
}

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

.hero .lead {
    color: var(--grey-600);
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.hero-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.hero-benefits li {
    color: var(--grey-700);
    padding: 0.5rem 1rem;
    padding-left: 2rem;
    position: relative;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50px;
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.hero-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0.75rem;
    color: var(--primary-purple);
    font-weight: bold;
}

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

.hero-image {
    position: relative;
    z-index: 3;
    margin-top: 4rem;
}

.hero-image-wrapper {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-xl);
}

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

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    display: block;
    font-family: var(--font-body);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-blue);
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--grey-500);
    margin-top: 0.5rem;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    font-family: var(--font-body);
    font-weight: 600;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    text-decoration: none;
}

.btn-primary {
    background: var(--primary-purple);
    color: var(--bg-white);
    box-shadow: var(--shadow-purple);
}

.btn-primary:hover {
    background: var(--primary-purple-dark);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
    color: var(--bg-white);
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--grey-700);
    border: 1px solid var(--grey-300);
}

.btn-secondary:hover {
    background: var(--grey-50);
    border-color: var(--grey-400);
    color: var(--grey-800);
}

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

.btn-outline:hover {
    background: var(--primary-purple);
    color: var(--bg-white);
    transform: translateY(-2px);
}

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

.btn-arrow::after {
    content: '→';
    transition: var(--transition-smooth);
}

.btn-arrow:hover::after {
    transform: translateX(5px);
}

/* ============================================
   Sections
   ============================================ */
section {
    padding: var(--section-padding);
    position: relative;
}

.section-light {
    background: linear-gradient(180deg, #faf5ff 0%, #f5f3ff 100%);
}

.section-gradient {
    background: linear-gradient(180deg, #f5f3ff 0%, #ede9fe 50%, #e0e7ff 100%);
}

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

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

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--grey-600);
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-purple);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
    padding: 0.4rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 50px;
}

/* ============================================
   Target Audience Section
   ============================================ */
.audience-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    height: 100%;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.audience-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.audience-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-purple-light) 0%, var(--primary-purple) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.25);
}

.audience-card h4 {
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--secondary-blue);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.audience-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.7;
}

/* ============================================
   Services/Packages Section
   ============================================ */
.package-card {
    background: var(--bg-white);
    border-radius: 24px;
    padding: 2.5rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.package-card.featured {
    border: 2px solid var(--primary-purple);
    background: linear-gradient(180deg, var(--bg-white) 0%, #faf5ff 100%);
}

.package-card.featured::before {
    content: 'Populair';
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--primary-purple);
    color: var(--bg-white);
    padding: 0.35rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
}

.package-title {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-blue);
    margin-bottom: 0.5rem;
}

.package-subtitle {
    font-size: 0.9rem;
    color: var(--grey-500);
    margin-bottom: 1.5rem;
}

.package-price {
    margin-bottom: 1.5rem;
}

.package-price .price {
    font-family: var(--font-body);
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-blue);
    letter-spacing: -0.02em;
}

.package-price .period {
    font-size: 0.95rem;
    color: var(--grey-500);
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    flex-grow: 1;
}

.package-features li {
    padding: 0.65rem 0;
    padding-left: 1.75rem;
    position: relative;
    font-size: 0.95rem;
    color: var(--grey-700);
}

.package-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-purple);
    font-weight: bold;
}

.package-cta {
    margin-top: auto;
}

/* ============================================
   Results/Benefits Section
   ============================================ */
.benefit-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}

.benefit-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.benefit-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-purple);
    font-size: 1.5rem;
}

.benefit-content h4 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--secondary-blue);
}

.benefit-content p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.result-highlight {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--accent-violet) 100%);
    border-radius: 24px;
    padding: 3rem;
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.result-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.result-highlight h3 {
    color: var(--bg-white);
    margin-bottom: 1rem;
    position: relative;
}

.result-highlight p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    position: relative;
}

.result-stat {
    font-family: var(--font-body);
    font-size: 4rem;
    font-weight: 800;
    color: var(--bg-white);
    line-height: 1;
    letter-spacing: -0.02em;
}

/* ============================================
   Process/Steps Section
   ============================================ */
.process-steps {
    position: relative;
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--accent-violet) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--bg-white);
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-purple);
}

.process-step:not(:last-child) .step-number::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: calc(100% + 2rem);
    background: linear-gradient(to bottom, var(--primary-purple), var(--grey-300));
    border-radius: 1px;
}

.step-content {
    flex: 1;
    background: var(--bg-white);
    padding: 1.75rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.step-content p {
    margin-bottom: 0;
}

/* ============================================
   Testimonials/Success Stories
   ============================================ */
.testimonial-card {
    background: var(--bg-white);
    border-radius: 24px;
    padding: 2.5rem;
    height: 100%;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--primary-purple);
    opacity: 0.1;
    line-height: 1;
}

.testimonial-tag {
    display: inline-block;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-purple);
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.testimonial-result {
    font-family: var(--font-body);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-purple);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.testimonial-text {
    font-size: 1rem;
    font-style: italic;
    color: var(--grey-600);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: var(--secondary-blue);
}

.testimonial-role {
    font-size: 0.9rem;
    color: var(--grey-500);
}

/* ============================================
   About Section - EEAT Enhanced
   ============================================ */
.about-content {
    max-width: 800px;
}

.about-image {
    position: relative;
}

.about-photo-wrapper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-photo {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
}

.about-image-placeholder {
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
    border-radius: 24px;
    padding: 4rem;
    text-align: center;
    color: var(--grey-500);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--accent-violet) 100%);
    color: var(--bg-white);
    padding: 1.25rem 1.75rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-purple);
    z-index: 5;
}

.about-badge .number {
    display: block;
    font-family: var(--font-body);
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1;
}

.about-badge .label {
    font-size: 0.8rem;
    opacity: 0.9;
}

/* Trust Badges / Certifications */
.trust-badges {
    margin-top: 2rem;
}

.certification-badges {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.cert-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--bg-white);
    border: 2px solid var(--grey-200);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    min-width: 70px;
    transition: var(--transition-smooth);
}

.cert-badge:hover {
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.cert-badge .cert-icon {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.cert-badge .cert-text {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--secondary-blue);
    letter-spacing: 0.05em;
}

/* Author Box */
.author-box {
    position: relative;
}

.author-box .greeting {
    font-size: 1.15rem;
    color: var(--grey-700);
}

.author-box .greeting strong {
    color: var(--secondary-blue);
    font-size: 1.3rem;
}

.about-credentials {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: rgba(99, 102, 241, 0.05);
    border-radius: 16px;
    border-left: 4px solid var(--primary-purple);
}

.about-credentials h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-blue);
    margin-bottom: 1rem;
}

.credentials-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.credentials-list li {
    padding: 0.4rem 0;
    font-size: 0.95rem;
    color: var(--grey-600);
}

.credentials-list li strong {
    color: var(--grey-700);
    display: inline-block;
    min-width: 120px;
}

.about-philosophy {
    margin: 1.5rem 0;
}

.about-philosophy h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-blue);
    margin-bottom: 0.5rem;
}

.about-philosophy p {
    font-size: 0.95rem;
}

.about-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.about-links .btn-sm {
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
}

/* ============================================
   FAQ Section
   ============================================ */
.faq-item {
    background: var(--bg-white);
    border-radius: 16px;
    margin-bottom: 0.75rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

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

.faq-question:hover {
    background: #faf5ff;
}

.faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f5f3ff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    font-weight: bold;
    color: var(--primary-purple);
}

.faq-item.active .faq-icon {
    background: var(--primary-purple);
    color: var(--bg-white);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 600px;
}

.faq-answer-content {
    padding: 0 2rem 1.5rem;
    color: var(--grey-600);
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--accent-violet) 50%, var(--secondary-blue-light) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

/* ============================================
   Contact Form
   ============================================ */
.contact-form-wrapper {
    background: var(--bg-white);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--shadow-xl);
}

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

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

.form-control {
    width: 100%;
    padding: 0.85rem 1.25rem;
    border: 1px solid var(--grey-300);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
    background: var(--bg-white);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.form-control::placeholder {
    color: var(--grey-400);
}

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

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.form-check-input {
    width: 18px;
    height: 18px;
    margin-top: 0.2rem;
    accent-color: var(--primary-purple);
}

.form-check-label {
    font-size: 0.9rem;
    color: var(--grey-600);
}

.form-check-label a {
    color: var(--primary-purple);
}

/* WordPress Contact Form 7 Styles */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
    width: 100%;
    padding: 0.85rem 1.25rem;
    border: 1px solid var(--grey-300);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
    background: var(--bg-white);
}

.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 textarea:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.wpcf7 input[type="submit"] {
    background: var(--primary-purple);
    color: var(--bg-white);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-purple);
}

.wpcf7 input[type="submit"]:hover {
    background: var(--primary-purple-dark);
    transform: translateY(-2px);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--secondary-blue);
    color: rgba(255, 255, 255, 0.8);
    padding: 5rem 0 2rem;
}

.footer-brand .brand-name {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 0.5rem;
}

.footer-brand .brand-tagline {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.footer-heading {
    color: var(--bg-white);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--bg-white);
}

.footer-contact p {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.9);
}

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

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    transition: var(--transition-smooth);
}

.footer-social a:hover {
    background: var(--primary-purple);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    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);
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: var(--bg-white);
}

/* WordPress Footer Menu */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 0.65rem;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.footer-menu a:hover {
    color: var(--bg-white);
}

/* ============================================
   Page Headers (Inner Pages)
   ============================================ */
.page-header {
    background: linear-gradient(180deg, 
        #fdf4ff 0%, 
        #fae8ff 30%, 
        #e0e7ff 70%,
        #dbeafe 100%
    );
    padding: 5rem 0 4rem;
    text-align: center;
    position: relative;
}

.page-header h1 {
    color: var(--secondary-blue);
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-header p {
    color: var(--grey-600);
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto;
}

.breadcrumb {
    justify-content: center;
    margin-bottom: 1.25rem;
    list-style: none;
    padding: 0;
    display: flex;
    gap: 0.5rem;
}

.breadcrumb-item {
    font-size: 0.9rem;
}

.breadcrumb-item a {
    color: var(--grey-500);
}

.breadcrumb-item a:hover {
    color: var(--primary-purple);
}

.breadcrumb-item.active {
    color: var(--primary-purple);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '/';
    color: var(--grey-400);
    padding-right: 0.5rem;
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Blog / Kennisbank Styles
   ============================================ */

/* Category Filter */
.category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.category-filter-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--bg-white);
    border: 1px solid var(--grey-200);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--grey-600);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.category-filter-item:hover,
.category-filter-item.active {
    background: var(--primary-purple);
    border-color: var(--primary-purple);
    color: var(--bg-white);
}

.category-filter-item .count {
    background: rgba(0, 0, 0, 0.1);
    padding: 0.1rem 0.5rem;
    border-radius: 50px;
    font-size: 0.75rem;
}

.category-filter-item.active .count {
    background: rgba(255, 255, 255, 0.2);
}

/* Blog Cards */
.blog-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.blog-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
    font-size: 3rem;
}

.blog-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.blog-card-category {
    display: inline-block;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-purple);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.blog-card-category:hover {
    background: var(--primary-purple);
    color: var(--bg-white);
}

.blog-card-date {
    font-size: 0.8rem;
    color: var(--grey-500);
}

.blog-card-reading-time {
    font-size: 0.8rem;
    color: var(--grey-400);
}

.blog-card-title {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    color: var(--secondary-blue);
}

.blog-card-title a {
    color: inherit;
    text-decoration: none;
}

.blog-card-title a:hover {
    color: var(--primary-purple);
}

.blog-card-excerpt {
    font-size: 0.9rem;
    color: var(--grey-600);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--grey-100);
}

.blog-card-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-purple);
    text-decoration: none;
}

.blog-card-link:hover {
    color: var(--primary-purple-dark);
}

/* Featured Blog Card */
.blog-card-featured {
    background: var(--bg-white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-card-featured .blog-card-image {
    aspect-ratio: 4 / 3;
    border-radius: 0;
}

.blog-card-featured .blog-card-content {
    padding: 2.5rem;
}

.blog-card-featured .blog-card-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.blog-card-featured .blog-card-excerpt {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

/* Blog Pagination */
.blog-pagination {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.blog-pagination .nav-links {
    display: flex;
    gap: 0.5rem;
}

.blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 1rem;
    background: var(--bg-white);
    border: 1px solid var(--grey-200);
    border-radius: 10px;
    font-weight: 500;
    color: var(--grey-600);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
    background: var(--primary-purple);
    border-color: var(--primary-purple);
    color: var(--bg-white);
}

/* Single Article Styles */
.article-header {
    background: linear-gradient(180deg, #fdf4ff 0%, #fae8ff 50%, #e0e7ff 100%);
    padding: 4rem 0 3rem;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.article-category {
    background: var(--primary-purple);
    color: var(--bg-white);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
}

.article-date,
.article-reading-time {
    font-size: 0.9rem;
    color: var(--grey-500);
}

.article-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--secondary-blue);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.article-excerpt {
    font-size: 1.2rem;
    color: var(--grey-600);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.article-author-mini {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.article-author-mini .author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--grey-100);
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-author-mini .author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-author-mini .author-name {
    display: block;
    font-weight: 600;
    color: var(--secondary-blue);
}

.article-author-mini .author-title {
    display: block;
    font-size: 0.85rem;
    color: var(--grey-500);
}

.article-featured-image {
    margin-top: -2rem;
    margin-bottom: 2rem;
}

.article-featured-image img {
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
}

.article-content .entry-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

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

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

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

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

.article-content .entry-content li {
    margin-bottom: 0.5rem;
}

.article-content .entry-content blockquote {
    border-left: 4px solid var(--primary-purple);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--grey-600);
}

/* Article Tags */
.article-tags {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--grey-200);
}

.tags-label {
    font-size: 0.9rem;
    color: var(--grey-500);
    margin-right: 0.5rem;
}

.tag-link {
    display: inline-block;
    background: var(--grey-100);
    color: var(--grey-600);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    margin: 0.25rem;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.tag-link:hover {
    background: var(--primary-purple);
    color: var(--bg-white);
}

/* Share Buttons */
.article-share {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--grey-50);
    border-radius: 16px;
}

.share-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--grey-700);
    margin-bottom: 0.75rem;
}

.share-buttons {
    display: flex;
    gap: 0.5rem;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--bg-white);
    color: var(--grey-600);
    text-decoration: none;
    transition: var(--transition-smooth);
    border: 1px solid var(--grey-200);
}

.share-btn:hover {
    transform: translateY(-2px);
}

.share-linkedin:hover {
    background: #0077b5;
    color: var(--bg-white);
    border-color: #0077b5;
}

.share-twitter:hover {
    background: #000;
    color: var(--bg-white);
    border-color: #000;
}

.share-email:hover {
    background: var(--primary-purple);
    color: var(--bg-white);
    border-color: var(--primary-purple);
}

.share-whatsapp:hover {
    background: #25d366;
    color: var(--bg-white);
    border-color: #25d366;
}

/* Article Sidebar */
.article-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.sidebar-widget h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-blue);
    margin-bottom: 1rem;
}

.cta-widget {
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
    text-align: center;
}

.cta-widget p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Author Box Full */
.author-box-full {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background: var(--bg-white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.author-box-avatar {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--grey-100);
}

.author-box-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-box-avatar .avatar-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 2.5rem;
}

.author-box-title {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--grey-500);
    margin-bottom: 0.25rem;
}

.author-box-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-blue);
    margin-bottom: 0.5rem;
}

.author-box-bio {
    font-size: 0.95rem;
    color: var(--grey-600);
    margin-bottom: 1rem;
}

.author-box-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.author-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--primary-purple);
    text-decoration: none;
}

.author-link:hover {
    color: var(--primary-purple-dark);
}

/* Related Posts */
.related-posts-section .blog-card {
    height: auto;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 991px) {
    section {
        padding: var(--section-padding-mobile);
    }

    .hero {
        padding: 4rem 0 3rem;
        min-height: auto;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 2rem;
    }

    .process-step {
        gap: 1.5rem;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .navbar-brand .brand-tagline {
        display: none;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .hero .lead {
        font-size: 1.05rem;
    }

    .hero-benefits {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }

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

    .stat-number {
        font-size: 2rem;
    }

    .package-card {
        padding: 2rem;
    }

    .process-step {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .step-number::after {
        display: none;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

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

    .result-stat {
        font-size: 3rem;
    }
    
    /* Blog responsive */
    .blog-card-featured .row {
        flex-direction: column;
    }
    
    .blog-card-featured .blog-card-content {
        padding: 1.5rem;
    }
    
    .blog-card-featured .blog-card-title {
        font-size: 1.3rem;
    }
    
    .article-title {
        font-size: 1.75rem;
    }
    
    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .author-box-full {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .author-box-links {
        justify-content: center;
    }
    
    .article-sidebar {
        position: static;
        margin-top: 2rem;
    }
    
    .share-buttons {
        justify-content: center;
    }
}

/* ============================================
   Utility Classes
   ============================================ */
.text-purple {
    color: var(--primary-purple);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--accent-violet) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-purple {
    background-color: var(--primary-purple);
}

.mt-section {
    margin-top: 5rem;
}

.mb-section {
    margin-bottom: 5rem;
}

.w-100 {
    width: 100%;
}

/* ============================================
   Map Section & NAP Block (Local SEO)
   ============================================ */
.map-section {
    background: var(--bg-white);
}

.map-content {
    padding: 4rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.map-content h2 {
    margin-bottom: 1rem;
}

.map-content > p {
    margin-bottom: 2rem;
}

.map-embed {
    height: 100%;
    min-height: 450px;
    background: var(--grey-100);
}

.map-embed iframe {
    display: block;
}

/* NAP Block */
.nap-block {
    margin-bottom: 2rem;
}

.nap-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--grey-100);
}

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

.nap-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
    width: 30px;
    text-align: center;
}

.nap-text {
    flex: 1;
}

.nap-text strong {
    display: block;
    font-size: 0.85rem;
    color: var(--grey-500);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nap-text a {
    color: var(--secondary-blue);
    font-weight: 500;
}

.nap-text a:hover {
    color: var(--primary-purple);
}

/* Service Areas */
.service-areas {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--grey-200);
}

.service-areas strong {
    display: block;
    font-size: 0.85rem;
    color: var(--grey-500);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.area-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.area-tag {
    display: inline-block;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-purple);
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Responsive Map Section */
@media (max-width: 991px) {
    .map-content {
        padding: 2.5rem;
    }
    
    .map-section .row {
        flex-direction: column-reverse;
    }
    
    .map-embed {
        min-height: 300px;
    }
}

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    background: var(--primary-purple);
    color: var(--bg-white);
    padding: 0.75rem 1.5rem;
    z-index: 9999;
    transition: top 0.3s;
}

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

/* WordPress specific */
.alignleft {
    float: left;
    margin-right: 1.5rem;
    margin-bottom: 1rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 0.875rem;
    color: var(--grey-500);
    text-align: center;
    padding: 0.5rem 0;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

/* ============================================
   Service Landing Pages
   ============================================ */

/* Service Hero */
.service-hero,
.guide-hero {
    background: linear-gradient(180deg, #fdf4ff 0%, #fae8ff 30%, #e0e7ff 70%, #dbeafe 100%);
    padding: 4rem 0 5rem;
}

.service-hero h1,
.guide-hero h1 {
    margin-bottom: 1.5rem;
}

.service-hero .lead,
.guide-hero .lead {
    font-size: 1.2rem;
    color: var(--grey-600);
    margin-bottom: 2rem;
}

.service-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.service-benefits-list li {
    padding: 0.5rem 0;
    font-size: 1.05rem;
    color: var(--grey-700);
}

/* Service Hero Card */
.service-hero-card {
    background: var(--bg-white);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--shadow-xl);
    text-align: center;
}

.service-icon-large {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.service-hero-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.service-hero-card > p {
    color: var(--grey-500);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.service-price {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--grey-200);
}

.service-price .price {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-blue);
    line-height: 1;
}

.service-price .period {
    color: var(--grey-500);
}

.service-includes {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    text-align: left;
}

.service-includes li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.service-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-purple);
    font-weight: bold;
}

/* Problem Cards */
.problem-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.problem-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.problem-card h4 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

/* Result Cards */
.result-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.result-card .result-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-purple);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.result-card p {
    margin: 0;
    font-size: 0.95rem;
}

/* Featured Testimonial */
.testimonial-featured {
    background: var(--bg-white);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.testimonial-featured .testimonial-quote {
    font-family: var(--font-heading);
    font-size: 6rem;
    color: var(--primary-purple);
    opacity: 0.15;
    line-height: 1;
    margin-bottom: -2rem;
}

.testimonial-featured blockquote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--grey-700);
    line-height: 1.8;
    margin: 0 0 2rem;
    padding: 0;
    border: none;
}

.testimonial-author-block {
    display: flex;
    justify-content: center;
}

.testimonial-author-block .author-name {
    display: block;
    font-weight: 600;
    color: var(--secondary-blue);
}

.testimonial-author-block .author-role {
    font-size: 0.9rem;
    color: var(--grey-500);
}

/* Guide Specific */
.guide-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    color: var(--grey-500);
    font-size: 0.9rem;
}

.quick-answer-box {
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
    border-left: 4px solid var(--primary-purple);
    border-radius: 16px;
    padding: 2rem;
}

.quick-answer-box h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.toc-box {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.toc-box h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.toc-list {
    margin: 0;
    padding-left: 1.25rem;
}

.toc-list li {
    padding: 0.5rem 0;
}

.toc-list a {
    color: var(--grey-600);
}

.toc-list a:hover {
    color: var(--primary-purple);
}

/* Guide Content */
.guide-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.guide-section {
    margin-bottom: 4rem;
    padding-top: 2rem;
}

.guide-section h2 {
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--grey-100);
}

.guide-section h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* Comparison Table */
.comparison-table {
    overflow-x: auto;
    margin: 2rem 0;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.comparison-table th,
.comparison-table td {
    padding: 1rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid var(--grey-100);
}

.comparison-table th {
    background: var(--secondary-blue);
    color: var(--bg-white);
    font-weight: 600;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table .total-row {
    background: var(--grey-50);
    font-weight: 600;
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
}

.highlight-box h4 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--primary-purple);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Example Box */
.example-box {
    background: var(--grey-50);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.example-box ul {
    margin: 0.5rem 0;
    padding-left: 1.25rem;
}

/* Cons List */
.cons-list {
    padding-left: 1.25rem;
}

.cons-list li {
    padding: 0.5rem 0;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--accent-violet) 100%);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    color: var(--bg-white);
    margin-top: 2rem;
}

.cta-box h3 {
    color: var(--bg-white);
    margin-bottom: 0.75rem;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

/* Costs Table */
.costs-table {
    overflow-x: auto;
    margin: 2rem 0;
}

.costs-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.costs-table th,
.costs-table td {
    padding: 1rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid var(--grey-100);
}

.costs-table th {
    background: var(--grey-100);
    font-weight: 600;
}

.costs-table .total-row {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
}

/* Discussion List (Sparringpartner) */
.what-we-discuss {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.what-we-discuss h4 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.discussion-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.discussion-list li {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--grey-100);
}

.discussion-list li:last-child {
    border-bottom: none;
}

.discussion-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.discussion-list strong {
    display: block;
    color: var(--secondary-blue);
    margin-bottom: 0.25rem;
}

.discussion-list p {
    font-size: 0.9rem;
    margin: 0;
}

/* Check/Cross/Ideal Lists */
.check-list,
.cross-list,
.ideal-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li,
.cross-list li,
.ideal-list li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.cross-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: bold;
}

.ideal-list li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: var(--primary-purple);
}

.audience-card.ideal {
    border: 2px solid var(--primary-purple);
    background: linear-gradient(180deg, var(--bg-white) 0%, #faf5ff 100%);
}

/* Timeline Horizontal */
.timeline-horizontal {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.timeline-item {
    flex: 1;
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.timeline-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.timeline-item h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.timeline-item p {
    font-size: 0.9rem;
    margin: 0;
}

.timeline-connector {
    width: 40px;
    height: 2px;
    background: var(--grey-300);
    margin-top: 3rem;
    flex-shrink: 0;
}

/* ============================================
   Trust Bar & Social Proof
   ============================================ */

/* Trust Bar */
.trust-bar {
    background: var(--bg-white);
    border-top: 1px solid var(--grey-100);
    border-bottom: 1px solid var(--grey-100);
    padding: 1.25rem 0;
}

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

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Google Rating in Trust Bar */
.google-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.google-stars {
    display: flex;
    gap: 2px;
}

.google-stars .star {
    color: #fbbc04;
    font-size: 1.1rem;
}

.rating-text {
    font-size: 0.9rem;
    color: var(--grey-600);
}

.rating-text strong {
    color: var(--secondary-blue);
    font-weight: 700;
}

.rating-text .review-count {
    color: var(--grey-500);
}

/* Certification Badges in Trust Bar */
.trust-certs {
    display: flex;
    gap: 0.5rem;
}

.cert-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0.75rem;
    background: var(--grey-100);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--grey-600);
    letter-spacing: 0.02em;
}

.cert-badge.kvk {
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-purple);
}

/* Featured In */
.trust-featured {
    color: var(--grey-500);
    font-size: 0.85rem;
}

.featured-label {
    margin-right: 0.5rem;
}

.featured-logos {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    opacity: 0.6;
}

/* Reviews Section */
.reviews-summary {
    text-align: center;
    margin-bottom: 2rem;
}

.rating-large {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.rating-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--secondary-blue);
    line-height: 1;
}

.rating-stars-large {
    display: flex;
    gap: 4px;
}

.rating-stars-large .star {
    color: #fbbc04;
    font-size: 1.5rem;
}

.rating-source {
    font-size: 0.95rem;
    color: var(--grey-500);
}

/* Review Cards */
.review-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.review-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.review-stars {
    display: flex;
    gap: 2px;
}

.review-stars .star {
    color: #fbbc04;
    font-size: 1rem;
}

.review-source {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    color: var(--grey-500);
}

.review-content {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.review-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--grey-700);
    margin: 0;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--grey-100);
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--accent-violet) 100%);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--secondary-blue);
    font-size: 0.95rem;
}

.author-role {
    font-size: 0.8rem;
    color: var(--grey-500);
}

/* AggregateRating Schema for SEO */
.aggregate-rating-schema {
    display: none;
}

/* Responsive Trust Bar */
@media (max-width: 767px) {
    .trust-bar-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .trust-item {
        justify-content: center;
    }
    
    .rating-number {
        font-size: 3rem;
    }
    
    .rating-stars-large .star {
        font-size: 1.25rem;
    }
}

