:root {
    --iopay-primary: var(--color-primary);
    --iopay-secondary: var(--color-secondary);
    --iopay-heading: var(--color-text);
    --iopay-muted: var(--color-muted);
    --iopay-soft: var(--color-primary-soft);
    --iopay-dark: var(--color-dark);
    --dnm-body-size: var(--font-size-body);
    --dnm-heading-size: var(--font-size-heading);
    --dnm-section-title-size: var(--font-size-section-title);
    --home-hero-bg: var(--color-hero-bg);
    --home-hero-panel: var(--color-hero-panel);
    --home-hero-accent: var(--color-accent);
}

/* =========================================
   HEADER - SMART HR
   ========================================= */
.dnm-site-header {
    position: relative;
    z-index: 1000;
    min-height: 112px;
    background: var(--color-white);
}

.dnm-header {
    position: relative;
    width: 100%;
    margin: 0;
    border-bottom: 1px solid rgba(12, 1, 222, 0.08);
    background: rgba(255, 255, 255, 0.98);
    transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.dnm-header.site-headers-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 14px 34px rgba(17, 24, 41, 0.08);
    backdrop-filter: blur(14px);
}

.admin-bar .dnm-header.site-headers-sticky {
    top: 32px;
}

.dnm-header__container {
    width: min(100% - 88px, 1760px);
    max-width: 1760px;
    min-height: 112px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 44px;
}

.dnm-header__brand {
    min-width: 180px;
    display: flex;
    align-items: center;
}

.dnm-header .logo-heager {
    display: inline-flex;
    align-items: center;
    line-height: 1;
    text-decoration: none;
}

.dnm-header .logo-heager .img-logo {
    display: block;
    width: 128px;
    max-width: 100%;
    max-height: 78px;
    object-fit: contain;
}

.dnm-header__menu-panel {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
}

.dnm-header__menu,
.dnm-header .nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.dnm-header__menu li,
.dnm-header .nav-menu li {
    position: relative;
}

.dnm-header__menu > li > a,
.dnm-header .nav-menu > li > a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 24px;
    color: #050505;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.dnm-header__menu > li.menu-item-has-children > a,
.dnm-header .nav-menu > li.menu-item-has-children > a {
    gap: 10px;
}

.dnm-header__menu > li.menu-item-has-children > a::after,
.dnm-header .nav-menu > li.menu-item-has-children > a::after {
    content: "";
    width: 10px;
    height: 10px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-3px) rotate(45deg);
}

.dnm-header__menu > li > a:hover,
.dnm-header__menu > li > a:focus,
.dnm-header__menu > li.current-menu-item > a,
.dnm-header__menu > li.current-menu-ancestor > a,
.dnm-header .nav-menu > li > a:hover,
.dnm-header .nav-menu > li > a:focus,
.dnm-header .nav-menu > li.current-menu-item > a,
.dnm-header .nav-menu > li.current-menu-ancestor > a {
    background: var(--color-primary-soft);
    color: #050505;
    outline: 0;
}

.dnm-menu-item__content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.dnm-menu-item__title {
    display: inline-flex;
    align-items: center;
    gap: 16px;
}

.dnm-menu-item__desc {
    color: var(--color-muted);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.35;
}

.dnm-header .sub-open {
    display: none;
}

.dnm-header .sub-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    z-index: 30;
    width: 436px;
    min-width: 0;
    padding: 24px;
    margin: 0;
    list-style: none;
    background: var(--color-white);
    border: 1px solid rgba(129, 144, 170, 0.14);
    border-radius: 16px;
    box-shadow: 0 18px 44px rgba(17, 24, 41, 0.14);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.dnm-header li:hover > .sub-menu,
.dnm-header li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.dnm-header .sub-menu li + li {
    margin-top: 4px;
}

.dnm-header .sub-menu a {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
    min-height: 54px;
    padding: 12px 16px;
    border-radius: 10px;
    color: #050505;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.25;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.dnm-header .sub-menu a:hover,
.dnm-header .sub-menu a:focus {
    background: var(--color-primary-soft);
    color: #050505;
    outline: 0;
}

.dnm-header .sub-menu:has(img) {
    width: 824px;
    padding: 34px 40px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 48px;
}

.dnm-header .sub-menu:has(img) li + li {
    margin-top: 0;
}

.dnm-header .sub-menu:has(img) a {
    min-height: 90px;
    padding: 0;
    background: transparent;
}

.dnm-header .sub-menu:has(img) a:hover,
.dnm-header .sub-menu:has(img) a:focus {
    background: transparent;
}

.dnm-header .sub-menu img {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    object-fit: contain;
    border-radius: 9px;
}

.dnm-header .sub-menu:has(img) .dnm-menu-item__title {
    font-size: 24px;
    font-weight: 800;
}

.dnm-header__actions,
.dnm-header__mobile-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 22px;
}

.dnm-header__mobile-actions {
    display: none;
}

.dnm-header__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 156px;
    min-height: 56px;
    padding: 0 28px;
    border-radius: 28px;
    color: var(--color-white);
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: none;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.dnm-header__button:hover,
.dnm-header__button:focus {
    color: var(--color-white);
    transform: translateY(-1px);
    filter: brightness(0.96);
}

.dnm-header__button--login {
    background: var(--color-secondary);
}

.dnm-header__button--register {
    background: var(--color-primary);
}

.dnm-header__toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 0;
    border-radius: 14px;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 20px;
}

/* =========================================
   HOME HERO
   ========================================= */
.dnm-home-main {
    overflow: hidden;
}

.dnm-hero {
    position: relative;
    overflow: hidden;
    min-height: 704px;
    background: linear-gradient(180deg, var(--home-hero-bg) 0%, var(--color-white) 100%);
}

.dnm-hero__inner {
    width: min(100% - 144px, 1760px);
    min-height: 704px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(420px, 0.82fr) minmax(640px, 1.18fr);
    align-items: center;
    gap: 48px;
}

.dnm-hero__content {
    position: relative;
    z-index: 2;
    padding: 74px 0;
}

.dnm-hero__title {
    max-width: 760px;
    margin: 0;
    color: #24272d;
    font-size: 64px;
    font-weight: 500;
    line-height: 1.14;
    letter-spacing: 0;
}

.dnm-hero__actions {
    display: grid;
    justify-items: start;
    gap: 24px;
    margin-top: 104px;
}

.dnm-hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 70px;
    padding: 0 18px 0 40px;
    border-radius: 35px;
    color: var(--color-white);
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.dnm-hero__button:hover,
.dnm-hero__button:focus {
    color: var(--color-white);
    transform: translateY(-2px);
    filter: brightness(0.97);
}

.dnm-hero__button strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 22px;
    background: var(--color-white);
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
}

.dnm-hero__button--primary {
    background: var(--color-secondary);
}

.dnm-hero__button--primary strong {
    color: var(--color-secondary);
}

.dnm-hero__button--secondary {
    background: var(--home-hero-accent);
}

.dnm-hero__button--secondary strong {
    color: var(--home-hero-accent);
}

.dnm-hero__visual {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.dnm-hero__visual-bg {
    position: absolute;
    top: 88px;
    left: 170px;
    right: -144px;
    bottom: 0;
    border-top-left-radius: 32px;
    background: var(--home-hero-panel);
}

.dnm-hero__visual-bg::before,
.dnm-hero__visual-bg::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 84px;
    background: rgba(255, 255, 255, 0.26);
    transform: skewX(-14deg);
}

.dnm-hero__visual-bg::before {
    right: 272px;
}

.dnm-hero__visual-bg::after {
    right: 116px;
}

.dnm-hero__slider {
    position: relative;
    z-index: 2;
    width: min(920px, 100%);
    margin: 0 0 0 auto;
    overflow: visible;
}

.dnm-hero__slide {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.dnm-hero__slide img {
    display: block;
    width: min(900px, 100%);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 28px 34px rgba(17, 24, 41, 0.14));
}

.dnm-hero__pagination {
    position: static;
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
}

.dnm-hero__pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0;
    background: var(--color-primary);
    opacity: 0.24;
}

