/* Reset en basis stijlen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    backdrop-filter: none;
    filter: none;
}

:root {
    --primary-color: #2B0A3D;    /* Donker paars */
    --secondary-color: #5B2D90;  /* Helder paars */
    --accent-color: #9747FF;     /* Licht paars */
    --text-color: #FFFFFF;       /* Wit voor tekst */
    --dark-bg: #1A0624;          /* Zeer donker paars voor achtergrond */
    --light-bg: #3D1657;         /* Middel paars voor lichtere achtergrond */
    --max-width: 1200px;
    --header-height: 80px;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--dark-bg);
    font-weight: 300;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

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

/* Header en navigatie */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #2B0A3D;
    z-index: 1000;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 32px;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
}

nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    flex-wrap: wrap;
}

nav a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
}

.nav__contact {
    margin-right: 2rem;
}

.nav__left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.nav__logo {
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 0.2rem;
}

.nav__phone {
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border-radius: 50px;
    transition: all 0.3s ease;
}

.nav__phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(151, 71, 255, 0.4);
}

.nav__menu {
    margin-top: 0.5rem;
}

.nav__list {
    display: flex;
    gap: 2rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav__link {
    color: var(--text-color);
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav__link:hover {
    color: var(--accent-color);
}

.nav__link.active-link {
    color: var(--accent-color);
    font-weight: 600;
}

@media screen and (max-width: 768px) {
    .nav__logo {
        font-size: 1.2rem;
    }
    
    .nav__phone {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
    
    .nav__list {
        gap: 1rem;
    }
    
    .nav__link {
        font-size: 0.9rem;
    }
}

/* Hero sectie */
.hero {
    background: #2B0A3D;
    padding-top: 120px;
    padding-bottom: 40px;
    padding-left: 32px;
    padding-right: 32px;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.hero-text {
    flex: 1;
}

.hero h1 {
    color: #FFFFFF;
    font-size: 40px;
    margin-bottom: 8px;
    line-height: 1.2;
}

.hero h2 {
    color: #FFFFFF;
    font-size: 22px;
    margin-bottom: 24px;
    font-weight: 400;
    line-height: 1.4;
}

.hero-image {
    flex-shrink: 0;
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hero-logo {
    width: 150px;
    height: auto;
    display: block;
    border: none;
    background: none;
    transition: transform 0.3s ease;
}

.hero-logo:hover {
    transform: scale(1.05);
}

.profile-image {
    width: auto;
    height: auto;
    border-radius: 50%;
    border: 3px solid #FFFFFF;
}

@media screen and (max-width: 768px) {
    .hero {
        padding: 100px 16px 32px 16px;
        text-align: center;
    }

    .hero-content {
        flex-direction: column-reverse;
        gap: 24px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero h2 {
        font-size: 18px;
    }

    .hero-image {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-logo {
        width: 120px;
    }

    nav {
        padding: 8px 16px;
    }

    nav ul {
        gap: 16px;
    }
}

/* Button styling */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    background: #9747FF;
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
}

.btn:hover {
    background: #7E57C2;
}

/* About sectie */
.about {
    position: relative;
    background: url('Kunstmatige-intelligentie-Randall-van-Poelvoorde.jpg') center center/cover no-repeat;
    padding: 6rem 0;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 6, 36, 0.5);
    z-index: 1;
}

.about .container {
    position: relative;
    z-index: 2;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(43, 10, 61, 0.3);
    padding: 2rem;
    border-radius: 10px;
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Expertise sectie */
.section {
    padding: 8rem 0;
}

.section__title {
    margin-bottom: 4rem;
}

.expertise {
    padding: 3rem 0;
    background: var(--dark-bg);
    position: relative;
}

.expertise::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(43, 10, 61, 0.9), rgba(91, 45, 144, 0.9));
    z-index: 1;
}

.expertise .container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    padding: 0 1rem;
}

.flip-card {
    background-color: transparent;
    perspective: 1000px;
    height: 450px;
    width: 100%;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    background: var(--primary-color);
    border: 2px solid var(--accent-color);
    box-shadow: 0 0 30px rgba(151, 71, 255, 0.2);
}

.flip-card-front {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.flip-card-back {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transform: rotateY(180deg);
}

.flip-card-front h3, .flip-card-back h3 {
    color: var(--text-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.flip-card-front .icon {
    font-size: calc(0.9rem * 0.65 * 5);
    margin: 1rem 0;
    width: 15rem;
    height: 15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    border-radius: 50%;
    color: white;
    box-shadow: 0 0 40px rgba(151, 71, 255, 0.4);
    transition: all 0.3s ease;
    border: 3px solid var(--accent-color);
    position: relative;
}

.flip-card-front .icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), transparent);
    opacity: 0.5;
    z-index: -1;
    animation: glowPulse 2s infinite;
}

.flip-card:hover .flip-card-front .icon {
    transform: scale(1.05);
    box-shadow: 0 0 50px rgba(151, 71, 255, 0.6);
    border-color: white;
}

.flip-card-front p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
    margin: 1rem 0;
    opacity: 0.9;
}

.flip-card-back ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

.flip-card-back ul li {
    color: var(--text-color);
    margin: 0.8rem 0;
    font-size: 1rem;
    display: flex;
    align-items: center;
    opacity: 0.9;
}

.flip-card-back ul li::before {
    content: "→";
    color: var(--accent-color);
    margin-right: 0.8rem;
    font-weight: bold;
}

.flip-card-back .btn-secondary {
    background: transparent;
    color: var(--text-color);
    border: 2px solid var(--accent-color);
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    margin-top: 1rem;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.flip-card-back .btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.flip-card-back .btn-secondary:hover {
    color: white;
    transform: translateY(-2px);
}

.flip-card-back .btn-secondary:hover::before {
    opacity: 1;
}

@keyframes glowPulse {
    0% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(1.05); }
    100% { opacity: 0.5; transform: scale(1); }
}

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

@media (max-width: 768px) {
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .flip-card {
        height: 400px;
    }
    
    .flip-card-front .icon {
        width: 12rem;
        height: 12rem;
        font-size: calc(0.9rem * 0.65 * 4);
    }
}

/* Ventures sectie */
.ventures {
    background: var(--dark-bg);
    position: relative;
}

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

.venture-card {
    background: rgba(91, 45, 144, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(151, 71, 255, 0.2);
}

.venture-card:hover {
    transform: translateY(-5px);
    background: rgba(91, 45, 144, 0.2);
    border-color: rgba(151, 71, 255, 0.4);
}

.venture-card h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.venture-card ul {
    list-style: none;
    padding: 0;
}

.venture-card li {
    margin-bottom: 0.8rem;
}

.venture-card a {
    color: var(--text-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.venture-card a:hover {
    color: var(--accent-color);
}

.venture-card a::after {
    content: "→";
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.venture-card a:hover::after {
    transform: translateX(5px);
}

.venture-card li:nth-child(1) a {
    color: #B388FF;
}

.venture-card li:nth-child(2) a {
    color: #9575CD;
}

.venture-card li:nth-child(3) a {
    color: #7E57C2;
}

.venture-card li:nth-child(4) a {
    color: #673AB7;
}

.venture-card p {
    line-height: 1.6;
}

/* Contact sectie */
.contact {
    background: url('Huisstijl 1.png') center center/cover no-repeat;
    position: relative;
    padding: 4rem 0;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(43, 10, 61, 0.95),
        rgba(91, 45, 144, 0.95)
    );
    z-index: 1;
}

.contact .container {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.contact form {
    background: rgba(43, 10, 61, 0.4);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(151, 71, 255, 0.3);
    box-shadow: 0 0 20px rgba(151, 71, 255, 0.2),
                inset 0 0 15px rgba(151, 71, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.contact form::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    animation: formLineMove 3s infinite;
}

@keyframes formLineMove {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: -100%; }
}

.contact form:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(151, 71, 255, 0.3),
                inset 0 0 25px rgba(151, 71, 255, 0.15);
    border-color: rgba(151, 71, 255, 0.5);
}

.contact h2 {
    color: var(--text-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, var(--text-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    animation: titlePulse 4s ease-in-out infinite;
}

.contact h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    border-radius: 1px;
}

@keyframes titlePulse {
    0%, 100% { text-shadow: 0 0 10px rgba(151, 71, 255, 0.3); }
    50% { text-shadow: 0 0 20px rgba(151, 71, 255, 0.6), 0 0 30px rgba(151, 71, 255, 0.4); }
}

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

.form-group label {
    display: block;
    color: var(--text-color);
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.form-group:hover label {
    color: var(--accent-color);
    transform: translateX(3px);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(151, 71, 255, 0.2);
    border-radius: 8px;
    color: var(--text-color);
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(5px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.form-group input:hover,
.form-group textarea:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(151, 71, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(151, 71, 255, 0.2);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(151, 71, 255, 0.8);
    box-shadow: 0 0 0 4px rgba(151, 71, 255, 0.1),
                0 8px 25px rgba(151, 71, 255, 0.3);
    transform: translateY(-3px);
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
    color: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
}

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

.submit-btn {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    color: var(--text-color);
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    margin: 1.5rem auto 0;
    box-shadow: 0 4px 12px rgba(151, 71, 255, 0.4);
    position: relative;
    overflow: hidden;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.6s ease;
}

.submit-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.submit-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(151, 71, 255, 0.6),
                0 0 30px rgba(151, 71, 255, 0.3);
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover::after {
    width: 300px;
    height: 300px;
}

.submit-btn:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 5px 15px rgba(151, 71, 255, 0.5);
}

@media screen and (max-width: 768px) {
    .contact {
        padding: 3rem 0;
    }

    .contact form {
        padding: 1.5rem;
        margin: 0 1rem;
    }

    .contact form:hover {
        transform: translateY(-3px);
    }

    .contact h2 {
        font-size: 1.5rem;
    }

    .contact h2::after {
        width: 50px;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.7rem;
    }

    .form-group input:hover,
    .form-group textarea:hover {
        transform: translateY(-1px);
    }

    .form-group input:focus,
    .form-group textarea:focus {
        transform: translateY(-2px);
        box-shadow: 0 0 0 3px rgba(151, 71, 255, 0.1),
                    0 5px 15px rgba(151, 71, 255, 0.3);
    }

    .submit-btn {
        padding: 0.7rem 1.8rem;
        font-size: 0.95rem;
    }

    .submit-btn:hover {
        transform: translateY(-2px) scale(1.01);
    }

    .submit-btn:active {
        transform: translateY(0) scale(0.99);
    }
}

/* Footer */
footer {
    position: relative;
    background: var(--dark-bg);
    padding: 2rem 0;
    text-align: center;
}

footer .container {
    position: relative;
    z-index: 2;
}

footer p {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Enhanced Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 3rem 0 1rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.footer-section {
    flex: 1;
}

.footer-section h3 {
    color: #FFD700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.footer-logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 1rem;
    display: block;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.7;
    margin: 0;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .footer-logo {
        margin: 0 auto 1rem;
    }
}

/* Responsive design voor ventures sectie */
@media (max-width: 768px) {
    .ventures-grid {
        grid-template-columns: 1fr;
    }

    .venture-card {
        padding: 1.5rem;
    }
}

/* Vision page specific styles */
.vision-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 120px;
    padding-bottom: 40px;
    padding-left: 32px;
    padding-right: 32px;
    overflow: hidden;
    background: none;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
}

.vision-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(43, 10, 61, 0.75), 
        rgba(91, 45, 144, 0.75)
    );
    z-index: 2;
}

.vision-hero .container {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 1rem;
}

.vision-hero h1 {
    color: var(--text-color);
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    letter-spacing: 1px;
    line-height: 1.2;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    font-weight: 300;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .vision-hero h1 {
        font-size: 1.8rem;
    }
}

.vision-intro {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 4rem 0;
    position: relative;
    z-index: 2;
    margin-top: -2rem;
    border-radius: 15px 15px 0 0;
}

.vision-intro::before {
    display: none;
}

.vision-intro .container {
    position: relative;
    z-index: 2;
}

.vision-intro p {
    font-size: 1.2rem;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.8;
    text-align: center;
    color: rgba(255, 255, 255, 0.95);
    padding: 0 1rem;
}

.vision-content {
    padding: 6rem 0;
    position: relative;
    background: url('Achtergrond visie op innovatie.png') center center/cover no-repeat;
}

.vision-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(43, 10, 61, 0.3),
        rgba(91, 45, 144, 0.3)
    );
    z-index: 1;
}

.vision-content .container {
    position: relative;
    z-index: 2;
}

.vision-content h2 {
    margin-bottom: 4rem;
    text-align: center;
    color: var(--text-color);
    font-weight: 600;
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.vision-grid {
    display: grid;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto 4rem auto;
}

.vision-point {
    background: rgba(43, 10, 61, 0.6);
    border-radius: 20px;
    padding: 0;
    margin-bottom: 0;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.vision-point::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    opacity: 0.8;
    transition: all 0.3s ease;
}

.vision-point:hover {
    transform: translateY(-8px);
    background: rgba(43, 10, 61, 0.7);
    border-color: rgba(151, 71, 255, 0.4);
    box-shadow: 0 15px 40px rgba(151, 71, 255, 0.2);
}

.vision-point:hover::before {
    opacity: 1;
    width: 8px;
}

.vision-point-header {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    padding: 2rem 2.5rem 1.5rem 2.5rem;
    border-radius: 20px 20px 0 0;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.vision-point-number {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: 700;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
}

.vision-point h3 {
    color: var(--text-color);
    font-size: 1.4rem;
    margin: 0;
    font-weight: 600;
    line-height: 1.4;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    flex: 1;
}

.vision-point-content {
    padding: 2rem 2.5rem 2.5rem 2.5rem;
}

.vision-point-content p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.vision-point-content p:last-child {
    margin-bottom: 0;
}

.vision-cta {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 4rem 3rem;
    border-radius: 25px;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.vision-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(151, 71, 255, 0.1), 
        rgba(91, 45, 144, 0.1)
    );
    z-index: 1;
}

.vision-cta h3 {
    color: var(--text-color);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.vision-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

.vision-cta .cta-button {
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .vision-hero {
        padding: 100px 16px 32px 16px;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .vision-intro {
        margin-top: -1rem;
        border-radius: 10px 10px 0 0;
        padding: 3rem 0;
    }

    .vision-intro p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .vision-content {
        padding: 4rem 0;
    }

    .vision-content h2 {
        font-size: 2rem;
        margin-bottom: 3rem;
    }

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

    .vision-point-header {
        padding: 1.5rem 1.5rem 1rem 1.5rem;
        gap: 1rem;
    }

    .vision-point-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .vision-point h3 {
        font-size: 1.2rem;
    }

    .vision-point-content {
        padding: 1.5rem;
    }

    .vision-point-content p {
        font-size: 1rem;
    }

    .vision-cta {
        padding: 3rem 2rem;
        margin-top: 3rem;
    }

    .vision-cta h3 {
        font-size: 1.6rem;
    }

    .vision-cta p {
        font-size: 1.1rem;
    }
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--text-color);
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(151, 71, 255, 0.4);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: all 0.6s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(151, 71, 255, 0.6);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(151, 71, 255, 0.4);
}

@keyframes glowPulse {
    0% {
        box-shadow: 0 5px 15px rgba(151, 71, 255, 0.4);
    }
    50% {
        box-shadow: 0 5px 30px rgba(151, 71, 255, 0.7);
    }
    100% {
        box-shadow: 0 5px 15px rgba(151, 71, 255, 0.4);
    }
}

.cta-button {
    animation: glowPulse 3s infinite;
}

@media screen and (max-width: 768px) {
    .podcast-image {
        max-width: 250px;
    }
}

.video-section {
    padding: 4rem 0;
    background: var(--dark-bg);
}

.video-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.video-wrapper video {
    width: 100%;
    display: block;
    aspect-ratio: 16/9;
}

@media screen and (max-width: 768px) {
    .video-section {
        padding: 2rem 0;
    }
    
    .video-wrapper {
        border-radius: 10px;
        margin: 0 1rem;
    }
}

.podcast-promo {
    padding: 2rem 0;
    background: var(--dark-bg);
}

.podcast-promo .container {
    max-width: 800px;
    margin: 0 auto;
}

.podcast-promo-link {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem;
    background: rgba(91, 45, 144, 0.1);
    border: 1px solid rgba(151, 71, 255, 0.2);
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.podcast-promo-link:hover {
    transform: translateY(-3px);
    background: rgba(91, 45, 144, 0.2);
    border-color: rgba(151, 71, 255, 0.4);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.podcast-promo-image {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    object-fit: cover;
}

.podcast-promo-text {
    flex-grow: 1;
}

.podcast-promo-text h3 {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.podcast-promo-text p {
    color: var(--text-color);
    font-size: 1rem;
    opacity: 0.9;
}

@media screen and (max-width: 768px) {
    .podcast-promo-link {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1rem;
    }

    .podcast-promo-image {
        width: 100px;
        height: 100px;
    }

    .podcast-promo-text h3 {
        font-size: 1.2rem;
    }

    .podcast-promo-text p {
        font-size: 0.9rem;
    }
}

/* Error Pages */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.error-page h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.error-page p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #666;
}

.error-page ul {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.error-page ul li {
    margin: 0.5rem 0;
}

.error-page ul li a {
    color: #0066cc;
    text-decoration: none;
    font-size: 1.1rem;
}

.error-page ul li a:hover {
    text-decoration: underline;
}

.error-page .btn {
    display: inline-block;
    margin-top: 1rem;
}

/* Articles Page Styles */
.articles-page {
    min-height: 100vh;
    background: var(--dark-bg);
}

/* Articles Hero - Compact version */
.articles-hero {
    background: #2B0A3D;
    padding-top: 100px;
    padding-bottom: 24px;
    padding-left: 32px;
    padding-right: 32px;
}

.articles-hero .hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.articles-hero .hero-text {
    flex: 1;
}

.hero-label {
    display: inline-block;
    background: rgba(151, 71, 255, 0.15);
    color: var(--accent-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    border: 1px solid rgba(151, 71, 255, 0.3);
}

.articles-hero h1 {
    color: #FFFFFF;
    font-size: 32px;
    margin-bottom: 4px;
    line-height: 1.1;
    font-weight: 600;
}

.articles-hero h2 {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin-bottom: 12px;
    font-weight: 400;
    line-height: 1.3;
}

.articles-meta {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.meta-item {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 500;
}

.meta-divider {
    color: var(--accent-color);
    font-weight: bold;
}

.articles-hero .hero-visual {
    flex-shrink: 0;
}

.articles-preview {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
}

.preview-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(151, 71, 255, 0.2);
    border-radius: 8px;
    padding: 0.6rem 0.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-align: center;
    min-width: 70px;
}

.preview-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(151, 71, 255, 0.4);
    transform: translateY(-2px);
}

.preview-icon {
    font-size: 1.2rem;
}

.preview-title {
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.7rem;
    line-height: 1.2;
}

@media screen and (max-width: 768px) {
    .articles-hero {
        padding: 90px 16px 20px 16px;
        text-align: center;
    }

    .articles-hero .hero-content {
        flex-direction: column-reverse;
        gap: 20px;
    }

    .articles-hero h1 {
        font-size: 26px;
    }

    .articles-hero h2 {
        font-size: 15px;
    }

    .articles-meta {
        justify-content: center;
        font-size: 0.8rem;
    }

    .preview-card {
        min-width: 60px;
        padding: 0.5rem;
    }

    .preview-title {
        font-size: 0.65rem;
    }
}

.articles-intro {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 4rem 0;
    position: relative;
    z-index: 2;
    margin-top: -2rem;
    border-radius: 15px 15px 0 0;
}

.articles-intro .container {
    position: relative;
    z-index: 2;
}

.articles-intro p {
    font-size: 1.2rem;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.8;
    text-align: center;
    color: rgba(255, 255, 255, 0.95);
    padding: 0 1rem;
}

.articles-grid {
    padding: 6rem 0;
    background: url('Achtergrond visie op innovatie.png') center center/cover no-repeat;
    position: relative;
}

.articles-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(43, 10, 61, 0.3),
        rgba(91, 45, 144, 0.3)
    );
    z-index: 1;
}

.articles-grid .container {
    position: relative;
    z-index: 2;
}

.articles-container {
    max-width: 1000px;
    margin: 0 auto;
}

.article {
    background: rgba(43, 10, 61, 0.6);
    border-radius: 25px;
    margin-bottom: 4rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.article:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(151, 71, 255, 0.2);
    border-color: rgba(151, 71, 255, 0.3);
}

.article-header {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    padding: 2.5rem 3rem;
    position: relative;
}

.article-meta-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.article-date {
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.reading-time {
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.article h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-weight: 600;
    line-height: 1.3;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.article-excerpt {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.article-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.category {
    background: rgba(255, 255, 255, 0.15);
    color: var(--text-color);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.article-content {
    color: var(--text-color);
    padding: 2.5rem 3rem;
}

.article-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.article-content p:last-child {
    margin-bottom: 0;
}

.article-content h2 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.4rem;
    margin: 2rem 0 1rem 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.article-content strong {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 20px 0;
}

.article-image {
    margin: 0;
    position: relative;
    overflow: hidden;
    height: 300px;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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



.articles-intro {
        margin-top: -1rem;
        padding: 3rem 0;
    }

    .articles-intro p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .articles-grid {
        padding: 4rem 0;
    }

    .article {
        margin-bottom: 3rem;
    }

    .article-header {
        padding: 2rem 1.5rem;
    }

    .article-meta-top {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }

    .article h1 {
        font-size: 1.5rem;
    }

    .article-excerpt {
        font-size: 1rem;
    }

    .article-image {
        height: 200px;
    }

    .article-content {
        padding: 2rem 1.5rem;
    }

    .article-content p {
        font-size: 1rem;
    }

    .article-content h2 {
        font-size: 1.2rem;
    }

/* References Page Styles */
.references-page {
    min-height: 100vh;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Fade-in animation for elements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Staggered animations for grid items */
.logo-item {
    animation: fadeInUp 0.8s ease-out forwards;
}

.logo-item:nth-child(1) { animation-delay: 0.1s; }
.logo-item:nth-child(2) { animation-delay: 0.2s; }
.logo-item:nth-child(3) { animation-delay: 0.3s; }
.logo-item:nth-child(4) { animation-delay: 0.4s; }

.testimonial-card {
    animation: fadeInUp 0.8s ease-out forwards;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.3s; }
.testimonial-card:nth-child(3) { animation-delay: 0.5s; }

.image-card {
    animation: fadeInUp 0.8s ease-out forwards;
}

.image-card:nth-child(1) { animation-delay: 0.1s; }
.image-card:nth-child(2) { animation-delay: 0.2s; }
.image-card:nth-child(3) { animation-delay: 0.3s; }
.image-card:nth-child(4) { animation-delay: 0.4s; }
.image-card:nth-child(5) { animation-delay: 0.5s; }

/* References Hero Section */
.references-hero {
    background: #2B0A3D;
    padding-top: 120px;
    padding-bottom: 40px;
    padding-left: 32px;
    padding-right: 32px;
}

.references-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.references-hero-text {
    flex: 1;
}

.references-hero h1 {
    color: #FFFFFF;
    font-size: 40px;
    margin-bottom: 8px;
    line-height: 1.2;
}

.references-hero h2 {
    color: #FFFFFF;
    font-size: 22px;
    margin-bottom: 24px;
    font-weight: 400;
    line-height: 1.4;
}

.references-hero-image {
    flex-shrink: 0;
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.references-hero-logo {
    width: 150px;
    height: auto;
    display: block;
    border: none;
    background: none;
    transition: transform 0.3s ease;
}

.references-hero-logo:hover {
    transform: scale(1.05);
}

.references-profile-image {
    width: auto;
    height: auto;
    border-radius: 50%;
    border: 3px solid #FFFFFF;
}

/* Hero Stats Section */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 150px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Introduction Section */
.references-intro {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

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

.intro-content h2 {
    font-size: 2.5rem;
    color: #8A2BE2;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.intro-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #495057;
}

/* Impact Statistics Section */
.impact-stats {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

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

.impact-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.impact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, #8A2BE2, #4B0082);
    transition: left 0.5s ease;
}

.impact-card:hover::before {
    left: 0;
}

.impact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.2);
}

.impact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.impact-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.impact-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Enhanced Client Logos */
.client-logos {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(43, 10, 61, 0.95), rgba(91, 45, 144, 0.95));
    position: relative;
}

.client-list {
    max-width: 900px;
    margin: 0 auto;
}

.client-logos-mixed {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    align-items: center;
    justify-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.client-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    min-height: 80px;
    border: 1px solid rgba(151, 71, 255, 0.3);
    backdrop-filter: blur(10px);
}

.client-logo-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 25px rgba(151, 71, 255, 0.3);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(151, 71, 255, 0.5);
}

.client-logo-item img {
    max-width: 120px;
    max-height: 60px;
    width: 120px;
    height: 60px;
    object-fit: contain;
    object-position: center;
    filter: grayscale(20%) brightness(1.05) contrast(1.1);
    transition: all 0.3s ease;
    drop-shadow: 0 1px 3px rgba(43, 10, 61, 0.1);
}

.client-logo-item:hover img {
    filter: grayscale(0%) brightness(1) contrast(1.2);
    transform: scale(1.08);
    drop-shadow: 0 2px 8px rgba(43, 10, 61, 0.2);
}

.client-name-item {
    font-weight: 600;
    font-size: 1.1rem;
    color: #333;
    text-align: center;
    line-height: 1.2;
    padding: 1rem;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-name-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(138, 43, 226, 0.15);
    color: var(--primary-color);
}

.client-logos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #8A2BE2, transparent);
}

.client-logos h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #FFFFFF;
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
}

.client-logos h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 2px;
}

.logos-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    font-style: italic;
    opacity: 0.9;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(151, 71, 255, 0.3);
    backdrop-filter: blur(10px);
    min-height: 80px;
}

.logo-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    transition: left 0.6s ease;
}

.logo-item:hover::before {
    left: 0;
}

.logo-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 25px rgba(151, 71, 255, 0.3);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(151, 71, 255, 0.5);
}

.logo-item img {
    max-width: 120px;
    max-height: 60px;
    width: 120px;
    height: 60px;
    object-fit: contain;
    object-position: center;
    filter: grayscale(20%) brightness(1.05) contrast(1.1);
    transition: all 0.3s ease;
}

.logo-item:hover img {
    filter: grayscale(0%) brightness(1) contrast(1.2);
    transform: scale(1.08);
}

.logo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(138, 43, 226, 0.9));
    color: white;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    text-align: center;
    font-weight: 600;
}

.logo-item:hover .logo-overlay {
    transform: translateY(0);
}

/* Enhanced Testimonials */
.testimonials {
    padding: 5rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.testimonials-compact {
    padding: 2.5rem 0;
    background: var(--dark-bg);
}

.testimonials-compact::before {
    display: none;
}

.testimonials-compact h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: var(--text-color);
}

.testimonials-compact .testimonials-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonials-compact .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.testimonials-compact .testimonial-card {
    background: rgba(91, 45, 144, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1.2rem;
    border: 1px solid rgba(151, 71, 255, 0.3);
    transition: all 0.3s ease;
}

.testimonials-compact .testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(91, 45, 144, 0.3);
    border-color: rgba(151, 71, 255, 0.5);
    box-shadow: 0 10px 25px rgba(151, 71, 255, 0.2);
}

.testimonials-compact .quote-icon {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-family: serif;
    display: block;
}

.testimonials-compact .testimonial-content p {
    font-size: 0.9rem;
    line-height: 1.5;
    font-style: italic;
    margin: 0;
    color: var(--text-color);
}

.testimonials-compact .testimonial-author {
    display: flex;
    align-items: center;
    gap: 0;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(151, 71, 255, 0.3);
    margin-top: 0.8rem;
}

.testimonials-compact .author-info h4 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-color);
}

.testimonials-compact .author-info span {
    display: block;
    font-size: 0.85rem;
    opacity: 0.8;
    color: var(--text-color);
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.testimonials h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 2px;
}

.testimonials-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    transition: left 0.6s ease;
}

