/**
 * 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;
    --color-text-muted: #666;
}

/* ============================================
   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;
}

* {
    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;
    align-items: center;
}

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

.menu-items .primary-menu > li > a {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
}

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

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

.register-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.btn,
.button,
.btn-green,
.submit-btn,
.demo-button,
.cookie-settings-btn,
.toggle-btn,
.cta-button {
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    border-radius: 8px;
    cursor: pointer;
}

.btn {
    padding: 0.5rem 1rem;
    /* border-radius: 6px; - overridden by base 8px, or keep 6px if needed. I'll keep 6px to be safe */
    border-radius: 6px; 
}

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

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

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

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

.btn-register:hover {
    background: var(--color-accent);
}

/* Trial Badge Styles */
.trial-badge {
    position: absolute;
    left: calc(100% + 20px);
    background: linear-gradient(135deg, #ea981e 0%, #e99c18 100%);
    color: white;
    padding: 0.4rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(64, 161, 63, 0.4);
    display: flex;
    align-items: center;
    gap: 0.35rem;
    opacity: 0;
    transform: scale(0);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 10;
}

.trial-badge.show {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.trial-badge.show.pulse {
    animation: pulse 2s ease-in-out infinite;
}

.trial-icon {
    font-size: 1rem;
    line-height: 1;
}

.trial-text {
    line-height: 1;
}

.trial-close {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    margin-left: 0.25rem;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.trial-close:hover {
    opacity: 1;
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(64, 161, 63, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 16px rgba(64, 161, 63, 0.6);
    }
}

/* 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;
}

/* Dropdown Menu Styles */
.menu-items .primary-menu > li {
    position: relative;
}

.menu-items .primary-menu > li.menu-item-has-children > a {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    cursor: pointer;
}

.menu-items .primary-menu > li.menu-item-has-children > a::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    transition: transform 0.2s ease;
    margin-left: 0.25rem;
}

.menu-items .primary-menu > li.menu-item-has-children:hover > a::after,
.menu-items .primary-menu > li.menu-item-has-children.open > a::after {
    transform: rotate(180deg);
}

.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.2s ease;
    padding: 0.75rem 0;
    margin-top: 0;
    z-index: 1000;
    list-style: none !important;
}

/* Invisible bridge to prevent dropdown from closing */
.menu-items .primary-menu > li.menu-item-has-children::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 10px;
}

.menu-items .primary-menu > li.menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.sub-menu li {
    margin: 0 !important;
    border: none !important;
    list-style: none !important;
}

.sub-menu li a {
    display: block;
    padding: 0.6rem 1.75rem;
    color: var(--color-text) !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.sub-menu li a:hover {
    background: var(--color-gray);
    color: var(--color-accent) !important;
}

/* ============================================
   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: 1.05rem;
    font-weight: 500;
    color: #333;
	margin: 12px 0 18px;
}

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

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

@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: var(--color-gray);
    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;
    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%;
}

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

.features .container {
    max-width: 1000px;
    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;
}

/* ============================================
   About Section
   ============================================ */
.about-section {
    padding-top: 1.5rem;
    background: var(--color-gray);
    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-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;
}

/* ============================================
   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;
    font-size: 1.1rem;
    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;
}

/* ============================================
   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: var(--color-text-muted);
}

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

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

.link-category h3 {
    color: var(--color-text-muted);
    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: var(--color-text-muted);
    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: var(--color-text-muted);
}

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

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

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

.wat-het-doet h1,
.voor-wie-content h1,
.privacy 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;
    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-bottom: 2rem;
}

.intro {
    font-size: 1.1rem;
    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: 1200px;
    margin: 0 auto;
}

.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;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

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

.cookie-settings-text {
    font-size: 0.9rem;
    color: var(--color-gray);
    margin: 0;
}

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

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

.over-ons h1 {
    font-size: 2.4rem;
    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: 1000px;
    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;
}

/* Responsive Design */
@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;
    }
}

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

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

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

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

.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);
    font-size: 1rem;
    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;
}

.price-note {
    font-size: 0.875rem;
    color: var(--color-gray);
    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;
    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-color: var(--color-gray);
    /*padding-top: 80px; */
}


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

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


/* === Page Content - Global Styling === */

.page-content .entry-content .single-post {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  line-height: 1.7;
  font-size: 1.05rem;
  color: #1d293f;
}

/* Headings */
.page-content h1 {
	color: var(--color-primary);
  font-size: 2.4rem;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
	text-align: center;
}

