:root {
    --brand-primary: #006400;
    --brand-primary-600: #004d00;
    --accent-blue: #00BFFF;
    --brand-dark: #093318;
    --brand-light: #f5faff;
    --surface: #ffffff;
    --border: rgba(0, 100, 0, 0.14);
    --text-dark: #1f2937;
    --text-muted: #6b7280;
    --brand-h: 20px
}

@media (min-width: 576px) {
    :root {
        --brand-h: 60px
    }
}

/* =========================
   FONT FACE (CLS-proof)
   ========================= */
@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: local("Inter");
}

/* =========================
   GLOBAL RESET & TYPO
   ========================= */
html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;

    /* Fallback eerst → Inter daarna (voorkomt CLS) */
    font-family:
            system-ui,
            -apple-system,
            "Segoe UI",
            Roboto,
            Arial,
            sans-serif;

    line-height: 1.4;
}

.g-recaptcha {
  min-height: 78px;
}


body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    color: var(--text-dark);

    /* Inter pas hier toepassen */
    font-family:
            "Inter",
            system-ui,
            -apple-system,
            "Segoe UI",
            Roboto,
            Arial,
            sans-serif;

    /* Houdt tekstbreedte stabiel bij font swap */
    font-size-adjust: 0.5;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}


img, svg {
    display: block;
    max-width: 100%;
    height: auto
}

@supports (-webkit-touch-callout:none) {
    button, input, select, textarea {
        font-size: 16px
    }
}

/* NAVBAR BASIS */
.navbar {
    border-bottom: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .05);
    background: #fff;
}

/* BRAND CONTAINER */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 56px;
    padding: 0;
    line-height: 1;
    min-width: 0;
}

/* LOGO */
.navbar-brand img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    flex-shrink: 0;
    display: block;
}

/* TEKST (BLIJFT ZICHTBAAR OP MOBIEL) */
.navbar-brand .brand-text {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.1;
    white-space: nowrap;
    display: inline-block;
    min-height: 1em; /* voorkomt CLS */
}

/* GROTERE SCHERMEN */
@media (min-width: 992px) {
    .navbar-brand {
        height: 60px;
    }

    .navbar-brand img {
        width: 36px;
        height: 36px;
    }

    .navbar-brand .brand-text {
        font-size: 1.05rem;
    }

    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}


.navbar .btn {
    display: flex;
    align-items: center;
    margin: .25rem 0
}

.navbar .container, .navbar .container-fluid {
    overflow: visible
}

.home-hero-contact-inspired{
    width: 100%;
    margin-left: 0;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;

    /* CLS: reserveer altijd vaste ruimte */
    min-height: 600px;

    /* CLS: vaste padding zodat content niet springt onder navbar */
    padding-top: 32px;
    padding-bottom: 32px;

    background: linear-gradient(135deg,
    var(--brand-primary) 0%,
    #059669 50%,
    #047857 100%
    );

    /* isolatie */
    contain: layout paint;
}

/* CLS: overlays mogen nooit layout beïnvloeden */
.home-hero-contact-inspired::before,
.home-hero-contact-inspired::after{
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    display: block;

    /* stabiel */
    opacity: 1;
    transform: translateZ(0);
    will-change: transform;
}

/* als je ::before/::after backgrounds gebruikt, zet ze hier expliciet */
.home-hero-contact-inspired::before{
    background:
            radial-gradient(circle at 25% 25%, rgba(255,255,255,.10), transparent 50%),
            radial-gradient(circle at 75% 75%, rgba(255,255,255,.06), transparent 50%);
}

.home-hero-contact-inspired::after{
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* container altijd boven layers */
.home-hero-contact-inspired .container{
    position: relative;
    z-index: 2;
}

/* mobiel */
@media (max-width: 768px){
    .home-hero-contact-inspired{
        min-height: 500px;
        padding-top: 24px;
        padding-bottom: 24px;
    }
}


.hulp-banner::before, .pricing-banner::before {
    position: absolute;
    opacity: .4;
    content: '';
    inset: 0
}

.home-hero-contact-inspired .badge, .home-hero-contact-inspired .carousel, .home-hero-contact-inspired .d-flex, .home-hero-contact-inspired .lead, .home-hero-contact-inspired h1 {
    will-change: transform, opacity
}

@keyframes backgroundFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 1
    }
    50% {
        transform: translate(20px, -20px) scale(1.1);
        opacity: .8
    }
}

