:root {
    --dch-bg-deep: #0b0f14;
    --dch-bg-mid: #111820;
    --dch-bg-card: rgba(22, 28, 38, 0.85);
    --dch-accent: #c9a227;
    --dch-accent-soft: rgba(201, 162, 39, 0.25);
    --dch-accent-glow: rgba(201, 162, 39, 0.35);
    --dch-border: rgba(255, 255, 255, 0.06);
    --dch-border-strong: rgba(201, 162, 39, 0.2);
    --dch-text: #e8eaed;
    --dch-text-soft: #8b95a0;
    --dch-font: 'DM Sans', system-ui, sans-serif;
    --dch-font-head: 'Outfit', sans-serif;
    --dch-radius: 12px;
    --dch-radius-sm: 8px;
    --dch-ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --dch-transition: 0.32s var(--dch-ease);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 88px;
}

body {
    font-family: var(--dch-font);
    background: var(--dch-bg-deep);
    color: var(--dch-text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body.dch-menu-open { overflow: hidden; }

.dch-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.dch-bg__base {
    position: absolute;
    inset: 0;
    background: linear-gradient(148deg, #0b0f14 0%, #0f1622 35%, #0d131c 70%, #0b0f14 100%);
}

.dch-bg__paths {
    position: absolute;
    inset: -20%;
    overflow: visible;
}

.dch-bg__paths svg {
    position: absolute;
    width: 140%;
    height: 140%;
    left: -20%;
    top: -20%;
    opacity: 0.85;
}

.dch-bg__paths path {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.dch-bg__paths path.dch-path-flow {
    stroke-width: 2;
    stroke: rgba(201, 162, 39, 0.55);
}

.dch-bg__paths path.dch-path-flow--2 {
    stroke: rgba(201, 162, 39, 0.4);
    stroke-width: 1.6;
}

.dch-bg__paths path.dch-path-flow--3 {
    stroke: rgba(201, 162, 39, 0.28);
    stroke-width: 1.2;
}

.dch-bg__vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 90% 80% at 50% 30%, transparent 0%, rgba(11, 15, 20, 0.4) 70%, rgba(11, 15, 20, 0.92) 100%);
}

main { position: relative; z-index: 2; min-height: 55vh; }
.dch-header, .dch-section, .dch-footer { position: relative; z-index: 1; }

.dch-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(14px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.dch-modal.is-open { opacity: 1; visibility: visible; }

.dch-modal__box {
    background: var(--dch-bg-card);
    border: 1px solid var(--dch-border-strong);
    border-radius: var(--dch-radius);
    padding: 2rem;
    max-width: 400px;
    width: 100%;
    text-align: center;
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.5);
    transform: scale(0.96);
    transition: transform 0.32s var(--dch-ease);
}

.dch-modal.is-open .dch-modal__box { transform: scale(1); }

.dch-modal__title {
    font-family: var(--dch-font-head);
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--dch-accent);
    margin-bottom: 0.6rem;
}

.dch-modal__text {
    font-size: 0.95rem;
    color: var(--dch-text-soft);
    margin-bottom: 1.5rem;
    line-height: 1.55;
}

.dch-modal__actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.dch-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-family: var(--dch-font);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--dch-radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--dch-transition);
    text-decoration: none;
}

.dch-btn--primary {
    background: linear-gradient(135deg, var(--dch-accent) 0%, #a8861f 100%);
    color: #0b0f14;
    box-shadow: 0 4px 20px var(--dch-accent-soft);
}

.dch-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px var(--dch-accent-glow);
}

.dch-btn--outline {
    background: transparent;
    color: var(--dch-text);
    border: 1px solid var(--dch-border-strong);
}

.dch-btn--outline:hover {
    border-color: var(--dch-accent);
    color: var(--dch-accent);
}

.dch-cookie {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 1rem 1.5rem;
    background: var(--dch-bg-card);
    border-top: 1px solid var(--dch-border);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4);
    transform: translateY(100%);
    transition: transform 0.35s var(--dch-ease);
}

.dch-cookie.is-visible { transform: translateY(0); }

.dch-cookie__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.dch-cookie__text {
    font-size: 0.9rem;
    color: var(--dch-text-soft);
    flex: 1;
    min-width: 200px;
}

