/**
 * Homepage v2 — Longboardcenter
 * Geport vanuit het design-prototype: paper/cream + coral accent, Bricolage
 * Grotesque + Hanken Grotesk, grain-textuur, asymmetrische hero, dark choice
 * en FAQ secties, coral final-CTA card.
 *
 * Scope: alleen actief binnen .lbc-newhome (de homepage). Parent header/footer
 * blijft ongemoeid zodat andere pagina's niet beïnvloed worden.
 */

/* ==========================================================================
   1. TOKENS (scoped op .lbc-newhome zodat ze niet bleeden naar andere pagina's)
   ========================================================================== */
.lbc-newhome {
    --lbc-ink: #16130F;
    --lbc-ink-soft: #5a5347;
    --lbc-paper: #F2EDE3;
    --lbc-paper-2: #E9E1D0;
    --lbc-card: #FBF8F0;
    --lbc-accent: #FF4A1C;
    --lbc-accent-deep: #C4360F;
    --lbc-line: #d8cfba;
    --lbc-ok: #1f7a4d;
    --lbc-maxw: 1240px;
    --lbc-r: 18px;
    --lbc-font-display: "Bricolage Grotesque", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
    --lbc-font-body: "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

    font-family: var(--lbc-font-body);
    color: var(--lbc-ink);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Body-bg + grain texture alleen op homepage zodat andere pagina's hun
   eigen achtergrond houden. */
body.home {
    background: var(--lbc-paper);
}

body.home::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.5;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
}

/* ==========================================================================
   2. WRAP / TYPOGRAPHY / BUTTONS
   ========================================================================== */
.lbc-newhome a { color: inherit; text-decoration: none; }
.lbc-newhome img { max-width: 100%; display: block; }

.lbc-newhome .lbc-wrap {
    max-width: var(--lbc-maxw);
    margin: 0 auto;
    padding: 0 28px;
}

.lbc-newhome h1,
.lbc-newhome h2,
.lbc-newhome h3 {
    font-family: var(--lbc-font-display);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.02em;
    color: var(--lbc-ink);
}

.lbc-newhome .lbc-kicker {
    font-family: var(--lbc-font-display);
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--lbc-accent-deep);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.lbc-newhome .lbc-kicker::before {
    content: "";
    width: 34px;
    height: 2px;
    background: var(--lbc-accent);
}

.lbc-newhome .lbc-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--lbc-font-display);
    font-weight: 600;
    font-size: 1rem;
    padding: 16px 28px;
    border-radius: 100px;
    border: 2px solid var(--lbc-ink);
    cursor: pointer;
    transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
    text-decoration: none;
    line-height: 1;
    white-space: nowrap;
}

.lbc-newhome .lbc-btn-primary {
    background: var(--c-cta);
    border-color: var(--c-cta);
    color: var(--c-cta-text);
}

.lbc-newhome .lbc-btn-primary:hover {
    transform: translateY(-2px);
    background: var(--c-cta-hover);
    border-color: var(--c-cta-hover);
    color: var(--c-cta-text);
}

.lbc-newhome .lbc-btn-ghost {
    background: transparent;
    color: var(--lbc-ink);
}

.lbc-newhome .lbc-btn-ghost:hover {
    transform: translateY(-2px);
    background: var(--lbc-ink);
    color: var(--lbc-paper);
}

.lbc-newhome .lbc-link-arrow {
    font-family: var(--lbc-font-display);
    font-weight: 600;
    display: inline-flex;
    gap: 8px;
    align-items: center;
    border-bottom: 2px solid var(--lbc-accent);
    padding-bottom: 3px;
    text-decoration: none;
    color: var(--lbc-ink);
    transition: gap 0.2s ease;
}

.lbc-newhome .lbc-link-arrow:hover { gap: 13px; }

/* ==========================================================================
   3. HERO
   ========================================================================== */
.lbc-newhome .lbc-hero {
    position: relative;
    padding: 70px 0 90px;
    overflow: hidden;
}

.lbc-newhome .lbc-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 50px;
    align-items: center;
}

.lbc-newhome .lbc-hero h1 {
    font-size: clamp(3rem, 7.5vw, 6.2rem);
    margin: 22px 0 0;
}

.lbc-newhome .lbc-hero h1 .stroke {
    -webkit-text-stroke: 2px var(--lbc-ink);
    color: transparent;
    display: block;
}

.lbc-newhome .lbc-hero h1 .fill {
    color: var(--lbc-accent);
    display: block;
}

