/* ============================================================
   VDV Software — style.css
   ============================================================ */

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

:root {
    --blue: #1a6bfa;
    --black: #000;
    --white: #fff;
    --gray: #f4f4f4;
    --gray-mid: #e0e0e0;
    --gray-txt: #888;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

body {
    font-family: 'Manrope', sans-serif;
    background: var(--white);
    color: var(--black);
    line-height: 1.5;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}
a {
    color: inherit;
}
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* ── CURSOR ── */
.cursor {
    width: 10px;
    height: 10px;
    background: var(--blue);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition:
        width 0.3s var(--ease),
        height 0.3s var(--ease),
        background 0.3s;
}
.cursor.expand {
    width: 40px;
    height: 40px;
    background: rgba(26, 107, 250, 0.15);
}
@media (hover: none) {
    .cursor {
        display: none;
    }
}

/* ── HEADER DESKTOP ── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9000;
    height: 64px;
    background: #fff;
    border-bottom: 1px solid transparent;
    transition:
        border-color 0.3s,
        box-shadow 0.3s;
}
.site-header.scrolled {
    border-color: var(--gray-mid);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}
.header-inner {
    margin: 0 auto;
    padding: 0 48px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}
.header-logo img {
    height: 28px;
    width: auto;
}
.header-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}
.header-nav ul {
    display: flex;
    align-items: center;
    gap: 32px;
}
.header-nav a {
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    opacity: 0.5;
    transition: opacity 0.2s;
    position: relative;
}
.header-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--blue);
    transition: width 0.3s var(--ease);
    border-radius: 2px;
}
.header-nav a:hover {
    opacity: 1;
}
.header-nav a:hover::after {
    width: 100%;
}
.header-cta {
    font-size: 13px;
    font-weight: 600;
    padding: 9px 20px;
    background: var(--black);
    color: var(--white);
    border-radius: 100px;
    text-decoration: none;
    white-space: nowrap;
    transition:
        background 0.2s,
        transform 0.2s var(--ease);
}
.header-cta:hover {
    background: var(--blue);
    transform: scale(1.03);
}

/* ── HEADER MOBIEL ── */
.mobile-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9000;
}
.mobile-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    height: 64px;
    background: #fff;
    border-bottom: 1px solid var(--gray-mid);
}
.mobile-logo img {
    height: 28px;
    width: auto;
}
.hamburger {
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    border-radius: 8px;
    transition: background 0.2s;
}
.hamburger:hover {
    background: var(--gray);
}
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--black);
    border-radius: 2px;
    transition:
        transform 0.4s var(--ease),
        opacity 0.3s,
        width 0.3s;
    transform-origin: center;
}
.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
    width: 0;
}
.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.drawer-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: background 0.2s;
}
.drawer-close:hover {
    background: var(--gray);
}
.drawer-close span {
    position: absolute;
    width: 20px;
    height: 2px;
    background: var(--black);
    border-radius: 2px;
}
.drawer-close span:nth-child(1) {
    transform: rotate(45deg);
}
.drawer-close span:nth-child(2) {
    transform: rotate(-45deg);
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
}
.mobile-overlay.show {
    opacity: 1;
    pointer-events: all;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(340px, 88vw);
    height: 100vh;
    background: #fff;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease);
    display: flex;
    flex-direction: column;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.12);
}
.mobile-drawer.open {
    transform: translateX(0);
}
.mobile-drawer-inner {
    padding: 88px 36px 48px;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.mobile-nav-links {
    margin-bottom: 32px;
}
.mobile-nav-item {
    opacity: 0;
    transform: translateX(24px);
    transition:
        opacity 0.4s,
        transform 0.4s var(--ease);
    transition-delay: calc(var(--i) * 0.06s);
}
.mobile-drawer.open .mobile-nav-item {
    opacity: 1;
    transform: translateX(0);
}
.mobile-nav-link {
    display: block;
    font-size: 28px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: -0.5px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.2s;
}
.mobile-nav-link:hover {
    color: var(--blue);
}
.mobile-nav-cta {
    display: inline-block;
    margin-top: 28px;
    padding: 14px 28px;
    background: var(--black);
    color: var(--white);
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    align-self: flex-start;
    transition:
        background 0.2s,
        transform 0.2s;
    opacity: 0;
    transform: translateX(24px);
    transition-delay: calc(6 * 0.06s);
}
.mobile-drawer.open .mobile-nav-cta {
    opacity: 1;
    transform: translateX(0);
}
.mobile-nav-cta:hover {
    background: var(--blue);
    transform: scale(1.03);
}
.mobile-footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 6px;
    opacity: 0;
    transform: translateY(12px);
    transition:
        opacity 0.4s 0.4s,
        transform 0.4s 0.4s;
}
.mobile-drawer.open .mobile-footer {
    opacity: 1;
    transform: translateY(0);
}
.mobile-footer a,
.mobile-footer span {
    font-size: 13px;
    color: var(--gray-txt);
    text-decoration: none;
    font-weight: 500;
}
.mobile-footer a:hover {
    color: var(--black);
}