@keyframes patternMove {
    0% {
        transform: translate(0, 0)
    }
    100% {
        transform: translate(60px, 60px)
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px)
    }
    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes floatBubble {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: .1
    }
    50% {
        transform: translate(-30px, -20px) scale(1.1);
        opacity: .15
    }
}

@media (max-width: 768px) {
    .home-hero-contact-inspired {
        min-height: 500px
    }

    .home-hero-contact-inspired::before {
        background-size: 50% 50%
    }
}

.center-sm, .center-sm :not(.text-start) {
    text-align: center !important
}

.center-cols-sm, .center-cols-sm .row {
    justify-content: center !important
}

.center-cols-sm .col-lg-4, .center-cols-sm .col-lg-5, .center-cols-sm .col-lg-6, .center-cols-sm .col-lg-7 {
    margin-left: auto !important;
    margin-right: auto !important;
    float: none !important
}

.btn-stack, .d-flex.gap-3.btn-stack {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: .75rem !important
}

.feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: .5rem;
    transition: transform .2s, box-shadow .2s
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .08)
}

.form-control, .form-select {
    border-radius: .5rem
}

.btn-primary {
    background-color: var(--brand-primary);
    border-color: var(--brand-primary)
}

.btn-primary:focus, .btn-primary:hover {
    background-color: var(--brand-primary-600);
    border-color: var(--brand-primary-600)
}

.btn-outline-primary {
    color: var(--accent-blue);
    border-color: var(--accent-blue)
}

.btn-outline-primary:focus, .btn-outline-primary:hover {
    color: #fff;
    background-color: var(--accent-blue);
    border-color: var(--accent-blue)
}

.text-primary {
    color: var(--brand-primary) !important
}

.bg-primary {
    background-color: var(--brand-primary) !important
}

.border-primary {
    border-color: var(--brand-primary) !important
}

footer a {
    text-decoration: none
}

.pricing-banner {
    background: linear-gradient(135deg, #0ea5e9 0, #22c55e 50%, #16a34a 100%);
    position: relative;
    overflow: hidden
}

.pricing-banner::before {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="diag" width="20" height="20" patternUnits="userSpaceOnUse" patternTransform="rotate(45)"><rect width="10" height="20" fill="rgba(255,255,255,0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23diag)"/></svg>')
}

.pricing-banner .banner-visual {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: stretch;
    gap: 1rem
}

.pricing-banner .price-card {
    background: rgba(255, 255, 255, .95);
    border-radius: 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .08);
    border: 1px solid rgba(255, 255, 255, .3);
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 1 160px;
    max-width: 220px;
    padding: 1.5rem 1rem;
    transition: transform .2s
}

.pricing-banner .price-card:hover {
    transform: translateY(-4px)
}

.pricing-banner .price-card .price-chip {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: .5rem
}

.pricing-banner .price-card .price-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand-primary)
}

.pricing-banner .price-card .per {
    font-size: 1rem;
    color: var(--text-muted)
}

.pricing-banner .price-card.popular {
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 .25rem rgba(0, 191, 255, .12)
}

.ai-feature-card {
    background: #fff;
    color: #1f2937;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
    border: 1px solid rgba(0, 0, 0, .06);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center
}

.branch-label, .item-label, .orbit-label, .tech-card .card-text {
    font-weight: 600;
    color: var(--text-dark)
}

.blog-card, .tech-card {
    border-radius: 1rem;
    display: flex;
    flex-direction: column
}

.ai-feature-card h3, .ai-feature-card p {
    word-break: break-word
}

.ai-icon {
    font-size: 2rem;
    line-height: 1;
    margin-bottom: .5rem
}

@media (max-width: 575.98px) {
    .ai-feature-card {
        padding: 14px
    }

    .ai-icon {
        font-size: 1.75rem
    }
}

.hulp-banner {
    background: linear-gradient(135deg, var(--brand-primary) 0, var(--brand-dark) 50%, var(--accent-blue) 100%);
    position: relative;
    overflow: hidden
}

.hulp-banner::before {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="circuit" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/><path d="M 0 10 L 20 10 M 10 0 L 10 20" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23circuit)"/></svg>')
}

.tech-card {
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .1);
    border: 1px solid rgba(255, 255, 255, .3);
    align-items: center;
    min-width: 140px;
    position: relative;
    z-index: 2
}

.tech-card .card-icon {
    font-size: 2.5rem;
    margin-bottom: .75rem;
    animation: 2s infinite pulse
}

