:root {
    --bg: #070b18;
    --bg-soft: #10172f;
    --panel: rgba(255,255,255,.08);
    --panel-strong: rgba(255,255,255,.14);
    --text: #f8fafc;
    --muted: #a8b3cf;
    --brand: #6d5dfc;
    --brand2: #00d4ff;
    --border: rgba(255,255,255,.14);
    --shadow: 0 24px 80px rgba(0,0,0,.35);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: Inter, Arial, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(109,93,252,.35), transparent 35%),
        radial-gradient(circle at top right, rgba(0,212,255,.22), transparent 32%),
        linear-gradient(135deg, var(--bg), var(--bg-soft) 60%, #07111f);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
}

/* NAVBAR */

.topbar {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 7%;
    background: rgba(7,11,24,.78);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(18px);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -.3px;
}

.brand img {
    width: 100px;
    height: auto;
    object-fit: contain;
}

.navbar {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar a {
    position: relative;
    color: var(--text);
    padding: 11px 15px;
    border-radius: 14px;
    font-weight: 600;
    transition: .25s ease;
}

.navbar a:hover {
    background: var(--panel);
    transform: translateY(-1px);
}

.navbar a:not(.nav-btn)::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 7px;
    height: 2px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--brand), var(--brand2));
    opacity: 0;
    transform: scaleX(.3);
    transition: .25s ease;
}

.navbar a:not(.nav-btn):hover::after {
    opacity: 1;
    transform: scaleX(1);
}

.nav-btn {
    background: linear-gradient(135deg, var(--brand), var(--brand2)) !important;
    color: white !important;
    box-shadow: 0 12px 30px rgba(0,212,255,.22);
}

.nav-btn:hover {
    box-shadow: 0 16px 40px rgba(0,212,255,.32);
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 10px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    height: 2px;
    background: white;
    margin: 5px 0;
    border-radius: 10px;
    transition: .25s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* MAIN */

.container {
    width: min(1180px, 92%);
    margin: 0 auto;
    padding: 30px 0;
}

.hero {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 40px;
    align-items: center;
    padding: 70px 0;
}

.hero h1 {
    margin: 0 0 22px;
    font-size: clamp(2.4rem, 6vw, 5rem);
    line-height: 1;
    letter-spacing: -2px;
}

.hero p,
.lead {
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

.card,
.panel,
.package-card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 28px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.btn,
button,
input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 20px;
    border: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--brand), var(--brand2));
    color: white;
    font-weight: 800;
    cursor: pointer;
    transition: .25s ease;
}

.btn:hover,
button:hover,
input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(0,212,255,.24);
}

input,
select,
textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgba(255,255,255,.08);
    color: white;
    outline: none;
}

input::placeholder,
textarea::placeholder {
    color: rgba(255,255,255,.45);
}

textarea {
    min-height: 130px;
    resize: vertical;
}

table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 18px;
}

th,
td {
    padding: 14px;
    border-bottom: 1px solid var(--border);
    text-align: left;
}

th {
    color: white;
    background: rgba(255,255,255,.08);
}

td {
    color: var(--muted);
}

/* LANGUAGE CSS */
.footer-language {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgba(255,255,255,.08);
    color: white;
    outline: none;
}
.footer-language option {
    color: #0f172a;
}
.language-label {
    display: block;
    margin-top: 16px;
    margin-bottom: 6px;
    color: var(--muted);
    font-weight: 600;
}
/* FOOTER CSS */
.footer {
    margin: 40px auto 0;
    padding: 40px 50px 20px; /* meer van de kant af */
    border-top: 1px solid var(--border);
    color: var(--muted);
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    background: rgba(7,11,24,.85);
}
.footer-column { flex: 1; min-width: 220px; display: flex; flex-direction: column; gap: 12px; }
.footer-column h4 { color: white; margin-bottom: 12px; }
.footer-column ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.footer-column ul li a { color: var(--muted); text-decoration: none; }
.footer-column ul li a:hover { color: white; }
.footer-logo { width: 120px; height: auto; margin-bottom: 10px; }
.footer-social a { margin-right: 12px; color: var(--muted); text-decoration: none; }
.footer-social a:hover { color: white; }
.footer-newsletter { display: flex; gap: 8px; }
.footer-newsletter input { flex: 1; padding: 10px; border-radius: 12px; border: 1px solid var(--border); background: rgba(255,255,255,.08); color: white; }
.footer-newsletter button { padding: 10px 16px; border: 0; border-radius: 12px; background: linear-gradient(135deg, var(--brand), var(--brand2)); color: white; cursor: pointer; }
.footer-copy { flex-basis: 100%; margin-top: 20px; text-align: center; color: var(--muted); }

/* RESPONSIVE */

