/* ============================================
   DREAMTEAM11 HOMEPAGE V2
   Completely isolated - no dependencies
   ============================================ */

/* ===== VARIABLES ===== */
:root {
    --hv2-gold: #c5a572;
    --hv2-gold-dark: #a08552;
    --hv2-blue: #1a365d;
    --hv2-blue-accent: #02426b;
    --hv2-bg: #0f1419;
    --hv2-bg-darker: #0a0d11;
    --hv2-text: #e5e7eb;
    --hv2-text-muted: #9ca3af;

    --hv2-whatsapp-rgb: 37 211 102;
    --hv2-facebook-rgb: 24 119 242;
    --hv2-instagram-rgb: 228 64 95;
    --hv2-tiktok-rgb: 0 0 0;
    --hv2-overlay-top: rgb(8 14 24 / 55%);
    --hv2-overlay-bottom: rgb(8 14 24 / 70%);
    --hv2-card-bg: linear-gradient(180deg, rgb(255 255 255 / 12%), rgb(255 255 255 / 4%));
    --hv2-card-border: 1px solid rgb(255 255 255 / 22%);
}

/* ===== FONTS (self-hosted Inter; replaces Google Fonts) ===== */
@font-face {
    font-family: Inter;
    font-style: normal;
    font-weight: 100 900;
    font-display: optional;
    src: url('/fonts/inter/inter-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: Inter;
    font-style: normal;
    font-weight: 100 900;
    font-display: optional;
    src: url('/fonts/inter/inter-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ===== RESET ===== */
.dt-page-home-v2,
.dt-page-home-v2 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== BODY ===== */
.dt-page-home-v2 {
    font-family: Inter, system-ui, sans-serif;
    line-height: 1.6;
    color: var(--hv2-text);
    background: var(--hv2-bg);
    overflow-x: hidden;
}

/* Fixed stadium background */
.dt-page-home-v2::before {
    content: '';
    position: fixed;
    inset: 0;
    /* Overlay gradients MUST be in the same background-image declaration as the photo,
       otherwise background-image overrides and the gradients are lost. */
    background-image:
        linear-gradient(180deg, var(--hv2-overlay-top), var(--hv2-overlay-bottom)),
        radial-gradient(1200px 500px at 70% -10%, rgb(45 212 191 / 12%), transparent 60%),
        radial-gradient(1000px 420px at 12% 8%, rgb(59 130 246 / 10%), transparent 55%),
        url('/images/homepage/stadium-hero-bg.jpg');
    /* Progressive enhancement: better image formats */
    background-image:
        linear-gradient(180deg, var(--hv2-overlay-top), var(--hv2-overlay-bottom)),
        radial-gradient(1200px 500px at 70% -10%, rgb(45 212 191 / 12%), transparent 60%),
        radial-gradient(1000px 420px at 12% 8%, rgb(59 130 246 / 10%), transparent 55%),
        image-set(
            url('/images/homepage/stadium-hero-bg.avif') type('image/avif'),
            url('/images/homepage/stadium-hero-bg.webp') type('image/webp'),
            url('/images/homepage/stadium-hero-bg.jpg') type('image/jpeg')
        );
    background-size: 100% 100%, 100% 100%, 100% 100%, cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: -1;
    pointer-events: none;
}

/* ===== SKIP LINK ===== */
.dt-skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--hv2-gold);
    color: var(--hv2-bg);
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    z-index: 10000;
}

.dt-skip-link:focus {
    top: 0;
}

/* ===== A11Y UTILS ===== */
.dt-sr-only {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

/* ===== HEADER ===== */
.dt-home-header {
    position: sticky;
    top: 0;
    background: rgb(15 20 25 / 95%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgb(255 255 255 / 10%);
    z-index: 100;
    padding: 0.5rem 0;
    height: 70px;
}

.dt-home-header__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.dt-home-logo {
    display: flex;
    align-items: center;
}

.dt-home-logo img {
    height: 60px;
    width: auto;
    transform: scale(1.4);
    transform-origin: left center;
}

/* Language Selector */
.dt-home-lang-selector {
    position: relative;
    margin-left: 2rem;
}

.dt-home-lang-trigger {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgb(255 255 255 / 5%);
    border: 1px solid rgb(255 255 255 / 15%);
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--hv2-text);
}

.dt-home-lang-trigger:hover {
    background: rgb(255 255 255 / 10%);
    border-color: var(--hv2-gold);
}

.dt-home-lang-icon {
    width: 18px;
    height: 18px;
    color: var(--hv2-gold);
}

.dt-home-lang-flag {
    border-radius: 2px;
}

.dt-home-lang-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: var(--hv2-bg-darker);
    border: 1px solid rgb(255 255 255 / 15%);
    border-radius: 8px;
    min-width: 180px;
    box-shadow: 0 8px 24px rgb(0 0 0 / 40%);
    z-index: 200;
    overflow: hidden;
}

.dt-home-lang-menu form {
    display: flex;
    flex-direction: column;
}

.dt-home-lang-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: transparent;
    border: none;
    color: var(--hv2-text);
    cursor: pointer;
    transition: background 0.2s;
    text-align: left;
    width: 100%;
    font-size: 0.95rem;
}