.dnm-hero__pagination .swiper-pagination-bullet-active {
    opacity: 1;
}

.dnm-hero__nav {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: var(--color-primary);
    background: var(--color-white);
    box-shadow: 0 14px 30px rgba(17, 24, 41, 0.16);
}

.dnm-hero__nav::after {
    font-size: 16px;
    font-weight: 800;
}

/* =========================================
   HOME SECTION 2 - VIDEO CARDS
   ========================================= */
.dnm-home-video {
    padding: 86px 0 126px;
    background: var(--color-white);
}

.dnm-home-video__inner {
    width: min(100% - 140px, 1760px);
    margin: 0 auto;
}

.dnm-home-video__title {
    margin: 0 0 82px;
    color: #050505;
    font-size: 58px;
    font-weight: 800;
    line-height: 1.12;
    text-align: center;
    letter-spacing: 0;
}

.dnm-home-video__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 44px;
}

.dnm-home-video__item {
    min-width: 0;
}

.dnm-home-video__item-title {
    margin: 0 0 26px;
    color: #24272d;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
}

.dnm-home-video__thumb {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    background: var(--color-primary-soft);
    text-decoration: none;
}

.dnm-home-video__thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease, filter 0.25s ease;
}

.dnm-home-video__thumb::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(17, 24, 41, 0.08);
    transition: background-color 0.25s ease;
}

.dnm-home-video__thumb:hover img,
.dnm-home-video__thumb:focus img {
    transform: scale(1.035);
    filter: saturate(1.04);
}

.dnm-home-video__thumb:hover::before,
.dnm-home-video__thumb:focus::before {
    background: rgba(17, 24, 41, 0.16);
}

.dnm-home-video__play {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--color-white);
    transform: translate(-50%, -50%);
    box-shadow: 0 18px 34px rgba(17, 24, 41, 0.12);
    transition: transform 0.25s ease;
}

.dnm-home-video__play::before {
    content: "";
    width: 0;
    height: 0;
    margin-left: 7px;
    border-top: 19px solid transparent;
    border-bottom: 19px solid transparent;
    border-left: 26px solid var(--color-secondary);
}

.dnm-home-video__thumb:hover .dnm-home-video__play,
.dnm-home-video__thumb:focus .dnm-home-video__play {
    transform: translate(-50%, -50%) scale(1.06);
}

/* =========================================
   HOME SECTION 3 - CUSTOMER LOGOS
   ========================================= */
.dnm-home-logos {
    padding: 22px 0 112px;
    background: var(--color-white);
}

.dnm-home-logos__inner {
    width: min(100% - 140px, 1760px);
    margin: 0 auto;
}

.dnm-home-logos__title {
    margin: 0 0 78px;
    color: #3f4657;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.3;
    text-align: center;
    letter-spacing: 0;
}

.dnm-home-logos__title span {
    color: var(--color-secondary);
    font-weight: 800;
}

.dnm-home-logos__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    column-gap: 86px;
    row-gap: 58px;
    align-items: center;
}

.dnm-home-logos__item {
    min-width: 0;
    height: 112px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dnm-home-logos__item img {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 104px;
    object-fit: contain;
}

/* =========================================
   HOME SECTION 4 - REVIEWS SLIDER
   ========================================= */
.dnm-section4 {
    overflow: hidden;
    padding: 24px 0 74px;
    background: var(--color-hero-bg);
}

.dnm-section4__inner {
    width: 100%;
    margin: 0 auto;
}

.dnm-section4__heading {
    width: min(100% - 140px, 1760px);
    margin: 0 auto 78px;
    text-align: center;
}

.dnm-section4__title {
    margin: 0 0 24px;
    color: #050505;
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: 0;
}

.dnm-section4__desc {
    margin: 0;
    color: #3f4657;
    font-size: 34px;
    font-weight: 400;
    line-height: 1.35;
}

.dnm-section4__slider {
    width: min(100% + 420px, 2320px);
    margin-left: 50%;
    overflow: visible;
    transform: translateX(-50%);
}

.dnm-section4__slider .swiper-slide {
    height: auto;
}

.dnm-section4__card {
    height: 100%;
    min-height: 402px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 38px 42px 34px;
    border-radius: 20px;
    background: var(--color-white);
    box-shadow: 0 18px 46px rgba(17, 24, 41, 0.05);
}

.dnm-section4__stars {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    color: var(--color-star);
    font-size: 27px;
    line-height: 1;
}

.dnm-section4__quote {
    margin: 0 0 28px;
    color: #30343b;
    font-size: 26px;
    font-weight: 400;
    line-height: 1.4;
}

.dnm-section4__author {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: auto;
}

.dnm-section4__avatar {
    flex: 0 0 auto;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
}

.dnm-section4__name {
    margin: 0 0 4px;
    color: #30343b;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.2;
}

.dnm-section4__role {
    margin: 0;
    color: #30343b;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.25;
}

.dnm-section4__pagination {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 64px;
}

.dnm-section4__pagination .swiper-pagination-bullet {
    width: 11px;
    height: 11px;
    margin: 0 !important;
    border-radius: 999px;
    background: var(--color-accent);
    opacity: 0.28;
    transition: width 0.2s ease, opacity 0.2s ease;
}

.dnm-section4__pagination .swiper-pagination-bullet-active {
    width: 28px;
    opacity: 1;
}

/* =========================================
   HOME SECTION 5 - AUDIENCE GROUPS
   ========================================= */
.dnm-section5 {
    padding: 58px 0 98px;
    background: var(--color-white);
}

.dnm-section5__inner {
    width: min(100% - 140px, 1580px);
    margin: 0 auto;
}

.dnm-section5__title {
    margin: 0 0 76px;
    color: #050505;
    font-size: 54px;
    font-weight: 800;
    line-height: 1.16;
    text-align: center;
    letter-spacing: 0;
}

.dnm-section5__groups {
    display: grid;
    gap: 104px;
}

.dnm-section5__group {
    display: grid;
    grid-template-columns: minmax(420px, 0.88fr) minmax(560px, 1.12fr);
    align-items: center;
    gap: 84px;
}

.dnm-section5__group--reverse {
    grid-template-columns: minmax(560px, 1.12fr) minmax(420px, 0.88fr);
}

.dnm-section5__group--reverse .dnm-section5__content {
    order: 2;
}

.dnm-section5__group--reverse .dnm-section5__visual {
    order: 1;
}

.dnm-section5__content {
    min-width: 0;
}

.dnm-section5__group-title {
    margin: 0 0 42px;
    color: #17202f;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0;
}

.dnm-section5__benefits {
    display: grid;
    gap: 34px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.dnm-section5__benefit {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    align-items: center;
    gap: 30px;
    color: #53596a;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.35;
}

.dnm-section5__icon {
    display: block;
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.dnm-section5__visual {
    position: relative;
    min-height: 464px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.dnm-section5__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: calc(100% - 64px);
    height: calc(100% - 40px);
    border-radius: 28px;
    background: var(--section5-panel-bg, var(--color-section-lavender));
}

.dnm-section5__group--reverse .dnm-section5__panel {
    left: 0;
    right: auto;
}

.dnm-section5__visual img {
    position: relative;
    z-index: 2;
    display: block;
    width: calc(100% - 54px);
    margin-left: 0;
    border-radius: 24px;
    object-fit: cover;
    aspect-ratio: 1.5 / 1;
}

.dnm-section5__group--reverse .dnm-section5__visual img {
    margin-left: auto;
}

/* =========================================
   HOME SECTION 6 - SIMPLE CTA
   ========================================= */
.dnm-section6 {
    position: relative;
    overflow: hidden;
    padding: 66px 0;
    background: #efedff;
}

.dnm-section6::before,
.dnm-section6::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    border: 40px solid rgba(125, 115, 255, 0.08);
    border-radius: 50%;
}

.dnm-section6::before {
    left: -36px;
    top: -92px;
}

.dnm-section6::after {
    right: -86px;
    bottom: -122px;
}

.dnm-section6__inner {
    position: relative;
    z-index: 2;
    width: min(100% - 140px, 1270px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 54px;
}

.dnm-section6__title {
    margin: 0 0 26px;
    color: #050505;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.18;
}

.dnm-section6__desc {
    margin: 0;
    color: #343947;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.36;
}

.dnm-section6__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 64px;
    padding: 0 16px 0 36px;
    border-radius: 34px;
    background: var(--color-secondary);
    color: var(--color-white);
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.dnm-section6__button:hover,
.dnm-section6__button:focus {
    color: var(--color-white);
    transform: translateY(-2px);
    filter: brightness(0.97);
}

.dnm-section6__button strong {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 22px;
    background: var(--color-white);
    color: var(--color-secondary);
    font-size: 18px;
    font-weight: 800;
}

/* =========================================
   HOME SECTION 7 - FEATURE VIDEO
   ========================================= */
.dnm-section7 {
    padding: 50px 0 32px;
    background: linear-gradient(180deg, var(--color-hero-bg) 0%, var(--color-white) 100%);
}

.dnm-section7__inner {
    width: min(100% - 140px, 1040px);
    margin: 0 auto;
    text-align: center;
}

.dnm-section7__title {
    margin: 0 0 72px;
    color: #050505;
    font-size: 46px;
    font-weight: 800;
    line-height: 1.34;
}

.dnm-section7__video {
    position: relative;
    display: block;
    overflow: hidden;
    width: 50%;
    margin: 0 auto;
    border-radius: 10px;
    background: var(--color-primary-soft);
    box-shadow: 0 20px 42px rgba(17, 24, 41, 0.06);
}

.dnm-section7__video img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.dnm-section7__video:hover img,
.dnm-section7__video:focus img {
    transform: scale(1.025);
}

.dnm-section7__play {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--color-white);
    transform: translate(-50%, -50%);
    box-shadow: 0 14px 34px rgba(17, 24, 41, 0.14);
}

.dnm-section7__play::before {
    content: "";
    width: 0;
    height: 0;
    margin-left: 6px;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 22px solid var(--color-secondary);
}

/* =========================================
   HOME SECTION 8 - FEATURE CARDS
   ========================================= */
.dnm-section8 {
    padding: 92px 0 126px;
    background: var(--color-white);
}

.dnm-section8__inner {
    width: min(100% - 140px, 1320px);
    margin: 0 auto;
}

.dnm-section8__title {
    margin: 0 0 72px;
    color: #050505;
    font-size: 46px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
}

.dnm-section8__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 36px;
}

.dnm-section8__card {
    min-height: 270px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 24px;
    border: 1px solid rgba(129, 144, 170, 0.12);
    border-radius: 22px;
    background: var(--color-white);
    box-shadow: 0 20px 44px rgba(17, 24, 41, 0.04);
    text-align: center;
}

.dnm-section8__icon {
    display: block;
    width: 72px;
    height: 72px;
    margin-bottom: 28px;
    object-fit: contain;
}

.dnm-section8__card h3 {
    min-height: 58px;
    margin: 0 0 28px;
    color: #050505;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.22;
}

.dnm-section8__card a {
    color: var(--color-secondary);
    font-size: 18px;
    font-weight: 800;
    text-decoration: none;
}

/* =========================================
   HOME SECTION 9 - SALES REVIEWS
   ========================================= */
.dnm-section9 {
    padding: 142px 0 70px;
    background: linear-gradient(180deg, var(--color-hero-bg) 0%, var(--color-white) 100%);
}

.dnm-section9__inner {
    width: min(100% - 140px, 1320px);
    margin: 0 auto;
}

.dnm-section9__title {
    margin: 0 0 82px;
    color: #050505;
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
}

.dnm-section9__slider {
    overflow: hidden;
}

.dnm-section9__slider .swiper-slide {
    height: auto;
}

.dnm-section9__card {
    height: 100%;
    min-height: 330px;
    padding: 34px 34px 30px;
    border-radius: 16px;
    background: var(--color-white);
    box-shadow: 0 18px 46px rgba(17, 24, 41, 0.06);
}

.dnm-section9__stars {
    display: flex;
    gap: 9px;
    margin-bottom: 20px;
    color: var(--color-star);
    font-size: 20px;
}

.dnm-section9__card p {
    margin: 0 0 26px;
    color: #424853;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.42;
}

.dnm-section9__author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.dnm-section9__author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.dnm-section9__author h3 {
    margin: 0 0 5px;
    color: #30343b;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.2;
}

.dnm-section9__author span {
    display: block;
    color: #4b5563;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
}

.dnm-section9__pagination {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 42px;
}

.dnm-section9__pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 !important;
    border-radius: 999px;
    background: var(--color-accent);
    opacity: 0.3;
    transition: width 0.2s ease, opacity 0.2s ease;
}

