/* ============================================================
   VABIER — HVAC desktop tool · Landing page
   Stylesheet for index.html
   Mobile-first · No frameworks · Flexbox + Grid
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
    /* Brand palette */
    --color-primary: #081061;
    --color-primary-700: #161635;
    --color-primary-300: #4a52a8;
    --color-secondary: #ed6c14;
    --color-secondary-600: #d35f0e;
    --color-bg: #eff2f9;
    --color-surface: #ffffff;
    --color-text: #0e1430;
    --color-text-muted: #5a608a;
    --color-border: #e3e7f3;
    --color-positive: #1f9d63;

    /* Spacing scale */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.5rem;
    --space-6: 2rem;
    --space-7: 3rem;
    --space-8: 4rem;
    --space-9: 6rem;

    /* Type */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --font-mono: ui-monospace, 'SFMono-Regular', Menlo, Monaco, Consolas, 'Liberation Mono', monospace;

    /* Radius / shadow / motion */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;
    --shadow-sm: 0 2px 6px rgba(8, 16, 97, 0.06);
    --shadow-md: 0 12px 28px rgba(8, 16, 97, 0.08);
    --shadow-lg: 0 28px 60px rgba(8, 16, 97, 0.14);
    --ease: cubic-bezier(.2, .8, .2, 1);

    /* Layout */
    --container: 1180px;
    --nav-h: 76px;
}

/* ---------- Reset & base ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-h);
}

body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img,
svg {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

h1, h2, h3, h4 {
    margin: 0;
    line-height: 1.18;
    color: var(--color-primary);
    letter-spacing: -0.02em;
    font-weight: 700;
}

p { margin: 0; }
code { font-family: var(--font-mono); }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ---------- Layout helpers ---------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-5);
}

section { padding: var(--space-8) 0; }

.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto var(--space-7);
}

.section-head h2 {
    font-size: clamp(1.7rem, 3.4vw, 2.4rem);
    margin-bottom: var(--space-3);
}

.section-head .lead {
    color: var(--color-text-muted);
    font-size: 1.05rem;
}

.eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-secondary);
    margin-bottom: var(--space-3);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: 0.9rem 1.45rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.96rem;
    transition: transform .2s var(--ease), box-shadow .25s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
    white-space: nowrap;
    cursor: pointer;
    line-height: 1;
}

.btn-sm  { padding: 0.6rem 1.05rem; font-size: 0.9rem; }
.btn-block { width: 100%; }

.btn-primary {
    background: var(--color-secondary);
    color: #fff;
    box-shadow: 0 10px 22px rgba(237, 108, 20, 0.28);
}

.btn-primary:hover {
    background: var(--color-secondary-600);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(237, 108, 20, 0.36);
}

.btn-ghost {
    background: transparent;
    color: var(--color-primary);
    border: 1.5px solid rgba(8, 16, 97, 0.18);
}

.btn-ghost:hover {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.btn-ghost-light {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.32);
}

.btn-ghost-light:hover {
    background: #fff;
    color: var(--color-primary);
    border-color: #fff;
}

.check {
    display: inline-flex;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(31, 157, 99, 0.15);
    color: var(--color-positive);
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #161635;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}

.site-header.scrolled {
    border-bottom-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
    background: #161635;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-h);
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--color-primary);
    letter-spacing: -0.01em;
}

.logo-mark {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: #ffffff;
    object-fit: contain;
    padding: 2px;
    display: block;
    flex-shrink: 0;
}

.logo-wordmark {
    height: 26px;
    width: auto;
    display: block;
    object-fit: contain;
}



.logo-light { color: #fff; }

/* Invert wordmark op donkere achtergrond (footer) zodat hij leesbaar blijft */
.logo-light .logo-wordmark {
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.7rem;
}

.nav-menu a {
    
    color: #fff;
    font-size: 0.93rem;
    transition: color .2s var(--ease);
}

.nav-menu a:hover { color: var(--color-secondary); }
.nav-menu .btn-primary { color: #fff; }

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform .3s var(--ease), opacity .2s var(--ease);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    overflow: hidden;
    padding: var(--space-7) 0 var(--space-8);
}

.hero-bg {
    position: absolute;
    inset: -10% -10% auto auto;
    width: 70%;
    height: 90%;
    background:
        radial-gradient(circle at 30% 30%, rgba(237, 108, 20, 0.18), transparent 55%),
        radial-gradient(circle at 70% 70%, rgba(8, 16, 97, 0.22), transparent 55%);
    filter: blur(30px);
    pointer-events: none;
    z-index: 0;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: var(--space-7);
    align-items: center;
}