.dch-cookie__text a { color: var(--dch-accent); text-decoration: none; }
.dch-cookie__text a:hover { text-decoration: underline; }

.dch-cookie__actions { display: flex; gap: 0.5rem; flex-shrink: 0; }

.dch-header {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0.75rem 0;
    background: rgba(11, 15, 20, 0.88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--dch-border);
    transition: box-shadow 0.3s, border-color 0.3s;
}

.dch-header.is-scrolled {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
    border-bottom-color: var(--dch-border-strong);
}

.dch-header__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dch-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--dch-font-head);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--dch-text);
    text-decoration: none;
    transition: color 0.2s;
}

.dch-logo:hover { color: var(--dch-accent); }

.dch-logo__icon {
    width: 40px;
    height: 40px;
    display: block;
    object-fit: contain;
}

.dch-nav { display: flex; align-items: center; }

.dch-nav__list {
    display: flex;
    list-style: none;
    gap: 0.25rem;
}

.dch-nav__link {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dch-text-soft);
    text-decoration: none;
    border-radius: var(--dch-radius-sm);
    transition: color 0.2s, background 0.2s;
}

.dch-nav__link:hover,
.dch-nav__link[aria-current="page"] {
    color: var(--dch-accent);
    background: var(--dch-accent-soft);
}

.dch-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: 1px solid var(--dch-border);
    border-radius: var(--dch-radius-sm);
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.dch-burger:hover { border-color: var(--dch-accent); background: var(--dch-accent-soft); }

.dch-burger span {
    display: block;
    height: 2px;
    background: var(--dch-text);
    border-radius: 1px;
    transition: transform 0.3s, opacity 0.3s;
}

.dch-burger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.dch-burger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.dch-burger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.dch-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dch-bg-mid);
    border-bottom: 1px solid var(--dch-border);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    padding: 1rem 1.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
}

.dch-dropdown.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dch-dropdown__list {
    list-style: none;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.dch-dropdown__link {
    display: block;
    padding: 0.65rem 1rem;
    font-size: 0.95rem;
    color: var(--dch-text-soft);
    text-decoration: none;
    border-radius: var(--dch-radius-sm);
    transition: color 0.2s, background 0.2s;
}

.dch-dropdown__link:hover {
    color: var(--dch-accent);
    background: var(--dch-accent-soft);
}

@media (max-width: 991px) {
    .dch-nav { display: none; }
    .dch-burger { display: flex; }
    .dch-dropdown { display: block; }
}

.dch-hero {
    padding: 4rem 1.5rem 3.5rem;
    text-align: center;
}

.dch-hero__badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--dch-accent);
    background: var(--dch-accent-soft);
    border-radius: var(--dch-radius-sm);
    margin-bottom: 1.25rem;
    animation: dch-badge-pulse 3s ease-in-out infinite;
}

@keyframes dch-badge-pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--dch-accent-soft); }
    50% { opacity: 0.9; }
    75% { box-shadow: 0 0 0 8px transparent; }
}

.dch-hero__title {
    font-family: var(--dch-font-head);
    font-weight: 700;
    font-size: clamp(1.85rem, 4.2vw, 2.6rem);
    line-height: 1.2;
    color: var(--dch-text);
    max-width: 720px;
    margin: 0 auto 1rem;
}