.tech-card .card-text {
    font-size: .9rem;
    text-align: center
}

.connection-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, .8), rgba(255, 255, 255, .3));
    margin: 0 auto 1rem;
    position: relative;
    animation: 2s infinite dataFlow
}

.connection-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: -2px;
    right: -2px;
    height: 4px;
    background: rgba(255, 255, 255, .6);
    border-radius: 2px;
    animation: 2s infinite dataFlow
}

.floating-elements, .floating-icons, .support-elements {
    position: absolute;
    inset: 0;
    pointer-events: none
}

.floating-icon {
    position: absolute;
    font-size: 1.5rem;
    animation: 4s linear infinite orbit;
    opacity: .7
}

.floating-icon:first-child {
    top: 20%;
    left: 10%;
    animation-delay: 0s
}

.floating-icon:nth-child(2) {
    top: 60%;
    right: 10%;
    animation-delay: 1.3s
}

.floating-icon:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 2.6s
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1)
    }
    50% {
        transform: scale(1.1)
    }
}

@keyframes dataFlow {
    0% {
        opacity: 0;
        transform: translateY(-10px)
    }
    50% {
        opacity: 1
    }
    100% {
        opacity: 0;
        transform: translateY(10px)
    }
}

@keyframes orbit {
    0% {
        transform: rotate(0) translateX(30px) rotate(0)
    }
    100% {
        transform: rotate(360deg) translateX(30px) rotate(-360deg)
    }
}

.blog-banner {
    background: linear-gradient(135deg, #667eea 0, #764ba2 50%, var(--brand-primary) 100%);
    position: relative;
    overflow: hidden
}

.blog-card, .service-card {
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .1);
    z-index: 2;
    backdrop-filter: blur(10px)
}

.blog-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="15" height="15" patternUnits="userSpaceOnUse"><circle cx="7.5" cy="7.5" r="1.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: .3
}

.blog-card {
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, .3);
    align-items: center;
    min-width: 110px;
    position: relative;
    animation: .8s ease-out slideInUp
}

.blog-card .card-icon {
    font-size: 2rem;
    margin-bottom: .5rem;
    animation: 3s ease-in-out infinite wiggle
}

.blog-card .card-text, .service-card .card-text {
    font-size: .8rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center
}

.floating-element {
    position: absolute;
    font-size: 1.2rem;
    animation: 6s ease-in-out infinite floatAround;
    opacity: .6
}

.floating-element:first-child {
    top: 15%;
    left: 15%;
    animation-delay: 0s
}

.floating-element:nth-child(2) {
    top: 25%;
    right: 15%;
    animation-delay: 1.5s
}

.floating-element:nth-child(3) {
    bottom: 30%;
    left: 10%;
    animation-delay: 3s
}

.floating-element:nth-child(4) {
    bottom: 15%;
    right: 20%;
    animation-delay: 4.5s
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(30px)
    }
    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes wiggle {
    0%, 100% {
        transform: rotate(0)
    }
    25% {
        transform: rotate(-5deg)
    }
    75% {
        transform: rotate(5deg)
    }
}

@keyframes floatAround {
    0%, 100% {
        transform: translateY(0) rotate(0)
    }
    25% {
        transform: translateY(-15px) rotate(5deg)
    }
    50% {
        transform: translateY(-10px) rotate(-3deg)
    }
    75% {
        transform: translateY(-20px) rotate(3deg)
    }
}

.klantenservice-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="waves" width="40" height="20" patternUnits="userSpaceOnUse"><path d="M 0 10 Q 10 0 20 10 T 40 10" stroke="rgba(255,255,255,0.1)" stroke-width="1" fill="none"/></pattern></defs><rect width="100" height="100" fill="url(%23waves)"/></svg>');
    opacity: .3
}

.service-card {
    border-radius: 1rem;
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, .3);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
    position: relative;
    animation: .6s ease-out scaleIn
}

.hub-center, .solution-branch {
    border-radius: 50%;
    display: flex
}

.service-card .card-icon {
    font-size: 2rem;
    margin-bottom: .5rem;
    animation: 2s ease-in-out infinite heartbeat
}

.support-element {
    position: absolute;
    font-size: 1.3rem;
    animation: 4s ease-in-out infinite supportFloat;
    opacity: .7
}

.support-element:first-child {
    top: 20%;
    left: 20%;
    animation-delay: 0s
}

