/**
 * Main Stylesheet for Bebolu Theme
 *
 * @package Bebolu
 * @since 1.0.0
 */

/* ============================================
   CSS Variables
   ============================================ */
:root {
    --color-primary: #17315A;    /* Navy blue from logo */
    --color-accent: #40a13f;     /* Green from logo */
    --color-text: #2C3E50;
    --color-gray: #efefef;
    --color-light: #F8FAFC;
}

.powered-by-credits {
	display: none;
}

/* ============================================
   Global Styles
   ============================================ */
html {
    font-family: 'Poppins', 'Open Sans', system-ui, sans-serif;
    background: white;
    color: var(--color-text);
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
	background: var(--color-gray);
}

* {
    box-sizing: border-box;
}

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

/* ============================================
   Navigation
   ============================================ */
.nav-container {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background: white;
    position: sticky;
    width: 100%;
    top: 0;
    z-index: 100;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

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

.menu-items {
    display: flex;
    gap: 2rem;
}

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

.menu-items .primary-menu li {
    margin: 0;
}

.menu-items .primary-menu a {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 800;
    padding: 0.5rem 0;
    transition: color 0.2s ease;
}

.menu-items .primary-menu a:hover {
    color: var(--color-accent);
}

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

.btn {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.2s ease;
}

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

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

.btn-demo:hover {
    background: #45a049;
    transform: translateY(-1px);
}

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

.btn-register:hover {
    background: var(--color-accent);
    transform: translateY(-1px);
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.auth-buttons-mobile {
    display: none;
    padding: 1rem 0;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .auth-buttons {
        display: none;
    }

    .menu-items {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    }

    .menu-items.active {
        display: block;
    }

    .menu-items .primary-menu {
        flex-direction: column;
        gap: 0;
        padding: 1rem 2rem;
    }

    .menu-items .primary-menu li {
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .menu-items .primary-menu a {
        display: block;
        padding: 1rem 0;
    }

    .auth-buttons-mobile {
        display: block;
        padding: 1rem 2rem;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    .auth-buttons-mobile .btn {
        display: block;
        text-align: center;
    }
}

/* ============================================
   USPs Section
   ============================================ */
.usps {
    background: var(--color-gray);
    padding: 1rem 2rem;
    margin-top: 0;
    position: relative;
    z-index: 50;
}

.usps-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.usp-item {
    flex: 1;
    text-align: center;
}

.usp-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text);
}

.highlight-primary {
    color: var(--color-primary);
}

.highlight-secondary {
    color: var(--color-accent);
}

@media (max-width: 1024px) {
    .usps-container {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .usp-item {
        flex: 0 0 calc(50% - 0.5rem);
    }
}

@media (max-width: 640px) {
    .usps {
        padding: 1rem;
    }

    .usps-container {
        flex-direction: column;
        gap: 0.75rem;
    }

    .usp-item {
        flex: 1 1 100%;
    }

    .usp-text {
        font-size: 0.85rem;
    }
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    padding: 4rem 2rem 4rem;
    background: #efefef;
    min-height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    overflow: hidden;
}

.hero .container {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    overflow: visible;
}

.hero h1 {
    font-size: 4.5rem;
    color: var(--color-primary);
    margin: 0 0 0.5rem;
    line-height: 1.05;
    font-weight: 800;
}

.hero h1 .highlight-green {
    color: var(--color-accent);
    font-weight: 800;
}

.hero h1 .highlight-dark {
    color: #000;
    font-weight: 500;
    font-size: 3rem;
}

.hero .subtitle {
    font-size: 1.15rem;
    color: #000;
    margin: 0 0 1.5rem;
    line-height: 1.5;
    font-weight: 400;
}

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

.button {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
    font-size: 1rem;
}

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

.button.primary:hover {
    background: var(--color-accent);
    transform: translateY(-1px);
}

.button.secondary {
    color: white;
    background: var(--color-accent);
}

.hero-image {
    max-width: 100%;
    position: relative;
    overflow: visible;
    margin-left: -15%;
}

.hero-image img {
    width: 140%;
    height: auto;
    max-width: 140%;
}

@media (max-width: 1024px) {
    .hero {
        padding-top: 6rem;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

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

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

/* ============================================
   Features Section
   ============================================ */
.features {
    padding: 3rem 2rem;
    background: var(--color-primary);
}

.features .container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.features-animation {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-container {
    margin-bottom: 0.5rem;
}

.animated-logo {
    width: 140px;
    height: auto;
}

.reasons-header {
    display: flex;
    align-items: baseline;
    align-self: flex-start;
    margin-bottom: 0;
	gap: 0.5rem;
}

.reason-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
}

.reason-label {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-light);
    letter-spacing: 2px;
}

.features-animation .text {
    color: white;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
    text-align: left;
    max-width: 350px;
    font-weight: 400;
    align-self: flex-start;
}

.reasons-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 350px;
    position: relative;
    align-self: flex-start;
}

.reason-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.reason-item.active {
    opacity: 1;
}

.reason-dot {
    width: 16px;
    height: 16px;
    background: var(--color-accent);
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.reason-item::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--color-accent);
    z-index: 1;
}

.reason-item:first-child::before {
    top: 50%;
}

.reason-item:last-child::before {
    bottom: 50%;
}

.reason-text {
    flex: 1;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.95;
    }
}

.features-content h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.features-content .subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.features-content .subtitle strong {
    color: var(--color-accent);
    cursor: pointer;
}

.feature-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.feature-card .icon {
    font-size: 2rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-card .feature-content {
    flex: 1;
}

.feature-card h3 {
    font-size: 1rem;
    color: white;
    margin: 0;
    font-weight: 600;
}

.feature-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 1024px) {
    .features .container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .features-animation {
        order: -1;
    }

    .feature-cards {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   About Section
   ============================================ */
.about-section {
    padding-top: 4rem;
    background: #f5f5f5;
    padding-bottom: 0;
}

.about-section .container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 4rem;
    align-items: stretch;
}

.about-content h2 {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.about-content h2 .highlight-green {
    color: var(--color-accent);
}

.about-content h3 {
    font-size: 1.2rem;
    color: var(--color-primary);
    margin: 1.5rem 0 0.75rem;
    font-weight: 500;
}

.about-content h3 .highlight-green {
    color: var(--color-accent);
}

.about-content p {
    font-size: 1em;
    color: var(--color-text);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.about-content ul {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0;
}

.about-content ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.4rem;
    position: relative;
    color: var(--color-text);
    line-height: 1.6;
    font-size: 1em;
}

.about-content ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: bold;
}

.about-quote {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    height: 100%;
    justify-content: space-between;
}

.about-quote blockquote {
    margin: 0;
    padding: 2rem;
    border-radius: 8px;
}

.about-quote blockquote p {
    margin: 0;
    font-size: 1rem;
    font-weight: bold;
    color: var(--color-primary);
    line-height: 1.6;
    font-style: italic;
    text-align: right;
}

.btn-green {
    display: block;
    padding: 1rem 2rem;
    background: var(--color-accent);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s ease;
    text-align: center;
    width: 50%;
    margin: 0 auto;
}

.btn-green:hover {
    background: #45a049;
    transform: translateY(-1px);
}

.founders-image {
    text-align: center;
    position: relative;
    flex: 1;
    display: flex;
    align-items: flex-end;
}

.founders-image img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 1024px) {
    .about-section .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* ============================================
   Waiting List Section
   ============================================ */
.waiting-list {
    padding: 10rem 2rem 6rem;
    background: linear-gradient(135deg, var(--color-light) 0%, white 100%);
}

.waiting-list .container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.waiting-list .content h2 {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.waiting-list .subtitle {
    font-size: 1.25rem;
    color: var(--color-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.benefits {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.benefits tr {
    border: none;
}

.benefit-title {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem 1rem 0.75rem 0;
    font-size: 1.1rem;
    color: var(--color-text);
    line-height: 1.5;
    vertical-align: top;
    width: 200px;
}

.benefit-description {
    padding: 0.75rem 0;
    font-size: 1.1rem;
    color: var(--color-text);
    line-height: 1.5;
    vertical-align: top;
}

.benefits svg {
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.benefits strong {
    color: var(--color-primary);
}

.signup-form {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 25px -5px rgb(0 0 0 / 0.1);
    border: 1px solid rgb(0 0 0 / 0.05);
}

.signup-form h3 {
    color: var(--color-primary);
    font-size: 1.75rem;
    margin: 0 0 0.5rem;
}

.form-subtitle {
    color: var(--color-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

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

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

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="url"] {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgb(59 130 246 / 0.1);
}

.submit-btn {
    width: 100%;
    background: var(--color-primary);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.submit-btn:hover {
    background: var(--color-accent);
    transform: translateY(-1px);
}

.privacy-note {
    font-size: 0.85rem;
    color: var(--color-gray);
    text-align: center;
    margin: 0;
    line-height: 1.4;
}

.privacy-note a {
    color: var(--color-primary);
    text-decoration: none;
}

.privacy-note a:hover {
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .waiting-list .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .waiting-list .content {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .waiting-list {
        padding: 4rem 1rem;
    }

    .signup-form {
        padding: 2rem;
    }

    .waiting-list .content h2 {
        font-size: 2rem;
    }
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: white;
}

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

.footer-content {
    display: grid;
    padding-top: 1rem;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
    color: #666;
}

.footer .brand p {
    color: #666;
    font-size: 0.9rem;
}

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

.link-category h3 {
    color: #666;
    font-size: 0.9rem;
}

.link-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.link-category li {
    margin-bottom: 0.5rem;
}

.link-category a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.9rem;
}

.link-category a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    text-align: center;
    color: #666;
	font-size: 0.9rem;
}

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

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

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

/* ============================================
   Cookie Consent
   ============================================ */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-primary);
    color: #666;
    padding: 1rem;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

.cookie-text h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.cookie-text p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.cookie-text a {
    color: #666;
    text-decoration: underline;
    font-weight: 500;
}

.cookie-text a:hover {
    opacity: 0.8;
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-buttons .btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

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

.btn-accept:hover {
    background: #45a049;
}

.btn-necessary {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-necessary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-settings {
    background: transparent;
    color: white;
    text-decoration: underline;
}

.btn-settings:hover {
    opacity: 0.8;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-content {
    background: white;
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-header {
    padding: 1.5rem 1.5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e2e8f0;
}

.modal-header h2 {
    margin: 0;
    color: var(--color-primary);
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-gray);
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover {
    color: var(--color-primary);
}

.modal-body {
    padding: 1rem 1.5rem;
}

.cookie-category {
    margin-bottom: 1.5rem;
}

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

.category-header h4 {
    margin: 0;
    color: var(--color-primary);
}

.toggle-required {
    background: var(--color-gray);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.cookie-category p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-gray);
    line-height: 1.4;
}

/* Toggle Switch */
.toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.2s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.2s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--color-accent);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.modal-footer {
    padding: 1rem 1.5rem 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.hidden {
    display: none !important;
}

/* Floating Cookie Settings Button */
.floating-cookie-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-primary);
    color: white;
    border: none;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-cookie-btn:hover {
    background: var(--color-accent);
    transform: scale(1.1);
}

.floating-cookie-btn:active {
    transform: scale(0.95);
}

/* Responsive Design for Cookie Consent */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

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

    .modal-content {
        margin: 1rem;
    }
}

/* ============================================
   Page Templates
   ============================================ */

/* Wat het doet Page */
.wat-het-doet {
    flex: 1;
	padding-bottom: 6rem;
}

.wat-het-doet h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--color-primary);
    font-weight: 700;
}

.wat-het-doet .container > p {
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.6;
}

.demo-button-container {
    text-align: center;
    margin: 3rem 0;
}

.demo-button {
    background: var(--color-accent);
    color: white;
    border: none;
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.demo-button:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(76, 175, 80, 0.4);
}

.demo-button:active {
    transform: translateY(0);
}

.target-groups {
    display: grid;
    gap: 3rem;
}

.target-group {
    background: var(--color-light);
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--color-accent);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.target-group:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.target-group h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
    font-weight: 600;
}

.target-group p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--color-text);
    margin: 0;
}

/* Voor wie Page */
.voor-wie-content {
    flex: 1;
    padding: 4rem 2rem;
}

.voor-wie-content h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--color-primary);
    font-weight: 700;
}

.intro {
    font-size: 1.25rem;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--color-text);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Privacy Page */
.privacy {
    flex: 1;
    padding: 6rem 2rem;
}

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

.privacy h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--color-primary);
    font-weight: 700;
}