.dt-home-lang-option:hover {
    background: rgb(197 165 114 / 10%);
}

.dt-home-lang-option.is-active {
    background: rgb(197 165 114 / 20%);
    font-weight: 600;
    color: var(--hv2-gold);
}

.dt-gtm-noscript-iframe {
    display: none;
    visibility: hidden;
}

.dt-home-socials {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.dt-home-social-link {
    --dt-home-social-rgb: 255 255 255;
    color: rgb(var(--dt-home-social-rgb));
    background: rgb(var(--dt-home-social-rgb) / 16%);
    border: 1px solid rgb(var(--dt-home-social-rgb) / 28%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.dt-home-social-link:hover,
.dt-home-social-link:focus {
    background: rgb(var(--dt-home-social-rgb) / 22%);
    transform: scale(1.1);
}

.dt-home-social-link:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgb(197 165 114 / 35%);
}

.dt-home-social-link--whatsapp {
    --dt-home-social-rgb: var(--hv2-whatsapp-rgb);
}

.dt-home-social-link--facebook {
    --dt-home-social-rgb: var(--hv2-facebook-rgb);
}

.dt-home-social-link--instagram {
    --dt-home-social-rgb: var(--hv2-instagram-rgb);
}

.dt-home-social-link--tiktok {
    --dt-home-social-rgb: var(--hv2-tiktok-rgb);
}

/* TikTok: zwarte icon-kleur + lichte tile voor contrast op donkere achtergrond */
.dt-home-social-link--tiktok {
    color: rgb(var(--hv2-tiktok-rgb));
    background: rgb(255 255 255 / 86%);
    border-color: rgb(255 255 255 / 70%);
}

.dt-home-social-link--tiktok:hover,
.dt-home-social-link--tiktok:focus {
    background: rgb(255 255 255 / 92%);
}

.dt-home-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.dt-home-nav__link {
    color: var(--hv2-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.dt-home-nav__link:hover {
    color: var(--hv2-gold);
}

/* Responsive Header */
@media (width <= 768px) {
    .dt-home-header {
        height: 60px;
    }

    .dt-home-header__inner {
        padding: 0 1rem;
    }

    .dt-home-logo img {
        height: 40px;
        transform: scale(1.2);
    }

    .dt-home-lang-selector {
        margin-left: auto;
        margin-right: 1rem;
    }

    .dt-home-nav {
        gap: 1rem;
    }

    .dt-home-nav .dt-btn {
        width: auto;
    }

    .dt-home-nav__link {
        display: none; /* Hide "Hoe werkt het?" on mobile */
    }

    .dt-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

/* ===== BUTTONS ===== */
.dt-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.dt-btn--primary {
    background: var(--hv2-gold);
    color: var(--hv2-bg);
}

.dt-btn--primary:hover {
    background: var(--hv2-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgb(197 165 114 / 30%);
}

.dt-btn--secondary {
    background: transparent;
    color: var(--hv2-text);
    border: 2px solid var(--hv2-text);
}

.dt-btn--secondary:hover {
    background: var(--hv2-text);
    color: var(--hv2-bg);
}

.dt-btn--large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

/* ===== COOKIE CONSENT ===== */
.dt-page-home-v2.dt-cookie-visible {
    padding-bottom: var(--dt-cookie-h, 0);
}

.dt-cookie-consent__backdrop {
    position: fixed;
    inset: 0;
    background: rgb(0 0 0 / 60%);
    z-index: 999;
}

.dt-cookie-consent {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background: rgb(15 20 25 / 95%);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgb(255 255 255 / 10%);
    padding: 0.75rem 0 calc(0.75rem + env(safe-area-inset-bottom));
}

.dt-cookie-consent[hidden],
.dt-cookie-consent__backdrop[hidden] {
    display: none !important;
}

.dt-cookie-consent__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.dt-cookie-consent__text {
    font-size: 0.95rem;
    color: var(--hv2-text);
}

.dt-cookie-consent__text a {
    color: var(--hv2-gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.dt-cookie-consent__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: flex-end;
}

.dt-cookie-consent .dt-btn {
    background: transparent;
    color: var(--hv2-text);
    border: 2px solid rgb(255 255 255 / 15%);
}

.dt-cookie-consent .dt-btn:hover {
    border-color: var(--hv2-gold);
    transform: translateY(-1px);
}

.dt-cookie-consent .dt-btn--ghost {
    border-color: rgb(255 255 255 / 15%);
    opacity: 0.9;
}

.dt-cookie-consent .dt-btn--secondary {
    border-color: rgb(255 255 255 / 35%);
}

.dt-cookie-consent__accept {
    background: var(--hv2-gold);
    color: var(--hv2-bg);
    border-color: var(--hv2-gold);
}

.dt-cookie-consent__accept:hover {
    background: var(--hv2-gold-dark);
    border-color: var(--hv2-gold-dark);
    box-shadow: 0 10px 25px rgb(197 165 114 / 25%);
}

@media (width <= 768px) {
    .dt-cookie-consent__inner {
        padding: 0 1rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .dt-cookie-consent__actions {
        width: 100%;
        justify-content: flex-start;
    }
}

/* ===== HERO ===== */
.dt-v2-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgb(26 54 93 / 80%) 0%, rgb(15 20 25 / 80%) 100%);
    padding: 4rem 2rem;
    contain: layout;
}

.dt-v2-hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.12;
    z-index: 0;
}

.dt-v2-hero__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.12;
    z-index: 0;
    display: none;
    contain: layout style paint;
}

.dt-v2-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dt-v2-hero__content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.dt-v2-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgb(197 165 114 / 10%);
    border: 1px solid var(--hv2-gold);
    color: var(--hv2-gold);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.dt-v2-hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--hv2-text);
    text-shadow: 0 2px 16px rgb(0 0 0 / 80%);
}

.dt-v2-hero__title--highlight {
    color: var(--hv2-gold);
}

.dt-v2-hero__subtitle {
    font-size: 1.25rem;
    color: var(--hv2-text-muted);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.dt-v2-hero__cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.dt-v2-trust {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 0.875rem;
    color: var(--hv2-text-muted);
}

.dt-v2-trust__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dt-v2-trust__icon {
    color: var(--hv2-gold);
    font-size: 1.25rem;
}

/* ===== SECTION ===== */
.dt-v2-section {
    padding: 6rem 2rem;
    position: relative;
    /* Very subtle dark backdrop for readable text on the stadium photo */
    background: rgb(8 12 18 / 20%);
}

.dt-v2-section--dark {
    background: rgb(10 13 17 / 70%);
}

.dt-v2-section--gradient {
    background: linear-gradient(135deg, rgb(26 54 93 / 75%) 0%, rgb(15 20 25 / 75%) 100%);
}

.dt-v2-container {
    max-width: 1200px;
    margin: 0 auto;
}

.dt-v2-section__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--hv2-text);
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 0 1px 14px rgb(0 0 0 / 75%);
}

.dt-v2-section__subtitle {
    text-align: center;
    color: rgb(226 232 240 / 96%);
    font-size: 1.125rem;
    margin-bottom: 3rem;
    text-shadow: 0 1px 10px rgb(0 0 0 / 60%);
}

.dt-v2-card {
    margin-bottom: 2rem;
    padding: 2rem;
    background: var(--hv2-card-bg);
    border: var(--hv2-card-border);
    border-radius: 16px;
    backdrop-filter: blur(18px);
}

/* ===== STATS ===== */
.dt-v2-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    background: linear-gradient(180deg, rgb(255 255 255 / 12%), rgb(255 255 255 / 4%));
    border: 1px solid rgb(255 255 255 / 22%);
    border-radius: 16px;
    padding: 3rem;
    backdrop-filter: blur(18px);
}

