/* Geist – Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Geist:wght@300..900&display=swap');

:root {
    --font: "Geist", system-ui, sans-serif;
    --mono: "JetBrains Mono", monospace;

    /*--blue: #2563ff;
    --blue-hover: #1d4fd8;
    --blue-light: #eff4ff;
    --blue-mid: #c7d8ff;
    --dark: #0a0f1e;
    --text: #1e2535;
    --muted: #7b8499;
    --border: #e4e8f0;
    --bg: #ffffff;
    --bg-soft: #f6f8fc;
    --green: #16c073;
    --green-light: #e8faf3;

    --red: #ef4444;
    --red-light: #fef2f2;*/

    --blue: #2563ff;
    --blue-hover: #1d4fd8;
    --blue-light: #eff4ff;
    --blue-mid: #c7d8ff;
    --dark: #0a0f1e;

    --text: #111827;
    --muted: #4b5563;

    --border: #e4e8f0;
    --bg: #ffffff;
    --bg-soft: #f6f8fc;
    --green: #16c073;
    --green-light: #e8faf3;
    --red: #ef4444;
    --red-light: #fef2f2;

    --r: 10px;
    --r-lg: 18px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);

    --shadow-sm: 0 1px 4px rgba(15, 40, 100, 0.07);
    --shadow-md: 0 8px 32px rgba(15, 40, 100, 0.10);
    --shadow-lg: 0 20px 60px rgba(15, 40, 100, 0.14);
    --shadow-blue: 0 8px 32px rgba(37, 99, 255, 0.22);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

h1, h2 {
    text-wrap: balance;
}

p {
    text-wrap: pretty;
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 32px;
}

section {
    padding: 96px 0;
}
.bg-white {
    background: var(--bg);
}
.bg-alt {
    background: var(--bg-soft);
}

/* ─── NAVBAR ─────────────────────────────── */
.navbar {
    height: 66px;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 200;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 30px;
    width: auto;
    display: block;
}

.footer-logo-img {
    filter: brightness(0) invert(1);
    opacity: 0.85;
}

.footer-logo-img:hover {
    opacity: 1;
}

.logo-dot {
    width: 8px;
    height: 8px;
    background: var(--blue);
    border-radius: 50%;
    flex-shrink: 0;
}

/*.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--muted);
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.18s;
}

.nav-links a:hover {
    color: var(--dark);
}

.nav-links .nav-cta a {
    background: var(--dark);
    color: #fff;
    padding: 8px 18px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    transition:
        background 0.18s,
        transform 0.18s;
}

.nav-links .nav-cta a:hover {
    background: var(--blue);
    transform: translateY(-1px);
}*/

/* --- Navbar Basis --- */
.navbar {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 72px;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    padding: 0 20px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    height: 100%;
}

.nav-links li {
    display: flex;
    align-items: center;
    position: relative;
}

.nav-links a,
.dropdown-trigger {
    text-decoration: none;
    color: var(--muted);
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 4px;
    user-select: none;
}

.nav-links a:hover,
.dropdown-trigger:hover {
    color: var(--dark);
}

.dropdown-trigger::after {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%234b5563' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    transition: transform 0.2s;
    flex-shrink: 0;
}

.dropdown.open .dropdown-trigger::after {
    transform: rotate(180deg);
}

/* --- De Dropdown Menu's --- */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 280px; /* Genoeg ruimte voor de beschrijving */
    padding: 10px;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);

    /* Verbergen */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
    z-index: 1001;
}

.dropdown:hover .dropdown-menu,
.dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-trigger.open {
    color: var(--dark);
}

/* ─── HAMBURGER BUTTON ───────────────────── */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: var(--r);
    flex-shrink: 0;
}

.nav-hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: transform 0.2s var(--ease), opacity 0.2s var(--ease);
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile CTA inside nav-links – hidden on desktop */
.nav-links .nav-mobile-cta {
    display: none;
}

/* Buttons inside nav-links keep their own color */
.nav-links .btn {
    color: #fff;
}

/* --- De Item Cards binnen de dropdown --- */
.dropdown-menu a {
    text-decoration: none;
    display: block;
    padding: 12px 16px;
    border-radius: 8px;
    transition: background 0.2s;
}

.dropdown-menu a:hover {
    background: var(--bg-soft);
}

.dropdown-menu a strong {
    display: block;
    color: var(--dark);
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.dropdown-menu a:hover strong {
    color: var(--blue);
}

.dropdown-menu a span {
    display: block;
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.4;
}

/* Logout form inside dropdown menu (matches anchor styling) */
.dropdown-menu .nav-logout-form { margin: 0; }
.dropdown-menu .nav-logout-form button {
    display: block;
    width: 100%;
    text-align: left;
    background: none;
    border: 0;
    padding: 12px 16px;
    border-radius: 8px;
    cursor: pointer;
    font: inherit;
    color: inherit;
    transition: background 0.2s;
}
.dropdown-menu .nav-logout-form button:hover { background: var(--bg-soft); }
.dropdown-menu .nav-logout-form strong {
    display: block;
    color: var(--dark);
    font-size: 0.95rem;
    margin-bottom: 2px;
}
.dropdown-menu .nav-logout-form button:hover strong { color: var(--blue); }
.dropdown-menu .nav-logout-form span {
    display: block;
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.4;
}

/* --- Brug tussen trigger en menu --- */
.dropdown::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 15px;
}

/* ─── HERO ───────────────────────────────── */
.hero {
    padding: 80px 0 96px;
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

/* Ambient background light */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 80% 50%, rgba(37, 99, 255, 0.07) 0%, transparent 60%),
        radial-gradient(ellipse 50% 60% at 15% 30%, rgba(22, 192, 115, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Dot-grid pattern — fades toward edges */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(37, 99, 255, 0.22) 1px, transparent 1px);
    background-size: 22px 22px;
    background-position: 0 0;
    -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 30%, transparent 80%);
    mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 30%, transparent 80%);
    pointer-events: none;
    opacity: 0.6;
}


