/* ========== RESET & BASE ========== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: #050816;
    color: #f5f5f5;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ========== LAYOUT: HEADER / FOOTER / CONTAINER / PAGE WRAPPER ========== */

.site-header,
.site-footer {
    background-color: #020617;
    border-bottom: 1px solid #1f2937;
}

.site-header {
    padding-block: 0.75rem;
}

.site-footer {
    border-top: 1px solid #1f2937;
    border-bottom: none;
    padding-block: 1rem;
    font-size: 0.9rem;
}

.container {
    width: min(1100px, 100% - 2rem);
    margin-inline: auto;
    padding-block: 1.5rem;
}

.site-header .container {
    padding-block: 0;
}

/* sticky footer layout */

.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-main {
    flex: 1;
}

/* ========== LAYOUT HELPERS ========== */

.row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap; /* mobile-first */
}

.row--between {
    justify-content: space-between;
}

.row--center {
    align-items: center;
}

/* ========== NAVIGATION / BUTTONS ========== */

.nav__list {
    display: flex;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.nav__list a {
    display: flex;
    align-items: center;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    font-size: 0.95rem;
    line-height: 1;
}

.nav__list a.is-active {
    background-color: #0f172a;
}

.btn {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    border: 1px solid #94a3b8;
    font-weight: 500;
    font-size: 0.95rem;
}

.btn--primary {
    background: linear-gradient(90deg, #22c55e, #22d3ee);
    border-color: transparent;
    color: #020617;
    display: flex;
    align-items: center;
    padding: 0.45rem 0.9rem;
    font-size: 0.95rem;
    line-height: 1;
}

.btn--ghost {
    background: transparent;
    border-color: #4b5563;
    color: #e5e7eb;
}

/* ========== HERO ========== */

.hero {
    width: 100%;
    padding-block: 3rem 3rem;
    margin: 0;
}

/* full-width hero-achtergrond buiten container */
.hero--animated {
    position: relative;
    width: 100vw;
    margin-inline: calc(50% - 50vw); /* breekt los uit container */
    padding-inline: 1rem;            /* zelfde zijkant-padding als container */
    border-radius: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    overflow: hidden;
}

/* glow over volledige breedte */
.hero--animated::before {
    content: "";
    position: absolute;
    inset: -25%;
    background:
        radial-gradient(circle at 20% 10%, rgba(34, 197, 94, 0.18), transparent 60%),
        radial-gradient(circle at 80% 90%, rgba(56, 189, 248, 0.18), transparent 60%);
    opacity: 1;
    pointer-events: none;
    animation: glowShift 22s ease-in-out infinite alternate;
}

@keyframes glowShift {
    0% {
        transform: translate3d(-10px, -10px, 0) scale(1);
    }
    100% {
        transform: translate3d(20px, 10px, 0) scale(1.05);
    }
}

/* hero content-grid gecentreerd binnen full-width hero */

.hero--split {
    display: grid;
    gap: 2rem;
    width: min(1100px, 100% - 2rem); /* zelfde breedte als .container */
    margin-inline: auto;              /* centreer op desktop */
}

.hero__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.75rem;
    color: #a5b4fc;
    margin-bottom: 0.75rem;
}

.hero__content h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 0.75rem;
}

.hero__content p {
    color: #cbd5f5;
    max-width: 32rem;
    margin-bottom: 1.25rem;
}

.hero__cta {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero__meta {
    margin-top: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.hero-pill {
    font-size: 0.8rem;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    background-color: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(12px);
}

.hero__image img {
    max-width: 100%;
    display: block;
    border-radius: 1rem;
}

/* ========== HERO "SCREEN" RECHTS ========== */

.hero-screen {
    background: rgba(15, 23, 42, 0.96);
    border-radius: 1.25rem;
    border: 1px solid rgba(148, 163, 184, 0.4);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.85);
    max-width: 420px;
    width: 100%;
    margin: 2rem auto 0; /* mobiel: onder de tekst en gecentreerd */
    overflow: hidden;
    transform: translate3d(0, 0, 0);
    animation: floatCard 14s ease-in-out infinite alternate;
}

@keyframes floatCard {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(0, -8px, 0);
    }
}