.page-content h2 {
  font-size: 1.8rem;
  margin-top: 2.8rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.page-content h3 {
  font-size: 1.35rem;
  margin-top: 1.8rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

/* Paragraph spacing */
.page-content p {
  margin-bottom: 1.25rem;
  /*max-width: 70ch;  prettige leesbreedte */
}

/* Lists */
.page-content ul,
.page-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  line-height: 1.7;
}

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

/* Links */
.page-content a {
  color: var(--color-accent);
  font-weight: 500;
  text-decoration: none;
}

.page-content a:hover {
  text-decoration: underline;
}

/* Images */
.page-content img.aligncenter,
.page-content figure.aligncenter,
.page-content .wp-block-image .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-content .wp-block-image {
  text-align: center;
}

/* Section spacing (optioneel extra ritme) */
.page-content .section {
  margin-bottom: 2.5rem;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .page-content {
    padding: 1.5rem 1rem;
    font-size: 1rem;
    line-height: 1.6;
  }

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

  .page-content h2 {
    font-size: 1.55rem;
  }
}

.feature-block {
  margin-bottom: 2rem;
}

/* Blog Grid & Cards */

.container.page-content {
	max-width: 1200px;
	margin: 0 auto;
	padding-bottom: 4rem;
}

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

.blog-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

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

.blog-card-category {
    background: rgba(64, 161, 63, 0.1); /* Light green variation */
    color: var(--color-accent); /* Main green */
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-card-date {
    font-size: 0.85rem;
    color: #9CA3AF; /* Gray */
}

.blog-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0 0 0.75rem;
    line-height: 1.4;
}

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

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

.blog-card-footer {
    margin-top: auto;
}

.blog-read-more-link {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: underline;
    font-size: 0.95rem;
}

.blog-read-more-link:hover {
    color: var(--color-accent);
}

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

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

/* ============================================
   Related Articles
   ============================================ */
.related-articles {
    padding: 4rem 0;
    margin-top: 4rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

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

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

.related-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
    display: flex;
    flex-direction: column;
}

.related-item:hover {
    transform: translateY(-4px);
}

.related-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.related-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.related-post-title {
    font-size: 1.25rem;
    margin: 0 0 1rem;
    line-height: 1.4;
    font-weight: 600;
}

.related-post-title a {
    color: var(--color-primary);
    text-decoration: none;
}

.related-excerpt {
    font-size: 0.95rem;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    flex: 1;
    line-height: 1.6;
}

.related-content .read-more {
    color: var(--color-accent);
    font-weight: 600;
    text-decoration: none;
    margin-top: auto;
    display: inline-block;
}

/* ============================================
   Single Post Grid Layout
   ============================================ */
.single-post-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    padding: 4rem 0;
    align-items: start;
}

.single-sidebar {
    position: sticky;
    top: 100px; /* Adjust based on header height */
}