/* ── HERO ── */
#hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 100px 48px 60px;
    gap: 48px;
    position: relative;
    overflow: hidden;
}
#hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 0;
}

/* blobs */
.hero-blobs {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.55;
    animation: blobmove 14s ease-in-out infinite;
}
.blob-1 {
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, rgba(26, 107, 250, 0.22) 0%, transparent 70%);
    top: -120px;
    right: -100px;
}
.blob-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(26, 107, 250, 0.14) 0%, transparent 70%);
    bottom: 40px;
    left: -80px;
    animation-duration: 18s;
    animation-delay: -4s;
}
.blob-3 {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(147, 197, 253, 0.18) 0%, transparent 70%);
    top: 40%;
    left: 35%;
    animation-duration: 22s;
    animation-delay: -8s;
}
@keyframes blobmove {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -40px) scale(1.05);
    }
    66% {
        transform: translate(-20px, 30px) scale(0.96);
    }
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.hero-right {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-tag {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 0.8s var(--ease) 0.3s forwards;
    display: flex;
    align-items: center;
    gap: 8px;
}
.hero-tag::before {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: var(--blue);
    border-radius: 2px;
}

.hero-headline {
    font-size: clamp(44px, 5.5vw, 80px);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -3px;
}
.hero-line {
    display: block;
    overflow: hidden;
}
.hero-line span {
    display: block;
    opacity: 0;
    transform: translateY(100%);
}
.hero-line:nth-child(1) span {
    animation: slideUp 0.9s var(--ease) 0.4s forwards;
}
.hero-line:nth-child(2) span {
    animation: slideUp 0.9s var(--ease) 0.55s forwards;
}
.hero-line:nth-child(3) span {
    animation: slideUp 0.9s var(--ease) 0.7s forwards;
}
.hero-accent {
    background: linear-gradient(90deg, var(--blue) 0%, #93c5fd 45%, var(--blue) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}
@keyframes shimmer {
    from {
        background-position: 200% center;
    }
    to {
        background-position: 0% center;
    }
}

.hero-sub {
    max-width: 380px;
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    font-weight: 400;
    margin-top: 28px;
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 0.9s var(--ease) 0.85s forwards;
}
.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 36px;
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 0.9s var(--ease) 1s forwards;
}

.btn-primary {
    font-size: 14px;
    font-weight: 600;
    padding: 14px 28px;
    background: var(--black);
    color: var(--white);
    border-radius: 100px;
    text-decoration: none;
    transition:
        background 0.25s,
        transform 0.25s var(--ease);
}
.btn-primary:hover {
    background: var(--blue);
    transform: scale(1.03);
}
.btn-ghost {
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
    opacity: 0.5;
    text-decoration: none;
    transition: opacity 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}
.btn-ghost:hover {
    opacity: 1;
}
.btn-ghost svg {
    transition: transform 0.2s var(--ease);
}
.btn-ghost:hover svg {
    transform: translate(3px, -3px);
}

/* hero browser */
.hero-browser-wrap {
    width: 100%;
    max-width: 560px;
    opacity: 0;
    transform: translateY(24px) scale(0.97);
    animation: fadeUp 1.1s var(--ease) 0.6s forwards;
    will-change: transform;
    transform-style: preserve-3d;
}
.hero-browser-wrap.tilt-ready {
    transition: transform 0.25s ease;
}
.hero-browser {
    border-radius: 14px;
    box-shadow:
        0 32px 80px rgba(0, 0, 0, 0.13),
        0 4px 16px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    border: 1px solid var(--gray-mid);
}
.browser-bar {
    background: #f0f0f0;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--gray-mid);
}
.browser-dots {
    display: flex;
    gap: 5px;
}
.browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.browser-dots span:nth-child(1) {
    background: #ff5f56;
}
.browser-dots span:nth-child(2) {
    background: #ffbd2e;
}
.browser-dots span:nth-child(3) {
    background: #27c93f;
}
.browser-url {
    flex: 1;
    background: #fff;
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 11px;
    color: #999;
    font-weight: 500;
    border: 1px solid #e0e0e0;
}

/* floating badges */
.hero-badge {
    position: absolute;
    background: var(--white);
    border-radius: 12px;
    padding: 10px 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-mid);
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    animation: float 4s ease-in-out infinite;
    z-index: 2;
    font-family: 'Manrope', sans-serif;
}
.hero-badge-1 {
    bottom: 18%;
    left: -16px;
    animation-delay: 0s;
}
.hero-badge-2 {
    top: 16%;
    right: -8px;
    animation-delay: 1.5s;
}
.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #27c93f;
    position: relative;
    flex-shrink: 0;
}
.badge-dot::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #27c93f;
    animation: pulse-ring 2s ease-out infinite;
}
@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(2.8);
        opacity: 0;
    }
}
@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* ── MARQUEE ── */
.marquee-wrap {
    border-top: 1px solid var(--gray-mid);
    border-bottom: 1px solid var(--gray-mid);
    overflow: hidden;
    padding: 18px 0;
}
.marquee-track {
    display: flex;
    gap: 48px;
    width: max-content;
    animation: marquee 22s linear infinite;
}
.marquee-item {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--black);
    opacity: 0.3;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 16px;
}
.marquee-item::after {
    content: '·';
    opacity: 0.5;
    font-size: 20px;
}
@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* ── ABOUT ── */
#over {
    padding: 120px 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    border-bottom: 1px solid var(--gray-mid);
}
.about-visual {
    position: relative;
    display: flex;
    justify-content: center;
}
.about-photo {
    width: 340px;
    height: 420px;
    border-radius: 24px;
    overflow: hidden;
    background: var(--gray);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.12);
    position: relative;
}
.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #e8edf5 0%, #d0d8e8 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #aab;
}
.about-photo-placeholder p {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.7;
}
.about-photo::after {
    content: '';
    position: absolute;
    bottom: -12px;
    right: -12px;
    width: 80px;
    height: 80px;
    border-radius: 16px;
    background: var(--blue);
    z-index: -1;
    opacity: 0.15;
}
.about-badge {
    position: absolute;
    bottom: 24px;
    right: -16px;
    background: var(--white);
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border: 1px solid var(--gray-mid);
    animation: float 5s ease-in-out infinite;
}
.about-badge-num {
    font-size: 32px;
    font-weight: 800;
    color: var(--blue);
    letter-spacing: -1px;
    line-height: 1;
}
.about-badge-label {
    font-size: 12px;
    color: var(--gray-txt);
    font-weight: 500;
    margin-top: 2px;
}
.about-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-txt);
    margin-bottom: 16px;
}
.about-headline {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.05;
    margin-bottom: 24px;
}
.about-body {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}
.about-body p + p {
    margin-top: 14px;
}
.about-signature {
    margin-top: 32px;
    display: flex;
    align-items: center;
    gap: 16px;
}
.signature-name {
    font-size: 13px;
    font-weight: 600;
}
.signature-sub {
    font-size: 12px;
    color: var(--gray-txt);
}

