.dchh {
    position: relative;
    padding: clamp(80px, 9vw, 130px) clamp(20px, 4vw, 60px);
    background: #fff;
    font-family: var(--dc-font-body);
}

.dchh__inner { max-width: 1280px; margin: 0 auto; }

.dchh__canvas {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: var(--dc-radius-lg);
    overflow: hidden;
    box-shadow: var(--dc-shadow-md);
    background: var(--dc-dark);
}

.dchh__image {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    filter: saturate(1.05);
}

.dchh__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(11, 31, 51, 0.55) 100%);
}

/* ---- Europe map background ---------------------------------------------- */
.dchh__canvas--map {
    /* brede uitsnede van de kaart — vult de band edge-to-edge, onvervormd */
    aspect-ratio: 1207 / 700;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(165deg, #0c2147 0%, #0b1f33 55%, #070d20 100%);
}
.dchh__overlay--map {
    background: none;
}

/* het plot-vlak vult de hele band — de kaart loopt van rand tot rand */
.dchh__plot {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(40% 54% at 31% 31%, rgba(0, 119, 204, 0.5), transparent 62%),
        radial-gradient(44% 58% at 73% 78%, rgba(0, 119, 204, 0.4), transparent 64%),
        radial-gradient(80% 84% at 52% 26%, #143369 0%, transparent 74%);
}

.dchh__map {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}
.dchh__map-ink path {
    fill: rgba(170, 200, 255, 0.66);
}

/* ---- NL ⟶ TR connection route ------------------------------------------ */
.dchh__route {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: visible;
}
.dchh__route-line {
    fill: none;
    stroke: #ffffff;
    stroke-width: 3.4;
    stroke-linecap: round;
    stroke-dasharray: 1 14;
    filter: drop-shadow(0 0 6px rgba(120, 170, 255, 0.85));
    animation: dchh-route 1.3s linear infinite;
}
.dchh__route-cap {
    fill: #ffffff;
    filter: drop-shadow(0 0 8px rgba(120, 170, 255, 0.95));
    animation: dchh-route-cap 2.6s ease-in-out infinite;
}
@keyframes dchh-route { to { stroke-dashoffset: -30; } }
@keyframes dchh-route-cap {
    0%, 100% { opacity: 0.65; }
    50%      { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
    .dchh__route-line, .dchh__route-cap { animation: none; }
}

.dchh__hotspot {
    position: absolute;
    left: var(--dchh-x);
    top: var(--dchh-y);
    transform: translate(-50%, -50%);
    width: 32px; height: 32px;
    border-radius: 50%;
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 0;
    z-index: 3;          /* boven de route + route-cap */
    opacity: 0;
    animation: dchh-pop 0.6s cubic-bezier(.2,.8,.2,1) forwards;
    animation-delay: calc(var(--dchh-i, 0) * 150ms);
}

.dchh__pulse {
    position: absolute; inset: 0;
    border-radius: 50%;
    background: rgba(0, 119, 204, 0.5);
    animation: dchh-ping 2.4s ease-out infinite;
}

.dchh__dot {
    position: absolute; inset: 8px;
    border-radius: 50%;
    background: #fff;
    border: 4px solid var(--dc-primary-2);
    box-shadow: 0 8px 18px -8px rgba(11, 31, 51, 0.6);
}

.dchh__tip {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 12px);
    transform: translateX(-50%) translateY(6px);
    min-width: 200px;
    padding: 14px 16px;
    border-radius: var(--dc-radius-sm);
    background: rgba(255, 255, 255, 0.96);
    color: var(--dc-ink);
    box-shadow: var(--dc-shadow-md);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(.2,.8,.2,1);
    text-align: left;
}
.dchh__tip::after {
    content: ""; position: absolute;
    top: 100%; left: 50%; transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: rgba(255, 255, 255, 0.96);
}
.dchh__tip strong { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 2px; }
.dchh__tip span { display: block; font-size: 12.5px; color: var(--dc-ink-soft); line-height: 1.5; }

.dchh__hotspot:hover .dchh__tip,
.dchh__hotspot:focus .dchh__tip { opacity: 1; transform: translateX(-50%) translateY(0); }

@keyframes dchh-pop {
    to { opacity: 1; }
}
@keyframes dchh-ping {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(2.4); opacity: 0; }
}

/* ---- Mobiel ------------------------------------------------------------- */
@media (max-width: 900px) {
    .dchh { padding: clamp(56px, 12vw, 90px) clamp(16px, 5vw, 40px); }
}
@media (max-width: 640px) {
    .dchh__hotspot { width: 24px; height: 24px; }
    .dchh__dot { inset: 6px; border-width: 3px; }
    .dchh__tip {
        min-width: 0;
        width: max-content;
        max-width: 62vw;
        padding: 10px 12px;
        bottom: calc(100% + 9px);
    }
    .dchh__tip strong { font-size: 12.5px; }
    .dchh__tip span { font-size: 11.5px; }
    /* tooltips bij de randen netjes binnen het kader houden */
    .dchh__hotspot:first-child .dchh__tip { left: 0; transform: translateX(0) translateY(6px); }
    .dchh__hotspot:first-child:hover .dchh__tip,
    .dchh__hotspot:first-child:focus .dchh__tip { transform: translateX(0) translateY(0); }
    .dchh__hotspot:last-child .dchh__tip { left: auto; right: 0; transform: translateX(0) translateY(6px); }
    .dchh__hotspot:last-child .dchh__tip::after { left: auto; right: 14px; transform: none; }
    .dchh__hotspot:last-child:hover .dchh__tip,
    .dchh__hotspot:last-child:focus .dchh__tip { transform: translateX(0) translateY(0); }
}
