/* ══════════════════════════════════════════════
   CraftyCode Software — Hoofdstijlblad
   Gescheiden uit index.html voor overzicht
   ══════════════════════════════════════════════ */

/* ── RESET & VARIABELEN ── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg: #080c10;
    --surface: #0d1218;
    --border: #1a2332;
    --accent: #00d4ff;
    --text: #e8f0fe;
    --muted: #5a7080;
    --green: #00ff88;
    --orange: #ff6b35;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    line-height: 1.7;
    overflow-x: hidden;
}

    /* Subtiel grid patroon over de hele pagina */
    body::before {
        content: '';
        position: fixed;
        inset: 0;
        background-image: linear-gradient(rgba(0,212,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0,212,255,0.03) 1px, transparent 1px);
        background-size: 40px 40px;
        pointer-events: none;
        z-index: 0;
    }

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 4rem;
    background: rgba(8,12,16,0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.nav-logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--text);
    text-decoration: none;
    letter-spacing: 0.05em;
}

    .nav-logo span {
        color: var(--accent);
    }

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin: 0 auto;
}

    .nav-links a {
        color: var(--muted);
        text-decoration: none;
        font-size: 0.75rem;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        transition: color 0.2s;
    }

        .nav-links a:hover {
            color: var(--accent);
        }

.nav-cta {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 0.5rem 1.4rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    /* Vaste breedte zodat de knop niet verspringt tussen pagina's */
    width: 180px;
    text-align: center;
    white-space: nowrap;
}

    .nav-cta:hover {
        background: var(--accent);
        color: var(--bg);
    }

/* ── TAALSWITCHER in de NAV ── */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-right: 1.5rem;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    background: none;
    border: 1px solid transparent;
    color: var(--muted);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    padding: 0.3rem 0.6rem;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
    text-transform: uppercase;
}

    .lang-option:hover {
        color: var(--text);
    }

    .lang-option.active {
        color: var(--accent);
        border-color: rgba(0,212,255,0.3);
    }

.lang-flag {
    width: 16px;
    height: auto;
    border-radius: 2px;
}

.lang-sep {
    width: 1px;
    height: 1.2rem;
    background-color: var(--border);
    margin: 0 0.2rem;
}

/* ── HERO ── */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 4rem;
    overflow: hidden;
}

    #hero::after {
        content: '';
        position: absolute;
        top: 10%;
        right: -10%;
        width: 700px;
        height: 700px;
        background: radial-gradient(circle, rgba(0,102,255,0.18) 0%, transparent 70%);
        pointer-events: none;
    }

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 780px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 2rem;
}

    .hero-tag::before {
        content: '';
        display: inline-block;
        width: 6px;
        height: 6px;
        background: var(--accent);
        border-radius: 50%;
        animation: pulse 2s infinite;
    }

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

    50% {
        opacity: 0.4;
        transform: scale(1.4);
    }
}

h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

    h1 .line-accent {
        color: var(--accent);
    }

    h1 .line-dim {
        color: var(--muted);
    }

.hero-desc {
    font-size: 0.95rem;
    color: var(--muted);
    max-width: 520px;
    line-height: 1.9;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* ── KNOPPEN ── */
.btn-primary {
    background: var(--accent);
    color: var(--bg);
    border: none;
    padding: 0.85rem 2rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.1s;
    text-decoration: none;
    display: inline-block;
}

    .btn-primary:hover {
        opacity: 0.85;
        transform: translateY(-1px);
    }

.btn-ghost {
    background: transparent;
    color: var(--muted);
    border: 1px solid var(--border);
    padding: 0.85rem 2rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
    text-decoration: none;
    display: inline-block;
}

    .btn-ghost:hover {
        border-color: var(--muted);
        color: var(--text);
    }

/* ── TERMINAL WIDGET IN HERO ── */
.hero-terminal {
    position: absolute;
    right: 4rem;
    top: 50%;
    transform: translateY(-50%);
    width: 420px;
    background: var(--surface);
    border: 1px solid var(--border);
    z-index: 1;
    animation: floatUp 0.8s ease both;
    animation-delay: 0.3s;
}

@keyframes floatUp {
    from {
        opacity: 0;
        transform: translateY(calc(-50% + 30px));
    }

    to {
        opacity: 1;
        transform: translateY(-50%);
    }
}

.terminal-bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1rem;
    background: #0a1018;
    border-bottom: 1px solid var(--border);
}

