.hdv2-vds-faq {
    margin: 0;
    width: 100%;
    padding: 5rem 0 1.5rem;
    background: var(--hdv2-home-bg);
    color: var(--hdv2-home-text);
}

.hdv2-vds-faq__inner {
    max-width: 64rem;
}

.hdv2-vds-faq__head {
    margin-bottom: 3rem;
}

.hdv2-vds-faq__badge {
    display: inline-block;
    margin-bottom: 0.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--hdv2-home-primary);
    background: var(--hdv2-home-primary-soft);
}

.hdv2-vds-faq__title {
    margin: 0;
    font-size: clamp(1.5rem, 2.8vw, 1.875rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.25;
    color: var(--hdv2-home-text-strong);
}

.hdv2-vds-faq__lead {
    margin: 0.75rem 0 0;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--hdv2-home-muted);
}

.hdv2-vds-faq__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0 3rem;
}

.hdv2-vds-faq__item {
    border-bottom: 1px solid var(--hdv2-home-border);
}

.hdv2-vds-faq__col .hdv2-vds-faq__item:last-child {
    border-bottom: 0;
}

.hdv2-vds-faq__trigger-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 0;
    cursor: pointer;
}

.hdv2-vds-faq__question {
    margin: 0;
    flex: 1;
    min-width: 0;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.45;
    color: var(--hdv2-home-text-strong);
    transition: color 0.2s ease;
}

.hdv2-vds-faq__trigger-row:hover .hdv2-vds-faq__question {
    color: var(--hdv2-home-primary);
}

.hdv2-vds-faq__trigger {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    border: 0;
    background: none;
    cursor: pointer;
    color: var(--hdv2-home-muted);
}

.hdv2-vds-faq__trigger:focus {
    outline: none;
}

.hdv2-vds-faq__trigger:focus-visible {
    border-radius: 0.25rem;
    box-shadow: inset 0 0 0 2px var(--hdv2-home-primary);
}

.hdv2-vds-faq__icon {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    color: var(--hdv2-home-muted);
    transition: transform 0.2s ease, color 0.2s ease;
}

.hdv2-vds-faq__item--open .hdv2-vds-faq__icon {
    transform: rotate(180deg);
}

.hdv2-vds-faq__content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.2s ease;
}

.hdv2-vds-faq__item--open .hdv2-vds-faq__content {
    grid-template-rows: 1fr;
}

.hdv2-vds-faq__content-inner {
    overflow: hidden;
}

.hdv2-vds-faq__answer {
    margin: 0;
    padding-bottom: 1.25rem;
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--hdv2-home-muted);
}

.hdv2-vds-faq__cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 3rem;
    padding: 1.5rem;
    border-radius: 1rem;
    background: hsl(222 47% 11%);
}

:root[data-hdv2-theme="dark"] .hdv2-vds-faq__cta {
    background: hsl(220 5% 16%);
    border: 1px solid var(--hdv2-home-border);
}

.hdv2-vds-faq__cta-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
}

.hdv2-vds-faq__cta-desc {
    margin: 0.25rem 0 0;
    font-size: 0.875rem;
    line-height: 1.5;
    color: hsl(215 16% 65%);
}

.hdv2-vds-faq__cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.25rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: hsl(222 47% 11%);
    text-decoration: none;
    background: #fff;
    transition: background-color 0.2s ease;
}

.hdv2-vds-faq__cta-btn:hover {
    background: hsl(210 40% 96%);
}

@media (min-width: 768px) {
    .hdv2-vds-faq__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hdv2-vds-faq__cta {
        flex-direction: row;
        align-items: center;
    }
}

@media (max-width: 767px) {
    .hdv2-vds-faq {
        padding: 3.5rem 0 1.25rem;
    }

    .hdv2-vds-faq__col .hdv2-vds-faq__item:last-child {
        border-bottom: 1px solid var(--hdv2-home-border);
    }

    .hdv2-vds-faq__grid .hdv2-vds-faq__col:last-child .hdv2-vds-faq__item:last-child {
        border-bottom: 0;
    }
}