.hero-inner-main {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-inner {
    position: relative;
    z-index: 1;
    align-items: center;
}

.hero-text {
    /*max-width: 540px;*/
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blue-light);
    border: 1px solid var(--blue-mid);
    color: var(--blue);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 99px;
    margin-bottom: 28px;
    letter-spacing: 0.02em;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--blue);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.5);
    }
}

.hero h1 {
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero h1 span {
    color: var(--blue);
}

.hero-text > p {
    font-size: 1.08rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 36px;
}

/* Hero image — right column */
.hero-visual {
    position: relative;
}

.hero-visual .img-placeholder {
    min-height: 420px;
    border-radius: var(--r-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
}

.hero-visual img {
    filter: drop-shadow(0 8px 32px rgba(60,80,140,0.13));
}

/* Floating card decorations on hero image */
.hero-float-card {
    position: absolute;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 12px 16px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--dark);
    white-space: nowrap;
    z-index: 2;
}

/* ─── LOGOS STRIP ────────────────────────── */
.logos-strip {
    padding: 40px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg);
}

.logos-label {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: #b0b8cc;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.logos-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.logo-placeholder {
    height: 26px;
    width: 88px;
    background: var(--border);
    border-radius: 4px;
    opacity: 0.55;
}

/* ─── HERO STATS ─────────────────────────── */
.hero-stats {
    display: flex;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}

/* Full-width variant: spans below both hero columns */
.hero-stats--full {
    margin-top: 48px;
    border-top: 1px solid var(--border);
}


.hero-stat {
    flex: 1;
    padding: 0 20px;
    border-right: 1px solid var(--border);
}

.hero-stat:first-child {
    padding-left: 0;
}

.hero-stat:last-child {
    border-right: none;
}

.hero-stat-num {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.03em;
    line-height: 1;
}

.hero-stat-num sup {
    font-size: 0.72rem;
    font-weight: 700;
    vertical-align: super;
}

.hero-stat-label {
    font-size: 0.72rem;
    color: var(--muted);
    font-weight: 500;
    margin-top: 4px;
}

/* ─── SECTION HEADER ─────────────────────── */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    font-style: italic;
    color: var(--blue);
    margin-bottom: 14px;
}


.section-header h2 {
    font-size: clamp(1.9rem, 3vw, 2.7rem);
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.03em;
    line-height: 1.18;
}

.section-header p {
    font-size: 1rem;
    color: var(--muted);
    max-width: 500px;
    margin: 14px auto 0;
    line-height: 1.7;
}

/* ─── FEATURES ───────────────────────────── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 40px 36px;
    transition:
        border-color 0.2s var(--ease),
        box-shadow 0.2s var(--ease),
        transform 0.2s var(--ease);
    cursor: default;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.feature-card:hover {
    border-color: var(--blue-mid);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--blue-light);
    border-radius: 12px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.feature-body {
    flex: 1;
}

.feature-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.7;
}

/* ─── HOW IT WORKS ───────────────────────── */
.how-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.how-grid.reverse {
    direction: rtl;
}
.how-grid.reverse > * {
    direction: ltr;
}

.how-visual .img-placeholder {
    min-height: 360px;
    border-radius: var(--r-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

.how-visual img {
    filter: drop-shadow(0 6px 24px rgba(60,80,140,0.11));
}

.illustration {
    width: 100%;
    max-width: 480px;
    aspect-ratio: 4 / 3;
    height: auto;
    object-fit: contain;
    display: block;
    margin-inline: auto;
}

.illustration--hero {
    max-width: 520px;
    aspect-ratio: 5 / 4;
}

.how-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.how-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--blue);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
    font-family: var(--mono);
}

.step-body h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.step-body p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.7;
}

/* ─── IMAGE PLACEHOLDER ──────────────────── */
.img-placeholder {
    min-height: 280px;
    background: var(--bg-soft);
    border: 1.5px dashed var(--border);
    border-radius: var(--r-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #c0c8d8;
    font-family: var(--mono);
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    position: relative;
    overflow: hidden;
}

.img-placeholder::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
}

.img-placeholder-icon {
    position: relative;
    z-index: 1;
    width: 42px;
    height: 42px;
    border: 1.5px dashed #c0c8d8;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.img-placeholder span {
    position: relative;
    z-index: 1;
}

.img-placeholder .ph-size {
    color: #d4dae8;
    font-size: 0.65rem;
}

.img-placeholder.avatar {
    width: 44px;
    height: 44px;
    min-height: 44px;
    border-radius: 10px;
    flex-shrink: 0;
    font-size: 0;
}

.img-placeholder.avatar::after {
    content: "👤";
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
    filter: grayscale(1) opacity(0.35);
}

/* ─── PRICING ────────────────────────────── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
}

.price-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 36px 32px;
    position: relative;
    transition: box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}

.price-card .feat-list {
    flex: 1;
}

.plan-meter {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    pointer-events: none;
    user-select: none;
}

.price-card {
    transition:
        box-shadow 0.25s var(--ease),
        transform 0.25s var(--ease),
        border-color 0.25s var(--ease);
}

.price-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--blue-mid);
}

.price-card.highlight {
    background: var(--bg);
    border-color: var(--blue);
    border-width: 2px;
    box-shadow: var(--shadow-blue);
    transform: scale(1.03);
}

.price-card.highlight:hover {
    transform: scale(1.03) translateY(-4px);
    box-shadow: 0 24px 70px rgba(37, 99, 255, 0.28);
}

.badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 99px;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.plan-name {
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    margin-bottom: 6px;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.04em;
    line-height: 1;
    margin: 10px 0 4px;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.amount sup {
    font-size: 1.2rem;
    font-weight: 700;
    vertical-align: super;
}

.amount sub {
    font-size: 0.88rem;
    font-weight: 500;
    vertical-align: baseline;
    color: var(--muted);
}

.plan-desc {
    font-size: 0.87rem;
    color: var(--muted);
    margin-bottom: 28px;
}

.feat-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 32px;
}

.feat-list li {
    font-size: 0.87rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
}

.feat-list li::before {
    content: "";
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: var(--blue-light);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 8l3.5 3.5L13 5' stroke='%232563ff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    flex-shrink: 0;
}

.feat-list li .feat-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.15s ease, gap 0.15s ease;
}

.feat-list li .feat-link:hover,
.feat-list li .feat-link:focus-visible {
    color: var(--blue);
    gap: 7px;
}

.feat-list li .feat-link-arrow {
    width: 11px;
    height: 11px;
    flex-shrink: 0;
    color: var(--muted);
    transition: transform 0.15s ease, color 0.15s ease;
}

.feat-list li .feat-link:hover .feat-link-arrow,
.feat-list li .feat-link:focus-visible .feat-link-arrow {
    color: var(--blue);
    transform: translateX(2px);
}

/* ─── TESTIMONIALS ───────────────────────── */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonial-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition:
        box-shadow 0.2s,
        transform 0.2s;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.stars {
    color: #f5a623;
    font-size: 0.82rem;
    letter-spacing: 2px;
}

