/* =========================================================================
   LidForm — site stylesheet
   Merkkleuren en basislayout. Hero-specifieke regels staan onder .hero,
   zodat toekomstige pagina's ze niet erven.
   ========================================================================= */

:root {
    --navy: #0B1D3A;
    --blue: #0A66FF;
    --teal: #00BDA5;
    --green: #7BD321;
    --text: #15223a;
    --muted: #6b7280;
    --white: #ffffff;
    --border: rgba(11, 29, 58, .08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    min-height: 100vh;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 12% 15%, rgba(10, 102, 255, .12), transparent 32%),
        radial-gradient(circle at 88% 18%, rgba(0, 189, 165, .12), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f7fbff 55%, #f4faf8 100%);
    overflow-x: hidden;
}

body::before,
body::after {
    content: "";
    position: fixed;
    border-radius: 999px;
    filter: blur(70px);
    opacity: .35;
    pointer-events: none;
    z-index: 0;
}

body::before {
    width: 280px; height: 280px;
    background: var(--blue);
    top: -90px; left: -90px;
}

body::after {
    width: 320px; height: 320px;
    background: var(--green);
    right: -130px; bottom: -130px;
}

.page {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ---- Header -------------------------------------------------------------- */
.site-header {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 26px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand img {
    width: 245px;
    max-width: 62vw;
    height: auto;
    display: block;
}

.status {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 14px;
    border-radius: 999px;
    font-size: .88rem;
    font-weight: 700;
    color: var(--navy);
    background: rgba(255, 255, 255, .78);
    border: 1px solid var(--border);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 30px rgba(11, 29, 58, .05);
}

.status::before {
    content: "";
    width: 9px; height: 9px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal), var(--green));
    box-shadow: 0 0 0 5px rgba(0, 189, 165, .10);
}

/* ---- Hero (landingspagina) ---------------------------------------------- */
.hero {
    flex: 1;
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 54px;
    align-items: center;
    padding: 52px 0 72px;
}

.hero .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .13em;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 18px;
}

.hero h1 {
    margin: 0;
    max-width: 800px;
    font-size: clamp(3rem, 7vw, 6.4rem);
    line-height: .96;
    letter-spacing: -.055em;
    color: var(--navy);
}

.hero h1 .gradient {
    background: linear-gradient(90deg, var(--blue), var(--teal), var(--green));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero .lead {
    max-width: 680px;
    margin: 26px 0 0;
    font-size: clamp(1.08rem, 2vw, 1.28rem);
    line-height: 1.72;
    color: var(--muted);
}

.hero .features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.hero .feature {
    padding: 10px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .72);
    border: 1px solid var(--border);
    color: var(--navy);
    font-size: .94rem;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(11, 29, 58, .04);
}

.hero .feature::before {
    content: "✓";
    margin-right: 7px;
    color: var(--teal);
    font-weight: 900;
}

.hero .visual {
    position: relative;
    min-height: 470px;
    display: grid;
    place-items: center;
}

.hero .card {
    position: relative;
    width: min(100%, 430px);
    padding: 34px;
    border-radius: 30px;
    background: rgba(255, 255, 255, .82);
    border: 1px solid rgba(255, 255, 255, .88);
    box-shadow:
        0 30px 80px rgba(11, 29, 58, .14),
        inset 0 1px 0 rgba(255, 255, 255, .7);
    backdrop-filter: blur(22px);
}

.hero .card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 30px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(10, 102, 255, .35), rgba(0, 189, 165, .22), rgba(123, 211, 33, .30));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.hero .mini-label {
    color: var(--muted);
    font-size: .82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .11em;
}

.hero .card h2 {
    margin: 10px 0 8px;
    font-size: 2rem;
    letter-spacing: -.03em;
    color: var(--navy);
}

.hero .card p {
    margin: 0 0 28px;
    color: var(--muted);
    line-height: 1.65;
}

.hero .steps { display: grid; gap: 14px; }

.hero .step {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 13px;
    align-items: center;
    padding: 14px;
    border-radius: 17px;
    background: #fff;
    border: 1px solid var(--border);
}

.hero .step-num {
    width: 42px; height: 42px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    color: #fff;
    font-weight: 900;
    background: linear-gradient(135deg, var(--blue), var(--teal));
}

.hero .step strong {
    display: block;
    color: var(--navy);
    margin-bottom: 3px;
}

.hero .step span {
    font-size: .89rem;
    color: var(--muted);
}

.hero .floating {
    position: absolute;
    border-radius: 20px;
    background: rgba(255, 255, 255, .84);
    border: 1px solid rgba(255, 255, 255, .95);
    box-shadow: 0 20px 50px rgba(11, 29, 58, .10);
    backdrop-filter: blur(18px);
}

.hero .floating.one {
    width: 138px; height: 74px;
    top: 38px; right: 4px;
    transform: rotate(5deg);
}

.hero .floating.two {
    width: 112px; height: 112px;
    left: 2px; bottom: 34px;
    transform: rotate(-7deg);
}

.hero .floating.one::before,
.hero .floating.two::before {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 13px;
    background: linear-gradient(135deg, rgba(10, 102, 255, .18), rgba(0, 189, 165, .18), rgba(123, 211, 33, .18));
}

/* ---- Footer -------------------------------------------------------------- */
.site-footer {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 24px 0 34px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #7b8493;
    font-size: .88rem;
    border-top: 1px solid rgba(11, 29, 58, .06);
}

.site-footer strong { color: var(--navy); }

/* ---- Responsive ---------------------------------------------------------- */
@media (max-width: 900px) {
    .site-header { padding-top: 20px; }
    .status { display: none; }

    .hero {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-top: 30px;
    }

    .hero .visual { min-height: auto; }
    .hero .floating { display: none; }
    .hero .card { width: 100%; }

    .site-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 560px) {
    .site-header,
    .hero,
    .site-footer {
        width: min(100% - 28px, 1180px);
    }

    .brand img { width: 210px; }

    .hero h1 { font-size: clamp(2.7rem, 15vw, 4.2rem); }

    .hero .card {
        padding: 24px;
        border-radius: 24px;
    }
}

@media (prefers-reduced-motion: no-preference) {
    .hero .card { animation: rise .8s ease-out both; }
    .content { animation: fade .7s ease-out .08s both; }

    @keyframes rise {
        from { opacity: 0; transform: translateY(22px); }
        to   { opacity: 1; transform: translateY(0); }
    }

    @keyframes fade {
        from { opacity: 0; transform: translateY(12px); }
        to   { opacity: 1; transform: translateY(0); }
    }
}