.hero-screen__header {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.6rem 0.8rem;
    background: linear-gradient(90deg, #020617, #0b1220);
    border-bottom: 1px solid rgba(148, 163, 184, 0.35);
}

.hero-screen__header .dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background-color: #4b5563;
}

.hero-screen__header .dot:nth-child(1) { background-color: #f97373; }
.hero-screen__header .dot:nth-child(2) { background-color: #facc15; }
.hero-screen__header .dot:nth-child(3) { background-color: #22c55e; }

.hero-screen__title {
    margin-left: 0.5rem;
    font-size: 0.8rem;
    color: #9ca3af;
}

.hero-screen__body {
    padding: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.hero-order {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.7rem 0.85rem;
    border-radius: 0.9rem;
    background-color: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(55, 65, 81, 0.8);
    font-size: 0.82rem;
}

.hero-order--active {
    border-color: #22c55e;
    box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.4);
}

.hero-order__meta {
    color: #9ca3af;
    margin-top: 0.15rem;
    font-size: 0.75rem;
}

.hero-status {
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    font-size: 0.7rem;
    white-space: nowrap;
}

.hero-status--inprep {
    background-color: rgba(250, 204, 21, 0.1);
    color: #facc15;
}

.hero-status--ready {
    background-color: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.hero-status--queued {
    background-color: rgba(96, 165, 250, 0.1);
    color: #60a5fa;
}

/* ========== SECTIONS / GRID / CARDS / FORMS ========== */

.section {
    margin-block: 2.5rem;
}

.grid-2,
.grid-3 {
    display: grid;
    gap: 1.5rem;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
    background-color: #020617;
    border-radius: 1rem;
    padding: 1.25rem 1.5rem;
    border: 1px solid #1f2937;
}

.card h2,
.card h3 {
    margin-top: 0;
}

.pricing__price {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.form__group {
    margin-bottom: 1rem;
}

.form__group label {
    display: block;
    margin-bottom: 0.35rem;
}

.form__group input,
.form__group textarea {
    width: 100%;
    padding: 0.5rem 0.6rem;
    border-radius: 0.5rem;
    border: 1px solid #4b5563;
    background-color: #020617;
    color: #f9fafb;
}

/* ========== FEATURE GRID (6 CARDS) ========== */

.section-label {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.75rem;
    color: #9ca3af;
    margin-bottom: 0.4rem;
}

.section--tight {
    margin-top: 1.75rem;
}

.feature-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.feature-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.18s ease-out, box-shadow 0.18s ease-out, border-color 0.18s ease-out;
}

.feature-card__icon {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.feature-card ul {
    margin: 0.75rem 0 0;
    padding-left: 1.1rem;
    font-size: 0.85rem;
    color: #cbd5f5;
}

.feature-card ul li + li {
    margin-top: 0.15rem;
}

.feature-card::after {
    content: "";
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle at 10% 0%, rgba(34, 197, 94, 0.14), transparent 55%);
    opacity: 0;
    transition: opacity 0.2s ease-out;
    pointer-events: none;
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(34, 197, 94, 0.6);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.9);
}

.feature-card:hover::after {
    opacity: 1;
}

/* ========== STEPS ========== */

.steps {
    display: grid;
    gap: 1.25rem;
    margin-top: 1.25rem;
}

.steps__item {
    background-color: #020617;
    border-radius: 1rem;
    padding: 1.2rem 1.3rem;
    border: 1px solid #1f2937;
}

.steps__badge {
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 30% 0%, #22d3ee, #22c55e);
    color: #020617;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
}

.section-cta {
    margin-top: 1.75rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
}

.section-cta__meta {
    font-size: 0.85rem;
    color: #9ca3af;
}

/* ========== CASE STUDIES ========== */

.case-grid {
    display: grid;
    gap: 1.5rem;
}

.case-card {
    padding: 1.5rem;
    background-color: #020617;
    border: 1px solid #1f2937;
    border-radius: 1rem;
}

.case-card h3,
.case-card h2 {
    margin-top: 0;
}

.case-card--empty {
    opacity: 0.75;
    text-align: left;
}

.case-card--empty p {
    color: #aeb7c5;
}

/* ========== FAQ ========== */

.faq {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background-color: #020617;
    border-radius: 0.75rem;
    border: 1px solid #1f2937;
    padding: 0.75rem 1rem;
}

.faq-item summary {
    cursor: pointer;
    font-weight: 500;
    list-style: none;
}

.faq-item[open] {
    border-color: rgba(34, 197, 94, 0.7);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item p {
    margin-top: 0.6rem;
    color: #cbd5f5;
    font-size: 0.95rem;
}

/* ========== FOOTER ========== */

.footer-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    padding-block: 2rem;
}

.footer-col h4 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: #cbd5f5;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 0.4rem;
}

.footer-col ul a {
    color: #9ca3af;
    font-size: 0.9rem;
}

.footer-col ul a:hover {
    color: #f5f5f5;
}

.footer-bottom {
    padding-block: 1rem;
    border-top: 1px solid #1f2937;
    text-align: center;
    font-size: 0.85rem;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
}

/* footer nav links */

.footer-nav {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    opacity: 0.75;
}

.footer-nav a {
    color: #cbd5e1;
    text-decoration: none;
}

.footer-nav a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* ========== VERGELIJKINGSTABEL & SAVE BOX ========== */

.compare-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1.5rem;
    font-size: 0.95rem;
}

.compare-table th,
.compare-table td {
    padding: 0.75rem 1rem;
    border: 1px solid #1e293b;
    text-align: left;
}

.compare-table th {
    background-color: #0f172a;
    color: #e2e8f0;
}

.compare-table td.yes {
    color: #22c55e;
    font-weight: 600;
}

.compare-table td.no {
    color: #ef4444;
}

.save-box {
    background-color: #0f172a;
    border: 1px solid #1e293b;
    padding: 1.2rem;
    border-radius: 1rem;
    margin: 1rem 0;
}

/* ========== DEMO VIDEO ========== */

.demo-video-wrapper {
    display: flex;
    justify-content: center;
}

.demo-video {
    width: min(900px, 100%);
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid #1e293b;
    box-shadow: 0 30px 80px rgba(0,0,0,0.45);
    margin-block: 1.5rem;
}

.demo-video video {
    display: block;
    width: 100%;
    height: auto;
}

/* ========== COOKIE BANNER ========== */

.cookie-banner {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    background: #111827;
    color: #f3f4f6;
    padding: 1rem 1.25rem;
    border-radius: 0.75rem;
    border: 1px solid #1f2937;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    gap: .75rem;
    max-width: 320px;
    z-index: 9999;
}

.cookie-banner__actions {
    display: flex;
    gap: .75rem;
}

/* ========== ALERTS & FORM ERRORS ========== */

.alert {
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.alert--success {
    background-color: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.6);
    color: #bbf7d0;
}

.form__error {
    margin-top: 0.25rem;
    font-size: 0.8rem;
    color: #f97373;
}

/* ========== PRICING CARD LINK ========== */

.pricing__card--link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.18s ease-out;
}