.t-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

    .t-dot:nth-child(1) {
        background: #ff5f57;
    }

    .t-dot:nth-child(2) {
        background: #febc2e;
    }

    .t-dot:nth-child(3) {
        background: #28c840;
    }

.terminal-title {
    font-size: 0.65rem;
    color: var(--muted);
    margin-left: auto;
}

.terminal-body {
    padding: 1.2rem 1.4rem;
    font-size: 0.72rem;
    line-height: 2;
}

.t-line {
    display: flex;
    gap: 0.6rem;
}

.t-prompt {
    color: var(--accent);
}

.t-comment {
    color: var(--muted);
}

.t-out-green {
    color: var(--green);
}

.t-out-blue {
    color: var(--accent);
}

.t-out-orange {
    color: var(--orange);
}

.t-cursor {
    display: inline-block;
    width: 8px;
    height: 14px;
    background: var(--accent);
    align-self: center; /* Werkt correct binnen flex .t-line */
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

/* ── STATS BAND ── */
.stats-band {
    position: relative;
    z-index: 1;
    display: flex;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stat-item {
    flex: 1;
    text-align: center;
    padding: 2.5rem 2rem;
    border-right: 1px solid var(--border);
}

    .stat-item:last-child {
        border-right: none;
    }

.stat-num {
    font-family: 'Syne', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    display: block;
    margin-bottom: 0.4rem;
}

.stat-label {
    font-size: 0.68rem;
    color: var(--muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* ── SECTIES ── */
section {
    position: relative;
    z-index: 1;
    padding: 7rem 4rem;
    /* Voorkomt dat de fixed nav over de sectie heen scrollt */
    scroll-margin-top: 80px;
}

.section-tag {
    font-size: 0.68rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}

h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.2rem;
}

.section-sub {
    color: var(--muted);
    font-size: 0.9rem;
    max-width: 560px;
    margin-bottom: 4rem;
}

/* ── PRODUCTEN GRID ── */
#products {
    max-width: 1200px;
    margin: 0 auto;
    scroll-margin-top: 80px;
}

/* product-container wordt gevuld door app.js */
#product-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 1.5px;
    background: var(--border);
    border: 1px solid var(--border);
}

/* ── PRODUCT KAARTEN (aangemaakt door app.js) ── */
.product-card {
    background: var(--surface);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: background 0.25s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

    .product-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 3px;
        height: 0;
        background: var(--accent);
        transition: height 0.3s ease;
    }

    .product-card:hover {
        background: #0f1820;
    }

        .product-card:hover::before {
            height: 100%;
        }

    .product-card.green-accent::before {
        background: var(--green);
    }

    .product-card.orange-accent::before {
        background: var(--orange);
    }

.card-icon {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.card-tag {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.2rem 0.6rem;
    border: 1px solid;
    display: inline-block;
    margin-bottom: 1rem;
}

.tag-pro {
    color: var(--accent);
    border-color: rgba(0,212,255,0.3);
}

.tag-home {
    color: var(--green);
    border-color: rgba(0,255,136,0.3);
}

.tag-util {
    color: var(--orange);
    border-color: rgba(255,107,53,0.3);
}

.card-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.card-desc {
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    flex: 1;
}

.card-link {
    font-size: 0.7rem;
    color: var(--accent);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.2s;
}

    .card-link:hover {
        gap: 0.9rem;
    }

/* ── SOCIAL PROOF / TESTIMONIALS (NIEUW) ── */
#testimonials {
    max-width: 1200px;
    margin: 0 auto;
    scroll-margin-top: 80px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5px;
    background: var(--border);
    border: 1px solid var(--border);
}

.testimonial-card {
    background: var(--surface);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    transition: background 0.25s;
}

    .testimonial-card:hover {
        background: #0f1820;
    }

/* Grote quote-icoon bovenaan de kaart */
.testimonial-quote-icon {
    font-family: 'Syne', sans-serif;
    font-size: 3rem;
    line-height: 1;
    color: var(--accent);
    opacity: 0.3;
}

.testimonial-text {
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.9;
    font-style: italic;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Initialen-cirkel als avatar-vervanging */
.testimonial-avatar {
    width: 40px;
    height: 40px;
    border: 1px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent);
    flex-shrink: 0;
}

.testimonial-name {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text);
}

