:root {
    --ink: #11233f;
    --ink-soft: #52627a;
    --navy: #0b1830;
    --blue: #1769ff;
    --blue-dark: #0c4ed7;
    --cyan: #56d8df;
    --soft: #f3f7fb;
    --line: #dce5ef;
    --white: #fff;
    --green: #0b9b70;
    --red: #ca3b50;
    --shadow: 0 18px 50px rgba(14, 34, 68, .11);
    --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font: 16px/1.6 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }
.container { width: min(1600px, calc(100% - 64px)); margin: 0 auto; }
.container-smal { width: min(1180px, calc(100% - 64px)); margin: 0 auto; }
.narrow { width: min(820px, calc(100% - 40px)); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); }

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, .94);
    border-bottom: 1px solid rgba(220, 229, 239, .8);
    backdrop-filter: blur(14px);
}
.nav-wrap { display: flex; align-items: center; min-height: 76px; gap: 34px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 21px; font-weight: 800; letter-spacing: -.04em; }
.brand > span:last-child > span { color: var(--blue); }
.brand-mark {
    display: inline-grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 11px;
    color: var(--white);
    background: linear-gradient(145deg, var(--blue), #4f8eff);
    box-shadow: 0 8px 20px rgba(23, 105, 255, .28);
    font-size: 18px;
}
.main-nav { display: flex; gap: 25px; margin-right: auto; font-weight: 650; font-size: 14px; color: #34445d; }
.main-nav a:hover { color: var(--blue); }
.nav-actions { display: flex; align-items: center; gap: 15px; }
.cart-link { font-size: 14px; font-weight: 650; }
.cart-link span { display: inline-grid; place-items: center; min-width: 22px; height: 22px; margin-left: 5px; border-radius: 20px; color: var(--white); background: var(--blue); font-size: 12px; }

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border: 0;
    border-radius: 11px;
    color: var(--white);
    background: var(--blue);
    box-shadow: 0 10px 24px rgba(23, 105, 255, .2);
    font-weight: 750;
    transition: .2s ease;
}
.button:hover { background: var(--blue-dark); transform: translateY(-1px); }
.button-small { min-height: 40px; padding: 0 17px; border-radius: 9px; font-size: 14px; }
.button-large { min-height: 56px; }
.button-block { width: 100%; }
.button-ghost { border: 1px solid var(--line); color: var(--ink); background: var(--white); box-shadow: none; }
.button-ghost:hover { color: var(--blue); border-color: #b8cef6; background: #f8fbff; }
.button-light { color: var(--navy); background: var(--white); }
.button-light:hover { color: var(--blue); background: #f1f6ff; }

.hero {
    overflow: hidden;
    min-height: 650px;
    padding: 105px 0 90px;
    background:
        radial-gradient(circle at 86% 8%, rgba(86, 216, 223, .2), transparent 31%),
        radial-gradient(circle at 4% 90%, rgba(23, 105, 255, .13), transparent 29%),
        linear-gradient(135deg, #f9fcff, #eef5ff);
}
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 76px; }
.eyebrow { display: inline-block; margin-bottom: 13px; color: var(--blue); font-size: 12px; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.hero h1, .page-hero h1, .dashboard-header h1, .success-panel h1 {
    max-width: 760px;
    margin: 0 0 24px;
    font-size: clamp(45px, 5vw, 72px);
    line-height: 1.04;
    letter-spacing: -.055em;
}
.hero-copy > p { max-width: 630px; margin: 0 0 32px; color: var(--ink-soft); font-size: 19px; }
.domain-search { display: flex; max-width: 650px; padding: 7px; border: 1px solid #d4e1f0; border-radius: 15px; background: var(--white); box-shadow: var(--shadow); }
.domain-search input { min-width: 0; flex: 1; padding: 0 18px; border: 0; outline: 0; color: var(--ink); background: transparent; font-size: 17px; }
.domain-search input::placeholder { color: #92a1b5; }
.trust-row { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 24px; color: #687890; font-size: 13px; font-weight: 650; }
.trust-row span::before { content: "✓"; margin-right: 6px; color: var(--green); }

.hero-panel { position: relative; }
.hero-panel::before {
    content: "";
    position: absolute;
    inset: 35px -35px -35px 35px;
    border-radius: 28px;
    background: linear-gradient(145deg, var(--blue), var(--cyan));
    opacity: .16;
    transform: rotate(5deg);
}
.dashboard-preview { position: relative; padding: 24px; border: 1px solid rgba(255,255,255,.8); border-radius: 24px; background: rgba(255,255,255,.94); box-shadow: 0 36px 75px rgba(17, 46, 91, .18); }
.preview-top { display: flex; justify-content: space-between; margin-bottom: 22px; color: #6c7a8e; font-size: 12px; font-weight: 700; }
.status-dot { display: inline-block; width: 8px; height: 8px; margin-right: 6px; border-radius: 50%; background: #17b27e; box-shadow: 0 0 0 4px rgba(23,178,126,.12); }
.preview-card { display: grid; grid-template-columns: 48px 1fr auto; align-items: center; gap: 14px; margin: 12px 0; padding: 17px; border: 1px solid #e3eaf2; border-radius: 15px; }
.preview-card div { display: flex; flex-direction: column; }
.preview-card small { color: #7d8999; }
.preview-card b { color: var(--green); font-size: 12px; }
.preview-icon { display: grid; width: 46px; height: 46px; place-items: center; border-radius: 12px; color: var(--blue); background: #eaf2ff; font-weight: 850; }
.preview-icon.cloud { color: #087783; background: #e5fbfc; }
.preview-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 20px; }
.preview-metrics div { display: flex; flex-direction: column; padding: 14px; border-radius: 12px; background: var(--soft); }
.preview-metrics small { color: #79879b; }
.preview-metrics strong { margin-top: 3px; font-size: 16px; }

.section { padding: 95px 0; }
.section-tight { padding-top: 55px; }
.section-soft { background: var(--soft); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 42px; }
.section-heading h2, .split-banner h2 { margin: 0; font-size: clamp(32px, 4vw, 48px); line-height: 1.1; letter-spacing: -.045em; }
.section-heading > p { max-width: 440px; margin: 0; color: var(--ink-soft); }

.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature-card { min-height: 300px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); transition: .25s ease; }
.feature-card:hover { border-color: #b8cff5; box-shadow: var(--shadow); transform: translateY(-5px); }
.feature-card-dark { color: var(--white); border-color: var(--navy); background: var(--navy); }
.feature-card h3 { margin: 42px 0 10px; font-size: 25px; letter-spacing: -.03em; }
.feature-card p { min-height: 78px; color: var(--ink-soft); }
.feature-card-dark p { color: #aebbd0; }
.feature-card strong { color: var(--blue); font-size: 14px; }
.feature-card-dark strong { color: var(--cyan); }
.feature-number { color: #9ba9bc; font-size: 12px; font-weight: 800; }

.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.product-grid-three { grid-template-columns: repeat(3, 1fr); }
.product-card { position: relative; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.product-card.featured { border: 2px solid var(--blue); box-shadow: 0 20px 55px rgba(23,105,255,.12); }
.product-card > small { color: var(--blue); font-weight: 750; text-transform: uppercase; }
.product-card h3, .product-card h2 { margin: 10px 0; font-size: 24px; letter-spacing: -.035em; }
.product-card p { min-height: 80px; color: var(--ink-soft); }
.product-card-detailed p { min-height: 55px; }
.price { margin: 22px 0; font-size: 27px; font-weight: 850; letter-spacing: -.035em; }
.price span { color: #7b889a; font-size: 12px; font-weight: 500; letter-spacing: 0; }
.pill { display: inline-block; position: absolute; top: 18px; right: 18px; padding: 5px 9px; border-radius: 30px; color: var(--white); background: var(--blue); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.pill-neutral { position: static; color: #536176; background: var(--soft); }
.spec-list { min-height: 155px; margin: 25px 0; padding: 0; list-style: none; }
.spec-list li { margin: 9px 0; color: #536176; }
.spec-list li::before { content: "✓"; margin-right: 9px; color: var(--green); font-weight: 800; }

.split-banner { display: flex; align-items: center; justify-content: space-between; gap: 45px; padding: 58px; border-radius: 25px; color: var(--white); background: linear-gradient(130deg, var(--navy), #163d77); }
.split-banner p { max-width: 700px; margin-bottom: 0; color: #b9c9de; }
.split-banner .eyebrow { color: var(--cyan); }

.page-hero { padding: 92px 0 75px; color: var(--white); background: linear-gradient(135deg, var(--navy), #153b72); }
.page-hero h1 { max-width: 860px; margin-bottom: 18px; font-size: clamp(40px, 5vw, 62px); }
.page-hero p { max-width: 720px; margin: 0; color: #b8c7da; font-size: 18px; }
.page-hero .eyebrow { color: var(--cyan); }
.page-hero-centered { text-align: center; }
.page-hero-centered p { margin: 0 auto; }
.page-hero-small { padding: 60px 0 45px; }
.page-hero-small h1 { font-size: 44px; }
.domain-search-large { margin: 34px auto 0; text-align: left; }
.inline-error { margin: 16px auto 0; padding: 12px; border-radius: 10px; color: #ffd7dc; background: rgba(202,59,80,.23); }

.results-list { display: grid; gap: 12px; }
.domain-result { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 22px; border: 1px solid var(--line); border-radius: 14px; background: var(--white); }
.domain-result > div:first-child { display: grid; grid-template-columns: 14px 1fr; align-items: center; column-gap: 10px; }
.domain-result > div:first-child small { grid-column: 2; color: var(--green); }
.availability-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(11,155,112,.12); }
.domain-result.unavailable { opacity: .6; }
.domain-result.unavailable .availability-dot { background: var(--red); box-shadow: 0 0 0 5px rgba(202,59,80,.1); }
.domain-result.unavailable small { color: var(--red) !important; }
.domain-price { display: flex; align-items: center; gap: 20px; font-weight: 750; }
.muted { color: #8592a3; font-size: 13px; }

.three-column-info { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.three-column-info > div { padding: 25px; border-left: 3px solid var(--blue); background: var(--white); }
.three-column-info strong { font-size: 18px; }
.three-column-info p { margin-bottom: 0; color: var(--ink-soft); }

.listing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.listing-card { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 12px 38px rgba(17,35,63,.06); }
.listing-card h2 { margin: 25px 0 5px; font-size: 26px; letter-spacing: -.04em; }
.listing-card p { color: var(--ink-soft); }
.listing-bottom { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-top: 30px; }
.listing-bottom > strong { font-size: 22px; }
.auction-card { position: relative; }
.live-label { position: absolute; right: 22px; top: 22px; color: var(--red); font-size: 12px; font-weight: 850; text-transform: uppercase; }
.live-label::before { content: ""; display: inline-block; width: 8px; height: 8px; margin-right: 6px; border-radius: 50%; background: var(--red); }
.auction-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 25px 0; }
.auction-stats div { display: flex; flex-direction: column; padding: 12px; border-radius: 10px; background: var(--soft); }
.auction-stats small { color: #7a879a; }

.checkout-grid { display: grid; grid-template-columns: 1fr 360px; align-items: start; gap: 35px; }
.cart-list { display: grid; gap: 13px; }
.cart-item { display: grid; grid-template-columns: 55px 1fr auto 30px; align-items: center; gap: 16px; padding: 19px; border: 1px solid var(--line); border-radius: 14px; }
.cart-icon { display: grid; width: 50px; height: 50px; place-items: center; border-radius: 12px; color: var(--blue); background: #eaf2ff; font-weight: 850; }
.cart-content { display: flex; flex-direction: column; }
.cart-content small { color: var(--blue); font-weight: 750; text-transform: uppercase; }
.cart-content h3 { margin: 0; }
.cart-content span { color: var(--ink-soft); font-size: 13px; }
.cart-item > strong { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; }
.cart-korting { color: var(--ink-soft); font-size: 12px; font-weight: 600; text-decoration: line-through; }
.remove-button { border: 0; color: #8c99aa; background: transparent; font-size: 24px; }
.remove-button:hover { color: var(--red); }
.order-summary { position: sticky; top: 100px; padding: 27px; border-radius: var(--radius); background: var(--soft); }
.order-summary h2 { margin-top: 0; }
.order-summary > div { display: flex; justify-content: space-between; gap: 15px; margin: 13px 0; font-size: 14px; }
.order-summary .summary-total { margin: 20px 0; padding-top: 18px; border-top: 1px solid #ccd8e5; font-size: 19px; }
.order-summary > small { display: block; margin-top: 12px; color: #778598; text-align: center; }
.empty-state { padding: 60px; border: 1px dashed #c9d7e6; border-radius: var(--radius); text-align: center; }
.empty-state span { color: var(--blue); font-weight: 750; }
.empty-state h2 { max-width: 500px; margin: 8px auto 25px; font-size: 30px; }

.checkout-form { display: grid; gap: 18px; }
.form-section { position: relative; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); }
.form-section > div:first-of-type { margin-left: 48px; }
.form-section h2 { margin: 0; }
.form-section p { margin: 4px 0 25px; color: var(--ink-soft); }
.step-label { position: absolute; display: grid; width: 35px; height: 35px; place-items: center; border-radius: 50%; color: var(--white); background: var(--blue); font-weight: 800; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-left: 0 !important; }
label { display: flex; flex-direction: column; gap: 7px; color: #3c4c63; font-size: 13px; font-weight: 750; }
input[type="text"], input[type="email"], input[type="password"], input[type="number"],
input[type="search"], input[type="tel"], input[type="url"], input[type="date"], input[type="time"],
input[type="file"], select, textarea {
    width: 100%;
    min-height: 40px;
    padding: 0 2px;
    border: 0;
    border-bottom: 1px solid #cfdbe8;
    border-radius: 0;
    outline: 0;
    color: var(--ink);
    background: transparent;
    transition: border-color .2s ease;
}
select { appearance: none; background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%237b899c' stroke-width='1.6' d='M1 1l5 5 5-5'/%3E%3C/svg%3E") no-repeat right 2px center; padding-right: 20px; }
textarea { min-height: 76px; padding: 8px 2px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-bottom-color: var(--blue); box-shadow: none; }
input[type="checkbox"], input[type="radio"] { width: auto; min-height: 0; padding: 0; border: initial; border-radius: initial; }
.domain-search input[type="text"] { min-height: 48px; padding: 0 18px; border: 0; font-size: 17px; }
.optional { color: #8793a3; font-weight: 500; }
.payment-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-left: 0 !important; }
.payment-options label { flex-direction: row; align-items: center; padding: 15px; border: 1px solid var(--line); border-radius: 11px; }
.payment-options label:has(input:checked) { border-color: var(--blue); background: #f4f8ff; }
.payment-options span { display: flex; flex-direction: column; }
.payment-options small { color: #7b889a; font-weight: 500; }

.success-panel { padding: 60px; border: 1px solid var(--line); border-radius: 24px; text-align: center; box-shadow: var(--shadow); }
.success-panel h1 { font-size: 44px; }
.success-panel p { color: var(--ink-soft); }
.success-mark { display: grid; width: 64px; height: 64px; margin: 0 auto 25px; place-items: center; border-radius: 50%; color: var(--white); background: var(--green); font-size: 30px; }
.success-total { display: flex; justify-content: space-between; margin: 28px 0; padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); font-size: 20px; }


.dashboard-header { padding: 75px 0 60px; color: var(--white); background: linear-gradient(135deg, var(--navy), #153b72); }
.dashboard-header h1 { margin-bottom: 12px; font-size: 52px; }
.dashboard-header p { margin: 0; color: #b9c8db; }
.dashboard-header .eyebrow { color: var(--cyan); }
.admin-header { background: var(--navy); }
.metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 25px; }
.metric-grid article { display: flex; flex-direction: column; padding: 24px; border: 1px solid var(--line); border-radius: 15px; background: var(--white); }
.metric-grid small { color: #7b899c; font-weight: 700; }
.metric-grid strong { margin: 5px 0; font-size: 30px; letter-spacing: -.04em; }
.metric-grid span { color: var(--ink-soft); font-size: 12px; }
.dashboard-columns { display: grid; grid-template-columns: 1.5fr .7fr; gap: 20px; }
.panel { overflow: hidden; padding: 25px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); }
.panel-header { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.panel-header h2 { margin: 0 0 20px; }
.panel-header a { color: var(--blue); font-size: 13px; font-weight: 750; }
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 14px 12px; border-bottom: 1px solid #e6edf5; text-align: left; font-size: 13px; white-space: nowrap; }
th { color: #7e8b9c; font-size: 11px; text-transform: uppercase; }
.status-badge { padding: 5px 9px; border-radius: 30px; color: #087356; background: #e2f8f0; font-size: 11px; font-weight: 800; text-transform: uppercase; }
.empty-row { padding: 30px 0; color: #8592a4; text-align: center; }
.transaction-row { display: flex; justify-content: space-between; gap: 15px; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 13px; }

.flash-stack { position: fixed; z-index: 40; top: 90px; right: 20px; width: min(390px, calc(100% - 40px)); }
.flash { margin-bottom: 8px; padding: 14px 17px; border-radius: 10px; box-shadow: var(--shadow); font-size: 14px; font-weight: 700; }
.flash-success { color: #087356; background: #e8fbf4; border: 1px solid #b9ebda; }
.flash-error { color: #a0263a; background: #fff0f2; border: 1px solid #f2c6cd; }

.site-footer { padding: 65px 0 25px; color: #b7c3d4; background: var(--navy); }
.footer-grid { display: grid; grid-template-columns: 1.7fr repeat(3, 1fr); gap: 50px; }
.brand-footer { color: var(--white); }
.footer-grid > div { display: flex; flex-direction: column; gap: 8px; }
.footer-grid p { max-width: 300px; color: #8495ad; }
.footer-grid strong { margin-bottom: 7px; color: var(--white); }
.footer-grid a:hover, .link-button:hover { color: var(--cyan); }
.link-button { padding: 0; border: 0; color: #b7c3d4; background: transparent; }
.footer-bottom { margin-top: 45px; padding-top: 22px; border-top: 1px solid #273850; color: #718198; font-size: 12px; }

@media (max-width: 1020px) {
    .main-nav { display: none; }
    .nav-actions { margin-left: auto; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-panel { width: min(600px, 100%); margin: 0 auto; }
    .feature-grid, .product-grid { grid-template-columns: repeat(2, 1fr); }
    .listing-grid { grid-template-columns: repeat(2, 1fr); }
    .metric-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
    .container, .container-smal, .narrow { width: calc(100% - 26px); }
    .site-header { position: static; }
    .nav-wrap { min-height: 66px; }
    .cart-link { font-size: 0; }
    .cart-link span { font-size: 12px; }
    .button-ghost { padding: 0 12px; }
    .hero { padding: 65px 0; }
    .hero h1 { font-size: 45px; }
    .hero-grid { gap: 50px; }
    .domain-search { flex-direction: column; gap: 8px; }
    .domain-search input { min-height: 48px; }
    .preview-metrics { grid-template-columns: 1fr; }
    .section { padding: 65px 0; }
    .section-heading { display: block; }
    .section-heading > p { margin-top: 15px; }
    .feature-grid, .product-grid, .product-grid-three, .listing-grid, .three-column-info, .metric-grid { grid-template-columns: 1fr; }
    .feature-card { min-height: 250px; }
    .split-banner { display: block; padding: 35px; }
    .split-banner .button { margin-top: 25px; }
    .domain-result, .domain-price { align-items: flex-start; flex-direction: column; }
    .checkout-grid, .dashboard-columns { grid-template-columns: 1fr; }
    .order-summary { position: static; }
    .cart-item { grid-template-columns: 45px 1fr auto; }
    .cart-item > strong { grid-column: 2; }
    .cart-item form { grid-column: 3; grid-row: 1; }
    .form-grid, .payment-options { grid-template-columns: 1fr; }
    .auction-stats { grid-template-columns: 1fr; }
    .success-panel { padding: 35px 22px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 460px) {
    .brand { font-size: 18px; }
    .brand-mark { width: 32px; height: 32px; }
    .nav-actions .button { display: none; }
    .hero h1 { font-size: 39px; }
    .preview-card { grid-template-columns: 42px 1fr; }
    .preview-card b { grid-column: 2; }
    .page-hero h1, .dashboard-header h1 { font-size: 38px; }
    .footer-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Verfijnd ontwerp: bredere layout (1600px), zachte gradients, glaseffect en
   animaties die met CSS en een beetje vanilla JS worden aangestuurd.
   ========================================================================== */

:root {
    --violet: #6b4bff;
    --violet-soft: #efeaff;
    --amber: #ffb020;
    --glas: rgba(255, 255, 255, .72);
    --shadow-zacht: 0 12px 34px rgba(15, 36, 71, .07);
    --shadow-diep: 0 34px 80px rgba(13, 32, 64, .16);
}

.icoon { width: 20px; height: 20px; flex: none; }
.icoon-groot { width: 26px; height: 26px; }
.icoon-plaat {
    display: inline-grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 15px;
    color: var(--blue);
    background: linear-gradient(150deg, #eaf2ff, #f6f9ff);
    box-shadow: inset 0 0 0 1px rgba(23, 105, 255, .12);
    transition: .3s cubic-bezier(.2, .8, .3, 1);
}
.icoon-plaat-cyan { color: #0b8f9c; background: linear-gradient(150deg, #e3fbfd, #f4feff); box-shadow: inset 0 0 0 1px rgba(11, 143, 156, .14); }
.icoon-plaat-violet { color: var(--violet); background: linear-gradient(150deg, var(--violet-soft), #f8f6ff); box-shadow: inset 0 0 0 1px rgba(107, 75, 255, .14); }
.icoon-plaat-amber { color: #b3700b; background: linear-gradient(150deg, #fff2d8, #fffaf0); box-shadow: inset 0 0 0 1px rgba(179, 112, 11, .14); }

/* Animaties: onopvallend, en uit bij verminderde beweging. */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2, .8, .3, 1); }
.reveal.zichtbaar { opacity: 1; transform: none; }
.reveal-vertraag-1 { transition-delay: .08s; }
.reveal-vertraag-2 { transition-delay: .16s; }
.reveal-vertraag-3 { transition-delay: .24s; }
.reveal-vertraag-4 { transition-delay: .32s; }

@keyframes zweef { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes pols { 0% { box-shadow: 0 0 0 0 rgba(23, 105, 255, .35); } 70% { box-shadow: 0 0 0 16px rgba(23, 105, 255, 0); } 100% { box-shadow: 0 0 0 0 rgba(23, 105, 255, 0); } }
@keyframes schuif { from { transform: translateX(0); } to { transform: translateX(-50%); } }

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .ticker-spoor, .zweeft { animation: none !important; }
    html { scroll-behavior: auto; }
}

/* Header: krimpt bij scrollen en heeft een mobiel menu. */
.site-header { transition: box-shadow .3s ease, background .3s ease; }
.site-header.compact { background: rgba(255, 255, 255, .88); box-shadow: 0 10px 30px rgba(14, 34, 68, .08); }
.site-header.compact .nav-wrap { min-height: 64px; }
.nav-wrap { transition: min-height .3s ease; }
.main-nav a { position: relative; padding: 6px 0; transition: color .2s ease; }
.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--blue), var(--violet));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .28s cubic-bezier(.2, .8, .3, 1);
}
.main-nav a:hover::after, .main-nav a.actief::after { transform: scaleX(1); }
.menu-knop { display: none; align-items: center; justify-content: center; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); color: var(--ink); }
.mobiel-menu { display: none; }
.mobiel-menu.open { display: grid; gap: 4px; padding: 14px 0 20px; border-top: 1px solid var(--line); animation: menuIn .28s ease; }
.mobiel-menu a { display: flex; align-items: center; gap: 10px; padding: 12px 6px; border-radius: 11px; font-weight: 700; }
.mobiel-menu a:hover { background: var(--soft); }
@keyframes menuIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

/* Knoppen met glans en gloed. */
.button { position: relative; overflow: hidden; border-radius: 13px; background: linear-gradient(120deg, var(--blue), #4b6dff); }
.button::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, .35) 50%, transparent 80%);
    transform: translateX(-120%);
    transition: transform .6s ease;
}
.button:hover::after { transform: translateX(120%); }
.button:hover { box-shadow: 0 16px 34px rgba(23, 105, 255, .3); transform: translateY(-2px); }
.button:disabled { opacity: .5; cursor: not-allowed; transform: none; box-shadow: none; }
.button-ghost { background: var(--white); }
.button-ghost:hover { box-shadow: var(--shadow-zacht); }
.button-light { background: var(--white); }

/* Hero: mesh-achtergrond met zwevende accenten. */
.hero { position: relative; padding: 120px 0 100px; }
.hero::before, .hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
    pointer-events: none;
}
.hero::before { top: -90px; right: 6%; width: 320px; height: 320px; background: radial-gradient(circle, rgba(107, 75, 255, .22), transparent 68%); animation: zweef 11s ease-in-out infinite; }
.hero::after { bottom: -70px; left: -60px; width: 380px; height: 380px; background: radial-gradient(circle, rgba(86, 216, 223, .28), transparent 68%); animation: zweef 14s ease-in-out infinite reverse; }
.hero-grid { position: relative; z-index: 1; grid-template-columns: 1.05fr .95fr; gap: 70px; }
.hero h1 span, .gradient-tekst {
    background: linear-gradient(100deg, var(--blue), var(--violet) 55%, #0b8f9c);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.eyebrow-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 20px;
    padding: 7px 15px 7px 9px;
    border: 1px solid rgba(23, 105, 255, .18);
    border-radius: 40px;
    background: rgba(255, 255, 255, .8);
    box-shadow: var(--shadow-zacht);
    color: #2c3f5c;
    font-size: 13px;
    font-weight: 700;
}
.eyebrow-badge b { color: var(--blue); }
.eyebrow-badge .stip { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: pols 2.6s infinite; }
.domain-search { max-width: 700px; border-radius: 17px; box-shadow: var(--shadow-diep); transition: box-shadow .3s ease, transform .3s ease; }
.domain-search:focus-within { transform: translateY(-2px); box-shadow: 0 40px 80px rgba(13, 32, 64, .18); }
.domain-search .icoon { margin-left: 14px; color: #93a3b8; align-self: center; }
.tld-suggesties { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.tld-chip {
    padding: 7px 13px;
    border: 1px solid var(--line);
    border-radius: 30px;
    background: rgba(255, 255, 255, .75);
    color: #45566e;
    font-size: 13px;
    font-weight: 700;
    transition: .22s ease;
}
.tld-chip:hover { color: var(--blue); border-color: #b8cef6; background: var(--white); transform: translateY(-2px); }
.trust-row span::before { content: none; }
.trust-row span { display: inline-flex; align-items: center; gap: 7px; }
.trust-row .icoon { width: 17px; height: 17px; color: var(--green); }

.dashboard-preview { border-radius: 26px; background: var(--glas); backdrop-filter: blur(16px); box-shadow: var(--shadow-diep); }
.zweeft { animation: zweef 9s ease-in-out infinite; }
.preview-card { background: rgba(255, 255, 255, .8); transition: .3s cubic-bezier(.2, .8, .3, 1); }
.preview-card:hover { border-color: #b9cff6; transform: translateX(4px); }

/* Ticker met tld-tarieven. */
.ticker { overflow: hidden; padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.ticker-spoor { display: flex; width: max-content; gap: 46px; animation: schuif 34s linear infinite; }
.ticker:hover .ticker-spoor { animation-play-state: paused; }
.ticker-item { display: inline-flex; align-items: center; gap: 10px; color: #46586f; font-size: 15px; font-weight: 700; white-space: nowrap; }
.ticker-item b { color: var(--blue); }
.ticker-item .icoon { width: 16px; height: 16px; color: var(--cyan); }

/* Secties, kaarten en rasters. */
.section { padding: 100px 0; }
.section-mesh {
    background:
        radial-gradient(circle at 12% 20%, rgba(107, 75, 255, .09), transparent 32%),
        radial-gradient(circle at 88% 78%, rgba(86, 216, 223, .12), transparent 34%),
        var(--soft);
}
.section-donker { color: var(--white); background: radial-gradient(circle at 78% 12%, rgba(107, 75, 255, .32), transparent 42%), linear-gradient(140deg, var(--navy), #123362); }
.section-donker .section-heading h2 { color: var(--white); }
.section-donker .section-heading > p, .section-donker p { color: #aebdd4; }
.section-heading { align-items: center; margin-bottom: 48px; }
.section-heading > p { max-width: 520px; font-size: 17px; }
.section-kop-midden { flex-direction: column; text-align: center; }
.section-kop-midden > p { margin: 0 auto; }

.feature-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature-card { position: relative; overflow: hidden; min-height: 320px; border-radius: 22px; background: var(--white); box-shadow: var(--shadow-zacht); }
.feature-card::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 24px;
    right: 24px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--blue), var(--violet));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s cubic-bezier(.2, .8, .3, 1);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-diep); }
.feature-card:hover .icoon-plaat { transform: rotate(-6deg) scale(1.06); }
.feature-card h3 { margin: 22px 0 10px; }
.feature-card a { display: inline-flex; align-items: center; gap: 7px; color: var(--blue); font-weight: 800; font-size: 14px; }
.feature-card a .icoon { width: 17px; height: 17px; transition: transform .25s ease; }
.feature-card a:hover .icoon { transform: translateX(4px); }
.feature-card-dark { background: linear-gradient(150deg, var(--navy), #17325c); }
.feature-card-dark .icoon-plaat { color: var(--cyan); background: rgba(86, 216, 223, .12); box-shadow: inset 0 0 0 1px rgba(86, 216, 223, .25); }
.feature-card-dark a { color: var(--cyan); }
.feature-number { display: block; margin-bottom: 4px; }

.product-card { overflow: hidden; border-radius: 22px; box-shadow: var(--shadow-zacht); transition: .3s cubic-bezier(.2, .8, .3, 1); }
.product-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-diep); }
.product-card.featured { box-shadow: 0 26px 60px rgba(23, 105, 255, .16); }
.listing-card { border-radius: 22px; background: var(--white); transition: .3s cubic-bezier(.2, .8, .3, 1); }
.listing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-diep); }
.domain-result { border-radius: 16px; transition: .25s ease; }
.domain-result:hover { border-color: #b8cef6; box-shadow: var(--shadow-zacht); transform: translateX(4px); }

/* Cijferband met optellende tellers. */
.cijferband { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.cijferband article { padding: 30px; border-radius: 20px; background: rgba(255, 255, 255, .06); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .1); }
.cijferband strong { display: block; font-size: clamp(34px, 3.4vw, 48px); font-weight: 850; letter-spacing: -.05em; }
.cijferband span { color: #a9bad2; font-size: 14px; font-weight: 650; }
.cijferband .icoon-plaat { margin-bottom: 18px; color: var(--cyan); background: rgba(86, 216, 223, .1); box-shadow: inset 0 0 0 1px rgba(86, 216, 223, .22); }

/* Stappen met verbindende lijn. */
.stappen { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stap { position: relative; padding: 28px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); }
.stap:not(:last-child)::after { content: ""; position: absolute; top: 52px; right: -24px; width: 24px; height: 2px; background: linear-gradient(90deg, var(--blue), transparent); }
.stap-nummer { display: grid; width: 40px; height: 40px; margin-bottom: 16px; place-items: center; border-radius: 12px; color: var(--white); background: linear-gradient(140deg, var(--blue), var(--violet)); font-weight: 850; }
.stap h3 { margin: 0 0 8px; font-size: 20px; letter-spacing: -.03em; }
.stap p { margin: 0; color: var(--ink-soft); font-size: 15px; }

/* Tabbladen zonder framework. */
.tabs { display: inline-flex; gap: 6px; padding: 6px; border: 1px solid var(--line); border-radius: 14px; background: var(--white); box-shadow: var(--shadow-zacht); }
.tab-knop { min-height: 40px; padding: 0 18px; border: 0; border-radius: 10px; background: transparent; color: #4b5c74; font-size: 14px; font-weight: 750; transition: .22s ease; }
.tab-knop:hover { color: var(--blue); }
.tab-knop.actief { color: var(--white); background: linear-gradient(120deg, var(--blue), #4b6dff); box-shadow: 0 10px 22px rgba(23, 105, 255, .22); }
.tab-paneel { display: none; }
.tab-paneel.actief { display: block; animation: paneelIn .35s ease; }
@keyframes paneelIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

/* Accordeon voor veelgestelde vragen. */
.accordeon { display: grid; gap: 12px; }
.accordeon-item { overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: var(--white); transition: box-shadow .25s ease; }
.accordeon-item.open { box-shadow: var(--shadow-zacht); }
.accordeon-kop { display: flex; align-items: center; justify-content: space-between; gap: 16px; width: 100%; padding: 20px 24px; border: 0; background: transparent; color: var(--ink); font-size: 17px; font-weight: 750; text-align: left; }
.accordeon-kop .icoon { color: var(--blue); transition: transform .3s ease; }
.accordeon-item.open .accordeon-kop .icoon { transform: rotate(45deg); }
.accordeon-inhoud { max-height: 0; padding: 0 24px; color: var(--ink-soft); transition: max-height .35s ease, padding .35s ease; }
.accordeon-item.open .accordeon-inhoud { max-height: 320px; padding: 0 24px 22px; }

/* Grote call-to-action. */
.split-banner { position: relative; overflow: hidden; border-radius: 30px; padding: 66px; background: radial-gradient(circle at 82% 18%, rgba(107, 75, 255, .38), transparent 45%), linear-gradient(130deg, var(--navy), #17427e); }
.split-banner::after { content: ""; position: absolute; right: -80px; bottom: -120px; width: 340px; height: 340px; border-radius: 50%; background: radial-gradient(circle, rgba(86, 216, 223, .22), transparent 65%); }
.split-banner > * { position: relative; z-index: 1; }

/* Meldingen schuiven binnen en zijn te sluiten. */
.flash-stack { top: 96px; }
.flash { display: flex; align-items: center; gap: 10px; animation: toastIn .4s cubic-bezier(.2, .8, .3, 1); }
.flash.verdwijnt { opacity: 0; transform: translateX(24px); transition: opacity .35s ease, transform .35s ease; }
@keyframes toastIn { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: none; } }

.site-footer { padding: 80px 0 28px; background: radial-gradient(circle at 88% 0, rgba(107, 75, 255, .22), transparent 38%), var(--navy); }
.footer-grid a { transition: color .2s ease, transform .2s ease; }
.footer-grid a:hover { transform: translateX(3px); }

/* Naar-boven knop. */
.omhoog {
    display: grid;
    position: fixed;
    z-index: 30;
    right: 24px;
    bottom: 24px;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--white);
    color: var(--blue);
    box-shadow: var(--shadow-zacht);
    opacity: 0;
    transform: translateY(14px);
    pointer-events: none;
    transition: .3s ease;
}
.omhoog .icoon { transform: rotate(-90deg); }
.omhoog.zichtbaar { opacity: 1; transform: none; pointer-events: auto; }

@media (max-width: 1400px) {
    .feature-grid, .product-grid { grid-template-columns: repeat(2, 1fr); }
    .cijferband, .stappen { grid-template-columns: repeat(2, 1fr); }
    .stap:not(:last-child)::after { display: none; }
}

@media (max-width: 1020px) {
    .menu-knop { display: inline-flex; }
    .hero { padding: 80px 0 70px; }
    .split-banner { flex-direction: column; align-items: flex-start; padding: 40px; }
}

@media (max-width: 760px) {
    .section { padding: 64px 0; }
    .cijferband, .stappen, .listing-grid { grid-template-columns: 1fr; }
    .split-banner { padding: 30px; border-radius: 22px; }
    .flash-stack { top: 76px; right: 13px; }
}

.tld-chip strong { margin-left: 6px; color: var(--blue); }

/* Paginakoppen van de subpagina's krijgen dezelfde mesh-uitstraling. */
.page-hero {
    position: relative;
    overflow: hidden;
    padding: 104px 0 86px;
    background: radial-gradient(circle at 80% 12%, rgba(107, 75, 255, .34), transparent 44%), linear-gradient(135deg, var(--navy), #143b74);
}
.page-hero::after {
    content: "";
    position: absolute;
    left: -80px;
    bottom: -140px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(86, 216, 223, .2), transparent 66%);
}
.page-hero > * { position: relative; z-index: 1; }
.page-hero h1 span { -webkit-text-fill-color: transparent; background: linear-gradient(100deg, var(--cyan), #9d8bff); -webkit-background-clip: text; background-clip: text; }
.dashboard-header { position: relative; overflow: hidden; background: radial-gradient(circle at 88% 0, rgba(107, 75, 255, .3), transparent 42%), linear-gradient(135deg, var(--navy), #143b74); }

/* Echte vlaggen (svg) en de keuzelijsten met vlag ervoor. */
.vlag { display: inline-block; width: 22px; height: 16px; object-fit: cover; border-radius: 2px; box-shadow: 0 0 0 1px rgba(15, 30, 60, 0.12); }
.land-vlag { display: inline-flex; line-height: 1; }
.vlagkeuze { display: flex; align-items: center; gap: 8px; padding-left: 10px; border: 1px solid rgba(15, 30, 60, 0.14); border-radius: 8px; background: #fff; }
.vlagkeuze select { flex: 1; min-width: 0; border: 0; background: transparent; }
.vlagkeuze select:focus { outline: none; }
.telefoonveld { display: grid; gap: 8px; grid-template-columns: minmax(120px, 160px) minmax(0, 1fr); align-items: center; }