.sidebar-widget {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.sidebar-widget:last-child {
    border-bottom: none;
}

.meta-label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

/* Author Widget */
.author-widget {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar img {
    border-radius: 50%;
    width: 64px;
    height: 64px;
    object-fit: cover;
}

.author-name {
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1.1rem;
}

/* Date Widget */
.date-widget time {
    font-size: 1.1rem;
    color: var(--color-text);
    font-weight: 500;
}

/* TOC Widget */
.toc-title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

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

.toc-item {
    margin-bottom: 0.5rem;
}

.toc-item a {
    text-decoration: none;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    transition: color 0.2s ease;
    display: block;
    line-height: 1.4;
}

.toc-item a:hover {
    color: var(--color-accent);
}

.toc-h3 {
    padding-left: 1rem;
    font-size: 0.9rem;
}

/* Entry Meta Top (Category above title) */
.entry-meta-top {
    margin-bottom: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.entry-meta-top a {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.2s ease;
}

.entry-meta-top a:hover {
    color: var(--color-primary);
}

/* CTA Widget */
.cta-widget {
    background: var(--color-light);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.05);
    text-align: center;
    margin-top: 2rem;
}

.cta-widget h3 {
    font-size: 1.2rem;
    color: var(--color-primary);
    margin: 0 0 0.75rem;
}

.cta-widget p {
    font-size: 0.95rem;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.cta-widget .btn {
    width: 100%;
    display: block;
    text-align: center;
}

/* Adjust Content Area */
.single-content-area .entry-header {
    margin-bottom: 2rem;
    text-align: left; /* Override center alignment if needed */
}

.single-content-area .entry-title {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-align: left;
}

/* Ensure content doesn't overflow */
.single-content-area {
    min-width: 0;
}

/* ============================================
   Archive Styles
   ============================================ */
.archive-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.archive-description {
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Subcategories */
.subcategory-list {
    margin-top: 2rem;
    margin-bottom: 3rem;
    /* Removed background/padding to make it part of the page */
}

.subcategory-title {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.subcategory-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.subcategory-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: var(--color-light);
    border-radius: 50px; /* Pill shape */
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
}

.subcategory-item:hover,
.subcategory-item.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.subcategory-item:hover .subcategory-name,
.subcategory-item.active .subcategory-name {
    color: white;
}

.subcategory-name {
    font-weight: 600;
    color: var(--color-primary);
    font-size: 1rem;
    margin-bottom: 0;
}

.subcategory-count {
    display: none;
}

/* Pagination */
.pagination {
    margin-top: 3rem;
    text-align: center;
}

.pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.5rem;
    border-radius: 8px;
    background: white;
    color: var(--color-text);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.pagination .page-numbers.current {
    background: var(--color-primary);
    color: white;
}

.pagination .page-numbers:not(.current):hover {
    background: var(--color-accent);
    color: white;
}

/* ============================================
   Consolidated Responsive Styles
   ============================================ */

@media (max-width: 1024px) {
    /* Single Post Grid */
    .single-post-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .single-sidebar {
        position: static; /* No sticky on mobile */
        border-bottom: 1px solid rgba(0,0,0,0.1);
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }
    
    .single-content-area .entry-title {
        font-size: 2.5rem;
    }

    /* USPs */
    .usps-container {
        flex-wrap: wrap;
        gap: 1rem;
    }

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

    /* Hero */
    .hero {
        padding-top: 6rem;
    }

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

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

    /* Features */
    .features .container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .features-animation {
        order: -1;
    }

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

    /* About */
    .about-section .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    /* Waiting List */
    .waiting-list .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    /* Related Articles */
    .related-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Mobile Menu Toggle */
    .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;
        align-items: stretch;
    }

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

    .menu-items .primary-menu > li > a {
        display: flex;
        padding: 1rem 0;
        justify-content: flex-start;
    }

    .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;
    }

    /* Trial badge mobile positioning - appears below buttons */
    .auth-buttons-mobile .trial-badge {
        position: relative;
        left: auto;
        top: auto;
        margin: 0.75rem auto 0;
        transform: scale(0);
        width: fit-content;
    }

    .auth-buttons-mobile .trial-badge.show {
        transform: scale(1);
    }

    .auth-buttons-mobile .trial-badge.show.pulse {
        animation: pulseMobile 2s ease-in-out infinite;
    }

    @keyframes pulseMobile {
        0%, 100% {
            transform: scale(1);
            box-shadow: 0 4px 12px rgba(64, 161, 63, 0.4);
        }
        50% {
            transform: scale(1.05);
            box-shadow: 0 6px 16px rgba(64, 161, 63, 0.6);
        }
    }

    /* Mobile Dropdown Styles */
    .menu-items .primary-menu > li.menu-item-has-children > a::after {
        margin-left: auto;
    }

    .sub-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        display: none;
        margin: 0;
        padding: 0.5rem 0;
        background: var(--color-gray);
        border-radius: 0;
        min-width: auto;
        width: 100%;
    }

    .menu-items .primary-menu > li.menu-item-has-children.open > .sub-menu {
        display: block;
    }

    .sub-menu li {
        text-align: left;
    }

    .sub-menu li a {
        padding: 0.75rem 1rem;
        margin: 0;
        font-size: 0.9rem;
        color: var(--color-text) !important;
        text-align: left;
        justify-content: flex-start;
    }

    /* Hero */
    .hero h1 {
        font-size: 2.5rem;
    }

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

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

    /* Waiting List */
    .waiting-list {
        padding: 4rem 1rem;
    }

    .signup-form {
        padding: 2rem;
    }

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

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    /* Page Templates */
    .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 */
    .pricing-header h1 {
        font-size: 2rem;
    }

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

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

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

/* ============================================
   Archive CTA Panel
   ============================================ */
.archive-cta-card {
    background: rgba(64, 161, 63, 0.1);
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 3rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-top: 4rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    overflow: hidden;
}

.archive-cta-content {
    flex: 1;
}

.archive-cta-content h3 {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.archive-cta-content p {
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.archive-cta-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.archive-cta-image img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .archive-cta-card {
        flex-direction: column;
        padding: 2rem;
        text-align: center;
        gap: 2rem;
    }
    
    .archive-cta-content h3 {
        font-size: 1.75rem;
    }
}

.archive-cta-content .btn-demo {
    color: white;
}

/* ============================================
   Standard Page Styles
   ============================================ */
.page-content-narrow {
    max-width: 800px; /* Limit width for better readability */
    margin: 0 auto;
}

/* ============================================
   Features Page Template
   ============================================ */
.features-page {
    flex: 1;
    padding: 1.5rem 2rem 4rem;
    background-color: var(--color-gray);
}

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

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

.features-page-title {
    font-size: 2.4rem;
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: 1rem;
}

.features-page-subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-text);
    margin: 0 auto;
}

.features-page-intro {
    margin-bottom: 3rem;
}

.features-page-intro-text {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-text);
}