.signature-img {
    width: 111px;
}

/* ── SERVICES ── */
#diensten {
    padding: 120px 48px;
    border-bottom: 1px solid var(--gray-mid);
}
.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 64px;
}
.section-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-txt);
    margin-bottom: 12px;
}
.section-title {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.05;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--gray-mid);
    border: 1px solid var(--gray-mid);
    border-radius: 16px;
    overflow: hidden;
}
.service-card {
    background: var(--white);
    padding: 40px 36px;
    position: relative;
    transition: background 0.3s;
    cursor: default;
}
.service-card:hover {
    background: #fafafa;
}
.service-card:hover .service-icon {
    background: var(--blue);
    color: var(--white);
}
.service-card:hover .service-arrow {
    opacity: 1;
    transform: translate(0, 0);
}
a.service-card {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
.service-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--gray);
    border: 1px solid var(--gray-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--black);
    transition:
        background 0.3s,
        border-color 0.3s,
        color 0.3s;
}
.service-name {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.3px;
    margin-bottom: 10px;
}
.service-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}
.service-price {
    margin-top: 24px;
    font-size: 13px;
    font-weight: 600;
    color: var(--blue);
}
.service-arrow {
    position: absolute;
    top: 36px;
    right: 36px;
    opacity: 0;
    transform: translate(-4px, 4px);
    transition:
        opacity 0.25s,
        transform 0.25s var(--ease);
    color: var(--blue);
}