.dnm-section9__pagination .swiper-pagination-bullet-active {
    width: 26px;
    opacity: 1;
}

/* =========================================
   HOME SECTION 10 - LATEST NEWS
   ========================================= */
.dnm-section10 {
    padding: 70px 0 92px;
    background: var(--color-white);
}

.dnm-section10__inner {
    width: min(100% - 140px, 1320px);
    margin: 0 auto;
}

.dnm-section10__title {
    margin: 0 0 72px;
    color: #050505;
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
}

.dnm-section10__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px;
}

.dnm-section10__thumb {
    display: block;
    overflow: hidden;
    border-radius: 8px;
    background: var(--color-primary-soft);
}

.dnm-section10__thumb img {
    display: block;
    width: 100%;
    aspect-ratio: 1.78 / 1;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.dnm-section10__thumb:hover img,
.dnm-section10__thumb:focus img {
    transform: scale(1.035);
}

.dnm-section10__date {
    margin: 22px 0 12px;
    color: #4b5563;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.25;
}

.dnm-section10__card h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.38;
}

.dnm-section10__card h3 a {
    color: #050505;
    text-decoration: none;
}

.dnm-section10__card h3 a:hover,
.dnm-section10__card h3 a:focus {
    color: var(--color-secondary);
}

/* =========================================
   HOME SECTION 11 - FINAL CTA
   ========================================= */
.dnm-section11 {
    position: relative;
    background: #000000;
}

.dnm-section11__top {
    position: relative;
    overflow: hidden;
    padding: 56px 0 88px;
    background: #fff0fa;
}

.dnm-section11__top::before,
.dnm-section11__top::after {
    content: "";
    position: absolute;
    width: 230px;
    height: 230px;
    border: 28px solid rgba(236, 65, 145, 0.08);
    border-radius: 50%;
}

.dnm-section11__top::before {
    left: -80px;
    bottom: -110px;
}

.dnm-section11__top::after {
    right: -36px;
    top: -118px;
}

.dnm-section11__top-inner {
    position: relative;
    z-index: 2;
    width: min(100% - 140px, 1060px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 62px;
}

.dnm-section11__title {
    margin: 0 0 24px;
    color: #050505;
    font-size: 36px;
    font-weight: 800;
    line-height: 1.22;
}

.dnm-section11__desc {
    max-width: 760px;
    margin: 0;
    color: #343947;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.42;
}

.dnm-section11__price {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 34px;
    border-radius: 28px;
    background: var(--color-cta-pink);
    color: var(--color-white);
    font-size: 22px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.dnm-section11__panel {
    position: relative;
    z-index: 2;
    width: min(100% - 140px, 1320px);
    margin: -64px auto 0;
    padding: 58px 80px 56px;
    border-radius: 14px;
    background: var(--color-secondary);
    color: var(--color-white);
    overflow: hidden;
}

.dnm-section11__panel::before,
.dnm-section11__panel::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    border: 42px solid rgba(255, 255, 255, 0.12);
}

.dnm-section11__panel::before {
    width: 260px;
    height: 260px;
    left: -94px;
    top: -120px;
}

.dnm-section11__panel::after {
    width: 300px;
    height: 300px;
    right: -80px;
    bottom: -118px;
}

.dnm-section11__panel h3,
.dnm-section11__panel ul,
.dnm-section11__actions {
    position: relative;
    z-index: 2;
}

.dnm-section11__panel h3 {
    margin: 0 0 30px;
    color: var(--color-white);
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
}

.dnm-section11__panel ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 70px;
    max-width: 980px;
    padding: 0;
    margin: 0 0 42px;
    list-style: none;
}