.pricing__card--link:hover {
    transform: translateY(-2px);
}

/* ========== MEDIA QUERIES (DESKTOP / MOBILE) ========== */

@media (min-width: 768px) {
    .feature-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .steps {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .case-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero--split {
        align-items: center;
    }
}

/* desktop: pop iets hoger en meer naar rechts */
@media (min-width: 1024px) {
    .hero-screen {
        margin-top: -5rem;      /* hoger */
        margin-left: auto;
        margin-right: -1.5rem;  /* iets buiten de content naar rechts */
    }
}

/* mobiel: cookie-banner en tabel beter leesbaar */

@media (max-width: 640px) {
    .cookie-banner {
        left: 1rem;
        right: 1rem;
        max-width: none;
    }

    /* mobiele kaartjes-weergave voor de vergelijkingstabel */
    .compare-table {
        border: 0;
        border-collapse: collapse;
        width: 100%;
    }

    .compare-table thead {
        display: none; /* header verbergen op mobiel */
    }

    .compare-table tbody tr {
        display: block;
        margin-bottom: 1rem;
        border: 1px solid #1e293b;
        border-radius: 0.75rem;
        background-color: #020617;
        overflow: hidden;
    }

    .compare-table td {
        display: flex;
        justify-content: space-between;
        gap: 0.75rem;
        padding: 0.6rem 0.85rem;
        border: 0;
        border-bottom: 1px solid #1e293b;
        font-size: 0.9rem;
    }

    .compare-table td:last-child {
        border-bottom: 0;
    }

    .compare-table td::before {
        content: attr(data-label);
        font-weight: 500;
        color: #e2e8f0;
        flex: 0 0 45%;
    }

    .compare-table td.yes,
    .compare-table td.no {
        text-align: right;
    }
}
/* HERO FULL WIDTH */
.hero--animated {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);  /* breekt uit container */
    margin-right: calc(50% - 50vw); /* full-width */
    padding-block: 4rem;
    padding-inline: 1rem;
    overflow: hidden;
    border-radius: 0;
    background: transparent;
}

