/* ============================================
   DE GELUKSCODE — LEZERSPAGINA
   SUE Behavioural Design Huisstijl
   ============================================ */

/* --- DearJoe Handwritten Font --- */
@font-face {
    font-family: 'DearJoe';
    src: url('assets/dearJoe4.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* SUE Colors */
    --coral: #FF5A5F;
    --coral-light: #FFB7B9;
    --coral-lighter: #FFE5E5;
    --black: #1a1a1a;
    --dark-gray: #797979;
    --light-gray: #F2F2F2;
    --white: #FFFFFF;

    /* Gelukscode Accent */
    --gold: #d4a853;
    --gold-light: #e8cd8a;
    --gold-bg: #faf6f1;

    /* Layout */
    --max-width: 1100px;
    --section-padding: 80px 0;
    --card-radius: 12px;
    --btn-radius: 4px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 17px;
    line-height: 1.7;
    color: var(--black);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

/* --- Typography --- */
h1, h2, h3 {
    font-family: Georgia, serif;
    font-weight: 400;
    line-height: 1.25;
    color: var(--black);
}

h1 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    margin-bottom: 1rem;
}

h1 em {
    font-style: italic;
    color: var(--coral);
}

h2 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    margin-bottom: 0.75rem;
}

h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

p {
    color: var(--dark-gray);
    margin-bottom: 0.75rem;
}

a {
    color: var(--coral);
    text-decoration: none;
    transition: opacity 0.2s;
}

a:hover {
    opacity: 0.8;
}

.overline {
    display: block;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--coral);
    margin-bottom: 0.75rem;
}

.section-intro {
    font-size: 1.15rem;
    max-width: 680px;
    color: var(--dark-gray);
    margin-bottom: 2.5rem;
}

/* --- Layout --- */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: var(--section-padding);
}

.section-warm {
    background: linear-gradient(to bottom, #ffffff 0%, #f0f0f0 40%, #f0f0f0 60%, #ffffff 100%);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 12px 28px;
    border: none;
    border-radius: var(--btn-radius);
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    line-height: 1.4;
}

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

.btn-primary:hover {
    background: #e84e53;
    opacity: 1;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 90, 95, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--black);
    border: 1.5px solid var(--black);
}

.btn-secondary:hover {
    background: var(--black);
    color: var(--white);
    opacity: 1;
}

.btn-full {
    width: 100%;
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: all 0.3s;
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

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

.logo-img {
    height: 36px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 28px;
}

.nav-links a {
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: var(--black);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--coral);
    opacity: 1;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--black);
    transition: all 0.3s;
}

/* --- Hero --- */
.hero {
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
    background: var(--white);
}

.hero-decoration {
    position: absolute;
    top: 60px;
    right: -100px;
    width: 500px;
    height: 500px;
    opacity: 0.35;
    pointer-events: none;
}

.hero-dots {
    width: 100%;
    height: 100%;
}

.hero-editorial {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: auto;
    position: relative;
}

.hero-photo-col {
    order: 2;
    position: relative;
    overflow: hidden;
}