.support-element:nth-child(2) {
    top: 30%;
    right: 25%;
    animation-delay: 1s
}

.support-element:nth-child(3) {
    bottom: 35%;
    left: 15%;
    animation-delay: 2s
}

.support-element:nth-child(4) {
    bottom: 25%;
    right: 20%;
    animation-delay: 3s
}

@keyframes scaleIn {
    0% {
        opacity: 0;
        transform: scale(.8)
    }
    100% {
        opacity: 1;
        transform: scale(1)
    }
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1)
    }
    25%, 75% {
        transform: scale(1.1)
    }
    50% {
        transform: scale(1.05)
    }
}

@keyframes supportFloat {
    0%, 100% {
        transform: translateY(0) scale(1)
    }
    25% {
        transform: translateY(-10px) scale(1.1)
    }
    50% {
        transform: translateY(-5px) scale(.9)
    }
    75% {
        transform: translateY(-15px) scale(1.05)
    }
}

.oplossingen-banner {
    background: linear-gradient(135deg, #1e293b 0, #334155 50%, var(--brand-primary) 100%);
    position: relative;
    overflow: hidden
}

.oplossingen-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hexagon" width="30" height="26" patternUnits="userSpaceOnUse"><path d="M15 2 L25 8 L25 18 L15 24 L5 18 L5 8 Z" fill="none" stroke="rgba(255,255,255,0.06)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23hexagon)"/></svg>');
    opacity: .4
}

.solution-hub {
    position: relative;
    width: 240px;
    height: 240px;
    margin: 0 auto
}

.hub-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, .95);
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .2);
    z-index: 3;
    animation: 3s ease-in-out infinite hubPulse
}

.hub-icon {
    font-size: 2rem;
    animation: 8s linear infinite rotate
}

.solution-branch {
    position: absolute;
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, .9);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .15);
    animation: 4s ease-in-out infinite branchFloat;
    z-index: 2
}

.branch-1, .item-1 {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
    --tx: -50%
}

.branch-2, .item-2 {
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    animation-delay: 1s;
    --tx: 0
}

.branch-3, .item-3 {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 2s;
    --tx: -50%
}

.branch-4, .item-4 {
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    animation-delay: 3s;
    --tx: 0
}

.branch-icon, .orbit-icon {
    font-size: 1.5rem;
    margin-bottom: 2px
}

.branch-label, .orbit-label {
    font-size: .7rem
}

.connection-lines, .connection-rings {
    position: absolute;
    inset: 0;
    z-index: 1
}

.line {
    position: absolute;
    background: rgba(255, 255, 255, .4);
    animation: 2s ease-in-out infinite lineGlow
}

.line-1 {
    top: 55px;
    left: 50%;
    width: 2px;
    height: 65px;
    transform: translateX(-50%);
    animation-delay: 0s
}

.line-2 {
    top: 50%;
    right: 55px;
    width: 65px;
    height: 2px;
    transform: translateY(-50%);
    animation-delay: .5s
}

.line-3 {
    bottom: 55px;
    left: 50%;
    width: 2px;
    height: 65px;
    transform: translateX(-50%);
    animation-delay: 1s
}

.line-4 {
    top: 50%;
    left: 55px;
    width: 65px;
    height: 2px;
    transform: translateY(-50%);
    animation-delay: 1.5s
}

.ring-1, .ring-2, .ring-3, .showcase-center {
    transform: translate(-50%, -50%)
}

@keyframes hubPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 8px 32px rgba(0, 0, 0, .2)
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
        box-shadow: 0 12px 40px rgba(0, 0, 0, .3)
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0)
    }
    100% {
        transform: rotate(360deg)
    }
}

@keyframes branchFloat {
    0%, 100% {
        transform: translateY(0) translateX(var(--tx, 0)) scale(1)
    }
    50% {
        transform: translateY(-8px) translateX(var(--tx, 0)) scale(1.05)
    }
}

@keyframes lineGlow {
    0%, 100% {
        opacity: .4;
        box-shadow: 0 0 4px rgba(255, 255, 255, .2)
    }
    50% {
        opacity: .8;
        box-shadow: 0 0 12px rgba(255, 255, 255, .6)
    }
}

.producten-banner {
    background: linear-gradient(135deg, var(--brand-primary) 0, var(--brand-dark) 50%, #8b5cf6 100%);
    position: relative;
    overflow: hidden
}

.producten-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="squares" width="25" height="25" patternUnits="userSpaceOnUse"><rect width="12" height="12" fill="none" stroke="rgba(255,255,255,0.08)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23squares)"/></svg>');
    opacity: .4
}