.hero-title {
    font-size: clamp(2rem, 4.6vw, 3.4rem);
    line-height: 1.08;
    margin-bottom: var(--space-4);
}

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

.hero-sub {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 540px;
    margin-bottom: var(--space-5);
}

.hero-cta {
    display: flex;
    gap: var(--space-3);
    flex-wrap: wrap;
    margin-bottom: var(--space-5);
}

.hero-bullets {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    font-size: 0.92rem;
    color: var(--color-text-muted);
}

.hero-bullets li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ---- Hero image ---- */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    margin: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
    width: 100%;
    aspect-ratio: 4 / 3;
    background: linear-gradient(180deg, #cbd2e8, #aeb6d6);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-stat {
    position: absolute;
    background: #fff;
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    border: 1px solid var(--color-border);
}

.hero-stat strong {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: -0.01em;
}

.hero-stat span {
    font-size: 0.74rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 2px;
}

.hero-stat-1 {
    top: 8%;
    left: -16px;
}

.hero-stat-2 {
    bottom: 8%;
    right: -16px;
}

.hero-stat-2 strong { color: var(--color-secondary); }

/* ============================================================
   VOORDELEN
   ============================================================ */
.benefits {
    background: var(--color-surface);
    position: relative;
    overflow: hidden;
}

/* Subtle HVAC-monteur photo behind the content — fades into the surface */
.benefits-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 42%;
    max-width: 520px;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.benefits-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    opacity: 0.14;
    filter: grayscale(0.5) contrast(0.95);
    -webkit-mask-image: linear-gradient(to left, #000 25%, transparent 95%);
            mask-image: linear-gradient(to left, #000 25%, transparent 95%);
}

.benefits .container {
    position: relative;
    z-index: 1;
}

@media (max-width: 860px) {
    .benefits-bg {
        width: 60%;
        opacity: 0.65;
    }
    .benefits-bg img {
        opacity: 0.08;
    }
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-5);
}

.benefit-card {
    background: var(--color-bg);
    border-radius: var(--radius-md);
    padding: var(--space-5);
    border: 1px solid var(--color-border);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(8, 16, 97, 0.16);
}

.benefit-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--color-secondary);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .35s var(--ease);
}

.benefit-card:hover::before { transform: scaleY(1); }

.benefit-num {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--color-secondary);
    font-weight: 700;
    letter-spacing: 0.06em;
    margin-bottom: var(--space-3);
}

.benefit-card h3 {
    font-size: 1.05rem;
    margin-bottom: var(--space-2);
    line-height: 1.25;
}

.benefit-card p {
    color: var(--color-text-muted);
    font-size: 0.93rem;
    line-height: 1.55;
}

/* ============================================================
   FEATURES
   ============================================================ */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-5);
}

.feature-card {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    padding: var(--space-6);
    border: 1px solid var(--color-border);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(8, 16, 97, 0.16);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(8, 16, 97, 0.06);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-4);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: var(--space-2);
}

.feature-card p {
    color: var(--color-text-muted);
    font-size: 0.94rem;
    line-height: 1.55;
    flex-grow: 1;
}

.feature-tag {
    display: inline-block;
    align-self: flex-start;
    margin-top: var(--space-4);
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    background: rgba(237, 108, 20, 0.1);
    color: var(--color-secondary);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.feature-card-highlight {
    background: linear-gradient(160deg, var(--color-primary), var(--color-primary-700));
    color: #fff;
    border-color: transparent;
}

.feature-card-highlight h3 { color: #fff; }
.feature-card-highlight p { color: rgba(255, 255, 255, 0.78); }

.feature-card-highlight .feature-icon {
    background: rgba(237, 108, 20, 0.18);
    color: var(--color-secondary);
}

.feature-card-highlight .feature-tag {
    background: rgba(237, 108, 20, 0.22);
    color: #ffd2b0;
}

.feature-card-info {
    background: var(--color-bg);
    border: 1px dashed var(--color-border);
    justify-content: center;
}

.feature-card-info h3 {
    font-size: 1.05rem;
    color: var(--color-primary);
}

.feature-card-info:hover {
    transform: none;
    box-shadow: none;
    border-color: var(--color-secondary);
}

/* ============================================================
   DEMO LOGIN
   ============================================================ */
.demo { background: var(--color-surface); }

.demo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-7);
    align-items: center;
}