.hero-photo {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.hero-text-col {
    order: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 48px 60px 24px;
    position: relative;
    z-index: 2;
}

.hero-text-col h1 {
    position: relative;
    z-index: 2;
    margin-right: -100px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
    max-width: 520px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* --- Roles Strip --- */
.roles-strip {
    padding: 40px 0 48px;
    background: var(--white);
    border-top: 1px solid rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.roles-headline {
    text-align: center;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.35rem;
    font-style: italic;
    color: var(--black);
    margin-bottom: 20px;
}

.roles-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.role-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 50px;
    background: var(--bg);
    border: 1px solid rgba(212, 168, 83, 0.2);
    font-family: 'Open Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--black);
    transition: all 0.2s ease;
}

.role-badge:hover {
    background: var(--gold-bg);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.role-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* --- Tools Overview Grid --- */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.tool-card {
    background: var(--white);
    border-radius: var(--card-radius);
    padding: 28px;
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.tool-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.tool-icon {
    margin-bottom: 16px;
}

.tool-icon-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.tool-card h3 {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.tool-card p {
    font-size: 1.15rem;
    line-height: 1.6;
}

/* --- Self-test Section --- */
.test-launcher {
    max-width: 800px;
    margin: 0 auto;
}

.test-card {
    background: var(--white);
    border-radius: var(--card-radius);
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.test-card-header {
    text-align: center;
    margin-bottom: 32px;
}

.test-card-header h3 {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.test-card-header p {
    font-size: 0.95rem;
}

/* Context Selection */
.context-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.context-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 16px;
    background: var(--light-gray);
    border: 2px solid transparent;
    border-radius: var(--card-radius);
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: inherit;
}

.context-btn:hover {
    border-color: var(--coral);
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 90, 95, 0.1);
}

.context-btn.active {
    border-color: var(--coral);
    background: var(--coral-lighter);
}

.context-icon {
    margin-bottom: 8px;
}

.context-icon-img {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.context-label {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--black);
    margin-bottom: 4px;
}

.context-desc {
    font-size: 0.95rem;
    color: var(--dark-gray);
}

/* Access Form */
.access-section {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.access-form {
    max-width: 400px;
    margin: 0 auto;
}

.access-form label {
    display: block;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
    margin-top: 16px;
    color: var(--black);
}

.access-form label:first-child {
    margin-top: 0;
}

.hint {
    font-weight: 400;
    color: var(--dark-gray);
    font-size: 0.8rem;
}

.access-form input {
    width: 100%;
    padding: 12px 16px;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    border: 1.5px solid #ddd;
    border-radius: 6px;
    transition: border-color 0.2s;
    background: var(--white);
}

.access-form input:focus {
    outline: none;
    border-color: var(--coral);
    box-shadow: 0 0 0 3px rgba(255, 90, 95, 0.1);
}

.access-form .btn {
    margin-top: 24px;
}

.error-message {
    color: var(--coral);
    font-family: 'Open Sans', sans-serif;
    font-size: 0.85rem;
    text-align: center;
    margin-top: 12px;
}

/* --- Downloads Grid --- */
.downloads-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.download-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--white);
    border-radius: var(--card-radius);
    padding: 24px;
    border: 1px solid rgba(0,0,0,0.06);
    text-decoration: none;
    transition: all 0.25s ease;
    position: relative;
}

.download-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
    border-color: var(--coral);
    opacity: 1;
}

.download-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-icon-img {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.download-info h3 {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.download-info p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 0;
}

.download-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--coral);
    background: var(--coral-lighter);
    padding: 3px 8px;
    border-radius: 4px;
}

/* --- Steps --- */
.steps-container {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}


.step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 20px 0;
    position: relative;
}

.step-number-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    object-fit: contain;
    display: block;
    position: relative;
    z-index: 1;
}

.step-content h3 {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.step-context {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--coral);
    margin-bottom: 8px !important;
}

.step-content p:last-child {
    font-size: 1.15rem;
    color: var(--dark-gray);
}

/* --- Spelregels --- */
.spelregels-grid {
    display: grid;
    gap: 16px;
    max-width: 700px;
}

.spelregel-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--white);
    border-radius: 2px;
    padding: 20px 24px;
    border: none;
    outline: 2px solid rgba(0,0,0,0.35);
    outline-offset: 0px;
    box-shadow: 3px 3px 0px rgba(0,0,0,0.08);
    filter: url(#handdrawn);
    transition: all 0.25s ease;
}

.spelregel-card:hover {
    border-color: var(--coral);
    box-shadow: 0 4px 16px rgba(255, 90, 95, 0.12);
}

.spelregel-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    object-fit: contain;
    display: block;
}