.features-page-list {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    margin-bottom: 3.5rem;
}

.feature-teaser {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.6fr);
    gap: 2rem;
    align-items: stretch;
    padding: 1rem 0 1.5rem;
}

.feature-teaser--alt {
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.4fr);
}

.feature-teaser-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-teaser-content h2 {
    font-size: 1.6rem;
    margin-top: 0;
    margin-bottom: 0.75rem;
    color: var(--color-primary);
    font-weight: 700;
}

.feature-teaser-content p {
    font-size: 1.02rem;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 0.9rem;
}

.feature-teaser-link a {
    font-weight: 600;
}

.feature-teaser-highlight {
    background: var(--color-light);
    border-radius: 12px;
    padding: 1.5rem 1.75rem;
    border-left: 3px solid var(--color-accent);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-teaser-highlight h3 {
    font-size: 1.2rem;
    margin-top: 0;
    margin-bottom: 0.75rem;
    color: var(--color-primary);
    font-weight: 600;
}

.feature-teaser-highlight p {
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--color-text);
    margin: 0;
}

.feature-teaser-media {
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-teaser-media img {
    width: 100%;
    max-width: 440px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.15);
    display: block;
}

.feature-teaser-media-placeholder {
    width: 100%;
    max-width: 440px;
    aspect-ratio: 4 / 3;
    border-radius: 16px;
    background: radial-gradient(circle at top left, #ffffff, #dbeafe);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    text-align: center;
    color: var(--color-primary);
    font-weight: 500;
    font-size: 0.95rem;
}

.feature-teaser--alt .feature-teaser-text {
    order: 2;
}

.feature-teaser--alt .feature-teaser-media {
    order: 1;
}

.features-page-cta {
    margin-top: 2rem;
}

.features-page-cta-inner {
    margin: 0 auto;
    padding: 0;
    text-align: center;
}

.features-page-cta-inner h2 {
    font-size: 1.9rem;
    color: var(--color-primary);
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.features-page-cta-inner p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-text);
    margin: 0 0 1.5rem;
}

.features-page-cta-actions {
    display: flex;
    justify-content: center;
}

.features-page-cta-inner a,
.features-page-cta-inner .btn,
.features-page-cta-inner .button {
    font-weight: 600;
}

/* ============================================
   Blog CTA Block
   ============================================ */
.blog-cta {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.6fr);
    gap: 2rem;
    align-items: center;
    padding: 2.25rem 2.5rem;
    border-radius: 18px;
    background: rgba(23, 49, 90, 0.05); /* light primary */
    margin: 3rem 0;
}

.blog-cta-content h2 {
    margin: 0 0 0.75rem;
    font-size: 1.8rem;
    color: var(--color-primary);
}

.blog-cta-content p {
    margin: 0 0 1.5rem;
    line-height: 1.7;
    color: var(--color-text);
}

.blog-cta-label {
    display: inline-block;
    margin-bottom: 0.75rem;
    padding: 0.25rem 0.85rem;
    border-radius: 999px;
    background: rgba(23, 49, 90, 0.08);
    color: var(--color-primary);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.blog-cta-button {
    background: var(--color-primary);
    color: #ffffff !important;
    padding: 0.85rem 1.8rem;
    border-radius: 999px;
    border: none;
    text-decoration: none;
}

.blog-cta-button:visited {
    color: #ffffff !important;
}

.blog-cta-button:hover {
    background: var(--color-accent);
}

.blog-cta-media {
    display: flex;
    justify-content: center;
    align-items: center;
}

.blog-cta-media img {
    width: 100%;
    max-width: 420px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.15);
    display: block;
}