.testimonial-card blockquote {
    font-size: 0.91rem;
    color: var(--text);
    line-height: 1.75;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-info .name {
    font-size: 0.87rem;
    font-weight: 700;
    color: var(--dark);
}

.author-info .role {
    font-size: 0.75rem;
    color: var(--muted);
    font-family: var(--mono);
}

/* ─── COMPARE TABLE ──────────────────────── */
.compare-container {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

table {
    width: 100%;
    border-collapse: collapse;
}

th {
    background: var(--bg-soft);
    padding: 18px 24px;
    text-align: left;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    border-bottom: 1px solid var(--border);
}

td {
    padding: 16px 24px;
    font-size: 0.91rem;
    border-top: 1px solid var(--border);
    color: var(--text);
}

tr:hover td {
    background: var(--bg-soft);
}

.td-good {
    color: var(--blue);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 7px;
}

.td-good::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0;
    display: inline-block;
}

/* ─── FAQ ────────────────────────────────── */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

details {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
    transition: border-color 0.2s;
    interpolate-size: allow-keywords;
}

details[open] {
    border-color: var(--blue-mid);
}

details::details-content {
    opacity: 0;
    block-size: 0;
    overflow: clip;
    transition:
        content-visibility 0.3s allow-discrete,
        opacity 0.25s ease,
        block-size 0.3s ease;
}

details[open]::details-content {
    opacity: 1;
    block-size: auto;
}

summary {
    padding: 18px 22px;
    font-weight: 600;
    font-size: 0.94rem;
    color: var(--dark);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: "+";
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--muted);
    flex-shrink: 0;
    transition:
        transform 0.25s ease,
        color 0.2s;
}

details[open] summary::after {
    transform: rotate(45deg);
    color: var(--blue);
}

details p {
    padding: 0 22px 18px;
    font-size: 0.91rem;
    color: var(--muted);
    line-height: 1.75;
}

/* ─── CTA BAND ───────────────────────────── */
.cta-band {
    background: var(--dark);
    border-radius: var(--r-lg);
    padding: 64px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(37, 99, 255, 0.25) 0%,
        transparent 70%
    );
    top: -200px;
    right: -100px;
    pointer-events: none;
}

.cta-band h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 10px;
}

.cta-band p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
}

.cta-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
    flex-direction: column;
    align-items: stretch;
}

/* ─── BUTTONS ────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: var(--r);
    font-family: var(--font);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all 0.18s var(--ease);
    white-space: nowrap;
}

.btn-primary {
    background: var(--blue);
    color: #fff;
}

.btn-primary:hover {
    background: var(--blue-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-blue);
}

.btn:active {
    transform: scale(0.97) translateY(1px) !important;
    box-shadow: none !important;
}

.btn-secondary {
    background: var(--bg-soft);
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--border);
}

.btn-dark {
    background: var(--dark);
    color: #fff;
}

.btn-dark:hover {
    background: #1a2240;
    transform: translateY(-1px);
}

.btn-white {
    background: #fff;
    color: var(--dark);
    font-weight: 700;
}

.btn-white:hover {
    background: var(--blue-light);
    color: var(--blue);
}

.btn-ghost-white {
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-ghost-white:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-sm {
    padding: 9px 16px;
    font-size: 0.82rem;
}
.full-width {
    width: 100%;
}

/* ─── CONTACT ────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 56px;
    align-items: start;
}

.contact-form-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 11px 15px;
    border: 1.5px solid var(--border);
    border-radius: var(--r);
    background: var(--bg-soft);
    font-family: var(--font);
    font-size: 0.93rem;
    color: var(--text);
    outline: none;
    transition:
        border-color 0.15s,
        background 0.15s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--blue);
    background: var(--bg);
    box-shadow: 0 0 0 3px rgba(37, 99, 255, 0.1);
}

.info-item {
    margin-bottom: 28px;
}

/* ─── BLOG ───────────────────────────────── */
.text-date {
    font-family: var(--mono);
    font-size: 0.72rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    letter-spacing: 0.04em;
}

.text-date .author {
    color: var(--blue);
}
.text-date .divider,
.text-date .date {
    color: var(--muted);
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 14px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--blue);
    text-decoration: none;
    transition: gap 0.15s;
}

.read-more:hover {
    gap: 9px;
}