.spelregel-card h3 {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spelregel-card p {
    font-size: 1.05rem;
    color: var(--dark-gray);
    margin-bottom: 0;
}

.spelregels-download {
    margin-top: 32px;
    display: flex;
    justify-content: center;
}

/* --- About --- */
.about-grid {
    display: grid;
    grid-template-columns: 0.4fr 1fr;
    gap: 60px;
    align-items: center;
}

.author-photo {
    width: 100%;
    max-width: 300px;
    border-radius: var(--card-radius);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.about-text p {
    font-size: 1.15rem;
    line-height: 1.75;
}

.about-text em {
    color: var(--coral);
}

.about-author {
    margin-top: 24px;
    padding-top: 24px;
    border-top: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='10' viewBox='0 0 800 10'%3E%3Cpath d='M0,6 C100,2 200,9 300,5 C400,1 500,8 600,4 C700,1 750,7 800,5' stroke='%23999999' stroke-width='2.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-position: top 0px left;
    background-size: 800px 10px;
}

.about-author h3 {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.about-author p {
    font-size: 1.1rem;
}

.about-text .btn {
    margin-top: 20px;
}

.about-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-top: 20px;
}

.about-ctas .btn {
    margin-top: 0;
}

/* --- Visual Quotes --- */
.quote-visual {
    padding: 60px 0;
    overflow: hidden;
}

.quote-visual--gold {
    background: var(--white);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.quote-visual--coral {
    background: var(--white);
}

.quote-visual-inner {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.quote-visual-inner--reverse {
    grid-template-columns: 1fr 400px;
}

.quote-visual-inner--reverse .quote-illustration {
    order: 2;
}

.quote-visual-inner--reverse .quote-visual-text {
    order: 1;
    text-align: right;
}

.quote-illustration {
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-svg {
    width: 160px;
    height: 160px;
}

.quote-img {
    width: 380px;
    height: 380px;
    object-fit: contain;
    border-radius: 0;
}

.quote-visual-text {
    border: none;
    margin: 0;
    padding: 0;
}

.quote-visual-text p {
    font-family: 'DearJoe', cursive;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: normal;
    font-style: normal;
    line-height: 1.5;
    color: var(--black);
    margin-bottom: 0;
}

.quote-visual--gold .quote-visual-text p {
    color: var(--black);
}

.quote-visual--coral .quote-visual-text p {
    color: var(--black);
}

/* --- Subtle CTA --- */
.subtle-cta {
    margin-top: 40px;
    text-align: center;
}

.subtle-cta p {
    font-size: 0.95rem;
    color: var(--dark-gray);
    margin-bottom: 0;
}

.subtle-cta a {
    color: var(--coral);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid var(--coral-light);
    transition: border-color 0.2s;
}

.subtle-cta a:hover {
    border-bottom-color: var(--coral);
    opacity: 1;
}

/* --- Tool card CTA variant --- */
.tool-card--cta {
    text-decoration: none;
    border: 1.5px dashed var(--coral-light);
    background: linear-gradient(135deg, var(--white) 0%, var(--coral-lighter) 100%);
    cursor: pointer;
}

.tool-card--cta:hover {
    border-color: var(--coral);
    border-style: solid;
}

.tool-card--cta h3 {
    color: var(--coral);
}

/* --- Wil je meer --- */
.meer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.meer-card {
    background: var(--white);
    border-radius: var(--card-radius);
    padding: 36px;
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.meer-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.meer-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.meer-card-icon--gold {
    background: var(--gold-bg);
}

.meer-card-icon--coral {
    background: var(--coral-lighter);
}

.meer-card-icon-img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.meer-card--with-image {
    padding: 0;
    overflow: hidden;
}

.meer-card--with-image h3,
.meer-card--with-image p,
.meer-card--with-image .meer-card-ctas {
    padding: 0 36px;
}

.meer-card--with-image h3 {
    padding-top: 24px;
}

.meer-card--with-image .meer-card-ctas {
    padding-bottom: 36px;
}

.meer-card-image-link {
    display: block;
    position: relative;
    text-decoration: none;
    cursor: zoom-in;
}

.meer-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.meer-card-image-link--book {
    background: var(--gold-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 220px;
    overflow: hidden;
}

.meer-card-book {
    height: 190px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.15));
    transition: transform 0.3s ease;
}

.meer-card-image-link:hover .meer-card-image,
.meer-card-image-link:hover .meer-card-book {
    transform: scale(1.05);
}

.meer-card-zoom {
    position: absolute;
    bottom: 12px;
    right: 12px;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--white);
    background: rgba(0,0,0,0.5);
    padding: 4px 10px;
    border-radius: 4px;
    opacity: 0;
    transition: opacity 0.2s;
}

.meer-card-image-link:hover .meer-card-zoom {
    opacity: 1;
}

.meer-card h3 {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.meer-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.meer-card-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.85rem;
}

/* --- Footer --- */
footer {
    background: #ffffff;
    color: #2c2c2c;
    border-top: 1px solid rgba(0,0,0,0.08);
}

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

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1.4fr;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.footer-top-col {
    padding: 4rem 2.5rem 3rem 2.5rem;
    border-right: 1px solid rgba(0,0,0,0.1);
}
.footer-top-col:last-child { border-right: none; padding-left: 2.5rem; padding-right: 0; }
.footer-top-col:first-child { padding-left: 0; }

.footer-top-col h5 {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.5px;
    color: #2c2c2c; margin-bottom: 1rem;
}

.footer-top-col address {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem; font-weight: 400;
    line-height: 1.7; color: #2c2c2c; font-style: normal;
}

.footer-top-col a {
    color: #2c2c2c; text-decoration: none;
    font-family: 'Open Sans', sans-serif; font-size: 0.9rem;
    display: block; margin-bottom: 0.25rem; transition: opacity 0.2s;
}
.footer-top-col a:hover { opacity: 0.75; }

.footer-social-icons { display: flex; gap: 0.6rem; margin-top: 1.25rem; }
.footer-social-icon {
    display: inline-flex; align-items: center; justify-content: center;
    text-decoration: none; transition: opacity 0.2s; margin-bottom: 0 !important;
}
.footer-social-icon:hover { opacity: 0.7; }

.footer-newsletter-intro {
    font-family: 'Open Sans', sans-serif; font-size: 0.78rem; font-weight: 700;
    color: #888; margin-bottom: 0.75rem; text-transform: uppercase; letter-spacing: 0.5px;
}

.footer-newsletter-tagline {
    font-family: 'Open Sans', sans-serif; font-size: 0.95rem;
    font-weight: 400; line-height: 1.6; color: #2c2c2c; margin-bottom: 1.5rem;
}
.footer-newsletter-tagline strong { font-weight: bold; }

.footer-newsletter-btn {
    display: inline-block; width: fit-content;
    background: var(--coral); color: var(--white) !important;
    font-family: 'Open Sans', sans-serif; font-size: 0.85rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.5px;
    padding: 0.6rem 1.25rem; border-radius: var(--btn-radius);
    text-decoration: none; transition: background 0.2s;
}
.footer-newsletter-btn:hover { background: #e54e53; }

.footer-bottom-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    padding: 2.5rem 0; border-bottom: 1px solid rgba(0,0,0,0.1);
}

.footer-col { padding-right: 2rem; border-right: 1px solid rgba(0,0,0,0.1); }
.footer-col:last-child { border-right: none; padding-right: 0; padding-left: 2rem; }
.footer-col:not(:first-child):not(:last-child) { padding-left: 2rem; }

.footer-col h5 {
    font-family: 'Open Sans', sans-serif; font-size: 0.65rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.5px; color: #888; margin-bottom: 0.85rem;
}

.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 0.4rem; }
.footer-col a {
    color: var(--coral); text-decoration: none;
    font-family: 'Open Sans', sans-serif; font-size: 0.9rem; transition: opacity 0.2s;
}
.footer-col a:hover { opacity: 0.7; }

.footer-bottom {
    padding: 1.25rem 0; display: flex;
    justify-content: space-between; align-items: center;
    font-family: 'Open Sans', sans-serif; font-size: 0.75rem; color: #888;
}

.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: #888; text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: #2c2c2c; }

/* ============================================
   GELUKSLEK-TEST VRAGEN & RESULTATEN
   ============================================ */

.test-progress {
    margin-bottom: 28px;
}

.test-progress-bar {
    height: 6px;
    background: #f0f0f0;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 8px;
}

.test-progress-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 0.4s ease;
}

.test-progress-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.8rem;
    color: var(--dark-gray);
}

.test-dimension-badge {
    display: inline-block;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.test-question {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--black);
    margin-bottom: 32px;
}

.test-scale {
    margin-bottom: 32px;
}

.test-scale-labels {
    display: flex;
    justify-content: space-between;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.75rem;
    color: var(--dark-gray);
    margin-bottom: 12px;
}

.test-scale-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.test-scale-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #ddd;
    background: var(--white);
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
    cursor: pointer;
    transition: all 0.2s ease;
}