.testimonial-card:hover::before {
    left: 0;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.quote-icon {
    font-size: 3.5rem;
    color: #FFD700;
    margin-bottom: 1.5rem;
    font-family: serif;
    display: block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    font-style: italic;
    margin: 0;
    position: relative;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.author-info h4 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFD700;
}

.author-info span {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

/* Enhanced Reference Images */
.reference-images {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(43, 10, 61, 0.95), rgba(91, 45, 144, 0.95));
    position: relative;
}

.reference-images::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #8A2BE2, transparent);
}

.reference-images h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #FFFFFF;
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
}

.reference-images h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    font-style: italic;
    opacity: 0.9;
}

.images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.image-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(151, 71, 255, 0.3);
    backdrop-filter: blur(10px);
}

.image-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #8A2BE2, #4B0082);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 2;
}

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

.image-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 15px 40px rgba(151, 71, 255, 0.3);
    border-color: rgba(151, 71, 255, 0.5);
    background: rgba(255, 255, 255, 0.25);
}

.image-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.4s ease;
}

.friesland-logo-card .logo-display {
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
}

.friesland-logo-card .logo-display img {
    max-width: 120px;
    max-height: 60px;
    width: 120px;
    height: 60px;
    object-fit: contain;
    object-position: center;
    filter: none;
}

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