/* glow achtergrond */
.hero--animated::before {
    content: "";
    position: absolute;
    inset: -30%;
    background:
        radial-gradient(circle at 20% 10%, rgba(34, 197, 94, 0.18), transparent 60%),
        radial-gradient(circle at 80% 90%, rgba(56, 189, 248, 0.18), transparent 60%);
    opacity: 1;
    pointer-events: none;
    z-index: -1;
    animation: glowShift 22s ease-in-out infinite alternate;
}

/* hero-content gecentreerd */
.hero--split {
    margin-inline: auto;
    display: grid;
    gap: 2rem;
}
.lead {
    font-size: 1.05rem;
    color: #cbd5f5;
    max-width: 40rem;
    margin-top: 0.5rem;
}

.pricing__note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #9ca3af;
}
/* ========== ADMIN BOX STRIP ========== */

.adminbox-strip {
    margin-bottom: 1.75rem;
    padding: 0.75rem 1.25rem;
    border-radius: 999px;
    background-color: rgba(15, 23, 42, 0.95);
    border: 1px solid #1e293b;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 1rem;
    font-size: 0.9rem;
}

.adminbox-strip__label {
    font-weight: 600;
    color: #bbf7d0; /* zacht groen, past bij je primary gradient */
}

.adminbox-strip__text {
    color: #cbd5f5;
    flex: 1 1 auto;
    min-width: 160px;
}

.adminbox-strip__btn {
    white-space: nowrap;
    padding: 0.4rem 0.9rem;
}

/* mobiel: alles centreren onder elkaar */
@media (max-width: 640px) {
    .adminbox-strip {
        flex-direction: column;
        align-items: flex-start;
		border-radius: 10px;
    }

    .adminbox-strip__btn {
        align-self: stretch;
        justify-content: center;
        text-align: center;
        width: 100%;
    }
}

/* ========== PRICING HIGHLIGHT & ADMIN BOX ========== */

.pricing__card {
    position: relative;
}

.pricing__card--highlight {
    border-color: rgba(34, 197, 94, 0.7);
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.9);
    transform: translateY(-4px);
}

.pricing__card--highlight:hover {
    transform: translateY(-6px);
}

.pricing__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: linear-gradient(90deg, #22c55e, #22d3ee);
    color: #020617;
    font-weight: 600;
}

.pricing__addon-inline {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid #1f2937;
    font-size: 0.85rem;
    color: #cbd5f5;
}

.pricing__addon-inline strong {
    font-weight: 600;
}

.pricing__note {
    margin-top: 1.75rem;
    font-size: 0.9rem;
    color: #9ca3af;
    max-width: 44rem;
}
/* Highlight */
.pricing__card--highlight {
    border-color: rgba(34, 197, 94, 0.5);
    box-shadow: 0 10px 40px rgba(0,0,0,0.45);
    position: relative;
}

.pricing__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(90deg, #22c55e, #06b6d4);
    color: #020617;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 600;
}

/* Add-on box */
.pricing__addon {
    margin-top: 1rem;
    padding: 0.85rem 1rem;
    border-radius: 0.75rem;
    background: rgba(15,23,42,0.75);
    border: 1px solid #1e293b;
}

.pricing__addon-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #bbf7d0;
}

.pricing__addon-desc {
    font-size: 0.85rem;
    margin: 0.4rem 0 0.8rem;
    color: #cbd5f5;
}

.btn--sm {
    padding: 0.35rem 0.8rem;
    font-size: 0.8rem;
}
/* Pricing cards basis */
.pricing__card {
    position: relative;
}

/* Link-variant (klikbare kaart) */
.pricing__card--link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.18s ease-out;
}

.pricing__card--link:hover {
    transform: translateY(-2px);
}