.dnm-section11__panel li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--color-white);
    font-size: 21px;
    font-weight: 600;
    line-height: 1.35;
}

.dnm-section11__panel li i {
    flex: 0 0 auto;
    margin-top: 3px;
}

.dnm-section11__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.dnm-section11__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 30px;
    border-radius: 28px;
    color: var(--color-white);
    font-size: 22px;
    font-weight: 800;
    text-decoration: none;
}

.dnm-section11__button:hover,
.dnm-section11__button:focus {
    color: var(--color-white);
    filter: brightness(0.96);
}

.dnm-section11__button--primary {
    background: var(--color-cta-pink);
    border: 1px solid rgba(255, 255, 255, 0.34);
}

.dnm-section11__button--secondary {
    background: var(--color-accent);
}

/* =========================================
   FOOTER - CALLIO
   ========================================= */
.dnm-footer-callio {
    padding: 90px 0 72px;
    background: #000000 !important;
    color: var(--color-white);
}

.dnm-footer-callio__inner {
    width: min(100% - 140px, 1320px);
    margin: 0 auto;
}

.dnm-footer-callio__columns {
    display: grid;
    grid-template-columns: 1.3fr 0.65fr 1.1fr 1.3fr 1.15fr;
    gap: 54px;
    padding-bottom: 62px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.dnm-footer-callio__nav h2,
.dnm-footer-callio__company h2,
.dnm-footer-callio__social h2 {
    margin: 0 0 22px;
    color: var(--color-white);
    font-size: 20px;
    font-weight: 800;
    line-height: 1.25;
}

.dnm-footer-callio__nav ul {
    display: grid;
    gap: 16px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.dnm-footer-callio a {
    color: #d7dbe8;
    text-decoration: none;
}

.dnm-footer-callio a:hover,
.dnm-footer-callio a:focus {
    color: var(--color-white);
}

.dnm-footer-callio__nav li a {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.35;
}

.dnm-footer-callio__apps {
    margin-top: 22px;
}

.dnm-footer-callio__apps h3 {
    margin: 0 0 16px;
    color: var(--color-white);
    font-size: 18px;
    font-weight: 800;
}

.dnm-footer-callio__apps a {
    width: 150px;
    min-height: 44px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 12px;
    margin-bottom: 12px;
    border-radius: 6px;
    background: var(--color-white);
    color: #050505;
    font-size: 8px;
    line-height: 1.1;
}

.dnm-footer-callio__apps a:hover,
.dnm-footer-callio__apps a:focus {
    color: #050505;
}

.dnm-footer-callio__apps i {
    font-size: 23px;
}

.dnm-footer-callio__apps strong {
    font-size: 16px;
    font-weight: 700;
}

.dnm-footer-callio__bottom {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 40px;
    padding-top: 38px;
}

.dnm-footer-callio__company p {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin: 0 0 18px;
    color: #d7dbe8;
    font-size: 18px;
    line-height: 1.45;
}

.dnm-footer-callio__company i {
    margin-top: 4px;
    color: var(--color-white);
}

.dnm-footer-callio__social div {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dnm-footer-callio__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: var(--color-white);
    color: #000000;
    font-size: 14px;
}

footer#colophon.dnm-footer-callio {
    padding: 90px 0 72px;
    background: #000000 !important;
}

footer#colophon.dnm-footer-callio a {
    color: #d7dbe8;
}

footer#colophon.dnm-footer-callio a:hover,
footer#colophon.dnm-footer-callio a:focus {
    color: var(--color-white);
}

footer#colophon.dnm-footer-callio .dnm-footer-callio__nav h2,
footer#colophon.dnm-footer-callio .dnm-footer-callio__company h2,
footer#colophon.dnm-footer-callio .dnm-footer-callio__social h2,
footer#colophon.dnm-footer-callio .dnm-footer-callio__apps h3 {
    color: var(--color-white);
}

footer#colophon.dnm-footer-callio .dnm-footer-callio__company p,
footer#colophon.dnm-footer-callio .dnm-footer-callio__company span {
    color: #d7dbe8;
}

footer#colophon.dnm-footer-callio .dnm-footer-callio__apps a,
footer#colophon.dnm-footer-callio .dnm-footer-callio__apps a:hover,
footer#colophon.dnm-footer-callio .dnm-footer-callio__apps a:focus,
footer#colophon.dnm-footer-callio .dnm-footer-callio__apps span,
footer#colophon.dnm-footer-callio .dnm-footer-callio__apps strong,
footer#colophon.dnm-footer-callio .dnm-footer-callio__apps i,
footer#colophon.dnm-footer-callio .dnm-footer-callio__social a,
footer#colophon.dnm-footer-callio .dnm-footer-callio__social a i {
    color: #000000;
}

@media (min-width: 1800px) {
    .dnm-hero__inner {
        width: min(100% - 144px, 1840px);
    }
}

@media (min-width: 1401px) {
    .dnm-header__menu,
    .dnm-header .nav-menu {
        gap: 30px;
    }
}

@media (max-width: 1280px) {
    .dnm-header__container {
        width: min(100% - 48px, 1200px);
        gap: 24px;
    }

    .dnm-header__menu,
    .dnm-header .nav-menu {
        gap: 8px;
    }

    .dnm-header__menu > li > a,
    .dnm-header .nav-menu > li > a {
        padding: 0 16px;
        font-size: 18px;
    }

    .dnm-header__button {
        min-width: 132px;
        min-height: 52px;
        font-size: 19px;
    }

    .dnm-hero__inner {
        width: min(100% - 64px, 1200px);
        grid-template-columns: minmax(360px, 0.82fr) minmax(540px, 1.18fr);
        gap: 32px;
    }

    .dnm-hero__title {
        font-size: 52px;
    }

    .dnm-hero__button {
        min-height: 62px;
        font-size: 24px;
    }

    .dnm-home-video__inner {
        width: min(100% - 64px, 1200px);
    }

    .dnm-home-video__title {
        font-size: 50px;
    }

    .dnm-home-video__grid {
        gap: 28px;
    }

    .dnm-home-video__item-title {
        font-size: 30px;
    }

    .dnm-home-video__play {
        width: 78px;
        height: 78px;
    }

    .dnm-home-logos__inner {
        width: min(100% - 64px, 1200px);
    }

    .dnm-home-logos__grid {
        column-gap: 54px;
        row-gap: 48px;
    }

    .dnm-home-logos__title {
        font-size: 32px;
    }

    .dnm-section4__heading {
        width: min(100% - 64px, 1200px);
    }

    .dnm-section4__title {
        font-size: 48px;
    }

    .dnm-section4__desc {
        font-size: 28px;
    }

    .dnm-section4__quote {
        font-size: 22px;
    }

    .dnm-section5__inner {
        width: min(100% - 64px, 1380px);
    }

    .dnm-section5__title {
        font-size: 48px;
    }

    .dnm-section5__group {
        gap: 58px;
    }

    .dnm-section5__benefit {
        font-size: 22px;
    }

    .dnm-section6__inner,
    .dnm-section7__inner,
    .dnm-section8__inner,
    .dnm-section9__inner,
    .dnm-section10__inner,
    .dnm-section11__top-inner,
    .dnm-section11__panel,
    .dnm-footer-callio__inner {
        width: min(100% - 64px, 1200px);
    }

    .dnm-section7__title,
    .dnm-section8__title,
    .dnm-section9__title,
    .dnm-section10__title {
        font-size: 40px;
    }

    .dnm-section8__grid {
        gap: 24px;
    }

    .dnm-section8__card {
        min-height: 250px;
    }

    .dnm-footer-callio__columns {
        gap: 34px;
    }
}