/* ── PROCESS ── */
#process {
    padding: 120px 48px;
    border-bottom: 1px solid var(--gray-mid);
    background: var(--black);
    color: var(--white);
}
#process .section-label {
    color: rgba(255, 255, 255, 0.35);
}
#process .section-title {
    color: var(--white);
}
.process-timeline {
    position: relative;
    max-width: 560px;
    margin: 64px auto 0;
}
.timeline-line {
    position: absolute;
    left: 19px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}
.timeline-fill {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0%;
    background: var(--blue);
    border-radius: 2px;
    transition: height 0.25s ease;
}
.process-steps {
    display: flex;
    flex-direction: column;
}
.process-step {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    padding-bottom: 56px;
}
.process-step:last-child {
    padding-bottom: 0;
}
.step-marker {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #111;
    border: 2px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: border-color 0.4s, background 0.4s;
}
.step-marker span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.3);
    transition: color 0.4s;
}
.process-step.active .step-marker {
    border-color: var(--blue);
    background: var(--blue);
}
.process-step.active .step-marker span {
    color: #fff;
}
.step-body {
    padding-top: 8px;
}
.step-title {
    font-size: 20px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.25);
    margin-bottom: 10px;
    transition: color 0.4s;
}
.process-step.active .step-title {
    color: var(--white);
}
.step-desc {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.2);
    transition: color 0.4s;
}
.process-step.active .step-desc {
    color: rgba(255, 255, 255, 0.5);
}

/* ── CASES SLIDER ── */
#projecten {
    padding: 120px 48px;
    border-bottom: 1px solid var(--gray-mid);
    overflow: hidden;
}
.cases-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
}
.slider-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}
.slider-count {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-txt);
    min-width: 40px;
    text-align: center;
}
.slider-nav {
    display: flex;
    gap: 10px;
}
.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--gray-mid);
    background: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        background 0.2s,
        border-color 0.2s,
        transform 0.2s var(--ease);
    color: var(--black);
}
.slider-btn:hover {
    background: var(--black);
    border-color: var(--black);
    color: var(--white);
    transform: scale(1.05);
}
.slider-viewport {
    overflow: hidden;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    padding-top: 8px;
    margin-top: -8px;
}
.slider-viewport:active {
    cursor: grabbing;
}
.slider-track {
    display: flex;
    gap: 24px;
    transition: transform 0.6s var(--ease);
    will-change: transform;
}
.slide {
    flex-shrink: 0;
    width: calc(86% - 12px);
    border-radius: 20px;
    background: var(--white);
    border: 1.5px solid var(--gray-mid);
    display: flex;
    overflow: hidden;
    transition:
        box-shadow 0.3s var(--ease),
        transform 0.3s var(--ease);
}
.slide:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}
.slide-screenshot {
    width: 42%;
    flex-shrink: 0;
    overflow: hidden;
}
.slide-screenshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform 0.5s var(--ease);
}
.slide:hover .slide-screenshot img {
    transform: scale(1.04);
}
.slide-content {
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    min-height: 260px;
}
.slide-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.slide-tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-txt);
}
.slide-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--black);
    letter-spacing: -0.3px;
    margin: 6px 0 4px;
}
.slide-url {
    font-size: 12px;
    color: var(--blue);
    font-weight: 500;
    text-decoration: none;
}
.slide-url:hover {
    text-decoration: underline;
}
.slide-quote {
    border-top: 1px solid var(--gray-mid);
    padding-top: 20px;
}
.slide-quote-text {
    font-size: 14px;
    line-height: 1.7;
    color: #444;
    font-style: italic;
    margin-bottom: 14px;
}
.slide-quote-author {
    display: flex;
    align-items: center;
    gap: 10px;
}
.quote-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
    overflow: hidden;
}
.quote-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.quote-author-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--black);
}
.quote-author-role {
    font-size: 11px;
    color: var(--gray-txt);
    margin-top: 1px;
}
.slider-footer {
    margin-top: 20px;
}
.slider-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
}
.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-mid);
    transition: background 0.3s ease;
    cursor: pointer;
}
.slider-dot.active {
    background: var(--black);
}