@media (max-width: 850px) {
    .topbar {
        padding: 14px 4%;
    }

    .nav-toggle {
        display: block;
    }

    .navbar {
        position: absolute;
        top: 76px;
        left: 4%;
        right: 4%;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
        background: rgba(12,18,38,.98);
        border: 1px solid var(--border);
        border-radius: 24px;
        box-shadow: var(--shadow);
    }

    .navbar.active {
        display: flex;
        animation: menuFade .25s ease;
    }

    .navbar a {
        width: 100%;
        text-align: center;
        padding: 14px;
    }

    .navbar a::after {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 40px 0;
    }

    .grid {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 45px 0;
    }

    .footer {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .brand span {
        font-size: 1rem;
    }

    .brand img {
        width: 38px;
        height: 38px;
    }

    .hero h1 {
        font-size: 2.35rem;
    }

    .card,
    .panel,
    .package-card {
        padding: 22px;
        border-radius: 22px;
    }
}

@keyframes menuFade {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-head {
    margin-bottom: 28px;
}

.eyebrow {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 8px 13px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--brand2);
    background: rgba(255,255,255,.06);
    font-weight: 800;
    font-size: .85rem;
}

.page-head h1 {
    margin: 0 0 12px;
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    letter-spacing: -1.5px;
}

.page-head p {
    max-width: 720px;
    color: var(--muted);
    line-height: 1.8;
}

.market-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
    position: relative;
}

.filter-sidebar {
    position: fixed;
    top: 0;
    left: -360px; /* standaard ingeklapt */
    width: 360px;
    max-width: 90vw;
    height: 100vh;
    padding: 22px;
    border-radius: 0 28px 28px 0;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.08);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    transition: left 0.3s ease;
    z-index: 200;
}
.filter-toggle {
    display: inline-flex;
    margin-bottom: 18px;
    cursor: pointer;
}
.filter-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}


.filter-head h3 {
    margin: 0;
    font-size: 1.25rem;
}
.filter-sidebar.active {
    left: 0;
}

#filterClose {
    display: inline-flex; /* in plaats van none */
    width: 38px;
    height: 38px;
    padding: 0;
    border-radius: 12px;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer; /* voor visuele aanwijzing dat het klikbaar is */
}

.filter-form {
    display: grid;
    gap: 16px;
}

.filter-form label {
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-weight: 700;
}

.filter-form input,
.filter-form select {
    background: rgba(7,11,24,.55);
}

.filter-form select option {
    color: #0f172a;
}

.filter-options {
    display: grid;
    gap: 10px;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: rgba(7,11,24,.35);
}

.filter-options > span {
    color: white;
    font-weight: 800;
}

.check-option {
    display: flex !important;
    grid-template-columns: unset !important;
    align-items: center;
    gap: 10px !important;
    padding: 11px;
    border-radius: 16px;
    background: rgba(255,255,255,.06);
    cursor: pointer;
    transition: .2s ease;
}

.check-option:hover {
    background: rgba(255,255,255,.11);
}

.check-option input {
    width: 18px;
    height: 18px;
    accent-color: #00d4ff;
}

.check-option span {
    color: var(--text);
    font-size: .95rem;
}



.result-bar {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
    padding: 16px 18px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: rgba(255,255,255,.07);
    color: var(--muted);
}

.result-bar strong {
    color: white;
}

/* =========================
   PACKAGE GRID
========================= */


.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    margin-top: 40px;
}

/* Package card styling */


/* =========================
   PACKAGE CARD
========================= */

.package-card {
    position: relative;
    overflow: hidden;
    min-width: 0;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding: 28px;
    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            rgba(17,24,39,.95),
            rgba(10,14,24,.98)
        );

    border: 1px solid rgba(255,255,255,0.07);

    box-shadow:
        0 12px 35px rgba(0,0,0,.35),
        inset 0 1px 0 rgba(255,255,255,.03);

    transition:
        transform .28s ease,
        box-shadow .28s ease,
        border-color .28s ease;
}

/* hover effect */
.package-card:hover {
    transform: translateY(-6px);

    border-color: rgba(0,212,255,.22);

    box-shadow:
        0 22px 50px rgba(0,0,0,.45),
        0 0 30px rgba(0,212,255,.08);
}

/* glow effect */
.package-card::before {
    content: "";
    position: absolute;
    inset: -1px;

    background:
        radial-gradient(circle at top right,
            rgba(0,212,255,.16),
            transparent 36%),

        radial-gradient(circle at bottom left,
            rgba(109,93,252,.14),
            transparent 40%);

    pointer-events: none;
}

/* content layer */
.package-card > * {
    position: relative;
    z-index: 2;
}

/* =========================
   TOP BAR
========================= */

.package-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

/* =========================
   BADGE
========================= */

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    padding: 9px 14px;

    border-radius: 999px;

    background: rgba(0,212,255,.10);

    color: #67e8f9;

    border: 1px solid rgba(0,212,255,.18);

    font-weight: 800;
    font-size: .78rem;
    letter-spacing: .3px;
}

/* =========================
   STATUS
========================= */

.status-dot {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    color: #8fffd2;

    font-size: .82rem;
    font-weight: 700;
}

.status-dot::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #34d399;
    box-shadow: 0 0 10px #34d399;
}

/* =========================
   TITLE
========================= */

.package-card h2 {
    margin: 8px 0 12px;

    font-size: 1.6rem;
    line-height: 1.2;
    letter-spacing: -.5px;

    color: white;
}

/* =========================
   DESCRIPTION
========================= */

.package-card p {
    color: rgba(255,255,255,.68);
    line-height: 1.75;
    font-size: .96rem;
}

/* =========================
   PRICE BOX
========================= */

