/* DentaVista — dc-faq widget styles */
.dv-faq { background: var(--dv-cream); }
                .dv-faq__blob--a { width: 440px; height: 440px; bottom: -160px; right: -140px; background: rgba(91, 182, 223,.18); }
                .dv-faq__inner {
                    position: relative; z-index: 1;
                    display: grid; grid-template-columns: .92fr 1.08fr;
                    gap: clamp(32px, 5vw, 72px); align-items: start;
                }

                .dv-faq__sticky { position: sticky; top: 110px; }
                .dv-faq__title { margin-bottom: 16px; }
                .dv-faq__sticky .dv-lead { margin-bottom: 28px; }

                /* Teal contact CTA card */
                .dv-faq__cta {
                    padding: clamp(24px, 3vw, 32px);
                    border-radius: var(--dv-radius);
                    background: var(--dv-teal-600);
                    color: #fff;
                    box-shadow: 0 30px 60px -28px rgba(63, 160, 206,.7);
                }
                .dv-faq__cta-icon {
                    display: inline-flex; align-items: center; justify-content: center;
                    width: 50px; height: 50px; border-radius: 14px; margin-bottom: 16px;
                    color: #fff; background: rgba(255,255,255,.16);
                }
                .dv-faq__cta-icon svg { width: 24px; height: 24px; }
                .dv-faq__cta-text { margin: 0 0 22px; color: #fff; font-weight: 600; font-size: 1.05rem; line-height: 1.55; }
                .dv-faq__cta-actions { display: flex; flex-direction: column; gap: 12px; }

                .dv-faq__call {
                    display: flex; align-items: center; gap: 14px; min-height: 56px;
                    padding: 12px 18px; border-radius: var(--dv-radius-sm);
                    background: rgba(255,255,255,.14); text-decoration: none; color: #fff;
                    transition: background .25s var(--dv-ease), transform .3s var(--dv-spring);
                }
                .dv-faq__call:hover { background: rgba(255,255,255,.22); transform: translateY(-2px); }
                .dv-faq__call svg { width: 22px; height: 22px; flex: none; }
                .dv-faq__call span { display: flex; flex-direction: column; line-height: 1.25; }
                .dv-faq__call small { font-size: 12px; opacity: .82; }
                .dv-faq__call strong { font-size: 1.05rem; font-family: var(--dv-font-head); }
                .dv-faq__ask { width: 100%; }

                /* Filter pills */
                .dv-faq__filter { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
                .dv-faq__pill {
                    cursor: pointer; min-height: 44px;
                    padding: 10px 20px; border-radius: var(--dv-radius-pill);
                    border: 1.5px solid var(--dv-line); background: #fff;
                    font-family: var(--dv-font-body); font-size: 14px; font-weight: 700;
                    color: var(--dv-navy-700);
                    transition: background .25s var(--dv-ease), border-color .25s var(--dv-ease), color .25s var(--dv-ease), transform .3s var(--dv-spring);
                }
                .dv-faq__pill:hover { border-color: var(--dv-teal); color: var(--dv-teal-600); transform: translateY(-2px); }
                .dv-faq__pill.is-active { background: var(--dv-navy); border-color: var(--dv-navy); color: #fff; }

                /* Panels: tabs show/hide */
                .dv-faq__main[data-dv-tabs] .dv-faq__panel { display: none; }
                .dv-faq__main[data-dv-tabs] .dv-faq__panel.is-active { display: flex; }
                .dv-faq__panel { flex-direction: column; gap: 14px; }
                .dv-faq__main:not([data-dv-tabs]) .dv-faq__panel { display: flex; }

                .dv-faq__item {
                    background: #fff; border: 1px solid var(--dv-line);
                    border-radius: var(--dv-radius-sm);
                    box-shadow: var(--dv-shadow-sm);
                    overflow: hidden;
                    transition: border-color .3s var(--dv-ease), box-shadow .3s var(--dv-ease);
                }
                .dv-faq__item.is-open { border-color: rgba(91, 182, 223,.45); box-shadow: var(--dv-shadow); }

                .dv-faq__q {
                    width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px;
                    padding: 22px 24px; margin: 0; cursor: pointer; text-align: left; min-height: 44px;
                    background: transparent; border: 0;
                    font-family: var(--dv-font-head); font-weight: 700; font-size: 1.08rem;
                    color: var(--dv-navy); line-height: 1.35;
                    transition: color .3s var(--dv-ease);
                }
                .dv-faq__q:hover { color: var(--dv-teal-600); }
                .dv-faq__q:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(91, 182, 223,.55); border-radius: var(--dv-radius-sm); }
                .dv-faq__item.is-open .dv-faq__q { color: var(--dv-teal-600); }

                .dv-faq__icon {
                    flex: none; width: 36px; height: 36px; border-radius: 50%;
                    display: inline-flex; align-items: center; justify-content: center;
                    color: var(--dv-teal-600); background: var(--dv-teal-050);
                    transition: transform .4s var(--dv-spring), background .3s var(--dv-ease), color .3s var(--dv-ease);
                }
                .dv-faq__icon svg { width: 18px; height: 18px; }
                .dv-faq__item.is-open .dv-faq__icon {
                    transform: rotate(180deg);
                    background: var(--dv-teal-600);
                    color: #fff;
                }

                .dv-faq__a {
                    display: grid; grid-template-rows: 0fr;
                    transition: grid-template-rows .45s var(--dv-ease);
                }
                .dv-faq__item.is-open .dv-faq__a { grid-template-rows: 1fr; }
                .dv-faq__a-inner { overflow: hidden; }
                .dv-faq__a-inner p {
                    margin: 0; padding: 0 24px 24px; color: var(--dv-muted);
                    font-size: 1rem; line-height: 1.65;
                }

                @media (max-width: 980px) {
                    .dv-faq__inner { grid-template-columns: 1fr; }
                    .dv-faq__sticky { position: static; }
                }
                @media (max-width: 600px) {
                    .dv-faq__q { padding: 18px 18px; font-size: 1rem; }
                    .dv-faq__a-inner p { padding: 0 18px 20px; }
                    .dv-faq__pill { flex: 1 1 auto; }
                }
                @media (prefers-reduced-motion: reduce) {
                    .dv-faq__a, .dv-faq__icon, .dv-faq__pill, .dv-faq__call, .dv-faq__ask { transition: none; }
                }
