/* =============================================
   Pursue Coaching - Shared Stylesheet
   ============================================= */

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

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

:root {
    --salmon: #f4a88e;
    --salmon-hover: #e8896a;
    --dark: #1a1a1a;
    --dark-bg: #2a2a2a;
    --light-bg: #f0ebe6;
    --text-dark: #2d2d2d;
    --text-light: #ffffff;
    --text-muted: #5a5a5a;
    --green-accent: #4a7c59;
    --border-light: #d4cfc9;
    --white: #ffffff;

    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 4px rgba(0,0,0,0.06), 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12), 0 4px 8px rgba(0,0,0,0.06);
    --shadow-xl: 0 12px 40px rgba(0,0,0,0.16), 0 4px 12px rgba(0,0,0,0.08);
    --radius: 8px;
    --radius-lg: 12px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
}

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

::selection {
    background: var(--salmon);
    color: var(--white);
}

/* Focus styles for accessibility */
:focus-visible {
    outline: 2px solid var(--salmon);
    outline-offset: 3px;
    border-radius: 2px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =============================================
   Navigation
   ============================================= */
.navbar {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
    transition: box-shadow 0.3s var(--ease);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    transition: opacity 0.3s var(--ease);
}

.logo:hover {
    opacity: 0.8;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--dark);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--salmon);
    font-weight: 800;
    font-size: 1.2rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--text-dark);
    transition: color 0.3s var(--ease);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--salmon);
    transition: width 0.3s var(--ease);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--salmon);
}

.btn-intake {
    background: transparent;
    border: 2px solid var(--dark);
    color: var(--dark);
    padding: 10px 24px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s var(--ease);
}

.btn-intake::after {
    display: none;
}

.btn-intake:hover {
    background: var(--dark);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.hamburger span {
    width: 28px;
    height: 2.5px;
    background: var(--dark);
    border-radius: 2px;
    transition: all 0.3s var(--ease);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* =============================================
   Page Hero (for subpages)
   ============================================= */
.page-hero {
    position: relative;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url('https://images.unsplash.com/photo-1599058917212-d750089bc07e?w=1600&q=80') center/cover no-repeat;
}

.page-hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.page-hero p {
    font-size: 1.05rem;
    opacity: 0.85;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.7;
}

/* =============================================
   Homepage Hero
   ============================================= */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
                url('afbeeldingen/pursue77.jpg') center/cover no-repeat;
    color: var(--text-light);
}

.hero-content {
    max-width: 650px;
    padding: 80px 0;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    font-style: italic;
    letter-spacing: -0.5px;
}

.hero p {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.85;
    margin-bottom: 36px;
    max-width: 520px;
}

/* =============================================
   Buttons
   ============================================= */
.btn-cta {
    display: inline-block;
    background: var(--salmon);
    color: var(--dark);
    padding: 16px 36px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.btn-cta:hover {
    background: var(--salmon-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 168, 142, 0.35);
}

.btn-transform {
    display: inline-block;
    background: var(--dark);
    color: var(--text-light);
    padding: 16px 36px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.btn-transform:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-salmon {
    display: inline-block;
    background: var(--salmon);
    color: var(--white);
    padding: 16px 40px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.btn-salmon:hover {
    background: var(--salmon-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 168, 142, 0.35);
}

.btn-outline {
    display: inline-block;
    background: transparent;
    border: 2px solid var(--dark);
    color: var(--dark);
    padding: 14px 32px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.btn-outline:hover {
    background: var(--dark);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* =============================================
   Herken je dit Section
   ============================================= */
.herken-section {
    padding: 80px 0;
    background: var(--white);
}

.herken-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.herken-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    transition: transform 0.5s var(--ease);
}

.herken-image:hover {
    transform: scale(1.02);
}

.herken-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--dark);
    letter-spacing: -0.3px;
}

.herken-list {
    list-style: none;
    margin-bottom: 36px;
}

.herken-list li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    transition: color 0.3s var(--ease);
}

.herken-list li:hover {
    color: var(--text-dark);
}

.herken-list li::before {
    content: "\2192";
    position: absolute;
    left: 0;
    color: var(--salmon);
    font-weight: 700;
    transition: transform 0.3s var(--ease);
}

.herken-list li:hover::before {
    transform: translateX(4px);
}

.oplossing-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    margin-top: 32px;
}

.oplossing-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.oplossing-text:last-of-type {
    margin-bottom: 32px;
}

/* =============================================
   Gezondheidspad Section
   ============================================= */
.gezondheid-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.gezondheid-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--salmon);
    margin-bottom: 8px;
}