@media (max-width: 900px) {
    .dnm-site-header,
    .dnm-header__container {
        min-height: 78px;
    }

    .dnm-header__container {
        width: min(100% - 32px, 820px);
        display: flex;
        justify-content: space-between;
        gap: 16px;
    }

    .dnm-header__brand {
        min-width: 0;
    }

    .dnm-header .logo-heager .img-logo {
        width: 118px;
        max-height: 56px;
    }

    .dnm-header__toggle {
        display: inline-flex;
        flex: 0 0 auto;
    }

    .dnm-header.toggled .dnm-header__toggle {
        background: var(--color-secondary);
    }

    .dnm-header__actions {
        display: none;
    }

    .dnm-header__menu-panel {
        position: absolute;
        top: calc(100% - 1px);
        left: 16px;
        right: 16px;
        z-index: 40;
        display: none;
        width: auto;
        padding: 16px;
        border: 1px solid rgba(129, 144, 170, 0.14);
        border-radius: 18px;
        background: var(--color-white);
        box-shadow: 0 18px 46px rgba(17, 24, 41, 0.14);
    }

    .dnm-header.toggled .dnm-header__menu-panel {
        display: block;
    }

    .dnm-header__menu,
    .dnm-header .nav-menu {
        width: 100%;
        display: flex !important;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }

    .dnm-header__menu > li > a,
    .dnm-header .nav-menu > li > a {
        width: 100%;
        justify-content: space-between;
        min-height: 46px;
        padding: 0 14px;
        border-radius: 12px;
        font-size: 17px;
    }

    .dnm-header .sub-open {
        display: block;
        position: absolute;
        top: 2px;
        right: 2px;
        width: 44px;
        height: 44px;
        cursor: pointer;
    }

    .dnm-header .sub-open::before {
        content: "";
        position: absolute;
        top: 16px;
        left: 16px;
        width: 10px;
        height: 10px;
        border-right: 2px solid var(--color-muted);
        border-bottom: 2px solid var(--color-muted);
        transform: rotate(45deg);
        transition: transform 0.2s ease;
    }

    .dnm-header .sub-open.sub-opends::before {
        transform: rotate(225deg);
    }

    .dnm-header .sub-menu,
    .dnm-header .sub-menu:has(img) {
        position: static;
        display: none;
        width: 100%;
        min-width: 0;
        padding: 4px 0 8px 12px;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .dnm-header .sub-menu.active,
    .dnm-header .sub-menu:has(img).active {
        display: block;
    }

    .dnm-header .sub-menu a,
    .dnm-header .sub-menu:has(img) a {
        min-height: 44px;
        padding: 10px 12px;
        border-radius: 12px;
        font-size: 16px;
    }

    .dnm-header .sub-menu:has(img) .dnm-menu-item__title {
        font-size: 17px;
    }

    .dnm-menu-item__desc {
        font-size: 14px;
    }

    .dnm-header__mobile-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        margin-top: 12px;
    }

    .dnm-header__button {
        min-width: 0;
        min-height: 48px;
        width: 100%;
        padding: 0 16px;
        font-size: 17px;
    }

    .dnm-hero {
        min-height: auto;
    }

    .dnm-hero__inner {
        width: min(100% - 36px, 820px);
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 58px 0 70px;
    }

    .dnm-hero__content {
        padding: 0;
    }

    .dnm-hero__title {
        max-width: 660px;
        font-size: 44px;
    }

    .dnm-hero__actions {
        margin-top: 42px;
    }

    .dnm-hero__visual {
        min-height: auto;
    }

    .dnm-hero__visual-bg {
        top: 44px;
        left: 80px;
        right: -18px;
        border-top-left-radius: 24px;
    }

    .dnm-hero__slider {
        width: 100%;
    }

    .dnm-home-video {
        padding: 64px 0 82px;
    }

    .dnm-home-video__inner {
        width: min(100% - 36px, 820px);
    }

    .dnm-home-video__title {
        margin-bottom: 48px;
        font-size: 42px;
    }

    .dnm-home-video__grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .dnm-home-video__item-title {
        margin-bottom: 16px;
        font-size: 28px;
    }

    .dnm-home-logos {
        padding: 8px 0 82px;
    }

    .dnm-home-logos__inner {
        width: min(100% - 36px, 820px);
    }

    .dnm-home-logos__title {
        margin-bottom: 46px;
        font-size: 28px;
    }

    .dnm-home-logos__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        column-gap: 34px;
        row-gap: 36px;
    }

    .dnm-home-logos__item {
        height: 96px;
    }

    .dnm-home-logos__item img {
        max-height: 86px;
    }

    .dnm-section4 {
        padding: 58px 0 68px;
    }

    .dnm-section4__heading {
        width: min(100% - 36px, 820px);
        margin-bottom: 42px;
    }

    .dnm-section4__title {
        font-size: 40px;
    }

    .dnm-section4__desc {
        font-size: 24px;
    }

    .dnm-section4__slider {
        width: min(100% - 36px, 820px);
        margin: 0 auto;
        transform: none;
    }

    .dnm-section4__card {
        min-height: 340px;
        padding: 30px;
    }

    .dnm-section4__quote {
        font-size: 20px;
    }

    .dnm-section4__pagination {
        margin-top: 36px;
    }

    .dnm-section5 {
        padding: 56px 0 72px;
    }

    .dnm-section5__inner {
        width: min(100% - 36px, 820px);
    }

    .dnm-section5__title {
        margin-bottom: 46px;
        font-size: 40px;
    }

    .dnm-section5__groups {
        gap: 72px;
    }

    .dnm-section5__group,
    .dnm-section5__group--reverse {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .dnm-section5__group--reverse .dnm-section5__content,
    .dnm-section5__group--reverse .dnm-section5__visual {
        order: initial;
    }

    .dnm-section5__group-title {
        margin-bottom: 28px;
        font-size: 34px;
    }

    .dnm-section5__benefits {
        gap: 22px;
    }

    .dnm-section5__benefit {
        grid-template-columns: 48px minmax(0, 1fr);
        gap: 20px;
        font-size: 20px;
    }

    .dnm-section5__icon {
        width: 42px;
        height: 42px;
    }

    .dnm-section5__visual {
        min-height: auto;
        padding-top: 38px;
    }

    .dnm-section5__panel {
        width: calc(100% - 42px);
        height: calc(100% - 32px);
    }

    .dnm-section6 {
        padding: 54px 0;
    }

    .dnm-section6__inner {
        width: min(100% - 36px, 820px);
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .dnm-section6__title {
        font-size: 34px;
    }

    .dnm-section6__desc {
        font-size: 22px;
    }

    .dnm-section6__button {
        width: fit-content;
        font-size: 22px;
    }

    .dnm-section7 {
        padding: 58px 0 28px;
    }

    .dnm-section7__inner,
    .dnm-section8__inner,
    .dnm-section9__inner,
    .dnm-section10__inner,
    .dnm-section11__top-inner,
    .dnm-section11__panel,
    .dnm-footer-callio__inner {
        width: min(100% - 36px, 820px);
    }

    .dnm-section7__title {
        margin-bottom: 42px;
        font-size: 34px;
    }

    .dnm-section7__video {
        width: 100%;
    }

    .dnm-section8 {
        padding: 64px 0 78px;
    }

    .dnm-section8__title,
    .dnm-section9__title,
    .dnm-section10__title {
        margin-bottom: 44px;
        font-size: 34px;
    }

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

    .dnm-section9 {
        padding: 78px 0 60px;
    }

    .dnm-section10 {
        padding: 58px 0 70px;
    }

    .dnm-section10__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .dnm-section11__top-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .dnm-section11__panel {
        padding: 42px 34px;
    }

    .dnm-section11__panel ul {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .dnm-footer-callio {
        padding: 64px 0 54px;
    }

    footer#colophon.dnm-footer-callio {
        padding: 64px 0 54px;
    }

    .dnm-footer-callio__columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dnm-footer-callio__bottom {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .admin-bar .dnm-header.site-headers-sticky {
        top: 46px;
    }

    .dnm-header__container {
        width: min(100% - 28px, 720px);
    }

    .dnm-hero__title {
        font-size: 38px;
    }

    .dnm-hero__button {
        min-height: 56px;
        padding: 0 12px 0 24px;
        font-size: 20px;
    }

    .dnm-hero__button strong {
        min-height: 34px;
        padding: 0 12px;
        font-size: 15px;
    }

    .dnm-home-video__title {
        font-size: 36px;
    }

    .dnm-home-video__play {
        width: 70px;
        height: 70px;
    }

    .dnm-home-video__play::before {
        border-top-width: 15px;
        border-bottom-width: 15px;
        border-left-width: 21px;
    }

    .dnm-home-logos__title {
        font-size: 24px;
    }

    .dnm-home-logos__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 26px;
        row-gap: 30px;
    }

    .dnm-section4__title {
        font-size: 34px;
    }

    .dnm-section4__desc {
        font-size: 20px;
    }

    .dnm-section4__stars {
        font-size: 23px;
    }

    .dnm-section5__title {
        font-size: 34px;
    }

    .dnm-section5__group-title {
        font-size: 30px;
    }

    .dnm-section5__benefit {
        font-size: 18px;
    }

    .dnm-section6__button {
        min-height: 58px;
        padding: 0 12px 0 24px;
        font-size: 20px;
    }

    .dnm-section6__button strong {
        min-height: 34px;
        font-size: 15px;
    }

    .dnm-section7__title,
    .dnm-section8__title,
    .dnm-section9__title,
    .dnm-section10__title {
        font-size: 30px;
    }

    .dnm-section7__play {
        width: 62px;
        height: 62px;
    }

    .dnm-section8__card h3 {
        font-size: 18px;
    }

    .dnm-section9__card p {
        font-size: 19px;
    }

    .dnm-section11__title,
    .dnm-section11__panel h3 {
        font-size: 30px;
    }

    .dnm-section11__desc,
    .dnm-section11__panel li {
        font-size: 19px;
    }

    .dnm-footer-callio__columns {
        grid-template-columns: 1fr;
        gap: 34px;
    }
}

@media (max-width: 500px) {
    .dnm-site-header,
    .dnm-header__container {
        min-height: 70px;
    }

    .dnm-header .logo-heager .img-logo {
        width: 104px;
    }

    .dnm-header__menu-panel {
        left: 10px;
        right: 10px;
        padding: 12px;
    }

    .dnm-header__mobile-actions {
        grid-template-columns: 1fr;
    }

    .dnm-hero__inner {
        width: min(100% - 24px, 480px);
        padding: 42px 0 54px;
    }

    .dnm-hero__title {
        font-size: 32px;
        line-height: 1.18;
    }

    .dnm-hero__actions {
        width: 100%;
        gap: 14px;
        margin-top: 34px;
    }

    .dnm-hero__button {
        width: 100%;
        justify-content: space-between;
        min-height: 54px;
        padding: 0 10px 0 18px;
        font-size: 18px;
    }

    .dnm-hero__visual-bg {
        top: 30px;
        left: 32px;
        right: -12px;
    }

    .dnm-home-video {
        padding: 52px 0 64px;
    }

    .dnm-home-video__inner {
        width: min(100% - 24px, 480px);
    }

    .dnm-home-video__title {
        margin-bottom: 36px;
        font-size: 30px;
    }

    .dnm-home-video__item-title {
        font-size: 24px;
    }

    .dnm-home-video__thumb {
        border-radius: 12px;
    }

    .dnm-home-logos {
        padding: 0 0 62px;
    }

    .dnm-home-logos__inner {
        width: min(100% - 24px, 480px);
    }

    .dnm-home-logos__title {
        margin-bottom: 32px;
        font-size: 22px;
    }

    .dnm-home-logos__grid {
        column-gap: 20px;
        row-gap: 24px;
    }

    .dnm-home-logos__item {
        height: 82px;
    }

    .dnm-home-logos__item img {
        max-height: 72px;
    }

    .dnm-section4 {
        padding: 48px 0 58px;
    }

    .dnm-section4__heading,
    .dnm-section4__slider {
        width: min(100% - 24px, 480px);
    }

    .dnm-section4__title {
        margin-bottom: 16px;
        font-size: 30px;
    }

    .dnm-section4__desc {
        font-size: 18px;
    }

    .dnm-section4__card {
        min-height: 320px;
        padding: 24px;
        border-radius: 16px;
    }

    .dnm-section4__quote {
        font-size: 18px;
    }

    .dnm-section4__name,
    .dnm-section4__role {
        font-size: 16px;
    }

    .dnm-section5 {
        padding: 46px 0 58px;
    }

    .dnm-section5__inner {
        width: min(100% - 24px, 480px);
    }

    .dnm-section5__title {
        margin-bottom: 34px;
        font-size: 28px;
    }

    .dnm-section5__groups {
        gap: 56px;
    }

    .dnm-section5__group-title {
        font-size: 26px;
    }

    .dnm-section5__benefit {
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 14px;
        font-size: 16px;
    }

    .dnm-section5__icon {
        width: 34px;
        height: 34px;
    }

    .dnm-section5__visual {
        padding-top: 24px;
    }

    .dnm-section5__panel {
        width: calc(100% - 24px);
        height: calc(100% - 18px);
        border-radius: 20px;
    }

    .dnm-section5__visual img {
        width: calc(100% - 16px);
        border-radius: 16px;
    }

    .dnm-section6__inner,
    .dnm-section7__inner,
    .dnm-section8__inner,
    .dnm-section9__inner,
    .dnm-section10__inner,
    .dnm-section11__top-inner,
    .dnm-section11__panel,
    .dnm-footer-callio__inner {
        width: min(100% - 24px, 480px);
    }

    .dnm-section6__title {
        margin-bottom: 18px;
        font-size: 28px;
    }

    .dnm-section6__desc {
        font-size: 18px;
    }

    .dnm-section6__button {
        width: 100%;
        justify-content: space-between;
        font-size: 18px;
    }

    .dnm-section7__title,
    .dnm-section8__title,
    .dnm-section9__title,
    .dnm-section10__title {
        font-size: 26px;
    }

    .dnm-section8__grid {
        grid-template-columns: 1fr;
    }

    .dnm-section8__card {
        min-height: 220px;
    }

    .dnm-section9__card {
        min-height: 300px;
        padding: 24px;
    }

    .dnm-section10__date {
        font-size: 18px;
    }

    .dnm-section11__top {
        padding: 46px 0 78px;
    }

    .dnm-section11__title,
    .dnm-section11__panel h3 {
        font-size: 25px;
    }

    .dnm-section11__panel {
        padding: 34px 24px;
    }

    .dnm-section11__button {
        width: 100%;
        min-height: 50px;
        font-size: 17px;
    }

    .dnm-footer-callio__company p {
        font-size: 16px;
    }
}

/* =========================================
   404 PAGE
   ========================================= */
.dnm-error-main {
    overflow: hidden;
}

.dnm-error-404 {
    min-height: calc(100vh - 74px);
    display: flex;
    align-items: center;
    padding: 72px 0;
    background: linear-gradient(180deg, var(--color-hero-bg) 0%, var(--color-white) 100%);
}

.dnm-error-404__inner {
    width: min(100% - 64px, 1260px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(360px, 0.82fr) minmax(420px, 1fr);
    align-items: center;
    gap: 86px;
}

.dnm-error-404__content h1 {
    max-width: 520px;
    margin: 0 0 22px;
    color: #050505;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.24;
}

.dnm-error-404__content p {
    max-width: 520px;
    margin: 0;
    color: #2d3748;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.55;
}

.dnm-error-404__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.dnm-error-404__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-width: 180px;
    min-height: 46px;
    padding: 0 24px;
    border-radius: 999px;
    color: var(--color-white);
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.dnm-error-404__button:hover,
.dnm-error-404__button:focus {
    color: var(--color-white);
    transform: translateY(-2px);
    filter: brightness(0.96);
}

.dnm-error-404__button--primary {
    background: var(--color-secondary);
}

.dnm-error-404__button--secondary {
    background: var(--color-accent);
}

.dnm-error-404__visual {
    display: flex;
    justify-content: center;
}

.dnm-error-404__card {
    position: relative;
    width: min(100%, 540px);
    aspect-ratio: 1.08 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(129, 144, 170, 0.12);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.42);
    box-shadow: 0 20px 60px rgba(17, 24, 41, 0.04);
}

.dnm-error-404__card::before,
.dnm-error-404__card::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    border: 20px solid rgba(143, 57, 255, 0.08);
}