/* ── PRICING ── */
#prijzen {
    padding: 120px 48px;
    border-bottom: 1px solid var(--gray-mid);
    background: var(--gray);
}
.pricing-header-note {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-txt);
    text-align: right;
}
.pricing-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 64px;
}
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 36px;
    border: 1.5px solid var(--gray-mid);
    transition:
        border-color 0.3s,
        transform 0.3s var(--ease),
        box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}
.pricing-card:hover {
    border-color: var(--blue);
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(26, 107, 250, 0.1);
}
.pricing-card.featured {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}
.pricing-card.featured:hover {
    border-color: var(--blue);
    box-shadow: 0 24px 56px rgba(26, 107, 250, 0.22);
}
.pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: var(--blue);
    color: #fff;
    padding: 5px 12px;
    border-radius: 100px;
    margin-bottom: 24px;
    align-self: start;
}
.pricing-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
    opacity: 0.8;
}
.pricing-name {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gray-txt);
    margin-bottom: 12px;
}
.pricing-card.featured .pricing-name {
    color: rgba(255, 255, 255, 0.45);
}
.pricing-price {
    font-size: 56px;
    font-weight: 800;
    letter-spacing: -3px;
    line-height: 1;
    color: inherit;
    margin-bottom: 8px;
}
.pricing-price span {
    font-size: 16px;
    font-weight: 500;
    opacity: 0.45;
    letter-spacing: 0;
}
.pricing-tagline {
    font-size: 14px;
    line-height: 1.5;
    color: var(--gray-txt);
    margin-bottom: 0;
}
.pricing-card.featured .pricing-tagline {
    color: rgba(255, 255, 255, 0.45);
}
.pricing-divider {
    height: 1px;
    background: var(--gray-mid);
    margin: 24px 0;
}
.pricing-card.featured .pricing-divider {
    background: rgba(255, 255, 255, 0.1);
}
.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
    flex: 1;
}
.pricing-features li {
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 10px;
}
.pricing-card.featured .pricing-features li {
    color: rgba(255, 255, 255, 0.85);
}
.pricing-features li.dim {
    opacity: 0.3;
}
.feature-icon {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.feature-on {
    background: rgba(34, 197, 94, 0.12);
    color: #16a34a;
}
.feature-off {
    background: transparent;
    color: var(--gray-txt);
}
.pricing-btn {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    padding: 15px;
    border-radius: 12px;
    text-decoration: none;
    transition:
        background 0.25s,
        border-color 0.25s,
        transform 0.2s var(--ease),
        color 0.2s;
}
.btn-outline {
    border: 1.5px solid var(--gray-mid);
    color: var(--black);
    background: transparent;
}
.btn-outline:hover {
    border-color: var(--black);
    background: var(--black);
    color: var(--white);
    transform: scale(1.02);
}
.btn-solid {
    background: var(--white);
    color: var(--black);
    border: 1.5px solid transparent;
}
.btn-solid:hover {
    background: var(--blue);
    color: #fff;
    transform: scale(1.02);
}
.btn-blue {
    background: var(--blue);
    color: #fff;
    border: 1.5px solid transparent;
}
.btn-blue:hover {
    background: #0d55d4;
    transform: scale(1.02);
}

/* beheer add-on */
.beheer-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 44px;
    border: 1.5px solid var(--gray-mid);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    transition:
        border-color 0.3s,
        box-shadow 0.3s;
}
.beheer-card:hover {
    border-color: var(--blue);
    box-shadow: 0 12px 32px rgba(26, 107, 250, 0.08);
}
.beheer-header {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
}
.beheer-name {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gray-txt);
    margin: 0;
}
.beheer-price {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1;
}
.beheer-price span {
    font-size: 15px;
    font-weight: 500;
    opacity: 0.45;
    letter-spacing: 0;
}
.beheer-desc {
    font-size: 14px;
    color: var(--gray-txt);
    line-height: 1.65;
    margin: 0;
}
.beheer-features {
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 24px;
}
.beheer-features li {
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ── FAQ ── */
#faq {
    padding: 120px 48px;
    border-bottom: 1px solid var(--gray-mid);
    background: var(--gray);
}
.faq-list {
    margin-top: 64px;
    border-top: 1px solid var(--gray-mid);
}
.faq-item {
    border-bottom: 1px solid var(--gray-mid);
}
.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
    text-align: left;
    gap: 24px;
    transition: color 0.2s;
}
.faq-q:hover {
    color: var(--blue);
}
.faq-q:hover .faq-icon {
    background: var(--blue);
    color: var(--white);
}
.faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gray-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    transition:
        background 0.25s,
        color 0.25s,
        transform 0.3s var(--ease);
}
.faq-q[aria-expanded='true'] .faq-icon {
    transform: rotate(45deg);
    background: var(--black);
    color: var(--white);
}
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease);
}
.faq-a p {
    padding: 0 0 24px;
    font-size: 15px;
    line-height: 1.75;
    color: #555;
    max-width: 640px;
    margin: 0;
}