.price-box {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 18px;

    margin: 24px 0;

    padding: 18px;

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.04),
            rgba(255,255,255,.02)
        );

    border: 1px solid rgba(255,255,255,.06);

    backdrop-filter: blur(14px);
}

.price-box small {
    display: block;
    margin-bottom: 4px;

    color: rgba(255,255,255,.45);
    font-size: .78rem;
}

.price-box strong {
    font-size: 2.1rem;
    font-weight: 800;
    color: white;
    letter-spacing: -1px;
}

.price-box span {
    padding: 10px 14px;

    border-radius: 999px;

    background: rgba(255,255,255,.06);

    color: rgba(255,255,255,.72);

    font-size: .82rem;
    font-weight: 700;
}

/* =========================
   FEATURES
========================= */

.feature-list {
    display: grid;
    gap: 12px;

    padding: 0;
    margin: 0 0 28px;

    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;

    color: rgba(255,255,255,.74);

    line-height: 1.5;
}

.feature-list li::before {
    content: "✓";

    width: 22px;
    height: 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-right: 12px;

    border-radius: 50%;

    background: rgba(16,185,129,.14);

    color: #34d399;

    font-size: .82rem;
    font-weight: 900;
}

/* =========================
   ACTION BUTTONS
========================= */

.card-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: auto;
}

.card-actions .btn {
    flex: 1;
    justify-content: center;
}

/* =========================
   LIGHT BUTTON
========================= */

.btn-light {
    background: rgba(255,255,255,.06) !important;

    border: 1px solid rgba(255,255,255,.08);

    color: white !important;

    backdrop-filter: blur(8px);

    transition: all .25s ease;
}

.btn-light:hover {
    background: rgba(255,255,255,.12) !important;
}

/* =========================
   RESPONSIVE
========================= */


.empty-state {
    grid-column: 1 / -1;
    padding: 40px;
    border: 1px solid var(--border);
    border-radius: 28px;
    background: rgba(255,255,255,.08);
    text-align: center;
}

@media (max-width: 980px) {
    .market-layout {
        grid-template-columns: 1fr;
    }

    .filter-toggle {
        display: inline-flex;
    }

    .filter-sidebar {
        position: fixed;
        top: 0;
        left: -100%;
        z-index: 200;
        width: min(360px, 92vw);
        height: 100vh;
        overflow-y: auto;
        border-radius: 0 28px 28px 0;
        transition: .3s ease;
    }

    .filter-sidebar.active {
        left: 0;
    }

    #filterClose {
        display: inline-flex;
    }
}

@media (max-width: 720px) {
    .package-grid {
        grid-template-columns: 1fr;
    }

    .result-bar {
        flex-direction: column;
    }
}

.demo-header {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 16px 5%;
    background: rgba(7,11,24,.82);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(18px);
}

.demo-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.demo-page {
    width: min(1400px, 94%);
    margin: 0 auto;
    padding: 45px 0;
}

.demo-info {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 24px;
    align-items: stretch;
    margin-bottom: 24px;
}

.demo-info h1 {
    margin: 0 0 14px;
    font-size: clamp(2rem, 5vw, 4.2rem);
    letter-spacing: -1.5px;
}

.demo-info p {
    max-width: 760px;
    color: var(--muted);
    line-height: 1.8;
}

.demo-price-card {
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 26px;
    background: var(--panel);
    box-shadow: var(--shadow);
}

.demo-price-card span,
.demo-price-card small {
    display: block;
    color: var(--muted);
}

.demo-price-card strong {
    display: block;
    margin: 10px 0;
    font-size: 2rem;
}

.demo-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: rgba(255,255,255,.07);
}

.device-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.device-btn {
    background: rgba(255,255,255,.08);
    border: 1px solid var(--border);
    color: white;
}

.device-btn.active {
    background: linear-gradient(135deg, var(--brand), var(--brand2));
}

.demo-preview-wrap {
    min-height: 720px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 32px;
    background:
        radial-gradient(circle at top, rgba(0,212,255,.16), transparent 35%),
        rgba(255,255,255,.06);
    overflow: auto;
}

.demo-frame {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: #0f172a;
    box-shadow: 0 30px 100px rgba(0,0,0,.45);
    transition: .35s ease;
}

.demo-frame.desktop {
    width: 100%;
    max-width: 1180px;
    height: 680px;
}

.demo-frame.tablet {
    width: 768px;
    height: 920px;
}

.demo-frame.mobile {
    width: 390px;
    height: 760px;
    border-radius: 34px;
}

.browser-bar {
    height: 44px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 14px;
    background: rgba(255,255,255,.08);
    border-bottom: 1px solid var(--border);
}

.browser-bar span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,.35);
}

.browser-bar small {
    margin-left: 10px;
    color: var(--muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.demo-frame iframe {
    width: 100%;
    height: calc(100% - 44px);
    border: 0;
    background: white;
}

.demo-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-top: 28px;
}

@media (max-width: 900px) {
    .demo-header,
    .demo-toolbar,
    .demo-info {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: stretch;
    }

    .demo-actions {
        width: 100%;
    }

    .demo-actions .btn {
        flex: 1;
    }

    .demo-preview-wrap {
        min-height: auto;
        padding: 16px;
    }

    .demo-frame.desktop,
    .demo-frame.tablet,
    .demo-frame.mobile {
        width: 100%;
        height: 720px;
    }

    .demo-details-grid {
        grid-template-columns: 1fr;
    }
}
.package-info-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 24px;
    align-items: start;
}