.friesland-logo-card:hover .logo-display img {
    transform: scale(1.08);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(43, 10, 61, 0.95));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(5px);
}

.image-card:hover .image-overlay {
    transform: translateY(0);
}

.image-content {
    padding: 0;
}

.image-overlay h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #FFD700;
}

.image-overlay p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.image-tag {
    display: inline-block;
    background: linear-gradient(135deg, #8A2BE2, #4B0082);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Expertise Areas Section */
.expertise-areas {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.expertise-areas h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #8A2BE2;
    margin-bottom: 3rem;
    font-weight: 600;
}

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

.expertise-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.9));
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(43, 10, 61, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(151, 71, 255, 0.1);
    backdrop-filter: blur(5px);
}

.expertise-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #8A2BE2, #4B0082);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.expertise-item:hover::before {
    transform: scaleX(1);
}

.expertise-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(43, 10, 61, 0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(248, 249, 250, 0.95));
    border-color: rgba(151, 71, 255, 0.3);
}

.expertise-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.expertise-item h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.expertise-item p {
    color: #666;
    line-height: 1.6;
}

/* Enhanced CTA Section */
.references-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #8A2BE2, #4B0082);
    color: white;
    position: relative;
    overflow: hidden;
}

.references-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #333;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FFA500, #FFD700);
    transition: left 0.4s ease;
    z-index: -1;
}