.testimonial-role {
    font-size: 0.65rem;
    color: var(--muted);
    letter-spacing: 0.1em;
}

/* Trust-balk onder testimonials */
.trust-bar {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 3rem 2rem;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.7rem;
    color: var(--muted);
    letter-spacing: 0.1em;
}

.trust-icon {
    color: var(--green);
    font-size: 1rem;
}

/* ── WAAROM LF ── */
#why-lf {
    max-width: 1200px;
    margin: 0 auto;
    scroll-margin-top: 80px;
}

/* ── OVER MIJ ── */
#about {
    max-width: 1200px;
    margin: 0 auto;
    scroll-margin-top: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-code-block {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 2rem;
    font-size: 0.72rem;
    line-height: 2;
}

.code-line-num {
    color: var(--border);
    user-select: none;
    margin-right: 1.5rem;
}

.kw {
    color: #569cd6;
}

.fn {
    color: #dcdcaa;
}

.str {
    color: #ce9178;
}

.num {
    color: #b5cea8;
}

.cm {
    color: #6a9955;
}

/* ── CONTACT ── */
#contact {
    max-width: 700px;
    margin: 0 auto;
    scroll-margin-top: 80px;
    text-align: center;
}

    #contact h2 {
        margin-bottom: 0.8rem;
    }

    #contact .section-sub {
        margin: 0 auto 3rem;
    }

.contact-form {
    display: grid;
    gap: 1rem;
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    padding: 0.8rem 1rem;
    outline: none;
    transition: border-color 0.2s;
    resize: vertical;
}

    .form-group input:focus,
    .form-group textarea:focus {
        border-color: var(--accent);
    }

/* ── FOOTER ── */
footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border);
    padding: 2.5rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 0.9rem;
}

    .footer-logo span {
        color: var(--accent);
    }

footer p {
    font-size: 0.68rem;
    color: var(--muted);
}

/* ── INLAAD ANIMATIES ── */
.hero-inner > * {
    opacity: 0;
    animation: fadeSlide 0.7s ease forwards;
}

    .hero-inner > *:nth-child(1) {
        animation-delay: 0.10s;
    }

    .hero-inner > *:nth-child(2) {
        animation-delay: 0.25s;
    }

    .hero-inner > *:nth-child(3) {
        animation-delay: 0.40s;
    }

    .hero-inner > *:nth-child(4) {
        animation-delay: 0.55s;
    }

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--border);
}


/* ══════════════════════════════════════════════
   PRODUCT DETAIL PAGINA — Stijlen voor
   de individuele product-pagina's (product.html)
   ══════════════════════════════════════════════ */

/* Bovenkant van de productpagina met breadcrumb */
.product-hero {
    padding-top: 8rem;
    padding-bottom: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.breadcrumb {
    font-size: 0.7rem;
    color: var(--muted);
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
}

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

        .breadcrumb a:hover {
            opacity: 0.7;
        }

    .breadcrumb .sep {
        margin: 0 0.5rem;
        color: var(--border);
    }

/* Bovenste helft: titel + download naast screenshot */
.product-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.product-hero-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

    .product-hero-info h1 {
        font-size: clamp(2rem, 4vw, 3.5rem);
    }

.product-version-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.68rem;
    color: var(--green);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 1px solid rgba(0,255,136,0.25);
    padding: 0.3rem 0.8rem;
    width: fit-content;
}

.product-hero-desc {
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.9;
}

.product-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 0.5rem;
}

.product-price {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}

.product-price-note {
    font-size: 0.65rem;
    color: var(--muted);
    letter-spacing: 0.1em;
}

/* Screenshot-container met venster-chrome */
.product-screenshot {
    background: var(--surface);
    border: 1px solid var(--border);
    overflow: hidden;
}