.privacy h2 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--color-primary);
    font-weight: 600;
}

.privacy p,
.privacy ul {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.privacy ul {
    padding-left: 2rem;
}

.cookie-settings-section {
    text-align: center;
    margin: 2rem 0;
    padding: 2rem;
    background: var(--color-light);
    border-radius: 12px;
    border: 2px solid var(--color-accent);
}

.cookie-settings-btn {
    background: var(--color-accent);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 0.5rem;
}

.cookie-settings-btn:hover {
    background: #45a049;
    transform: translateY(-1px);
}

.cookie-settings-text {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* About Page */
.over-ons {
    flex: 1;
    padding-bottom: 2rem;
	background: var(--color-gray);
}

.over-ons .container {
    max-width: 800px;
    margin: 0 auto;
}

.over-ons h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--color-primary);
    font-weight: 700;
}

.over-ons p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

.founders {
    margin-top: 4rem;
    text-align: center;
}

.founders h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--color-primary);
}

.founder {
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.founder h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.founder p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
}

.note {
    margin-top: 2rem;
    font-style: italic;
    color: var(--color-gray);
}

.company-info {
    margin-top: 4rem;
    text-align: center;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
}

.company-info h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.company-info a {
    color: var(--color-accent);
    text-decoration: none;
}

.company-info a:hover {
    text-decoration: underline;
}