.cta-button:hover::before {
    left: 0;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.5);
    color: #222;
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
    .references-hero {
        padding: 100px 16px 32px 16px;
        text-align: center;
    }

    .references-hero-content {
        flex-direction: column-reverse;
        gap: 24px;
    }

    .references-hero h1 {
        font-size: 28px;
    }

    .references-hero h2 {
        font-size: 18px;
    }

    .references-hero-image {
        flex-direction: column;
        gap: 1rem;
    }

    .references-hero-logo {
        width: 120px;
    }

    .testimonials-compact {
        padding: 2rem 0;
    }

    .testimonials-compact h2 {
        font-size: 1.6rem;
    }

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

    .testimonials-compact .testimonial-card {
        padding: 1.2rem;
    }

    .testimonials-compact .testimonial-content p {
        font-size: 0.9rem;
    }
    
    .client-logos-mixed {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        max-width: 500px;
    }
    
    .client-logo-item {
        padding: 0.8rem;
        min-height: 70px;
    }

    .client-logo-item img {
        max-width: 100px;
        max-height: 50px;
        width: 100px;
        height: 50px;
    }
    
    .logo-item img {
        max-width: 100px;
        max-height: 50px;
        width: 100px;
        height: 50px;
    }
    
    .client-name-item {
        font-size: 1rem;
        padding: 0.8rem;
        min-height: 70px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .images-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .image-card img {
        height: 200px;
    }

    .friesland-logo-card .logo-display {
        height: 200px;
        padding: 1.5rem;
    }
    
    .friesland-logo-card .logo-display img {
        max-width: 100px;
        max-height: 50px;
        width: 100px;
        height: 50px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .client-logos h2,
    .testimonials h2,
    .reference-images h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .references-hero {
        padding: 80px 16px 20px 16px;
    }
    
    .references-hero h1 {
        font-size: 24px;
    }
    
    .references-hero h2 {
        font-size: 16px;
    }

    .references-hero-logo {
        width: 100px;
    }
    
    .client-logos,
    .testimonials,
    .reference-images,
    .references-cta {
        padding: 3rem 0;
    }

    .client-logos-mixed {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        max-width: 300px;
    }
    
    .client-logo-item {
        padding: 0.6rem;
        min-height: 60px;
    }

    .client-logo-item img {
        max-width: 80px;
        max-height: 35px;
        width: 80px;
        height: 35px;
    }
    
    .logo-item img {
        max-width: 80px;
        max-height: 35px;
        width: 80px;
        height: 35px;
    }
    
    .friesland-logo-card .logo-display img {
        max-width: 80px;
        max-height: 35px;
        width: 80px;
        height: 35px;
    }
    
    .client-name-item {
        font-size: 0.95rem;
        padding: 0.6rem;
        min-height: 60px;
    }
    
    .intro-content p {
        font-size: 1rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .quote-icon {
        font-size: 3rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }
}

/* Logo Size Consistency Override - Force ONLY client logos to same dimensions */
.client-logo-item img,
.client-logos-mixed img {
    max-width: 120px !important;
    max-height: 60px !important;
    width: 120px !important;
    height: 60px !important;
    object-fit: contain !important;
    object-position: center !important;
}

/* Tablet responsive override */
@media (max-width: 768px) {
    .client-logo-item img,
    .client-logos-mixed img {
        max-width: 100px !important;
        max-height: 50px !important;
        width: 100px !important;
        height: 50px !important;
    }
}

/* Mobile responsive override */
@media (max-width: 480px) {
    .client-logo-item img,
    .client-logos-mixed img {
        max-width: 80px !important;
        max-height: 35px !important;
        width: 80px !important;
        height: 35px !important;
    }
}

/* Logo Container Consistency Override - Force ONLY client logo containers to same dimensions */
.client-logo-item {
    min-height: 100px !important;
    max-height: 100px !important;
    height: 100px !important;
    min-width: 180px !important;
    max-width: 180px !important;
    width: 180px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 1rem !important;
    box-sizing: border-box !important;
}

/* Tablet responsive container override */
@media (max-width: 768px) {
    .client-logo-item {
        min-height: 80px !important;
        max-height: 80px !important;
        height: 80px !important;
        min-width: 150px !important;
        max-width: 150px !important;
        width: 150px !important;
        padding: 0.8rem !important;
    }
}

/* Mobile responsive container override */
@media (max-width: 480px) {
    .client-logo-item {
        min-height: 70px !important;
        max-height: 70px !important;
        height: 70px !important;
        min-width: 130px !important;
        max-width: 130px !important;
        width: 130px !important;
        padding: 0.6rem !important;
    }
}



/* Interactives Page Styles */
.interactives-page {
    min-height: 100vh;
    background: var(--dark-bg);
}

/* Interactives Hero Section */
.interactives-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 120px;
    padding-bottom: 40px;
    padding-left: 32px;
    padding-right: 32px;
    overflow: hidden;
    background: none;
}

.interactives-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.interactives-hero .hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.interactives-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(43, 10, 61, 0.85), 
        rgba(91, 45, 144, 0.85)
    );
    z-index: 2;
}