.price-info-card {
    position: sticky;
    top: 105px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.price-row span {
    color: var(--muted);
}

.price-row strong {
    font-size: 1.25rem;
}

.price-info-card .btn {
    width: 100%;
    margin-top: 14px;
}

@media (max-width: 850px) {
    .package-info-layout {
        grid-template-columns: 1fr;
    }

    .price-info-card {
        position: static;
    }
}
.product-page {
    padding: 10px 0 40px;
}

.solo-page {
    padding: 10px 0 40px;
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    color: var(--muted);
    font-size: .95rem;
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb strong {
    color: white;
}

.product-hero {
    display: grid;
    grid-template-columns: 1fr 390px;
    gap: 44px;
    align-items: start;
}

.product-left h1 {
    margin: 8px 0 14px;
    font-size: clamp(2.6rem, 5vw, 4.7rem);
    line-height: .95;
    letter-spacing: -2px;
}

.product-left > p {
    max-width: 760px;
    margin-bottom: 26px;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.8;
}

.product-gallery-pro {
    display: grid;
    grid-template-columns: 1fr 150px;
    gap: 14px;
}



.gallery-preview img {
    display: block;
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 14px;
    background: white;
}

.gallery-side {
    display: grid;
    gap: 12px;
    max-height: 560px;
    overflow-y: auto;
    padding: 14px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 26px;
    background: rgba(255,255,255,.055);
}

.gallery-mini {
    width: 100%;
    padding: 7px;
    border: 2px solid transparent;
    border-radius: 14px;
    background: rgba(255,255,255,.08);
    cursor: pointer;
}

.gallery-mini.active,
.gallery-mini:hover {
    border-color: var(--brand2);
    background: rgba(0,212,255,.12);
}

.gallery-mini img {
    display: block;
    width: 100%;
    height: 78px;
    object-fit: cover;
    border-radius: 9px;
}

.price-panel {
    position: sticky;
    top: 105px;
    padding: 30px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.045)),
        radial-gradient(circle at top left, rgba(109,93,252,.16), transparent 35%);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.price-icon {
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--brand), #a855f7);
    font-size: 1.7rem;
    box-shadow: 0 16px 40px rgba(109,93,252,.35);
}

.price-panel h2 {
    margin: 0 0 16px;
    font-size: 1.8rem;
}

.price-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,.12);
}

.price-item strong {
    display: block;
    margin-bottom: 6px;
    color: white;
}

.price-item span {
    display: block;
    color: var(--muted);
    font-size: .9rem;
}

.price-item b {
    color: var(--brand2);
    font-size: 1.15rem;
    white-space: nowrap;
}

.price-main-btn,
.price-back-btn {
    width: 100%;
    margin-top: 14px;
}

.trust-box {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 14px;
    margin-top: 24px;
    padding: 18px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 22px;
    background: rgba(255,255,255,.055);
}

.trust-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: rgba(109,93,252,.18);
    font-size: 1.4rem;
}

.trust-box strong {
    color: white;
}

.trust-box p {
    margin: 6px 0 0;
    color: var(--muted);
    line-height: 1.6;
    font-size: .92rem;
}

.product-bottom {
    margin-top: 26px;
    width: 100%;
}
.product-left {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.info-card-wide {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 18px;
    padding: 28px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 28px;
    background:
        radial-gradient(circle at top left, rgba(109,93,252,.13), transparent 32%),
        rgba(255,255,255,.065);
    box-shadow: var(--shadow);
}

.info-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--brand), #a855f7);
    font-size: 1.35rem;
}

.info-card-wide h2 {
    margin: 0 0 8px;
}

.info-card-wide p {
    margin: 0 0 20px;
    color: var(--muted);
    line-height: 1.7;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px 22px;
}

.feature-grid span {
    color: var(--text);
    font-size: .95rem;
}

@media (max-width: 1100px) {
    .product-hero {
        grid-template-columns: 1fr;
    }

    .price-panel {
        position: static;
    }
}

