:root {
    --dvf-bg: #07111f;
    --dvf-bg-soft: #0f1c31;
    --dvf-panel: rgba(12, 23, 40, 0.82);
    --dvf-panel-strong: #101c31;
    --dvf-card: #fdfefe;
    --dvf-card-soft: #edf5fb;
    --dvf-text: #f6f8fc;
    --dvf-text-soft: #b8c6dc;
    --dvf-ink: #0d1728;
    --dvf-line: rgba(255, 255, 255, 0.12);
    --dvf-line-soft: rgba(13, 23, 40, 0.08);
    --dvf-primary: #71e4b8;
    --dvf-primary-2: #4cbef1;
    --dvf-accent: #ffd978;
    --dvf-radius: 28px;
    --dvf-shadow: 0 24px 60px rgba(4, 12, 24, 0.28);
    --dvf-app-shadow: 0 40px 110px rgba(5, 12, 24, 0.24);
}

body.dvf-standalone-page {
    margin: 0;
    padding: 0;
    max-width: 100%;
    overflow-x: clip;
    background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.dvf-app,
.dvf-app *,
.dvf-app *::before,
.dvf-app *::after {
    box-sizing: border-box;
}

.dvf-app {
    font: 16px/1.5 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.dvf-app img {
    display: block;
    max-width: 100%;
}

.dvf-app a,
.dvf-app button,
.dvf-app input,
.dvf-app select,
.dvf-app textarea {
    font: inherit;
}

.dvf-app button {
    cursor: pointer;
}

.dvf-app {
    width: min(1280px, 100%);
    margin: 0 auto;
    padding: clamp(18px, 2.2vw, 32px);
    color: var(--dvf-text);
    overflow-x: clip;
    background:
        radial-gradient(circle at top left, rgba(76, 190, 241, 0.16), transparent 32%),
        radial-gradient(circle at bottom right, rgba(113, 228, 184, 0.14), transparent 28%),
        linear-gradient(180deg, #10203a 0%, #0c172b 44%, #08111f 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 36px;
    box-shadow: var(--dvf-app-shadow);
    position: relative;
    isolation: isolate;
}

.dvf-app::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 22%, transparent 78%, rgba(255, 255, 255, 0.03));
    pointer-events: none;
}

.dvf-app > * {
    position: relative;
    z-index: 1;
}

.dvf-app,
.dvf-app * {
    overflow-wrap: break-word;
}

.dvf-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
    gap: 22px;
    padding: clamp(22px, 3vw, 34px);
    border: 1px solid var(--dvf-line);
    border-radius: 34px;
    background:
        linear-gradient(135deg, rgba(84, 190, 241, 0.18), rgba(113, 228, 184, 0.08) 48%, rgba(255, 217, 120, 0.08) 100%),
        linear-gradient(180deg, rgba(16, 29, 51, 0.96), rgba(10, 19, 34, 0.96));
    box-shadow: var(--dvf-shadow);
    position: relative;
    isolation: isolate;
}

.dvf-hero::after {
    content: "";
    position: absolute;
    inset: auto -60px -60px auto;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(113, 228, 184, 0.28), transparent 65%);
    z-index: -1;
}

.dvf-badge,
.dvf-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #d7f5e8;
    background: rgba(113, 228, 184, 0.12);
    border: 1px solid rgba(113, 228, 184, 0.24);
}

.dvf-kicker {
    color: #7de8bf;
    background: rgba(113, 228, 184, 0.08);
}

.dvf-hero h2,
.dvf-section__head h3,
.dvf-modal h2 {
    margin: 14px 0 12px;
    line-height: 1.05;
}

.dvf-hero h2 {
    font-size: clamp(34px, 5vw, 60px);
    max-width: 13ch;
}

.dvf-app h2,
.dvf-app h3,
.dvf-app legend,
.dvf-app .dvf-note strong,
.dvf-app .dvf-panel > h4,
.dvf-app .dvf-section__head h3 {
    color: #ffffff;
}

.dvf-hero p,
.dvf-section__head p,
.dvf-note p,
.dvf-card p,
.dvf-guide-card p,
.dvf-result,
.dvf-symptom-panel p,
.dvf-modal p,
.dvf-helper {
    color: var(--dvf-text-soft);
}

.dvf-hero__actions,
.dvf-quicknav,
.dvf-actions-row,
.dvf-filter-row,
.dvf-card__actions,
.dvf-quiz__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.dvf-hero__actions {
    margin-top: 22px;
}

.dvf-quicknav {
    margin-top: 18px;
}

.dvf-quicknav a,
.dvf-chip {
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 16px;
    border: 1px solid var(--dvf-line);
    color: var(--dvf-text);
    background: rgba(255, 255, 255, 0.05);
    transition: .2s ease;
}

.dvf-chip.is-active,
.dvf-quicknav a:hover,
.dvf-chip:hover {
    transform: translateY(-1px);
    border-color: rgba(113, 228, 184, 0.36);
    background: rgba(113, 228, 184, 0.12);
}

.dvf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 18px;
    border-radius: 16px;
    border: 0;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.dvf-btn:hover {
    transform: translateY(-1px);
}

.dvf-btn--primary {
    color: #062230;
    background: linear-gradient(135deg, var(--dvf-primary) 0%, #8cf5cc 100%);
    box-shadow: 0 16px 36px rgba(113, 228, 184, 0.22);
    font-weight: 800;
}

.dvf-btn--ghost {
    color: var(--dvf-text);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--dvf-line);
}

.dvf-hero__panel,
.dvf-panel,
.dvf-guide-card,
.dvf-card,
.dvf-modal__dialog {
    border-radius: var(--dvf-radius);
    box-shadow: var(--dvf-shadow);
}

.dvf-hero__panel,
.dvf-panel {
    border: 1px solid var(--dvf-line);
    background: linear-gradient(180deg, rgba(18, 32, 56, 0.92), rgba(12, 23, 40, 0.88));
    backdrop-filter: blur(14px);
}

.dvf-hero__panel {
    padding: 22px;
    align-self: stretch;
}

.dvf-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.dvf-stats div,
.dvf-note {
    padding: 16px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.dvf-stats strong {
    display: block;
    font-size: 28px;
    color: #ffffff;
}

.dvf-stats span {
    font-size: 13px;
    color: var(--dvf-text-soft);
}

.dvf-note {
    margin-top: 14px;
}

.dvf-section {
    margin-top: 24px;
}

.dvf-section__head {
    margin-bottom: 16px;
}

.dvf-panel {
    padding: 20px;
}

.dvf-quiz,
.dvf-form {
    display: grid;
    gap: 18px;
}

.dvf-question {
    margin: 0;
    padding: 0;
    border: 0;
    display: grid;
    gap: 12px;
}

.dvf-question legend,
.dvf-card h4,
.dvf-guide-card h4,
.dvf-result h4,
.dvf-symptom-panel h4 {
    font-weight: 800;
}

.dvf-options,
.dvf-cards,
.dvf-guide-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.dvf-option {
    position: relative;
    display: grid;
    gap: 10px;
    min-height: 108px;
    padding: 16px;
    border-radius: 22px;
    border: 1px solid var(--dvf-line);
    background: rgba(255, 255, 255, 0.04);
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.dvf-option:hover {
    transform: translateY(-1px);
    border-color: rgba(113, 228, 184, 0.3);
}

.dvf-option input {
    position: absolute;
    inset: 0;
    opacity: 0;
}

.dvf-option__emoji {
    font-size: 26px;
}

.dvf-option__label {
    font-weight: 700;
    color: #ffffff;
}

.dvf-option.is-selected {
    border-color: rgba(113, 228, 184, 0.48);
    background: rgba(113, 228, 184, 0.12);
}

.dvf-quiz__actions {
    justify-content: space-between;
    align-items: center;
}

.dvf-quiz__actions span {
    color: var(--dvf-text-soft);
    font-size: 14px;
}

.dvf-grid {
    display: grid;
    gap: 18px;
}

.dvf-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dvf-form label {
    display: grid;
    gap: 8px;
    font-weight: 700;
}

.dvf-form span {
    color: #f0f6ff;
}

.dvf-form input,
.dvf-form select {
    width: 100%;
    min-width: 0;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid var(--dvf-line);
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    outline: none;
}

.dvf-form option {
    color: #0b1728;
}

.dvf-result {
    min-height: 100%;
    display: grid;
    align-content: start;
    gap: 14px;
}

.dvf-result.is-muted {
    opacity: .85;
}

.dvf-result__badge {
    display: inline-flex;
    width: fit-content;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 217, 120, 0.14);
    color: #ffe5a1;
    border: 1px solid rgba(255, 217, 120, 0.26);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.dvf-result__value {
    font-size: clamp(30px, 5vw, 54px);
    line-height: 1;
    font-weight: 900;
    color: #ffffff;
}

.dvf-map {
    position: relative;
    min-height: 360px;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.dvf-dog {
    font-size: clamp(120px, 20vw, 180px);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.24));
}

.dvf-hotspot {
    position: absolute;
    border: 1px solid rgba(113, 228, 184, 0.34);
    background: rgba(7, 17, 31, 0.84);
    color: #fff;
    padding: 12px 14px;
    border-radius: 999px;
}

.dvf-hotspot--head { top: 18%; left: 17%; }
.dvf-hotspot--coat { top: 32%; right: 14%; }
.dvf-hotspot--joints { bottom: 21%; left: 12%; }
.dvf-hotspot--belly { bottom: 16%; right: 16%; }

.dvf-guide-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.dvf-guide-card {
    padding: 22px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--dvf-line);
}

.dvf-guide-card span {
    font-size: 28px;
}

.dvf-filter-row {
    margin-bottom: 16px;
}

.dvf-product-panel {
    display: none;
}

.dvf-product-panel.is-active {
    display: block;
}

.dvf-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dvf-card {
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
    color: var(--dvf-ink);
    border: 1px solid rgba(162, 183, 205, 0.24);
    box-shadow: 0 20px 44px rgba(9, 18, 31, 0.12);
}

.dvf-card__media {
    aspect-ratio: 4 / 3;
    background: linear-gradient(180deg, #eef6ff 0%, #dfeaf7 100%);
}

.dvf-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dvf-card__body {
    display: grid;
    gap: 12px;
    padding: 18px;
}

.dvf-card__eyebrow,
.dvf-card__meta {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #567088;
}

.dvf-card h4 {
    margin: 0;
    font-size: 20px;
    line-height: 1.2;
}

.dvf-card p {
    margin: 0;
    color: #5e6b7a;
}

.dvf-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 2147483000;
}

.dvf-modal.is-open {
    display: flex;
}

.dvf-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 11, 21, 0.74);
    backdrop-filter: blur(6px);
}

.dvf-modal__dialog {
    position: relative;
    width: min(960px, 100%);
    max-height: calc(100vh - 40px);
    overflow: auto;
    background: #ffffff;
    color: #0d1728;
    border-radius: 30px;
}

.dvf-modal__dialog--wide {
    width: min(1100px, 100%);
}

.dvf-modal__close {
    position: sticky;
    top: 14px;
    margin: 14px 14px 0 auto;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 0;
    background: #edf3fa;
    color: #0d1728;
    font-size: 28px;
    z-index: 2;
}

.dvf-modal__body {
    padding: 8px 22px 24px;
}

.dvf-modal-grid,
.dvf-modal-product {
    display: grid;
    gap: 18px;
}

.dvf-modal-match {
    padding: 18px;
    border: 1px solid rgba(13, 23, 40, 0.08);
    border-radius: 24px;
    background: #f7fbff;
}

.dvf-modal-head {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
}

.dvf-modal-head span {
    font-size: 30px;
}

.dvf-mini-cards {
    display: grid;
    gap: 12px;
}

.dvf-mini-card {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(13, 23, 40, 0.08);
}

.dvf-mini-card img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 16px;
}

.dvf-mini-card h5,
.dvf-modal-product h3,
.dvf-modal-product h4 {
    margin: 0 0 6px;
}

.dvf-mini-card p,
.dvf-mini-card span,
.dvf-modal-match li,
.dvf-reminder-item small,
.dvf-reminder-item strong,
.dvf-modal-product p {
    color: #5a6877;
}

.dvf-modal-product {
    grid-template-columns: minmax(300px, .9fr) minmax(0, 1.1fr);
}

.dvf-modal-product__media img {
    width: 100%;
    border-radius: 26px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.dvf-copy-block {
    padding: 16px 18px;
    border-radius: 22px;
    background: #f7fbff;
    border: 1px solid rgba(13, 23, 40, 0.08);
}

.dvf-reminders {
    display: grid;
    gap: 12px;
    margin-top: 14px;
}

.dvf-reminder-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--dvf-line);
    min-width: 0;
    overflow: hidden;
}

.dvf-reminder-item > div {
    flex: 1 1 auto;
    min-width: 0;
}

.dvf-reminder-item strong,
.dvf-reminder-item small {
    display: block;
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.dvf-icon-btn {
    border: 1px solid var(--dvf-line);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border-radius: 14px;
    padding: 10px 14px;
    flex: 0 0 auto;
    white-space: nowrap;
}

@media (max-width: 1080px) {
    .dvf-options,
    .dvf-cards,
    .dvf-guide-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .dvf-hero,
    .dvf-grid--two,
    .dvf-modal-product {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .dvf-app {
        padding: 12px;
        border-radius: 24px;
    }
    .dvf-hero,
    .dvf-panel,
    .dvf-modal__body,
    .dvf-guide-card,
    .dvf-card__body {
        padding-left: 16px;
        padding-right: 16px;
    }
    .dvf-options,
    .dvf-cards,
    .dvf-guide-grid {
        grid-template-columns: 1fr;
    }
    .dvf-stats {
        grid-template-columns: 1fr 1fr;
    }
    .dvf-hotspot {
        font-size: 13px;
        padding: 10px 12px;
    }
    .dvf-mini-card {
        grid-template-columns: 64px minmax(0, 1fr);
    }
    .dvf-mini-card .dvf-btn {
        grid-column: 1 / -1;
    }
    .dvf-reminder-item {
        align-items: flex-start;
        flex-direction: column;
    }
}


.dvf-btn--sm {
    min-height: 42px;
    padding: 0 14px;
    font-size: 14px;
}

.dvf-quiz__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 4px;
}

.dvf-quiz__progress {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(113, 228, 184, 0.24);
    background: rgba(113, 228, 184, 0.10);
    color: #dcfff1;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.dvf-question {
    display: none;
}

.dvf-question.is-active {
    display: grid;
    animation: dvfFadeIn .28s ease;
}

.dvf-question legend {
    font-size: clamp(22px, 3.2vw, 32px);
    line-height: 1.15;
    margin-bottom: 8px;
}

@keyframes dvfFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.dvf-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dvf-option {
    min-height: 132px;
    align-content: center;
    justify-items: center;
    text-align: center;
    padding: 18px 16px;
}

.dvf-option__emoji {
    font-size: 34px;
    line-height: 1;
}

.dvf-option__label {
    display: block;
    max-width: 18ch;
}

.dvf-quiz__actions {
    justify-content: center;
    text-align: center;
}

.dvf-quiz__actions .dvf-btn {
    display: none;
}

.dvf-quiz__actions span {
    display: inline-block;
    margin: 0 auto;
}

.dvf-guide-grid,
.dvf-cards {
    align-items: stretch;
}

.dvf-guide-card,
.dvf-card {
    height: 100%;
}

.dvf-guide-card {
    display: grid;
    align-content: start;
    grid-template-rows: auto auto 1fr;
    gap: 10px;
    text-align: center;
    min-height: 100%;
}

.dvf-guide-card span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    margin: 0 auto 2px;
    border-radius: 50%;
    background: rgba(113, 228, 184, 0.12);
}

