/* Base Styles */
:root {
    --primary-color: #e58168;
    --secondary-color: #2a635a;
    --dark-color: #333333;
    --light-color: #f5f5f5;
    --text-color: #333333;
    --text-light: #666666;
    --max-width: 1200px;
    --border-radius: 8px;
    --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #ffffff;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.3;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1.5rem;
}

section {
    padding: 5rem 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

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

.btn-primary:hover {
    background-color: #d6705a;
}

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

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

/* Header Styles */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.2rem 0;
}

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

.logo h1 {
    font-size: 1.8rem;
    margin-bottom: 0;
    color: var(--primary-color);
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    font-weight: 500;
    position: relative;
}

nav ul li a:hover, nav ul li a.active {
    color: var(--primary-color);
}

nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 5px;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section - Stripe-inspired */
.hero {
    padding: 6rem 0 8rem;
    position: relative;
    overflow: hidden;
    background-color: #fff;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: linear-gradient(135deg, rgba(229, 129, 104, 0.2) 0%, rgba(229, 129, 104, 0.05) 100%);
    border-radius: 50% 30% 70% 50%;
    z-index: 0;
    transform: rotate(-15deg);
}

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

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--dark-color);
}

.hero-content .subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-content .trusted-by {
    font-size: 1.1rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
    z-index: 1;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 20px;
    right: -20px;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    z-index: 0;
}

.trusted-by {
    text-align: center;
    padding: 2rem 0;
    background: linear-gradient(to right, rgba(229, 129, 104, 0.05), rgba(42, 99, 90, 0.05));
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.floating-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: absolute;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 3;
    max-width: 280px;
    transition: none;
}

.floating-card:hover {
    transform: none;
    box-shadow: none;
}

.floating-card.card-1 {
    top: 30px;
    left: -40px;
    transform: rotate(-2deg);
    animation: fadeInSlideUp 0.6s ease-out 0.2s both;
}

.floating-card.card-2 {
    top: 60px;
    right: -30px;
    transform: rotate(2deg);
    animation: fadeInSlideUp 0.6s ease-out 0.4s both;
}

.floating-card.card-3 {
    bottom: 80px;
    right: -20px;
    transform: rotate(1deg);
    animation: fadeInSlideUp 0.6s ease-out 0.6s both;
}

.floating-card.card-4 {
    bottom: 40px;
    left: -30px;
    transform: rotate(-1deg);
    animation: fadeInSlideUp 0.6s ease-out 0.8s both;
}