.interactives-hero .container {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 1rem;
}

.interactives-hero h1 {
    color: var(--text-color);
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    letter-spacing: 1px;
    line-height: 1.2;
}

.interactives-hero .hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    font-weight: 300;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    max-width: 700px;
    margin: 0 auto;
}

/* Interactives Intro Section */
.interactives-intro {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 4rem 0;
    position: relative;
    z-index: 2;
    margin-top: -2rem;
    border-radius: 15px 15px 0 0;
}

.interactives-intro .container {
    position: relative;
    z-index: 2;
}

.interactives-intro .intro-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.interactives-intro h2 {
    color: var(--text-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.interactives-intro p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    font-weight: 400;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    padding: 0 1rem;
}

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

.status-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    border: 1px solid rgba(151, 71, 255, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.status-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(151, 71, 255, 0.4);
    box-shadow: 0 8px 25px rgba(151, 71, 255, 0.15);
}

.status-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.status-item h3 {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.status-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}



/* Interactives CTA Section */
.interactives-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    position: relative;
    overflow: hidden;
}

.interactives-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(151, 71, 255, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.interactives-cta h2 {
    color: var(--text-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.interactives-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* Responsive Design for Interactives */
@media (max-width: 768px) {
    .interactives-hero {
        padding: 100px 16px 32px 16px;
    }

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

    .interactives-hero .hero-subtitle {
        font-size: 1.1rem;
    }

    .interactives-intro {
        margin-top: -1rem;
        padding: 3rem 0;
    }

    .interactives-intro h2 {
        font-size: 2rem;
    }

    .interactives-intro p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

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

    .interactives-cta {
        padding: 4rem 0;
    }

    .interactives-cta h2 {
        font-size: 2rem;
    }

    .interactives-cta p {
        font-size: 1.1rem;
    }
}

/* Technology Timeline Scroller Styles */
.timeline-tool {
    padding: 3rem 0;
    background: url('Achtergrond visie op innovatie.png') center center/cover no-repeat;
    position: relative;
}

.timeline-tool::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(43, 10, 61, 0.2),
        rgba(91, 45, 144, 0.2)
    );
    z-index: 1;
}

.timeline-tool .container {
    position: relative;
    z-index: 2;
}

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

.timeline-header h2 {
    color: var(--text-color);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.timeline-play-btn {
    background: linear-gradient(135deg, #FFD700, #FF6B6B);
    color: #1A0624;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-play-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
}

.timeline-play-btn:active {
    transform: translateY(-1px) scale(1.02);
}

.timeline-wrapper {
    background: rgba(43, 10, 61, 0.8);
    border-radius: 20px;
    padding: 1.5rem;
    border: 2px solid rgba(151, 71, 255, 0.3);
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
}

.timeline-track {
    position: relative;
    padding: 1rem 0;
}

.tech-milestone {
    display: grid;
    grid-template-columns: 200px 1fr;
    align-items: center;
    margin-bottom: 1rem;
    position: relative;
    cursor: pointer;
    transition: all 0.4s ease;
    padding: 0.8rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(151, 71, 255, 0.2);
    gap: 1rem;
}

.tech-milestone:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(151, 71, 255, 0.4);
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(151, 71, 255, 0.2);
}

.tech-milestone:last-child {
    margin-bottom: 0;
}

.milestone-marker {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 200px;
    width: 200px;
    z-index: 2;
    position: relative;
}

.tech-icon {
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(151, 71, 255, 0.4);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.tech-milestone:hover .tech-icon {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(151, 71, 255, 0.6);
    border-color: rgba(255, 255, 255, 0.4);
}

.tech-info h3 {
    color: var(--text-color);
    font-size: 1rem;
    margin-bottom: 0.2rem;
    font-weight: 600;
    line-height: 1.2;
}

.adoption-time {
    color: #FFD700;
    font-size: 0.85rem;
    font-weight: 600;
    background: rgba(255, 215, 0, 0.15);
    padding: 0.2rem 0.6rem;
    border-radius: 8px;
    display: inline-block;
    border: 1px solid rgba(255, 215, 0, 0.3);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: scale(0.8);
}

.milestone-bar {
    height: 16px;
    background: linear-gradient(135deg, #9747FF, #5B2D90);
    border-radius: 8px;
    margin-left: 0;
    position: relative;
    transition: all 3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 12px rgba(151, 71, 255, 0.4);
    min-width: 0px;
    width: 0%;
    transform-origin: left center;
    border: 1px solid rgba(151, 71, 255, 0.4);
    overflow: hidden;
}

.milestone-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.8s ease;
}

.milestone-bar.animating::after {
    left: 100%;
}

.milestone-bar.chatgpt-special {
    animation: dramaticPulse 2s infinite;
}

@keyframes dramaticPulse {
    0% { 
        box-shadow: 0 8px 25px rgba(255, 215, 0, 0.8);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 12px 35px rgba(255, 215, 0, 1), 0 0 50px rgba(255, 107, 107, 0.6);
        transform: scale(1.05);
    }
    100% { 
        box-shadow: 0 8px 25px rgba(255, 215, 0, 0.8);
        transform: scale(1);
    }
}

/* Bar widths are controlled by JavaScript animation only */
/*.milestone-bar[data-width="100"] { width: 100%; }
.milestone-bar[data-width="34"] { width: 34.2%; }
.milestone-bar[data-width="11"] { width: 10.5%; }
.milestone-bar[data-width="9"] { width: 9.2%; }
.milestone-bar[data-width="5"] { width: 5.3%; }
.milestone-bar[data-width="0.4"] { 
    width: 1%; 
    min-width: 8px; 
    background: linear-gradient(135deg, #FFD700, #FF6B6B);
    position: relative;
}*/

/* Tooltip disabled - controlled by JavaScript only */
/*.milestone-bar[data-width="0.4"]::before {
    content: '← Extreem klein!';
    position: absolute;
    right: -120px;
    top: -25px;
    color: #FFD700;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    background: rgba(43, 10, 61, 0.9);
    padding: 0.3rem 0.8rem;
    border-radius: 8px;
    border: 1px solid #FFD700;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.tech-milestone.highlight .milestone-bar[data-width="0.4"]::before,
.tech-milestone.active .milestone-bar[data-width="0.4"]::before {
    opacity: 1;
}*/

.timeline-scale {
    margin-top: 1rem;
    padding: 0.5rem 0;
    border-top: 1px solid rgba(151, 71, 255, 0.3);
}

.scale-line {
    position: relative;
    height: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(90deg, 
        var(--accent-color) 0%, 
        transparent 2px
    );
    background-size: 25% 100%;
    border-radius: 2px;
}

.scale-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.7rem;
    font-weight: 500;
    background: rgba(43, 10, 61, 0.7);
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    border: 1px solid rgba(151, 71, 255, 0.2);
}

.timeline-insight {
    text-align: center;
    margin-top: 1.5rem;
}

.big-stat {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 107, 107, 0.15));
    border: 2px solid #FFD700;
    border-radius: 15px;
    padding: 1rem 2rem;
    position: relative;
    backdrop-filter: blur(10px);
}