.dvf-card h4,
.dvf-card p,
.dvf-card__eyebrow,
.dvf-card__meta,
.dvf-mini-card h5,
.dvf-mini-card p,
.dvf-mini-card span,
.dvf-modal-match h3,
.dvf-modal-match p,
.dvf-modal-grid h2,
.dvf-modal-product h2,
.dvf-modal-product h4,
.dvf-modal-product p,
.dvf-copy-block h4,
.dvf-copy-block p {
    color: #0d1728;
}

.dvf-guide-card h4,
.dvf-guide-card p {
    color: #f6f8fc;
}

.dvf-card {
    display: grid;
    grid-template-rows: auto 1fr;
}

.dvf-card__body {
    grid-template-rows: auto auto minmax(3.9em, auto) auto auto;
    height: 100%;
}

.dvf-card h4 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.4em;
}

.dvf-card p {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 6em;
}

.dvf-card__actions {
    margin-top: auto;
    justify-content: center;
    align-items: stretch;
}

.dvf-card__actions .dvf-btn,
.dvf-mini-card .dvf-btn,
.dvf-actions-row .dvf-btn {
    justify-content: center;
    text-align: center;
}

.dvf-mini-card {
    grid-template-columns: 80px minmax(0, 1fr) 150px;
    align-items: center;
}

.dvf-mini-card__copy {
    min-width: 0;
}

.dvf-mini-card h5 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 16px;
    line-height: 1.28;
}

.dvf-mini-card p,
.dvf-mini-card span {
    display: block;
}

.dvf-mini-card .dvf-btn {
    width: 100%;
}

.dvf-modal__dialog,
.dvf-modal__body,
.dvf-modal-match,
.dvf-copy-block,
.dvf-mini-card,
.dvf-modal-product {
    color: #0d1728;
}

.dvf-modal__body .dvf-kicker {
    color: #167a59;
    background: rgba(113, 228, 184, 0.12);
    border-color: rgba(113, 228, 184, 0.24);
}

.dvf-hotspot.is-active {
    background: linear-gradient(135deg, var(--dvf-primary) 0%, #8cf5cc 100%);
    color: #052535;
    border-color: transparent;
}

@media (max-width: 1080px) {
    .dvf-mini-card {
        grid-template-columns: 80px minmax(0, 1fr);
    }

    .dvf-mini-card .dvf-btn {
        grid-column: 1 / -1;
    }
}

@media (max-width: 720px) {
    .dvf-quiz__meta {
        flex-direction: column;
        align-items: stretch;
    }

    .dvf-options {
        grid-template-columns: 1fr;
    }

    .dvf-option {
        min-height: 116px;
    }
}


.dvf-app .dvf-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 248px;
    gap: clamp(14px, 1.6vw, 22px);
    align-items: start;
    min-height: clamp(420px, 38vw, 560px);
    padding: clamp(18px, 2vw, 28px);
    border: 1px solid rgba(132, 185, 255, 0.16);
    border-radius: 34px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background:
        linear-gradient(90deg, rgba(2, 10, 23, 0.96) 0%, rgba(3, 13, 29, 0.92) 28%, rgba(4, 16, 33, 0.58) 52%, rgba(4, 14, 28, 0.28) 66%, rgba(4, 14, 28, 0.74) 100%),
        url('hero-dog-bg.webp') center right / cover no-repeat,
        linear-gradient(180deg, #09111f 0%, #07101d 100%);
    box-shadow: 0 32px 90px rgba(1, 7, 18, 0.42);
}

.dvf-app .dvf-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at left 78%, rgba(74, 240, 211, 0.32), transparent 24%), linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 16%);
    pointer-events: none;
    z-index: 0;
}

.dvf-app .dvf-hero::after {
    content: "";
    position: absolute;
    left: -4%;
    right: 32%;
    bottom: -22px;
    height: 120px;
    border-bottom: 2px solid rgba(121, 255, 229, 0.8);
    border-radius: 50%;
    filter: drop-shadow(0 0 18px rgba(121, 255, 229, 0.42));
    opacity: 0.9;
    pointer-events: none;
    z-index: 0;
}

.dvf-app .dvf-hero > * {
    position: relative;
    z-index: 1;
}

.dvf-app .dvf-hero__copy {
    max-width: 540px;
    padding-top: clamp(4px, .5vw, 10px);
}

.dvf-app .dvf-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 199, 95, 0.56);
    background: linear-gradient(180deg, rgba(16, 54, 73, 0.62), rgba(8, 24, 38, 0.74));
    color: #f2cc84;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05), 0 8px 22px rgba(0, 0, 0, 0.22);
}

.dvf-app .dvf-badge__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: rgba(255, 207, 119, 0.08);
    border: 1px solid rgba(255, 207, 119, 0.32);
    font-size: 15px;
}

.dvf-app .dvf-hero h2 {
    margin: 18px 0 12px;
    max-width: 11.5ch;
    color: #f7f5f0;
    font-size: clamp(38px, 4.5vw, 58px);
    line-height: 0.98;
    letter-spacing: -0.04em;
    text-wrap: balance;
}

.dvf-app .dvf-hero__accent {
    color: #f3c46b;
}

.dvf-app .dvf-hero p {
    max-width: 500px;
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.42;
    color: rgba(235, 240, 246, 0.86);
    text-wrap: pretty;
}

.dvf-app .dvf-hero__actions {
    margin-top: 18px;
    gap: 12px;
}

.dvf-app .dvf-hero__actions .dvf-btn {
    min-height: 54px;
    padding: 0 18px;
    border-radius: 18px;
    font-size: 15px;
    font-weight: 800;
    gap: 12px;
    justify-content: space-between;
    min-width: 220px;
}

.dvf-app .dvf-btn__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    font-size: 18px;
    flex: 0 0 auto;
}

.dvf-app .dvf-btn--primary {
    color: #f7d385;
    background: linear-gradient(180deg, rgba(0, 121, 130, 0.76), rgba(0, 74, 92, 0.92));
    border: 1px solid rgba(127, 255, 244, 0.45);
    box-shadow: 0 0 0 1px rgba(127, 255, 244, 0.1) inset, 0 18px 34px rgba(0, 52, 63, 0.35), 0 0 32px rgba(76, 246, 233, 0.16);
}

.dvf-app .dvf-btn--primary .dvf-btn__icon {
    background: transparent;
}

.dvf-app .dvf-btn--ghost {
    color: #f1c97b;
    background: linear-gradient(180deg, rgba(15, 26, 41, 0.8), rgba(9, 19, 31, 0.88));
    border: 1px solid rgba(243, 196, 107, 0.45);
}

.dvf-app .dvf-quicknav {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 700px;
}

.dvf-app .dvf-quicknav a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 14px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(180deg, rgba(23, 37, 57, 0.86), rgba(12, 21, 36, 0.92));
    color: #eaf0f7;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.dvf-app .dvf-quicknav__icon {
    font-size: 19px;
    line-height: 1;
}

.dvf-app .dvf-hero__panel {
    display: grid;
    gap: 12px;
    align-self: start;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

.dvf-app .dvf-stats,
.dvf-app .dvf-note {
    background: linear-gradient(180deg, rgba(16, 53, 64, 0.74), rgba(8, 24, 36, 0.86));
    border: 1px solid rgba(245, 206, 126, 0.28);
    border-radius: 22px;
    padding: 10px 14px;
    box-shadow: 0 20px 40px rgba(2, 9, 18, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.dvf-app .dvf-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.dvf-app .dvf-stat {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    padding: 11px 0;
}

.dvf-app .dvf-stat + .dvf-stat {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.dvf-app .dvf-stat__icon,
.dvf-app .dvf-note__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: rgba(255, 209, 127, 0.08);
    border: 1px solid rgba(255, 209, 127, 0.36);
    font-size: 24px;
}

.dvf-app .dvf-stat strong {
    display: block;
    font-size: 22px;
    line-height: 1;
    color: #f2cc84;
    margin-bottom: 4px;
}

.dvf-app .dvf-stat > div > span {
    display: block;
    color: rgba(239, 244, 249, 0.86);
    font-size: 12px;
}

.dvf-app .dvf-note {
    display: grid;
    gap: 10px;
    margin-top: 0;
    padding: 14px;
}

.dvf-app .dvf-note strong {
    color: #f2cc84;
    font-size: 16px;
    line-height: 1.2;
}

.dvf-app .dvf-note p {
    margin: 0;
    color: rgba(239, 244, 249, 0.86);
    font-size: 13px;
    line-height: 1.5;
}

@media (max-width: 1180px) {
    .dvf-app .dvf-hero {
        grid-template-columns: minmax(0, 1fr) 228px;
    }
    .dvf-app .dvf-hero h2 {
        font-size: clamp(34px, 5vw, 50px);
    }
    .dvf-app .dvf-hero__actions .dvf-btn {
        min-width: 200px;
    }
}

@media (max-width: 980px) {
    .dvf-app .dvf-hero {
        grid-template-columns: 1fr;
        min-height: auto;
        background:
            linear-gradient(180deg, rgba(2, 10, 23, 0.92) 0%, rgba(3, 13, 29, 0.78) 34%, rgba(4, 16, 33, 0.58) 58%, rgba(4, 14, 28, 0.86) 100%),
            url('hero-dog-bg.webp') 72% center / cover no-repeat,
            linear-gradient(180deg, #09111f 0%, #07101d 100%);
    }
    .dvf-app .dvf-hero__copy {
        max-width: 560px;
    }
    .dvf-app .dvf-hero__panel {
        max-width: 100%;
        grid-template-columns: 1fr 1fr;
    }
    .dvf-app .dvf-note {
        height: 100%;
        align-content: start;
    }
}

@media (max-width: 720px) {
    .dvf-app .dvf-hero {
        padding: 16px;
        border-radius: 22px;
        background:
            linear-gradient(180deg, rgba(2, 10, 23, 0.96) 0%, rgba(3, 13, 29, 0.68) 30%, rgba(4, 16, 33, 0.54) 54%, rgba(4, 14, 28, 0.94) 100%),
            url('hero-dog-bg.webp') 74% top / cover no-repeat,
            linear-gradient(180deg, #09111f 0%, #07101d 100%);
    }
    .dvf-app .dvf-hero::after {
        left: -20%;
        right: 8%;
        bottom: -34px;
        opacity: 0.7;
    }
    .dvf-app .dvf-hero h2 {
        margin-top: 14px;
        max-width: none;
        font-size: clamp(30px, 8.5vw, 42px);
    }
    .dvf-app .dvf-hero p {
        font-size: 15px;
        max-width: 100%;
    }
    .dvf-app .dvf-badge {
        width: 100%;
        justify-content: center;
        padding: 10px 16px;
    }
    .dvf-app .dvf-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .dvf-app .dvf-hero__actions .dvf-btn {
        width: 100%;
        min-width: 0;
        min-height: 52px;
        font-size: 15px;
    }
    .dvf-app .dvf-quicknav {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }
    .dvf-app .dvf-quicknav a {
        justify-content: center;
        padding: 0 8px;
        min-height: 42px;
    }
    .dvf-app .dvf-hero__panel {
        grid-template-columns: 1fr;
    }
    .dvf-app .dvf-stat {
        grid-template-columns: 38px minmax(0, 1fr);
    }
    .dvf-app .dvf-stat__icon,
    .dvf-app .dvf-note__icon {
        width: 34px;
        height: 34px;
        font-size: 18px;
    }
}


/* v6.3.0 hero + quiz cleanup */
.dvf-app .dvf-hero {
    grid-template-columns: minmax(0, 1fr) 220px;
}

.dvf-app .dvf-hero__panel {
    align-self: stretch;
    justify-content: start;
}

.dvf-app .dvf-hero__panel .dvf-note {
    min-height: 100%;
    align-content: start;
    justify-items: start;
}

.dvf-app .dvf-note__icon {
    margin-bottom: 2px;
}

.dvf-app .dvf-quiz .dvf-quiz__actions {
    justify-content: center;
    margin-top: 10px;
}

.dvf-app .dvf-quiz .dvf-quiz__actions .dvf-btn {
    min-width: 240px;
}

@media (max-width: 980px) {
    .dvf-app .dvf-hero {
        grid-template-columns: 1fr;
    }
    .dvf-app .dvf-hero__panel .dvf-note {
        min-height: auto;
    }
}


/* v6.3.2 cache-safe quiz/footer hotfix */
.dvf-app .dvf-stats {
    display: none !important;
}

.dvf-app .dvf-quiz__actions > span {
    display: none !important;
}

.dvf-app .dvf-hero__panel {
    align-self: end !important;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.dvf-app .dvf-hero__panel .dvf-note {
    min-height: auto !important;
    height: auto !important;
    margin-top: auto;
    align-content: start;
    justify-items: start;
    width: min(100%, 220px);
}

@media (max-width: 980px) {
    .dvf-app .dvf-hero__panel {
        align-self: start !important;
        display: block;
    }
    .dvf-app .dvf-hero__panel .dvf-note {
        width: 100%;
    }
}


/* ===== Quiz section redesign v6.4.0 ===== */
.dvf-section--quiz {
    position: relative;
    margin-top: 30px;
}

.dvf-section--quiz .dvf-section__head {
    margin-bottom: 22px;
}

.dvf-section--quiz .dvf-kicker {
    padding: 12px 22px;
    border-radius: 999px;
    border: 1px solid rgba(238, 181, 85, 0.36);
    background: linear-gradient(180deg, rgba(5, 29, 52, 0.96), rgba(9, 40, 69, 0.88));
    color: #f2c975;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.05), 0 18px 34px rgba(3, 10, 20, 0.18);
}

.dvf-section--quiz .dvf-section__head h3,
.dvf-section--quiz .dvf-question legend {
    font-family: Georgia, "Times New Roman", Times, serif;
    letter-spacing: -0.02em;
}

.dvf-section--quiz .dvf-section__head h3 {
    margin: 16px 0 10px;
    font-size: clamp(42px, 4.8vw, 60px);
    line-height: 1.05;
    color: #f8fbff;
}

.dvf-section--quiz .dvf-section__head p {
    max-width: 1100px;
    margin: 0;
    font-size: clamp(18px, 1.8vw, 20px);
    line-height: 1.45;
    color: #b6c2d4;
}

.dvf-section--quiz .dvf-panel.dvf-quiz {
    position: relative;
    overflow: hidden;
    padding: 34px 44px 40px;
    border-radius: 40px;
    border: 1px solid rgba(238, 181, 85, 0.6);
    background:
        radial-gradient(circle at 0% 0%, rgba(240, 179, 73, 0.16), transparent 18%),
        radial-gradient(circle at 100% 100%, rgba(17, 59, 96, 0.34), transparent 22%),
        linear-gradient(180deg, rgba(5, 19, 40, 0.98), rgba(4, 14, 29, 0.98));
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.035), 0 30px 60px rgba(0, 0, 0, 0.28);
}

.dvf-section--quiz .dvf-panel.dvf-quiz::before {
    content: "";
    position: absolute;
    right: 42px;
    top: 28px;
    width: 255px;
    height: 180px;
    opacity: .11;
    pointer-events: none;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 280 200'%3E%3Cpath d='M40 150c-10-18-8-47 8-68 17-23 44-35 73-38 23-2 48 3 68 17 24 16 40 42 43 69 2 19-7 33-25 34-16 1-34-13-45-24-7 15-20 24-37 24-18 0-31-8-40-22-7 9-15 17-25 22-7 4-16 5-20-3z' fill='none' stroke='%2364a6db' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M83 77c-3-13-2-27 7-40 4-6 11-8 18-7 8 2 13 9 15 17 2 6 3 13 2 20' fill='none' stroke='%2364a6db' stroke-width='4' stroke-linecap='round'/%3E%3Cpath d='M193 86c10-11 18-25 18-41 0-8-4-14-12-16-8-2-16 1-21 7-9 10-13 24-15 37' fill='none' stroke='%2364a6db' stroke-width='4' stroke-linecap='round'/%3E%3Cpath d='M123 126c6 5 13 8 21 8 10 0 18-3 24-10' fill='none' stroke='%2364a6db' stroke-width='4' stroke-linecap='round'/%3E%3Ccircle cx='116' cy='104' r='5' fill='%2364a6db'/%3E%3Ccircle cx='178' cy='104' r='5' fill='%2364a6db'/%3E%3C/svg%3E");
}

.dvf-section--quiz .dvf-quiz__meta {
    gap: 18px;
    margin-bottom: 20px;
}

.dvf-section--quiz .dvf-quiz__progress {
    min-height: 56px;
    padding: 0 26px;
    border: 1px solid rgba(106, 224, 255, 0.45);
    background: linear-gradient(180deg, rgba(10, 52, 84, 0.9), rgba(7, 31, 54, 0.86));
    color: #f5c976;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.04), 0 16px 34px rgba(2, 8, 16, 0.22);
    font-size: 18px;
    letter-spacing: .04em;
}

.dvf-section--quiz .dvf-btn--ghost.dvf-btn--sm {
    min-height: 56px;
    padding: 0 24px;
    border-radius: 999px;
    border: 1px solid rgba(238, 181, 85, 0.58);
    background: linear-gradient(180deg, rgba(16, 24, 42, 0.88), rgba(8, 14, 29, 0.92));
    color: #f2c775;
    font-size: 18px;
    font-weight: 700;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.03);
}

.dvf-section--quiz .dvf-question {
    gap: 22px;
}

.dvf-section--quiz .dvf-question legend {
    margin-bottom: 0;
    font-size: clamp(36px, 4.2vw, 54px);
    line-height: 1.1;
    color: #ffffff;
}

.dvf-section--quiz .dvf-options {
    gap: 22px;
}

.dvf-section--quiz .dvf-option {
    overflow: hidden;
    border-radius: 32px;
    border: 1px solid rgba(86, 197, 245, 0.46);
    background: linear-gradient(180deg, rgba(7, 21, 42, 0.95), rgba(4, 14, 27, 0.95));
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.04), 0 26px 54px rgba(0, 0, 0, 0.22);
    transform: translateY(0);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.dvf-section--quiz .dvf-option:hover,
.dvf-section--quiz .dvf-option.is-selected {
    transform: translateY(-3px);
    border-color: rgba(99, 221, 255, 0.82);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.06), 0 28px 56px rgba(0, 0, 0, 0.32);
}

.dvf-section--quiz .dvf-option__content {
    position: relative;
    z-index: 2;
}

.dvf-section--quiz .dvf-option__content::after {
    content: "";
    display: block;
    width: 48px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ebb45c, #ffd98a);
}

.dvf-section--quiz .dvf-option__media {
    display: none;
}

.dvf-section--quiz .dvf-question:not([data-dvf-step="1"]) .dvf-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dvf-section--quiz .dvf-question:not([data-dvf-step="1"]) .dvf-option {
    min-height: 156px;
    grid-template-columns: 1fr;
    padding: 0;
    text-align: center;
}

.dvf-section--quiz .dvf-question:not([data-dvf-step="1"]) .dvf-option::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 22, 44, 0.96), rgba(4, 14, 28, 0.92));
}