.pagination {
    margin-top: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

/* ─── BLOG POST ──────────────────────────── */
.blog-header-date {
    font-family: var(--mono);
    font-size: 0.75rem;
    color: var(--blue);
    font-weight: 500;
    margin-bottom: 14px;
    letter-spacing: 0.06em;
}

.blog-title {
    max-width: 760px;
    margin: 0 auto 24px;
}
.blog-content-wrapper {
    /*max-width: 760px;*/
    margin: 0 auto;
}
.blog-article {
    line-height: 1.85;
}

.blog-article h2 {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.03em;
    margin: 36px 0 14px;
}

.blog-footer {
    border-top: 1px solid var(--border);
    padding-top: 28px;
    margin-top: 40px;
    text-align: center;
}

.info-box {
    background: var(--blue-light);
    border: 1px solid var(--blue-mid);
    border-left: 3px solid var(--blue);
    padding: 22px 26px;
    border-radius: var(--r);
    margin: 28px 0;
}

.info-box h4 {
    color: var(--blue);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ─── LEGAL PAGES ───────────────────────── */
.legal-doc {
    max-width: 760px;
    margin: 0 auto;
    padding: 48px 0 80px;
}

.legal-section {
    margin-bottom: 48px;
}

.legal-section h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: -0.02em;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.legal-section h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin: 20px 0 8px;
}

.legal-section p {
    font-size: 0.93rem;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-section ul,
.legal-section ol {
    margin: 10px 0 12px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.legal-section ul li,
.legal-section ol li {
    font-size: 0.93rem;
    color: var(--muted);
    line-height: 1.7;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
    margin-top: 12px;
}

.legal-table th {
    background: var(--bg-soft);
    color: var(--dark);
    font-weight: 600;
    text-align: left;
    padding: 10px 12px;
    border: 1px solid var(--border);
}

.legal-table td {
    padding: 9px 12px;
    border: 1px solid var(--border);
    color: var(--muted);
    vertical-align: top;
}

.legal-section a {
    color: var(--blue);
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

.legal-section code {
    font-family: var(--mono);
    font-size: 0.82rem;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    padding: 2px 7px;
    border-radius: 5px;
    color: var(--dark);
}

/* ─── EDITOR ─────────────────────────────── */
.editor-container {
    max-width: 880px;
    margin: 0 auto;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 14px;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid var(--border);
}

.textarea-large {
    min-height: 300px;
    resize: vertical;
}

.form-help {
    display: block;
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 5px;
    font-family: var(--mono);
}

/* ─── FOOTER ─────────────────────────────── */
footer {
    background: var(--dark);
    padding: 72px 0 72px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
}

.footer-brand .logo {
    color: #fff;
    margin-bottom: 14px;
    display: inline-flex;
}

.footer-brand p {
    font-size: 0.85rem;
    color: #8b94b0;
    line-height: 1.7;
    max-width: 220px;
}

.footer-col h3 {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #9ba3bf;
    margin-bottom: 18px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-links a {
    font-size: 0.88rem;
    color: #8b94b0;
    text-decoration: none;
    transition: color 0.15s;
}

.footer-links a:hover {
    color: #fff;
}

/* Legacy nav list in footer */
.footer-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-nav a {
    font-size: 0.88rem;
    color: #8b94b0;
    text-decoration: none;
    transition: color 0.15s;
}

.footer-nav a:hover {
    color: #fff;
}

.legal-links {
    border-top: 1px solid #1e2540;
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.legal-links p {
    font-size: 0.82rem;
    color: #9ba3bf;
}

.legal-pages {
    display: flex;
    gap: 24px;
}

.legal-pages a {
    font-size: 0.82rem;
    color: #9ba3bf;
    text-decoration: none;
    transition: color 0.15s;
}

.legal-pages a:hover {
    color: #fff;
}

.legal-pages a:hover {
    color: #6b7494;
}

/* ─── UTILITY CLASSES (replaces all inline styles) ──── */

/* Hero buttons row */
.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Hero image placeholder sizing */
.hero-img-placeholder {
    min-height: 420px;
    border-radius: 18px;
}

/* Hero real image */
.hero-img {
    width: 100%;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-lg);
    display: block;
    object-fit: cover;
    aspect-ratio: 680 / 420;
}

/* Float card green dot */
.fc-dot--green {
    background: var(--green);
}


/* ─── DOMAIN CARDS ───────────────────────── */
.domain-grid {
    grid-template-columns: repeat(3, 1fr);
}

.domain-grid .feature-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 28px;
    gap: 0;
}

.domain-ext {
    font-size: 2rem;
    font-weight: 800;
    color: var(--blue);
    letter-spacing: -0.03em;
    margin: 0 0 16px;
}

.domain-grid .feature-card p {
    flex: 1;
    margin-bottom: 0;
}

.domain-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin: 20px 0 16px;
}

.domain-price strong {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.03em;
}

.domain-price span {
    font-size: 0.85rem;
    color: var(--muted);
}

/* How-it-works: first grid has bottom margin */
.how-grid--mb {
    margin-bottom: 80px;
}

/* How-it-works image placeholders */
.how-img-placeholder {
    min-height: 340px;
}

/* Eyebrow wrapper spacing above standalone h2 */
.how-eyebrow-wrap {
    margin-bottom: 12px;
}

/* Standalone h2 inside how-grid (not a section header) */
.how-title {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 20px;
}

/* Body text inside how-grid next to dashboard image */
.how-body {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 28px;
}

/* CTA section bottom padding */
.section-cta {
    padding-bottom: 96px;
}

/* ─── RESPONSIVE ─────────────────────────── */

/* Tablet (≤980px) */
@media (max-width: 980px) {
    .hero-inner,
    .hero-inner-main {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .hero-visual {
        display: none;
    }
    .how-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .how-grid.reverse {
        direction: ltr;
    }
    .features-grid,
    .pricing-grid {
        grid-template-columns: 1fr 1fr;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .testimonials-grid .testimonial-card:first-child {
        grid-row: span 1;
    }
    .footer-inner {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 32px;
    }
    .hero-stats {
        flex-wrap: wrap;
    }
    .hero-stat {
        flex: 0 0 50%;
        padding: 12px 16px;
        border-right: none;
        border-bottom: 1px solid var(--border);
    }
    .hero-stat:nth-child(odd) {
        padding-left: 0;
        border-right: 1px solid var(--border);
    }
    .hero-stat:nth-last-child(-n+2) {
        border-bottom: none;
    }
    .price-card.highlight {
        transform: none;
    }
    .cta-band {
        grid-template-columns: 1fr;
    }
    .cta-actions {
        flex-direction: row;
    }
}

/* Mobile nav breakpoint (≤768px) – hamburger */
@media (max-width: 768px) {
    .nav-hamburger {
        display: flex;
    }
    .nav-links {
        display: none;
    }
    .nav-auth {
        display: none;
    }
    .nav-links .nav-mobile-cta {
        display: block;
    }

    /* Mobile drawer – drops below the sticky navbar */
    .navbar.mobile-open .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-lg);
        padding: 8px 20px 20px;
        z-index: 999;
        max-height: calc(100vh - 72px);
        overflow-y: auto;
        gap: 0;
        height: auto;
    }

    .navbar.mobile-open .nav-links > li {
        border-bottom: 1px solid var(--border);
    }

    .navbar.mobile-open .nav-links > li:last-child {
        border-bottom: none;
        padding-top: 16px;
    }

    .navbar.mobile-open .nav-links a:not(.btn),
    .navbar.mobile-open .dropdown-trigger {
        padding: 14px 4px;
        font-size: 1rem;
        width: 100%;
        color: var(--dark);
        display: flex;
        justify-content: space-between;
    }

    /* Dropdown li: stack trigger + menu vertically */
    .navbar.mobile-open .nav-links li.dropdown {
        flex-direction: column;
        align-items: flex-start;
    }

    /* Mobile dropdown: display:none collapses space (visibility:hidden doesn't) */
    .navbar.mobile-open .dropdown-menu {
        display: none !important;
        position: static;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 0;
        min-width: auto;
        background: transparent;
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: none;
    }

    .navbar.mobile-open .dropdown.open .dropdown-menu {
        display: block !important;
        padding: 0 0 8px 12px;
    }

    .navbar.mobile-open .dropdown-menu a span {
        display: none;
    }

    /* Hero */
    .hero-inner-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-visual {
        display: none;
    }

    /* Domain grid */
    .domain-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Search box */
    .search-box-large {
        flex-direction: column;
    }
    .search-box-large .btn {
        width: 100%;
        justify-content: center;
    }

    /* Tables */
    .compare-container {
        overflow-x: auto;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* Footer */
    footer {
        padding: 48px 0;
    }
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

/* Small mobile (≤600px) */
@media (max-width: 600px) {
    section {
        padding: 56px 0;
    }
    .container {
        padding: 0 20px;
    }
    .features-grid,
    .pricing-grid,
    .testimonials-grid,
    .faq-list {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .cta-band {
        padding: 40px 28px;
    }
    .cta-actions {
        flex-direction: column;
    }
    .domain-grid {
        grid-template-columns: 1fr;
    }
    .hero-product {
        padding: 80px 0 56px;
    }
}

/* Very small (≤480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    .footer-inner {
        grid-template-columns: 1fr;
    }
    .legal-links {
        flex-direction: column;
        align-items: flex-start;
    }
    .legal-pages {
        flex-direction: column;
        gap: 12px;
    }
    .hero-stat-num {
        font-size: 1.2rem;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Alert Basis */
.alert {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    margin-top: 24px;
    border-radius: var(--r);
    border: 1px solid var(--border);
    font-family: var(--font);
    box-shadow: var(--shadow-md);
    animation: alert-slide-in 0.4s var(--ease);
}

.alert-content {
    flex: 1;
}

.alert-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
}

.alert-body {
    margin: 4px 0 0 0;
    font-size: 0.9rem;
    color: var(--text);
    opacity: 0.9;
}

/* Alert Varianten */
.alert-success {
    background-color: var(--green-light);
    border-color: var(--green);
}

.alert-error {
    background-color: var(--red-light);
    border-color: var(--red);
}

.alert-info {
    background-color: var(--blue-light);
    border-color: var(--blue);
}

/* Sluitknop */
.alert-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text);
    cursor: pointer;
    padding: 0 0 0 15px;
    line-height: 1;
    transition:
        transform 0.2s var(--ease),
        opacity 0.2s var(--ease);
    opacity: 0.5;
}

.alert-close:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Animatie */
@keyframes alert-slide-in {
    from {
        opacity: 0;
        transform: translateY(-12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ─── AANVULLINGEN VOOR NIEUWE PAGINA'S ────────────────── */

/* Specifieke tabel-styling voor de vergelijkingstabel */
.compare-container table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg);
}

.compare-container th {
    background: var(--bg-soft);
    padding: 24px;
    text-align: left;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dark);
    border-bottom: 2px solid var(--border);
}

.compare-container td {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
}

/* Grotere Hero voor specifieke productpagina's */
.hero-product {
    padding: 120px 0 80px;
    text-align: center;
}

.hero-product h1 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    margin-bottom: 24px;
}

/* Grote Zoekbalk voor Domeinpagina */
.search-box-large {
    display: flex;
    max-width: 720px;
    margin: 40px auto 0;
    gap: 12px;
    background: var(--bg);
    padding: 12px;
    border-radius: var(--r-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
}

.search-box-large input {
    flex: 1;
    border: none;
    padding: 15px 20px;
    font-size: 1.1rem;
    font-family: var(--font);
    outline: none;
}

/* Badge voor 'Meest gekozen' etc. */
.price-card .badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue);
    color: #fff;
    padding: 6px 16px;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: var(--shadow-blue);
}

/* Maak de kaarten groter op desktop voor de 'te kleine' look */
@media (min-width: 981px) {
    .pricing-grid {
        gap: 32px;
        padding: 40px 0;
    }

    .price-card {
        padding: 48px 40px; /* Meer padding binnenin de kaarten */
    }

    .amount {
        font-size: 3.5rem; /* Grotere prijsaanduiding */
    }
}

/* ─── DOMAIN SEARCH RESULTS ─────────────────────────── */
.domain-results {
    max-width: 720px;
    margin: 12px auto 0;
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    background: var(--bg);
    box-shadow: var(--shadow-md);
}

.domain-result-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    gap: 12px;
}