.product-grid {
    position: relative;
    width: 280px;
    height: 240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns:1fr 1fr;
    grid-template-rows:1fr 1fr 1fr;
    gap: 20px;
    padding: 20px
}

.product-item {
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 16px 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .12);
    border: 1px solid rgba(255, 255, 255, .3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    animation: 4s ease-in-out infinite productFloat;
    transition: .3s;
    position: relative;
    z-index: 2
}

.product-item:hover, .showcase-center {
    box-shadow: 0 12px 40px rgba(0, 0, 0, .2)
}

.orbit-item, .showcase-center {
    border-radius: 50%;
    display: flex
}

.product-item:hover {
    transform: translateY(-5px) scale(1.05)
}

.item-1 {
    grid-column: 1;
    grid-row: 1
}

.item-2 {
    grid-column: 2;
    grid-row: 1
}

.item-3 {
    grid-column: 1;
    grid-row: 2
}

.item-4 {
    grid-column: 2;
    grid-row: 2
}

.item-5 {
    grid-column: 1/3;
    grid-row: 3;
    animation-delay: 2s
}

.item-icon {
    font-size: 2rem;
    margin-bottom: 8px;
    animation: 3s ease-in-out infinite iconBounce
}

.item-label {
    font-size: .75rem;
    line-height: 1.2
}

@keyframes productFloat {
    0%, 100% {
        transform: translateY(0)
    }
    50% {
        transform: translateY(-8px)
    }
}

@keyframes iconBounce {
    0%, 100% {
        transform: scale(1)
    }
    25% {
        transform: scale(1.1)
    }
    75% {
        transform: scale(.95)
    }
}

@media (max-width: 991px) {
    .hulp-banner .banner-visual, .klantenservice-banner .banner-visual, .oplossingen-banner .banner-visual {
        height: 200px;
        margin-top: 2rem
    }

    .tech-card {
        min-width: 120px;
        padding: 1rem
    }

    .tech-card .card-icon {
        font-size: 2rem
    }

    .tech-card .card-text {
        font-size: .8rem
    }

    .branch-icon, .floating-icon {
        font-size: 1.2rem
    }

    .blog-banner .banner-visual {
        height: 180px;
        margin-top: 2rem
    }

    .blog-card {
        min-width: 90px;
        padding: 1rem
    }

    .blog-card .card-icon, .hub-icon, .service-card .card-icon {
        font-size: 1.5rem
    }

    .blog-card .card-text, .service-card .card-text {
        font-size: .7rem
    }

    .floating-element {
        font-size: 1rem
    }

    .service-card {
        min-width: 85px;
        padding: 1rem
    }

    .support-element {
        font-size: 1.1rem
    }

    .solution-hub {
        width: 200px;
        height: 200px
    }

    .hub-center {
        width: 60px;
        height: 60px
    }

    .solution-branch {
        width: 55px;
        height: 55px
    }

    .branch-label {
        font-size: .6rem
    }

    .line-1, .line-3 {
        height: 50px
    }

    .line-2, .line-4 {
        width: 50px
    }

    .producten-banner .banner-visual {
        margin-top: 3rem
    }

    .product-grid {
        width: 240px;
        height: 200px;
        gap: 15px;
        padding: 15px
    }

    .product-item {
        padding: 12px 8px
    }

    .item-icon {
        font-size: 1.5rem;
        margin-bottom: 6px
    }

    .item-label {
        font-size: .65rem
    }
}

.home-banner {
    background: linear-gradient(135deg, var(--brand-primary) 0, #059669 50%, var(--accent-blue) 100%);
    position: relative;
    overflow: hidden
}

.home-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="network" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="rgba(255,255,255,0.1)"/><path d="M15 0 L15 30 M0 15 L30 15" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23network)"/></svg>');
    opacity: .4
}

.home-showcase {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto
}

.orbit-item, .ring, .showcase-center, .showcase-orbit {
    position: absolute
}

.showcase-center {
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, .95);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 3;
    animation: 3s ease-in-out infinite centerPulse
}

.center-icon {
    font-size: 2.5rem;
    margin-bottom: 4px;
    animation: 8s linear infinite centerRotate
}

.center-text {
    font-size: .9rem;
    font-weight: 700;
    color: var(--brand-primary)
}