.test-scale-btn:hover {
    transform: scale(1.1);
}

.test-scale-btn.active {
    color: var(--white);
    transform: scale(1.15);
}

.test-navigation {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.test-nav-btn {
    min-width: 140px;
}

/* --- Resultaten --- */
.results-overview {
    display: flex;
    gap: 32px;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid #f0f0f0;
}

.results-score-circle {
    flex-shrink: 0;
}

.results-svg {
    width: 120px;
    height: 120px;
}

.results-summary h3 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.results-summary p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dark-gray);
    margin-bottom: 8px;
}

.results-dimensions {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.results-dim-row {
    padding-bottom: 20px;
    border-bottom: 1px solid #f5f5f5;
}

.results-dim-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.results-dim-label {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
}

.results-dim-score {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.85rem;
    color: var(--dark-gray);
}

.results-dim-bar-bg {
    height: 8px;
    background: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.results-dim-bar-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.8s ease;
}

.results-dim-interp {
    display: flex;
    align-items: center;
    gap: 10px;
}

.results-dim-badge {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 12px;
    white-space: nowrap;
}

.results-dim-desc {
    font-size: 0.85rem;
    color: var(--dark-gray);
}

.results-tip {
    background: var(--gold-bg);
    border-radius: var(--card-radius);
    padding: 28px;
    margin-bottom: 28px;
}

.results-tip h4 {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.results-tip p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--dark-gray);
    margin-bottom: 8px;
}