/* ── CONTACT ── */
#contact {
    padding: 120px 48px;
    border-bottom: 1px solid var(--gray-mid);
}
.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
}
.contact-sub {
    font-size: 15px;
    line-height: 1.75;
    color: #555;
    margin-top: 20px;
    margin-bottom: 40px;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    color: var(--black);
    transition: color 0.2s;
}
.contact-item:hover {
    color: var(--blue);
}
.contact-icon {
    width: 36px;
    height: 36px;
    background: var(--gray);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--black);
    border: 1px solid var(--gray-mid);
    transition:
        background 0.2s,
        border-color 0.2s,
        color 0.2s;
}
.contact-item:hover .contact-icon {
    background: var(--black);
    border-color: var(--black);
    color: var(--white);
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: var(--gray);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--gray-mid);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.form-group label {
    font-size: 13px;
    font-weight: 600;
}
.form-group input,
.form-group select,
.form-group textarea {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    padding: 12px 16px;
    background: var(--white);
    border: 1.5px solid var(--gray-mid);
    border-radius: 10px;
    outline: none;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #bbb;
}
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 3px;
    border-radius: 4px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(26, 107, 250, 0.1);
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}
.form-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 15px 32px;
    background: var(--black);
    color: var(--white);
    border: none;
    border-radius: 100px;
    cursor: pointer;
    align-self: flex-start;
    transition:
        background 0.25s,
        transform 0.25s var(--ease),
        box-shadow 0.25s;
}
.form-submit:hover {
    background: var(--blue);
    transform: scale(1.03);
    box-shadow: 0 8px 24px rgba(26, 107, 250, 0.3);
}
.form-submit svg {
    transition: transform 0.25s var(--ease);
}
.form-submit:hover svg {
    transform: translateX(3px);
}
.form-note {
    font-size: 12px;
    color: var(--gray-txt);
    margin-top: -8px;
}
.form-success {
    display: none;
    padding: 14px 20px;
    background: rgba(26, 107, 250, 0.08);
    border: 1px solid rgba(26, 107, 250, 0.2);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--blue);
}
.form-success.show {
    display: block;
}
.form-error {
    display: none;
    padding: 14px 20px;
    background: rgba(220, 38, 38, 0.06);
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #dc2626;
}
.form-error.show {
    display: block;
}