.domain-result-row:last-child {
    border-bottom: none;
}

.domain-result-name {
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark);
}

.domain-result-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.domain-result-badge {
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 99px;
    white-space: nowrap;
}

.badge-avail {
    background: var(--green-light);
    color: var(--green);
}

.badge-taken {
    background: var(--red-light);
    color: var(--red);
}

.domain-results-loading {
    padding: 20px 24px;
    color: var(--muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.domain-results-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid var(--border);
    border-top-color: var(--blue);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    flex-shrink: 0;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.domain-results-empty {
    padding: 20px 24px;
    color: var(--muted);
    font-size: 0.9rem;
}

/* ─── LATEN-MAKEN PAGINA ────────────────────── */

/* Offerte sectie layout */
.offerte-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 64px;
    align-items: start;
}

.offerte-info .section-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
}

.offerte-info h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 16px;
}

.offerte-info > p {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 28px;
}

.offerte-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.offerte-checklist li {
    font-size: 0.9rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.offerte-checklist li::before {
    content: "✓";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--blue-light);
    color: var(--blue);
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 800;
    flex-shrink: 0;
}

/* Twee-koloms rij in formulier */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Optioneel label in formulier */
.form-optional {
    font-weight: 400;
    color: var(--muted);
    font-size: 0.78rem;
}

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

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