@media (max-width: 760px) {
    .product-gallery-pro {
        grid-template-columns: 1fr;
    }

    .gallery-side {
        grid-template-columns: repeat(3, 1fr);
        max-height: none;
        overflow: visible;
    }

    .gallery-preview img {
        height: 340px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .info-card-wide {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .gallery-side {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-preview {
        padding: 10px;
    }

    .gallery-preview img {
        height: 260px;
    }

    .price-panel {
        padding: 22px;
    }

    .price-item {
        grid-template-columns: 1fr;
    }
}
.price-subtitle {
    margin: -6px 0 18px;
    color: var(--muted);
    line-height: 1.6;
    font-size: .95rem;
}

.pricing-options {
    display: grid;
    gap: 12px;
}

.pricing-choice {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 16px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 20px;
    background: rgba(255,255,255,.055);
    transition: .25s ease;
}

.pricing-choice:hover {
    transform: translateY(-2px);
    border-color: rgba(0,212,255,.45);
    background: rgba(0,212,255,.10);
}

.pricing-choice-featured {
    border-color: rgba(0,212,255,.42);
    background:
        radial-gradient(circle at top right, rgba(0,212,255,.16), transparent 35%),
        rgba(255,255,255,.07);
}

.pricing-choice strong {
    display: block;
    margin-bottom: 5px;
    color: white;
}

.pricing-choice span {
    color: var(--muted);
    font-size: .9rem;
}

.pricing-choice b {
    color: var(--brand2);
    font-size: 1.15rem;
    white-space: nowrap;
    text-align: right;
}

.pricing-choice small {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: .75rem;
    font-weight: 700;
}

.setup-notice {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-top: 16px;
    padding: 15px;
    border: 1px dashed rgba(255,255,255,.24);
    border-radius: 18px;
    background: rgba(255,255,255,.045);
}

.setup-notice span {
    color: var(--muted);
}

.setup-notice strong {
    color: white;
}

.payment-info-card {
    margin-top: 22px;
}
/* provider logo */
.payment-info-card img {
    margin-top: 14px;
    max-width: 140px;
    background: rgba(255,255,255,0.04);
    padding: 10px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.payment-info-card img:hover {
    transform: scale(1.04);
}

/* email styling */
.payment-info-card p a,
.payment-info-card p.email {
    color: #93c5fd;
    text-decoration: none;
}
@media (max-width: 520px) {
    .pricing-choice {
        grid-template-columns: 1fr;
    }

    .pricing-choice b {
        text-align: left;
    }
}
/* ===== MAIN GALLERY CONTAINER ===== */
.gallery-preview {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 420px; /* pas aan naar wens */

    background: #0f172a;

    overflow: hidden;

    border-radius: 18px;
}

/* ===== MAIN IMAGE ===== */
.zoomable-gallery-image {
    width: 100%;
    height: 100%;

    object-fit: contain; /* 🔥 belangrijk: geen crop */

    display: block;

    cursor: zoom-in;

    transition: transform .3s ease;
}

/* hover subtiel */
.zoomable-gallery-image:hover {
    transform: scale(1.02);
}


.image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: rgba(3, 7, 18, .92);
    backdrop-filter: blur(18px);
}

.image-lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: min(1200px, 92vw);
    max-height: 88vh;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 78vh;
    object-fit: contain;
    border-radius: 22px;
    box-shadow: 0 30px 100px rgba(0,0,0,.55);
    background: white;
}

.lightbox-content p {
    margin: 14px 0 0;
    color: white;
    font-weight: 700;
}

.lightbox-close,
.lightbox-nav {
    position: absolute;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.12);
    color: white;
    cursor: pointer;
    backdrop-filter: blur(12px);
}

.lightbox-close {
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    font-size: 2rem;
    line-height: 1;
}

.lightbox-nav {
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 74px;
    border-radius: 18px;
    font-size: 3rem;
    line-height: 1;
}

.lightbox-prev {
    left: 24px;
}

.lightbox-next {
    right: 24px;
}

.lightbox-close:hover,
.lightbox-nav:hover {
    background: linear-gradient(135deg, var(--brand), var(--brand2));
}

@media (max-width: 650px) {
    .image-lightbox {
        padding: 16px;
    }

    .lightbox-nav {
        top: auto;
        bottom: 24px;
        transform: none;
        width: 52px;
        height: 52px;
        font-size: 2.2rem;
    }

    .lightbox-prev {
        left: 24px;
    }

    .lightbox-next {
        right: 24px;
    }

    .lightbox-content img {
        max-height: 70vh;
    }
}
.package-content-card {
    margin-top: 22px;
}

.package-content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 18px;
}

.content-box {
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: rgba(255,255,255,.055);
}

.content-box strong {
    display: block;
    margin-bottom: 8px;
    color: white;
}

.content-box span {
    color: var(--muted);
    line-height: 1.6;
    font-size: .92rem;
}

@media (max-width: 900px) {
    .package-content-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .package-content-grid {
        grid-template-columns: 1fr;
    }
}
.selected-product-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px;
    align-items: center;
    margin: 18px 0 30px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(0,212,255,.13), transparent 35%),
        rgba(255,255,255,.06);
}

.selected-product-card h3 {
    margin: 6px 0 8px;
}

.selected-product-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.mini-label {
    display: inline-flex;
    color: var(--brand2);
    font-size: .8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.product-overview-card {
    border-color: rgba(0,212,255,.28);
}

.side-summary-line {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 0;
    border-top: 1px solid rgba(255,255,255,.12);
}

.side-summary-line span {
    color: var(--muted);
}

.side-summary-line strong {
    color: white;
    text-align: right;
}

.choice-disabled {
    opacity: .35;
    cursor: not-allowed;
}

.choice-disabled span {
    background: rgba(255,255,255,.025);
}

.choice-disabled * {
    cursor: not-allowed;
}

.request-form-card select {
    min-height: 52px;
    background: rgba(7,11,24,.55);
}

.request-form-card select option {
    color: #0f172a;
}

@media (max-width: 760px) {
    .selected-product-card {
        grid-template-columns: 1fr;
    }

    .selected-product-card .btn {
        width: 100%;
    }
}
.request-page {
    padding: 10px 0 40px;
}

.request-hero {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 34px;
    align-items: stretch;
    margin-bottom: 28px;
}

.request-hero h1 {
    margin: 8px 0 14px;
    font-size: clamp(2.5rem, 5vw, 4.6rem);
    line-height: .95;
    letter-spacing: -2px;
}

.request-hero p {
    max-width: 740px;
    color: var(--muted);
    line-height: 1.8;
}

.request-summary-card,
.request-form-card,
.side-card {
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(0,212,255,.12), transparent 35%),
        rgba(255,255,255,.065);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.request-summary-card {
    padding: 28px;
}

.request-summary-card h2 {
    margin: 0 0 10px;
}

.request-summary-card p {
    color: var(--muted);
    line-height: 1.6;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 0;
    border-top: 1px solid rgba(255,255,255,.12);
}

.summary-row span {
    color: var(--muted);
}

.summary-row strong {
    color: var(--brand2);
    text-align: right;
}

.notice {
    display: grid;
    gap: 4px;
    margin-bottom: 22px;
    padding: 18px 20px;
    border-radius: 22px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.08);
}