.lbc-newhome .lbc-hero .lead {
    font-size: 1.18rem;
    color: var(--lbc-ink-soft);
    max-width: 36ch;
    margin: 26px 0 34px;
}

.lbc-newhome .lbc-hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.lbc-newhome .lbc-hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 38px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--lbc-ink-soft);
}

.lbc-newhome .lbc-hero-trust span {
    display: flex;
    align-items: center;
    gap: 9px;
}

.lbc-newhome .lbc-hero-visual {
    position: relative;
}

.lbc-newhome .lbc-hero-visual .frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/5;
    background: linear-gradient(150deg, #1d1a14, #2d2415);
    box-shadow: 0 40px 80px -40px rgba(0, 0, 0, 0.55);
}

.lbc-newhome .lbc-hero-visual .frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: luminosity;
    opacity: 0.92;
}

.lbc-newhome .lbc-hero-visual .frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(255, 74, 28, 0.32), transparent 60%);
}

.lbc-newhome .price-tag {
    position: absolute;
    left: -22px;
    bottom: 34px;
    background: var(--lbc-card);
    border: 2px solid var(--lbc-ink);
    border-radius: 16px;
    padding: 14px 18px;
    box-shadow: 0 20px 40px -24px rgba(0, 0, 0, 0.5);
}

.lbc-newhome .price-tag small {
    font-weight: 600;
    color: var(--lbc-ink-soft);
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.lbc-newhome .price-tag b {
    font-family: var(--lbc-font-display);
    font-size: 1.3rem;
    display: block;
    margin-top: 3px;
    color: var(--lbc-ink);
}

.lbc-newhome .blob {
    position: absolute;
    font-family: var(--lbc-font-display);
    font-weight: 800;
    font-size: 0.8rem;
    background: var(--lbc-accent);
    color: #fff;
    padding: 14px 18px;
    border-radius: 50%;
    width: 96px;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.1;
    right: -14px;
    top: 30px;
    transform: rotate(9deg);
    box-shadow: 0 14px 30px -16px rgba(0, 0, 0, 0.5);
}

/* ==========================================================================
   4. USP BAND (donker)
   ========================================================================== */
.lbc-newhome .lbc-uspband {
    background: var(--lbc-ink);
    color: var(--lbc-paper);
}

.lbc-newhome .lbc-usp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
}

.lbc-newhome .lbc-usp-cell {
    background: var(--lbc-ink);
    padding: 34px 26px;
}

.lbc-newhome .lbc-usp-cell .ic {
    width: 30px;
    height: 30px;
    color: var(--lbc-accent);
    margin-bottom: 14px;
}

.lbc-newhome .lbc-usp-cell h3 {
    font-size: 1.06rem;
    margin: 0 0 5px;
    color: var(--lbc-paper);
}

.lbc-newhome .lbc-usp-cell p {
    font-size: 0.9rem;
    color: #b6ad9c;
    margin: 0;
}

/* ==========================================================================
   5. BLOCK / HEAD-ROW BASIS
   ========================================================================== */
.lbc-newhome .lbc-block {
    padding: 90px 0;
}

.lbc-newhome .lbc-head-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.lbc-newhome .lbc-head-row h2 {
    font-size: clamp(2rem, 4.2vw, 3.1rem);
    max-width: 14ch;
    margin: 12px 0 0;
}

.lbc-newhome .lbc-head-row p {
    color: var(--lbc-ink-soft);
    max-width: 42ch;
    margin: 10px 0 0;
}

/* ==========================================================================
   6. CATEGORIES
   ========================================================================== */
.lbc-newhome .lbc-cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.lbc-newhome .lbc-cat {
    position: relative;
    border-radius: var(--lbc-r);
    overflow: hidden;
    background: var(--lbc-card);
    border: 1px solid var(--lbc-line);
    min-height: 230px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    color: var(--lbc-ink);
}

.lbc-newhome .lbc-cat:hover {
    transform: translateY(-5px);
    box-shadow: 0 26px 50px -34px rgba(0, 0, 0, 0.5);
}

.lbc-newhome .lbc-cat .num {
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: var(--lbc-font-display);
    font-weight: 800;
    font-size: 2.4rem;
    color: var(--lbc-paper-2);
    -webkit-text-stroke: 1px var(--lbc-line);
}

.lbc-newhome .lbc-cat .ic {
    width: 38px;
    height: 38px;
    color: var(--lbc-accent);
    margin-bottom: auto;
}

.lbc-newhome .lbc-cat h3 {
    font-size: 1.5rem;
    margin: 18px 0 4px;
}