.dvf-section--quiz .dvf-question:not([data-dvf-step="1"]) .dvf-option__content {
    width: 100%;
    min-height: 156px;
    padding: 24px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.dvf-section--quiz .dvf-question:not([data-dvf-step="1"]) .dvf-option__emoji {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 999px;
    border: 1px solid rgba(238, 181, 85, 0.62);
    background: rgba(4, 13, 24, 0.78);
    color: #ffcf74;
    font-size: 28px;
    line-height: 1;
}

.dvf-section--quiz .dvf-question:not([data-dvf-step="1"]) .dvf-option__label {
    max-width: 16ch;
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.24;
}

.dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
}

.dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    min-height: 254px;
    align-items: stretch;
    text-align: left;
    padding: 0;
}

.dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(3, 15, 30, 0.98) 0%, rgba(3, 15, 30, 0.9) 32%, rgba(3, 15, 30, 0.45) 60%, rgba(3, 15, 30, 0.06) 100%);
    z-index: 1;
}

.dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option__content {
    min-height: 254px;
    padding: 34px 24px 34px 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 18px;
}

.dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option__emoji {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 76px;
    border-radius: 999px;
    border: 1px solid rgba(238, 181, 85, 0.76);
    background: rgba(5, 15, 29, 0.86);
    color: #ffcf73;
    font-size: 34px;
    line-height: 1;
    box-shadow: 0 0 0 7px rgba(238, 181, 85, 0.06);
}

.dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option__label {
    max-width: 10ch;
    color: #ffffff;
    font-size: clamp(30px, 3vw, 40px);
    line-height: 1.05;
    font-family: Georgia, "Times New Roman", Times, serif;
    font-weight: 700;
}

.dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option__media {
    display: block;
    min-height: 254px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option:last-child {
    grid-column: 1 / -1;
    width: min(50%, 700px);
    justify-self: center;
}

.dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option--puppy .dvf-option__media {
    background-image: linear-gradient(180deg, rgba(4,12,24,0) 0%, rgba(4,12,24,.02) 100%), url("quiz-puppy.webp");
    background-position: center center;
}

.dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option--adult .dvf-option__media {
    background-image: linear-gradient(180deg, rgba(4,12,24,0) 0%, rgba(4,12,24,.02) 100%), url("quiz-adult.webp");
    background-position: center center;
}

.dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option--senior .dvf-option__media {
    background-image: linear-gradient(180deg, rgba(4,12,24,0) 0%, rgba(4,12,24,.03) 100%), url("quiz-senior.webp");
    background-position: center center;
}

.dvf-section--quiz .dvf-quiz__actions {
    display: none;
}

@media (max-width: 1180px) {
    .dvf-section--quiz .dvf-panel.dvf-quiz {
        padding: 28px 24px 30px;
    }
    .dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option {
        grid-template-columns: 185px minmax(0, 1fr);
        min-height: 228px;
    }
    .dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option__content,
    .dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option__media {
        min-height: 228px;
    }
}

@media (max-width: 860px) {
    .dvf-section--quiz .dvf-section__head h3 {
        font-size: 36px;
    }
    .dvf-section--quiz .dvf-section__head p {
        font-size: 16px;
    }
    .dvf-section--quiz .dvf-question legend {
        font-size: 30px;
    }
    .dvf-section--quiz .dvf-question:not([data-dvf-step="1"]) .dvf-options,
    .dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-options {
        grid-template-columns: 1fr;
    }
    .dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option:last-child {
        grid-column: auto;
        width: 100%;
    }
}

@media (max-width: 720px) {
    .dvf-section--quiz .dvf-panel.dvf-quiz {
        padding: 18px 14px 20px;
        border-radius: 26px;
    }
    .dvf-section--quiz .dvf-panel.dvf-quiz::before {
        width: 130px;
        height: 92px;
        right: 12px;
        top: 14px;
        opacity: .08;
    }
    .dvf-section--quiz .dvf-quiz__meta {
        gap: 12px;
        align-items: center;
        flex-wrap: wrap;
    }
    .dvf-section--quiz .dvf-quiz__progress,
    .dvf-section--quiz .dvf-btn--ghost.dvf-btn--sm {
        min-height: 46px;
        padding: 0 16px;
        font-size: 14px;
    }
    .dvf-section--quiz .dvf-question legend {
        font-size: 28px;
    }
    .dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option::before {
        background: linear-gradient(180deg, rgba(3,15,30,0.96) 0%, rgba(3,15,30,0.86) 34%, rgba(3,15,30,0.16) 100%);
    }
    .dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option__content {
        min-height: auto;
        padding: 18px 18px 0;
        gap: 14px;
    }
    .dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option__emoji {
        width: 62px;
        height: 62px;
        font-size: 28px;
    }
    .dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option__label {
        font-size: 28px;
    }
    .dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option__media {
        min-height: 180px;
    }
    .dvf-section--quiz .dvf-question:not([data-dvf-step="1"]) .dvf-option {
        min-height: 136px;
    }
    .dvf-section--quiz .dvf-question:not([data-dvf-step="1"]) .dvf-option__content {
        min-height: 136px;
        padding: 18px 14px;
    }
    .dvf-section--quiz .dvf-question:not([data-dvf-step="1"]) .dvf-option__label {
        font-size: 18px;
        max-width: 18ch;
    }
}


/* v6.4.1 photo crop tune */
.dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option__media {
    background-size: cover;
}
.dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option--puppy .dvf-option__media {
    background-position: center center;
}
.dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option--adult .dvf-option__media {
    background-position: center center;
}
.dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option--senior .dvf-option__media {
    background-position: center center;
}
.dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option__content {
    padding-right: 18px;
}


/* ===== v6.5.0 hard quiz overrides ===== */
#dvf-quiz-[id], .dvf-section--quiz {}

.dvf-section--quiz .dvf-section__head h3,
.dvf-section--quiz .dvf-question legend {
    font-family: Georgia, "Times New Roman", Times, serif !important;
}

.dvf-section--quiz .dvf-panel.dvf-quiz {
    padding: 34px 42px 40px !important;
    border-radius: 38px !important;
    border: 1px solid rgba(223, 166, 74, 0.70) !important;
    background:
        radial-gradient(circle at left top, rgba(212, 137, 23, 0.14), transparent 18%),
        linear-gradient(180deg, rgba(3, 15, 34, 0.98), rgba(2, 11, 24, 0.98)) !important;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.04), 0 26px 60px rgba(0,0,0,.28) !important;
}

.dvf-section--quiz .dvf-section__head h3 {
    font-size: clamp(34px, 4vw, 54px) !important;
    line-height: 1.06 !important;
    margin: 14px 0 10px !important;
}

.dvf-section--quiz .dvf-section__head p {
    font-size: clamp(16px, 1.5vw, 18px) !important;
    color: #b6c2d4 !important;
}

.dvf-section--quiz .dvf-kicker {
    padding: 10px 22px !important;
    background: linear-gradient(180deg, rgba(5, 28, 49, 0.96), rgba(8, 40, 68, 0.86)) !important;
    border: 1px solid rgba(220, 165, 74, 0.42) !important;
    color: #f1c772 !important;
}

.dvf-section--quiz .dvf-quiz__progress {
    min-height: 54px !important;
    padding: 0 26px !important;
    background: linear-gradient(180deg, rgba(10, 52, 84, 0.92), rgba(7, 31, 54, 0.88)) !important;
    color: #f3cb77 !important;
    border: 1px solid rgba(87, 220, 255, 0.48) !important;
    font-size: 17px !important;
}

.dvf-section--quiz .dvf-btn--ghost.dvf-btn--sm {
    min-height: 54px !important;
    padding: 0 24px !important;
    border-radius: 999px !important;
    color: #f1c673 !important;
    border: 1px solid rgba(223, 166, 74, 0.62) !important;
    background: linear-gradient(180deg, rgba(16, 24, 42, 0.88), rgba(8, 14, 29, 0.92)) !important;
}

.dvf-section--quiz .dvf-question legend {
    font-size: clamp(30px, 3.5vw, 48px) !important;
    line-height: 1.1 !important;
    margin-bottom: 14px !important;
}

.dvf-section--quiz .dvf-options {
    gap: 20px !important;
}

.dvf-section--quiz .dvf-option {
    position: relative !important;
    overflow: hidden !important;
}

.dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-options {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 22px !important;
}

.dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option--agecard {
    display: grid !important;
    grid-template-columns: 210px minmax(0, 1fr) !important;
    min-height: 218px !important;
    border-radius: 30px !important;
    border: 1px solid rgba(95, 198, 255, 0.68) !important;
    background: linear-gradient(180deg, rgba(6, 20, 40, 0.98), rgba(3, 12, 25, 0.98)) !important;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.04), 0 22px 48px rgba(0,0,0,.26) !important;
    padding: 0 !important;
    text-align: left !important;
}

.dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option--agecard::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;
    background: linear-gradient(90deg, rgba(3, 13, 27, 0.98) 0%, rgba(3, 13, 27, 0.92) 36%, rgba(3, 13, 27, 0.42) 62%, rgba(3, 13, 27, 0.06) 100%) !important;
}

.dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option--agecard .dvf-option__content {
    position: relative !important;
    z-index: 2 !important;
    min-height: 218px !important;
    padding: 32px 22px 28px 32px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: center !important;
    gap: 16px !important;
}

.dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option--agecard .dvf-option__emoji {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 72px !important;
    height: 72px !important;
    border-radius: 999px !important;
    border: 1px solid rgba(224, 169, 77, 0.86) !important;
    background: rgba(5, 15, 29, 0.88) !important;
    color: #f3c76f !important;
    font-size: 34px !important;
    line-height: 1 !important;
    box-shadow: 0 0 0 6px rgba(224, 169, 77, 0.05) !important;
}

.dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option--agecard .dvf-option__label {
    display: block !important;
    max-width: 9ch !important;
    color: #ffffff !important;
    font-family: Georgia, "Times New Roman", Times, serif !important;
    font-size: clamp(28px, 2.8vw, 40px) !important;
    line-height: 1.02 !important;
    font-weight: 700 !important;
}

.dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option--agecard .dvf-option__content::after {
    content: "" !important;
    display: block !important;
    width: 34px !important;
    height: 4px !important;
    border-radius: 999px !important;
    background: #e7b357 !important;
}

.dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option--agecard .dvf-option__media {
    display: block !important;
    min-height: 218px !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
}

.dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option--puppy .dvf-option__media {
    background-image: url("quiz-puppy.webp") !important;
}

.dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option--adult .dvf-option__media {
    background-image: url("quiz-adult.webp") !important;
}

.dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option--senior .dvf-option__media {
    background-image: url("quiz-senior.webp") !important;
}

.dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option--senior {
    grid-column: 1 / -1 !important;
    width: min(48%, 670px) !important;
    justify-self: center !important;
}

.dvf-section--quiz .dvf-question:not([data-dvf-step="1"]) .dvf-options {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 18px !important;
}

.dvf-section--quiz .dvf-question:not([data-dvf-step="1"]) .dvf-option {
    min-height: 148px !important;
    padding: 0 !important;
    border-radius: 26px !important;
    border: 1px solid rgba(86, 197, 245, 0.42) !important;
    background: linear-gradient(180deg, rgba(7, 21, 42, 0.96), rgba(4, 14, 27, 0.96)) !important;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.03), 0 18px 42px rgba(0,0,0,.22) !important;
}

.dvf-section--quiz .dvf-question:not([data-dvf-step="1"]) .dvf-option::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(180deg, rgba(7, 22, 44, 0.96), rgba(4, 14, 28, 0.92)) !important;
}

.dvf-section--quiz .dvf-question:not([data-dvf-step="1"]) .dvf-option__content {
    position: relative !important;
    z-index: 2 !important;
    width: 100% !important;
    min-height: 148px !important;
    padding: 24px 18px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 14px !important;
}

.dvf-section--quiz .dvf-question:not([data-dvf-step="1"]) .dvf-option__emoji {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 54px !important;
    height: 54px !important;
    border-radius: 999px !important;
    border: 1px solid rgba(224, 169, 77, 0.7) !important;
    background: rgba(5, 15, 29, 0.84) !important;
    color: #f3c76f !important;
    font-size: 26px !important;
}

.dvf-section--quiz .dvf-question:not([data-dvf-step="1"]) .dvf-option__label {
    display: block !important;
    max-width: 16ch !important;
    color: #ffffff !important;
    font-size: 21px !important;
    line-height: 1.24 !important;
    font-weight: 700 !important;
    text-align: center !important;
}

.dvf-section--quiz .dvf-question:not([data-dvf-step="1"]) .dvf-option__content::after,
.dvf-section--quiz .dvf-question:not([data-dvf-step="1"]) .dvf-option__media {
    display: none !important;
}

.dvf-section--quiz .dvf-quiz__actions {
    display: none !important;
}

@media (max-width: 860px) {
    .dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-options,
    .dvf-section--quiz .dvf-question:not([data-dvf-step="1"]) .dvf-options {
        grid-template-columns: 1fr !important;
    }
    .dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option--agecard {
        grid-template-columns: 1fr !important;
        min-height: auto !important;
    }
    .dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option--agecard::before {
        background: linear-gradient(180deg, rgba(3, 13, 27, 0.98) 0%, rgba(3, 13, 27, 0.86) 34%, rgba(3, 13, 27, 0.16) 100%) !important;
    }
    .dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option--agecard .dvf-option__content {
        min-height: auto !important;
        padding: 20px 18px 0 18px !important;
    }
    .dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option--agecard .dvf-option__media {
        min-height: 176px !important;
    }
    .dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option--senior {
        width: 100% !important;
        grid-column: auto !important;
    }
}


/* v6.5.2: force age-card photos inline and replace emoji with svg icons */
.dvf-section--quiz .dvf-option__icon {
    color: transparent !important;
    font-size: 0 !important;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 34px 34px;
}

.dvf-section--quiz .dvf-option__icon--paw {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cg fill='none' stroke='%23ebb55c' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cellipse cx='19' cy='18' rx='5.5' ry='8'/%3E%3Cellipse cx='31' cy='14' rx='5.5' ry='8'/%3E%3Cellipse cx='43' cy='18' rx='5.5' ry='8'/%3E%3Cellipse cx='50' cy='29' rx='5' ry='7'/%3E%3Cpath d='M16 42c0-8 7-14 16-14s16 6 16 14c0 6-4 10-10 10-2 0-4-1-6-2-2-1-4-2-6-2s-4 1-6 2c-2 1-4 2-6 2-6 0-10-4-10-10Z'/%3E%3C/g%3E%3C/svg%3E");
}

.dvf-section--quiz .dvf-option__icon--star {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='m32 10 6.7 13.6 15 2.2-10.9 10.6 2.6 15-13.4-7-13.4 7 2.6-15L10.3 25.8l15-2.2L32 10Z' fill='none' stroke='%23ebb55c' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.dvf-section--quiz .dvf-option__icon--heart {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M32 52s-18-11.4-18-25.4c0-6.8 5.2-12.6 12-12.6 4.1 0 7.2 2.1 9 5.2 1.8-3.1 4.9-5.2 9-5.2 6.8 0 12 5.8 12 12.6C50 40.6 32 52 32 52Z' fill='none' stroke='%23ebb55c' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option__media {
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size: cover !important;
}

/* v6.5.4: hard-fix age cards so user photos render as full card images */
.dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option--agecard {
    position: relative !important;
    display: grid !important;
    grid-template-columns: 220px minmax(0, 1fr) !important;
    align-items: stretch !important;
    overflow: hidden !important;
}

.dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option--agecard .dvf-option__content {
    position: relative !important;
    z-index: 2 !important;
}

.dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option--agecard .dvf-option__media {
    position: relative !important;
    z-index: 0 !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 218px !important;
    overflow: hidden !important;
    border-radius: 0 30px 30px 0 !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size: cover !important;
}

.dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option--agecard .dvf-option__photo {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 218px !important;
    object-fit: cover !important;
    object-position: center center !important;
}

.dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option--agecard::before {
    z-index: 1 !important;
}

.dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option--agecard .dvf-option__emoji {
    position: relative !important;
    z-index: 3 !important;
}

@media (max-width: 860px) {
    .dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option--agecard {
        grid-template-columns: 1fr !important;
    }

    .dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option--agecard .dvf-option__media,
    .dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option--agecard .dvf-option__photo {
        min-height: 176px !important;
        border-radius: 0 0 26px 26px !important;
    }
}


/* v6.5.6: make age cards full-image with overlayed text and restore icons */
.dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-options {
    gap: 18px !important;
}

.dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option--agecard {
    position: relative !important;
    display: block !important;
    min-height: 200px !important;
    width: 100% !important;
    padding: 0 !important;
    overflow: hidden !important;
    border-radius: 30px !important;
    isolation: isolate !important;
    background: #031122 !important;
}

.dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option--agecard .dvf-option__media {
    position: absolute !important;
    inset: 0 !important;
    z-index: 0 !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    border-radius: inherit !important;
    overflow: hidden !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

.dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option--agecard .dvf-option__photo {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    object-fit: cover !important;
    object-position: center center !important;
    filter: saturate(0.98) contrast(1.03) !important;
}

.dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option--agecard::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;
    background:
        linear-gradient(90deg, rgba(1, 10, 24, 0.96) 0%, rgba(1, 10, 24, 0.92) 22%, rgba(1, 10, 24, 0.62) 42%, rgba(1, 10, 24, 0.18) 68%, rgba(1, 10, 24, 0.05) 100%) !important;
}

.dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option--agecard .dvf-option__content {
    position: absolute !important;
    top: 28px !important;
    left: 22px !important;
    bottom: 22px !important;
    z-index: 2 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: center !important;
    gap: 14px !important;
    max-width: 42% !important;
    min-height: 0 !important;
    padding: 0 !important;
}

.dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option--agecard .dvf-option__emoji {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 68px !important;
    height: 68px !important;
    border-radius: 999px !important;
    border: 1px solid rgba(224, 169, 77, 0.9) !important;
    background-color: rgba(3, 13, 27, 0.82) !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size: 30px 30px !important;
    box-shadow: 0 0 0 5px rgba(224, 169, 77, 0.05) !important;
    color: transparent !important;
    font-size: 0 !important;
    line-height: 1 !important;
}

.dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option--agecard .dvf-option__icon--paw {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cg fill='none' stroke='%23ebb55c' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cellipse cx='19' cy='18' rx='5.5' ry='8'/%3E%3Cellipse cx='31' cy='14' rx='5.5' ry='8'/%3E%3Cellipse cx='43' cy='18' rx='5.5' ry='8'/%3E%3Cellipse cx='50' cy='29' rx='5' ry='7'/%3E%3Cpath d='M16 42c0-8 7-14 16-14s16 6 16 14c0 6-4 10-10 10-2 0-4-1-6-2-2-1-4-2-6-2s-4 1-6 2c-2 1-4 2-6 2-6 0-10-4-10-10Z'/%3E%3C/g%3E%3C/svg%3E") !important;
}

.dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option--agecard .dvf-option__icon--star {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='m32 10 6.7 13.6 15 2.2-10.9 10.6 2.6 15-13.4-7-13.4 7 2.6-15L10.3 25.8l15-2.2L32 10Z' fill='none' stroke='%23ebb55c' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
}

.dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option--agecard .dvf-option__icon--heart {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M32 52s-18-11.4-18-25.4c0-6.8 5.2-12.6 12-12.6 4.1 0 7.2 2.1 9 5.2 1.8-3.1 4.9-5.2 9-5.2 6.8 0 12 5.8 12 12.6C50 40.6 32 52 32 52Z' fill='none' stroke='%23ebb55c' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
}

.dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option--agecard .dvf-option__label {
    display: block !important;
    max-width: 8ch !important;
    color: #ffffff !important;
    font-family: Georgia, "Times New Roman", Times, serif !important;
    font-size: clamp(30px, 2.4vw, 42px) !important;
    line-height: 1.02 !important;
    font-weight: 700 !important;
    text-shadow: 0 2px 18px rgba(0,0,0,.35) !important;
}

.dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option--agecard .dvf-option__content::after {
    content: "" !important;
    display: block !important;
    width: 34px !important;
    height: 4px !important;
    border-radius: 999px !important;
    background: #e7b357 !important;
    margin-top: -2px !important;
}

.dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option--senior {
    width: min(48%, 670px) !important;
    justify-self: center !important;
    grid-column: 1 / -1 !important;
}

@media (max-width: 1180px) {
    .dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option--agecard {
        min-height: 188px !important;
    }
    .dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option--agecard .dvf-option__content {
        max-width: 46% !important;
    }
}

@media (max-width: 860px) {
    .dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option--agecard {
        min-height: 176px !important;
    }
    .dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option--agecard .dvf-option__content {
        top: 18px !important;
        left: 18px !important;
        bottom: 18px !important;
        max-width: 55% !important;
    }
    .dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option--agecard .dvf-option__emoji {
        width: 56px !important;
        height: 56px !important;
        background-size: 24px 24px !important;
    }
    .dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option--agecard .dvf-option__label {
        font-size: clamp(22px, 5vw, 32px) !important;
    }
    .dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option--senior {
        width: 100% !important;
    }
}


/* ===== v6.6.0 user button image hard override ===== */
.dvf-section--quiz .dvf-panel.dvf-quiz {
    padding: 30px 34px 34px !important;
}

.dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-options {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 18px !important;
    align-items: start !important;
}

.dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option--agecard {
    display: block !important;
    min-height: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    border-radius: 34px !important;
    overflow: visible !important;
    transform: translateY(0) !important;
}

.dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option--agecard::before {
    display: none !important;
    content: none !important;
}

.dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option--agecard .dvf-option__content {
    position: absolute !important;
    inline-size: 1px !important;
    block-size: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    white-space: nowrap !important;
    clip-path: inset(50%) !important;
    clip: rect(0 0 0 0) !important;
    border: 0 !important;
}

.dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option--agecard .dvf-option__media {
    display: block !important;
    min-height: 0 !important;
    background: none !important;
    border-radius: 34px !important;
    overflow: hidden !important;
    aspect-ratio: 2048 / 682 !important;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22) !important;
}

.dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option--agecard .dvf-option__photo {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    pointer-events: none !important;
}

.dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option--agecard:hover,
.dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option--agecard.is-selected {
    transform: translateY(-2px) !important;
}

.dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option--agecard:hover .dvf-option__media,
.dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option--agecard.is-selected .dvf-option__media {
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.30), 0 0 0 1px rgba(128, 222, 255, 0.22) !important;
}

.dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option--senior {
    grid-column: 1 / -1 !important;
    width: min(54%, 620px) !important;
    justify-self: center !important;
}

.dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option--puppy .dvf-option__media,
.dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option--adult .dvf-option__media,
.dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option--senior .dvf-option__media {
    background-image: none !important;
}

@media (max-width: 980px) {
    .dvf-section--quiz .dvf-panel.dvf-quiz {
        padding: 24px 22px 26px !important;
    }
    .dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option--senior {
        width: min(64%, 620px) !important;
    }
}

@media (max-width: 860px) {
    .dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-options {
        grid-template-columns: 1fr !important;
    }
    .dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option--senior {
        grid-column: auto !important;
        width: 100% !important;
    }
}

@media (max-width: 520px) {
    .dvf-section--quiz .dvf-panel.dvf-quiz {
        padding: 18px 14px 20px !important;
    }
    .dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-options {
        gap: 14px !important;
    }
    .dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option--agecard .dvf-option__media {
        border-radius: 24px !important;
    }
}


/* ===== v6.6.1 direct image buttons for quiz age step ===== */
.dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-options {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 18px !important;
    align-items: start !important;
}

.dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option--imagebutton {
    position: relative !important;
    display: block !important;
    padding: 0 !important;
    margin: 0 !important;
    min-height: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 36px !important;
    overflow: visible !important;
}

.dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option--imagebutton::before,
.dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option--imagebutton .dvf-option__media,
.dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option--imagebutton .dvf-option__emoji,
.dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option--imagebutton .dvf-option__content::after {
    display: none !important;
    content: none !important;
}

.dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option--imagebutton .dvf-option__content--sr {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option--imagebutton .dvf-option__button-image {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    border-radius: 36px !important;
    box-shadow: 0 16px 40px rgba(0,0,0,.26) !important;
    pointer-events: none !important;
}

.dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option--imagebutton:hover .dvf-option__button-image,
.dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option--imagebutton.is-selected .dvf-option__button-image {
    transform: translateY(-2px) !important;
    box-shadow: 0 22px 48px rgba(0,0,0,.32) !important;
}

.dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option--senior.dvf-option--imagebutton {
    grid-column: 1 / -1 !important;
    width: min(54%, 700px) !important;
    justify-self: center !important;
}

@media (max-width: 860px) {
    .dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-options {
        grid-template-columns: 1fr !important;
    }
    .dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option--senior.dvf-option--imagebutton {
        grid-column: auto !important;
        width: 100% !important;
    }
    .dvf-section--quiz fieldset[data-dvf-step="1"] .dvf-option--imagebutton .dvf-option__button-image {
        border-radius: 24px !important;
    }
}


/* ===== v6.7.0 premium calculator redesign ===== */
.dvf-section--calculator {
    margin-top: 30px;
}

.dvf-section--calculator .dvf-calc-shell {
    position: relative;
    min-height: 760px;
    padding: 40px 34px 34px;
    border-radius: 38px;
    border: 1px solid rgba(214, 160, 69, 0.38);
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(2, 10, 24, 0.96) 0%, rgba(2, 10, 24, 0.93) 42%, rgba(2, 10, 24, 0.68) 58%, rgba(2, 10, 24, 0.10) 72%),
        url('calc-dog-bg.webp') right center / cover no-repeat,
        linear-gradient(180deg, #031120 0%, #020b16 100%);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04), 0 26px 70px rgba(0,0,0,0.30);
}

.dvf-section--calculator .dvf-calc-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at left 36%, rgba(247, 180, 74, 0.12), transparent 16%);
    pointer-events: none;
}

