body {
    font-family: Arial, sans-serif;
    background-color: #f4f6f9;
}

.container {
    max-width: 900px;
    margin: auto;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary {
    background: #007bff;
    color: white;
}

.btn-success {
    background: #28a745;
    color: white;
}
.btn:hover {
    text-decoration: none;
}


.progress-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 15px;
}

.step {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #ddd;
    text-align: center;
    line-height: 30px;
    cursor: pointer;
}

.step.active {
    background: #007bff;
    color: white;
}

.step.done {
    background: #28a745;
    color: white;
}
/* === EXAM SPECIFIEK === */

.answers label {
    display: block;
    padding: 10px;
    margin-bottom: 8px;
    border-radius: 6px;
    background: #f1f1f1;
    cursor: pointer;
}

.answers label:hover {
    background: #e0e0e0;
}

.answers input {
    margin-right: 10px;
}

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.progress {
    font-weight: bold;
}

.timer {
    color: red;
    font-weight: bold;
}
.answers label {
    display: block;
    padding: 12px;
    margin-bottom: 8px;
    border-radius: 6px;
    background: #f1f1f1;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.2s;
}

/* hover effect */
.answers label:hover {
    background: #e0e0e0;
}

/* radio knop verbergen */
.answers input {
    display: none;
}

/* ✅ GESELECTEERD ANTWOORD */
.answers input:checked + span {
    display: block;
    background: #007bff;
    color: white;
    padding: 12px;
    border-radius: 6px;
}
.answers label span {
    display: block;
}
.card b {
    font-size: 16px;
}

.card span {
    font-size: 14px;
}
.exam-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.exam-card h4 {
    margin-top: 0;
}

.exam-card p {
    color: #555;
    margin-bottom: 15px;
}

/* badge */
.badge {
    display: inline-block;
    padding: 5px 10px;
    background: #28a745;
    color: white;
    border-radius: 4px;
    font-size: 12px;
    margin-bottom: 10px;
}

.exam-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.exam-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.price {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.price small {
    font-size: 14px;
    color: #777;
}

.exam-card .btn {
    width: 100%;
}
/* ✅ HOOVER EFFECT */
.exam-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.exam-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* ✅ NETTERE TITELS */
.exam-card h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

/* ✅ BESCHRIJVING */
.exam-card p {
    font-size: 14px;
    color: #555;
}

/* ✅ PRIJS MEER “PREMIUM” */
.price {
    font-size: 22px;
    font-weight: bold;
    color: #111;
    margin-bottom: 10px;
}

/* ✅ BTN mooi strak */
.exam-card .btn {
    width: 100%;
    padding: 12px;
    font-size: 15px;
}
.badge-container {
    min-height: 20px;
    margin-bottom: 10px;
}

.badge-premium {
    display: inline-block;
    background: orange;
    color: white;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 4px;
}

.login-container {
    max-width: 400px;
    margin: 60px auto;
}

.btn-secondary {
    background: #f1f1f1;
    color: #333;
    border: 1px solid #ccc;
}

.btn-secondary:hover {
    background: #e0e0e0;
    color: #111;
}

.btn + .btn {
    margin-left: 10px;
}
/* === LANDING PAGE === */

.landing-hero {
    text-align: center;
    padding: 35px 25px;
}

.landing-hero h1 {
    font-size: 32px;
    margin-bottom: 15px;
}

.hero-text {
    font-size: 18px;
    color: #444;
    max-width: 650px;
    margin: 0 auto 20px auto;
    line-height: 1.5;
}

.trust-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 15px;
    color: #333;
    font-size: 14px;
}

.cta-btn {
    font-size: 17px;
    padding: 14px 24px;
}

.landing-cta {
    text-align: center;
    border: 2px solid #28a745;
}

.account-box {
    text-align: center;
}

/* ruimte tussen knoppen */
.account-box .btn {
    margin: 5px;
}

/* mobiele verbetering */
@media (max-width: 700px) {
    .exam-grid {
        grid-template-columns: 1fr;
    }

    .landing-hero h1 {
        font-size: 26px;
    }

    .hero-text {
        font-size: 16px;
    }
}

.upsell-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.price-note {
    margin-top: 15px;
    font-size: 15px;
    color: #444;
}

.price-note strong {
    color: #111;
}
.offer-card {
    border: 2px solid #ff9800;
    background: #fffaf0;
}

.badge-offer {
    display: inline-block;
    background: #ff9800;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 10px;
}

.offer-card .price {
    color: #111;
}


.offer-card .btn {
    width: auto;
    display: inline-block;
    padding-left: 20px;
    padding-right: 20px;
}