/* Checklist grid (standaard inbegrepen) */
.checklist-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.checklist-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.checklist-icon {
    width: 44px;
    height: 44px;
    background: var(--blue-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--blue);
}

.checklist-icon svg {
    width: 22px;
    height: 22px;
}

.checklist-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.checklist-item p {
    font-size: 0.87rem;
    color: var(--muted);
    line-height: 1.65;
}

/* 3-koloms variant voor features-grid */
.features-grid--3col {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.features-grid--3col .feature-card {
    flex: 0 0 calc(33.333% - 16px);
}

@media (max-width: 900px) {
    .features-grid--3col .feature-card {
        flex: 0 0 calc(50% - 12px);
    }
}

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

    .features-grid--3col .feature-card {
        flex: 0 0 100%;
    }
}

/* Tijdsaanduiding in processtappen */
.step-time {
    display: inline-block;
    margin-left: 8px;
    padding: 2px 8px;
    background: var(--blue-light);
    color: var(--blue);
    border-radius: 99px;
    font-size: 0.72rem;
    font-weight: 600;
    vertical-align: middle;
    white-space: nowrap;
}

/* Portfolio grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.portfolio-card {
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg);
    transition: box-shadow 0.2s var(--ease);
}

.portfolio-card:hover {
    box-shadow: var(--shadow-md);
}

.portfolio-img-placeholder {
    min-height: 200px;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid var(--border);
}

.portfolio-meta {
    padding: 16px 20px;
}

.portfolio-meta h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.portfolio-meta p {
    font-size: 0.82rem;
    color: var(--muted);
}

/* Sectie-footer (knop centreren) */
.section-footer {
    text-align: center;
    margin-top: 12px;
}

/* Reviews grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.review-stars {
    color: #f59e0b;
    font-size: 1rem;
    letter-spacing: 2px;
}

.review-text {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.75;
    flex: 1;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-author strong {
    display: block;
    font-size: 0.88rem;
    color: var(--dark);
}

.review-author p {
    font-size: 0.78rem;
    color: var(--muted);
    margin: 0;
}

.review-avatar {
    width: 44px !important;
    height: 44px !important;
    min-height: 44px !important;
    flex-shrink: 0;
    border-radius: 50% !important;
}

/* Prijzen CTA blok */
.pricing-cta {
    margin-top: 48px;
    padding: 36px 40px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.pricing-cta p {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.6;
    max-width: 560px;
}

.pricing-cta strong {
    color: var(--dark);
}

/* Responsive: portfolio & reviews */
@media (max-width: 900px) {
    .portfolio-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .pricing-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

/* Extra witruimte voor de content op productpagina's */
.product-description {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    font-size: 1.15rem;
    color: var(--muted);
}

/* ─── SCROLL REVEAL ─────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.7s var(--ease),
        transform 0.7s var(--ease);
    will-change: opacity, transform;
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered children — each card/step animates slightly after the previous */
.reveal-stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.6s var(--ease),
        transform 0.6s var(--ease);
}

.reveal-stagger.in-view > *:nth-child(1) { transition-delay: 0.00s; }
.reveal-stagger.in-view > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger.in-view > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger.in-view > *:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger.in-view > *:nth-child(5) { transition-delay: 0.32s; }
.reveal-stagger.in-view > *:nth-child(6) { transition-delay: 0.40s; }

.reveal-stagger.in-view > * {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal,
    .reveal-stagger > * {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    .hero-badge-dot {
        animation: none !important;
    }
}

/* ─── Cookie banner ─────────────────────────────────────────────── */
.cookie-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 9999;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-lg);
    padding: 18px 22px;
    max-width: 720px;
    margin: 0 auto;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner-inner {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}
.cookie-banner-text { flex: 1 1 320px; min-width: 240px; }
.cookie-banner-text h3 {
    font-size: 1rem;
    margin-bottom: 6px;
    color: var(--dark);
}
.cookie-banner-text p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.5;
}
.cookie-banner-text a {
    color: var(--blue);
    text-decoration: underline;
}
.cookie-banner-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
@media (max-width: 540px) {
    .cookie-banner { padding: 16px; left: 8px; right: 8px; bottom: 8px; }
    .cookie-banner-actions { width: 100%; }
    .cookie-banner-actions .btn { flex: 1 1 auto; }
}

.contact-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.15s;
}
.contact-link:hover,
.contact-link:focus-visible {
    color: var(--blue);
}

/* ═══════════════════════════════════════════════════════════════════
   v2 NAVBAR / FOOTER / COOKIE BANNER
   Globale styling voor de topbar, footer en cookie-banner.
   Wordt op elke pagina geladen (niet alleen v2 pagina's).
   ═══════════════════════════════════════════════════════════════════ */

:root {
    --v2-blue: #1B4FE0;
    --v2-blue-700: #143fb8;
    --v2-blue-50: #EDF1FE;
    --v2-ink: #0B0E1A;
    --v2-ink-2: #2A2E3D;
    --v2-muted: #6A6E7E;
    --v2-bg: #F7F6F2;
    --v2-bg-2: #ECEAE2;
    --v2-line: #DCD9CF;
}

/* ── Topbar ─────────────────────────────────────────────── */
.topbar {
    position: sticky; top: 0; z-index: 1000;
    backdrop-filter: saturate(140%) blur(14px);
    -webkit-backdrop-filter: saturate(140%) blur(14px);
    background: rgba(247,246,242,0.82);
    border-bottom: 1px solid rgba(220,217,207,0.6);
    font-family: "Geist", ui-sans-serif, system-ui, sans-serif;
}
.topbar-inner {
    display: flex; align-items: center; gap: 24px;
    height: 64px;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;
}
.topbar .brand {
    display: flex; align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}