.dvf-section--calculator .dvf-calc-shell::after {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 150px;
    background: url('calc-dog-bg.webp') left center / 380% 100% no-repeat;
    opacity: .88;
    mix-blend-mode: screen;
    pointer-events: none;
    mask-image: linear-gradient(90deg, rgba(255,255,255,1), rgba(255,255,255,.15), transparent);
}

.dvf-section--calculator .dvf-section__head,
.dvf-section--calculator .dvf-calc-grid {
    position: relative;
    z-index: 1;
    max-width: 60%;
}

.dvf-section--calculator .dvf-section__head {
    margin-bottom: 28px;
}

.dvf-section--calculator .dvf-kicker {
    gap: 10px;
    padding: 10px 18px;
    color: #efc573;
    border-color: rgba(214,160,69,0.42);
    background: linear-gradient(180deg, rgba(7, 28, 47, 0.96), rgba(7, 26, 42, 0.84));
}

.dvf-section--calculator .dvf-kicker__icon {
    font-size: 14px;
    line-height: 1;
}

.dvf-section--calculator .dvf-section__head h3 {
    margin: 16px 0 12px;
    max-width: 10ch;
    color: #f8f0de;
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: clamp(46px, 4.8vw, 64px);
    line-height: 1.02;
    letter-spacing: -0.03em;
}

.dvf-section--calculator .dvf-section__head p {
    max-width: 560px;
    margin: 0;
    color: #b8c0cd;
    font-size: clamp(18px, 1.8vw, 20px);
    line-height: 1.5;
}

.dvf-section--calculator .dvf-calc-grid {
    grid-template-columns: minmax(320px, 510px) minmax(280px, 380px);
    gap: 22px;
    align-items: stretch;
}

.dvf-section--calculator .dvf-panel {
    border-radius: 28px;
    border: 1px solid rgba(214,160,69,0.34);
    background: linear-gradient(180deg, rgba(5, 16, 31, 0.94), rgba(4, 13, 27, 0.88));
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.03), 0 20px 46px rgba(0,0,0,.22);
}

.dvf-section--calculator .dvf-calc-form,
.dvf-section--calculator .dvf-calc-result {
    min-height: 472px;
}

.dvf-section--calculator .dvf-calc-form {
    padding: 30px 30px 26px;
    gap: 24px;
}

.dvf-section--calculator .dvf-calc-form label {
    gap: 12px;
}

.dvf-section--calculator .dvf-calc-form label > span {
    color: #f5f1e8;
    font-size: 18px;
    font-weight: 700;
}

.dvf-section--calculator .dvf-calc-input-wrap,
.dvf-section--calculator .dvf-calc-select-wrap {
    position: relative;
}

.dvf-section--calculator .dvf-calc-form input,
.dvf-section--calculator .dvf-calc-form select {
    width: 100%;
    min-height: 68px;
    padding: 0 24px;
    border-radius: 20px;
    border: 1px solid rgba(214,160,69,0.18);
    background: linear-gradient(180deg, rgba(23, 34, 50, 0.96), rgba(17, 27, 41, 0.96));
    color: #f0c46f;
    font-size: 20px;
    font-weight: 700;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.03);
}

.dvf-section--calculator .dvf-calc-form input::placeholder {
    color: #f0c46f;
    opacity: 1;
}

.dvf-section--calculator .dvf-calc-form em {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #aeb5c2;
    font-style: normal;
    font-size: 18px;
    pointer-events: none;
}

.dvf-section--calculator .dvf-calc-form select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 54px;
    color: #f5f1e8;
}

.dvf-section--calculator .dvf-calc-select-arrow {
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-54%);
    color: #ddd2bf;
    font-size: 22px;
    pointer-events: none;
}

.dvf-section--calculator .dvf-calc-submit {
    min-height: 72px;
    gap: 14px;
    justify-content: center;
    border-radius: 20px;
    color: #11161c;
    background: linear-gradient(180deg, #f0cf8a 0%, #d5a24c 100%);
    box-shadow: 0 18px 36px rgba(208, 157, 68, 0.18);
    font-size: 18px;
    font-weight: 800;
}

.dvf-section--calculator .dvf-calc-submit__icon {
    font-size: 24px;
    line-height: 1;
}

.dvf-section--calculator .dvf-helper {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 0;
    color: #9ea8b7;
    font-size: 15px;
    line-height: 1.45;
}

.dvf-section--calculator .dvf-helper__icon {
    flex: 0 0 auto;
    font-size: 18px;
    line-height: 1;
    margin-top: 1px;
}

.dvf-section--calculator .dvf-calc-result {
    display: grid;
    place-items: center;
    padding: 30px;
    text-align: center;
}

.dvf-section--calculator .dvf-calc-result__placeholder {
    max-width: 270px;
    display: grid;
    gap: 16px;
    justify-items: center;
}

.dvf-section--calculator .dvf-calc-result__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 22px;
    border: 1px solid rgba(214,160,69,0.34);
    color: #e4b663;
    font-size: 36px;
    line-height: 1;
    background: rgba(12, 21, 33, 0.54);
}

.dvf-section--calculator .dvf-calc-result p {
    margin: 0;
    color: #b3bcc9;
    font-size: 17px;
    line-height: 1.55;
}

.dvf-section--calculator .dvf-calc-result .dvf-result__badge,
.dvf-section--calculator .dvf-calc-result .dvf-result__value,
.dvf-section--calculator .dvf-calc-result h4,
.dvf-section--calculator .dvf-calc-result p,
.dvf-section--calculator .dvf-calc-result .dvf-mini-cards {
    position: relative;
    z-index: 1;
}

@media (max-width: 1180px) {
    .dvf-section--calculator .dvf-calc-shell {
        min-height: 700px;
        padding: 34px 24px 28px;
        background:
            linear-gradient(90deg, rgba(2, 10, 24, 0.96) 0%, rgba(2, 10, 24, 0.93) 46%, rgba(2, 10, 24, 0.72) 62%, rgba(2, 10, 24, 0.18) 76%),
            url('calc-dog-bg.webp') 78% center / cover no-repeat,
            linear-gradient(180deg, #031120 0%, #020b16 100%);
    }
    .dvf-section--calculator .dvf-section__head,
    .dvf-section--calculator .dvf-calc-grid {
        max-width: 65%;
    }
    .dvf-section--calculator .dvf-calc-grid {
        grid-template-columns: minmax(280px, 1fr) minmax(240px, .86fr);
    }
}

@media (max-width: 980px) {
    .dvf-section--calculator .dvf-calc-shell {
        min-height: auto;
        background:
            linear-gradient(180deg, rgba(2, 10, 24, 0.95) 0%, rgba(2, 10, 24, 0.80) 34%, rgba(2, 10, 24, 0.54) 58%, rgba(2, 10, 24, 0.88) 100%),
            url('calc-dog-bg.webp') center top / cover no-repeat,
            linear-gradient(180deg, #031120 0%, #020b16 100%);
    }
    .dvf-section--calculator .dvf-calc-shell::after {
        opacity: .45;
    }
    .dvf-section--calculator .dvf-section__head,
    .dvf-section--calculator .dvf-calc-grid {
        max-width: 100%;
    }
    .dvf-section--calculator .dvf-calc-grid {
        grid-template-columns: 1fr;
    }
    .dvf-section--calculator .dvf-calc-form,
    .dvf-section--calculator .dvf-calc-result {
        min-height: 0;
    }
}

@media (max-width: 640px) {
    .dvf-section--calculator .dvf-calc-shell {
        padding: 22px 14px 18px;
        border-radius: 28px;
    }
    .dvf-section--calculator .dvf-section__head h3 {
        font-size: clamp(34px, 10vw, 48px);
        max-width: 11ch;
    }
    .dvf-section--calculator .dvf-section__head p {
        font-size: 16px;
    }
    .dvf-section--calculator .dvf-calc-form {
        padding: 20px 16px 18px;
        gap: 18px;
    }
    .dvf-section--calculator .dvf-calc-form input,
    .dvf-section--calculator .dvf-calc-form select,
    .dvf-section--calculator .dvf-calc-submit {
        min-height: 60px;
        font-size: 18px;
    }
    .dvf-section--calculator .dvf-calc-result {
        padding: 24px 18px;
    }
}


/* ===== v6.7.1 calculator layout hotfix ===== */
.dvf-section--calculator .dvf-calc-form input[type="number"] {
    -moz-appearance: textfield;
    padding-right: 72px !important;
}

.dvf-section--calculator .dvf-calc-form input[type="number"]::-webkit-outer-spin-button,
.dvf-section--calculator .dvf-calc-form input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.dvf-section--calculator .dvf-calc-form em {
    right: 22px !important;
    z-index: 2;
}

.dvf-section--calculator .dvf-calc-form select {
    padding-right: 62px !important;
}

.dvf-section--calculator .dvf-calc-select-arrow {
    right: 20px !important;
    line-height: 1;
}

.dvf-section--calculator .dvf-calc-result:not(.is-muted) {
    display: grid !important;
    place-items: initial !important;
    align-content: start !important;
    justify-items: stretch !important;
    text-align: left !important;
    gap: 14px !important;
    padding: 26px !important;
}

.dvf-section--calculator .dvf-calc-result:not(.is-muted) .dvf-result__badge {
    width: fit-content;
}

.dvf-section--calculator .dvf-calc-result:not(.is-muted) .dvf-result__value {
    font-size: clamp(28px, 4vw, 42px) !important;
    line-height: 1.05 !important;
    margin: 2px 0 0 !important;
}

.dvf-section--calculator .dvf-calc-result:not(.is-muted) h4 {
    margin: 0 !important;
    color: #f5f1e8 !important;
    font-size: 24px !important;
    line-height: 1.2 !important;
}

.dvf-section--calculator .dvf-calc-result:not(.is-muted) > p {
    margin: 0 0 2px !important;
    color: #b3bcc9 !important;
    font-size: 16px !important;
    line-height: 1.5 !important;
}

.dvf-section--calculator .dvf-calc-result:not(.is-muted) .dvf-mini-cards {
    display: grid !important;
    gap: 12px !important;
    margin-top: 2px !important;
}

.dvf-section--calculator .dvf-calc-result:not(.is-muted) .dvf-mini-card {
    grid-template-columns: 76px minmax(0, 1fr) 132px !important;
    align-items: center !important;
    padding: 12px !important;
    border-radius: 18px !important;
    background: rgba(255, 255, 255, 0.96) !important;
    border: 1px solid rgba(13, 23, 40, 0.08) !important;
    color: #0d1728 !important;
}

.dvf-section--calculator .dvf-calc-result:not(.is-muted) .dvf-mini-card img {
    width: 76px !important;
    height: 76px !important;
    object-fit: cover !important;
    border-radius: 16px !important;
    align-self: center !important;
}

.dvf-section--calculator .dvf-calc-result:not(.is-muted) .dvf-mini-card__copy {
    min-width: 0 !important;
}

.dvf-section--calculator .dvf-calc-result:not(.is-muted) .dvf-mini-card h5 {
    margin: 0 0 4px !important;
    color: #0d1728 !important;
    font-size: 15px !important;
    line-height: 1.28 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

.dvf-section--calculator .dvf-calc-result:not(.is-muted) .dvf-mini-card p,
.dvf-section--calculator .dvf-calc-result:not(.is-muted) .dvf-mini-card span {
    display: block !important;
    color: #5a6877 !important;
    margin: 0 !important;
}

.dvf-section--calculator .dvf-calc-result:not(.is-muted) .dvf-mini-card .dvf-btn {
    width: 100% !important;
    min-height: 42px !important;
    padding: 0 14px !important;
    justify-content: center !important;
    align-self: center !important;
}

@media (max-width: 980px) {
    .dvf-section--calculator .dvf-calc-result:not(.is-muted) .dvf-mini-card {
        grid-template-columns: 76px minmax(0, 1fr) !important;
    }

    .dvf-section--calculator .dvf-calc-result:not(.is-muted) .dvf-mini-card .dvf-btn {
        grid-column: 1 / -1 !important;
    }
}

@media (max-width: 640px) {
    .dvf-section--calculator .dvf-calc-result:not(.is-muted) {
        padding: 20px 16px !important;
    }

    .dvf-section--calculator .dvf-calc-result:not(.is-muted) .dvf-result__value {
        font-size: 30px !important;
    }

    .dvf-section--calculator .dvf-calc-result:not(.is-muted) h4 {
        font-size: 21px !important;
    }

    .dvf-section--calculator .dvf-calc-result:not(.is-muted) .dvf-mini-card {
        grid-template-columns: 68px minmax(0, 1fr) !important;
    }

    .dvf-section--calculator .dvf-calc-result:not(.is-muted) .dvf-mini-card img {
        width: 68px !important;
        height: 68px !important;
    }
}


/* ===== v6.7.2 calculator compact + result stability ===== */
.dvf-section--calculator .dvf-calc-shell {
    min-height: 0 !important;
    padding: 26px 26px 24px !important;
}

.dvf-section--calculator .dvf-section__head {
    margin-bottom: 18px !important;
    max-width: 68% !important;
}

.dvf-section--calculator .dvf-calc-grid {
    max-width: 68% !important;
    grid-template-columns: minmax(300px, 1.02fr) minmax(280px, 0.88fr) !important;
    gap: 16px !important;
}

.dvf-section--calculator .dvf-section__head h3 {
    margin: 12px 0 10px !important;
    max-width: 9.5ch !important;
    font-size: clamp(34px, 3.4vw, 52px) !important;
}

.dvf-section--calculator .dvf-section__head p {
    max-width: 500px !important;
    font-size: 17px !important;
}

.dvf-section--calculator .dvf-calc-form,
.dvf-section--calculator .dvf-calc-result {
    min-height: 0 !important;
}

.dvf-section--calculator .dvf-calc-form {
    padding: 22px 22px 20px !important;
    gap: 18px !important;
}

.dvf-section--calculator .dvf-calc-form label {
    gap: 8px !important;
}

.dvf-section--calculator .dvf-calc-form label > span {
    font-size: 16px !important;
}

.dvf-section--calculator .dvf-calc-form input,
.dvf-section--calculator .dvf-calc-form select {
    min-height: 58px !important;
    font-size: 16px !important;
    border-radius: 16px !important;
}

.dvf-section--calculator .dvf-calc-form input[type="number"] {
    -webkit-appearance: none !important;
    appearance: textfield !important;
    -moz-appearance: textfield !important;
    padding-right: 86px !important;
}

.dvf-section--calculator .dvf-calc-form input[type="number"]::-webkit-outer-spin-button,
.dvf-section--calculator .dvf-calc-form input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
    appearance: none !important;
    margin: 0 !important;
    display: none !important;
}

.dvf-section--calculator .dvf-calc-form em {
    right: 18px !important;
    font-size: 16px !important;
    line-height: 1 !important;
}

.dvf-section--calculator .dvf-calc-form select {
    padding-right: 54px !important;
}

.dvf-section--calculator .dvf-calc-select-arrow {
    right: 18px !important;
    font-size: 18px !important;
    transform: translateY(-50%) !important;
}

.dvf-section--calculator .dvf-calc-submit {
    min-height: 60px !important;
    border-radius: 16px !important;
    font-size: 16px !important;
}

.dvf-section--calculator .dvf-calc-submit__icon {
    font-size: 20px !important;
}

.dvf-section--calculator .dvf-helper {
    font-size: 14px !important;
}

.dvf-section--calculator .dvf-calc-result {
    padding: 22px !important;
}

.dvf-section--calculator .dvf-calc-result__placeholder {
    max-width: 230px !important;
    gap: 12px !important;
}

.dvf-section--calculator .dvf-calc-result__icon {
    width: 60px !important;
    height: 60px !important;
    font-size: 28px !important;
    border-radius: 18px !important;
}

.dvf-section--calculator .dvf-calc-result p {
    font-size: 15px !important;
}

.dvf-section--calculator .dvf-calc-result:not(.is-muted) {
    display: block !important;
    padding: 20px !important;
    gap: 0 !important;
    overflow: hidden !important;
}

.dvf-section--calculator .dvf-calc-result:not(.is-muted) .dvf-result__badge {
    margin-bottom: 8px !important;
}

.dvf-section--calculator .dvf-calc-result:not(.is-muted) .dvf-result__value {
    font-size: clamp(24px, 3vw, 34px) !important;
    margin-bottom: 8px !important;
}

.dvf-section--calculator .dvf-calc-result:not(.is-muted) h4 {
    font-size: 20px !important;
    margin-bottom: 6px !important;
}

.dvf-section--calculator .dvf-calc-result:not(.is-muted) > p {
    font-size: 14px !important;
    margin-bottom: 10px !important;
}

.dvf-section--calculator .dvf-calc-result:not(.is-muted) .dvf-mini-cards {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    min-width: 0 !important;
}

.dvf-section--calculator .dvf-calc-result:not(.is-muted) .dvf-mini-card {
    display: grid !important;
    grid-template-columns: 64px minmax(0, 1fr) auto !important;
    gap: 10px !important;
    align-items: center !important;
    padding: 10px !important;
    min-width: 0 !important;
}

.dvf-section--calculator .dvf-calc-result:not(.is-muted) .dvf-mini-card img {
    width: 64px !important;
    height: 64px !important;
    min-width: 64px !important;
    min-height: 64px !important;
    object-fit: cover !important;
    border-radius: 14px !important;
}

.dvf-section--calculator .dvf-calc-result:not(.is-muted) .dvf-mini-card__copy {
    min-width: 0 !important;
    overflow: hidden !important;
}

.dvf-section--calculator .dvf-calc-result:not(.is-muted) .dvf-mini-card h5 {
    font-size: 14px !important;
    line-height: 1.25 !important;
}

.dvf-section--calculator .dvf-calc-result:not(.is-muted) .dvf-mini-card p,
.dvf-section--calculator .dvf-calc-result:not(.is-muted) .dvf-mini-card span {
    font-size: 13px !important;
    line-height: 1.3 !important;
}

.dvf-section--calculator .dvf-calc-result:not(.is-muted) .dvf-mini-card .dvf-btn {
    width: auto !important;
    min-width: 114px !important;
    min-height: 38px !important;
    padding: 0 12px !important;
    white-space: nowrap !important;
    font-size: 13px !important;
}

@media (max-width: 1180px) {
    .dvf-section--calculator .dvf-section__head,
    .dvf-section--calculator .dvf-calc-grid {
        max-width: 72% !important;
    }
}

@media (max-width: 980px) {
    .dvf-section--calculator .dvf-calc-shell {
        padding: 22px 18px 20px !important;
    }

    .dvf-section--calculator .dvf-section__head,
    .dvf-section--calculator .dvf-calc-grid {
        max-width: 100% !important;
    }

    .dvf-section--calculator .dvf-calc-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 640px) {
    .dvf-section--calculator .dvf-calc-shell {
        padding: 18px 12px 16px !important;
    }

    .dvf-section--calculator .dvf-section__head h3 {
        font-size: clamp(30px, 8vw, 40px) !important;
    }

    .dvf-section--calculator .dvf-calc-form,
    .dvf-section--calculator .dvf-calc-result {
        padding: 16px !important;
    }

    .dvf-section--calculator .dvf-calc-result:not(.is-muted) .dvf-mini-card {
        grid-template-columns: 60px minmax(0, 1fr) !important;
    }

    .dvf-section--calculator .dvf-calc-result:not(.is-muted) .dvf-mini-card .dvf-btn {
        grid-column: 1 / -1 !important;
        width: 100% !important;
    }
}


/* ===== Symptom checker premium redesign v6.8.0 ===== */
.dvf-visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.dvf-section--symptoms {
    margin-top: 28px;
}

.dvf-section--symptoms .dvf-section__head {
    max-width: 960px;
}

.dvf-section--symptoms .dvf-kicker {
    color: #f3c46b;
    background: linear-gradient(180deg, rgba(15, 27, 42, 0.88), rgba(9, 17, 29, 0.96));
    border-color: rgba(243, 196, 107, 0.40);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04), 0 10px 24px rgba(0,0,0,0.18);
}

.dvf-section--symptoms .dvf-kicker__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: rgba(243, 196, 107, 0.08);
    border: 1px solid rgba(243, 196, 107, 0.26);
    font-size: 13px;
}