.dt-v2-stat {
    text-align: center;
}

.dt-v2-stat__number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--hv2-gold);
    margin-bottom: 0.5rem;
}

.dt-v2-stat__label {
    color: var(--hv2-text-muted);
    font-size: 1rem;
}

/* ===== USP GRID ===== */
.dt-v2-usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

@media (width >= 1200px) {
    .dt-v2-usp-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dt-v2-usp-card {
    background: linear-gradient(180deg, rgb(8 14 24 / 78%), rgb(8 14 24 / 64%));
    border: 1px solid rgb(255 255 255 / 22%);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s;
    backdrop-filter: blur(18px);
}

.dt-v2-usp-card:hover {
    transform: translateY(-8px);
    border-color: var(--hv2-gold);
    box-shadow: 0 20px 40px rgb(0 0 0 / 30%);
}

.dt-v2-usp-card__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.dt-v2-usp-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.dt-v2-usp-card__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.dt-v2-usp-card__text {
    color: rgb(226 232 240 / 96%);
    font-size: 0.95rem;
    line-height: 1.6;
    text-shadow: 0 1px 8px rgb(0 0 0 / 42%);
}

.dt-v2-usp-card__meta {
    margin-top: 0.75rem;
    color: rgb(156 163 175 / 95%);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ===== STEPS ===== */
.dt-v2-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.dt-v2-step {
    text-align: center;
}

.dt-v2-step__number {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(180deg, rgb(255 255 255 / 16%), rgb(255 255 255 / 5%));
    backdrop-filter: blur(18px);
    border: 2px solid var(--hv2-gold);
    color: var(--hv2-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgb(197 165 114 / 30%);
}

.dt-v2-step__title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.dt-v2-step__text {
    color: var(--hv2-text-muted);
}

.dt-v2-step__meta {
    margin-top: 0.75rem;
    color: rgb(226 232 240 / 92%);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ===== IMPACT ===== */
.dt-v2-impact {
    background: linear-gradient(135deg, rgb(197 165 114 / 10%), rgb(2 66 107 / 10%));
    border: 2px solid var(--hv2-gold);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    margin-top: 3rem;
}

.dt-v2-impact__images {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}

.dt-v2-impact__images img {
    max-width: 200px;
    width: 100%;
    height: auto;
}

.dt-v2-progress {
    background: rgb(0 0 0 / 30%);
    border-radius: 50px;
    height: 24px;
    margin: 2rem 0;
    overflow: hidden;
}

.dt-v2-progress__fill {
    background: linear-gradient(90deg, var(--hv2-gold), var(--hv2-gold-dark));
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 1rem;
    color: var(--hv2-bg);
    font-weight: 700;
    font-size: 0.875rem;
    transition: width 2s ease-out;
}

.dt-v2-foundations {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.dt-v2-foundation {
    padding: 0.75rem 1.5rem;
    background: rgb(255 255 255 / 5%);
    border-radius: 8px;
    font-size: 0.875rem;
}

/* ===== ROADMAP ===== */
.dt-v2-roadmap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.dt-v2-roadmap-card {
    background: linear-gradient(180deg, rgb(255 255 255 / 12%), rgb(255 255 255 / 4%));
    border: 1px solid rgb(255 255 255 / 22%);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s;
    backdrop-filter: blur(18px);
}

.dt-v2-roadmap-card:hover {
    transform: translateY(-8px);
    border-color: var(--hv2-gold);
}

.dt-v2-roadmap-card__badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--hv2-gold), var(--hv2-gold-dark));
    color: var(--hv2-bg);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.dt-v2-roadmap-card__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.dt-v2-roadmap-card__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.dt-v2-roadmap-card__text {
    color: var(--hv2-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== FINAL CTA ===== */
.dt-v2-cta {
    background: linear-gradient(135deg, var(--hv2-blue) 0%, var(--hv2-blue-accent) 100%);
    border-radius: 16px;
    padding: 4rem 2rem;
    text-align: center;
}

.dt-v2-countdown {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.dt-v2-countdown__item {
    background: rgb(0 0 0 / 30%);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    min-width: 80px;
}

.dt-v2-countdown__number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--hv2-gold);
}

.dt-v2-countdown__label {
    font-size: 0.75rem;
    color: var(--hv2-text-muted);
    text-transform: uppercase;
}

/* ===== FOOTER ===== */
.dt-home-footer {
    background: var(--hv2-bg-darker);
    padding: 3rem 2rem;
    border-top: 1px solid rgb(255 255 255 / 10%);
}

.dt-home-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.dt-home-footer__stack {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.dt-home-footer__links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.dt-home-footer__copyright {
    opacity: 0.6;
    font-size: 0.875rem;
    text-align: center;
    color: var(--hv2-text-muted);
}

.dt-home-footer__links a {
    color: var(--hv2-text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.dt-home-footer__links a:hover {
    color: var(--hv2-gold);
}

/* ===== LEGAL PAGES ===== */
.dt-hv2-legal-hero {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.dt-hv2-legal-hero__container {
    max-width: 700px;
    text-align: center;
}

.dt-hv2-legal-hero__container--wide {
    max-width: 800px;
}

.dt-hv2-legal-hero__emoji {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.dt-hv2-legal-hero__title {
    font-size: clamp(2rem, 4vw, 2.5rem);
}

.dt-hv2-legal-hero__subtitle {
    font-size: 1.1rem;
    color: var(--hv2-text-muted);
    margin-top: 1rem;
}

.dt-hv2-legal-hero__subtitle--narrow {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.dt-hv2-legal-form__container {
    max-width: 600px;
}

.dt-hv2-legal-content__container {
    max-width: 800px;
}

.dt-hv2-legal-surface {
    background: rgb(255 255 255 / 3%);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgb(255 255 255 / 10%);
    backdrop-filter: blur(12px);
}

.dt-hv2-surface {
    background: rgb(255 255 255 / 3%);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgb(255 255 255 / 10%);
}

.dt-hv2-surface--pad-lg {
    padding: 2.5rem;
}

.dt-hv2-surface--center {
    text-align: center;
}

.dt-hv2-surface--soft {
    background: rgb(255 255 255 / 5%);
}

.dt-hv2-surface--soft-gold {
    background: rgb(255 255 255 / 5%);
    border-color: rgb(197 165 114 / 30%);
}

.dt-hv2-surface--gold {
    background: rgb(197 165 114 / 10%);
    border: 2px solid var(--hv2-gold);
}

.dt-hv2-surface--blue {
    background: rgb(2 66 107 / 30%);
    border-color: rgb(2 66 107 / 50%);
}

.dt-hv2-surface--left-accent {
    border-left: 4px solid var(--hv2-gold);
}

.dt-hv2-surface-white {
    background: #fff;
    padding: 1rem;
    border-radius: 8px;
    display: inline-block;
}

.dt-hv2-legal-honeypot {
    position: absolute;
    left: -9999px;
}

.dt-hv2-legal-field {
    margin-bottom: 1.5rem;
}

.dt-hv2-legal-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--hv2-text);
}

.dt-hv2-legal-required {
    color: #ff6b6b;
}

.dt-hv2-legal-input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgb(255 255 255 / 5%);
    border: 1px solid rgb(255 255 255 / 15%);
    border-radius: 8px;
    color: var(--hv2-text);
    font-size: 1rem;
}

.dt-hv2-legal-input:focus {
    outline: none;
    border-color: var(--hv2-gold);
    box-shadow: 0 0 0 3px rgb(197 165 114 / 22%);
}

.dt-hv2-legal-textarea {
    font-family: inherit;
    resize: vertical;
    min-height: 140px;
}

.dt-hv2-legal-error {
    color: #ff6b6b;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.dt-hv2-legal-note {
    font-size: 0.875rem;
    color: var(--hv2-text-muted);
    margin-bottom: 2rem;
}

.dt-hv2-legal-submit {
    width: 100%;
    justify-content: center;
}

.dt-hv2-legal-social {
    max-width: 700px;
    text-align: center;
}

.dt-hv2-legal-social__title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.dt-hv2-legal-social__subtitle {
    margin-bottom: 2rem;
}

.dt-hv2-legal-socials {
    justify-content: center;
}

.dt-hv2-legal-card__title {
    margin-top: 0;
    font-size: 1.4rem;
}

.dt-hv2-legal-card__paragraph-last {
    margin-top: 1rem;
    margin-bottom: 0;
}

.dt-hv2-legal-card--alert {
    border-left: 3px solid var(--hv2-gold);
}

.dt-hv2-legal-card__meta {
    margin-bottom: 0;
    color: var(--hv2-text-muted);
    font-size: 0.9rem;
}

.dt-hv2-legal-table {
    border-collapse: collapse;
    width: 100%;
    margin-top: 1rem;
}

.dt-hv2-legal-table td {
    padding: 0.6rem 0;
    vertical-align: top;
}

.dt-hv2-legal-table__label {
    padding-right: 1rem !important;
    font-weight: 600;
    white-space: nowrap;
}

.dt-hv2-legal-link {
    color: var(--hv2-gold);
}

.dt-hv2-legal-link:hover,
.dt-hv2-legal-link:focus {
    color: #e4c28b;
}

.dt-hv2-legal-list {
    margin: 0.5rem 0 1rem 1.5rem;
    line-height: 2;
}

.dt-hv2-legal-legal-basis {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgb(255 255 255 / 4%);
    border: 1px solid rgb(255 255 255 / 12%);
    border-radius: 10px;
    font-size: 0.85rem;
    color: var(--hv2-text-muted);
}

/* ===== ANIMATIONS ===== */
.dt-v2-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s, transform 0.6s;
}

.dt-v2-fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (width <= 768px) {
    .dt-home-nav {
        gap: 1rem;
    }

    .dt-home-nav__link {
        display: none;
    }

    .dt-v2-hero__cta {
        flex-direction: column;
    }

    .dt-v2-hero__video {
        display: none;
    }

    .dt-v2-hero__image {
        display: block;
    }

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

    .dt-v2-usp-grid,
    .dt-v2-steps {
        grid-template-columns: 1fr;
    }

    .dt-v2-stats {
        grid-template-columns: 1fr;
    }

    .dt-v2-impact__images {
        flex-direction: row;
    }

    .dt-v2-impact__images img {
        max-width: 150px;
    }

    .dt-hv2-legal-surface,
    .dt-v2-card {
        padding: 1.25rem;
    }

    .dt-hv2-legal-hero {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .dt-hv2-legal-list {
        line-height: 1.7;
    }

    .dt-hv2-legal-table,
    .dt-hv2-legal-table tbody,
    .dt-hv2-legal-table tr,
    .dt-hv2-legal-table td {
        display: block;
        width: 100%;
    }

    .dt-hv2-legal-table td {
        padding: 0.35rem 0;
    }

    .dt-hv2-legal-table__label {
        padding-top: 0.75rem;
    }

    .dt-hv2-legal-input,
    .dt-hv2-legal-submit {
        min-height: 44px;
    }

    .dt-page-home-v2.dt-cookie-visible .dt-hv2-legal-form__container,
    .dt-page-home-v2.dt-cookie-visible .dt-hv2-legal-content__container {
        padding-bottom: calc(var(--dt-cookie-h, 0) + 1.25rem);
    }
}

@media (width <= 480px) {
    .dt-home-header {
        height: auto;
        min-height: 60px;
    }

    .dt-home-header__inner {
        flex-wrap: wrap;
        align-items: center;
        row-gap: 0.35rem;
    }

    .dt-home-nav {
        margin-left: auto;
    }

    .dt-home-header__inner .dt-home-socials {
        display: flex;
        order: 4;
        flex: 0 0 100%;
        justify-content: center;
        margin-top: 0.2rem;
    }

    .dt-home-header__inner {
        gap: 0.4rem;
        padding-top: 0.35rem;
        padding-bottom: 0.35rem;
    }

    .dt-home-logo img {
        height: 34px;
        transform: none;
    }

    .dt-home-lang-selector {
        margin-right: 0.5rem;
    }

    .dt-home-nav .dt-btn {
        max-width: 86px;
        padding: 0.5rem 0.5rem;
        font-size: 0.82rem;
        line-height: 1.15;
        text-align: center;
        white-space: normal;
    }

    .dt-home-social-link {
        width: 30px;
        height: 30px;
    }
}

/* ===== EARLY BIRD PAGE ===== */
.dt-hv2-eb-hero {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.dt-hv2-eb-hero__container {
    max-width: 700px;
    text-align: center;
}

.dt-hv2-eb-hero__emoji {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.dt-hv2-eb-hero__title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.dt-hv2-eb-hero__subtitle {
    font-size: 1.25rem;
}

.dt-hv2-eb-container--wide {
    max-width: 1100px;
}

.dt-hv2-eb-container--content {
    max-width: 800px;
}

.dt-hv2-eb-center {
    text-align: center;
}

.dt-hv2-eb-usp-grid {
    margin-top: 3rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.dt-hv2-eb-bonus__emoji {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.dt-hv2-eb-bonus__title {
    font-size: 1.5rem;
}

.dt-hv2-eb-bonus__text {
    font-size: 1.1rem;
}

.dt-hv2-eb-center-cta {
    text-align: center;
    margin-top: 3rem;
}

.dt-hv2-eb-bonus-line {
    margin: 1.25rem auto 0;
    max-width: 780px;
    text-align: center;
    color: rgb(229 231 235 / 92%);
    font-weight: 600;
}

.dt-hv2-eb-package-surface {
    margin-top: 2rem;
}

.dt-hv2-eb-package-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dt-hv2-eb-package-item {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.dt-hv2-eb-package-item--divider {
    border-bottom: 1px solid rgb(255 255 255 / 10%);
}

.dt-hv2-eb-check {
    font-size: 1.5rem;
}

.dt-hv2-eb-note {
    text-align: center;
    margin-top: 2rem;
    color: var(--hv2-text-muted);
}

.dt-hv2-eb-steps {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.dt-hv2-eb-why {
    position: relative;
    isolation: isolate;
}

.dt-hv2-eb-why::before {
    content: '';
    position: absolute;
    inset: 1.5rem 0;
    border-radius: 20px;
    background: linear-gradient(180deg, rgb(10 15 24 / 82%), rgb(10 15 24 / 74%));
    border: 1px solid rgb(255 255 255 / 18%);
    z-index: -1;
}

.dt-hv2-eb-why .dt-v2-step {
    background: rgb(8 13 21 / 62%);
    border: 1px solid rgb(255 255 255 / 18%);
    border-radius: 16px;
    padding: 1.75rem 1.25rem;
    backdrop-filter: blur(4px);
}

.dt-hv2-eb-why .dt-v2-step__title {
    color: var(--hv2-text);
}

.dt-hv2-eb-why .dt-v2-step__text {
    color: rgb(229 231 235 / 95%);
}

.dt-hv2-eb-launch-card {
    margin-top: 3rem;
    background: rgb(7 20 38 / 78%);
    border: 1px solid rgb(255 255 255 / 18%);
    backdrop-filter: blur(6px);
}

.dt-hv2-eb-launch-title {
    font-size: 1.25rem;
    margin: 0;
}

.dt-hv2-eb-launch-note {
    margin: 0.5rem 0 0;
    color: rgb(229 231 235 / 92%);
}

.dt-hv2-eb-form__container {
    max-width: 600px;
}

.dt-hv2-eb-form__subtitle {
    text-align: center;
    color: var(--hv2-text-muted);
    margin-bottom: 3rem;
}

.dt-hv2-eb-help {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--hv2-text-muted);
}

.dt-hv2-eb-consent-wrap {
    margin-bottom: 2rem;
}

.dt-hv2-eb-consent-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.dt-hv2-eb-consent-check {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.dt-hv2-eb-consent-text {
    font-size: 0.9rem;
    color: var(--hv2-text);
    line-height: 1.5;
}

.dt-hv2-eb-link {
    color: var(--hv2-gold);
    text-decoration: underline;
}

.dt-hv2-eb-link:hover,
.dt-hv2-eb-link:focus {
    color: #e4c28b;
}

.dt-hv2-eb-form__note {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.875rem;
    color: var(--hv2-text-muted);
}

@media (width <= 768px) {
    .dt-hv2-eb-steps {
        grid-template-columns: 1fr;
    }

    .dt-hv2-eb-why::before {
        inset: 1rem 0;
        border-radius: 16px;
    }
}

/* ===== ACCESSIBILITY ===== */
*:focus-visible {
    outline: 3px solid var(--hv2-gold);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