.demo-text h2 {
    font-size: clamp(1.6rem, 3.2vw, 2.2rem);
    margin-bottom: var(--space-3);
}

.demo-text p {
    color: var(--color-text-muted);
    font-size: 1.02rem;
    margin-bottom: var(--space-5);
}

.demo-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.demo-list li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

/* ---- Login card (matches actual Vabier login form) ---- */
.demo-card-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-3);
    max-width: 460px;
    margin: 0 auto;
    width: 100%;
}

/* Browser-bar style indicator above the card */
.demo-browser-bar {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.45rem 0.95rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--color-text-muted);
    box-shadow: var(--shadow-sm);
}

.demo-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-positive);
    box-shadow: 0 0 8px rgba(31, 157, 99, 0.55);
    flex-shrink: 0;
}

.demo-url {
    color: var(--color-text);
    font-weight: 500;
}

.demo-url-link {
    color: var(--color-secondary);
    font-weight: 700;
    text-decoration: none;
    padding-left: 0.25rem;
    transition: transform .2s var(--ease);
}

.demo-url-link:hover { transform: translate(2px, -2px); }

/* The actual login card */
.demo-card {
    background: var(--color-surface);
    color: var(--color-text);
    border-radius: var(--radius-md);
    padding: var(--space-6) var(--space-5);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.demo-card-title {
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: var(--space-5);
    letter-spacing: -0.02em;
}

.demo-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.demo-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.demo-form-group > label:not(.demo-checkbox) {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-primary);
}

.demo-input-wrap {
    position: relative;
}

.demo-form input[type="email"],
.demo-form input[type="password"],
.demo-form input[type="text"] {
    width: 100%;
    padding: 0.85rem 5.5rem 0.85rem 0.95rem;
    border: 1.5px solid #c4cbe4;
    border-radius: 8px;
    background: #fcfdff;
    font: inherit;
    font-size: 0.95rem;
    color: var(--color-text);
    transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}

.demo-form input::placeholder { color: #9aa2c0; }

.demo-form input:focus {
    outline: none;
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 3px rgba(237, 108, 20, 0.15);
}

.demo-form input:read-only {
    cursor: default;
}

/* Copy button — positioned inside the input field, light variant */
.demo-input-wrap .copy-btn {
    position: absolute;
    right: 0.4rem;
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-bg);
    color: var(--color-primary);
    border: 1px solid var(--color-border);
    padding: 0.35rem 0.7rem;
    border-radius: 6px;
    font-size: 0.74rem;
    font-weight: 600;
    transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
    flex-shrink: 0;
}

.demo-input-wrap .copy-btn:hover {
    background: var(--color-secondary);
    color: #fff;
    border-color: var(--color-secondary);
}

.demo-input-wrap .copy-btn.copied {
    background: var(--color-positive);
    color: #fff;
    border-color: var(--color-positive);
}

.demo-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    cursor: pointer;
    user-select: none;
    margin-top: 0.4rem;
    width: fit-content;
}

.demo-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--color-secondary);
    cursor: pointer;
    margin: 0;
}

.demo-submit {
    margin-top: var(--space-2);
    font-size: 1rem;
    padding: 0.95rem 1.5rem;
    color: #fff;
}

.demo-account-link {
    display: block;
    text-align: center;
    color: var(--color-secondary);
    font-weight: 600;
    font-size: 0.93rem;
    margin-top: 0.25rem;
    transition: color .2s var(--ease);
}

.demo-account-link:hover {
    color: var(--color-secondary-600);
    text-decoration: underline;
}

/* ============================================================
   RAPPORTEN
   ============================================================ */
.reports-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: var(--space-7);
    align-items: center;
}

.reports-text h2 {
    font-size: clamp(1.6rem, 3.2vw, 2.2rem);
    margin-bottom: var(--space-3);
}

.reports-text p {
    color: var(--color-text-muted);
    font-size: 1.02rem;
    margin-bottom: var(--space-5);
}

.reports-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    margin-bottom: var(--space-5);
}

.reports-list li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

/* ---- Report mockup (stacked PDF pages) ---- */
.reports-visual {
    position: relative;
    padding: var(--space-5);
}

.report-mockup {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1.25;
    max-width: 420px;
    margin: 0 auto;
}

.report-page {
    position: absolute;
    inset: 0;
    background: #fff;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
}