.dvf-section--symptoms .dvf-section__head h3,
.dvf-section--symptoms .dvf-symptom-panel h4 {
    font-family: Georgia, "Times New Roman", serif;
    color: #f6ecdb;
    letter-spacing: -0.04em;
}

.dvf-section--symptoms .dvf-section__head h3 {
    margin-top: 18px;
    font-size: clamp(38px, 4.7vw, 56px);
    line-height: 0.98;
    max-width: 12ch;
    text-wrap: balance;
}

.dvf-section--symptoms .dvf-section__head p {
    max-width: 800px;
    font-size: clamp(18px, 1.4vw, 22px);
    line-height: 1.45;
    color: rgba(240, 240, 242, 0.85);
}

.dvf-symptom-grid {
    gap: 18px;
    align-items: stretch;
}

.dvf-map--premium,
.dvf-section--symptoms .dvf-symptom-panel {
    border-radius: 34px;
    border: 1px solid rgba(243, 196, 107, 0.24);
    background: linear-gradient(180deg, rgba(10, 21, 39, 0.94), rgba(7, 16, 30, 0.98));
    box-shadow: 0 26px 70px rgba(2, 8, 18, 0.34), inset 0 1px 0 rgba(255,255,255,0.04);
    overflow: hidden;
}

.dvf-map--premium {
    min-height: 0;
    padding: 0;
}

.dvf-map__visual {
    position: relative;
}

.dvf-map__art {
    display: block;
    width: 100%;
    height: auto;
}

.dvf-map__hitbox-layer {
    position: absolute;
    inset: 0;
}

.dvf-map--premium .dvf-dog {
    display: none;
}

.dvf-section--symptoms .dvf-hotspot {
    position: absolute;
    z-index: 2;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: transparent;
    box-shadow: none;
    color: transparent;
    transition: box-shadow .18s ease, transform .18s ease;
}

.dvf-section--symptoms .dvf-hotspot:hover,
.dvf-section--symptoms .dvf-hotspot:focus-visible,
.dvf-section--symptoms .dvf-hotspot.is-active {
    outline: none;
    transform: translateY(-1px);
    box-shadow: 0 0 0 2px rgba(243, 196, 107, 0.6), 0 0 0 10px rgba(243, 196, 107, 0.14);
}

.dvf-section--symptoms .dvf-hotspot--head {
    top: 12.5%;
    left: 4.5%;
    width: 31%;
    height: 16%;
}

.dvf-section--symptoms .dvf-hotspot--coat {
    top: 11.5%;
    right: 8%;
    width: 27%;
    height: 16%;
}

.dvf-section--symptoms .dvf-hotspot--joints {
    left: 3.5%;
    bottom: 24.5%;
    width: 28%;
    height: 16%;
}

.dvf-section--symptoms .dvf-hotspot--belly {
    right: 2.5%;
    bottom: 20.5%;
    width: 27%;
    height: 16%;
}

.dvf-section--symptoms .dvf-symptom-panel {
    position: relative;
    display: grid;
    align-content: start;
    gap: 14px;
    padding: clamp(24px, 2.2vw, 34px);
    min-height: 100%;
}

.dvf-symptom-panel__leaf {
    position: absolute;
    right: 26px;
    top: 30px;
    width: 118px;
    height: 140px;
    opacity: 0.14;
    pointer-events: none;
    background:
        radial-gradient(circle at 55% 14%, rgba(243,196,107,0.55), rgba(243,196,107,0.0) 18%),
        linear-gradient(140deg, transparent 44%, rgba(243,196,107,0.25) 44.5%, transparent 46%),
        linear-gradient(35deg, transparent 43%, rgba(243,196,107,0.25) 43.5%, transparent 45%),
        radial-gradient(100% 52% at 54% 10%, transparent 30%, rgba(243,196,107,0.2) 31%, transparent 33%),
        radial-gradient(60% 100% at 34% 28%, rgba(243,196,107,0.08), transparent 78%),
        radial-gradient(58% 98% at 78% 44%, rgba(243,196,107,0.08), transparent 78%),
        radial-gradient(52% 92% at 38% 70%, rgba(243,196,107,0.08), transparent 78%);
    transform: rotate(8deg);
}

.dvf-section--symptoms .dvf-symptom-panel h4 {
    margin: 0;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.04;
    max-width: 9ch;
    position: relative;
    z-index: 1;
}

.dvf-symptom-panel__underline {
    width: 96px;
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(243, 196, 107, 0.95), rgba(243,196,107,0.15));
    box-shadow: 52px 0 0 -2px rgba(243,196,107,0.28), 72px 0 0 -2px rgba(243,196,107,0.16);
}

.dvf-section--symptoms .dvf-symptom-panel p {
    max-width: 18ch;
    margin: 0;
    color: rgba(237, 236, 232, 0.82);
    font-size: clamp(16px, 1.28vw, 18px);
    line-height: 1.55;
    position: relative;
    z-index: 1;
}

.dvf-symptom-panel__meta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 2px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: #f0c778;
    font-size: 14px;
    font-weight: 700;
}

.dvf-symptom-panel__meta-icon {
    font-size: 14px;
    opacity: 0.88;
}

.dvf-symptom-quickcards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.dvf-symptom-quickcard {
    display: grid;
    align-content: start;
    gap: 10px;
    min-height: 236px;
    padding: 16px 14px 14px;
    border-radius: 20px;
    border: 1px solid rgba(243, 196, 107, 0.24);
    background: linear-gradient(180deg, rgba(16, 31, 54, 0.82), rgba(9, 18, 33, 0.92));
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.dvf-symptom-quickcard__thumb {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    margin-bottom: 2px;
    border-radius: 18px;
    border: 1px solid rgba(243, 196, 107, 0.24);
    background: radial-gradient(circle at 30% 25%, rgba(243,196,107,0.18), transparent 54%), linear-gradient(180deg, rgba(18, 35, 59, 0.88), rgba(10, 20, 35, 0.96));
    color: #f2c977;
    font-size: 28px;
}

.dvf-symptom-quickcard h5 {
    margin: 0;
    color: #f6ecdb;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    line-height: 1.12;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.dvf-symptom-quickcard p {
    margin: 0;
    color: rgba(232, 231, 227, 0.76);
    font-size: 14px;
    line-height: 1.45;
}

.dvf-symptom-quickcard__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    margin-top: auto;
    padding: 0 14px;
    border-radius: 14px;
    border: 1px solid rgba(243, 196, 107, 0.32);
    background: linear-gradient(180deg, rgba(15, 26, 41, 0.82), rgba(9, 19, 31, 0.92));
    color: #f3c46b;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
}

.dvf-section--symptoms .dvf-symptom-panel .dvf-mini-cards {
    display: grid;
    gap: 12px;
}

.dvf-section--symptoms .dvf-symptom-panel .dvf-mini-card {
    grid-template-columns: 72px minmax(0, 1fr);
    padding: 12px;
    border-radius: 18px;
    border: 1px solid rgba(243, 196, 107, 0.18);
    background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(246,250,255,0.98));
}

.dvf-section--symptoms .dvf-symptom-panel .dvf-mini-card .dvf-btn {
    grid-column: 1 / -1;
}

.dvf-symptom-benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin-top: 18px;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(243, 196, 107, 0.18);
    background: linear-gradient(90deg, rgba(11, 21, 39, 0.96), rgba(5, 14, 28, 0.98));
    box-shadow: 0 18px 40px rgba(2, 8, 18, 0.24);
}

.dvf-symptom-benefit {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    min-height: 82px;
    padding: 16px 22px;
}

.dvf-symptom-benefit + .dvf-symptom-benefit {
    border-left: 1px solid rgba(255,255,255,0.08);
}

.dvf-symptom-benefit__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1px solid rgba(243, 196, 107, 0.26);
    background: rgba(243, 196, 107, 0.06);
    color: #f3c46b;
    font-size: 20px;
}

.dvf-symptom-benefit strong {
    display: block;
    color: #f3c46b;
    font-size: 14px;
    line-height: 1.3;
}

.dvf-symptom-benefit span {
    display: block;
    color: rgba(237, 236, 232, 0.72);
    font-size: 13px;
    line-height: 1.35;
}

@media (max-width: 1180px) {
    .dvf-symptom-quickcards {
        grid-template-columns: 1fr;
    }
    .dvf-symptom-quickcard {
        min-height: 0;
    }
}

@media (max-width: 980px) {
    .dvf-section--symptoms .dvf-section__head h3 {
        max-width: none;
        font-size: clamp(34px, 7vw, 48px);
    }
    .dvf-section--symptoms .dvf-symptom-panel p {
        max-width: none;
    }
    .dvf-symptom-benefits {
        grid-template-columns: 1fr;
    }
    .dvf-symptom-benefit + .dvf-symptom-benefit {
        border-left: 0;
        border-top: 1px solid rgba(255,255,255,0.08);
    }
}

@media (max-width: 720px) {
    .dvf-symptom-grid {
        gap: 14px;
    }
    .dvf-section--symptoms .dvf-symptom-panel {
        padding: 18px 16px;
    }
    .dvf-section--symptoms .dvf-symptom-panel h4 {
        max-width: none;
        font-size: clamp(28px, 8vw, 36px);
    }
    .dvf-section--symptoms .dvf-section__head p {
        font-size: 16px;
    }
    .dvf-symptom-panel__leaf {
        width: 90px;
        height: 112px;
        right: 14px;
        top: 18px;
    }
    .dvf-symptom-benefit {
        grid-template-columns: 36px minmax(0, 1fr);
        padding: 14px 16px;
    }
}