.dch-hero__sub {
    font-size: 1.05rem;
    color: var(--dch-text-soft);
    max-width: 580px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.dch-hero__ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.dch-section {
    padding: 3rem 1.5rem;
}

.dch-container {
    max-width: 1100px;
    margin: 0 auto;
}

.dch-section__head {
    text-align: center;
    margin-bottom: 2.5rem;
}

.dch-section__title {
    font-family: var(--dch-font-head);
    font-weight: 700;
    font-size: clamp(1.5rem, 3vw, 1.85rem);
    color: var(--dch-text);
    margin-bottom: 0.5rem;
}

.dch-section__sub {
    font-size: 1rem;
    color: var(--dch-text-soft);
}

.dch-trust {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.dch-trust__item {
    padding: 1.75rem;
    background: var(--dch-bg-card);
    border: 1px solid var(--dch-border);
    border-radius: var(--dch-radius);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.dch-trust__item:hover {
    border-color: var(--dch-border-strong);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.dch-trust__icon {
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: var(--dch-accent-soft);
    border-radius: var(--dch-radius-sm);
}

.dch-trust__title {
    font-family: var(--dch-font-head);
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--dch-text);
    margin-bottom: 0.5rem;
}

.dch-trust__text {
    font-size: 0.9rem;
    color: var(--dch-text-soft);
    line-height: 1.55;
}

.dch-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dch-card {
    background: var(--dch-bg-card);
    border: 1px solid var(--dch-border);
    border-radius: var(--dch-radius);
    overflow: hidden;
    animation: dch-card-glow 4s ease-in-out infinite;
}

.dch-card:nth-child(1) { animation-delay: 0s; }
.dch-card:nth-child(2) { animation-delay: 0.5s; }
.dch-card:nth-child(3) { animation-delay: 1s; }

@keyframes dch-card-glow {
    0%, 100% { box-shadow: 0 0 0 0 transparent, 0 4px 20px rgba(0, 0, 0, 0.2); }
    50% { box-shadow: 0 0 24px var(--dch-accent-soft), 0 4px 24px rgba(0, 0, 0, 0.25); border-color: var(--dch-border-strong); }
}

.dch-card__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    flex-wrap: wrap;
}

.dch-card__brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.dch-card__logo {
    width: 80px;
    height: 48px;
    object-fit: contain;
    filter: brightness(1.05);
}

.dch-card__name {
    font-family: var(--dch-font-head);
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--dch-text);
}

.dch-card__toggle {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dch-accent);
    background: transparent;
    border: 1px solid var(--dch-accent);
    border-radius: var(--dch-radius-sm);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.dch-card__toggle:hover {
    background: var(--dch-accent-soft);
    color: var(--dch-text);
}

.dch-card__expand {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--dch-ease);
}

.dch-card.is-open .dch-card__expand { max-height: 480px; }

.dch-card__expand-inner {
    padding: 0 1.5rem 1.5rem;
    border-top: 1px solid var(--dch-border);
}

.dch-card__desc {
    font-size: 0.95rem;
    color: var(--dch-text-soft);
    line-height: 1.6;
    margin: 1rem 0;
}

.dch-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.dch-card__bonus {
    font-size: 0.9rem;
    color: var(--dch-accent);
    font-weight: 600;
}

.dch-card__rating {
    font-size: 0.9rem;
    color: var(--dch-text-soft);
}

.dch-card__cta {
    margin-top: 1rem;
}

.dch-page-hero {
    padding: 3rem 1.5rem 2rem;
    text-align: center;
}

.dch-page-hero h1 {
    font-family: var(--dch-font-head);
    font-weight: 700;
    font-size: clamp(1.6rem, 3.5vw, 2rem);
    color: var(--dch-text);
    margin-bottom: 0.5rem;
}

.dch-page-hero p {
    font-size: 1rem;
    color: var(--dch-text-soft);
    max-width: 560px;
    margin: 0 auto;
}

.dch-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 1.5rem 3rem;
}

.dch-content h2 {
    font-family: var(--dch-font-head);
    font-weight: 600;
    font-size: 1.35rem;
    color: var(--dch-text);
    margin: 2rem 0 0.75rem;
}

.dch-content h2:first-child { margin-top: 0; }

.dch-content p {
    font-size: 0.98rem;
    color: var(--dch-text-soft);
    line-height: 1.65;
    margin-bottom: 1rem;
}

.dch-content a {
    color: var(--dch-accent);
    text-decoration: none;
}

.dch-content a:hover { text-decoration: underline; }

.dch-content ul {
    margin: 0 0 1rem 1.25rem;
    color: var(--dch-text-soft);
    line-height: 1.7;
}

.dch-faq-list { max-width: 680px; margin: 0 auto; }