.dnm-error-404__card::before {
    width: 140px;
    height: 140px;
    left: 38px;
    top: 84px;
}

.dnm-error-404__card::after {
    width: 96px;
    height: 96px;
    right: 48px;
    top: 114px;
}

.dnm-error-404__oops {
    position: absolute;
    top: 48px;
    left: 74px;
    z-index: 3;
    color: #2c3036;
    font-size: 36px;
    font-weight: 900;
    line-height: 1;
    transform: rotate(-8deg);
}

.dnm-error-404__number {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #5574f5;
    font-size: 150px;
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: 0;
}

.dnm-error-404__zero {
    position: relative;
    width: 120px;
    height: 150px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 60px;
    background: #5574f5;
}

.dnm-error-404__zero::before {
    content: "";
    width: 78px;
    height: 108px;
    border-radius: 46px;
    background: #1f2937;
}

.dnm-error-404__zero i {
    position: absolute;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 5px solid #f8fafc;
    background: #1f2937;
}

.dnm-error-404__zero i:nth-child(1) {
    top: 22px;
    left: 38px;
}

.dnm-error-404__zero i:nth-child(2) {
    top: 70px;
    left: 24px;
    width: 34px;
    height: 34px;
}

.dnm-error-404__zero i:nth-child(3) {
    bottom: 28px;
    right: 24px;
    width: 28px;
    height: 28px;
}