.topbar .brand-logo {
    height: 22px;
    width: auto;
    display: block;
}
.topbar .nav {
    display: flex; gap: 2px;
    align-items: center;
    height: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
}
.topbar .nav li {
    display: flex; align-items: center; height: 100%;
    position: relative;
}
.topbar .nav a,
.topbar .nav .dropdown-trigger {
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    color: var(--v2-ink-2);
    text-decoration: none;
    cursor: pointer;
    transition: background .15s, color .15s;
    display: inline-flex; align-items: center; gap: 6px;
    user-select: none;
    line-height: 1;
    font-family: inherit;
    border: 0; background: transparent;
}
.topbar .nav a:hover,
.topbar .nav .dropdown-trigger:hover {
    background: rgba(11,14,26,0.05);
    color: var(--v2-ink);
}
.topbar .nav .dropdown-trigger::after {
    content: "";
    width: 12px; height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%232A2E3D' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: transform .15s;
    flex-shrink: 0;
}
.topbar .nav .dropdown.open .dropdown-trigger::after {
    transform: rotate(180deg);
}
.topbar .nav-spacer { flex: 1; }
.topbar .nav-link {
    padding: 8px 12px;
    font-size: 14px;
    color: var(--v2-ink-2);
    text-decoration: none;
    transition: color .15s;
    line-height: 1;
}
.topbar .nav-link:hover { color: var(--v2-ink); }
.topbar .nav-cta {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    background: var(--v2-ink);
    color: var(--v2-bg);
    font-size: 13.5px;
    font-weight: 500;
    text-decoration: none;
    transition: transform .15s, background .15s, color .15s, border-color .15s;
    line-height: 1;
    border: 1px solid var(--v2-ink);
}
.topbar .nav-cta:hover {
    background: var(--v2-blue);
    border-color: var(--v2-blue);
    transform: translateY(-1px);
    color: #fff;
}