/* ── FOOTER ── */
.site-footer {
    background: var(--black);
    color: var(--white);
    padding: 72px 48px 32px;
}
.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 64px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-logo {
    height: 28px;
    width: auto;
    margin-bottom: 16px;
}
.footer-tagline {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 24px;
}
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.footer-contact a,
.footer-contact span {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-contact a:hover {
    color: var(--white);
}
.footer-col-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
}
.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-col ul a {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-col ul a:hover {
    color: var(--white);
}
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 28px;
}
.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.25);
    margin: 0;
}

/* ── SCROLL REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.8s var(--ease),
        transform 0.8s var(--ease);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-d1 {
    transition-delay: 0.1s;
}
.reveal-d2 {
    transition-delay: 0.2s;
}
.reveal-d3 {
    transition-delay: 0.3s;
}

/* ── THEME TOGGLE ── */
.theme-toggle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid var(--gray-mid);
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    transition:
        background 0.2s,
        border-color 0.2s,
        transform 0.2s var(--ease);
    flex-shrink: 0;
}
.theme-toggle:hover {
    background: var(--gray);
    transform: scale(1.08);
}
.icon-sun {
    display: none;
}
[data-theme='dark'] .icon-moon {
    display: none;
}
[data-theme='dark'] .icon-sun {
    display: block;
}
.mobile-bar-actions {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ── DARK MODE ── */
[data-theme='dark'] {
    --black: #e2e2e2;
    --white: #000000;
    --gray: #111111;
    --gray-mid: #222222;
    --gray-txt: #888;
    --blue: #5a95ff;
}

/* ── Header ── */
[data-theme='dark'] .site-header {
    background: #000;
}
[data-theme='dark'] .mobile-bar {
    background: #000;
    border-color: #222;
}
[data-theme='dark'] .mobile-drawer {
    background: #0d0d0d;
}

/* Logo zwart → wit */
[data-theme='dark'] .header-logo img,
[data-theme='dark'] .mobile-logo img {
    filter: invert(1);
}

/* ── Hero ── */
[data-theme='dark'] .hero-sub {
    color: #999;
}
[data-theme='dark'] #hero::before {
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
}
[data-theme='dark'] .hero-badge {
    background: #111;
    border-color: #222;
    color: #e2e2e2;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}
[data-theme='dark'] .hero-browser {
    border-color: #222;
    box-shadow:
        0 32px 80px rgba(0, 0, 0, 0.5),
        0 4px 16px rgba(0, 0, 0, 0.3);
}
[data-theme='dark'] .browser-bar {
    background: #141414;
    border-color: #222;
}
[data-theme='dark'] .browser-url {
    background: #1e1e1e;
    border-color: #2a2a2a;
    color: #444;
}

/* ── Marquee ── */
/* var(--black) werkt automatisch */

/* ── About ── */
[data-theme='dark'] .about-body {
    color: #aaa;
}

/* ── Services ── */
[data-theme='dark'] .service-card:hover {
    background: #161616;
}
[data-theme='dark'] .service-desc {
    color: #999;
}

/* ── Process — blijft écht zwart, tekst expliciet wit ── */
[data-theme='dark'] #process {
    background: #000;
    color: #e2e2e2;
}
[data-theme='dark'] #process .section-label {
    color: rgba(226, 226, 226, 0.4);
}
[data-theme='dark'] #process .section-title {
    color: #e2e2e2;
}
[data-theme='dark'] .step-marker {
    background: #000;
}

/* ── Slider ── */
[data-theme='dark'] .slide {
    background: #111;
    border-color: #222;
}
[data-theme='dark'] .slide-quote-text {
    color: #aaa;
}