.gezondheid-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.gezondheid-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 48px;
    max-width: 600px;
}

.gezondheid-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.gezondheid-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    transition: transform 0.5s var(--ease);
}

.gezondheid-image:hover {
    transform: scale(1.02);
}

.pad-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.pad-step {
    display: flex;
    gap: 20px;
    position: relative;
    padding-bottom: 32px;
}

.pad-step:last-child {
    padding-bottom: 0;
}

.step-line {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 40px;
}

.step-dot {
    width: 14px;
    height: 14px;
    background: var(--green-accent);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 4px;
    box-shadow: 0 0 0 4px rgba(74, 124, 89, 0.15);
    transition: box-shadow 0.3s var(--ease);
}

.pad-step:hover .step-dot {
    box-shadow: 0 0 0 6px rgba(74, 124, 89, 0.25);
}

.step-connector {
    width: 2px;
    flex: 1;
    background: var(--green-accent);
    opacity: 0.3;
    margin-top: 4px;
}

.step-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

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

/* =============================================
   Content Sections (reusable)
   ============================================= */
.section {
    padding: 80px 0;
}

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

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

.section--dark {
    background: var(--dark);
    color: var(--text-light);
}

.section-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--salmon);
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.section--dark .section-title {
    color: var(--text-light);
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 48px;
    max-width: 650px;
}

.section--dark .section-subtitle {
    color: rgba(255,255,255,0.7);
}

/* Body text */
.body-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.body-text:last-of-type {
    margin-bottom: 32px;
}

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

.text-center .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

/* Two-column layout */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.two-col--reverse {
    direction: rtl;
}

.two-col--reverse > * {
    direction: ltr;
}

.col-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    transition: transform 0.5s var(--ease);
}

.col-image:hover {
    transform: scale(1.02);
}

/* Cards grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

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

.card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.card:hover .card-image {
    transform: scale(1.04);
}

.card-image-wrapper {
    overflow: hidden;
}

.card-body {
    padding: 28px;
}

.card-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--salmon);
    margin-bottom: 12px;
    background: rgba(244, 168, 142, 0.1);
    padding: 4px 10px;
    border-radius: 4px;
}

.card-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.4;
}

.card-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 20px;
}

.card-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--salmon);
    transition: all 0.3s var(--ease);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.card-link:hover {
    color: var(--salmon-hover);
    gap: 8px;
}

/* Icon cards */
.icon-card {
    text-align: center;
    padding: 40px 28px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
    border: 2px solid transparent;
}

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

.icon-card.featured {
    border-color: var(--salmon);
}

.icon-card .icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--salmon);
    transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}

.icon-card:hover .icon {
    transform: scale(1.1);
}

.icon-card.featured .icon {
    background: var(--salmon);
    color: var(--white);
}

.icon-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.icon-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* Feature list */
.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.feature-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--green-accent);
    font-weight: 700;
    font-size: 1.1rem;
}

/* =============================================
   Contact Form
   ============================================= */
.contact-form {
    max-width: 600px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-family: inherit;
    background: var(--white);
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--salmon);
    box-shadow: 0 0 0 3px rgba(244, 168, 142, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

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

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%235a5a5a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
}

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

/* =============================================
   Footer
   ============================================= */
.footer {
    background: var(--light-bg);
    padding: 60px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 32px;
    grid-column: 1 / -1;
}

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color 0.3s var(--ease);
}

.footer-col ul li a:hover {
    color: var(--salmon);
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 400px;
}

.newsletter-wrapper {
    position: relative;
    flex: 1;
}

.newsletter-wrapper .mail-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--salmon);
    font-size: 1.1rem;
    pointer-events: none;
}