/* Account chip (when logged in) */
.topbar .nav-account {
    position: relative;
}
.topbar .nav-account .nav-account-trigger {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px 8px 8px;
    border-radius: 999px;
    background: transparent;
    border: 1px solid var(--v2-line);
    color: var(--v2-ink);
    font-size: 13.5px;
    font-weight: 500;
    line-height: 1;
    cursor: pointer;
    transition: border-color .15s, background .15s;
}
.topbar .nav-account .nav-account-trigger:hover,
.topbar .nav-account.open .nav-account-trigger {
    border-color: var(--v2-ink);
    background: rgba(255,255,255,0.5);
}
.topbar .nav-account .nav-account-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--v2-ink);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.topbar .nav-account .nav-account-name {
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.topbar .nav-account .nav-account-trigger::after {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform .15s;
    margin-left: 2px;
}
.topbar .nav-account.open .nav-account-trigger::after {
    transform: rotate(225deg) translateY(-2px);
}
.topbar .nav-account .nav-account-menu {
    right: 0;
    left: auto;
    min-width: 280px;
}

@media (max-width: 980px) {
    .topbar .nav-account { margin-left: auto; }
    .topbar .nav-account .nav-account-name { max-width: 100px; }
}

/* Bridge between trigger and menu (prevents hover gap) */
.topbar .nav .dropdown::after {
    content: "";
    position: absolute;
    bottom: -8px; left: 0;
    width: 100%; height: 8px;
}

/* Dropdown menu */
.topbar .dropdown-menu {
    position: absolute;
    top: calc(100% + 6px); left: 0;
    background: #fff;
    min-width: 280px;
    padding: 8px;
    border-radius: 14px;
    border: 1px solid var(--v2-line);
    box-shadow: 0 1px 0 rgba(11,14,26,0.04), 0 24px 48px -24px rgba(11,14,26,0.18);
    opacity: 0; visibility: hidden;
    transform: translateY(8px);
    transition: opacity .15s, transform .15s, visibility .15s;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.topbar .dropdown:hover .dropdown-menu,
.topbar .dropdown.open .dropdown-menu {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.topbar .dropdown-menu a {
    display: block;
    padding: 10px 14px;
    border-radius: 8px;
    transition: background .15s;
    color: var(--v2-ink);
    text-decoration: none;
    height: auto;
}
.topbar .dropdown-menu a:hover { background: rgba(11,14,26,0.04); }
.topbar .dropdown-menu a strong {
    display: block;
    font-weight: 500;
    font-size: 14px;
    color: var(--v2-ink);
    letter-spacing: -0.005em;
    line-height: 1.3;
    margin-bottom: 2px;
}
.topbar .dropdown-menu a:hover strong { color: var(--v2-blue); }
.topbar .dropdown-menu a > span {
    display: block;
    font-size: 12.5px;
    color: var(--v2-muted);
    line-height: 1.45;
}
.topbar .dropdown-menu .menu-tag {
    display: inline-block;
    font-family: "Geist Mono", monospace;
    font-size: 10px;
    font-weight: 500;
    background: var(--v2-blue-50);
    color: var(--v2-blue);
    border: 1px solid rgba(27,79,224,0.18);
    border-radius: 4px;
    padding: 1px 6px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    vertical-align: middle;
    margin-left: 6px;
}

/* Hamburger */
.topbar .nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px; height: 36px;
    background: none; border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 8px;
    flex-shrink: 0;
}
.topbar .nav-hamburger span {
    display: block;
    width: 20px; height: 2px;
    background: var(--v2-ink);
    border-radius: 2px;
    transition: transform .2s, opacity .2s;
}
.topbar .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.topbar .nav-hamburger.open span:nth-child(2) { opacity: 0; }
.topbar .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile navbar */
@media (max-width: 980px) {
    .topbar-inner { gap: 16px; }
    .topbar .nav {
        display: none;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: rgba(247,246,242,0.98);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border-bottom: 1px solid var(--v2-line);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 14px 28px 20px;
        margin: 0;
        height: auto;
    }
    .topbar.mobile-open .nav { display: flex; }
    .topbar .nav li,
    .topbar .nav .dropdown {
        flex-direction: column;
        align-items: stretch;
        height: auto;
        border-bottom: 1px solid var(--v2-line);
    }
    .topbar .nav li:last-child,
    .topbar .nav .dropdown:last-child { border-bottom: none; }
    .topbar .nav a,
    .topbar .nav .dropdown-trigger {
        padding: 12px 8px;
        justify-content: space-between;
        font-size: 15px;
    }
    .topbar .nav .dropdown::after { display: none; }
    .topbar .dropdown-menu {
        position: static;
        opacity: 1; visibility: visible;
        transform: none;
        border: 0;
        background: transparent;
        box-shadow: none;
        padding: 0 0 12px 8px;
        min-width: 0;
        display: none;
    }
    .topbar .dropdown.open .dropdown-menu { display: flex; }
    .topbar .nav-spacer { display: none; }
    .topbar .nav-link { display: none; }
    .topbar .nav-cta {
        padding: 8px 14px;
        font-size: 13px;
        margin-left: auto;
    }
    .topbar .nav-hamburger { display: flex; }
}

/* ── Footer ─────────────────────────────────────────────── */
.v2-footer {
    background: var(--v2-ink);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 32px;
    font-family: "Geist", ui-sans-serif, system-ui, sans-serif;
}
.v2-footer .container {
    max-width: 1240px;
    padding: 0 28px;
    margin: 0 auto;
}
.v2-footer .foot-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 32px;
}
.v2-footer h4 {
    font-family: "Geist Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin: 0 0 16px;
    font-weight: 500;
}
.v2-footer ul {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 10px;
}
.v2-footer a {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    text-decoration: none;
    transition: color .15s;
}
.v2-footer a:hover { color: #fff; }
.v2-footer .foot-brand {
    color: rgba(255,255,255,0.55);
    font-size: 14px;
    line-height: 1.55;
    max-width: 36ch;
}
.v2-footer .foot-brand .brand {
    display: inline-flex; align-items: center;
    margin-bottom: 16px;
    text-decoration: none;
}
.v2-footer .foot-brand .brand-logo {
    height: 24px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
    opacity: 0.92;
    transition: opacity .15s;
}
.v2-footer .foot-brand .brand:hover .brand-logo { opacity: 1; }
.v2-footer .foot-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.55;
    margin: 0 0 24px;
}
.v2-footer .foot-brand .mono {
    font-family: "Geist Mono", monospace;
    font-size: 12px;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.45);
    line-height: 1.8;
    margin-top: 24px;
}
.v2-footer .foot-brand .mono a { color: rgba(255,255,255,0.7); }
.v2-footer .foot-brand .mono a:hover { color: #fff; }
.vat-note {
    text-align: center;
    margin: 0 0 36px;
    font-size: 12px;
    color: var(--muted);
    font-family: "Geist Mono", monospace;
    letter-spacing: 0.02em;
}
.v2-footer .foot-bottom .foot-vat {
    color: rgba(255,255,255,0.45);
}
.v2-footer .foot-bottom {
    margin-top: 56px; padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex; justify-content: space-between;
    align-items: center; flex-wrap: wrap; gap: 16px;
    font-family: "Geist Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.45);
}
.v2-footer .foot-bottom .legal {
    display: flex; gap: 24px; flex-wrap: wrap;
}
.v2-footer .foot-bottom a {
    color: rgba(255,255,255,0.7);
    font-size: 11px;
}
.v2-footer .foot-bottom a:hover { color: #fff; }

@media (max-width: 960px) {
    .v2-footer .foot-grid { grid-template-columns: 1fr 1fr; }
    .v2-footer .foot-brand { grid-column: 1 / -1; }
}
@media (max-width: 540px) {
    .v2-footer .foot-grid { grid-template-columns: 1fr; }
    .v2-footer .foot-brand { grid-column: auto; }
}

/* ── Cookie banner ─────────────────────────────────────── */
.cookie-banner.cookie-v2 {
    position: fixed;
    bottom: 20px; left: 20px; right: 20px;
    max-width: 720px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--v2-line);
    border-radius: 18px;
    padding: 22px 26px;
    box-shadow: 0 24px 60px -24px rgba(11,14,26,0.24);
    z-index: 5000;
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
    font-family: "Geist", ui-sans-serif, system-ui, sans-serif;
}
.cookie-banner.cookie-v2[hidden] { display: none; }
.cookie-banner.cookie-v2 .cookie-text {
    flex: 1; min-width: 240px;
}
.cookie-banner.cookie-v2 h3 {
    font-size: 16px; font-weight: 500;
    letter-spacing: -0.01em;
    margin: 0 0 6px;
    color: var(--v2-ink);
}
.cookie-banner.cookie-v2 p {
    font-size: 13.5px;
    color: var(--v2-ink-2);
    line-height: 1.55;
    margin: 0;
}
.cookie-banner.cookie-v2 a {
    color: var(--v2-blue);
    text-decoration: none;
    font-weight: 500;
}
.cookie-banner.cookie-v2 a:hover { text-decoration: underline; }
.cookie-banner.cookie-v2 .cookie-actions {
    display: flex; gap: 10px;
    flex-shrink: 0;
}
.cookie-banner.cookie-v2 .cookie-btn {
    padding: 9px 18px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 13.5px; font-weight: 500;
    cursor: pointer;
    font-family: inherit;
    transition: background .15s, border-color .15s, color .15s, transform .15s;
    white-space: nowrap;
    line-height: 1;
}
.cookie-banner.cookie-v2 .cookie-btn-ghost {
    background: transparent;
    border-color: var(--v2-line);
    color: var(--v2-ink);
}
.cookie-banner.cookie-v2 .cookie-btn-ghost:hover {
    border-color: var(--v2-ink);
}
.cookie-banner.cookie-v2 .cookie-btn-primary {
    background: var(--v2-blue);
    color: #fff;
}
.cookie-banner.cookie-v2 .cookie-btn-primary:hover {
    background: var(--v2-blue-700);
    transform: translateY(-1px);
}

@media (max-width: 600px) {
    .cookie-banner.cookie-v2 {
        bottom: 12px; left: 12px; right: 12px;
        padding: 18px 20px;
    }
    .cookie-banner.cookie-v2 .cookie-actions {
        width: 100%;
        justify-content: stretch;
    }
    .cookie-banner.cookie-v2 .cookie-btn {
        flex: 1;
        text-align: center;
    }
}