/* ===== Symptom checker compact cleanup v6.8.1 ===== */
.dvf-section--symptoms .dvf-symptom-grid {
    gap: 16px !important;
    align-items: stretch !important;
}

.dvf-section--symptoms .dvf-map--premium,
.dvf-section--symptoms .dvf-symptom-panel {
    border-radius: 30px !important;
    overflow: hidden !important;
}

.dvf-section--symptoms .dvf-map--premium {
    padding: 0 !important;
    min-height: 0 !important;
}

.dvf-section--symptoms .dvf-map__visual {
    position: relative !important;
}

.dvf-section--symptoms .dvf-map__art {
    display: block !important;
    width: 100% !important;
    height: auto !important;
}

.dvf-section--symptoms .dvf-hotspot {
    position: absolute !important;
    z-index: 2 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    min-height: 56px !important;
    padding: 0 18px !important;
    border-radius: 999px !important;
    border: 1px solid rgba(243, 196, 107, 0.46) !important;
    background: linear-gradient(180deg, rgba(13, 26, 44, 0.92), rgba(7, 15, 28, 0.95)) !important;
    color: #f5f0e5 !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    box-shadow: 0 12px 26px rgba(0,0,0,0.24), inset 0 1px 0 rgba(255,255,255,0.05) !important;
}

.dvf-section--symptoms .dvf-hotspot__icon {
    font-size: 20px !important;
    line-height: 1 !important;
}

.dvf-section--symptoms .dvf-hotspot::before,
.dvf-section--symptoms .dvf-hotspot::after {
    content: "";
    position: absolute;
    background: rgba(243, 196, 107, 0.75);
    pointer-events: none;
}

.dvf-section--symptoms .dvf-hotspot::after {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    box-shadow: 0 0 0 4px rgba(243,196,107,0.18), 0 0 18px rgba(243,196,107,0.42);
}

.dvf-section--symptoms .dvf-hotspot--head {
    top: 18%;
    left: 3.4%;
}
.dvf-section--symptoms .dvf-hotspot--head::before {
    width: 70px; height: 2px; right: -66px; top: 50%;
}
.dvf-section--symptoms .dvf-hotspot--head::after {
    right: -73px; top: calc(50% - 4px);
}

.dvf-section--symptoms .dvf-hotspot--coat {
    top: 18%;
    right: 7%;
}
.dvf-section--symptoms .dvf-hotspot--coat::before {
    width: 86px; height: 2px; left: -82px; bottom: -20px; transform: rotate(34deg); transform-origin: right center;
}
.dvf-section--symptoms .dvf-hotspot--coat::after {
    left: -91px; bottom: -24px;
}

.dvf-section--symptoms .dvf-hotspot--joints {
    left: 3%;
    bottom: 30%;
}
.dvf-section--symptoms .dvf-hotspot--joints::before {
    width: 72px; height: 2px; right: -68px; top: 50%;
}
.dvf-section--symptoms .dvf-hotspot--joints::after {
    right: -77px; top: calc(50% - 4px);
}

.dvf-section--symptoms .dvf-hotspot--belly {
    right: 2.5%;
    bottom: 26%;
}
.dvf-section--symptoms .dvf-hotspot--belly::before {
    width: 100px; height: 2px; left: -98px; top: 50%;
}
.dvf-section--symptoms .dvf-hotspot--belly::after {
    left: -108px; top: calc(50% - 4px);
}

.dvf-section--symptoms .dvf-hotspot.is-active,
.dvf-section--symptoms .dvf-hotspot:hover,
.dvf-section--symptoms .dvf-hotspot:focus-visible {
    transform: translateY(-1px) !important;
    background: linear-gradient(180deg, rgba(19, 35, 58, 0.96), rgba(9, 17, 30, 0.98)) !important;
    color: #fff3d8 !important;
    box-shadow: 0 16px 28px rgba(0,0,0,0.30), 0 0 0 2px rgba(243,196,107,0.16) !important;
    outline: none !important;
}

.dvf-section--symptoms .dvf-symptom-panel {
    padding: 24px 24px 22px !important;
    display: grid !important;
    align-content: start !important;
    gap: 12px !important;
    min-height: 100% !important;
}

.dvf-section--symptoms .dvf-symptom-panel h4 {
    margin: 0 !important;
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: clamp(28px, 2.6vw, 40px) !important;
    line-height: 1.05 !important;
    color: #f6ecdb !important;
}

.dvf-section--symptoms .dvf-symptom-panel > p {
    margin: 0 0 2px !important;
    max-width: 20ch !important;
    color: rgba(237,236,232,0.80) !important;
    font-size: 17px !important;
    line-height: 1.5 !important;
}

.dvf-section--symptoms .dvf-symptom-panel .dvf-mini-cards {
    display: grid !important;
    gap: 12px !important;
    margin-top: 8px !important;
}

.dvf-section--symptoms .dvf-symptom-panel .dvf-mini-card {
    grid-template-columns: 72px minmax(0, 1fr) 132px !important;
    align-items: center !important;
    padding: 12px !important;
    border-radius: 18px !important;
    border: 1px solid rgba(243, 196, 107, 0.16) !important;
    background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(246,250,255,0.98)) !important;
}

.dvf-section--symptoms .dvf-symptom-panel .dvf-mini-card img {
    width: 72px !important;
    height: 72px !important;
    border-radius: 14px !important;
    object-fit: cover !important;
}

.dvf-section--symptoms .dvf-symptom-panel .dvf-mini-card .dvf-btn {
    width: 100% !important;
    min-height: 42px !important;
    padding: 0 10px !important;
}

.dvf-section--symptoms .dvf-symptom-benefits {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 0 !important;
    margin-top: 16px !important;
}

.dvf-section--symptoms .dvf-symptom-benefit {
    grid-template-columns: 20px minmax(0, 1fr) !important;
    gap: 12px !important;
    min-height: 74px !important;
    padding: 14px 20px !important;
}

.dvf-section--symptoms .dvf-symptom-benefit__icon {
    width: auto !important;
    height: auto !important;
    border: 0 !important;
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    color: #f3c46b !important;
    font-size: 24px !important;
    line-height: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

@media (max-width: 1180px) {
    .dvf-section--symptoms .dvf-hotspot {
        min-height: 50px !important;
        padding: 0 14px !important;
        font-size: 14px !important;
    }
    .dvf-section--symptoms .dvf-hotspot__icon {
        font-size: 18px !important;
    }
}

@media (max-width: 980px) {
    .dvf-section--symptoms .dvf-symptom-grid {
        grid-template-columns: 1fr !important;
    }
    .dvf-section--symptoms .dvf-symptom-panel > p {
        max-width: none !important;
    }
}

@media (max-width: 720px) {
    .dvf-section--symptoms .dvf-hotspot {
        min-height: 42px !important;
        padding: 0 12px !important;
        font-size: 12px !important;
        gap: 6px !important;
    }
    .dvf-section--symptoms .dvf-hotspot__icon {
        font-size: 16px !important;
    }
    .dvf-section--symptoms .dvf-hotspot--head { top: 14%; left: 2%; }
    .dvf-section--symptoms .dvf-hotspot--coat { top: 12%; right: 4%; }
    .dvf-section--symptoms .dvf-hotspot--joints { left: 1.5%; bottom: 28%; }
    .dvf-section--symptoms .dvf-hotspot--belly { right: 1.5%; bottom: 24%; }
    .dvf-section--symptoms .dvf-hotspot::before,
    .dvf-section--symptoms .dvf-hotspot::after {
        display: none !important;
    }
    .dvf-section--symptoms .dvf-symptom-panel {
        padding: 18px 16px !important;
    }
    .dvf-section--symptoms .dvf-symptom-panel .dvf-mini-card {
        grid-template-columns: 64px minmax(0, 1fr) !important;
    }
    .dvf-section--symptoms .dvf-symptom-panel .dvf-mini-card .dvf-btn {
        grid-column: 1 / -1 !important;
        margin-top: 6px !important;
    }
    .dvf-section--symptoms .dvf-symptom-benefit {
        grid-template-columns: 18px minmax(0, 1fr) !important;
    }
    .dvf-section--symptoms .dvf-symptom-benefit__icon {
        font-size: 20px !important;
    }
}


/* ===== Symptom checker compact polish v6.8.1 ===== */
.dvf-section--symptoms .dvf-section__head {
    max-width: none !important;
    width: 100% !important;
    margin-bottom: 12px !important;
}

.dvf-section--symptoms .dvf-section__head h3 {
    max-width: none !important;
    width: 100% !important;
    margin: 12px 0 8px !important;
    font-size: clamp(28px, 3.1vw, 40px) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.03em !important;
}

.dvf-section--symptoms .dvf-section__head p {
    max-width: none !important;
    width: 100% !important;
    font-size: clamp(15px, 1.15vw, 17px) !important;
    line-height: 1.45 !important;
}

.dvf-section--symptoms .dvf-symptom-grid {
    grid-template-columns: minmax(0, 1.18fr) minmax(320px, .82fr) !important;
    gap: 14px !important;
    align-items: stretch !important;
}

.dvf-section--symptoms .dvf-map--premium,
.dvf-section--symptoms .dvf-symptom-panel {
    border-radius: 26px !important;
}

.dvf-section--symptoms .dvf-map--premium {
    min-height: 0 !important;
}

.dvf-section--symptoms .dvf-map__visual {
    padding: 10px 8px 6px !important;
}

.dvf-section--symptoms .dvf-map__art {
    width: 92% !important;
    max-width: 920px !important;
    margin: 0 auto !important;
    height: auto !important;
}

.dvf-section--symptoms .dvf-hotspot {
    min-height: 42px !important;
    padding: 0 14px !important;
    gap: 7px !important;
    font-size: 13px !important;
    border-radius: 999px !important;
    border: 1px solid rgba(243, 196, 107, 0.34) !important;
    box-shadow: 0 10px 20px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.04) !important;
}

.dvf-section--symptoms .dvf-hotspot__icon {
    font-size: 16px !important;
}

.dvf-section--symptoms .dvf-hotspot::before,
.dvf-section--symptoms .dvf-hotspot::after {
    display: none !important;
    content: none !important;
}

.dvf-section--symptoms .dvf-hotspot--head {
    top: 16% !important;
    left: 2.2% !important;
}

.dvf-section--symptoms .dvf-hotspot--coat {
    top: 14.5% !important;
    right: 3.2% !important;
}

.dvf-section--symptoms .dvf-hotspot--joints {
    left: 2.2% !important;
    bottom: 23.5% !important;
}

.dvf-section--symptoms .dvf-hotspot--belly {
    right: 2.2% !important;
    bottom: 21.5% !important;
}

.dvf-section--symptoms .dvf-symptom-panel {
    padding: 18px 18px 16px !important;
    gap: 10px !important;
}

.dvf-section--symptoms .dvf-symptom-panel h4 {
    margin: 0 !important;
    font-size: clamp(22px, 2vw, 30px) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.03em !important;
    max-width: none !important;
}

.dvf-section--symptoms .dvf-symptom-panel > p {
    font-size: 15px !important;
    line-height: 1.45 !important;
    max-width: none !important;
}

.dvf-section--symptoms .dvf-symptom-panel .dvf-mini-cards {
    gap: 10px !important;
    margin-top: 4px !important;
}

.dvf-section--symptoms .dvf-symptom-panel .dvf-mini-card {
    grid-template-columns: 64px minmax(0, 1fr) 124px !important;
    gap: 10px !important;
    padding: 10px !important;
    border-radius: 16px !important;
}

.dvf-section--symptoms .dvf-symptom-panel .dvf-mini-card img {
    width: 64px !important;
    height: 64px !important;
    border-radius: 12px !important;
}

.dvf-section--symptoms .dvf-symptom-panel .dvf-mini-card h5 {
    font-size: 14px !important;
    line-height: 1.25 !important;
}

.dvf-section--symptoms .dvf-symptom-panel .dvf-mini-card p,
.dvf-section--symptoms .dvf-symptom-panel .dvf-mini-card span {
    font-size: 13px !important;
}

.dvf-section--symptoms .dvf-symptom-panel .dvf-mini-card .dvf-btn {
    min-height: 40px !important;
    font-size: 13px !important;
    padding: 0 10px !important;
}

.dvf-section--symptoms .dvf-symptom-benefits {
    margin-top: 12px !important;
}

.dvf-section--symptoms .dvf-symptom-benefit {
    grid-template-columns: 16px minmax(0, 1fr) !important;
    gap: 10px !important;
    min-height: 62px !important;
    padding: 12px 16px !important;
}

.dvf-section--symptoms .dvf-symptom-benefit__icon {
    font-size: 18px !important;
}

.dvf-section--symptoms .dvf-symptom-benefit strong {
    font-size: 13px !important;
}

.dvf-section--symptoms .dvf-symptom-benefit span {
    font-size: 12px !important;
}

@media (max-width: 1080px) {
    .dvf-section--symptoms .dvf-symptom-grid {
        grid-template-columns: minmax(0, 1fr) 360px !important;
    }
    .dvf-section--symptoms .dvf-map__art {
        width: 94% !important;
    }
    .dvf-section--symptoms .dvf-hotspot {
        min-height: 40px !important;
        padding: 0 12px !important;
        font-size: 12px !important;
    }
}

@media (max-width: 980px) {
    .dvf-section--symptoms .dvf-symptom-grid {
        grid-template-columns: 1fr !important;
    }
    .dvf-section--symptoms .dvf-map__art {
        width: 96% !important;
    }
}

@media (max-width: 720px) {
    .dvf-section--symptoms .dvf-section__head h3 {
        font-size: clamp(24px, 8vw, 32px) !important;
    }
    .dvf-section--symptoms .dvf-map__visual {
        padding: 8px 4px 4px !important;
    }
    .dvf-section--symptoms .dvf-map__art {
        width: 100% !important;
    }
    .dvf-section--symptoms .dvf-hotspot {
        min-height: 36px !important;
        padding: 0 10px !important;
        gap: 5px !important;
        font-size: 11px !important;
    }
    .dvf-section--symptoms .dvf-hotspot__icon {
        font-size: 14px !important;
    }
    .dvf-section--symptoms .dvf-hotspot--head { top: 13% !important; left: 1% !important; }
    .dvf-section--symptoms .dvf-hotspot--coat { top: 11.5% !important; right: 1% !important; }
    .dvf-section--symptoms .dvf-hotspot--joints { left: 1% !important; bottom: 21% !important; }
    .dvf-section--symptoms .dvf-hotspot--belly { right: 1% !important; bottom: 19% !important; }
    .dvf-section--symptoms .dvf-symptom-panel {
        padding: 16px 14px !important;
    }
    .dvf-section--symptoms .dvf-symptom-panel .dvf-mini-card {
        grid-template-columns: 56px minmax(0, 1fr) !important;
    }
    .dvf-section--symptoms .dvf-symptom-panel .dvf-mini-card img {
        width: 56px !important;
        height: 56px !important;
    }
    .dvf-section--symptoms .dvf-symptom-panel .dvf-mini-card .dvf-btn {
        grid-column: 1 / -1 !important;
        margin-top: 4px !important;
    }
}