.newsletter-wrapper input {
    width: 100%;
    padding: 14px 16px 14px 44px;
    border: 1.5px solid transparent;
    border-radius: 6px;
    font-size: 0.95rem;
    font-family: inherit;
    background: var(--white);
    outline: none;
    transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.newsletter-wrapper input:focus {
    border-color: var(--salmon);
    box-shadow: 0 0 0 3px rgba(244, 168, 142, 0.15);
}

.btn-newsletter {
    background: var(--salmon);
    color: var(--white);
    border: none;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    white-space: nowrap;
    font-family: inherit;
}

.btn-newsletter:hover {
    background: var(--salmon-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(244, 168, 142, 0.3);
}

.footer-contact {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 48px;
    padding: 32px 0;
}

.footer-contact-item h4 {
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-contact-item p,
.footer-contact-item a {
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: color 0.3s var(--ease);
}

.footer-contact-item a:hover {
    color: var(--salmon);
}

.footer-bottom {
    border-top: 1px solid var(--border-light);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.footer-bottom a {
    color: var(--salmon);
    transition: color 0.3s var(--ease);
}

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

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    background: rgba(0,0,0,0.04);
    border-radius: 50%;
    font-size: 1.1rem;
    transition: all 0.3s var(--ease);
}

.social-links a:hover {
    color: var(--salmon);
    background: rgba(244, 168, 142, 0.12);
    transform: translateY(-2px);
}

/* =============================================
   Legal / Terms page
   ============================================= */
.legal-content {
    max-width: 760px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-top: 40px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--light-bg);
}

.legal-content h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark);
    margin-top: 28px;
    margin-bottom: 12px;
}

.legal-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul, .legal-content ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-content li {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 8px;
}

/* =============================================
   CTA Banner
   ============================================= */
.cta-banner {
    text-align: center;
}

.cta-banner h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-light);
    letter-spacing: -0.3px;
}

.cta-banner p {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

/* =============================================
   Contact Info Cards
   ============================================= */
.contact-info-card {
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-bottom: 32px;
}

.contact-info-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 28px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item-icon {
    width: 44px;
    height: 44px;
    background: var(--salmon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
    transition: transform 0.3s var(--ease);
}

.contact-item:hover .contact-item-icon {
    transform: scale(1.08);
}

.contact-item-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.contact-item-value {
    color: var(--dark);
    font-weight: 500;
    font-size: 0.95rem;
}

a.contact-item-value {
    transition: color 0.3s var(--ease);
}

a.contact-item-value:hover {
    color: var(--salmon);
}

/* CTA Card */
.cta-card {
    background: var(--dark);
    border-radius: var(--radius-lg);
    padding: 40px;
    color: var(--text-light);
}

.cta-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.cta-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    opacity: 0.75;
    margin-bottom: 24px;
}

/* =============================================
   Trust Bar
   ============================================= */
.trust-bar {
    background: var(--dark);
    color: var(--text-light);
    padding: 10px 0;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.trust-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.trust-item .trust-icon {
    color: var(--salmon);
    font-size: 1rem;
}

@media (max-width: 768px) {
    .trust-bar .container {
        gap: 16px;
    }
    .trust-item {
        font-size: 0.75rem;
    }
}

/* =============================================
   Hero - Centered variant
   ============================================= */
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-cta-white {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
    color: var(--text-light);
    border: 2px solid rgba(255,255,255,0.4);
    padding: 14px 32px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.btn-cta-white:hover {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.7);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,255,255,0.1);
}

/* =============================================
   USP / Feature Blocks (big visual cards)
   ============================================= */
.usp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.usp-block {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 320px;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s var(--ease);
}

.usp-block:hover {
    transform: scale(1.01);
}

.usp-block--tall {
    grid-row: span 2;
    min-height: 100%;
}

.usp-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 60%);
    transition: background 0.4s var(--ease);
}

.usp-block:hover .usp-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%);
}

.usp-content {
    position: relative;
    z-index: 2;
    padding: 32px;
    color: var(--text-light);
}

.usp-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.usp-content p {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.85;
    max-width: 320px;
}

@media (max-width: 768px) {
    .usp-grid {
        grid-template-columns: 1fr;
    }
    .usp-block {
        min-height: 260px;
    }
    .usp-block--tall {
        grid-row: span 1;
    }
}

/* =============================================
   Marquee Banner
   ============================================= */
.marquee-banner {
    background: var(--dark);
    padding: 20px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track {
    display: inline-flex;
    animation: marquee-scroll 30s linear infinite;
}

.marquee-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: rgba(255,255,255,0.15);
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 0 48px;
}

.marquee-text .highlight {
    color: var(--salmon);
}

@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .marquee-text {
        font-size: 1rem;
        padding: 0 32px;
    }
}

/* =============================================
   Stats Counter Bar
   ============================================= */
.stats-bar {
    padding: 64px 0;
    background: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-item {
    padding: 24px 16px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.stat-number span {
    color: var(--salmon);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stats-bar--dark {
    background: var(--dark);
}

.stats-bar--dark .stat-number {
    color: var(--text-light);
}

.stats-bar--dark .stat-label {
    color: rgba(255,255,255,0.5);
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .stat-number {
        font-size: 2.2rem;
    }
}

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

/* =============================================
   Testimonials
   ============================================= */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

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

.testimonial-stars {
    color: var(--salmon);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text-muted);
    font-style: italic;
    flex: 1;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid var(--border-light);
    padding-top: 20px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--salmon);
    flex-shrink: 0;
}

.testimonial-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--dark);
}