.report-page-back {
    transform: rotate(-6deg) translate(-8%, 6%);
    background: linear-gradient(180deg, #fdfdff, #f0f3fb);
    box-shadow: var(--shadow-sm);
}

.report-page-mid {
    transform: rotate(3deg) translate(4%, -2%);
    background: linear-gradient(180deg, #ffffff, #f6f8fd);
    box-shadow: var(--shadow-sm);
}

.report-page-front {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    box-shadow: var(--shadow-lg);
}

.report-page-front.report-page-image {
    padding: 1rem 1rem 1.1rem;
    gap: 0.65rem;
    overflow: hidden;
}

.report-screenshot {
    margin: 0;
    flex: 1;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 6px;
    background: var(--color-bg);
}

.report-screenshot img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top center;
    display: block;
}

.report-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 0.7rem;
    border-bottom: 1px solid var(--color-border);
}

.report-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.report-logo-mark {
    width: 26px;
    height: 26px;
    border-radius: 5px;
    background: #000;
    object-fit: contain;
    padding: 1px;
    display: block;
    flex-shrink: 0;
}

.report-logo-text {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--color-primary);
}

.report-meta {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--color-text-muted);
}

.report-title {
    font-size: 1.05rem;
    color: var(--color-primary);
    margin: 0;
}

.report-sub {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin: 0;
}

.report-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.report-stats > div {
    background: var(--color-bg);
    border-radius: 8px;
    padding: 0.55rem 0.7rem;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.report-stats span {
    font-size: 0.65rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.report-stats strong {
    font-size: 0.95rem;
    color: var(--color-primary);
    font-weight: 800;
}

.report-stat-accent {
    background: linear-gradient(160deg, #fff5ee, #ffe9d8) !important;
    border: 1px solid rgba(237, 108, 20, 0.3);
}

.report-stat-accent strong { color: var(--color-secondary); }

.report-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 6px;
    height: 90px;
    margin-top: 0.3rem;
}

.r-bar {
    flex: 1;
    background: linear-gradient(180deg, var(--color-primary-300), var(--color-primary));
    border-radius: 4px 4px 0 0;
    position: relative;
}

.r-bar-accent {
    background: linear-gradient(180deg, #ff8c3d, var(--color-secondary));
}

.r-bar span {
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.6rem;
    color: var(--color-text-muted);
    white-space: nowrap;
}

.report-table {
    margin-top: 1.1rem;
    border-top: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
}

.report-row {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    border-bottom: 1px dashed var(--color-border);
    font-size: 0.78rem;
}

.report-row span:first-child { color: var(--color-text-muted); }
.report-row span:last-child { color: var(--color-primary); font-weight: 600; font-family: var(--font-mono); }

.report-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    padding-top: 0.6rem;
    border-top: 1px solid var(--color-border);
    font-size: 0.7rem;
    color: var(--color-text-muted);
}

/* ============================================================
   DESKTOP APP PREVIEW
   ============================================================ */
.preview { background: var(--color-surface); }

.preview-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: var(--space-7);
    align-items: center;
}

.preview-text h2 {
    font-size: clamp(1.6rem, 3.2vw, 2.2rem);
    margin-bottom: var(--space-3);
}

.preview-text p {
    color: var(--color-text-muted);
    margin-bottom: var(--space-5);
    font-size: 1.02rem;
}

.preview-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.preview-list li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.mockup-frame {
    background: linear-gradient(160deg, #ffffff 0%, #e7ecf7 100%);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.mockup-bar {
    background: #f4f6fb;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid var(--color-border);
}

.mockup-bar > span:not(.mockup-title) {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--color-border);
    flex-shrink: 0;
}

.mockup-bar > span:nth-child(1) { background: #ff6058; }
.mockup-bar > span:nth-child(2) { background: #ffbd2e; }
.mockup-bar > span:nth-child(3) { background: #27c93f; }

.mockup-title {
    margin-left: auto;
    margin-right: auto;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--color-text-muted);
    background: none !important;
    width: auto !important;
    height: auto !important;
    border-radius: 0 !important;
}

.mockup-screenshot {
    margin: 0;
    line-height: 0;
    background: #1a1a2e;
}

.mockup-screenshot img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.mockup-content {
    display: grid;
    grid-template-columns: 180px 1fr;
    min-height: 380px;
}

.mockup-side {
    background: linear-gradient(180deg, #f8faff 0%, #eef1fb 100%);
    padding: var(--space-4) var(--space-3);
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-right: 1px solid var(--color-border);
}

.mockup-side-item {
    padding: 9px 13px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.mockup-side-item.active {
    background: #fff;
    color: var(--color-primary);
    box-shadow: var(--shadow-sm);
    font-weight: 600;
    border-left: 3px solid var(--color-secondary);
}

.mockup-main {
    padding: var(--space-5);
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
}

.mockup-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-3);
}

.stat-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: var(--space-4);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-card-accent {
    background: linear-gradient(160deg, #fff5ee, #fff);
    border-color: rgba(237, 108, 20, 0.3);
}

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

.stat-value {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--color-primary);
}

.stat-delta {
    font-size: 0.76rem;
    color: var(--color-text-muted);
    font-family: var(--font-mono);
}

.stat-delta.positive { color: var(--color-positive); }

.mockup-chart {
    flex: 1;
    display: flex;
    align-items: flex-end;
    gap: 10px;
    padding: var(--space-4);
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    min-height: 140px;
}

.mockup-chart .bar {
    flex: 1;
    background: linear-gradient(180deg, var(--color-primary-300), var(--color-primary));
    border-radius: 6px 6px 0 0;
    transition: height .8s var(--ease);
}

.mockup-chart .bar-accent {
    background: linear-gradient(180deg, #ff8c3d, var(--color-secondary));
}

/* ============================================================
   FABRIKANTEN
   ============================================================ */
.brands {
    position: relative;
    overflow: hidden;
}

.brands-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.brands-bg img {
    width: 50%;
    height: 50%;
    object-fit: cover;
    object-position: center;
}

.brands-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(239, 242, 249, 0.92) 0%,
        rgba(239, 242, 249, 0.82) 50%,
        rgba(239, 242, 249, 0.92) 100%
    );
}

.brands .container {
    position: relative;
    z-index: 1;
}

.brand-strip {
    display: flex;
    gap: var(--space-4);
    overflow-x: auto;
    padding: var(--space-3) var(--space-2) var(--space-5);
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--color-border) transparent;
}

.brand-strip::-webkit-scrollbar { height: 6px; }
.brand-strip::-webkit-scrollbar-track { background: transparent; }
.brand-strip::-webkit-scrollbar-thumb { background: var(--color-border); border-radius: 6px; }

.brand-item {
    flex: 0 0 auto;
    min-width: 160px;
    height: 90px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-4);
    scroll-snap-align: start;
    transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
    filter: grayscale(1);
    opacity: 0.78;
}

