/* ==========================================================================
   KROTAR — Delivery section, interactive area selector
   Same pattern as assets/css/marketing-digital.css (independent file/classes
   on purpose, so neither section's styles can affect the other): a vertical
   list of areas acts as a selector on the left, a single reused card on the
   right swaps its content on hover/focus. Reuses existing tokens only
   (--color-cyan, --duration-fast, --ease-premium, .glass-card, .service-title,
   .service-desc, .service-link) — no new colors, fonts or effects. No
   ambient-glow here on purpose: reviews.css already establishes this section
   as deliberately "sober... no dominant blue wash", so this redesign keeps
   that same quieter lighting rather than importing Marketing Digital's glow.
   ========================================================================== */

.dv-reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.3s var(--ease-premium), transform 0.3s var(--ease-premium);
}

.dv-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.dv-layout {
    position: relative;
    display: grid;
    grid-template-columns: minmax(220px, 300px) 1fr;
    gap: var(--space-6);
    align-items: start;
    margin-bottom: var(--space-7);
}

.dv-service-list {
    list-style: none;
    display: flex;
    flex-direction: column;
}

.dv-service-item {
    display: block;
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    border-left: 2px solid transparent;
    padding: 0.9rem 1.1rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-body);
    cursor: pointer;
    transition: color var(--duration-fast) ease, border-color var(--duration-fast) ease,
        background var(--duration-fast) ease;
}

.dv-service-item:hover,
.dv-service-item:focus-visible {
    color: var(--color-text);
    background: rgba(255, 255, 255, 0.03);
}

.dv-service-item.is-active {
    color: var(--color-text);
    border-left-color: var(--color-cyan);
    background: rgba(255, 255, 255, 0.04);
}

.dv-card {
    padding: var(--space-6);
}

.dv-card .service-title {
    display: block;
    margin-bottom: var(--space-3);
}

.dv-card .service-desc {
    display: block;
    margin-bottom: var(--space-4);
}

.dv-card-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: var(--space-5);
}

.dv-card-bullets li {
    position: relative;
    padding-left: 1.2rem;
    font-size: 0.94rem;
    line-height: 1.5;
    color: var(--color-text-body);
}

.dv-card-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-cyan);
}

.dv-card .dv-card-title,
.dv-card .dv-card-desc,
.dv-card .dv-card-bullets,
.dv-card .service-link {
    transition: opacity var(--duration-fast) ease, transform var(--duration-fast) ease;
}

.dv-card.is-updating .dv-card-title,
.dv-card.is-updating .dv-card-desc,
.dv-card.is-updating .dv-card-bullets,
.dv-card.is-updating .service-link {
    opacity: 0;
    transform: translateY(6px);
}

@media (max-width: 860px) {
    .dv-layout {
        grid-template-columns: 1fr;
    }
}