.dnm-error-404__robot {
    position: absolute;
    left: 50%;
    bottom: 46px;
    z-index: 4;
    width: 160px;
    height: 132px;
    border-radius: 22px 22px 14px 14px;
    background: #5574f5;
    transform: translateX(-50%);
}

.dnm-error-404__robot::before,
.dnm-error-404__robot::after {
    content: "";
    position: absolute;
    top: 52px;
    width: 18px;
    height: 54px;
    border-radius: 999px;
    background: #1f2937;
}

.dnm-error-404__robot::before {
    left: -18px;
}

.dnm-error-404__robot::after {
    right: -18px;
}

.dnm-error-404__eye {
    position: absolute;
    left: 50%;
    top: -42px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 8px solid #1f2937;
    background: var(--color-white);
    transform: translateX(-50%);
}

.dnm-error-404__eye::before {
    content: "";
    position: absolute;
    right: 8px;
    bottom: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #1f2937;
}

.dnm-error-404__screen {
    position: absolute;
    left: 50%;
    top: 36px;
    width: 110px;
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #1f2937;
    color: var(--color-white);
    font-size: 22px;
    font-weight: 900;
    transform: translateX(-50%);
}

@media (max-width: 900px) {
    .dnm-error-404 {
        min-height: auto;
        padding: 54px 0 68px;
    }

    .dnm-error-404__inner {
        width: min(100% - 36px, 820px);
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .dnm-error-404__content {
        text-align: center;
    }

    .dnm-error-404__content h1,
    .dnm-error-404__content p {
        margin-left: auto;
        margin-right: auto;
    }

    .dnm-error-404__actions {
        justify-content: center;
    }
}

@media (max-width: 500px) {
    .dnm-error-404__inner {
        width: min(100% - 24px, 480px);
    }

    .dnm-error-404__content h1 {
        font-size: 24px;
    }

    .dnm-error-404__content p {
        font-size: 14px;
    }

    .dnm-error-404__button {
        width: 100%;
        min-height: 44px;
        font-size: 16px;
    }

    .dnm-error-404__number {
        font-size: 92px;
    }

    .dnm-error-404__zero {
        width: 76px;
        height: 96px;
    }

    .dnm-error-404__zero::before {
        width: 50px;
        height: 70px;
    }

    .dnm-error-404__zero i {
        width: 28px;
        height: 28px;
        border-width: 4px;
    }

    .dnm-error-404__zero i:nth-child(1) {
        top: 14px;
        left: 25px;
    }

    .dnm-error-404__zero i:nth-child(2) {
        top: 46px;
        left: 15px;
        width: 24px;
        height: 24px;
    }

    .dnm-error-404__zero i:nth-child(3) {
        bottom: 16px;
        right: 15px;
        width: 20px;
        height: 20px;
    }

    .dnm-error-404__oops {
        top: 34px;
        left: 48px;
        font-size: 26px;
    }

    .dnm-error-404__robot {
        bottom: 26px;
        width: 112px;
        height: 92px;
    }

    .dnm-error-404__eye {
        top: -34px;
        width: 46px;
        height: 46px;
        border-width: 6px;
    }

    .dnm-error-404__screen {
        top: 27px;
        width: 82px;
        min-height: 46px;
        font-size: 16px;
    }
}

/* =========================================
   COMPACT SCALE - BRAND SYNC
   ========================================= */
.dnm-site-header,
.dnm-header__container {
    min-height: 74px;
}

.dnm-header__container {
    width: min(100% - 64px, 1600px);
    gap: 26px;
}

.dnm-header__brand {
    min-width: 126px;
}

.dnm-header .logo-heager .img-logo {
    width: 88px;
    max-height: 54px;
}

.dnm-header__menu,
.dnm-header .nav-menu {
    gap: 14px;
}

.dnm-header__menu > li > a,
.dnm-header .nav-menu > li > a {
    min-height: 36px;
    padding: 0 14px;
    font-size: 14px;
    border-radius: 18px;
}

.dnm-header__menu > li.menu-item-has-children > a,
.dnm-header .nav-menu > li.menu-item-has-children > a {
    gap: 8px;
}

.dnm-header__menu > li.menu-item-has-children > a::after,
.dnm-header .nav-menu > li.menu-item-has-children > a::after {
    width: 7px;
    height: 7px;
    border-width: 1.5px;
}

.dnm-header .sub-menu {
    width: 330px;
    padding: 16px;
    border-radius: 12px;
}

.dnm-header .sub-menu:has(img) {
    width: 560px;
    padding: 24px 28px;
    gap: 16px 30px;
}

.dnm-header .sub-menu a {
    min-height: 42px;
    gap: 12px;
    padding: 10px 12px;
    font-size: 14px;
}

.dnm-header .sub-menu:has(img) a {
    min-height: 62px;
}

.dnm-header .sub-menu img {
    width: 28px;
    height: 28px;
    border-radius: 7px;
}

.dnm-header .sub-menu:has(img) .dnm-menu-item__title {
    font-size: 17px;
}

.dnm-menu-item__desc {
    font-size: 14px;
}

.dnm-header__actions,
.dnm-header__mobile-actions {
    gap: 14px;
}

.dnm-header__button {
    min-width: 108px;
    min-height: 38px;
    padding: 0 18px;
    border-radius: 20px;
    font-size: 15px;
}

.dnm-header__toggle {
    width: 38px;
    height: 38px;
    font-size: 16px;
}

.dnm-hero {
    min-height: 520px;
}

.dnm-hero__inner {
    min-height: 520px;
}

.dnm-hero__title {
    font-size: 43px;
}

.dnm-hero__actions {
    gap: 16px;
    margin-top: 68px;
}

.dnm-hero__button {
    min-height: 48px;
    padding: 0 12px 0 26px;
    border-radius: 25px;
    font-size: 20px;
}

.dnm-hero__button strong {
    min-height: 30px;
    padding: 0 12px;
    font-size: 14px;
}

.dnm-hero__visual {
    min-height: 470px;
}

.dnm-home-video__title {
    font-size: 39px;
}

.dnm-home-video__item-title {
    font-size: 23px;
}

.dnm-home-video__play {
    width: 60px;
    height: 60px;
}

.dnm-home-video__play::before {
    border-top-width: 13px;
    border-bottom-width: 13px;
    border-left-width: 18px;
}

.dnm-home-logos__title {
    font-size: 24px;
}

.dnm-home-logos__item {
    height: 75px;
}

.dnm-home-logos__item img {
    max-height: 70px;
}

.dnm-section4__title,
.dnm-section5__title,
.dnm-section7__title,
.dnm-section8__title,
.dnm-section9__title,
.dnm-section10__title {
    font-size: 30px;
}

.dnm-section4__desc {
    font-size: 22px;
}

.dnm-section4__card {
    min-height: 270px;
    padding: 26px 28px 24px;
}

.dnm-section4__stars {
    gap: 6px;
    font-size: 18px;
}

.dnm-section4__quote {
    font-size: 17px;
}

.dnm-section4__avatar {
    width: 36px;
    height: 36px;
}

.dnm-section4__name,
.dnm-section4__role {
    font-size: 14px;
}

.dnm-section5__group-title {
    font-size: 28px;
}

.dnm-section5__benefit {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 20px;
    font-size: 16px;
}

.dnm-section5__icon {
    width: 32px;
    height: 32px;
}

.dnm-section6__title {
    font-size: 28px;
}

.dnm-section6__desc {
    font-size: 19px;
}

.dnm-section6__button {
    min-height: 46px;
    padding: 0 12px 0 24px;
    border-radius: 24px;
    font-size: 19px;
}

.dnm-section6__button strong {
    min-height: 30px;
    font-size: 13px;
}

.dnm-section7__play {
    width: 48px;
    height: 48px;
}

.dnm-section7__play::before {
    border-top-width: 10px;
    border-bottom-width: 10px;
    border-left-width: 15px;
}

.dnm-section8__card {
    min-height: 205px;
}

.dnm-section8__icon {
    width: 48px;
    height: 48px;
}

.dnm-section8__card h3 {
    min-height: 42px;
    font-size: 14px;
}

.dnm-section8__card a {
    font-size: 14px;
}

.dnm-section9__card {
    min-height: 250px;
    padding: 24px;
}

.dnm-section9__stars {
    font-size: 14px;
}

.dnm-section9__card p {
    font-size: 15px;
}

.dnm-section9__author img {
    width: 34px;
    height: 34px;
}

.dnm-section9__author h3,
.dnm-section9__author span {
    font-size: 12px;
}

.dnm-section10__date {
    font-size: 15px;
}

.dnm-section10__card h3 {
    font-size: 14px;
}

.dnm-section11__title,
.dnm-section11__panel h3 {
    font-size: 24px;
}

.dnm-section11__desc {
    font-size: 16px;
}

.dnm-section11__price,
.dnm-section11__button {
    min-height: 40px;
    font-size: 15px;
}

.dnm-section11__panel li {
    font-size: 14px;
}

footer#colophon.dnm-footer-callio .dnm-footer-callio__nav h2,
footer#colophon.dnm-footer-callio .dnm-footer-callio__company h2,
footer#colophon.dnm-footer-callio .dnm-footer-callio__social h2,
footer#colophon.dnm-footer-callio .dnm-footer-callio__apps h3 {
    font-size: 14px;
}