.success-notice {
    border-color: rgba(0,255,170,.35);
    background: rgba(0,255,170,.08);
}
.newsletter-message {
    width: 100%;
    margin-top: 10px;
    font-size: .9rem;
    font-weight: 700;
}

.newsletter-message.success {
    color: #8fffd2;
}

.newsletter-message.error {
    color: #ffb4b4;
}


.error-notice {
    border-color: rgba(255,100,100,.35);
    background: rgba(255,100,100,.08);
}

.request-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 24px;
    align-items: start;
}

.request-form-card {
    padding: 30px;
}

.form-section-title {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 14px;
    align-items: center;
    margin: 0 0 20px;
}

.form-section-title:not(:first-child) {
    margin-top: 32px;
}

.form-section-title > span {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--brand), var(--brand2));
    color: white;
    font-weight: 900;
}

.form-section-title h2 {
    margin: 0 0 4px;
}

.form-section-title p {
    margin: 0;
    color: var(--muted);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.request-form-card label {
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-weight: 800;
}

.choice-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.payment-choice-grid {
    margin-top: 14px;
}

.choice-card {
    position: relative;
    cursor: pointer;
}

.choice-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.choice-card span {
    display: block;
    min-height: 92px;
    padding: 18px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 20px;
    background: rgba(255,255,255,.055);
    transition: .25s ease;
}

.choice-card strong {
    display: block;
    color: white;
    margin-bottom: 8px;
}

.choice-card small {
    color: var(--muted);
}

.choice-card input:checked + span {
    border-color: rgba(0,212,255,.55);
    background:
        radial-gradient(circle at top right, rgba(0,212,255,.18), transparent 38%),
        rgba(0,212,255,.08);
    box-shadow: 0 16px 40px rgba(0,212,255,.13);
}

.request-submit {
    width: 100%;
    margin-top: 24px;
}

.request-side {
    
    gap: 16px;
    position: sticky;
    top: 105px;
    align-self: start;
}

.side-card {
    padding: 22px;
}

.side-card h3 {
    margin: 14px 0 8px;
}

.side-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}
.domain-input {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgba(255,255,255,.08);
    color: white;
}
.domain-input input {
    flex: 1;
    border: 0;
    background: transparent !important;
    color: white !important;
    outline: none;
    padding: 0;
    min-width: 0;
    box-shadow: none;
    -webkit-appearance: none;
    appearance: none;
}

.domain-input input:-webkit-autofill,
.domain-input input:-webkit-autofill:hover,
.domain-input input:-webkit-autofill:focus {
    -webkit-text-fill-color: white;
    -webkit-box-shadow: 0 0 0px 1000px transparent inset;
    transition: background-color 9999s ease-in-out 0s;
}

.domain-input span {
    color: rgba(255,255,255,.7);
    margin-right: 4px;
    white-space: nowrap;
}

.domain-input input {
    flex: 1;
    border: 0;
    background: transparent;
    color: white;
    outline: none;
    padding: 0;
    min-width: 0;
}

.domain-input input::placeholder {
    color: rgba(255,255,255,.45);
}