.dch-faq-item {
    border: 1px solid var(--dch-border);
    border-radius: var(--dch-radius-sm);
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.dch-faq-item summary {
    padding: 1rem 1.25rem;
    font-weight: 600;
    color: var(--dch-text);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}

.dch-faq-item summary::-webkit-details-marker { display: none; }

.dch-faq-item summary::after {
    content: '+';
    font-size: 1.25rem;
    color: var(--dch-accent);
    transition: transform 0.3s;
}

.dch-faq-item[open] summary::after { transform: rotate(45deg); }

.dch-faq-item summary:hover { background: rgba(255, 255, 255, 0.02); }

.dch-faq-item__content {
    padding: 0 1.25rem 1.25rem;
    font-size: 0.95rem;
    color: var(--dch-text-soft);
    line-height: 1.6;
    border-top: 1px solid var(--dch-border);
}

.dch-form {
    max-width: 520px;
    margin: 0 auto 2rem;
}

.dch-form__group {
    margin-bottom: 1.25rem;
}

.dch-form__label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dch-text);
    margin-bottom: 0.4rem;
}

.dch-form__input,
.dch-form__textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--dch-font);
    font-size: 0.95rem;
    color: var(--dch-text);
    background: var(--dch-bg-card);
    border: 1px solid var(--dch-border);
    border-radius: var(--dch-radius-sm);
    transition: border-color 0.2s;
}

.dch-form__input:focus,
.dch-form__textarea:focus {
    outline: none;
    border-color: var(--dch-accent);
}

.dch-form__textarea { min-height: 140px; resize: vertical; }

.dch-form-success {
    display: block;
    padding: 1rem 1.25rem;
    margin-bottom: 1.25rem;
    background: rgba(34, 139, 34, 0.18);
    border: 1px solid rgba(34, 139, 34, 0.45);
    border-radius: var(--dch-radius-sm);
    color: #5cb85c;
    font-weight: 500;
}

.dch-form-success[hidden] { display: none !important; }

.dch-footer {
    padding: 3rem 1.5rem 2rem;
    background: var(--dch-bg-mid);
    border-top: 1px solid var(--dch-border);
    margin-top: 3rem;
}

.dch-footer__inner { max-width: 1200px; margin: 0 auto; }

.dch-footer__badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.dch-footer__badge-link {
    display: flex;
    align-items: center;
    height: 44px;
    opacity: 0.85;
    transition: opacity 0.2s;
}

.dch-footer__badge-link:hover { opacity: 1; }

.dch-footer__badge-link img {
    max-height: 44px;
    max-width: 120px;
    width: auto;
    object-fit: contain;
}

.dch-footer__disclaimer {
    font-size: 0.85rem;
    color: var(--dch-text-soft);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
}

.dch-footer__responsible {
    background: rgba(201, 162, 39, 0.08);
    border: 1px solid var(--dch-border-strong);
    border-radius: var(--dch-radius-sm);
    padding: 1.25rem 1.5rem;
    margin-bottom: 2rem;
}

.dch-footer__responsible h3 {
    font-family: var(--dch-font-head);
    font-size: 1rem;
    font-weight: 600;
    color: var(--dch-accent);
    margin-bottom: 0.75rem;
}

.dch-footer__responsible p {
    font-size: 0.9rem;
    color: var(--dch-text-soft);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.dch-footer__responsible a {
    color: var(--dch-accent);
    text-decoration: none;
}

.dch-footer__responsible a:hover { text-decoration: underline; }

.dch-footer__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 1.5rem;
    margin-bottom: 2rem;
}

.dch-footer__links a {
    font-size: 0.9rem;
    color: var(--dch-text-soft);
    text-decoration: none;
    transition: color 0.2s;
}

.dch-footer__links a:hover { color: var(--dch-accent); }

.dch-footer__legal {
    text-align: center;
    font-size: 0.8rem;
    color: var(--dch-text-soft);
    line-height: 1.7;
}

.dch-footer__legal p { margin-bottom: 0.35rem; }

.dch-footer__copy {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--dch-border);
}

.dch-footer__copy p { margin-bottom: 0.25rem; }

.dch-animate-in {
    opacity: 0;
    transform: translateY(16px);
    animation: dch-fade-up 0.6s var(--dch-ease) forwards;
}

.dch-animate-in:nth-child(1) { animation-delay: 0.05s; }
.dch-animate-in:nth-child(2) { animation-delay: 0.12s; }
.dch-animate-in:nth-child(3) { animation-delay: 0.19s; }

@keyframes dch-fade-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .dch-hero { padding: 3rem 1rem 2.5rem; }
    .dch-card__row { flex-direction: column; align-items: flex-start; }
    .dch-footer__badges { gap: 1rem; }
}