/* Pro highlight */
.pricing__card--highlight {
    border-color: rgba(34, 197, 94, 0.5);
    box-shadow: 0 10px 40px rgba(0,0,0,0.45);
}

/* Badge "meest gekozen" */
.pricing__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(90deg, #22c55e, #06b6d4);
    color: #020617;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

/* Add-on box binnen de Pro-kaart */
.pricing__addon {
    margin-top: 1rem;
    padding: 0.85rem 1rem;
    border-radius: 0.75rem;
    background: rgba(15,23,42,0.75);
    border: 1px solid #1e293b;
}

.pricing__addon-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #bbf7d0;
}

.pricing__addon-desc {
    font-size: 0.85rem;
    margin: 0.4rem 0 0.8rem;
    color: #cbd5f5;
}

/* Kleine buttonvariant */
.btn--sm {
    padding: 0.35rem 0.8rem;
    font-size: 0.8rem;
}

/* CTA binnen kaarten */
.pricing__cta {
    margin-top: 1rem;
}
.pricing__card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.75rem;
}

.pricing__card h2 {
    margin-bottom: 0.25rem;
}

.pricing__card ul {
    margin: 0.5rem 0 0;
    padding-left: 1.1rem;
    font-size: 0.9rem;
    color: #cbd5f5;
}

.pricing__card ul li + li {
    margin-top: 0.15rem;
}

.pricing__cta {
    margin-top: 1rem;
}

.pricing__card--link {
    text-decoration: none;
    color: inherit;
    transition: transform 0.18s ease-out, box-shadow 0.18s ease-out, border-color 0.18s ease-out;
}

.pricing__card--link:hover {
    transform: translateY(-3px);
    border-color: rgba(148, 163, 184, 0.7);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.8);
}

.pricing__card--highlight {
    border-color: rgba(34, 197, 94, 0.7);
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.9);
}

.pricing__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: linear-gradient(90deg, #22c55e, #22d3ee);
    color: #020617;
    font-weight: 600;
}

.pricing__addon {
    margin-top: 0.75rem;
    padding: 0.85rem 1rem;
    border-radius: 0.75rem;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid #1e293b;
    font-size: 0.85rem;
}

.pricing__addon-title {
    font-weight: 600;
    color: #bbf7d0;
}

.pricing__addon-desc {
    margin-top: 0.35rem;
    color: #cbd5f5;
}

.btn--sm {
    padding: 0.35rem 0.8rem;
    font-size: 0.8rem;
}
/* MOBILE-FIRST HEADER / NAV */
.site-header .row {
    /* override van .row en row--between/row--center */
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.75rem;
}

.site-header .nav {
    width: 100%;
}

.site-header .nav__list {
    flex-wrap: nowrap;      /* geen rare wraps */
    overflow-x: auto;       /* indien te veel items => horizontaal scrollen */
}

/* DESKTOP LAYOUT VANAF 768PX */
@media (min-width: 768px) {
    .site-header .row {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }

    .site-header .nav__list {
        flex-wrap: wrap;
        overflow-x: visible;
    }
}
/* ===== HAMBURGER BUTTON ===== */
.nav-toggle {
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0.5rem;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background-color: #f5f5f5;
    border-radius: 2px;
}

/* ===== MOBILE NAV VERBORGEN ===== */
.nav {
    display: none;
    width: 100%;
    margin-top: 0.75rem;
}

.nav.open {
    display: block;
}

.nav__list {
    flex-direction: column;
    gap: 0.5rem;
}
@media (min-width: 768px) {

    .nav-toggle {
        display: none; /* hamburger weg */
    }

    .nav {
        display: block !important; /* toon nav */
        width: auto;
        margin-top: 0;
    }

    .nav__list {
        flex-direction: row;
        gap: 1rem;
    }
}
@media (max-width: 640px) {
    .hero {
        padding-block: 2.5rem 2.75rem;
    }

    .hero__content h1 {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
    }

    .hero__content p,
    .lead {
        font-size: 0.95rem;
    }

    .hero__cta {
        flex-direction: column;
        align-items: stretch;
    }

    .hero__cta .btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .hero__meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-screen {
        margin-top: 2rem;
        max-width: 100%;
    }

    .section {
        margin-block: 2rem;
    }
}