@media (max-width: 1050px) {
    .request-hero,
    .request-layout {
        grid-template-columns: 1fr;
    }

    .request-side {
        position: static;
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 760px) {

    .request-side {
        display: grid;
        gap: 16px;

        /* FIX */
        position: static;
        top: auto;
    }

    /* PAGE LAYOUT FIX */
    .market-layout {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    /* SIDEBAR WORDT ONDERAAN */
    .request-sidebar-wrapper {
        position: static;
        order: 2;
        width: 100%;
    }

    .request-summary-card {
        padding: 16px;
        border-radius: 18px;
        box-shadow: none;
    }

    /* SUMMARY ROWS BETER LEESBAAR */
    .summary-row {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .summary-row strong {
        font-size: 1rem;
        line-height: 1.2;
    }

    .summary-row span {
        font-size: .85rem;
        opacity: .85;
    }

    /* FORM CARD FIX */
    .card,
    .panel,
    .package-card {
        padding: 18px;
        border-radius: 18px;
    }

    /* TITELS KLEINER MAKEN */
    .hero h1,
    .page-head h1 {
        font-size: 2rem;
        letter-spacing: -1px;
    }

    /* BUTTON FULL WIDTH */
    .btn,
    button,
    input[type="submit"] {
        width: 100%;
        justify-content: center;
    }

    /* INPUTS RUIMER */
    input,
    select,
    textarea {
        font-size: 16px;
        padding: 12px 14px;
    }
}
.home-hero {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 44px;
    align-items: center;
    padding: 30px 0 80px;
}

.home-hero h1 {
    margin: 10px 0 20px;
    font-size: clamp(2.7rem, 6vw, 5.6rem);
    line-height: .92;
    letter-spacing: -2.5px;
}

.home-hero p {
    max-width: 760px;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 34px;
}

.hero-stats div {
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: rgba(255,255,255,.065);
}

.hero-stats strong {
    display: block;
    font-size: 1.7rem;
    color: white;
}

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

.home-hero-panel {
    position: relative;
}

.home-hero-panel::before {
    content: "";
    position: absolute;
    inset: -40px;
    background: radial-gradient(circle, rgba(0,212,255,.22), transparent 55%);
    filter: blur(10px);
}

.dashboard-mockup {
    position: relative;
    z-index: 1;
    padding: 24px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 34px;
    background:
        radial-gradient(circle at top right, rgba(0,212,255,.16), transparent 34%),
        linear-gradient(180deg, rgba(255,255,255,.11), rgba(255,255,255,.045));
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.mockup-top {
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
}

.mockup-top span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,.35);
}

.mockup-card,
.mockup-grid > div {
    padding: 18px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 22px;
    background: rgba(7,11,24,.38);
}

.mockup-card.active {
    border-color: rgba(0,212,255,.35);
    background: rgba(0,212,255,.09);
}

.mockup-card small,
.mockup-grid small {
    color: var(--muted);
}

.mockup-card strong,
.mockup-grid strong {
    display: block;
    margin-top: 6px;
    color: white;
}

.mockup-card p {
    margin: 8px 0 0;
    font-size: .9rem;
}

.mockup-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin: 14px 0;
}

.home-section {
    margin-top: 70px;
}

.section-head {
    margin-bottom: 24px;
}

.section-head h2 {
    margin: 10px 0;
    font-size: clamp(2rem, 4vw, 3.4rem);
    letter-spacing: -1.5px;
}

.section-head p {
    color: var(--muted);
}

.home-package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.home-package-card,
.step-card,
.cta-panel {
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(0,212,255,.12), transparent 36%),
        rgba(255,255,255,.065);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.home-package-card {
    padding: 26px;
}

.home-package-card h3 {
    margin: 18px 0 10px;
    font-size: 1.35rem;
}

.home-package-card p {
    color: var(--muted);
    line-height: 1.7;
}

.home-price-row {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: center;
    margin: 20px 0;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: rgba(7,11,24,.36);
}

.home-price-row small {
    display: block;
    color: var(--muted);
}

.home-price-row strong {
    color: white;
    font-size: 1.8rem;
}

.home-price-row span {
    color: var(--muted);
    font-weight: 700;
}

.mini-feature-list {
    display: grid;
    gap: 9px;
    margin-bottom: 22px;
    color: var(--muted);
}

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

.step-card {
    padding: 24px;
}

.step-card span {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--brand), var(--brand2));
    color: white;
    font-weight: 900;
}

.step-card h3 {
    margin: 18px 0 10px;
}

.step-card p {
    color: var(--muted);
    line-height: 1.6;
}

.cta-panel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 34px;
}

.cta-panel h2 {
    margin: 10px 0;
    font-size: clamp(1.8rem, 4vw, 3rem);
}

.cta-panel p {
    color: var(--muted);
}

@media (max-width: 1050px) {
    .home-hero,
    .home-package-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .home-hero {
        padding-top: 40px;
    }
}

@media (max-width: 720px) {
    .hero-stats,
    .mockup-grid {
        grid-template-columns: 1fr;
    }

    .cta-panel {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-panel .btn {
        width: 100%;
    }
}

.package-image {
    position: relative;
    height: 230px;
    overflow: hidden;
    border-radius: 24px;
    margin-bottom: 18px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.04);
}

.package-image {
    display: flex;
    align-items: center;
    justify-content: center;

    background: #0f172a; /* mooie achtergrond */
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;

    /* 🔥 volledige afbeelding zichtbaar */
    object-fit: contain;

    transition: transform .45s ease;
}

/* optionele hover */
.home-package-card:hover .package-image img {
    transform: scale(1.03);
}
.request-sidebar-wrapper {
    position: sticky;
    top: 105px;
}

.request-summary-card {
    padding: 28px;
}

.summary-top {
    display: flex;
    gap: 18px;
    align-items: center;
}

.summary-top h2 {
    margin: 6px 0 0;
    font-size: 1.45rem;
}

.summary-description {
    margin: 18px 0 0;
    color: var(--muted);
    line-height: 1.7;
}

.summary-section {
    margin-top: 24px;
}

.sidebar-divider {
    height: 1px;
    margin: 24px 0;
    background: rgba(255,255,255,.1);
}

.sidebar-info-block h3 {
    margin: 0;
}

.sidebar-info-block p {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: .92rem;
}

.sidebar-info-head {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 18px;
}

.sidebar-benefits {
    display: grid;
    gap: 16px;
}