.blog-cta-media-placeholder {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 4 / 3;
    border-radius: 16px;
    background: radial-gradient(circle at top left, #ffffff, #dbeafe);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    text-align: center;
    color: var(--color-primary);
    font-weight: 500;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .blog-cta {
        grid-template-columns: 1fr;
        padding: 1.75rem 1.5rem;
    }

    .blog-cta-media {
        order: -1;
    }
}

/* ============================================
   Register CTA Block
   ============================================ */
.register-cta {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.8fr);
    gap: 2rem;
    align-items: center;
    padding: 2.5rem 2.75rem;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    margin: 3rem 0;
}

.register-cta-label {
    display: inline-block;
    margin-bottom: 0.75rem;
    padding: 0.25rem 0.85rem;
    border-radius: 999px;
    background: rgba(64, 161, 63, 0.12);
    color: var(--color-accent);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.register-cta-content h2 {
    margin: 0 0 0.75rem;
    font-size: 1.9rem;
    color: var(--color-primary);
}

.register-cta-content p {
    margin: 0 0 1.5rem;
    line-height: 1.7;
    color: var(--color-text);
}

.register-cta-button {
    background: var(--color-primary);
    color: #ffffff !important;
    padding: 0.9rem 2.1rem;
    border-radius: 999px;
    border: none;
    text-decoration: none;
    font-weight: 600;
}

.register-cta-button:hover {
    background: var(--color-accent);
}

.register-cta-button:visited {
    color: #ffffff !important;
}

.register-cta-media {
    display: flex;
    justify-content: center;
    align-items: center;
}

.register-cta-media img {
    width: 100%;
    max-width: 480px;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
    display: block;
}

@media (max-width: 768px) {
    .register-cta {
        grid-template-columns: 1fr;
        padding: 2rem 1.75rem;
    }

    .register-cta-media {
        order: -1;
    }
}

@media (max-width: 1024px) {
    .feature-teaser,
    .feature-teaser--alt {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .features-page {
        padding: 1.25rem 1rem 3rem;
    }

    .features-page-title {
        font-size: 2rem;
    }

    .feature-teaser {
        padding: 1.75rem 1.5rem;
    }

    .features-page-cta-inner {
        padding: 2rem 1.5rem 1.75rem;
    }
}

/* Proof / testimonial block */

.proof {
  padding: 80px 0;
}

.proof-card {
  max-width: 880px;
  margin: 0 auto;
  padding: 48px 40px;
  background: #ffffff;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.proof-title {
  margin-bottom: 24px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #1e3557; /* zelfde donkerblauw als headings */
}

.proof-quote {
  max-width: 720px;
  margin: 0 auto 16px;
  text-align: center;
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.6;
  color: #1e3557;
}

.proof-author {
  display: block;
  margin-top: 12px;
  font-size: 0.9rem;
  font-weight: 400;
  opacity: 0.65;
}

.proof-note {
  max-width: 600px;
  margin: 0 auto 32px;
  font-size: 0.95rem;
  opacity: 0.8;
}

.proof-cta {
  padding: 10px 26px;   /* iets kleiner dan hero */
  font-size: 0.9rem;
}

.bebolu-integrations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin: 32px 0;
}

.bebolu-integration {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  background: #ffffff;
  font-weight: 500;
}

.bebolu-integration .icon {
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

/* Simple Icons SVG's (inline via background-image) */
.si-shopify {
  background-image: url("https://cdn.simpleicons.org/shopify/95BF47");
}

.si-woocommerce {
  background-image: url("https://cdn.simpleicons.org/woocommerce/96588A");
}

.si-lightspeed {
  background-image: url("https://bebolu.com/wp-content/uploads/2025/12/lightspeed.png");
}

.si-magento {
  background-image: url("https://bebolu.com/wp-content/uploads/2025/12/magento.png");
}

.si-shopware {
  background-image: url("https://cdn.simpleicons.org/shopware/189EFF");
}

.si-prestashop {
  background-image: url("https://cdn.simpleicons.org/prestashop/DF0067");
}

.si-wix {
  background-image: url("https://cdn.simpleicons.org/wix/000000");
}

/* Fallbacks */
.si-logic4 {
  background-image: url("https://bebolu.com/wp-content/uploads/2025/12/logic4-seo-380x97-1.webp");
  width: 40px;
}

.si-code {
  background-image: url("https://cdn.simpleicons.org/code/666666");
}