.brand-item:hover {
    transform: translateY(-4px);
    border-color: rgba(8, 16, 97, 0.2);
    box-shadow: var(--shadow-sm);
    filter: grayscale(0);
    opacity: 1;
}

.brand-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Text fallback when the image is missing (injected by JS) */
.brand-fallback {
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--color-primary);
    letter-spacing: -0.01em;
    text-align: center;
}

.brands-foot {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-top: var(--space-3);
}

.brands-foot a {
    color: var(--color-secondary);
    font-weight: 600;
    border-bottom: 1px solid rgba(237, 108, 20, 0.3);
    padding-bottom: 1px;
    transition: border-color .2s var(--ease);
}

.brands-foot a:hover { border-color: var(--color-secondary); }

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta-section { padding-bottom: var(--space-9); }

.cta-card {
    background:
        radial-gradient(circle at 80% 20%, rgba(237, 108, 20, 0.5), transparent 50%),
        linear-gradient(160deg, var(--color-primary), var(--color-primary-700));
    color: #fff;
    border-radius: var(--radius-xl);
    padding: var(--space-8) var(--space-6);
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.cta-card h2 {
    color: #fff;
    font-size: clamp(1.8rem, 3.4vw, 2.4rem);
    margin-bottom: var(--space-3);
}

.cta-card > p {
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: var(--space-5);
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: var(--space-3);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-4);
}

.cta-foot {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85rem;
    font-family: var(--font-mono);
}

/* ============================================================
   TOAST (copy feedback)
   ============================================================ */
.toast {
    position: fixed;
    bottom: var(--space-5);
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--color-primary);
    color: #fff;
    padding: 0.7rem 1.1rem;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 500;
    box-shadow: var(--shadow-lg);
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s var(--ease), transform .25s var(--ease);
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: #000000;
    color: rgba(255, 255, 255, 0.7);
    padding-top: var(--space-8);
    margin-top: var(--space-7);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: var(--space-6);
    padding-bottom: var(--space-7);
}

.footer-brand p {
    margin-top: var(--space-3);
    font-size: 0.92rem;
    max-width: 280px;
    line-height: 1.65;
}