.benefit-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.benefit-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.benefit-item strong {
    display: block;
    margin-bottom: 4px;
}

.benefit-item p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
    font-size: .92rem;
}

.sidebar-main-btn {
    width: 100%;
    margin-top: 26px;
}

@media (max-width: 1050px) {
    .request-sidebar-wrapper {
        position: static;
    }
}
.cta-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.cta-features span {
    padding: 12px 16px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.1);
    background: rgba(255,255,255,.05);
    color: white;
    font-size: .92rem;
    font-weight: 600;
}

.cta-actions {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 260px;
}

.cta-main-btn {
    min-height: 56px;
    font-size: 1rem;
}

@media (max-width: 980px) {
   

    .cta-actions {
        width: 100%;
    }

    .cta-actions .btn {
        width: 100%;
    }
}
.price-filter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 34px;
}

.pagination a {
    min-width: 44px;
    height: 44px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.07);
    color: white;
    font-weight: 800;
    transition: .25s ease;
}

.pagination a:hover,
.pagination a.active {
    background: linear-gradient(135deg, var(--brand), var(--brand2));
    border-color: transparent;
    transform: translateY(-2px);
}

@media (max-width: 520px) {
    .price-filter-grid {
        grid-template-columns: 1fr;
    }
}
.account-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
    z-index: 500;
}

.account-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 8px 14px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgba(255,255,255,.07);
    color: white;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
    transition: .25s ease;
}

.account-btn:hover {
    background: rgba(255,255,255,.12);
}

.account-avatar {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--brand), var(--brand2));
    color: white;
    font-size: .95rem;
    font-weight: 900;
}

.account-name {
    max-width: 130px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.account-arrow {
    color: var(--muted);
    font-size: .85rem;
}

.account-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    display: none;
    width: 280px;
    padding: 10px;
    border-radius: 22px;
    border: 1px solid var(--border);
    background: rgba(12,18,38,.98);
    box-shadow: 0 24px 80px rgba(0,0,0,.45);
    backdrop-filter: blur(18px);
}

.account-dropdown:hover .account-menu,
.account-dropdown:focus-within .account-menu {
    display: block;
}

.account-menu-user {
    padding: 14px;
    margin-bottom: 10px;
    border-radius: 16px;
    background: rgba(255,255,255,.06);
}

.account-menu-user strong,
.account-menu-user small {
    display: block;
}

.account-menu-user small {
    margin-top: 4px;
    color: var(--muted);
    font-size: .85rem;
}

.account-menu a {
    display: block;
    padding: 12px 14px;
    border-radius: 14px;
    color: white;
    font-weight: 600;
    transition: .2s ease;
}

.account-menu a:hover {
    background: rgba(255,255,255,.08);
}

.logout-link {
    color: #ffb4b4 !important;
}

@media (max-width: 850px) {

    .account-dropdown {
        width: 100%;
        display: block;
    }

    .account-btn {
        width: 100%;
        justify-content: center;
    }

    .account-menu {
        position: static;
        width: 100%;
        margin-top: 10px;
    }
}

.cookie-popup {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    display: none;
    justify-content: center;
}

.cookie-popup-content {
    width: 100%;
    max-width: 760px;
    background: #ffffff;
    color: #111827;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .18);
    border: 1px solid rgba(0, 0, 0, .08);
}

.cookie-popup-content strong {
    display: block;
    margin-bottom: 8px;
    font-size: 18px;
}

.cookie-popup-content p {
    margin: 0;
    line-height: 1.6;
}

.cookie-popup-content a {
    font-weight: 700;
    color: inherit;
    text-decoration: underline;
}

.cookie-popup-actions {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.cookie-popup-actions button {
    border: 0;
    border-radius: 999px;
    padding: 10px 18px;
    cursor: pointer;
    font-weight: 700;
}

#acceptCookies {
    background: #111827;
    color: #ffffff;
}

#declineCookies {
    background: #f3f4f6;
    color: #111827;
}
/* CONTACT PAGE */

.contact-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 24px;
    align-items: start;
    margin-top: 32px;
}

.contact-card,
.contact-form {
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(0,212,255,.12), transparent 35%),
        rgba(255,255,255,.065);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.contact-card {
    padding: 28px;
}

.contact-form {
    padding: 30px;
}

.contact-card h2,
.contact-form h2 {
    margin: 0 0 18px;
    color: white;
}

.contact-card p,
.contact-form p {
    color: var(--muted);
    line-height: 1.7;
}

.contact-card a {
    color: var(--brand2);
    font-weight: 800;
}

.contact-form label {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--muted);
    font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    background: rgba(7,11,24,.55);
}

.contact-form select option {
    color: #0f172a;
}

.contact-form textarea {
    min-height: 160px;
}

.contact-form .auth-button {
    width: 100%;
    margin-top: 8px;
}

.auth-success,
.auth-error {
    margin: 0 0 22px;
    padding: 18px 20px;
    border-radius: 22px;
    border: 1px solid var(--border);
    font-weight: 800;
}

.auth-success {
    border-color: rgba(0,255,170,.35);
    background: rgba(0,255,170,.08);
    color: #8fffd2;
}

.auth-error {
    border-color: rgba(255,100,100,.35);
    background: rgba(255,100,100,.08);
    color: #ffb4b4;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}