.dnm-footer-callio__nav li a,
.dnm-footer-callio__company p {
    font-size: 13px;
}

.dnm-footer-callio__apps a {
    width: 130px;
    min-height: 38px;
}

.dnm-footer-callio__apps i {
    font-size: 18px;
}

.dnm-footer-callio__apps strong {
    font-size: 13px;
}

.dnm-footer-callio__social a {
    width: 18px;
    height: 18px;
    font-size: 11px;
}

@media (max-width: 900px) {
    .dnm-site-header,
    .dnm-header__container {
        min-height: 64px;
    }

    .dnm-header__container {
        width: min(100% - 28px, 820px);
    }

    .dnm-header .logo-heager .img-logo {
        width: 86px;
        max-height: 46px;
    }

    .dnm-header__menu > li > a,
    .dnm-header .nav-menu > li > a,
    .dnm-header .sub-menu a,
    .dnm-header .sub-menu:has(img) a {
        font-size: 14px;
    }

    .dnm-hero__title {
        font-size: 32px;
    }

    .dnm-hero__button {
        min-height: 44px;
        font-size: 17px;
    }

    .dnm-home-video__title,
    .dnm-section4__title,
    .dnm-section5__title,
    .dnm-section7__title,
    .dnm-section8__title,
    .dnm-section9__title,
    .dnm-section10__title {
        font-size: 28px;
    }

    .dnm-section4__desc {
        font-size: 18px;
    }

    .dnm-section5__group-title {
        font-size: 24px;
    }
}

@media (max-width: 500px) {
    .dnm-site-header,
    .dnm-header__container {
        min-height: 58px;
    }

    .dnm-header .logo-heager .img-logo {
        width: 78px;
    }

    .dnm-hero__title {
        font-size: 28px;
    }

    .dnm-hero__button,
    .dnm-section6__button {
        min-height: 42px;
        font-size: 16px;
    }

    .dnm-home-video__title,
    .dnm-section4__title,
    .dnm-section5__title,
    .dnm-section7__title,
    .dnm-section8__title,
    .dnm-section9__title,
    .dnm-section10__title {
        font-size: 24px;
    }

    .dnm-section6__title,
    .dnm-section11__title,
    .dnm-section11__panel h3 {
        font-size: 22px;
    }

    .dnm-section6__desc,
    .dnm-section11__desc,
    .dnm-section11__panel li {
        font-size: 15px;
    }
}
/* Mobile hero refinement: text/actions first, slider below, no horizontal overflow. */
@media (max-width: 767px) {
    .dnm-home-main,
    .dnm-hero {
        max-width: 100%;
        overflow-x: hidden;
    }

    .dnm-hero {
        min-height: auto;
    }

    .dnm-hero__inner {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: none;
        min-height: 0;
        gap: 24px;
        padding: 34px 0 0;
    }

    .dnm-hero__content {
        order: 1;
        width: min(100% - 28px, 480px);
        margin: 0 auto;
        padding: 0;
    }

    .dnm-hero__title {
        max-width: 100%;
        font-size: 26px;
        line-height: 1.18;
    }

    .dnm-hero__actions {
        display: grid;
        width: 100%;
        gap: 12px;
        margin-top: 30px;
        justify-items: stretch;
    }

    .dnm-hero__button {
        box-sizing: border-box;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        min-height: 40px;
        justify-content: center;
        padding: 0 16px;
        border-radius: 999px;
        font-size: 14px;
        line-height: 1.2;
        text-align: center;
        white-space: normal;
    }

    .dnm-hero__button span {
        min-width: 0;
    }

    .dnm-hero__button strong {
        display: none;
    }

    .dnm-hero__visual {
        order: 2;
        width: 100%;
        min-height: 280px;
        margin: 4px 0 0;
        align-items: flex-start;
        overflow: hidden;
    }

    .dnm-hero__visual-bg {
        top: 0;
        left: 32px;
        right: 0;
        bottom: 0;
        border-top-left-radius: 20px;
    }

    .dnm-hero__visual-bg::before,
    .dnm-hero__visual-bg::after {
        width: 44px;
    }

    .dnm-hero__visual-bg::before {
        right: 96px;
    }

    .dnm-hero__visual-bg::after {
        right: 28px;
    }

    .dnm-hero__slider {
        box-sizing: border-box;
        width: min(100% - 28px, 520px);
        margin: 0 auto;
        padding-top: 24px;
        overflow: hidden;
    }

    .dnm-hero__slide {
        justify-content: center;
    }

    .dnm-hero__slide img {
        width: 100%;
        max-width: 520px;
        filter: drop-shadow(0 16px 22px rgba(17, 24, 41, 0.12));
    }
}

@media (max-width: 500px) {
    .dnm-hero__inner {
        padding-top: 30px;
    }

    .dnm-hero__content {
        width: min(100% - 16px, 480px);
    }

    .dnm-hero__title {
        font-size: 25px;
        line-height: 1.5;
    }

    .dnm-hero__actions {
        margin-top: 58px;
    }

    .dnm-hero__button {
        min-height: 32px;
        padding: 0 14px;
        font-size: 13px;
    }

    .dnm-hero__visual {
        min-height: 310px;
        margin-top: 18px;
    }

    .dnm-hero__visual-bg {
        left: 0px;
        border-top-left-radius: 18px;
    }

    .dnm-hero__slider {
        width: min(100% - 20px, 420px);
        padding-top: 20px;
    }
}