.results-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        font-size: 16px;
    }

    .nav-hamburger {
        display: flex;
    }

    .hero-editorial {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-photo-col {
        order: -1;
        height: 300px;
    }

    .hero-text-col {
        padding: 32px 24px 40px;
        text-align: center;
    }

    .hero-text-col h1 {
        margin-right: 0;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-decoration {
        right: -200px;
        top: 0;
        opacity: 0.2;
    }

    .tools-grid {
        grid-template-columns: 1fr;
    }

    .downloads-grid {
        grid-template-columns: 1fr;
    }

    .context-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }

    .meer-grid {
        grid-template-columns: 1fr;
    }

    .quote-visual-inner,
    .quote-visual-inner--reverse {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 24px;
    }

    .quote-visual-inner--reverse .quote-visual-text {
        text-align: center;
        order: unset;
    }

    .quote-visual-inner--reverse .quote-illustration {
        order: unset;
    }

    .quote-svg {
        width: 120px;
        height: 120px;
    }

    .author-photo {
        max-width: 200px;
        margin: 0 auto;
    }

    .about-author {
        text-align: left;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    :root {
        --section-padding: 60px 0;
    }

    .test-card {
        padding: 24px 20px;
    }

    .steps-container::before {
        left: 20px;
    }

    .step-number {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }

    .step {
        gap: 16px;
    }

    .hero {
        padding: 110px 0 60px;
    }
}

/* --- Animations --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    animation: fadeInUp 0.6s ease-out;
}