/* ===== v6.8.1 symptom hotspot compact equal-size hotfix ===== */
.dvf-section--symptoms .dvf-hotspot {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 132px !important;
    min-width: 132px !important;
    max-width: 132px !important;
    min-height: 38px !important;
    padding: 0 10px !important;
    gap: 6px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    text-align: center !important;
}

.dvf-section--symptoms .dvf-hotspot__icon {
    font-size: 14px !important;
    flex: 0 0 auto !important;
    line-height: 1 !important;
}

.dvf-section--symptoms .dvf-hotspot--head {
    top: 10.8% !important;
    left: 1.2% !important;
}

.dvf-section--symptoms .dvf-hotspot--coat {
    top: 10.8% !important;
    right: 1.6% !important;
}

.dvf-section--symptoms .dvf-hotspot--joints {
    left: 1.2% !important;
    bottom: 18.5% !important;
}

.dvf-section--symptoms .dvf-hotspot--belly {
    right: 1.6% !important;
    bottom: 18.5% !important;
}

@media (max-width: 1080px) {
    .dvf-section--symptoms .dvf-hotspot {
        width: 124px !important;
        min-width: 124px !important;
        max-width: 124px !important;
        min-height: 36px !important;
        padding: 0 8px !important;
        font-size: 11px !important;
        gap: 5px !important;
    }
    .dvf-section--symptoms .dvf-hotspot__icon {
        font-size: 13px !important;
    }
    .dvf-section--symptoms .dvf-hotspot--head { top: 9.8% !important; left: 0.8% !important; }
    .dvf-section--symptoms .dvf-hotspot--coat { top: 9.8% !important; right: 1.0% !important; }
    .dvf-section--symptoms .dvf-hotspot--joints { left: 0.8% !important; bottom: 17.2% !important; }
    .dvf-section--symptoms .dvf-hotspot--belly { right: 1.0% !important; bottom: 17.2% !important; }
}

@media (max-width: 720px) {
    .dvf-section--symptoms .dvf-hotspot {
        width: 110px !important;
        min-width: 110px !important;
        max-width: 110px !important;
        min-height: 34px !important;
        font-size: 10px !important;
        gap: 4px !important;
        padding: 0 8px !important;
    }
    .dvf-section--symptoms .dvf-hotspot__icon {
        font-size: 12px !important;
    }
    .dvf-section--symptoms .dvf-hotspot--head { top: 9.5% !important; left: 0.5% !important; }
    .dvf-section--symptoms .dvf-hotspot--coat { top: 9.5% !important; right: 0.5% !important; }
    .dvf-section--symptoms .dvf-hotspot--joints { left: 0.5% !important; bottom: 15.5% !important; }
    .dvf-section--symptoms .dvf-hotspot--belly { right: 0.5% !important; bottom: 15.5% !important; }
}

/* ===== v20 reminders + guide section head style alignment ===== */
[id^="dvf-reminders-"] .dvf-section__head,
[id^="dvf-guide-"] .dvf-section__head {
    max-width: none !important;
    width: 100% !important;
    margin-bottom: 14px !important;
}

[id^="dvf-reminders-"] .dvf-kicker,
[id^="dvf-guide-"] .dvf-kicker {
    color: #f3c46b !important;
    background: linear-gradient(180deg, rgba(15, 27, 42, 0.88), rgba(9, 17, 29, 0.96)) !important;
    border-color: rgba(243, 196, 107, 0.40) !important;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04), 0 10px 24px rgba(0,0,0,0.18) !important;
}

[id^="dvf-reminders-"] .dvf-section__head h3,
[id^="dvf-guide-"] .dvf-section__head h3 {
    margin: 14px 0 8px !important;
    max-width: 14ch !important;
    color: #f6ecdb !important;
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: clamp(30px, 3.2vw, 44px) !important;
    line-height: 1.02 !important;
    letter-spacing: -0.04em !important;
    text-wrap: balance !important;
}

[id^="dvf-reminders-"] .dvf-section__head p,
[id^="dvf-guide-"] .dvf-section__head p {
    max-width: 760px !important;
    margin: 0 !important;
    color: rgba(240, 240, 242, 0.82) !important;
    font-size: clamp(16px, 1.12vw, 18px) !important;
    line-height: 1.5 !important;
}

@media (max-width: 720px) {
    [id^="dvf-reminders-"] .dvf-section__head h3,
    [id^="dvf-guide-"] .dvf-section__head h3 {
        max-width: none !important;
        font-size: clamp(28px, 8vw, 34px) !important;
    }

    [id^="dvf-reminders-"] .dvf-section__head p,
    [id^="dvf-guide-"] .dvf-section__head p {
        font-size: 15px !important;
    }
}


/* ===== v22 reminders + guide full-width head fix ===== */
[id^="dvf-reminders-"] .dvf-section__head,
[id^="dvf-guide-"] .dvf-section__head {
    display: block !important;
    max-width: none !important;
    width: 100% !important;
}

[id^="dvf-reminders-"] .dvf-section__head h3,
[id^="dvf-guide-"] .dvf-section__head h3,
[id^="dvf-reminders-"] .dvf-section__head p,
[id^="dvf-guide-"] .dvf-section__head p {
    max-width: none !important;
    width: 100% !important;
}

[id^="dvf-reminders-"] .dvf-section__head h3,
[id^="dvf-guide-"] .dvf-section__head h3 {
    text-wrap: pretty !important;
}

/* ===== v23 guide icons replace emoji with uploaded art ===== */
[id^="dvf-guide-"] .dvf-guide-grid {
    align-items: stretch;
    gap: 18px;
}

[id^="dvf-guide-"] .dvf-guide-card {
    display: grid;
    grid-template-rows: auto auto 1fr;
    align-content: start;
    gap: 10px;
    padding: 20px 18px 18px;
    text-align: center;
}

[id^="dvf-guide-"] .dvf-guide-card > span {
    display: block !important;
    width: 84px !important;
    height: 84px !important;
    margin: 0 auto 4px !important;
    border-radius: 0 !important;
    background-color: transparent !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: contain !important;
    box-shadow: none !important;
    font-size: 0 !important;
    line-height: 0 !important;
    color: transparent !important;
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.22));
}

[id^="dvf-guide-"] .dvf-guide-card:nth-child(1) > span { background-image: url('/dog-vitamins-app/assets/guide-icons/glucosamine.webp') !important; }
[id^="dvf-guide-"] .dvf-guide-card:nth-child(2) > span { background-image: url('/dog-vitamins-app/assets/guide-icons/fish-oil.webp') !important; }
[id^="dvf-guide-"] .dvf-guide-card:nth-child(3) > span { background-image: url('/dog-vitamins-app/assets/guide-icons/probiotics.webp') !important; }
[id^="dvf-guide-"] .dvf-guide-card:nth-child(4) > span { background-image: url('/dog-vitamins-app/assets/guide-icons/fibre.webp') !important; }
[id^="dvf-guide-"] .dvf-guide-card:nth-child(5) > span { background-image: url('/dog-vitamins-app/assets/guide-icons/green-lipped-mussel.webp') !important; }
[id^="dvf-guide-"] .dvf-guide-card:nth-child(6) > span { background-image: url('/dog-vitamins-app/assets/guide-icons/kelp.webp') !important; }
[id^="dvf-guide-"] .dvf-guide-card:nth-child(7) > span { background-image: url('/dog-vitamins-app/assets/guide-icons/multivitamins.webp') !important; }
[id^="dvf-guide-"] .dvf-guide-card:nth-child(8) > span { background-image: url('/dog-vitamins-app/assets/guide-icons/msm.webp') !important; }

[id^="dvf-guide-"] .dvf-guide-card h4 {
    margin: 0;
}

[id^="dvf-guide-"] .dvf-guide-card p {
    margin: 0;
}

@media (max-width: 760px) {
    [id^="dvf-guide-"] .dvf-guide-card > span {
        width: 74px !important;
        height: 74px !important;
    }
}

/* ===== v24 featured offers section head alignment + cleaner guide icon source ===== */
:is([id^="dvf-featured-"], [id^="dvf-offers-"], [id^="dvf-products-"], [id*="featured"]) .dvf-section__head {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    margin-bottom: 14px !important;
}

:is([id^="dvf-featured-"], [id^="dvf-offers-"], [id^="dvf-products-"], [id*="featured"]) .dvf-kicker {
    color: #f3c46b !important;
    background: linear-gradient(180deg, rgba(15, 27, 42, 0.88), rgba(9, 17, 29, 0.96)) !important;
    border-color: rgba(243, 196, 107, 0.40) !important;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04), 0 10px 24px rgba(0,0,0,0.18) !important;
}

:is([id^="dvf-featured-"], [id^="dvf-offers-"], [id^="dvf-products-"], [id*="featured"]) .dvf-section__head h3 {
    width: 100% !important;
    max-width: none !important;
    margin: 14px 0 8px !important;
    color: #f6ecdb !important;
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: clamp(30px, 3.2vw, 44px) !important;
    line-height: 1.02 !important;
    letter-spacing: -0.04em !important;
    text-wrap: pretty !important;
}

:is([id^="dvf-featured-"], [id^="dvf-offers-"], [id^="dvf-products-"], [id*="featured"]) .dvf-section__head p {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    color: rgba(240, 240, 242, 0.82) !important;
    font-size: clamp(16px, 1.12vw, 18px) !important;
    line-height: 1.5 !important;
}

@media (max-width: 720px) {
    :is([id^="dvf-featured-"], [id^="dvf-offers-"], [id^="dvf-products-"], [id*="featured"]) .dvf-section__head h3 {
        font-size: clamp(28px, 8vw, 34px) !important;
    }

    :is([id^="dvf-featured-"], [id^="dvf-offers-"], [id^="dvf-products-"], [id*="featured"]) .dvf-section__head p {
        font-size: 15px !important;
    }
}

/* ===== v25 guide cards: slightly wider cards + stronger image-icon replacement ===== */
[id^="dvf-guide-"] .dvf-guide-grid {
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)) !important;
    gap: 18px !important;
}

[id^="dvf-guide-"] .dvf-guide-card {
    padding: 20px 18px 18px !important;
}

[id^="dvf-guide-"] .dvf-guide-card > span {
    display: block !important;
    width: 94px !important;
    height: 94px !important;
    min-width: 94px !important;
    min-height: 94px !important;
    margin: 0 auto 6px !important;
    overflow: hidden !important;
    text-indent: -9999px !important;
    white-space: nowrap !important;
    font-size: 0 !important;
    line-height: 0 !important;
    color: transparent !important;
    user-select: none !important;
    border: 0 !important;
    border-radius: 0 !important;
    background-color: transparent !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: contain !important;
    box-shadow: none !important;
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.18));
}

[id^="dvf-guide-"] .dvf-guide-card h4 {
    max-width: 100% !important;
}

@media (max-width: 900px) {
    [id^="dvf-guide-"] .dvf-guide-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    [id^="dvf-guide-"] .dvf-guide-card > span {
        width: 84px !important;
        height: 84px !important;
        min-width: 84px !important;
        min-height: 84px !important;
    }
}

@media (max-width: 640px) {
    [id^="dvf-guide-"] .dvf-guide-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ===== v27 popup safe area above sticky site header + final transparent guide icons ===== */
.dvf-modal {
    z-index: 2147483647 !important;
    isolation: isolate !important;
    align-items: flex-start !important;
    justify-content: center !important;
    padding: clamp(88px, 10vh, 112px) 20px 20px !important;
}

.dvf-modal__backdrop {
    z-index: 0 !important;
}

.dvf-modal__dialog {
    position: relative !important;
    z-index: 1 !important;
    width: min(1040px, 100%) !important;
    max-height: calc(100vh - clamp(108px, 12vh, 132px)) !important;
    overflow: auto !important;
    overscroll-behavior: contain !important;
    scroll-padding-top: 72px !important;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.38) !important;
}

.dvf-modal__dialog--wide {
    width: min(1120px, 100%) !important;
}

.dvf-modal__close {
    position: sticky !important;
    top: 12px !important;
    right: 0 !important;
    margin: 14px 14px 0 auto !important;
    z-index: 20 !important;
    width: 46px !important;
    height: 46px !important;
    border: 1px solid rgba(13, 23, 40, 0.12) !important;
    background: rgba(255, 255, 255, 0.96) !important;
    color: #08111f !important;
    box-shadow: 0 12px 22px rgba(8, 17, 31, 0.16) !important;
    backdrop-filter: blur(8px) !important;
}

.dvf-modal__close:hover {
    background: #ffffff !important;
    transform: scale(1.03);
}

@media (max-width: 820px) {
    .dvf-modal {
        padding: 78px 12px 12px !important;
    }

    .dvf-modal__dialog,
    .dvf-modal__dialog--wide {
        width: min(100%, 100%) !important;
        max-height: calc(100vh - 90px) !important;
        border-radius: 24px !important;
    }

    .dvf-modal__body {
        padding: 4px 14px 16px !important;
    }

    .dvf-modal__close {
        top: 10px !important;
        margin: 10px 10px 0 auto !important;
    }
}

/* ===== v28 final reminders overlap + delete click fix ===== */
[id^="dvf-reminders-"] .dvf-grid--two {
    align-items: start !important;
}

[id^="dvf-reminders-"] .dvf-panel {
    position: relative !important;
    z-index: 1 !important;
    isolation: isolate !important;
    overflow: hidden !important;
    min-width: 0 !important;
}

[id^="dvf-reminders-"] .dvf-panel > * {
    position: relative;
    z-index: 2;
    min-width: 0;
}

[id^="dvf-reminders-"] [data-dvf-reminder-list] {
    position: relative !important;
    z-index: 5 !important;
    display: grid !important;
    gap: 12px !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: visible !important;
}

[id^="dvf-reminders-"] .dvf-reminder-item {
    position: relative !important;
    z-index: 6 !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: start !important;
    column-gap: 12px !important;
    row-gap: 8px !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow: hidden !important;
}

[id^="dvf-reminders-"] .dvf-reminder-item > div {
    min-width: 0 !important;
    max-width: 100% !important;
}

[id^="dvf-reminders-"] .dvf-reminder-item strong,
[id^="dvf-reminders-"] .dvf-reminder-item small {
    display: block !important;
    max-width: 100% !important;
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
}

[id^="dvf-reminders-"] .dvf-icon-btn,
[id^="dvf-reminders-"] [data-reminder-remove] {
    position: relative !important;
    z-index: 7 !important;
    pointer-events: auto !important;
    touch-action: manipulation !important;
    flex: 0 0 auto !important;
    white-space: nowrap !important;
}

@media (max-width: 640px) {
    [id^="dvf-reminders-"] .dvf-reminder-item {
        grid-template-columns: 1fr !important;
    }

    [id^="dvf-reminders-"] .dvf-icon-btn,
    [id^="dvf-reminders-"] [data-reminder-remove] {
        justify-self: start !important;
    }
}