.big-stat::before {
    content: '⚡';
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 1.5rem;
    background: linear-gradient(135deg, #FFD700, #FF6B6B);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.big-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1;
    background: linear-gradient(135deg, #FFD700, #FF6B6B);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
    display: block;
    margin-bottom: 0.2rem;
}

.stat-label {
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(255, 215, 0, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
}

.tech-milestone.active .milestone-bar {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    height: 12px;
}

/* Verwijderde oude timeline controls en insights - vervangen door compacte versie */

.shock-stat {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 107, 107, 0.15)) !important;
    border: 2px solid #FFD700 !important;
    text-align: center;
    position: relative;
    overflow: visible;
}

.shock-stat::before {
    content: '⚡';
    position: absolute;
    top: -15px;
    left: -15px;
    font-size: 2rem;
    background: linear-gradient(135deg, #FFD700, #FF6B6B);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
    border: 3px solid rgba(255, 215, 0, 0.3);
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(255, 215, 0, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
}

.big-number {
    font-size: 4rem;
    font-weight: 900;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin: 1rem 0;
    line-height: 1;
    background: linear-gradient(135deg, #FFD700, #FF6B6B);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

.shock-stat h4 {
    color: #FFD700 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem !important;
    margin-bottom: 0.5rem !important;
}

.shock-stat p small {
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    font-size: 0.8rem;
}

/* Tool Details Section */
.tool-details {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    position: relative;
}

.tool-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.details-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.tool-details h2 {
    color: var(--text-color);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.detail-point {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    text-align: center;
}

.detail-point:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.detail-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.detail-point h3 {
    color: var(--text-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.detail-point p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 1rem;
}

/* Timeline Animation Classes */
.tech-milestone.animate-in {
    animation: slideInLeft 0.8s ease-out forwards;
}

.tech-milestone.animate-bar {
    animation: none;
}

.tech-milestone.animate-bar .milestone-bar {
    animation: expandBar 1.5s ease-out forwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes expandBar {
    from {
        width: 0%;
    }
    to {
        width: var(--final-width);
    }
}

.tech-milestone.highlight {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.tech-milestone.highlight .tech-icon {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    transform: scale(1.2);
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.6);
}

/* Responsive Design for Timeline */
@media (max-width: 1024px) {
    .timeline-tool {
        padding: 4rem 0;
    }

    .timeline-header h2 {
        font-size: 2.5rem;
    }

    .timeline-wrapper {
        padding: 2rem;
    }

    .milestone-marker {
        min-width: 180px;
        gap: 1rem;
    }

    .tech-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .timeline-tool {
        padding: 2rem 0;
    }

    .timeline-header h2 {
        font-size: 1.6rem;
        line-height: 1.2;
        margin-bottom: 1rem;
        text-align: center;
        padding: 0 1rem;
    }

    .timeline-play-btn {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
        margin: 0 auto 1.5rem auto;
        display: block;
        width: fit-content;
    }

    .timeline-wrapper {
        padding: 1rem;
        margin: 0;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.02);
        overflow: hidden;
    }

    .tech-milestone {
        padding: 0.8rem;
        margin-bottom: 1rem;
        display: block;
        width: 100%;
        box-sizing: border-box;
    }

    .milestone-marker {
        min-width: 140px;
        gap: 0.8rem;
        display: flex;
        align-items: center;
        flex-wrap: nowrap;
        width: 100%;
    }

    .tech-icon {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
        flex-shrink: 0;
    }

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

    .tech-info h3 {
        font-size: 0.95rem;
        line-height: 1.2;
        margin-bottom: 0.2rem;
        word-wrap: break-word;
    }

    .adoption-time {
        font-size: 0.75rem;
        padding: 0.2rem 0.6rem;
        white-space: nowrap;
        display: inline-block;
    }

    .milestone-bar {
        height: 8px;
        margin-left: 1rem;
        margin-top: 0.5rem;
        border-radius: 4px;
        width: calc(100% - 1rem);
        max-width: 100%;
    }

    .timeline-scale {
        margin-top: 1rem;
        padding: 0.5rem 0;
        overflow-x: auto;
    }

    .scale-line {
        padding: 0 1rem;
        min-width: 300px;
    }

    .scale-label {
        font-size: 0.65rem;
        padding: 0.1rem 0.4rem;
    }

    .timeline-insight {
        margin-top: 1.5rem;
        text-align: center;
    }

    .big-stat {
        padding: 1rem 1.5rem;
        margin: 0 auto;
        max-width: 280px;
    }

    .big-number {
        font-size: 2.2rem;
        line-height: 1;
    }

    .stat-label {
        font-size: 0.85rem;
        margin-top: 0.3rem;
    }
}

/* Extra small mobile devices (iPhone SE and smaller) */
@media (max-width: 390px) {
    .timeline-header h2 {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
        padding: 0 0.5rem;
        text-align: center;
    }

    .timeline-play-btn {
        font-size: 0.9rem;
        padding: 0.7rem 1.2rem;
        margin: 0 auto 1rem auto;
    }

    .timeline-wrapper {
        margin: 0 0.25rem;
        padding: 0.8rem;
    }

    .tech-milestone {
        padding: 0.6rem;
        margin-bottom: 0.8rem;
    }

    .milestone-marker {
        min-width: 120px;
        gap: 0.6rem;
    }

    .tech-icon {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }

    .tech-info h3 {
        font-size: 0.85rem;
        line-height: 1.1;
    }

    .adoption-time {
        font-size: 0.7rem;
        padding: 0.15rem 0.5rem;
    }

    .milestone-bar {
        height: 6px;
        margin-left: 0.8rem;
        margin-top: 0.4rem;
    }

    .timeline-scale {
        margin-top: 0.8rem;
        padding: 0.4rem 0;
    }

    .scale-line {
        padding: 0 0.8rem;
        min-width: 280px;
    }

    .scale-label {
        font-size: 0.6rem;
        padding: 0.1rem 0.3rem;
    }

    .big-stat {
        padding: 0.8rem 1rem;
        max-width: 220px;
    }

    .big-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }
}

/* Standard 480px breakpoint for larger small devices */
@media (max-width: 480px) and (min-width: 391px) {
    .timeline-header h2 {
        font-size: 1.5rem;
    }

    .timeline-wrapper {
        margin: 0 0.5rem;
        padding: 0.9rem;
    }

    .tech-milestone {
        padding: 0.7rem;
    }

    .tech-icon {
        width: 38px;
        height: 38px;
        font-size: 1.2rem;
    }

    .tech-info h3 {
        font-size: 0.9rem;
    }

    .adoption-time {
        font-size: 0.75rem;
        padding: 0.18rem 0.55rem;
    }

    .big-stat {
        padding: 0.9rem 1.3rem;
        max-width: 250px;
    }

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

/* Landscape mode for small mobile devices */
@media (max-height: 500px) and (max-width: 768px) and (orientation: landscape) {
    .timeline-tool {
        padding: 1rem 0;
    }

    .timeline-header h2 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }

    .timeline-play-btn {
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
        margin-bottom: 0.8rem;
    }

    .timeline-wrapper {
        padding: 0.6rem;
    }

    .tech-milestone {
        padding: 0.4rem;
        margin-bottom: 0.5rem;
    }

    .timeline-insight {
        margin-top: 0.8rem;
    }

    .big-stat {
        padding: 0.6rem 1rem;
    }

    .big-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }
}

/* Enhanced Mobile Responsiveness for Timeline */
@media (max-width: 768px) {
    .timeline-tool {
        padding: 2rem 0;
    }

    .timeline-header h2 {
        font-size: 1.6rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .timeline-play-btn {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
        margin: 0 auto 1.5rem auto;
        display: block;
        width: fit-content;
    }

    .timeline-wrapper {
        padding: 1rem;
        margin: 0;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.02);
    }

    .tech-milestone {
        padding: 0.8rem;
        margin-bottom: 1rem;
        display: block;
        width: 100%;
    }

    .milestone-marker {
        min-width: 140px;
        gap: 0.8rem;
        display: flex;
        align-items: center;
        flex-wrap: nowrap;
    }

    .tech-icon {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
        flex-shrink: 0;
    }

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

    .tech-info h3 {
        font-size: 0.95rem;
        line-height: 1.2;
        margin-bottom: 0.2rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .adoption-time {
        font-size: 0.75rem;
        padding: 0.2rem 0.6rem;
        white-space: nowrap;
    }

    .milestone-bar {
        height: 8px;
        margin-left: 1rem;
        margin-top: 0.5rem;
        border-radius: 4px;
    }

    .timeline-scale {
        margin-top: 1rem;
        padding: 0.5rem 0;
        overflow: hidden;
    }

    .scale-line {
        padding: 0 1rem;
    }

    .scale-label {
        font-size: 0.65rem;
        padding: 0.1rem 0.4rem;
    }

    .timeline-insight {
        margin-top: 1.5rem;
        text-align: center;
    }

    .big-stat {
        padding: 1rem 1.5rem;
        margin: 0 auto;
        max-width: 250px;
    }

    .big-number {
        font-size: 2.2rem;
        line-height: 1;
    }

    .stat-label {
        font-size: 0.85rem;
        margin-top: 0.3rem;
    }
}

/* Extra small mobile devices (iPhone SE, etc.) */
@media (max-width: 390px) {
    .timeline-header h2 {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
        padding: 0 1rem;
        text-align: center;
    }

    .timeline-play-btn {
        font-size: 0.9rem;
        padding: 0.7rem 1.2rem;
        margin: 0 auto 1rem auto;
    }

    .timeline-wrapper {
        margin: 0 0.5rem;
        padding: 0.8rem;
    }

    .tech-milestone {
        padding: 0.6rem;
        margin-bottom: 0.8rem;
    }

    .milestone-marker {
        min-width: 120px;
        gap: 0.6rem;
    }

    .tech-icon {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }

    .tech-info h3 {
        font-size: 0.85rem;
        line-height: 1.1;
    }

    .adoption-time {
        font-size: 0.7rem;
        padding: 0.15rem 0.5rem;
    }

    .milestone-bar {
        height: 6px;
        margin-left: 0.8rem;
        margin-top: 0.4rem;
    }

    .timeline-scale {
        margin-top: 0.8rem;
        padding: 0.4rem 0;
    }

    .scale-line {
        padding: 0 0.8rem;
    }

    .scale-label {
        font-size: 0.6rem;
        padding: 0.1rem 0.3rem;
    }

    .big-stat {
        padding: 0.8rem 1rem;
        max-width: 200px;
    }

    .big-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }
}

/* Landscape mode for small mobile devices */
@media (max-height: 500px) and (max-width: 768px) {
    .timeline-tool {
        padding: 1rem 0;
    }

    .timeline-header h2 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }

    .timeline-play-btn {
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
        margin-bottom: 0.8rem;
    }

    .timeline-wrapper {
        padding: 0.6rem;
    }

    .tech-milestone {
        padding: 0.4rem;
        margin-bottom: 0.5rem;
    }

    .timeline-insight {
        margin-top: 0.8rem;
    }

    .big-stat {
        padding: 0.6rem 1rem;
    }

    .big-number {
        font-size: 1.5rem;
    }
}