.showcase-orbit {
    inset: 0
}

.orbit-item {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, .9);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .15);
    animation: 4s ease-in-out infinite orbitFloat;
    z-index: 2
}

.ring {
    top: 50%;
    left: 50%;
    border: 2px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
    animation: 4s ease-in-out infinite ringPulse
}

.ring-1 {
    width: 140px;
    height: 140px;
    animation-delay: 0s
}

.ring-2 {
    width: 200px;
    height: 200px;
    animation-delay: 1s
}

.ring-3 {
    width: 260px;
    height: 260px;
    animation-delay: 2s
}

@keyframes centerPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 12px 40px rgba(0, 0, 0, .2)
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
        box-shadow: 0 16px 50px rgba(0, 0, 0, .3)
    }
}

@keyframes centerRotate {
    0% {
        transform: rotate(0)
    }
    100% {
        transform: rotate(360deg)
    }
}

@keyframes orbitFloat {
    0%, 100% {
        transform: translateY(0) translateX(var(--tx, 0)) scale(1)
    }
    50% {
        transform: translateY(-10px) translateX(var(--tx, 0)) scale(1.1)
    }
}

@keyframes ringPulse {
    0%, 100% {
        opacity: .3;
        transform: translate(-50%, -50%) scale(1)
    }
    50% {
        opacity: .6;
        transform: translate(-50%, -50%) scale(1.1)
    }
}

@media (max-width: 991px) {
    .home-banner .banner-visual {
        margin-top: 3rem
    }

    .home-showcase {
        width: 250px;
        height: 250px
    }

    .showcase-center {
        width: 80px;
        height: 80px
    }

    .center-icon {
        font-size: 2rem
    }

    .center-text {
        font-size: .8rem
    }

    .orbit-item {
        width: 60px;
        height: 60px
    }

    .orbit-icon {
        font-size: 1.2rem
    }

    .orbit-label {
        font-size: .6rem
    }

    .ring-1 {
        width: 120px;
        height: 120px
    }

    .ring-2 {
        width: 170px;
        height: 170px
    }

    .ring-3 {
        width: 220px;
        height: 220px
    }

    .navbar .btn {
        display: block;
        width: 100%;
        margin: 5px 0
    }
}

@media (max-width: 576px) {
    .product-grid {
        width: 200px;
        height: 160px;
        gap: 12px;
        padding: 12px
    }

    .product-item {
        padding: 10px 6px
    }

    .item-icon {
        font-size: 1.2rem
    }

    .item-label {
        font-size: .6rem
    }

    .home-showcase {
        width: 200px;
        height: 200px
    }

    .showcase-center {
        width: 70px;
        height: 70px
    }

    .center-icon {
        font-size: 1.5rem
    }

    .orbit-item {
        width: 50px;
        height: 50px
    }

    .orbit-icon {
        font-size: 1rem
    }

    .orbit-label {
        font-size: .5rem
    }
}

@media (max-width: 767px) {
    .pricing-banner, header.home-hero-contact-inspired, header.oplossingen-banner {
        padding: 2rem 0
    }

    .pricing-banner h1.display-4, header h1.display-4, header h1.display-5 {
        font-size: 1.75rem
    }

    .carousel-inner img {
        max-height: 300px;
        object-fit: cover
    }

    .d-flex.gap-3 {
        flex-direction: column;
        gap: .75rem
    }

    .pricing-banner .banner-visual {
        flex-direction: column;
        gap: .75rem;
        align-items: center
    }

    .pricing-banner .price-card {
        width: 100%;
        max-width: none;
        flex: 1 1 auto
    }

    .pricing-banner .lead, header .lead {
        font-size: .95rem
    }

    .banner-visual {
        flex-direction: column !important;
        gap: 1rem
    }

    .price-card {
        width: 100% !important;
        max-width: 300px;
        margin: 0 auto
    }

    .banner-badge {
        flex: 1 1 100%;
        text-align: center
    }

    .steps .d-flex {
        flex-direction: column;
        align-items: flex-start
    }

    .steps .step-icon {
        margin-bottom: .5rem
    }

    .object-fit-cover {
        height: auto;
        max-height: 300px
    }
}

.hero img, .hero svg {
    width: 100%;
    height: auto;
    max-height: 60vh;
    object-fit: contain
}

@supports (height:1svh) {
    .hero img, .hero svg {
        max-height: 60svh
    }
}