.testimonial-detail {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 2px;
}

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

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

/* =============================================
   Pillars / Core Elements
   ============================================= */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.pillar-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--salmon);
    transform: scaleX(0);
    transition: transform 0.4s var(--ease);
}

.pillar-card:hover::before {
    transform: scaleX(1);
}

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

.pillar-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}

.pillar-card:hover .pillar-icon {
    transform: scale(1.08);
    background: var(--salmon);
    color: var(--white);
}

.pillar-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.pillar-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
}

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

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

/* =============================================
   Pricing Cards
   ============================================= */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
    border: 2px solid transparent;
    position: relative;
}

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

.pricing-card.popular {
    border-color: var(--salmon);
}

.pricing-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--salmon);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 20px;
    border-radius: 0 0 8px 8px;
}

.pricing-tier {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--salmon);
    margin-bottom: 8px;
}

.pricing-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.pricing-description {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
    flex: 1;
}

.pricing-features li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.5;
}

.pricing-features li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--green-accent);
    font-weight: 700;
}

.pricing-card .btn-cta,
.pricing-card .btn-outline {
    width: 100%;
    text-align: center;
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
}

/* =============================================
   Result / Guarantee Badge
   ============================================= */
.guarantee-section {
    text-align: center;
    padding: 48px 0;
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    padding: 24px 40px;
    border: 2px solid var(--border-light);
}

.guarantee-icon {
    width: 56px;
    height: 56px;
    background: var(--green-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.guarantee-text {
    text-align: left;
}

.guarantee-text strong {
    display: block;
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 4px;
}

.guarantee-text span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* =============================================
   Big Quote / Tagline
   ============================================= */
.tagline-section {
    padding: 80px 0;
    text-align: center;
    background: var(--light-bg);
}

.tagline {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: -0.5px;
    line-height: 1.3;
    max-width: 700px;
    margin: 0 auto;
}

.tagline em {
    color: var(--salmon);
    font-style: italic;
}

@media (max-width: 768px) {
    .tagline {
        font-size: 1.7rem;
    }
}

/* =============================================
   Scroll Animations
   ============================================= */
.animate-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

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

/* Staggered delays for card grids */
.cards-grid .animate-in:nth-child(2) { transition-delay: 0.1s; }
.cards-grid .animate-in:nth-child(3) { transition-delay: 0.2s; }
.cards-grid .animate-in:nth-child(4) { transition-delay: 0.3s; }
.cards-grid .animate-in:nth-child(5) { transition-delay: 0.15s; }
.cards-grid .animate-in:nth-child(6) { transition-delay: 0.25s; }

.pad-step .animate-in:nth-child(2) { transition-delay: 0.1s; }
.pad-step .animate-in:nth-child(3) { transition-delay: 0.2s; }
.pad-step .animate-in:nth-child(4) { transition-delay: 0.3s; }

/* =============================================
   Responsive - Tablet
   ============================================= */
@media (max-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .two-col {
        gap: 40px;
    }

    .hero h1,
    .page-hero h1 {
        font-size: 2.4rem;
    }
}

/* =============================================
   Responsive - Mobile
   ============================================= */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
        border-top: 1px solid rgba(0,0,0,0.06);
    }

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

    .nav-links a::after {
        display: none;
    }

    .navbar .container {
        position: relative;
    }

    .hero h1,
    .page-hero h1 {
        font-size: 2rem;
    }

    .hero-content {
        padding: 48px 0;
    }

    .hero {
        min-height: 45vh;
    }

    .herken-grid,
    .gezondheid-grid,
    .two-col,
    .two-col--reverse {
        grid-template-columns: 1fr;
        gap: 32px;
        direction: ltr;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-top,
    .footer-contact {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

    .newsletter-form {
        flex-direction: column;
    }

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

    .section-title {
        font-size: 1.8rem;
    }

    .section {
        padding: 64px 0;
    }

    .col-image,
    .herken-image,
    .gezondheid-image {
        height: 280px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .section {
        padding: 48px 0;
    }

    .page-hero {
        min-height: 30vh;
    }

    .page-hero h1 {
        font-size: 1.7rem;
    }

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

    .section-title {
        font-size: 1.6rem;
    }
}