.navbar a,
.header a,
nav a {
    color: white;
    text-decoration: none;
    margin-right: 15px;
}

.navbar a:hover,
.header a:hover,
nav a:hover {
    color: white;
    text-decoration: underline;
}

.page-content {
    padding-top: 25px;
}
/* =====================================================
   RESPONSIVE BASIS
   ===================================================== */

* {
    box-sizing: border-box;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

/* Zorg dat content niet tegen de schermrand plakt */
.container {
    width: 100%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

/* Cards blijven netjes op mobiel */
.card {
    max-width: 100%;
}

/* Formulieren mobielvriendelijk */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
textarea,
select {
    max-width: 100%;
}

/* =====================================================
   RESPONSIVE DASHBOARD / EXAM GRID
   ===================================================== */

@media (max-width: 700px) {

    .exam-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .exam-card {
        width: 100%;
    }

    .exam-card .btn {
        width: 100%;
        text-align: center;
    }
}

/* =====================================================
   RESPONSIVE KNOPPEN
   ===================================================== */

@media (max-width: 700px) {

    .btn {
        display: block;
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }

    .btn + .btn {
        margin-left: 0;
    }

    .account-box .btn,
    .upsell-buttons .btn {
        width: 100%;
    }
}

/* =====================================================
   RESPONSIVE EXAMENPAGINA
   ===================================================== */

@media (max-width: 700px) {

    .topbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .progress {
        font-size: 15px;
    }

    .timer {
        font-size: 16px;
    }

    .answers label {
        padding: 12px;
        font-size: 15px;
    }

    .vraag .btn {
        width: 100%;
        margin-bottom: 10px;
    }

    .progress-bar {
        gap: 4px;
    }

    .step {
        width: 26px;
        height: 26px;
        line-height: 26px;
        font-size: 13px;
    }
}

/* =====================================================
   RESPONSIVE LANDING PAGE
   ===================================================== */

@media (max-width: 700px) {

    .landing-hero {
        padding: 25px 15px;
    }

    .landing-hero h1 {
        font-size: 26px;
        line-height: 1.2;
    }

    .hero-text {
        font-size: 16px;
    }

    .trust-row {
        flex-direction: column;
        gap: 8px;
    }

    .landing-cta h2 {
        font-size: 22px;
    }

    .price-note {
        font-size: 14px;
    }
}

/* =====================================================
   RESPONSIVE TRUST BLOK
   ===================================================== */

@media (max-width: 700px) {

    .trust-points {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   RESPONSIVE LOGIN / REGISTER
   ===================================================== */

@media (max-width: 700px) {

    .login-container {
        max-width: 100%;
        margin: 30px auto;
    }

    .login-container .card {
        padding: 18px;
    }
}

/* =====================================================
   RESPONSIVE RESULTAAT / REVIEW
   ===================================================== */

@media (max-width: 700px) {

    h1 {
        font-size: 26px;
    }

    h2 {
        font-size: 22px;
    }

    h3 {
        font-size: 19px;
    }

    .card {
        padding: 16px;
    }

    .upsell-buttons {
        flex-direction: column;
        gap: 10px;
    }
}

/* =====================================================
   RESPONSIVE AANBIEDINGSKAART
   ===================================================== */

@media (max-width: 700px) {

    .offer-card {
        text-align: left;
    }

    .offer-card .btn {
        width: 100%;
    }

    .badge-offer {
        margin-bottom: 8px;
    }
}
/* =====================================================
   RESPONSIVE HEADER
   ===================================================== */

.site-header {
    background: #007bff;
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-header a {
    color: white;
    text-decoration: none;
    margin-right: 15px;
}

.site-header a:last-child {
    margin-right: 0;
}

.site-header a:hover {
    text-decoration: underline;
}

@media (max-width: 700px) {

    .site-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .site-header-nav {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .site-header-nav a {
        margin-right: 10px;
        margin-bottom: 5px;
    }
}


/* =====================================================
   LANDING PAGE: DESKTOP / MOBIEL VOORDELEN WISSELEN
   ===================================================== */

/* Standaard desktop */
.mobile-benefits {
    display: none;
}

.desktop-benefits {
    display: grid;
}

/* Mobiel */
@media (max-width: 700px) {

    .desktop-benefits {
        display: none;
    }

    .mobile-benefits {
        display: block;
        text-align: center;
    }

    .mobile-benefits h3 {
        font-size: 22px;
        margin-top: 0;
        margin-bottom: 12px;
    }

    .mobile-benefits p {
        color: #555;
        line-height: 1.5;
        margin-bottom: 15px;
    }

    .mobile-benefits ul {
        list-style: none;
        padding-left: 0;
        margin: 0;
        text-align: center;
    }

    .mobile-benefits li {
        margin-bottom: 8px;
    }
}

.answer-img {
    max-width: 100%;
    max-height: 180px;
    margin-top: 10px;
    border-radius: 6px;
    display: block;
}
/* =========================
   Flashcards
========================= */

.flashcard-wrapper {
    max-width: 800px;
    margin: 30px auto;
}

.flashcard-progress {
    margin-bottom: 15px;
    font-weight: bold;
    text-align: center;
}

.flashcard {
    min-height: 320px;
    padding: 30px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    cursor: pointer;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;

    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.flashcard:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(0,0,0,0.16);
}

.flashcard-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-align: center;
}

.flashcard-question,
.flashcard-answer {
    width: 100%;
    font-size: 24px;
    line-height: 1.4;
    text-align: center;
}

.flashcard-answer {
    display: none;
}

.flashcard.flipped .flashcard-question {
    display: none;
}

.flashcard.flipped .flashcard-answer {
    display: block;
}

.flashcard-image {
    display: block;
    max-width: 100%;
    max-height: 220px;
    object-fit: contain;
    margin: 0 auto 20px auto;
}

.flashcard-explanation {
    margin: 20px auto 0 auto;
    padding-top: 15px;
    border-top: 1px solid #ddd;
    max-width: 650px;
    font-size: 17px;
    line-height: 1.5;
    color: #444;
    text-align: center;
}

.flashcard-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.flashcard-hint {
    margin-top: 18px;
    color: #666;
    font-size: 14px;
    text-align: center;
}

@media (max-width: 700px) {
    .flashcard {
        min-height: 260px;
        padding: 22px;
    }

    .flashcard-question,
    .flashcard-answer {
        font-size: 20px;
    }

    .flashcard-controls {
        flex-direction: column;
    }

    .flashcard-controls .btn {
        width: 100%;
        text-align: center;
    }
}
/* =========================
   Flashcard overzicht pagina
========================= */

.flashcard-set-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 25px;
}


.flashcard-set-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.flashcard-set-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.14);
}


.flashcard-set-card h3 {
    margin-top: 0;
}

.flashcard-set-card p {
    line-height: 1.5;
}

.flashcard-set-price {
    font-size: 18px;
    font-weight: bold;
    margin: 15px 0;
}

.flashcard-set-badge {
    display: inline-block;
    background: #facc15;
    color: #111827;
    font-size: 13px;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 999px;
    margin-bottom: 12px;
}

@media (max-width: 700px) {
    .flashcard-set-grid {
        grid-template-columns: 1fr;
    }

    .flashcard-set-card {
        padding: 20px;
    }
}

.flashcard-cta{
    text-align: center;
    border: 2px solid #17a6d6;
}
.flashcard-cta h2 {
    margin-top: 0;
}
/* =========================
   Prijzen pagina
========================= */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin: 25px 0 35px 0;
}

.pricing-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 26px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.14);
}

