/* ===========================================================
   Landingspagina "Website laten maken in Twente"
   Eigen, lichte stylesheet (los van styles.css) voor snelheid.
   Merkkleuren: zwart/wit, accent #FF3366, geel #FFE500.
   Mobile-first. Geen custom cursor / cirkelmenu (afleiding).
   =========================================================== */

:root {
    --black: #0A0A0A;
    --white: #FFFFFF;
    --gray: #5A5A5A;
    --light: #F4F4F2;
    --line: #E4E4E0;
    --accent: #FF3366;
    --accent-dark: #E11E52;
    --yellow: #FFE500;
    --green: #1FA463;
    --radius: 14px;
    --maxw: 1140px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: 'Archivo', system-ui, -apple-system, sans-serif;
    color: var(--black);
    background: var(--white);
    line-height: 1.6;
    font-size: 17px;
    overflow-x: hidden;
}

h1, h2, h3 { line-height: 1.12; font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.7rem, 4.5vw, 2.6rem); margin-bottom: .6em; }
h3 { font-size: 1.25rem; }
p { color: var(--black); }
a { color: inherit; }
img { max-width: 100%; display: block; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.serif { font-family: 'DM Serif Display', Georgia, serif; font-weight: 400; letter-spacing: -0.01em; }
.hl { color: var(--accent); }
.mark { background: linear-gradient(180deg, transparent 60%, var(--yellow) 60%); padding: 0 2px; }
.center { text-align: center; }
.muted { color: var(--gray); }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .5em;
    font-weight: 700; font-size: 1.02rem; text-decoration: none;
    padding: 16px 28px; border-radius: var(--radius); border: 2px solid var(--black);
    min-height: 54px; cursor: pointer; transition: transform .12s ease, background .15s ease;
    line-height: 1.1; text-align: center;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { background: #222; }
.btn-wa { background: #25D366; color: #073d23; border-color: #25D366; }
.btn-wa:hover { background: #1eb858; }
.btn-ghost { background: transparent; color: var(--black); }
.btn-block { width: 100%; }

/* ---------- Topbar ---------- */
.topbar {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255,255,255,.92); backdrop-filter: saturate(180%) blur(8px);
    border-bottom: 1px solid var(--line);
}
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.topbar-logo { font-family: 'DM Serif Display', serif; font-size: 1.4rem; letter-spacing: -.5px; text-decoration: none; }
.topbar-logo b { color: var(--accent); }
.topbar-actions { display: flex; align-items: center; gap: 10px; }
.topbar-phone { font-weight: 700; text-decoration: none; white-space: nowrap; }
.topbar-phone span { display: none; }

/* ---------- Hero ---------- */
.hero { background: var(--light); border-bottom: 1px solid var(--line); padding: 38px 0 46px; }
.hero-grid { display: grid; gap: 30px; }
.kicker {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--black); color: var(--white); font-size: .82rem; font-weight: 700;
    letter-spacing: .04em; text-transform: uppercase; padding: 7px 14px; border-radius: 999px;
}
.hero h1 { font-size: clamp(2.05rem, 6.2vw, 3.6rem); margin: 18px 0 16px; }
.hero-sub { font-size: 1.12rem; color: #2a2a2a; max-width: 30ch; }
.hero-rating { display: flex; align-items: center; gap: 10px; margin: 22px 0 4px; flex-wrap: wrap; }
.stars { color: #f5a623; letter-spacing: 2px; font-size: 1.1rem; }
.hero-rating small { color: var(--gray); }
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.hero-usps { list-style: none; margin: 24px 0 0; display: grid; gap: 9px; }
.hero-usps li { display: flex; gap: 10px; font-weight: 600; }
.hero-usps li::before { content: "✓"; color: var(--green); font-weight: 900; }

/* ---------- Form card ---------- */
.formcard {
    background: var(--white); border: 2px solid var(--black); border-radius: 18px;
    padding: 26px 24px; box-shadow: 8px 8px 0 var(--black);
}
.formcard h2 { font-size: 1.4rem; margin-bottom: 6px; }
.formcard .lead { color: var(--gray); font-size: .98rem; margin-bottom: 18px; }
.step { display: none; }
.step.active { display: block; animation: fade .25s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(6px);} to {opacity:1; transform:none;} }
.steplabel { font-size: .8rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.choice { display: grid; gap: 10px; }
.choice button {
    text-align: left; font: inherit; font-weight: 600; background: var(--light);
    border: 2px solid var(--line); border-radius: 12px; padding: 14px 16px; cursor: pointer;
    transition: border-color .12s ease, background .12s ease; min-height: 52px;
}
.choice button:hover { border-color: var(--black); background: #fff; }
.choice button small { display: block; font-weight: 500; color: var(--gray); margin-top: 2px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-weight: 700; font-size: .92rem; margin-bottom: 6px; }
.field input, .field select {
    width: 100%; font: inherit; padding: 13px 14px; border: 2px solid var(--line);
    border-radius: 10px; background: #fff; min-height: 50px;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--accent); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-back { background: none; border: none; font: inherit; color: var(--gray); cursor: pointer; text-decoration: underline; padding: 6px 0; margin-top: 6px; }
.form-note { font-size: .82rem; color: var(--gray); margin-top: 12px; text-align: center; }
.form-error { background: #fdecef; border: 1px solid var(--accent); color: var(--accent-dark); padding: 12px 14px; border-radius: 10px; margin-bottom: 16px; font-size: .92rem; }

/* ---------- Sections ---------- */
section { padding: 56px 0; }
.eyebrow { color: var(--accent); font-weight: 800; letter-spacing: .06em; text-transform: uppercase; font-size: .82rem; margin-bottom: 10px; }
.section-head { max-width: 56ch; margin-bottom: 36px; }
.section-head.center { margin-left: auto; margin-right: auto; }

/* Trustbar */
.trustbar { background: var(--black); color: var(--white); padding: 22px 0; }
.trustbar .wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 30px; text-align: center; }
.trustbar strong { color: var(--yellow); }

/* Problem */
.cards3 { display: grid; gap: 18px; }
.pcard { background: var(--light); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.pcard .ic { font-size: 1.6rem; margin-bottom: 10px; display: block; }

/* Benefits */
.benefits { background: var(--light); }
.bgrid { display: grid; gap: 18px; }
.bcard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.bcard h3 { margin-bottom: 8px; }
.bcard .ic { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 10px; background: var(--accent); color: #fff; font-size: 1.2rem; margin-bottom: 14px; }

/* Pricing */
.pricegrid { display: grid; gap: 18px; align-items: start; }
.plan { border: 2px solid var(--black); border-radius: var(--radius); padding: 26px 24px; background: #fff; }
.plan.feat { background: var(--black); color: #fff; position: relative; }
.plan.feat .price, .plan.feat h3 { color: #fff; }
.badge { position: absolute; top: -13px; left: 24px; background: var(--yellow); color: #000; font-weight: 800; font-size: .74rem; letter-spacing: .04em; padding: 5px 12px; border-radius: 999px; text-transform: uppercase; }
.plan h3 { font-size: 1.15rem; text-transform: uppercase; letter-spacing: .03em; }
.plan .price { font-family: 'DM Serif Display', serif; font-size: 2.3rem; margin: 8px 0 4px; }
.plan .term { font-weight: 700; color: var(--green); font-size: .92rem; margin-bottom: 16px; }
.plan.feat .term { color: var(--yellow); }
.plan ul { list-style: none; display: grid; gap: 9px; margin-bottom: 22px; }
.plan ul li { display: flex; gap: 9px; font-size: .96rem; }
.plan ul li::before { content: "✓"; color: var(--accent); font-weight: 900; }
.plan.feat ul li::before { color: var(--yellow); }
.price-note { text-align: center; color: var(--gray); margin-top: 22px; font-size: .95rem; }

/* Cases */
.casegrid { display: grid; gap: 20px; }
.case { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; }
.case img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; background: var(--light); }
.case-body { padding: 20px; }
.case-cat { font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; color: var(--accent); }
.case h3 { margin: 6px 0 10px; }
.case-stats { display: flex; gap: 18px; margin-top: 14px; border-top: 1px solid var(--line); padding-top: 14px; }
.case-stats b { font-family: 'DM Serif Display', serif; font-size: 1.4rem; display: block; }
.case-stats span { font-size: .8rem; color: var(--gray); }

/* Steps */
.steps { background: var(--light); }
.stepgrid { display: grid; gap: 20px; counter-reset: s; }
.stepitem { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; position: relative; }
.stepitem .n { font-family: 'DM Serif Display', serif; font-size: 2rem; color: var(--accent); }

/* Sterren-balk (ondersteunt halve sterren via --pct) */
.starbar { display: inline-block; position: relative; font-family: Arial, sans-serif; font-size: 1.15rem; line-height: 1; letter-spacing: 2px; white-space: nowrap; }
.starbar::before { content: "★★★★★"; color: #d8d8d2; }
.starbar::after { content: "★★★★★"; color: #f5a623; position: absolute; left: 0; top: 0; width: var(--pct, 0%); overflow: hidden; }

/* Hero-rating als klikbare link */
a.hero-rating { text-decoration: none; }
a.hero-rating:hover strong { text-decoration: underline; }

/* Reviews-sectie */
.rating-badges { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-bottom: 34px; }
.rbadge { display: flex; flex-direction: column; align-items: center; gap: 6px; text-decoration: none; color: var(--black);
    border: 2px solid var(--black); border-radius: var(--radius); padding: 18px 26px; min-width: 210px; background: #fff; transition: transform .12s ease; }
.rbadge:hover { transform: translateY(-2px); }
.rbadge-name { font-weight: 800; font-size: 1.1rem; }
.rbadge.tp .rbadge-name { color: #00b67a; }   /* Trustpilot-groen */
.rbadge.g .rbadge-name { color: #4285F4; }     /* Google-blauw */
.rbadge-score { font-size: .9rem; color: var(--gray); }
.rbadge-score strong { color: var(--black); }

.rbadge-widget { display: flex; align-items: center; }
.tp-carousel { margin: 0 auto 26px; max-width: 1000px; }
.reviewgrid { display: grid; gap: 18px; }
.rcard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; display: flex; flex-direction: column; gap: 12px; margin: 0; }
.rcard blockquote { margin: 0; font-size: .98rem; line-height: 1.55; color: #1f1f1f; }
.rcard figcaption { margin-top: auto; }
.rcard-name { display: block; font-weight: 700; }
.rcard-meta { display: block; font-size: .82rem; color: var(--gray); }

/* Quote (legacy, ongebruikt) */
.quote { background: var(--black); color: #fff; }
.quote blockquote { font-family: 'DM Serif Display', serif; font-size: clamp(1.4rem, 3.5vw, 2.1rem); line-height: 1.3; max-width: 24ch; margin: 14px auto 18px; text-align: center; }
.quote .stars { display: block; text-align: center; }
.quote cite { display: block; text-align: center; font-style: normal; color: var(--yellow); font-weight: 700; }

/* Guarantees */
.guarantees .cards3 .pcard { background: #fff; border-color: var(--black); }
.guarantees .ic { color: var(--green); }

/* FAQ */
.faq details { border-bottom: 1px solid var(--line); padding: 6px 0; }
.faq summary { cursor: pointer; font-weight: 700; font-size: 1.08rem; padding: 16px 40px 16px 0; position: relative; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 6px; top: 14px; font-size: 1.6rem; color: var(--accent); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 0 18px; color: #333; max-width: 70ch; }

/* Final CTA */
.finalcta { background: var(--accent); color: #fff; text-align: center; }
.finalcta h2 { color: #fff; }
.finalcta .btn-dark { margin-top: 8px; }

/* Footer */
.lp-footer { background: var(--black); color: #bdbdbd; padding: 40px 0; font-size: .9rem; }
.lp-footer .wrap { display: flex; flex-wrap: wrap; gap: 14px 28px; justify-content: space-between; align-items: center; }
.lp-footer a { color: #bdbdbd; }
.lp-footer .legal a { margin-left: 16px; }

/* Sticky mobile CTA */
.sticky-cta {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    display: flex; gap: 10px; padding: 10px 14px;
    background: rgba(255,255,255,.97); border-top: 1px solid var(--line);
    box-shadow: 0 -4px 18px rgba(0,0,0,.08);
}
.sticky-cta .btn { flex: 1; padding: 13px 10px; min-height: 50px; font-size: .98rem; }
body { padding-bottom: 76px; }

/* ---------- Desktop ---------- */
@media (min-width: 760px) {
    .cards3, .bgrid, .stepgrid { grid-template-columns: repeat(3, 1fr); }
    .pricegrid { grid-template-columns: repeat(3, 1fr); }
    .casegrid { grid-template-columns: repeat(3, 1fr); }
    .reviewgrid { grid-template-columns: repeat(3, 1fr); }
    .topbar-phone span { display: inline; }
    .sticky-cta { display: none; }
    body { padding-bottom: 0; }
}
@media (min-width: 940px) {
    .hero { padding: 60px 0 70px; }
    .hero-grid { grid-template-columns: 1.05fr .95fr; align-items: center; gap: 48px; }
}

/* ---------- Cookiebanner (gedeelde markup, eigen styling voor LP) ---------- */
.cookie-banner {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 10000;
    background: var(--black); color: var(--white); padding: 20px 22px;
    transform: translateY(100%); transition: transform .4s cubic-bezier(.34,1.56,.64,1);
    box-shadow: 0 -4px 20px rgba(0,0,0,.3);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner.hidden { display: none; }
.cookie-banner-content { max-width: var(--maxw); margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; }
.cookie-banner-text { flex: 1; min-width: 240px; font-size: .92rem; line-height: 1.5; opacity: .92; }
.cookie-banner-text a { color: var(--accent); text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-banner-button { padding: 12px 22px; font: 700 .82rem/1 'Archivo', sans-serif; letter-spacing: .04em; text-transform: uppercase; border: 2px solid var(--white); border-radius: 10px; cursor: pointer; background: transparent; color: var(--white); }
.cookie-banner-button.accept { background: var(--accent); border-color: var(--accent); color: #fff; }
.cookie-banner-button.accept:hover { background: var(--yellow); border-color: var(--yellow); color: #000; }
.cookie-banner-button.decline:hover { background: var(--white); color: #000; }
/* De vaste mobiele CTA-balk niet over de cookiebanner heen laten vallen */
.cookie-banner.show ~ .sticky-cta { bottom: 0; }

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