/* Pricing Page */
.pricing-section {
    flex: 1;
    padding: 0rem 2rem 4rem;
    background: var(--color-gray);
}

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

.pricing-header h1 {
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.pricing-header .subtitle {
    font-size: 1.25rem;
    color: #666;
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.toggle-btn {
    padding: 0.75rem 2rem;
    border: 2px solid var(--color-primary);
    background: white;
    color: var(--color-primary);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.toggle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.savings-badge {
    background: var(--color-accent);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.pricing-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: var(--color-accent);
    box-shadow: 0 8px 16px rgba(76, 175, 80, 0.2);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--color-accent);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.plan-name {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.price-wrapper {
    margin-bottom: 2rem;
}

.price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary);
}

.period {
    font-size: 1.125rem;
    color: #666
}

.price-note {
    font-size: 0.875rem;
    color: #666;
    margin: 0;
}

.plan-features h4 {
    font-size: 1.125rem;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.plan-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.plan-features li {
    padding: 0.5rem 0;
    color: var(--color-text);
    font-size: 1rem;
}

.cta-button {
    display: block;
    width: 100%;
    padding: 1rem;
    background: var(--color-primary);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.faq-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid #e5e7eb;
}

.faq-section h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 2rem;
}

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

.faq-item h3 {
    font-size: 1.125rem;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

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

/* Page Wrapper */
.page-wrapper {
    display: flex;
    flex-direction: column;
	background: var(--color-gray);
	padding-bottom: 2rem;
}

.entry-header {
    margin-bottom: 2rem;
}

.entry-title {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.entry-content {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--color-text);
}

/* Responsive Design */
@media (max-width: 768px) {
    .wat-het-doet h1,
    .voor-wie-content h1,
    .privacy h1,
    .over-ons h1 {
        font-size: 2.5rem;
    }

    .target-group {
        padding: 2rem;
    }

    .target-groups {
        gap: 2rem;
    }

    .pricing-header h1 {
        font-size: 2rem;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .pricing-toggle {
        flex-direction: column;
    }

    .amount {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .wat-het-doet h1,
    .voor-wie-content h1,
    .privacy h1,
    .over-ons h1 {
        font-size: 2rem;
    }

    .intro {
        font-size: 1rem;
    }

    .target-group {
        padding: 1.5rem;
    }

    .target-group h2 {
        font-size: 1.3rem;
    }

    .target-group p {
        font-size: 1rem;
    }
}

#cookie_action_save, #cookie_action_accept_all {
    background-color: var(--color-primary) !important;
    border: none !important;
    color: #ffffff !important; /* Alleen als je de tekst wit wilt houden */
}