.pricing-card h3 {
    margin-top: 0;
}

.pricing-price {
    font-size: 28px;
    font-weight: bold;
    margin: 18px 0 8px 0;
    color: #16a34a;
}

.pricing-card-highlight {
    border: 2px solid #16a34a;
}

@media (max-width: 700px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 22px;
    }

    .pricing-price {
        font-size: 24px;
    }
}
/* =========================
   Flashcard prijzen overzicht
========================= */

.flashcard-price-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 0;
    border-bottom: 1px solid #e5e7eb;
}

.flashcard-price-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.flashcard-price-info strong {
    font-size: 17px;
}

.flashcard-price-info span {
    color: #374151;
    line-height: 1.4;
}

.flashcard-price-info small {
    color: #6b7280;
}

.flashcard-price-amount {
    min-width: 90px;
    text-align: right;
    font-size: 20px;
    font-weight: bold;
    color: #16a34a;
    white-space: nowrap;
}

@media (max-width: 700px) {
    .flashcard-price-row {
        flex-direction: column;
        gap: 8px;
    }

    .flashcard-price-amount {
        text-align: left;
        font-size: 22px;
    }
}
.flashcard-price-overview {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.flashcard-price-overview h3,
.flashcard-price-overview p {
    text-align: left;
}

.flashcard-price-list {
    text-align: left;
}
.pricing-section-wrap {
    max-width: 1088px;
    margin: 0 auto;
    padding: 0 20px;
}

.flashcard-price-overview {
    width: 100%;
    margin-top: 25px;
}

.flashcard-price-overview h3,
.flashcard-price-overview p {
    text-align: left;
}
.pricing-page-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}