.lbc-newhome .lbc-cat p {
    font-size: 0.92rem;
    color: var(--lbc-ink-soft);
    margin: 0 0 14px;
}

.lbc-newhome .lbc-cat .go {
    font-family: var(--lbc-font-display);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    gap: 8px;
    align-items: center;
}

.lbc-newhome .lbc-cat.feature {
    grid-column: span 2;
    background: linear-gradient(135deg, #1d1a14, #322712);
    color: var(--lbc-paper);
}

.lbc-newhome .lbc-cat.feature h3 { color: var(--lbc-paper); }
.lbc-newhome .lbc-cat.feature p { color: #c2b9a6; }
.lbc-newhome .lbc-cat.feature .num {
    color: rgba(255, 255, 255, 0.08);
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.15);
}

.lbc-newhome .lbc-cat-more {
    margin-top: 22px;
    font-size: 0.92rem;
    color: var(--lbc-ink-soft);
}

.lbc-newhome .lbc-cat-more a {
    font-weight: 600;
    border-bottom: 1px solid var(--lbc-accent);
}

/* ==========================================================================
   7. CHOICE AID (donker)
   ========================================================================== */
.lbc-newhome .lbc-choice {
    background: var(--lbc-ink);
    color: var(--lbc-paper);
}

.lbc-newhome .lbc-choice .lbc-head-row h2 { color: var(--lbc-paper); }
.lbc-newhome .lbc-choice .lbc-head-row p { color: #b6ad9c; }

.lbc-newhome .lbc-choice-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.lbc-newhome .lbc-ch-card {
    background: #211d16;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--lbc-r);
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.lbc-newhome .lbc-ch-card:hover {
    border-color: var(--lbc-accent);
    transform: translateY(-4px);
}

.lbc-newhome .lbc-ch-card .tag {
    font-family: var(--lbc-font-display);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--lbc-accent);
    margin-bottom: 14px;
}

.lbc-newhome .lbc-ch-card h3 {
    font-size: 1.45rem;
    margin: 0 0 10px;
    color: var(--lbc-paper);
}

.lbc-newhome .lbc-ch-card p {
    font-size: 0.92rem;
    color: #b6ad9c;
    margin: 0 0 22px;
    flex: 1;
}

.lbc-newhome .lbc-ch-card a {
    font-family: var(--lbc-font-display);
    font-weight: 600;
    font-size: 0.92rem;
    display: inline-flex;
    gap: 8px;
    align-items: center;
    color: var(--lbc-paper);
}

.lbc-newhome .lbc-ch-card a:hover { color: var(--lbc-accent); }

.lbc-newhome .lbc-choice-foot {
    display: flex;
    justify-content: center;
    margin-top: 46px;
}

/* ==========================================================================
   8. BESTSELLERS — WooCommerce products grid override
   ========================================================================== */
.lbc-newhome .lbc-prod-grid ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
    list-style: none;
    padding: 0;
    margin: 0;
}

@media (max-width: 980px) {
    .lbc-newhome .lbc-prod-grid ul.products { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 540px) {
    .lbc-newhome .lbc-prod-grid ul.products { grid-template-columns: 1fr !important; }
}

.lbc-newhome .lbc-prod-grid ul.products li.product {
    list-style: none !important;
    margin: 0 !important;
    width: 100% !important;
    background: var(--lbc-card);
    border: 1px solid var(--lbc-line);
    border-radius: var(--lbc-r);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    padding: 0 !important;
}

.lbc-newhome .lbc-prod-grid ul.products li.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 26px 50px -34px rgba(0, 0, 0, 0.45);
}

.lbc-newhome .lbc-prod-grid ul.products li.product a img {
    width: 100% !important;
    aspect-ratio: 1 !important;
    object-fit: cover !important;
    background: repeating-linear-gradient(45deg, #ece4d2, #ece4d2 14px, #e6ddc8 14px, #e6ddc8 28px);
}

.lbc-newhome .lbc-prod-grid ul.products li.product .woocommerce-loop-product__title,
.lbc-newhome .lbc-prod-grid ul.products li.product h2.woocommerce-loop-product__title {
    font-family: var(--lbc-font-body) !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    line-height: 1.3 !important;
    color: var(--lbc-ink) !important;
    padding: 18px 20px 8px !important;
    margin: 0 !important;
}

.lbc-newhome .lbc-prod-grid ul.products li.product .price {
    font-family: var(--lbc-font-display) !important;
    font-weight: 800 !important;
    font-size: 1.25rem !important;
    color: var(--lbc-ink) !important;
    padding: 0 20px 8px !important;
    display: block;
}

.lbc-newhome .lbc-prod-grid ul.products li.product .price del {
    font-family: var(--lbc-font-body) !important;
    font-weight: 500 !important;
    font-size: 0.9rem !important;
    color: var(--lbc-ink-soft) !important;
    margin-right: 8px;
}

.lbc-newhome .lbc-prod-grid ul.products li.product .price ins {
    background: transparent;
    text-decoration: none;
    color: var(--lbc-accent-deep) !important;
}

.lbc-newhome .lbc-prod-grid ul.products li.product .button {
    margin: 12px 20px 20px !important;
    padding: 12px 18px !important;
    background: var(--lbc-accent) !important;
    color: #fff !important;
    border: 2px solid var(--lbc-accent) !important;
    border-radius: 100px !important;
    font-family: var(--lbc-font-display) !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    text-align: center;
    text-transform: none !important;
    letter-spacing: 0 !important;
    width: calc(100% - 40px);
    text-decoration: none;
}

.lbc-newhome .lbc-prod-grid ul.products li.product .button:hover {
    background: var(--lbc-accent-deep) !important;
    border-color: var(--lbc-accent-deep) !important;
}

.lbc-newhome .lbc-prod-grid ul.products li.product .onsale,
.lbc-newhome .lbc-prod-grid ul.products li.product span.onsale {
    background: var(--lbc-accent) !important;
    color: #fff !important;
    border-radius: 100px !important;
    padding: 6px 12px !important;
    font-family: var(--lbc-font-display);
    font-weight: 600;
    font-size: 0.72rem !important;
    top: 14px !important;
    left: 14px !important;
    min-width: 0;
    min-height: 0;
    line-height: 1.2;
}

/* ==========================================================================
   9. SOCIAL PROOF
   ========================================================================== */
.lbc-newhome .lbc-social {
    background: linear-gradient(180deg, var(--lbc-paper), var(--lbc-paper-2));
}

.lbc-newhome .lbc-sp-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 54px;
    align-items: center;
}

.lbc-newhome .lbc-sp-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.lbc-newhome .lbc-sp-stat b {
    font-family: var(--lbc-font-display);
    font-weight: 800;
    font-size: 2.2rem;
    display: block;
    color: var(--lbc-ink);
    line-height: 1.05;
    margin-bottom: 6px;
}

.lbc-newhome .lbc-sp-stat span {
    font-size: 0.92rem;
    color: var(--lbc-ink-soft);
}

.lbc-newhome .lbc-review-card {
    background: var(--lbc-card);
    border: 1px solid var(--lbc-line);
    border-radius: var(--lbc-r);
    padding: 30px;
}

.lbc-newhome .lbc-trustedshops-slot {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.lbc-newhome .lbc-review-source {
    font-size: 0.85rem;
    color: var(--lbc-ink-soft);
    margin: 0;
    text-align: center;
}

/* ==========================================================================
   10. STORY
   ========================================================================== */
.lbc-newhome .lbc-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 54px;
    align-items: center;
}

.lbc-newhome .lbc-story-img {
    border-radius: 24px;
    aspect-ratio: 5/4;
    overflow: hidden;
    background: linear-gradient(150deg, #262017, #1a1610);
    position: relative;
}

.lbc-newhome .lbc-story-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    mix-blend-mode: luminosity;
}

.lbc-newhome .lbc-story-img .pin {
    position: absolute;
    left: 24px;
    bottom: 22px;
    background: var(--lbc-card);
    border-radius: 12px;
    padding: 11px 16px;
    font-weight: 600;
    font-size: 0.86rem;
    display: flex;
    gap: 9px;
    align-items: center;
    color: var(--lbc-ink);
}

.lbc-newhome .lbc-story h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin: 14px 0 22px;
}