.floating-card .icon {
    background-color: rgba(229, 129, 104, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.floating-card .icon i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.floating-card .content h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.floating-card .content p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0;
}

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

/* Clients Section */
.clients {
    padding: 4rem 0;
    background-color: var(--light-color);
    text-align: center;
}

.clients h3 {
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

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

.client-logo {
    opacity: 0.7;
    transition: var(--transition);
    height: 30px;
    width: auto;
}

.client-logo:hover {
    opacity: 1;
}

.client-placeholder {
    opacity: 0.7;
    transition: var(--transition);
    height: 30px;
    min-width: 120px;
    padding: 5px 15px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.client-placeholder:hover {
    opacity: 1;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Benefits Section */
.benefits {
    background-color: var(--light-color);
    padding: 5rem 0 0 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 5rem;
}

.benefit-card {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: none;
    transition: none;
    text-align: center;
}

.benefit-card .icon {
    background-color: rgba(229, 129, 104, 0.1);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-card .icon i {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.benefit-card h3 {
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

.source-citation {
    text-align: center;
    margin: 1rem 0 3rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.source-citation a {
    color: var(--primary-color);
    text-decoration: underline;
}

.source-citation a:hover {
    color: var(--secondary-color);
}

/* Engagement Stats Section */
.engagement-stats {
    background-color: white;
    padding: 5rem 0;
}

.stats-content {
    text-align: center;
    margin: 3rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stats-content .highlight-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    line-height: 1.4;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.stats-content .insight-text {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.stats-image {
    margin: 2rem 0;
}

.stats-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.engagement-question {
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    margin: 3rem 0;
}

.engagement-question h3 {
    font-size: 1.6rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.engagement-question .btn {
    font-size: 1.1rem;
    padding: 1rem 2rem;
    margin-top: 1rem;
}

/* Inclusive Section */
.inclusive {
    background: linear-gradient(135deg, #fff 40%, rgba(229, 129, 104, 0.1) 100%);
}

.inclusive-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Validation Section */
.validation {
    background-color: white;
    padding: 5rem 0;
}

.validation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.validation-image {
    width: 100%;
    height: 450px;
}

.validation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

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

.validation-text .large-text {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.validation-text .highlight {
    color: var(--primary-color);
    font-weight: 600;
}

.validation-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1rem;
}

/* Process Section */
.process {
    background-color: var(--light-color);
}

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

.step {
    position: relative;
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
}

.step-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(229, 129, 104, 0.3);
    border: 3px solid white;
    z-index: 2;
}

.step h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.step p {
    color: var(--text-color);
    line-height: 1.6;
}

/* About Short Section */
.about-short {
    padding: 5rem 0;
    background-color: white;
}

.about-content {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, rgba(229, 129, 104, 0.9) 0%, rgba(215, 103, 78, 0.9) 100%);
    color: white;
    text-align: center;
}

.cta h2 {
    color: white;
}

.cta p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

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

.cta .btn-primary:hover {
    background-color: #1a4b43;
    color: white;
}

/* Footer Styles */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 4rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    grid-column: 1;
}

.footer-logo h2 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
    line-height: 1.2;
    text-align: left;
}

.footer-tagline {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-tagline p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.4;
    margin: 0;
}

.footer-links {
    grid-column: 2;
}

.footer-contact {
    grid-column: 3;
}

.footer-links h3, .footer-contact h3 {
    color: white;
    margin-bottom: 1.5rem;
}

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

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

/* Team Values Section */
.team-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 1.5rem;
    color: white;
}

.value-item h4 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.value-item p {
    color: var(--text-color);
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content {
        order: 0;
        max-width: 100%;
    }
    
    .hero-content .subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-image {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .hero-image img {
        height: 250px;
    }
    
    .hero-image::before {
        display: none;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .floating-card.card-1 {
        bottom: 10px;
        left: 0;
    }
    
    .floating-card.card-2 {
        top: 20px;
        right: 0;
    }
    
    .floating-card.card-3, 
    .floating-card.card-4 {
        display: none;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

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

    .validation-image {
        order: -1;
        height: 350px;
    }

    .validation-text {
        height: auto;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-logo {
        grid-column: 1;
        align-items: flex-start;
    }

    .footer-links, 
    .footer-contact {
        grid-column: 1;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 4rem 0 6rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .floating-card {
        position: static;
        margin: 1rem auto;
        max-width: 280px;
    }
    
    .hero-image::before {
        display: none;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: white;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        padding: 4rem 2rem;
        z-index: 1001;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
    }
    
    nav ul li {
        margin: 1.5rem 0;
    }
    
    .mobile-menu-btn {
        display: block;
        z-index: 1002;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .team-values {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stats-content .highlight-text {
        font-size: 1.5rem;
    }

    .stats-content .insight-text {
        font-size: 1.1rem;
    }

    .engagement-question {
        padding: 2rem 1.5rem;
    }

    .engagement-question h3 {
        font-size: 1.4rem;
    }

    .benefit-image,
    .step-image,
    .value-image {
        height: 160px;
    }

    .stats-hero-image,
    .about-hero-image {
        height: 250px;
    }

    .engagement-image {
        height: 180px;
    }

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

    .main-image {
        grid-column: auto;
        height: 250px;
    }

    .side-images {
        grid-column: auto;
        grid-template-columns: 1fr 1fr;
    }

    .side-image {
        height: 180px;
    }

    .side-image-large {
        grid-column: auto;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo h2 {
        font-size: 1.4rem;
    }
    
    .footer-tagline p {
        font-size: 0.9rem;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .client-logos {
        gap: 1.5rem;
    }
    
    .client-logo {
        height: 20px;
    }
    
    .floating-cards-container {
        grid-template-columns: 1fr;
    }

    .side-images {
        grid-template-columns: 1fr;
    }

    .side-image {
        height: 160px;
    }

    .validation-image {
        height: 300px;
    }
}

.global-reach {
    padding: 0 0 5rem 0;
    margin: 0;
    background: linear-gradient(135deg, rgba(229, 129, 104, 0.08) 0%, rgba(42, 99, 90, 0.08) 100%);
}

/* Hover effects alleen voor links */
a:hover {
    color: var(--primary-color);
    transition: var(--transition);
}

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

.btn-primary:hover {
    background-color: #d6705a;
}

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

/* Verwijder hover effecten van niet-link elementen */
.benefit-card,
.step,
.value-item,
.floating-card {
    transition: none;
}

.benefit-card:hover,
.step:hover,
.value-item:hover,
.floating-card:hover {
    transform: none;
    box-shadow: none;
}

.stats-hero-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    box-shadow: var(--box-shadow);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.image-collage {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.main-image {
    grid-column: 1;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.side-images {
    grid-column: 2 / span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.side-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.side-image-large {
    grid-column: span 2;
} 