/* DentaVista — dc-technology widget styles */
.dv-tech { background: var(--dv-mint); }
                .dv-tech__blob--a { width: 420px; height: 420px; top: -140px; left: -120px; background: rgba(91, 182, 223,.20); }
                .dv-tech__blob--b { width: 320px; height: 320px; bottom: -120px; right: -90px; background: rgba(31, 42, 51,.06); }
                .dv-tech__inner { position: relative; z-index: 1; }

                .dv-tech__head { max-width: 720px; margin: 0 0 clamp(30px, 4vw, 48px); }
                .dv-tech__title { margin-bottom: 16px; }
                .dv-tech__lead { margin: 0; }

                /* ---- Swap layout ---- */
                .dv-tech__swap {
                    display: grid; grid-template-columns: 1fr 1.05fr;
                    gap: clamp(28px, 4vw, 64px); align-items: center;
                }

                /* LEFT list */
                .dv-tech__list { display: flex; flex-direction: column; gap: 12px; }
                .dv-tech__item {
                    display: flex; align-items: flex-start; gap: 16px; text-align: left;
                    width: 100%; padding: 18px 18px; cursor: pointer;
                    background: var(--dv-white); border: 1.5px solid var(--dv-line);
                    border-radius: 18px; box-shadow: var(--dv-shadow-sm);
                    font-family: var(--dv-font-body); color: var(--dv-ink);
                    transition: transform .25s var(--dv-ease), border-color .25s var(--dv-ease), box-shadow .25s var(--dv-ease), background .25s var(--dv-ease);
                }
                .dv-tech__item:hover { transform: translateX(4px); border-color: rgba(91, 182, 223,.4); }
                .dv-tech__item:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(91, 182, 223,.55); }
                .dv-tech__item.is-active {
                    border-color: var(--dv-teal-600);
                    box-shadow: 0 22px 44px -26px rgba(63, 160, 206,.6);
                }
                .dv-tech__item-icon {
                    width: 46px; height: 46px; flex: none; border-radius: 13px; color: var(--dv-teal-600);
                    display: inline-flex; align-items: center; justify-content: center;
                    background: var(--dv-teal-050); border: 1px solid var(--dv-line);
                    transition: background .25s var(--dv-ease), color .25s var(--dv-ease), transform .35s var(--dv-spring);
                }
                .dv-tech__item.is-active .dv-tech__item-icon { background: var(--dv-teal-600); color: #fff; transform: scale(1.05); }
                .dv-tech__item-icon svg { width: 23px; height: 23px; }
                .dv-tech__item-body { display: flex; flex-direction: column; gap: 5px; min-width: 0; }
                .dv-tech__item-body strong { font-family: var(--dv-font-head); font-weight: 700; color: var(--dv-navy); font-size: 1.1rem; }
                .dv-tech__item-body span { color: var(--dv-muted); font-size: 15px; line-height: 1.55; }
                .dv-tech__item-chev {
                    margin-left: auto; align-self: center; flex: none; color: #c4d2db;
                    opacity: 0; transform: translateX(-6px);
                    transition: opacity .25s var(--dv-ease), transform .25s var(--dv-ease), color .25s var(--dv-ease);
                }
                .dv-tech__item-chev svg { width: 20px; height: 20px; }
                .dv-tech__item:hover .dv-tech__item-chev,
                .dv-tech__item.is-active .dv-tech__item-chev { opacity: 1; transform: none; color: var(--dv-teal-600); }

                .dv-tech__cta { margin-top: 10px; align-self: flex-start; }

                /* RIGHT stage / panels */
                .dv-tech__stage { position: relative; min-height: clamp(360px, 42vw, 480px); }
                .dv-tech__halo {
                    position: absolute; inset: 8% 6%; border-radius: 32px;
                    background: rgba(63, 160, 206,.06); z-index: 0;
                }
                .dv-tech__panel {
                    position: absolute; inset: 0; z-index: 1;
                    display: flex; align-items: center; justify-content: center;
                    opacity: 0; visibility: hidden; transform: scale(.96) translateY(14px);
                    transition: opacity .4s var(--dv-ease), transform .5s var(--dv-spring), visibility .4s;
                    pointer-events: none;
                }
                .dv-tech__panel.is-active { opacity: 1; visibility: visible; transform: none; pointer-events: auto; }

                .dv-tech__device {
                    position: relative; z-index: 2; width: min(100%, 460px);
                    background: var(--dv-white); border: 1px solid var(--dv-line);
                    border-radius: 22px; box-shadow: var(--dv-shadow-lg);
                    padding: 14px; transform-style: preserve-3d;
                    transition: transform .3s var(--dv-ease);
                }
                .dv-tech__device-bar { display: flex; gap: 7px; padding: 4px 6px 12px; }
                .dv-tech__device-bar i { width: 10px; height: 10px; border-radius: 50%; background: var(--dv-line); }
                .dv-tech__device-bar i:first-child { background: var(--dv-teal-600); }
                .dv-tech__device-screen {
                    border-radius: 14px; overflow: hidden; aspect-ratio: 16/11;
                    background: var(--dv-mint); border: 1px solid var(--dv-line);
                }
                .dv-tech__device-screen img { width: 100%; height: 100%; object-fit: cover; display: block; }

                .dv-tech__chip {
                    position: absolute; z-index: 3; right: -6px; bottom: 10%;
                    display: flex; align-items: center; gap: 13px;
                    padding: 14px 18px; border-radius: 16px;
                    background: rgba(255,255,255,.96); backdrop-filter: blur(10px);
                    border: 1px solid rgba(255,255,255,.85); box-shadow: var(--dv-shadow);
                    max-width: 78%;
                }
                .dv-tech__chip-icon {
                    width: 40px; height: 40px; flex: none; border-radius: 11px; color: #fff;
                    display: inline-flex; align-items: center; justify-content: center;
                    background: var(--dv-teal-600);
                }
                .dv-tech__chip-icon svg { width: 21px; height: 21px; }
                .dv-tech__chip-body { display: flex; flex-direction: column; min-width: 0; }
                .dv-tech__chip-body strong { font-family: var(--dv-font-head); font-weight: 700; color: var(--dv-navy); font-size: 14.5px; }
                .dv-tech__chip-body span { color: var(--dv-muted); font-size: 12.5px; }

                @media (max-width: 980px) {
                    .dv-tech__swap { grid-template-columns: 1fr; }
                    .dv-tech__stage { order: 1; max-width: 480px; margin: 0 auto; width: 100%; }
                    .dv-tech__list { order: 2; }
                    .dv-tech__cta { align-self: stretch; }
                }
                @media (max-width: 600px) {
                    .dv-tech__item { padding: 15px; gap: 13px; }
                    .dv-tech__item-body span { font-size: 14px; }
                    .dv-tech__chip { right: 0; max-width: 90%; padding: 12px 14px; }
                    .dv-tech__cta { width: 100%; }
                }
                @media (prefers-reduced-motion: reduce) {
                    .dv-tech__panel { transition: opacity .2s linear, visibility .2s; transform: none; }
                    .dv-tech__panel.is-active { transform: none; }
                    .dv-tech__device { transform: none !important; }
                }