.screenshot-bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1rem;
    background: #0a1018;
    border-bottom: 1px solid var(--border);
}

    .screenshot-bar .t-dot {
        width: 8px;
        height: 8px;
    }

.screenshot-body {
    padding: 1rem;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 0.75rem;
}

    .screenshot-body img {
        width: 100%;
        height: auto;
        display: block;
    }

/* Feature-blokken op de productpagina */
.product-features {
    max-width: 1200px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5px;
    background: var(--border);
    border: 1px solid var(--border);
}

.feature-item {
    background: var(--surface);
    padding: 2.5rem;
    transition: background 0.25s;
}

    .feature-item:hover {
        background: #0f1820;
    }

.feature-icon {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    display: block;
}

.feature-title {
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.feature-desc {
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.8;
}

/* Changelog-sectie op productpagina */
.product-changelog {
    max-width: 1200px;
    margin: 0 auto;
}

.changelog-list {
    border: 1px solid var(--border);
}

.changelog-entry {
    display: grid;
    grid-template-columns: 140px 100px 1fr;
    gap: 2rem;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border);
    align-items: start;
    font-size: 0.8rem;
}

    .changelog-entry:last-child {
        border-bottom: none;
    }

.changelog-date {
    color: var(--muted);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
}

.changelog-version {
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 600;
}

.changelog-changes {
    color: var(--text);
    line-height: 1.8;
    font-size: 0.78rem;
}

/* Systeemvereisten-blok */
.product-requirements {
    max-width: 1200px;
    margin: 0 auto;
}

.requirements-box {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 2.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.req-item-label {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.4rem;
}

.req-item-value {
    font-size: 0.82rem;
    color: var(--text);
    line-height: 1.7;
}

/* ── PRODUCT SWITCHER — tabbladen bovenaan productpagina's ── */
.product-switcher {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 0;
    padding-top: 4.5rem; /* Ruimte voor de fixed nav */
    border-bottom: 1px solid var(--border);
    background: var(--surface);
    padding-left: 4rem;
    padding-right: 4rem;
}

.switcher-tab {
    padding: 1rem 2rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}

    .switcher-tab:hover {
        color: var(--text);
    }

    .switcher-tab.active {
        color: var(--accent);
        border-bottom-color: var(--accent);
    }

/* ── PRODUCT SHOWCASE — afbeelding + tekst secties ── */
.product-showcase {
    max-width: 1200px;
    margin: 0 auto;
}

.showcase-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 5rem;
}

    /* Omgekeerde volgorde: tekst links, afbeelding rechts */
    .showcase-row.reverse {
        direction: rtl;
    }

        .showcase-row.reverse > * {
            direction: ltr;
        }

.showcase-image {
    background: var(--surface);
    border: 1px solid var(--border);
    overflow: hidden;
}

.showcase-text {
    padding: 1rem 0;
}

.showcase-number {
    font-family: 'Syne', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    opacity: 0.15;
    line-height: 1;
    margin-bottom: 1rem;
}

.showcase-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.showcase-desc {
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.9;
}

/* ── ONTDEK-LINK stijl op de productkaarten ── */
.ontdek-link {
    color: var(--accent) !important;
    font-weight: 500;
}

.download-link {
    opacity: 0.7;
}

    .download-link:hover {
        opacity: 1;
    }

/* ── RESPONSIVE (NIEUW) ── */
@media (max-width: 1024px) {
    .hero-terminal {
        display: none;
    }

    #about {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .product-hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .showcase-row,
    .showcase-row.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        display: none;
    }

    section {
        padding: 4rem 1.5rem;
    }

    #hero {
        padding: 0 1.5rem;
    }

    .stats-band {
        flex-wrap: wrap;
    }

    .stat-item {
        flex: 1 1 50%;
        border-bottom: 1px solid var(--border);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .changelog-entry {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .trust-bar {
        gap: 1.5rem;
    }

    .product-switcher {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        overflow-x: auto;
    }

    .switcher-tab {
        padding: 0.8rem 1.2rem;
        white-space: nowrap;
    }
}