.footer-col h4 {
    color: #fff;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-3);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.footer-col a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
    transition: color .2s var(--ease);
}

.footer-col a:hover { color: var(--color-secondary); }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-4) 0;
    font-size: 0.85rem;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-3);
}

.footer-socials {
    display: flex;
    gap: var(--space-4);
}

.footer-socials a {
    color: rgba(255, 255, 255, 0.6);
    transition: color .2s var(--ease);
}

.footer-socials a:hover { color: var(--color-secondary); }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s var(--ease), transform .6s var(--ease);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .benefit-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
    section { padding: var(--space-7) 0; }

    .hero-grid,
    .demo-grid,
    .reports-grid,
    .preview-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }

    .hero-visual { order: -1; }
    .hero-image { max-width: 480px; margin: 0 auto; }

    .reports-visual { padding: var(--space-3); }

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

@media (max-width: 680px) {
    :root { --space-9: 4rem; }

    .nav-toggle { display: flex; }

    .nav-menu {
        position: fixed;
        top: var(--nav-h);
        left: 0;
        right: 0;
        background: #161635;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: var(--space-3) var(--space-5);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
        transform: translateY(-110%);
        transition: transform .35s var(--ease);
        z-index: 99;
    }

    .nav-menu.open { transform: translateY(0); }

    .nav-menu li { border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
    .nav-menu li:last-child { border-bottom: none; margin-top: var(--space-3); }

    .nav-menu a {
        display: block;
        padding: var(--space-3) 0;
    }

    .nav-menu .btn-primary {
        display: inline-flex;
        text-align: center;
        justify-content: center;
    }

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

    .hero-stat-1 { top: 4%; left: -8px; }
    .hero-stat-2 { bottom: 4%; right: -8px; }

    .mockup-content { grid-template-columns: 1fr; }
    .mockup-side {
        flex-direction: row;
        overflow-x: auto;
        border-right: none;
        border-bottom: 1px solid var(--color-border);
        padding: var(--space-3);
    }
    .mockup-side-item { white-space: nowrap; }
    .mockup-side-item.active { border-left: none; border-bottom: 3px solid var(--color-secondary); }

    .mockup-stats { grid-template-columns: 1fr; }

    .brand-item { min-width: 140px; height: 80px; }

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

@media (max-width: 460px) {
    .feature-card,
    .benefit-card,
    .demo-card {
        padding: var(--space-5);
    }

    .cta-card { padding: var(--space-7) var(--space-4); }
    .cta-actions { flex-direction: column; align-items: stretch; }

    .hero-stat strong { font-size: 0.95rem; }
    .hero-stat span { font-size: 0.68rem; }
}

/* ============================================================
   ACCESSIBILITY / REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}

/* Print niceties for the report mockup section */
@media print {
    .site-header, .site-footer, .nav, .cta-section { display: none; }
    body { background: #fff; }
}

/* ============================================================
   LEGAL PAGES (privacy.html, voorwaarden.html)
   ============================================================ */
.legal-main {
    padding: var(--space-8) 0 var(--space-9);
}

.legal-back {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: var(--space-5);
    transition: color .2s var(--ease);
}

.legal-back:hover { color: var(--color-secondary-600); }

.legal-card {
    max-width: 760px;
    margin: 0 auto;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-7) var(--space-6);
    box-shadow: var(--shadow-sm);
}

.legal-card h1 {
    font-size: clamp(1.8rem, 3.4vw, 2.4rem);
    margin-bottom: var(--space-2);
}

.legal-meta {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-5);
    border-bottom: 1px solid var(--color-border);
}

.legal-card h2 {
    font-size: 1.15rem;
    margin-top: var(--space-6);
    margin-bottom: var(--space-3);
    padding-left: var(--space-3);
    border-left: 3px solid var(--color-secondary);
}

.legal-card p {
    color: var(--color-text-muted);
    font-size: 0.97rem;
    line-height: 1.65;
    margin-bottom: var(--space-4);
}

.legal-card ul {
    color: var(--color-text-muted);
    font-size: 0.97rem;
    line-height: 1.65;
    margin: 0 0 var(--space-4);
    padding-left: 1.25rem;
    list-style: disc;
}

.legal-card li { margin-bottom: var(--space-2); }

.legal-card a {
    color: var(--color-secondary);
    font-weight: 500;
}

.legal-card a:hover { text-decoration: underline; }

@media (max-width: 680px) {
    .legal-card { padding: var(--space-6) var(--space-5); }
}