.lbc-newhome .lbc-story p {
    color: var(--lbc-ink-soft);
    margin: 0 0 14px;
    max-width: 46ch;
}

/* ==========================================================================
   11. FAQ (donker)
   ========================================================================== */
.lbc-newhome .lbc-faq {
    background: var(--lbc-ink);
    color: var(--lbc-paper);
}

.lbc-newhome .lbc-faq .lbc-head-row h2 { color: var(--lbc-paper); }
.lbc-newhome .lbc-faq .lbc-head-row p { color: #b6ad9c; }

.lbc-newhome .lbc-faq-list { max-width: 840px; }

.lbc-newhome .lbc-fq {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.lbc-newhome .lbc-fq summary {
    list-style: none;
    cursor: pointer;
    color: var(--lbc-paper);
    padding: 26px 0;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    font-family: var(--lbc-font-display);
    font-weight: 600;
    font-size: 1.16rem;
}

.lbc-newhome .lbc-fq summary::-webkit-details-marker { display: none; }

.lbc-newhome .lbc-fq .plus {
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    position: relative;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.lbc-newhome .lbc-fq .plus::before,
.lbc-newhome .lbc-fq .plus::after {
    content: "";
    position: absolute;
    background: var(--lbc-paper);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.lbc-newhome .lbc-fq .plus::before { width: 12px; height: 1.5px; }
.lbc-newhome .lbc-fq .plus::after { width: 1.5px; height: 12px; }

.lbc-newhome .lbc-fq[open] .plus {
    background: var(--lbc-accent);
    border-color: var(--lbc-accent);
}

.lbc-newhome .lbc-fq[open] .plus::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.lbc-newhome .lbc-fq .ans p {
    padding: 0 0 26px;
    color: #bdb4a3;
    max-width: 70ch;
    margin: 0;
    line-height: 1.6;
}

/* ==========================================================================
   12. FINAL CTA
   ========================================================================== */
.lbc-newhome .lbc-final { padding: 100px 0; }

.lbc-newhome .lbc-final-box {
    background: var(--lbc-accent);
    border-radius: 30px;
    padding: 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.lbc-newhome .lbc-final-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.18), transparent 55%);
}

.lbc-newhome .lbc-final-box h2 {
    color: #fff;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    position: relative;
    margin: 0;
}

.lbc-newhome .lbc-final-box p {
    color: #ffe9e0;
    font-size: 1.1rem;
    margin: 16px auto 32px;
    max-width: 46ch;
    position: relative;
}

.lbc-newhome .lbc-final-box .lbc-btn { position: relative; }

.lbc-newhome .lbc-final-box .lbc-btn-primary {
    background: var(--lbc-ink);
    border-color: var(--lbc-ink);
    color: #fff;
}

.lbc-newhome .lbc-final-box .lbc-btn-primary:hover {
    background: #000;
    border-color: #000;
}

.lbc-newhome .lbc-final-box .lbc-btn-ghost {
    border-color: #fff;
    color: #fff;
}

.lbc-newhome .lbc-final-box .lbc-btn-ghost:hover {
    background: #fff;
    color: var(--lbc-accent-deep);
}

/* ==========================================================================
   13. REVEAL ANIMATION
   Alleen verbergen als JS daadwerkelijk geladen heeft (html.lbc-js-ready).
   Geen JS = alles default zichtbaar (no-flicker, geen lege pagina).
   ========================================================================== */
.lbc-js-ready .lbc-newhome .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.lbc-js-ready .lbc-newhome .reveal.in {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .lbc-js-ready .lbc-newhome .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ==========================================================================
   14. RESPONSIVE
   ========================================================================== */
@media (max-width: 980px) {
    .lbc-newhome .lbc-hero-grid,
    .lbc-newhome .lbc-sp-grid,
    .lbc-newhome .lbc-story-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .lbc-newhome .lbc-hero-visual {
        order: -1;
        max-width: 420px;
        margin: 0 auto;
    }

    .lbc-newhome .lbc-usp-grid,
    .lbc-newhome .lbc-cat-grid,
    .lbc-newhome .lbc-choice-grid {
        grid-template-columns: 1fr 1fr;
    }

    .lbc-newhome .lbc-cat.feature { grid-column: span 2; }
}

@media (max-width: 600px) {
    .lbc-newhome .lbc-wrap { padding: 0 20px; }

    .lbc-newhome .lbc-block { padding: 64px 0; }

    .lbc-newhome .lbc-usp-grid,
    .lbc-newhome .lbc-cat-grid,
    .lbc-newhome .lbc-cat.feature,
    .lbc-newhome .lbc-choice-grid {
        grid-template-columns: 1fr;
    }

    .lbc-newhome .lbc-sp-stats { grid-template-columns: 1fr 1fr; }

    .lbc-newhome .lbc-final-box { padding: 44px 26px; }

    .lbc-newhome .lbc-hero h1 { font-size: clamp(2.6rem, 12vw, 4rem); }

    .lbc-newhome .blob {
        width: 78px;
        height: 78px;
        font-size: 0.7rem;
        right: -6px;
    }
}