/* ── Pricing ── */
[data-theme='dark'] .pricing-header-note {
    color: #666;
}
/* Featured card wordt lichte kaart — fix hardcoded rgba-wit tekst */
[data-theme='dark'] .pricing-card.featured .pricing-name {
    color: rgba(0, 0, 0, 0.4);
}
[data-theme='dark'] .pricing-card.featured .pricing-tagline {
    color: rgba(0, 0, 0, 0.45);
}
[data-theme='dark'] .pricing-card.featured .pricing-divider {
    background: rgba(0, 0, 0, 0.12);
}
[data-theme='dark'] .pricing-card.featured .pricing-features li {
    color: rgba(0, 0, 0, 0.75);
}

/* ── FAQ ── */
[data-theme='dark'] .faq-a p {
    color: #aaa;
}

/* ── Contact form ── */
[data-theme='dark'] .form-group input::placeholder,
[data-theme='dark'] .form-group textarea::placeholder {
    color: #444;
}

/* ── Footer — écht zwart, hardcoded rgba-wit-tekst al goed ── */
[data-theme='dark'] .site-footer {
    background: #000;
    color: #e2e2e2;
}
[data-theme='dark'] .footer-contact a:hover,
[data-theme='dark'] .footer-col ul a:hover {
    color: #e2e2e2;
}

/* ── Cookie banner ── */
[data-theme='dark'] .cookie-inner {
    background: #111;
    border-color: #222;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}
[data-theme='dark'] .cookie-text p {
    color: #888;
}
[data-theme='dark'] .cookie-text p:first-child {
    color: #e2e2e2;
}
[data-theme='dark'] .cookie-btn-deny {
    border-color: #333;
    color: #888;
}
[data-theme='dark'] .cookie-btn-deny:hover {
    border-color: #e2e2e2;
    color: #e2e2e2;
}
[data-theme='dark'] .cookie-btn-accept {
    background: #e2e2e2;
    color: #000;
    border-color: #e2e2e2;
}

/* ── KEYFRAMES ── */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── RESPONSIVE ── */
@media (max-width: 980px) {
    .site-header {
        display: none;
    }
    .mobile-header {
        display: block;
    }
}

@media (max-width: 900px) {
    #hero {
        grid-template-columns: 1fr;
        padding: 100px 24px 48px;
        min-height: auto;
    }
    .hero-right {
        display: none;
    }
    #over {
        grid-template-columns: 1fr;
        padding: 80px 24px;
        gap: 40px;
    }
    .about-visual {
        display: none;
    }
    #diensten,
    #process,
    #projecten,
    #prijzen,
    #faq,
    #contact {
        padding: 80px 24px;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .beheer-card {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .slide {
        width: calc(90% - 12px);
        flex-direction: column;
    }
    .slide-screenshot {
        width: 100%;
        height: 200px;
    }
    .contact-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .contact-form {
        padding: 28px 20px;
    }
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .site-footer {
        padding: 56px 24px 24px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* ============================================================
   Cookie banner
   ============================================================ */

#cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(120px);
    z-index: 9999;
    width: calc(100% - 48px);
    max-width: 580px;
    opacity: 0;
    transition:
        transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

#cookie-banner.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: all;
}

#cookie-banner.hide {
    transform: translateX(-50%) translateY(120px);
    opacity: 0;
    pointer-events: none;
}

.cookie-inner {
    background: #fff;
    border: 1.5px solid #e0e0e0;
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.06);
}

.cookie-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
    min-width: 0;
}

.cookie-text p {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    line-height: 1.5;
    color: #555;
}

.cookie-text p:first-child {
    color: #111;
}

.cookie-text a {
    color: #1a6bfa;
    text-decoration: none;
}

.cookie-text a:hover {
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.cookie-btn {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 9px 18px;
    border-radius: 100px;
    border: 1.5px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    transition:
        background 0.2s,
        border-color 0.2s,
        transform 0.2s;
}

.cookie-btn:hover {
    transform: scale(1.03);
}

.cookie-btn-deny {
    background: transparent;
    border-color: #e0e0e0;
    color: #888;
}

.cookie-btn-deny:hover {
    border-color: #111;
    color: #111;
}

.cookie-btn-accept {
    background: #111;
    color: #fff;
    border-color: #111;
}

.cookie-btn-accept:hover {
    background: #1a6bfa;
    border-color: #1a6bfa;
}

@media (max-width: 540px) {
    .cookie-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .cookie-actions {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
        text-align: center;
    }
}
