:root {
    --primary: #1973fe;
    --secondary: #0a1f44;
    --primary-invert: #fff;
    --secondary-invert: #fff;

    --gradient-primary: linear-gradient(25deg, #1973fe, #1973fe);
    --gradient-secondary: linear-gradient(230deg, #0a1f44, #020024);

    /* EXTRA COLORS */
    --Green: #00a761;
    --Yellow: #f2b100;
    --Blue: #06b7f9;
    --Purple: #7a7aff;

    /* DEFAULT COLOR OF TEXTS */
    --text-primary: #0a1f44;

    /* FOR BUTTONS & INPUTS */
    --elements-roundness: 4px;

    --space-between-blocks: 2rem;
    /* for mobiles */
    --space-between-blocks-small-screens: 1rem;
}

@font-face {
    font-family: Poppins;
    src: url(https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap);
    font-weight: 400;
    letter-spacing: 0.5px;
}

@font-face {
    font-family: Poppins;
    src: url(https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap);
    font-weight: 700;
    letter-spacing: 0.5px;
}

body {
    font-family: 'Poppins';
    color: var(--text-primary);
}

@media only screen and (min-width: 992px) {
    .container {
        max-width: 1400px !important;
    }
}

.space-between-blocks {
    padding-top: var(--space-between-blocks-small-screens);
    padding-bottom: var(--space-between-blocks-small-screens);
}

@media (min-width: 992px) {
    .space-between-blocks {
        padding-top: var(--space-between-blocks);
        padding-bottom: var(--space-between-blocks);
    }
}

/* ----------------- BUTTONS ------------------- */

button {
    color: inherit;
    padding: 0;
    background: none;
    border: none;
}

button:focus {
    outline: none;
    box-shadow: none;
}

.btn {
    font-size: 0.87rem;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: var(--elements-roundness);
    transition: 0.2s all;
    box-shadow: 0 10px 30px 0px rgb(0 0 0 / 5%);
}

.btn,
.btn:hover,
.btn:focus {
    outline: none;
}

.btn:hover,
.btn:focus {
    transform: scale(1.05);
}

.btn-primary,
.btn-primary:hover,
.btn-primary:focus {
    background: var(--gradient-primary, --primary);
    color: var(--primary-invert);
}

.btn-secondary,
.btn-secondary:hover,
.btn-secondary:focus {
    background: white;
    color: var(--text-primary);
    border: 1px solid #e4e5e7;
}

.btn-primary--empty,
.btn-primary--empty:hover,
.btn-primary--empty:focus {
    color: var(--primary);
}

.btn-primary--outline,
.btn-primary--outline:hover,
.btn-primary--outline:focus {
    background: white;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn--green,
.btn--green:hover,
.btn--green:focus {
    background: var(--Green);
    color: white;
}

.btn--yellow,
.btn--green:hover,
.btn--green:focus {
    background: var(--Yellow);
    color: white;
}

.btn--purple,
.btn--green:hover,
.btn--green:focus {
    background: var(--Purple);
    color: white;
}

.btn--blue,
.btn--green:hover,
.btn--green:focus {
    background: var(--blue);
    color: white;
}

.btn-sm {
    padding: 0.8rem;
}

.highlight {
    color: var(--primary);
}

.highlight--green {
    color: var(--Green);
}
.highlight--yellow {
    color: var(--Yellow);
}
.highlight--blue {
    color: var(--Blue);
}
.highlight--purple {
    color: var(--Purple);
}

/* block header */

.block__header {
    margin-bottom: 2rem;
}

.block__title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.4;
}

.block__title--big {
    font-weight: 700;
    font-size: 2rem;
    font-weight: 700;
}

@media (min-width: 992px) {
    .block__title {
        font-size: 2.5rem;
    }

    .block__title--big {
        font-size: 4.1rem;
        line-height: 1.2;
    }

    .block__header {
        margin-bottom: 4rem;
    }
}

.block__paragraph {
    font-weight: 400;
    font-size: 1.1rem;
    line-height: 1.5;
    opacity: 0.9;
}

.block__paragraph--big {
    font-size: 1.1rem;
    font-weight: 400;
}

@media (min-width: 992px) {
    .block__paragraph--big {
        font-size: 1.4rem;
        line-height: 1.6;
    }
}

/* Icons */

.fr-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    height: 2.5rem;
    width: 2.5rem;
    border-radius: 3px;
    color: var(--primary);
    background: none;
    margin-bottom: 1.5rem;
    transition: 0.5s;
}

.fr-icon--medium {
    font-size: 1.5rem;
    height: 3rem;
    width: 3rem;
}

.fr-icon--large {
    font-size: 1.2rem;
    height: 3.25rem;
    width: 3.25rem;
}

@media (min-width: 992px) {
    .fr-icon--large {
        height: 3.8rem;
        width: 3.8rem;
        font-size: 1.9rem;
    }
}

/*------------------------------*/
/*--Section Name----------------*/
/*------------------------------*/
.hero {
    --hero-nav-height: 100px;
    --block-background: white;
    --block-text-color: var(--text-primary);
    /* background: var(--block-background); */
    color: var(--block-text-color);
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: inset 0 -1px 0 #e9e9ec;
    background: linear-gradient(to right, rgb(255, 228, 230), rgb(204, 251, 241));
}

.hero-nav {
    top: 0;
    left: 0;
    right: 0;
    width: 90%;
    height: var(--hero-nav-height);
    display: flex;
    align-items: center;
    z-index: 2;
}

.hero-nav__item {
    margin: auto;
    font-size: 1.1rem;
}

@media (min-width: 992px) {
    .hero-nav__item {
        margin: 0 1rem;
    }
}

@media (min-width: 992px) {
    .nav--lg-side {
        flex-direction: row-reverse;
    }
}

.hero-nav__logo {
    height: 60px;
}

.hero-nav__link {
    color: inherit;
    opacity: 0.9;
    text-decoration: none;
}

.hero-nav__link:focus,
.hero-nav__link:hover {
    color: inherit;
    text-decoration: none;
    opacity: 1;
}

.ft-menu {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 2000;
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@media (print), (prefers-reduced-motion: reduce) {
    .ft-menu {
        -webkit-animation-duration: 1ms !important;
        animation-duration: 1ms !important;
        -webkit-transition-duration: 1ms !important;
        transition-duration: 1ms !important;
        -webkit-animation-iteration-count: 1 !important;
        animation-iteration-count: 1 !important;
    }
}

.ft-menu .hero-nav__item {
    width: 100%;
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
}

@media (min-width: 992px) {
    .ft-menu .hero-nav__item {
        width: auto;
        margin-top: 0;
        margin-bottom: 0;
    }
}

.ft-menu--js-show {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
}

.ft-menu::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: var(--primary);
    opacity: 0.9;
    z-index: -1;
}

@media (min-width: 992px) {
    .ft-menu {
        -webkit-animation-name: none;
        animation-name: none;
        position: static;
        z-index: auto;
    }

    .ft-menu::before {
        content: none;
    }
}

.ft-menu__slider {
    --block-background: white;
    --block-text-color: var(--text-primary);
    color: var(--block-text-color);
    background: var(--block-background);
    width: 80%;
    height: 100%;
    overflow: hidden;
    transform: translateX(-100%);
    transition: 0.5s transform;
}

@media (min-width: 992px) {
    .ft-menu__slider {
        --block-background: transparent;
        --block-text-color: var(--block-text-color);
        width: auto;
        height: auto;
        background: 0 0;
        transform: none;
        display: flex;
        align-items: center;
    }
}

.ft-menu--js-show .ft-menu__slider {
    transform: translateX(0);
}

.ft-menu__close-btn {
    color: var(--primary-invert);
    position: absolute;
    right: 0;
    top: 0;
    font-size: 2rem;
    margin: 1rem;
    transform: translateX(100%);
    transition: 0.5s transform;
}

@media (min-width: 992px) {
    .ft-menu__close-btn {
        display: none;
    }
}

.ft-menu--js-show .ft-menu__close-btn {
    transform: translateX(0);
}

.ft-menu__close-btn:focus,
.ft-menu__close-btn:hover {
    color: var(--primary-invert);
}

@-webkit-keyframes fadeIn {
    from {
        visibility: hidden;
        opacity: 0;
    }

    to {
        visibility: visible;
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        visibility: hidden;
        opacity: 0;
    }

    to {
        visibility: visible;
        opacity: 1;
    }
}

@-webkit-keyframes fadeOut {
    from {
        visibility: visible;
        opacity: 1;
    }

    to {
        visibility: hidden;
        opacity: 0;
    }
}

@keyframes fadeOut {
    from {
        visibility: visible;
        opacity: 1;
    }

    to {
        visibility: hidden;
        opacity: 0;
    }
}

.fixed-nav-container {
    height: var(--hero-nav-height);
}

.hero-nav--is-sticky {
    --block-background: white;
    color: var(--block-text-color);
    background: var(--block-background);
    position: fixed !important;
    left: 0;
    right: 0;
    margin: auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 1rem !important;
    height: 60px;
    transition: 0.2s height;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
}

@media (min-width: 992px) {
    .hero-nav--is-sticky {
        height: 80px;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
        padding: 1rem 1.5rem !important;
    }
}

.ft-menu__slider {
    color: var(--block-text-color);
}

.hero-nav--is-sticky .ft-menu__slider {
    color: var(--text-primary);
}

.hero-nav--is-sticky .btn {
    background: var(--gradient-primary, var(--primary));
    color: var(--primary-invert);
}

@-webkit-keyframes slideInDown {
    from {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInDown {
    from {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.ft-menu__slider .hero-nav__item {
    font-size: 1.1rem;
    padding: 0 1rem;
}

@media (min-width: 992px) {
    .ft-menu__slider .hero-nav__item {
        padding: 0;
    }
}

.hero-nav__link {
    display: flex;
    align-items: center;
    outline: 0 !important;
}

.ft-menu__slider {
    overflow-x: hidden;
    overflow-y: auto;
}

@media (min-width: 992px) {
    .ft-menu__slider {
        overflow: visible;
    }
}

.hero-nav__item--with-dropdown {
    position: relative;
    cursor: pointer;
}

@media (min-width: 992px) {
    .hero-nav__item--with-dropdown::before {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        height: 176%;
    }
}

.hero-nav__dropdown {
    position: static;
    width: 100%;
    height: auto;
    font-size: 0.9rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s all;
    color: var(--text-primary);
    text-align: initial;
    cursor: auto;
}

@media (min-width: 992px) {
    .hero-nav__dropdown {
        position: absolute;
        top: 176%;
        left: 0;
        margin-top: 0;
        border-radius: 10px;
        border-top: none;
        box-shadow: 0 14px 50px 0 rgba(0, 0, 0, 0.1);
        background-color: #fff;
        z-index: 2;
        max-height: 0;
        padding: 2.3rem 3rem 2rem 2rem;
        overflow: visible;
        transition: 0.3s all;
    }
}

.dropdown--important {
    position: absolute;
    width: auto !important;
    top: 176%;
    left: 0;
    margin-top: 0;
    border-radius: 10px;
    border-top: none;
    box-shadow: 0 14px 50px 0 rgba(0, 0, 0, 0.1);
    background-color: #fff;
    z-index: 2;
    max-height: 0;
    padding: 2rem;
    padding-right: 3rem;
    overflow: visible;
    transition: 0.3s all;
}

@media (min-width: 992px) {
    .dropdown--of-1-columns {
        width: 400px;
    }

    .dropdown--of-2-columns {
        width: 700px;
    }

    .dropdown--language-selector {
        width: 250px;
    }
}

.hero-nav__item--show-dropdown .hero-nav__dropdown {
    margin-top: 1rem;
    visibility: visible;
    opacity: 1;
    max-height: 9999px;
    padding-top: 1rem;
}

@media (min-width: 992px) {
    .hero-nav__item--show-dropdown .hero-nav__dropdown {
        margin-top: 0;
        padding: 2.3rem 3rem 2rem 2rem;
    }
}

.hero-nav__item-chevron {
    transition: 0.3s all;
}

.hero-nav__item--show-dropdown .hero-nav__item-chevron {
    transform: rotate(180deg);
}

.hero-nav__item--dropdown-left .hero-nav__dropdown {
    transform: translateX(-15px) !important;
}

.hero-nav__item--dropdown-left .hero-nav__dropdown::before {
    left: 15%;
    right: auto;
}

.hero-nav__item--dropdown-right .hero-nav__dropdown {
    transform: translateX(15px) !important;
    left: auto;
    right: 0;
}

.hero-nav__item--dropdown-right .hero-nav__dropdown::before {
    left: auto;
    right: 15%;
}

@media (min-width: 992px) {
    .hero-nav__item--lg-dropdown-left .hero-nav__dropdown {
        transform: translateX(-15px) !important;
        left: 0;
        right: auto;
    }

    .hero-nav__item--lg-dropdown-left .hero-nav__dropdown::before {
        left: 15%;
        right: auto;
    }

    .hero-nav__item--lg-dropdown-right .hero-nav__dropdown {
        transform: translateX(15px) !important;
        left: auto;
        right: 0;
    }

    .hero-nav__item--lg-dropdown-right .hero-nav__dropdown::before {
        left: auto;
        right: 15%;
    }
}

.dropdown--important::before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 6.85px 8.1px 6.85px;
    border-color: transparent transparent #fff transparent;
    position: absolute;
    top: -6px;
    left: 0;
    right: 0;
    margin: auto;
}

@media (min-width: 992px) {
    .hero-nav__dropdown::before {
        content: '';
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0 6.85px 8.1px 6.85px;
        border-color: transparent transparent #fff transparent;
        position: absolute;
        top: -6px;
        left: 0;
        right: 0;
        margin: auto;
    }
}

.dropdown__title {
    color: var(--text-primary);
    opacity: 0.7;
    font-weight: 600;
    font-size: 0.9rem;
    display: block;
    margin-top: 0.5rem;
    margin-bottom: 1.18rem;
}

.dropdown__link {
    display: flex;
    align-items: flex-start;
    position: relative;
    cursor: pointer;
    margin-bottom: 1.3rem;
    color: inherit;
    text-decoration: none;
}

.dropdown__link:focus,
.dropdown__link:hover {
    color: inherit;
    text-decoration: none;
}

[javascript-language-selector] .dropdown__link {
    border-radius: 0.5rem;
    padding: 0.7rem;
    margin-bottom: 3px;
}

.dropdown__link::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.dropdown__link:last-child {
    margin: 0;
}

[javascript-language-selector] .dropdown__link--selected,
[javascript-language-selector] .dropdown__link:focus,
[javascript-language-selector] .dropdown__link:hover {
    background: rgba(0, 0, 0, 0.06);
}

.dropdown__icon {
    width: 35px;
    height: 35px;
    background: var(--gradient-primary, var(--primary));
    color: var(--primary-invert);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10rem;
    font-size: 13px;
}

@media (min-width: 992px) {
    .dropdown__icon {
        width: 40px;
        height: 40px;
    }
}

.dropdown__item {
    max-width: 250px;
}

.dropdown__item-title {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.5;
    position: relative;
    z-index: -1;
}

@media (min-width: 992px) {
    .dropdown__item-title {
        white-space: nowrap;
    }
}

.dropdown__item-title::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20%;
    width: 100%;
    background: var(--secondary);
    transform: translateY(2px);
    opacity: 0;
    transition: 0.2s;
}

[javascript-language-selector] .dropdown__item-title {
    white-space: nowrap;
}

[javascript-language-selector] .dropdown__item-title::before {
    display: none;
}

.dropdown__link:focus .dropdown__item-title::before,
.dropdown__link:hover .dropdown__item-title::before {
    height: 30%;
    transform: translateY(0);
    opacity: 0.4;
}

.dropdown__item-description {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 0.3rem;
    margin-bottom: 0;
}

.dropdown__item-description,
.dropdown__item-title {
    width: 95%;
}

.hero__row {
    height: 300px;
    position: static;
}

@media (min-width: 992px) {
    .hero__row {
        height: 100%;
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        margin: 0;
    }
}

.hero_empty-column {
    height: 100%;
}

.hero__image-column {
    height: 100%;
    background-position: center;
    background-size: cover;
}

.hero__content {
    text-align: initial;
}

.hero__body {
    padding-top: 2rem;
    padding-bottom: 3rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 992px) {
    .hero__body {
        padding-top: 4rem;
        padding-bottom: 7rem;
    }
}

.hero__title {
    font-size: 2rem;
    font-weight: 900;
    background: -webkit-linear-gradient(#1973FE, black);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero__paragraph {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.7;
    opacity: 0.98;
}

@media (min-width: 576px) {
    .hero__title {
        font-size: 2.5rem;
        line-height: 1.17;
    }

    .hero__paragraph {
        width: 80%;
        margin: auto;
    }
}

@media (min-width: 768px) {
    .hero__title {
        font-size: 3rem;
    }
}

@media (min-width: 992px) {
    .hero__title {
        font-size: 4.1rem;
        line-height: 1.17;
    }

    .hero__paragraph {
        font-size: 1.4rem;
        width: 80%;
    }
}

@media (min-width: 1200px) {
    .hero__title {
        font-size: 4.1rem;
        line-height: 1.25;
    }
}

.hero__btns-container {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
}

/*------------------------------*/
/*--Features----------------*/
/*------------------------------*/
.block-1 {
    --block-background: white;
    --block-text-color: var(--text-primary);
    background: var(--block-background);
    color: var(--block-text-color);
}

.card-1 {
    height: 100%;
}

.card-1:hover {
    box-shadow: 0 0 30px 0 rgb(0 0 0 / 9%);
    padding: 5px;
}

.card-1__title {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.5;
}

.card-1__paragraph {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.95;
}

.block-1-testimonial {
    background: #c3f0f7;
    padding: 2.5rem;
    border-radius: 4px;
}

.block-1-testimonial__paragraph {
    font-size: 1rem;
    opacity: 0.95;
    line-height: 1.6;
}

.block-1-testimonial__quote-svg {
    color: currentColor;
    transform: scale(0.8);
}

.block-1-person {
    font-size: 0.9rem;
}

.block-1-person__link {
    color: var(--text-primary);
    text-decoration: none;
}

.block-1-person__link:focus,
.block-1-person__link:hover {
    color: var(--primary);
    text-decoration: underline;
    opacity: 0.9;
}

.block-1-person__avatar {
    width: 40px;
    height: 40px;
    border-radius: 10rem;
    border: 2px solid #fff;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.1);
}

.mb-2-1rem {
    margin-bottom: 2.1rem;
}

/*------------------------------*/
/*--Industries----------------*/
/*------------------------------*/
.block-2 {
    --block-background: white;
    --block-text-color: var(--text-primary);
    background: var(--block-background);
    color: var(--block-text-color);
    position: relative;
    z-index: 0;
}

.block-2-card {
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.09);
}

@media (min-width: 992px) {
    .block-2-card {
        padding: 2.5rem;
    }
}

.block-2-card__title {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.46;
}

@media (min-width: 992px) {
    .block-2-card__title {
        font-size: 1.5rem;
    }
}

.block-2-card__paragraph {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.95;
    margin: 0;
}

.block-2-card {
    display: none !important;
}

.block-2-card:first-child {
    display: flex !important;
}

@media (min-width: 992px) {
    .block-2-card:first-child,
    .block-2-card:nth-child(2),
    .block-2-card:nth-child(3) {
        display: flex !important;
    }
}

.splide__track {
    overflow: visible !important;
}

.block-2 {
    overflow-y: hidden;
}

.block-2 .splide__track .splide__slide {
    height: auto !important;
    display: flex !important;
}

.block-2 {
    position: relative;
}

@media (min-width: 992px) {
    .block-2::after,
    .block-2::before {
        content: '';
        position: absolute;
        right: 0;
        left: 0;
        width: 100%;
        height: var(--space-between-blocks);
        background: var(--block-background);
        z-index: 1;
    }

    .block-2::before {
        top: 0;
    }

    .block-2::after {
        bottom: 0;
    }
}

.block-2__splide {
    overflow: hidden;
    position: relative;
}

@media (min-width: 992px) {
    .block-2__splide {
        overflow: visible;
        position: static;
    }
}

.splide__arrows {
    display: none;
}

.block-2__custom-arrows.splide__arrows {
    display: block;
}

.block-2__splide::after,
.block-2__splide::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    width: calc(100% + 2rem);
    margin: 0 -1rem;
    height: 2rem;
    z-index: 1;
}

@media (min-width: 992px) {
    .block-2__splide::after,
    .block-2__splide::before {
        height: 9rem;
    }
}

.block-2__splide::before {
    top: 0;
    background: linear-gradient(to bottom, var(--block-background) 0, transparent 100%);
}

.block-2__splide::after {
    bottom: 0;
    background: linear-gradient(to top, var(--block-background) 0, transparent 100%);
}

.block-2__splide-btn {
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    bottom: 34px;
    box-shadow: none;
    width: 50px;
    height: 2rem;
    border-radius: 10rem;
    color: var(--block-background);
    background: var(--block-text-color);
    border: none;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
    transform: rotate(90deg);
    z-index: 2;
}

@media (min-width: 992px) {
    .block-2__splide-btn {
        right: 22%;
        left: auto;
    }
}

.block-2__splide-btn:focus,
.block-2__splide-btn:hover {
    background: var(--primary);
    color: var(--primary-invert);
}

.splide__slide.is-active .fr-icon {
    background: var(--primary);
    color: var(--primary-invert);
}

.block-2-card__title {
    position: relative;
}

.block-2-card__title::before {
    content: '';
    position: absolute;
    bottom: 1px;
    right: 0;
    left: 0;
    width: 70%;
    height: 0%;
    background: var(--primary);
    opacity: 0.3;
    transition: 0.5s height;
}

@media (min-width: 992px) {
    .block-2-card__title::before {
        width: 30%;
    }
}

.splide__slide.is-active .block-2-card__title::before {
    height: 30%;
}

.block-2__dots-svg--left {
    color: var(--primary);
    top: 0;
    width: 250px;
    height: 100px;
    position: absolute;
    transform: translate(-15rem, 2rem) rotate(90deg);
    z-index: 2;
}

.block-2__dots-svg--right {
    color: var(--primary);
    bottom: 0;
    right: 0;
    width: 250px;
    height: 100px;
    position: absolute;
    transform: translate(14.5rem, -8rem) rotate(90deg);
    z-index: 2;
}

@media (min-width: 1400px) {
    .block-2__splide::after,
    .block-2__splide::before {
        max-width: 89%;
        margin: auto;
    }

    .block-2__dots-svg--left {
        transform: translate(-13rem, 2rem) rotate(90deg);
    }

    .block-2__dots-svg--right {
        transform: translate(13rem, -8rem) rotate(90deg);
    }

    .block-2__splide-btn {
        right: 25%;
    }
}

/*------------------------------*/
/*--Stats----------------*/
/*------------------------------*/
.block-38 {
    --block-background: white;
    --block-text-color: var(--text-primary);
    background: var(--block-background);
    color: var(--block-text-color);
}

.block__header {
    margin-bottom: 4rem;
}

.block__pre-title {
    color: var(--primary);
    font-size: 1rem;
    font-weight: 600;
}

.block__title {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.4;
}

@media (min-width: 992px) {
    .block__title {
        font-size: 2.5rem;
    }
}

.block__paragraph {
    font-size: 1.1rem;
    line-height: 1.5;
    opacity: 0.9;
}

.stats {
    background: var(--gradient-secondary);
    color: var(--secondary-invert);
    border-radius: 0.5rem;
    --stats-li-border-color: rgba(255, 255, 255, 0.2);
}

.stats__li {
    border-bottom: 1px solid var(--stats-li-border-color);
    padding: 1.5rem 0 !important;
}

.stats__li:last-child {
    border-bottom: none;
}

.stats__li {
    border-right: 1px solid var(--stats-li-border-color);
    padding: 1.5rem 0 !important;
}

.stats__li:nth-child(3),
.stats__li:nth-child(4) {
    border-bottom: none;
}

.stats__li:nth-child(even) {
    border-right: none;
}

@media (min-width: 992px) {
    .stats__li {
        border-bottom: none;
        border-right: 1px solid var(--stats-li-border-color) !important;
        padding: 0 !important;
    }

    .stats__li:last-child {
        border-right: none !important;
    }
}

.stats__number {
    font-size: 2.5rem;
    font-weight: 900;
}

.stats__text {
    width: 90%;
    margin: auto;
    font-size: 0.87rem;
    opacity: 0.9;
}

@media (min-width: 992px) {
    .stats__text {
        width: 100%;
    }
}

/*------------------------------*/
/*--CTA----------------*/
/*------------------------------*/
.block-29 {
    background: var(--gradient-primary, var(--primary));
    color: var(--primary-invert);
    position: relative;
}

@media (min-width: 992px) {
    .block-29 {
        border-radius: 10px;
    }
}

.block-29__title {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.3;
}

.block-29__paragraph {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.9;
}

.block-29__paragraph,
.block-29__title {
    text-align: center;
}

@media (min-width: 992px) {
    .block-29__title {
        font-size: 2.5rem;
    }

    .block-29__paragraph,
    .block-29__title {
        text-align: initial;
    }

    .block-29__paragraph {
        width: 90%;
    }
}

/*------------------------------*/
/*--Footer----------------*/
/*------------------------------*/
.block-44 {
    --block-background: white;
    --block-text-color: var(--text-primary);
    --text-primary: var(--block-text-color);
    background: var(--block-background);
    color: var(--block-text-color);
    font-size: 1rem;
    text-align: center;
}

@media (min-width: 992px) {
    .block-44 {
        text-align: initial;
    }
}

.block-44__logo-container {
    width: 100%;
    margin-bottom: 2.5rem;
}

@media (min-width: 992px) {
    .block-44__logo-container {
        width: auto;
        flex-grow: 1;
        margin-bottom: 0;
    }
}

.block-44__logo {
    height: 36px;
}

.block-44__list {
    display: flex;
    flex-wrap: wrap;
}

.block-44__li-1 {
    margin-bottom: 0.6rem;
    margin: 0.9rem;
}

.block-44__li-1::after {
    content: '';
    display: inline-block;
    width: 0;
}

@media (min-width: 992px) {
    .block-44__li-1 {
        margin: 0;
    }

    .block-44__li-1::after {
        width: 2.8rem;
    }

    .block-44__li-1:last-child::after {
        width: 0;
    }
}

.block-44__link {
    color: var(--block-text-color);
    text-decoration: none;
}

.block-44__link:focus,
.block-44__link:hover {
    color: inherit;
    text-decoration: underline;
}

.block-44__divider {
    margin: 2.4rem 0;
    color: #88909b;
}

.block-44__extra-links {
    justify-content: center;
}

@media (min-width: 768px) {
    .block-44__extra-links {
        justify-content: flex-start;
    }
}

.block-44__copyrights {
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 0.9rem;
}

/*------------------------------*/
/*--Contact us----------------*/
/*------------------------------*/
.block-27 {
    --space-between-blocks: 1rem;
    --elements-roundness: 5px;
    --block-background: white;
    --block-text-color: var(--text-primary);
    background: var(--block-background);
    color: var(--block-text-color);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.block-27__row {
    height: 300px;
}

@media (min-width: 992px) {
    .block-27__row {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: -1;
        height: 100%;
    }
}

.block-27__image-column {
    height: 100%;
    background-position: center;
    background-size: cover;
}

@media (min-width: 992px) {
    .block-27__image-column {
        margin: 0 !important;
    }
}

.block-27__content {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.block-27__bg-image {
    background-position: center;
    background-size: cover;
}

.contact-form__title {
    font-size: 2.2rem;
    font-weight: 600;
}

.contact-form__paragraph {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.7;
}

.contact-form {
    margin: auto;
}

.hr {
    margin-top: 3rem;
    margin-bottom: 3rem;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
}

.hr__or {
    background: var(--block-background);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 54px;
    height: 23px;
    margin-top: -12px;
    display: block;
    color: #ccc;
}

.contact-form__input {
    color: var(--text-primary);
    font-size: 0.87rem;
    padding: 0.87rem 1.4rem;
    border-radius: 5px;
    border: 1px solid #e5e7eb;
    background: #fff;
    width: 100%;
    margin-bottom: 0.87rem;
}

textarea.contact-form__input {
    height: 130px;
    resize: none;
}

.contact-form__input:focus {
    border: 1px solid var(--primary);
    outline: 0;
    box-shadow: none;
}

.btn--loading {
    opacity: 1;
    cursor: progress;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn--loading::after,
.btn--loading::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}

.btn--loading::before {
    background: var(--primary);
    width: 100%;
    height: 100%;
    z-index: 1;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

.btn--loading::after {
    margin: auto;
    border: 2px solid transparent;
    border-radius: 50%;
    border-top: 2px solid var(--primary-invert);
    width: 1.5rem;
    height: 1.5rem;
    -webkit-animation: spin 0.5s linear infinite;
    animation: spin 0.5s linear infinite;
    z-index: 2;
}

.h-100 {
    height: 100% !important;
}

/*------------------------------*/
/*--Page/Blog----------------*/
/*------------------------------*/
.article-block {
    --block-background: white;
    --block-text-color: var(--text-primary);
    background: var(--block-background);
    color: var(--block-text-color);
}

.article-block__title {
    font-size: 2.1rem;
    font-weight: 600;
    line-height: 1.5;
}

.article-block__info {
    opacity: 0.95;
    font-size: 0.9rem;
    margin: 0;
}

.article-block__author {
    color: inherit;
    position: relative;
    padding-right: 13px;
    margin-right: 13px;
}

.article-block__author:focus,
.article-block__author:hover {
    color: inherit;
    text-decoration: underline;
}

.article-block__author::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    height: 90%;
    margin: auto;
    width: 3px;
    transform: rotate(10deg);
    background: var(--primary);
}

.article-block__header-img {
    width: 100%;
    border-radius: 10px;
    filter: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.1));
}

.article h2,
.article h3,
.article h4,
.article h5,
.article h6 {
    font-weight: 600;
    line-height: 1.5;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}

.article-container__title {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
}

.article {
    padding: 0 1.5rem;
}

.article p {
    line-height: 2.1;
    margin-bottom: 1rem;
}

@media (min-width: 992px) {
    .article {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

.article img,
.article video {
    width: 100%;
}

pre {
    background: #333;
    color: #fff;
    padding: 1rem;
    border-radius: 5px;
}



blockquote {
    margin: 0 0 1rem;
    padding: 1rem 1rem 1px 1rem;
    background: rgba(0, 0, 0, 0.02);
    font-style: italic;
    margin-top: 2rem;
    border-left: 2px solid rgba(0, 0, 0, 0.1);
}

/*------------------------------*/
/*--Testionial----------------*/
/*------------------------------*/
.block-20 {
    --block-background: white;
    --block-text-color: var(--text-primary);
    background: var(--block-background);
    color: var(--block-text-color);
}

.testimonial-card-1 {
    border-radius: 5px;
    position: relative;
    padding: 2.3rem 2.2rem 2.2rem 2.2rem;
    background: #fff;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.09);
    margin-bottom: 7rem;
}

@media (min-width: 992px) {
    .testimonial-card-1 {
        height: 100%;
        margin-bottom: 0;
    }
}

.testimonial-card-1__paragraph {
    font-size: 0.95rem;
    opacity: 0.95;
    line-height: 1.7;
}

.testimonial-card-1__quote-symbol {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary, --primary);
    color: var(--primary-invert);
    font-size: 1.3rem;
    border-radius: 10rem;
    position: absolute;
    bottom: -25px;
    left: 0;
    right: 0;
    margin: auto;
}

.block-20-person {
    text-align: center;
    transform: translateY(-5.5rem);
    margin-bottom: -4rem;
}

.block-20-person__avatar {
    padding: 6px;
    width: 116px;
    height: 116px;
    background: #fff;
    border-radius: 10rem;
    border-bottom: 1px solid #ccc;
}

.block-20-person__rating {
    font-size: 0.75rem;
    color: #ffe200;
}

.block-20-person__name {
    font-size: 0.87rem;
    font-weight: 600;
}

.block-20-person__info {
    font-size: 0.87rem;
    opacity: 0.9;
    text-decoration: none;
}

@media (min-width: 1400px) {
    #block__container {
        max-width: 87%;
    }
}

/*------------------------------*/
/*--FAQ----------------*/
/*------------------------------*/
.block-39 {
    --block-background: white;
    --block-text-color: var(--text-primary);
    background: var(--block-background);
    color: var(--block-text-color);
}

.content-block {
    text-align: initial;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

@media (min-width: 992px) {
    .content-block {
        width: 90%;
    }
}

.content-block__title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.5;
}

@media (min-width: 992px) {
    .content-block__title {
        font-size: 1.5rem;
    }
}

.content-block__paragraph {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.7;
}


/* Drisoft Laundry Services frontend redesign */
:root {
    --drisoft-blue: #0867f2;
    --drisoft-blue-2: #19a8ff;
    --drisoft-navy: #061a44;
    --drisoft-text: #102a56;
    --drisoft-muted: #64748b;
    --drisoft-soft: #eef9ff;
    --drisoft-line: rgba(8, 103, 242, 0.12);
    --drisoft-shadow: 0 20px 60px rgba(6, 26, 68, 0.10);
    --drisoft-radius: 24px;
}

html { scroll-behavior: smooth; }
body { background: #f7fcff; }

.drisoft-nav-wrap,
.drisoft-site,
.drisoft-footer-v2 {
    font-family: 'Poppins', sans-serif;
    color: var(--drisoft-navy);
}

.drisoft-nav-wrap {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,.92);
    border-bottom: 1px solid rgba(6,26,68,.08);
    backdrop-filter: blur(16px);
}

.drisoft-nav {
    min-height: 76px;
    display: flex;
    align-items: center;
    gap: 75px;
}

.drisoft-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--drisoft-navy);
    text-decoration: none;
    min-width: 0;
}

.drisoft-brand:hover { color: var(--drisoft-navy); }
.drisoft-brand__logo { width: 56px; height: 56px; object-fit: contain; }
.drisoft-brand__text { font-weight: 900; font-size: 1rem; line-height: 1.1; }

.drisoft-nav__links {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 6px;
}

.drisoft-nav__links a {
    color: #102a56;
    text-decoration: none;
    font-weight: 800;
    padding: 12px 14px;
    border-radius: 999px;
    transition: .2s ease;
}

.drisoft-nav__links a:hover {
    background: #eef7ff;
    color: var(--drisoft-blue);
}

.drisoft-nav__cta,
.drisoft-nav__toggle,
.drisoft-nav__close {
    border: 0;
    text-decoration: none;
}

.drisoft-nav__cta {
    padding: 13px 22px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--drisoft-blue), #004de8);
    color: #fff;
    font-weight: 900;
    box-shadow: 0 14px 30px rgba(8,103,242,.26);
}

.drisoft-nav__cta:hover { color: #fff; transform: translateY(-1px); }
.drisoft-nav__toggle, .drisoft-nav__close { display: none; color: var(--drisoft-navy); }

.drisoft-site { overflow: hidden; background: linear-gradient(180deg, #fbfdff 0%, #f5fbff 100%); }

.drisoft-kicker,
.drisoft-section-title span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--drisoft-blue);
    font-weight: 950;
    font-size: .82rem;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.drisoft-section-title span::before,
.drisoft-section-title span::after {
    content: '';
    width: 28px;
    height: 3px;
    border-radius: 999px;
    background: var(--drisoft-blue);
    opacity: .75;
}

.drisoft-section-title:not(.text-center) span::before { display: none; }
.drisoft-section-title h2 {
    margin: 10px 0 0;
    color: var(--drisoft-navy);
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 950;
    line-height: 1.08;
}

.drisoft-section { padding: 74px 0; position: relative; }

.drisoft-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 16px;
    padding: 14px 24px;
    font-weight: 900;
    text-decoration: none;
    transition: .22s ease;
    border: 1px solid transparent;
}
.drisoft-btn:hover { transform: translateY(-2px); text-decoration: none; }
.drisoft-btn--primary { background: linear-gradient(135deg, var(--drisoft-blue), #0050ea); color: #fff; box-shadow: 0 18px 38px rgba(8,103,242,.24); }
.drisoft-btn--primary:hover { color: #fff; }
.drisoft-btn--ghost { background: #fff; color: var(--drisoft-blue); border-color: rgba(8,103,242,.35); box-shadow: 0 10px 24px rgba(6,26,68,.06); }
.drisoft-btn--ghost:hover { color: var(--drisoft-blue); background: #f2f8ff; }
.drisoft-btn--light { background: #fff; color: var(--drisoft-blue); box-shadow: 0 10px 26px rgba(6,26,68,.12); }
.drisoft-btn--light:hover { color: var(--drisoft-blue); }

/* Hero */
.drisoft-hero-v2 {
    position: relative;
    padding: 88px 0 76px;
    min-height: 690px;
    background:
        radial-gradient(circle at 72% 22%, rgba(8,103,242,.16), transparent 28%),
        radial-gradient(circle at 9% 88%, rgba(25,168,255,.20), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #edf8ff 100%);
}
.drisoft-hero-v2::before {
    content: '';
    position: absolute;
    inset: auto -8% -14% auto;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(8,103,242,.38), rgba(25,168,255,.15));
}
.drisoft-hero-v2__grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr);
    gap: 54px;
    align-items: center;
}
.drisoft-hero-v2__copy h1 {
    margin: 14px 0 18px;
    color: var(--drisoft-navy);
    font-size: clamp(3rem, 6vw, 5.6rem);
    font-weight: 950;
    letter-spacing: -.055em;
    line-height: .96;
}
.drisoft-hero-v2__copy h1 strong,
.drisoft-hero-v2__copy h1 em { color: var(--drisoft-blue); font-style: normal; }
.drisoft-hero-v2__copy p {
    max-width: 590px;
    color: #52667f;
    font-size: 1.14rem;
    line-height: 1.72;
    margin: 0;
}
.drisoft-hero-v2__actions { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 16px; }
.drisoft-hero-v2__badges {
    margin-top: 42px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    max-width: 690px;
}
.drisoft-hero-v2__badges div {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 10px;
    align-items: center;
    padding: 14px;
    border-radius: 18px;
    background: rgba(255,255,255,.78);
    border: 1px solid rgba(8,103,242,.10);
    box-shadow: 0 14px 30px rgba(6,26,68,.06);
}
.drisoft-hero-v2__badges i {
    grid-row: span 2;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: #eaf6ff;
    display: grid;
    place-items: center;
    color: var(--drisoft-blue);
    font-size: 1.15rem;
}
.drisoft-hero-v2__badges strong { font-size: .86rem; line-height: 1.15; color: var(--drisoft-navy); }
.drisoft-hero-v2__badges span { font-size: .78rem; color: var(--drisoft-muted); }
.drisoft-hero-v2__visual { position: relative; min-height: 520px; display: grid; place-items: center; }
.drisoft-hero-v2__image-card {
    position: relative;
    width: min(100%, 640px);
    aspect-ratio: 1.18/1;
    border-radius: 44% 56% 42% 58% / 48% 42% 58% 52%;
    background: linear-gradient(135deg, #e6f5ff, #ffffff);
    box-shadow: var(--drisoft-shadow);
    overflow: hidden;
    border: 14px solid rgba(255,255,255,.72);
}
.drisoft-hero-v2__image-card::before {
    content: '';
    position: absolute;
    inset: 10% 4% auto auto;
    width: 80%;
    height: 80%;
    border-radius: 50%;
    background: rgba(8,103,242,.08);
}
.drisoft-hero-v2__image-card img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.drisoft-hero-v2__mini-card {
    position: absolute;
    left: 4%;
    bottom: 10%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    background: #fff;
    border-radius: 18px;
    box-shadow: var(--drisoft-shadow);
    font-weight: 900;
}
.drisoft-hero-v2__mini-card i { color: #10b981; font-size: 1.25rem; }
.drisoft-bubble { position:absolute; border-radius:50%; background: radial-gradient(circle at 30% 30%, #fff, rgba(25,168,255,.18)); border: 1px solid rgba(8,103,242,.12); box-shadow: inset 0 0 16px rgba(8,103,242,.08); pointer-events:none; }
.drisoft-bubble--one { width: 66px; height: 66px; right: 16%; top: 15%; }
.drisoft-bubble--two { width: 34px; height: 34px; right: 6%; top: 24%; }
.drisoft-bubble--three { width: 92px; height: 92px; left: 6%; bottom: 8%; }

/* Services */
.drisoft-services-v2 { background: #fff; }
.drisoft-services-v2__grid { margin-top: 42px; display:grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 26px; }
.drisoft-service-v2 {
    padding: 34px 26px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(6,26,68,.08);
    box-shadow: 0 16px 42px rgba(6,26,68,.07);
    text-align: center;
    transition: .25s ease;
}
.drisoft-service-v2:hover { transform: translateY(-7px); box-shadow: 0 24px 60px rgba(6,26,68,.12); border-color: rgba(8,103,242,.18); }
.drisoft-service-v2__icon { margin: 0 auto 22px; width: 88px; height:88px; border-radius: 26px; display:grid; place-items:center; background: linear-gradient(180deg,#eef9ff,#fff); color: var(--drisoft-blue); font-size: 2.15rem; box-shadow: inset 0 0 0 1px rgba(8,103,242,.10); }
.drisoft-service-v2 h3 { margin:0 0 10px; color:var(--drisoft-navy); font-size:1.08rem; font-weight:950; }
.drisoft-service-v2 p { margin:0; color:var(--drisoft-muted); line-height:1.65; font-size:.95rem; }

/* Process */
.drisoft-process-v2 { background: linear-gradient(180deg,#eef9ff,#f8fdff); }
.drisoft-process-v2__grid { position:relative; margin-top:52px; display:grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap:34px; }
.drisoft-process-v2__grid::before { content:''; position:absolute; left:10%; right:10%; top:62px; border-top:3px dashed rgba(8,103,242,.28); }
.drisoft-process-step { position:relative; z-index:1; text-align:center; }
.drisoft-process-step__icon { width:116px; height:116px; margin:0 auto 24px; display:grid; place-items:center; border-radius:50%; background:#fff; color:var(--drisoft-blue); font-size:2.2rem; border:1px solid rgba(8,103,242,.13); box-shadow:0 18px 42px rgba(6,26,68,.09); overflow:hidden; }
.drisoft-process-step__icon img { width: 100%; height: 100%; object-fit: contain; padding: 22px; }
.drisoft-process-step__number { position:absolute; left:50%; top:94px; transform:translateX(-50%); width:30px; height:30px; border-radius:50%; display:grid; place-items:center; background:var(--drisoft-blue); color:#fff; font-size:.8rem; font-weight:950; box-shadow:0 8px 18px rgba(8,103,242,.28); }
.drisoft-process-step h3 { margin:0 0 8px; color:var(--drisoft-navy); font-size:1.08rem; font-weight:950; }
.drisoft-process-step p { max-width:180px; margin:0 auto; color:var(--drisoft-muted); line-height:1.55; font-size:.92rem; }

/* Pricing */
.drisoft-pricing-v2 { background: #fff; }
.drisoft-pricing-v2__grid { margin-top: 38px; display:grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap:22px; }
.drisoft-price-card { padding:28px 24px 24px; border-radius:22px; background:#fff; border:1px solid rgba(6,26,68,.08); box-shadow:0 18px 45px rgba(6,26,68,.08); text-align:center; }
.drisoft-price-card h3 { margin:0 0 10px; font-size:1.15rem; font-weight:950; }
.drisoft-price-card span { color:var(--drisoft-muted); font-size:.9rem; }
.drisoft-price-card__price { margin:6px 0 20px; font-size:2.25rem; font-weight:950; line-height:1; }
.drisoft-price-card__price small { font-size:.85rem; color:var(--drisoft-muted); font-weight:800; }
.drisoft-price-card ul { list-style:none; padding:0; margin:0 0 20px; text-align:left; line-height:1.6; }
.drisoft-price-card li { position:relative; padding-left:24px; margin-bottom:7px; color:#334155; font-size:.92rem; }
.drisoft-price-card li::before { content:'✓'; position:absolute; left:0; color:currentColor; font-weight:950; }
.drisoft-price-card a { display:block; padding:12px; border-radius:12px; background:#eef6ff; color:var(--drisoft-blue); text-decoration:none; font-weight:900; }
.drisoft-price-card--blue h3,.drisoft-price-card--green .drisoft-price-card__price { color:#0077ff; }
.drisoft-price-card--blue a { background:#eafaf2; color:#0077ff; }
.drisoft-price-card--green h3,.drisoft-price-card--green .drisoft-price-card__price { color:#0aa663; }
.drisoft-price-card--green a { background:#eafaf2; color:#0aa663; }
.drisoft-price-card--orange h3,.drisoft-price-card--orange .drisoft-price-card__price { color:#f97316; }
.drisoft-price-card--orange a { background:#fff3e9; color:#f97316; }
.drisoft-price-card--purple h3,.drisoft-price-card--purple .drisoft-price-card__price { color:#7c3aed; }
.drisoft-price-card--purple a { background:#f3eaff; color:#7c3aed; }
.drisoft-section-action { margin-top:34px; text-align:center; }

/* Benefits */
.drisoft-benefits-v2 { padding: 36px 0 76px; background:#fff; }
.drisoft-benefits-v2__grid { display:grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap:0; border-radius:24px; overflow:hidden; background:linear-gradient(180deg,#eef8ff,#f9fdff); border:1px solid rgba(8,103,242,.10); box-shadow:0 18px 45px rgba(6,26,68,.06); }
.drisoft-benefits-v2 article { padding:32px 26px; text-align:center; border-right:1px solid rgba(8,103,242,.10); }
.drisoft-benefits-v2 article:last-child { border-right:0; }
.drisoft-benefit-icon { width:54px; height:54px; margin:0 auto 16px; border-radius:18px; display:grid; place-items:center; color:var(--drisoft-blue); background:#fff; font-size:1.35rem; box-shadow:0 10px 24px rgba(6,26,68,.07); overflow:hidden; }
.drisoft-benefit-icon img { width:100%; height:100%; object-fit:contain; padding:10px; }
.drisoft-benefits-v2 h3 { font-size:1rem; margin:0 0 8px; font-weight:950; color:var(--drisoft-navy); }
.drisoft-benefits-v2 p { margin:0; color:var(--drisoft-muted); line-height:1.55; font-size:.9rem; }

/* Testimonials */
.drisoft-testimonials-v2 { background: linear-gradient(180deg,#fff,#f7fcff); }
.drisoft-testimonials-v2__grid { margin-top:36px; display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:24px; }
.drisoft-testimonial-card { padding:26px; border-radius:22px; background:#fff; border:1px solid rgba(6,26,68,.08); box-shadow:0 18px 42px rgba(6,26,68,.07); }
.drisoft-stars { color:#fbbf24; letter-spacing:2px; margin-bottom:14px; }
.drisoft-testimonial-card p { color:#334155; line-height:1.7; margin:0 0 18px; }
.drisoft-testimonial-card strong { color:var(--drisoft-navy); }

/* FAQ */
.drisoft-faq-v2 { background:#fff; }
.drisoft-faq-v2__grid { display:grid; grid-template-columns:minmax(0,1fr) 340px; gap:44px; align-items:center; }
.drisoft-faq__list { display:grid; gap:14px; margin-top:30px; }
.drisoft-faq__item { background:#fff; border:1px solid rgba(8,103,242,.12); border-radius:18px; box-shadow:0 14px 34px rgba(6,26,68,.07); overflow:hidden; }
.drisoft-faq__item summary { list-style:none; cursor:pointer; padding:18px 18px; display:grid; grid-template-columns:52px minmax(0,1fr) 42px; gap:16px; align-items:center; color:var(--drisoft-navy); font-weight:950; }
.drisoft-faq__item summary::-webkit-details-marker { display:none; }
.drisoft-faq__number { width:42px; height:42px; border-radius:50%; display:grid; place-items:center; background:#eaf5ff; color:var(--drisoft-blue); font-weight:950; }
.drisoft-faq__toggle { width:42px; height:42px; border-radius:50%; display:grid; place-items:center; background:#edf7ff; color:var(--drisoft-blue); transition:.2s ease; }
.drisoft-faq__item[open] { border-left:4px solid var(--drisoft-blue); }
.drisoft-faq__item[open] .drisoft-faq__toggle { transform:rotate(45deg); background:var(--drisoft-blue); color:#fff; }
.drisoft-faq__answer { margin:0 18px 18px 86px; padding:18px 20px !important; border-radius:16px; background:linear-gradient(180deg,#f3fbff,#fff); border:1px solid rgba(8,103,242,.12); color:#102a56 !important; line-height:1.75 !important; }
.drisoft-faq__answer p { margin:0 0 10px !important; }
.drisoft-faq__answer ul { margin:10px 0 0 !important; padding:0 !important; list-style:none !important; display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:10px 14px; line-height:1.4 !important; }
.drisoft-faq__answer li { position:relative; margin:0 !important; padding:10px 12px 10px 42px !important; border-radius:999px; background:#fff; border:1px solid rgba(8,103,242,.10); box-shadow:0 7px 18px rgba(6,26,68,.04); line-height:1.4 !important; }
.drisoft-faq__answer li::before { content:'✓'; position:absolute; left:12px; top:50%; transform:translateY(-50%); width:22px; height:22px; border-radius:50%; background:#11c878; color:#fff; display:grid; place-items:center; font-weight:950; font-size:.78rem; }
.drisoft-faq__answer br { display:none; }
.drisoft-help-card { padding:34px; border-radius:28px; background:linear-gradient(135deg,var(--drisoft-blue),#0043c8); color:#fff; box-shadow:0 24px 60px rgba(8,103,242,.30); text-align:center; }
.drisoft-help-card__person { width:104px; height:104px; border-radius:50%; margin:0 auto 20px; display:grid; place-items:center; background:rgba(255,255,255,.16); font-size:3rem; }
.drisoft-help-card h3 { font-size:1.6rem; font-weight:950; margin:0 0 10px; }
.drisoft-help-card p { color:#dbeafe; line-height:1.65; margin:0 0 22px; }

/* Footer */
.drisoft-footer-v2 { position:relative; background:linear-gradient(135deg,#021d4a,#003c8f); color:#fff; padding:58px 0 0; }
.drisoft-footer-v2__grid { display:grid; grid-template-columns:1.4fr .8fr .8fr 1.1fr; gap:34px; }
.drisoft-footer-v2 strong { display:block; font-size:1.3rem; font-weight:950; }
.drisoft-footer-v2__brand span { color:#bfe2ff; font-weight:800; }
.drisoft-footer-v2 p { color:#c8dbf2; line-height:1.7; margin:12px 0; }
.drisoft-footer-v2 h4 { font-size:1rem; font-weight:950; margin:0 0 18px; }
.drisoft-footer-v2 a { display:block; color:#d9ebff; text-decoration:none; margin-bottom:10px; }
.drisoft-footer-v2 a:hover { color:#fff; text-decoration:underline; }
.drisoft-footer-v2__social { display:flex; gap:10px; margin-top:18px; }
.drisoft-footer-v2__social a { width:38px; height:38px; display:grid; place-items:center; border-radius:50%; background:rgba(255,255,255,.10); margin:0; }
.drisoft-footer-v2__bottom { margin-top:38px; padding:20px 0; border-top:1px solid rgba(255,255,255,.15); display:flex; align-items:center; justify-content:space-between; gap:16px; color:#c8dbf2; font-size:.9rem; }
.drisoft-footer-v2__bottom div { display:flex; gap:22px; }
.drisoft-footer-v2__bottom a { display:inline; margin:0; }
.drisoft-back-top { position:fixed; right:22px; bottom:94px; width:48px; height:48px; display:grid !important; place-items:center; margin:0 !important; border-radius:50%; background:var(--drisoft-blue); color:#fff !important; box-shadow:0 16px 34px rgba(8,103,242,.3); z-index:80; text-decoration:none !important; }

@media (max-width: 1199px) {
    .drisoft-services-v2__grid,
    .drisoft-pricing-v2__grid,
    .drisoft-benefits-v2__grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .drisoft-benefits-v2 article { border-bottom:1px solid rgba(8,103,242,.10); }
    .drisoft-footer-v2__grid { grid-template-columns:1fr 1fr; }
}

@media (max-width: 991px) {
    .drisoft-nav__links {
        position: fixed;
        top: 0;
        right: 0;
        width: min(320px, 86vw);
        height: 100vh;
        padding: 84px 22px 22px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        background: #fff;
        box-shadow: -20px 0 50px rgba(6,26,68,.14);
    }
    .ft-menu--js-show, .drisoft-nav__links.ft-menu--js-show { display:flex; }
    .drisoft-nav__toggle, .drisoft-nav__close { display:grid; place-items:center; font-size:1.2rem; }
    .drisoft-nav__close { position:absolute; top:24px; right:24px; }
    .drisoft-nav__cta { margin-left:auto; }
    .drisoft-hero-v2 { padding: 54px 0; min-height:auto; }
    .drisoft-hero-v2__grid { grid-template-columns:1fr; }
    .drisoft-hero-v2__visual { min-height:400px; }
    .drisoft-hero-v2__badges { grid-template-columns:1fr; }
    .drisoft-process-v2__grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
    .drisoft-process-v2__grid::before { display:none; }
    .drisoft-faq-v2__grid { grid-template-columns:1fr; }
}

@media (max-width: 640px) {
    .drisoft-section { padding: 52px 0; }
    .drisoft-nav { min-height:68px; }
    .drisoft-brand__logo { width:44px; height:44px; }
    .drisoft-brand__text { font-size:.9rem; }
    .drisoft-nav__cta { display:none; }
    .drisoft-hero-v2__copy h1 { font-size:2.7rem; }
    .drisoft-hero-v2__actions { flex-direction:column; }
    .drisoft-btn { width:100%; }
    .drisoft-services-v2__grid,
    .drisoft-pricing-v2__grid,
    .drisoft-benefits-v2__grid,
    .drisoft-testimonials-v2__grid,
    .drisoft-process-v2__grid,
    .drisoft-footer-v2__grid { grid-template-columns:1fr; }
    .drisoft-benefits-v2 article { border-right:0; }
    .drisoft-faq__item summary { grid-template-columns:42px minmax(0,1fr) 38px; gap:10px; padding:14px; }
    .drisoft-faq__answer { margin:0 14px 14px !important; }
    .drisoft-faq__answer ul { grid-template-columns:1fr; }
    .drisoft-footer-v2__bottom { flex-direction:column; align-items:flex-start; }
}

/* ==========================================================
   Drisoft frontend redesign compatibility layer
   Scoped to .drisoft-site so the CMS backend editor is not affected.
   ========================================================== */
.drisoft-site {
    --drisoft-blue: #0867f2;
    --drisoft-blue-2: #19a8ff;
    --drisoft-navy: #061a44;
    --drisoft-muted: #64748b;
    --drisoft-soft: #eef8ff;
    --drisoft-line: rgba(8, 103, 242, .12);
    --drisoft-shadow: 0 24px 70px rgba(6, 26, 68, .12);
    font-family: Poppins, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif;
    color: var(--drisoft-navy);
    background: #fff;
}

.drisoft-section { padding: 78px 0; }
.drisoft-section-title span,
.drisoft-kicker,
.drisoft-page-hero span,
.drisoft-form-header span,
.drisoft-price-category-v2__head span,
.drisoft-portal-heading-v2 span,
.drisoft-login-panel span {
    display: inline-block;
    color: var(--drisoft-blue);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 900;
    font-size: .82rem;
}
.drisoft-section-title h2,
.drisoft-page-hero h1,
.drisoft-form-header h2,
.drisoft-login-panel h2,
.drisoft-portal-heading-v2 h2 {
    color: var(--drisoft-navy);
    font-weight: 950;
    letter-spacing: -.03em;
}
.drisoft-section-title h2 { font-size: clamp(2rem, 4vw, 3rem); margin: 7px 0 0; }

.drisoft-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 48px;
    padding: 13px 22px;
    border-radius: 14px;
    font-weight: 900;
    text-decoration: none !important;
    border: 1px solid transparent;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.drisoft-btn:hover { transform: translateY(-2px); }
.drisoft-btn--primary { color: #fff !important; background: linear-gradient(135deg, var(--drisoft-blue), #0052db); box-shadow: 0 15px 35px rgba(8,103,242,.28); }
.drisoft-btn--ghost { color: var(--drisoft-blue) !important; background: #fff; border-color: rgba(8,103,242,.22); box-shadow: 0 12px 28px rgba(6,26,68,.06); }
.drisoft-btn--light { color: var(--drisoft-blue) !important; background: #fff; }

/* Hero carousel */
.drisoft-hero-v3 {
    position: relative;
    overflow: hidden;
    min-height: 700px;
    display: flex;
    align-items: center;
    padding: 76px 0;
    background:
        radial-gradient(circle at 8% 18%, rgba(25,168,255,.16), transparent 27%),
        radial-gradient(circle at 90% 18%, rgba(8,103,242,.10), transparent 32%),
        linear-gradient(180deg, #f7fcff 0%, #fff 58%, #f7fcff 100%);
}
.drisoft-hero-v3::after {
    content: '';
    position: absolute;
    right: -110px;
    bottom: -160px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(8,103,242,.08);
}
.drisoft-hero-v3__grid { position: relative; z-index: 1; display:grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items:center; }
.drisoft-hero-v3__slides { position: relative; min-height: 292px; }
.drisoft-hero-v3__slide { position:absolute; inset:0 auto auto 0; width:100%; opacity:0; transform: translateY(16px); pointer-events:none; transition: opacity .45s ease, transform .45s ease; }
.drisoft-hero-v3__slide.is-active { position:relative; opacity:1; transform: translateY(0); pointer-events:auto; }
.drisoft-hero-v3__slide h1 { max-width: 760px; margin: 12px 0 18px; font-size: clamp(3rem, 7vw, 5.6rem); line-height: .98; font-weight: 950; letter-spacing: -.055em; color: var(--drisoft-navy); }
.drisoft-hero-v3__slide h1 strong,
.drisoft-hero-v3__slide h1 em { color: var(--drisoft-blue); font-style: normal; }
.drisoft-hero-v3__slide p { max-width: 630px; margin: 0; color: #475569; font-size: 1.18rem; line-height: 1.75; }
.drisoft-hero-v3__slide small { display:block; max-width: 620px; margin-top: 14px; color: #0f376f; font-weight: 800; }
.drisoft-hero-v3__actions { display:flex; flex-wrap:wrap; gap:14px; margin-top: 28px; }
.drisoft-hero-v3__dots { display:flex; gap:10px; margin-top: 22px; }
.drisoft-hero-v3__dots button { width: 34px; height: 6px; border: 0; border-radius: 999px; background: #cce5ff; transition: .2s ease; }
.drisoft-hero-v3__dots button.is-active { width: 54px; background: var(--drisoft-blue); }
.drisoft-hero-v3__badges { margin-top: 34px; display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:14px; max-width: 700px; }
.drisoft-hero-v3__badges div { display:grid; grid-template-columns: 44px 1fr; gap: 8px 12px; align-items:center; padding:14px; border-radius:18px; background:rgba(255,255,255,.82); border:1px solid var(--drisoft-line); box-shadow:0 14px 34px rgba(6,26,68,.07); }
.drisoft-hero-v3__badges i { grid-row:span 2; width:44px; height:44px; display:grid; place-items:center; border-radius:14px; background:#eaf6ff; color:var(--drisoft-blue); font-size:1.15rem; }
.drisoft-hero-v3__badges strong { color:var(--drisoft-navy); font-size:.86rem; line-height:1.18; }
.drisoft-hero-v3__badges span { color:var(--drisoft-muted); font-size:.78rem; }
.drisoft-hero-v3__visual { position:relative; min-height: 520px; display:grid; place-items:center; }
.drisoft-hero-v3__image-card { position:relative; width:min(100%,650px); aspect-ratio:1.15/1; border-radius:44% 56% 42% 58%/48% 42% 58% 52%; overflow:hidden; background:linear-gradient(135deg,#e5f5ff,#fff); border:14px solid rgba(255,255,255,.75); box-shadow:var(--drisoft-shadow); }
.drisoft-hero-v3__image-card img { position:relative; width:100%; height:100%; object-fit:cover; }
.drisoft-hero-v3__mini-card { position:absolute; left:4%; bottom:10%; display:flex; align-items:center; gap:12px; padding:16px 18px; background:#fff; border-radius:18px; box-shadow:var(--drisoft-shadow); font-weight:950; }
.drisoft-hero-v3__mini-card i { color:#10b981; font-size:1.25rem; }

/* Page heroes */
.drisoft-page-hero { position:relative; overflow:hidden; padding: 78px 0 68px; background: radial-gradient(circle at 85% 18%, rgba(25,168,255,.18), transparent 30%), linear-gradient(180deg,#f7fcff,#fff); border-bottom:1px solid rgba(8,103,242,.08); }
.drisoft-page-hero__grid { display:grid; grid-template-columns: minmax(0,1fr) 300px; gap:36px; align-items:center; }
.drisoft-page-hero h1 { max-width: 850px; font-size: clamp(2.5rem, 5vw, 4.4rem); line-height:1.04; margin:10px 0 14px; }
.drisoft-page-hero p { max-width: 760px; margin:0; color:#475569; font-size:1.08rem; line-height:1.75; }
.drisoft-page-hero__actions { display:flex; flex-wrap:wrap; gap:14px; margin-top:24px; }
.drisoft-rate-summary { padding:28px; border-radius:26px; background:#fff; border:1px solid var(--drisoft-line); box-shadow:0 18px 44px rgba(6,26,68,.08); text-align:center; }
.drisoft-rate-summary i { width:64px; height:64px; border-radius:20px; display:grid; place-items:center; margin:0 auto 14px; color:var(--drisoft-blue); background:#eaf6ff; font-size:1.6rem; }
.drisoft-rate-summary strong { display:block; font-size:2.35rem; color:var(--drisoft-navy); font-weight:950; line-height:1; }
.drisoft-rate-summary span { color:var(--drisoft-muted); font-weight:800; }

/* Modern pricelist */
.drisoft-pricelist-modern { background:#f7fcff; }
.drisoft-category-pricelist-v2 { display:grid; gap:26px; }
.drisoft-price-category-v2 { background:#fff; border:1px solid rgba(8,103,242,.12); border-radius:28px; box-shadow:0 18px 48px rgba(6,26,68,.07); overflow:hidden; }
.drisoft-price-category-v2__head { display:flex; align-items:center; gap:16px; padding:26px 28px; background:linear-gradient(135deg,#f5fbff,#fff); border-bottom:1px solid rgba(8,103,242,.08); }
.drisoft-price-category-v2__icon { width:64px; height:64px; border-radius:20px; display:grid; place-items:center; background:#eaf6ff; color:var(--drisoft-blue); font-size:1.55rem; overflow:hidden; flex:0 0 auto; }
.drisoft-price-category-v2__icon img,
.drisoft-price-item-v2__icon img { width:100%; height:100%; object-fit:contain; padding:11px; }
.drisoft-price-category-v2 h2 { margin:4px 0 0; color:var(--drisoft-navy); font-weight:950; font-size:1.55rem; }
.drisoft-price-list-v2 { display:grid; gap:14px; padding:24px; }
.drisoft-price-item-v2 { display:grid; grid-template-columns:54px minmax(0,1fr) auto; gap:16px; align-items:center; padding:18px; border-radius:20px; border:1px solid rgba(6,26,68,.08); background:#fff; transition:.2s ease; }
.drisoft-price-item-v2:hover { transform:translateY(-2px); box-shadow:0 16px 34px rgba(6,26,68,.07); border-color:rgba(8,103,242,.16); }
.drisoft-price-item-v2__icon { width:54px; height:54px; border-radius:18px; display:grid; place-items:center; color:var(--drisoft-blue); background:#f0f8ff; font-size:1.25rem; overflow:hidden; }
.drisoft-price-item-v2__main { display:grid; gap:8px; }
.drisoft-price-item-v2 h3 { margin:0; font-size:1.05rem; font-weight:950; color:var(--drisoft-navy); }
.drisoft-price-item-v2 small { color:var(--drisoft-muted); font-weight:800; }
.drisoft-price-item-v2 ul { display:flex; flex-wrap:wrap; gap:7px; margin:0 !important; padding:0 !important; list-style:none !important; line-height:1.3 !important; }
.drisoft-price-item-v2 li { padding:7px 11px; border-radius:999px; background:#f3f9ff; color:#274060; font-size:.84rem; font-weight:800; }
.drisoft-price-item-v2__price { min-width:120px; text-align:right; }
.drisoft-price-item-v2__price strong { display:block; font-size:1.55rem; font-weight:950; color:var(--drisoft-blue); }
.drisoft-price-item-v2__price span { color:var(--drisoft-muted); font-size:.85rem; font-weight:900; }

/* Contact */
.drisoft-contact-visual { min-height:260px; border-radius:34px; background-size:cover; background-position:center; border:12px solid rgba(255,255,255,.72); box-shadow:var(--drisoft-shadow); }
.drisoft-contact-modern { background:#f7fcff; }
.drisoft-contact-modern__grid { display:grid; grid-template-columns:360px minmax(0,1fr); gap:28px; align-items:start; }
.drisoft-contact-cards { display:grid; gap:14px; }
.drisoft-contact-card { display:grid; grid-template-columns:54px 1fr; gap:5px 14px; align-items:center; padding:18px; border-radius:22px; background:#fff; border:1px solid var(--drisoft-line); box-shadow:0 14px 34px rgba(6,26,68,.06); text-decoration:none !important; }
.drisoft-contact-card i { grid-row:span 2; width:54px; height:54px; border-radius:18px; display:grid; place-items:center; color:var(--drisoft-blue); background:#eaf6ff; font-size:1.25rem; }
.drisoft-contact-card span { color:var(--drisoft-muted); font-weight:900; font-size:.82rem; text-transform:uppercase; letter-spacing:.06em; }
.drisoft-contact-card strong { color:var(--drisoft-navy); word-break:break-word; }
.drisoft-contact-form { padding:30px; border-radius:28px; background:#fff; border:1px solid var(--drisoft-line); box-shadow:0 18px 48px rgba(6,26,68,.07); }
.drisoft-form-header { margin-bottom:22px; }
.drisoft-form-header h2 { margin:6px 0 8px; }
.drisoft-form-header p { color:var(--drisoft-muted); margin:0; }
.drisoft-form__grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:16px; }
.drisoft-form__wide { grid-column:1/-1; }
.drisoft-form__grid label { display:grid; gap:8px; color:#19345d; font-weight:900; }
.drisoft-form__grid input,
.drisoft-form__grid textarea { width:100%; border:1px solid rgba(8,103,242,.15); background:#f8fcff; border-radius:16px; padding:14px 16px; color:var(--drisoft-navy); outline:none; }
.drisoft-form__grid textarea { min-height:140px; resize:vertical; }
.drisoft-form__grid input:focus,
.drisoft-form__grid textarea:focus { border-color:var(--drisoft-blue); box-shadow:0 0 0 4px rgba(8,103,242,.08); background:#fff; }
.drisoft-contact-form button { margin-top:18px; }

/* Portal / invoices */
.drisoft-portal-modern { background:#f7fcff; }
.drisoft-alert { padding:14px 18px; border-radius:16px; margin-bottom:14px; font-weight:800; }
.drisoft-alert--error { background:#fff1f2; color:#be123c; border:1px solid #fecdd3; }
.drisoft-alert--success { background:#ecfdf5; color:#047857; border:1px solid #bbf7d0; }
.drisoft-login-panel { max-width:720px; margin:0 auto; text-align:center; padding:44px; border-radius:30px; background:#fff; border:1px solid var(--drisoft-line); box-shadow:0 18px 48px rgba(6,26,68,.07); }
.drisoft-login-panel__icon { width:82px; height:82px; border-radius:28px; display:grid; place-items:center; margin:0 auto 18px; color:#fff; background:linear-gradient(135deg,var(--drisoft-blue),#0052db); font-size:2rem; }
.drisoft-login-panel p { max-width:560px; margin:10px auto 24px; color:var(--drisoft-muted); line-height:1.7; }
.drisoft-portal-heading-v2 { display:flex; align-items:center; justify-content:space-between; gap:20px; margin-bottom:22px; padding:24px; border-radius:24px; background:#fff; border:1px solid var(--drisoft-line); box-shadow:0 14px 34px rgba(6,26,68,.06); }
.drisoft-portal-heading-v2 h2 { margin:4px 0 0; }
.drisoft-profile-layout-v2 { display:grid; grid-template-columns:minmax(0,1fr) 320px; gap:24px; margin-bottom:28px; }
.drisoft-profile-note-v2 { padding:28px; border-radius:28px; background:linear-gradient(135deg,var(--drisoft-blue),#0043c8); color:#fff; box-shadow:0 20px 48px rgba(8,103,242,.24); }
.drisoft-profile-note-v2 i { width:64px; height:64px; display:grid; place-items:center; border-radius:20px; background:rgba(255,255,255,.16); font-size:1.5rem; margin-bottom:16px; }
.drisoft-profile-note-v2 span { display:block; color:#dbeafe; font-weight:900; text-transform:uppercase; letter-spacing:.06em; }
.drisoft-profile-note-v2 strong { display:block; font-size:1.5rem; margin:4px 0 12px; }
.drisoft-profile-note-v2 p { color:#eaf5ff; line-height:1.7; }
.drisoft-invoice-table-v2 { overflow:auto; border-radius:26px; background:#fff; border:1px solid var(--drisoft-line); box-shadow:0 18px 48px rgba(6,26,68,.07); }
.drisoft-invoice-table-v2 table { width:100%; border-collapse:collapse; min-width:760px; }
.drisoft-invoice-table-v2 th { padding:18px 20px; background:#f1f8ff; color:#17345f; text-transform:uppercase; letter-spacing:.06em; font-size:.78rem; }
.drisoft-invoice-table-v2 td { padding:18px 20px; border-top:1px solid rgba(8,103,242,.08); color:#24364f; }
.drisoft-status-pill { display:inline-flex; padding:7px 11px; border-radius:999px; background:#eaf6ff; color:var(--drisoft-blue); font-weight:900; font-size:.82rem; }
.drisoft-status-pill--payment { background:#ecfdf5; color:#059669; }
.drisoft-table-link { display:inline-flex; margin-right:8px; padding:8px 12px; border-radius:999px; background:#eaf6ff; color:var(--drisoft-blue) !important; font-weight:900; text-decoration:none !important; }
.drisoft-table-link--pay { background:var(--drisoft-blue); color:#fff !important; }
.drisoft-loyalty-card { display:grid; grid-template-columns:minmax(0,1fr) 180px; gap:24px; padding:28px; margin:0 0 28px; border:1px solid var(--drisoft-line); border-radius:8px; background:#fff; box-shadow:0 18px 48px rgba(6,26,68,.07); }
.drisoft-loyalty-card__main { min-width:0; }
.drisoft-loyalty-card__brand { display:flex; align-items:center; gap:14px; }
.drisoft-loyalty-card__brand img { width:48px; height:48px; flex:0 0 48px; object-fit:contain; }
.drisoft-loyalty-card__brand span { display:block; color:var(--drisoft-blue); font-size:.78rem; font-weight:900; letter-spacing:.06em; text-transform:uppercase; }
.drisoft-loyalty-card__brand h2 { margin:3px 0 0; color:var(--drisoft-navy); font-size:1.45rem; font-weight:950; line-height:1.2; overflow-wrap:anywhere; }
.drisoft-loyalty-card__text { margin:16px 0 12px; color:var(--drisoft-muted); line-height:1.6; }
.drisoft-loyalty-progress { display:block; margin-bottom:14px; color:var(--drisoft-navy); }
.drisoft-loyalty-stamps { display:grid; grid-template-columns:repeat(5,64px); gap:14px; justify-content:start; }
.drisoft-loyalty-stamp { width:64px; height:64px; display:grid; place-items:center; border:2px solid #9bd8ff; border-radius:50%; color:#55708f; background:#f7fcff; font-size:12px; font-weight:900; line-height:1.1; text-align:center; }
.drisoft-loyalty-stamp.is-earned { border-color:#0867f2; background:#0867f2; color:#fff; }
.drisoft-loyalty-terms { margin:16px 0 0; color:#55708f; font-size:.85rem; line-height:1.5; }
.drisoft-loyalty-card__reward { display:grid; align-content:center; justify-items:center; gap:12px; text-align:center; }
.drisoft-loyalty-card__reward > strong { color:var(--drisoft-navy); line-height:1.25; }
.drisoft-loyalty-card__reward small { color:#55708f; line-height:1.4; }
.drisoft-loyalty-reward { width:132px; height:132px; display:grid; place-items:center; box-sizing:border-box; padding:14px; border:3px solid #0867f2; border-radius:50%; color:#0867f2; background:#eef8ff; font-size:.82rem; font-weight:950; line-height:1.15; overflow-wrap:anywhere; text-align:center; }
.drisoft-loyalty-reward.is-available { color:#fff; background:#0867f2; }

/* Legal pages */
.drisoft-legal-modern { background:#f7fcff; }
.drisoft-legal-modern__grid { display:grid; grid-template-columns:280px minmax(0,1fr); gap:26px; align-items:start; }
.drisoft-legal-nav { position:sticky; top:98px; display:grid; gap:10px; padding:14px; border-radius:24px; background:#fff; border:1px solid var(--drisoft-line); box-shadow:0 14px 34px rgba(6,26,68,.06); }
.drisoft-legal-nav a { display:flex; gap:10px; align-items:center; padding:14px; border-radius:16px; color:#17345f; font-weight:900; text-decoration:none !important; }
.drisoft-legal-nav a:hover,
.drisoft-legal-nav a.is-active { background:#eaf6ff; color:var(--drisoft-blue); }
.drisoft-legal-panel-v2 { padding:34px; border-radius:28px; background:#fff; border:1px solid var(--drisoft-line); box-shadow:0 18px 48px rgba(6,26,68,.07); color:#24364f; line-height:1.9; white-space:normal; }
.drisoft-legal-panel-v2 strong { color:var(--drisoft-navy); }

@media (max-width: 1199px) {
    .drisoft-page-hero__grid,
    .drisoft-contact-modern__grid,
    .drisoft-profile-layout-v2,
    .drisoft-legal-modern__grid { grid-template-columns:1fr; }
    .drisoft-rate-summary { max-width:360px; }
    .drisoft-legal-nav { position:static; }
}

@media (max-width: 991px) {
    .drisoft-hero-v3 { min-height:auto; padding:58px 0; }
    .drisoft-hero-v3__grid { grid-template-columns:1fr; }
    .drisoft-hero-v3__visual { min-height:380px; }
    .drisoft-hero-v3__badges { grid-template-columns:1fr; }
    .drisoft-hero-v3__slides { min-height: 270px; }
}

@media (max-width: 767px) {
    .drisoft-loyalty-card { grid-template-columns:1fr; padding:20px; }
    .drisoft-loyalty-stamps { grid-template-columns:repeat(5,minmax(44px,1fr)); gap:8px; }
    .drisoft-loyalty-stamp { width:100%; max-width:56px; aspect-ratio:1; height:auto; justify-self:center; }
    .drisoft-loyalty-reward { width:112px; height:112px; justify-self:center; }
}

@media (max-width: 640px) {
    .drisoft-section { padding:54px 0; }
    .drisoft-hero-v3__slide h1 { font-size:2.75rem; }
    .drisoft-hero-v3__actions,
    .drisoft-page-hero__actions { flex-direction:column; }
    .drisoft-btn { width:100%; }
    .drisoft-form__grid { grid-template-columns:1fr; }
    .drisoft-price-item-v2 { grid-template-columns:44px minmax(0,1fr); }
    .drisoft-price-item-v2__price { grid-column:1/-1; text-align:left; padding-left:60px; }
    .drisoft-portal-heading-v2 { align-items:flex-start; flex-direction:column; }
    .drisoft-legal-panel-v2,
    .drisoft-contact-form,
    .drisoft-login-panel { padding:24px; }
}


.drisoft-price-btn{
    margin-top:20px;
    display:block;
    padding:13px 20px;
    border-radius:14px;
    background:#eef6ff;
    color:var(--card-accent);
    font-weight:900;
    text-decoration:none!important;
    transition:.25s ease;
}

.drisoft-price-btn:hover{
    background:var(--card-accent);
    color:#fff;
}


.drisoft-price-card{
    min-height:260px;
}


.drisoft-price-card h3{
    font-size:20px;
}


.drisoft-price{
    margin-top:5px;
    font-size:48px;
    font-weight:950;
}


.drisoft-price small{
    font-size:16px;
}


.drisoft-price-card--blue{
    --card-accent:#0077ff !important;
}

.drisoft-price-card--green{
    --card-accent:#00bf63;
}

.drisoft-price-card--orange{
    --card-accent:#ff6b00;
}

.drisoft-price-card--purple{
    --card-accent:#8b35ff;
}

/* ======================================
   DRISOFT BOOK PICKUP PAGE
====================================== */

.drisoft-book-page {
    background: linear-gradient(180deg,#f7fcff,#ffffff);
    padding: 80px 0;
    font-family:'Poppins',sans-serif;
}


.drisoft-book-wrapper {
    max-width:1100px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
}


/* LEFT INFO */

.drisoft-book-info span {
    color:#0867f2;
    font-weight:800;
    text-transform:uppercase;
    font-size:13px;
}


.drisoft-book-info h1 {
    color:#061a44;
    font-size:48px;
    font-weight:900;
    letter-spacing:-2px;
    line-height:1.1;
}


.drisoft-book-info p {
    color:#64748b;
    font-size:16px;
    line-height:1.8;
}


/* FEATURES */

.drisoft-book-feature {
    display:flex;
    gap:15px;
    margin-top:20px;
}


.drisoft-book-feature i {
    width:48px;
    height:48px;
    border-radius:50%;
    background:#eaf5ff;
    color:#0867f2;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
}


.drisoft-book-feature h4 {
    font-weight:800;
    color:#061a44;
}



/* FORM CARD */

.drisoft-book-card {

    background:white;
    padding:40px;
    border-radius:28px;

    box-shadow:
    0 25px 70px rgba(6,26,68,.12);

    border:1px solid rgba(8,103,242,.12);

}


.drisoft-book-card h2 {
    text-align:center;
    font-size:28px;
    font-weight:900;
    color:#061a44;
}



/* INPUTS */

.drisoft-book-card input,
.drisoft-book-card textarea,
.drisoft-book-card select {

    width:100%;
    height:55px;

    border-radius:16px;
    border:1px solid #dceaff;

    padding:0 18px;

    margin-bottom:15px;

    background:#f9fcff;

    font-weight:600;
}


.drisoft-book-card textarea {
    height:120px;
    padding-top:15px;
}



.drisoft-book-card input:focus,
.drisoft-book-card textarea:focus,
.drisoft-book-card select:focus {

    outline:none;
    border-color:#0867f2;

    box-shadow:
    0 0 0 4px rgba(8,103,242,.10);
}


/* BUTTON */

.drisoft-book-btn {

    width:100%;
    height:58px;

    border-radius:18px;

    background:linear-gradient(
        135deg,
        #0867f2,
        #19a8ff
    );

    color:white;

    font-weight:900;

    box-shadow:
    0 15px 35px rgba(8,103,242,.35);

}



/* MOBILE */

@media(max-width:768px){

    .drisoft-book-wrapper{
        grid-template-columns:1fr;
        padding:20px;
    }

    .drisoft-book-info h1{
        font-size:36px;
    }

    .drisoft-book-card{
        padding:25px;
    }

}

/* ======================================
   DRISOFT BOOK PICKUP PAGE REDESIGN
   Frontend only: /c/book
====================================== */
.drisoft-booking-page{background:radial-gradient(circle at 8% 18%,rgba(8,103,242,.10),transparent 22rem),radial-gradient(circle at 90% 10%,rgba(25,168,255,.16),transparent 25rem),linear-gradient(180deg,#f7fcff 0%,#fff 50%,#f7fcff 100%)}
.drisoft-booking-hero{position:relative;overflow:hidden;padding:70px 0 58px;background:linear-gradient(90deg,#fff 0%,#f4fbff 48%,#dff4ff 100%);border-bottom:1px solid rgba(8,103,242,.12)}
.drisoft-booking-hero__content{max-width:820px;position:relative;z-index:2}.drisoft-booking-hero h1{margin:12px 0 16px;color:var(--drisoft-navy,#061a44);font-size:clamp(2.6rem,6vw,5.4rem);line-height:.98;letter-spacing:-3px;font-weight:950}.drisoft-booking-hero p{color:var(--drisoft-muted,#64748b);font-size:1.08rem;line-height:1.8;max-width:680px}
.drisoft-booking-bubble{position:absolute;border-radius:999px;border:2px solid rgba(8,103,242,.15);background:radial-gradient(circle at 30% 25%,#fff,rgba(25,168,255,.18));pointer-events:none}.drisoft-booking-bubble--one{width:95px;height:95px;right:16%;top:32px}.drisoft-booking-bubble--two{width:54px;height:54px;right:6%;bottom:24px}
.drisoft-booking-section{padding:54px 0 84px}.drisoft-booking-layout{display:grid;grid-template-columns:minmax(0,1.25fr) 410px;gap:34px;align-items:start}.drisoft-booking-card,.drisoft-booking-help,.drisoft-booking-rates{background:rgba(255,255,255,.96);border:1px solid rgba(8,103,242,.13);border-radius:28px;box-shadow:0 24px 70px rgba(6,26,68,.10)}.drisoft-booking-card{padding:34px}.drisoft-booking-card__header{display:flex;justify-content:space-between;gap:24px;align-items:flex-start;margin-bottom:24px}.drisoft-booking-card__header span,.drisoft-booking-rates__header span{color:var(--drisoft-blue,#0867f2);text-transform:uppercase;font-size:12px;letter-spacing:.12em;font-weight:900}.drisoft-booking-card__header h2,.drisoft-booking-rates__header h2{margin:6px 0 8px;font-size:1.75rem;font-weight:950;color:var(--drisoft-navy,#061a44)}.drisoft-booking-card__header p{margin:0;color:var(--drisoft-muted,#64748b);line-height:1.65}.drisoft-booking-card__icon{width:64px;height:64px;border-radius:22px;display:grid;place-items:center;color:#fff;background:linear-gradient(135deg,#0867f2,#19a8ff);box-shadow:0 16px 34px rgba(8,103,242,.28);font-size:25px;flex:0 0 auto}
.drisoft-alert{padding:14px 16px;border-radius:16px;margin-bottom:18px;font-weight:800}.drisoft-alert--success{background:#e9fff4;color:#007a46;border:1px solid rgba(0,167,97,.18)}.drisoft-alert--error{background:#fff1f1;color:#c62828;border:1px solid rgba(198,40,40,.18)}
.drisoft-booking-profile{display:grid;grid-template-columns:58px 1fr auto;gap:16px;align-items:center;padding:18px;border-radius:22px;background:linear-gradient(180deg,#f5fbff,#fff);border:1px solid rgba(8,103,242,.12);margin-bottom:24px}.drisoft-booking-profile__avatar{width:58px;height:58px;border-radius:18px;display:grid;place-items:center;background:#eaf5ff;color:var(--drisoft-blue,#0867f2);font-weight:950;font-size:1.35rem}.drisoft-booking-profile__details span{display:block;color:var(--drisoft-blue,#0867f2);text-transform:uppercase;font-size:11px;letter-spacing:.10em;font-weight:900}.drisoft-booking-profile__details strong{display:block;color:var(--drisoft-navy,#061a44);font-weight:950;margin:2px 0 8px}.drisoft-booking-profile__details p{margin:0;color:var(--drisoft-text,#102a56);line-height:1.65}.drisoft-booking-profile__details i{color:var(--drisoft-blue,#0867f2);width:18px}.drisoft-booking-profile__edit{display:inline-flex;align-items:center;justify-content:center;min-height:40px;padding:10px 14px;border-radius:13px;background:#fff;border:1px solid rgba(8,103,242,.18);color:var(--drisoft-blue,#0867f2);text-decoration:none!important;font-weight:900;white-space:nowrap}
.drisoft-booking-form-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}.drisoft-booking-form-grid label{display:block;margin:0;color:var(--drisoft-navy,#061a44);font-weight:900}.drisoft-booking-form-grid label>span{display:block;margin-bottom:8px}.drisoft-booking-form-grid input,.drisoft-booking-form-grid select,.drisoft-booking-form-grid textarea{width:100%;min-height:56px;border:1px solid #cfe3ff;border-radius:17px;background:#f9fcff;color:var(--drisoft-navy,#061a44);padding:0 17px;font-weight:700;outline:none;transition:.22s ease}.drisoft-booking-form-grid textarea{min-height:140px;padding-top:15px;resize:vertical}.drisoft-booking-form-grid input:focus,.drisoft-booking-form-grid select:focus,.drisoft-booking-form-grid textarea:focus{border-color:var(--drisoft-blue,#0867f2);background:#fff;box-shadow:0 0 0 5px rgba(8,103,242,.10)}.drisoft-booking-form-grid__wide{grid-column:1/-1}.drisoft-booking-submit{margin-top:22px;min-width:190px;border:0}
.drisoft-booking-sidebar{display:grid;gap:22px}.drisoft-booking-help,.drisoft-booking-rates{padding:26px}.drisoft-booking-help{background:radial-gradient(circle at 90% 0%,rgba(255,255,255,.20),transparent 12rem),linear-gradient(145deg,#0867f2,#043d9e);color:#fff}.drisoft-booking-help__icon{width:64px;height:64px;border-radius:22px;display:grid;place-items:center;background:rgba(255,255,255,.16);font-size:27px;margin-bottom:16px}.drisoft-booking-help h3{color:#fff;font-weight:950;font-size:1.45rem;margin-bottom:10px}.drisoft-booking-help p{color:rgba(255,255,255,.86);line-height:1.7}.drisoft-booking-help__steps{display:grid;gap:10px;margin-top:18px}.drisoft-booking-help__steps div{display:flex;align-items:center;gap:10px;font-weight:850}.drisoft-booking-help__steps i{width:24px;height:24px;border-radius:999px;display:grid;place-items:center;background:rgba(255,255,255,.20)}
.drisoft-booking-rates__header{margin-bottom:18px}.drisoft-mini-price{padding:16px 0;border-top:1px solid rgba(8,103,242,.12)}.drisoft-mini-price:first-of-type{border-top:0;padding-top:0}.drisoft-mini-price strong{display:flex;align-items:center;gap:9px;color:var(--drisoft-navy,#061a44);font-weight:950;margin-bottom:10px}.drisoft-mini-price strong i{color:var(--drisoft-blue,#0867f2)}.drisoft-mini-price span{display:flex;align-items:center;justify-content:space-between;gap:12px;color:var(--drisoft-text,#102a56);line-height:1.45;font-size:14px;padding:7px 0}.drisoft-mini-price b{color:var(--drisoft-blue,#0867f2);font-weight:950;margin-left:auto}.drisoft-mini-price small{color:var(--drisoft-muted,#64748b);font-weight:800;white-space:nowrap}
@media(max-width:991px){.drisoft-booking-layout{grid-template-columns:1fr}.drisoft-booking-hero{padding:52px 0 42px}}@media(max-width:575px){.drisoft-booking-card,.drisoft-booking-help,.drisoft-booking-rates{padding:22px;border-radius:22px}.drisoft-booking-profile{grid-template-columns:48px 1fr}.drisoft-booking-profile__edit{grid-column:1/-1;width:100%}.drisoft-booking-form-grid{grid-template-columns:1fr}.drisoft-booking-submit{width:100%}}


.loyalty-card {
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    max-width: 500px;
    margin: 2rem auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.loyalty-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.loyalty-card-logo {
    max-width: 60px;
    margin-right: 15px;
    border-radius: 50%;
}

.loyalty-card-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
}

.loyalty-stamps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.loyalty-stamp, .loyalty-reward {
    width: 100%;
    padding-top: 100%; /* Maintain aspect ratio 1:1 */
    position: relative;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 0.65rem;
    text-align: center;
    line-height: 1.2;
}

.loyalty-stamp > div, .loyalty-reward > div {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5px;
}

.loyalty-stamp.earned {
    background-color: #007bff;
    color: white;
    font-weight: 500;
}

.loyalty-stamp.empty {
    border: 2px dashed #d0d0d0;
    background-color: #f9f9f9;
}

.loyalty-reward-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.loyalty-reward {
    background-color: #e8f5e9; /* Light green background */
    color: #2e7d32; /* Dark green text */
    font-weight: bold;
    font-size: 0.75rem;
    border: 2px solid #a5d6a7;
}

.loyalty-reward.locked {
    background-color: #f5f5f5;
    color: #757575;
    border-color: #e0e0e0;
}

.loyalty-progress-text {
    text-align: right;
    color: #555;
}

.loyalty-terms {
    margin-top: 15px;
    font-size: 0.75rem;
    color: #6c757d;
    text-align: center;
}

.drisoft-booking-submit{margin-top:22px;min-width:190px;border:0}
.drisoft-booking-sidebar{display:grid;gap:22px}.drisoft-booking-help,.drisoft-booking-rates{padding:26px}.drisoft-booking-help{background:radial-gradient(circle at 90% 0%,rgba(255,255,255,.20),transparent 12rem),linear-gradient(145deg,#0867f2,#043d9e);color:#fff}.drisoft-booking-help__icon{width:64px;height:64px;border-radius:22px;display:grid;place-items:center;background:rgba(255,255,255,.16);font-size:27px;margin-bottom:16px}.drisoft-booking-help h3{color:#fff;font-weight:950;font-size:1.45rem;margin-bottom:10px}.drisoft-booking-help p{color:rgba(255,255,255,.86);line-height:1.7}.drisoft-booking-help__steps{display:grid;gap:10px;margin-top:18px}.drisoft-booking-help__steps div{display:flex;align-items:center;gap:10px;font-weight:850}.drisoft-booking-help__steps i{width:24px;height:24px;border-radius:999px;display:grid;place-items:center;background:rgba(255,255,255,.20)}
.drisoft-booking-rates__header{margin-bottom:18px}.drisoft-mini-price{padding:16px 0;border-top:1px solid rgba(8,103,242,.12)}.drisoft-mini-price:first-of-type{border-top:0;padding-top:0}.drisoft-mini-price strong{display:flex;align-items:center;gap:9px;color:var(--drisoft-navy,#061a44);font-weight:950;margin-bottom:10px}.drisoft-mini-price strong i{color:var(--drisoft-blue,#0867f2)}.drisoft-mini-price span{display:flex;align-items:center;justify-content:space-between;gap:12px;color:var(--drisoft-text,#102a56);line-height:1.45;font-size:14px;padding:7px 0}.drisoft-mini-price b{color:var(--drisoft-blue,#0867f2);font-weight:950;margin-left:auto}.drisoft-mini-price small{color:var(--drisoft-muted,#64748b);font-weight:800;white-space:nowrap}
@media(max-width:991px){.drisoft-booking-layout{grid-template-columns:1fr}.drisoft-booking-hero{padding:52px 0 42px}}@media(max-width:575px){.drisoft-booking-card,.drisoft-booking-help,.drisoft-booking-rates{padding:22px;border-radius:22px}.drisoft-booking-profile{grid-template-columns:48px 1fr}.drisoft-booking-profile__edit{grid-column:1/-1;width:100%}.drisoft-booking-form-grid{grid-template-columns:1fr}.drisoft-booking-submit{width:100%}}

/* New Portal Layout */
.drisoft-portal-layout {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.drisoft-portal-sidebar {
    position: sticky;
    top: 98px;
    display: grid;
    gap: 10px;
    padding: 14px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid var(--drisoft-line);
    box-shadow: 0 14px 34px rgba(6, 26, 68, .06);
}

.drisoft-portal-sidebar a {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 14px;
    border-radius: 16px;
    color: #17345f;
    font-weight: 900;
    text-decoration: none !important;
}

.drisoft-portal-sidebar a:hover,
.drisoft-portal-sidebar a.is-active {
    background: #eaf6ff;
    color: var(--drisoft-blue);
}

.drisoft-portal-sidebar a i {
    width: 20px;
    text-align: center;
}

/* DataTables invoice table styles */
.dataTables_wrapper .dt-buttons .dt-button {
    background-color: #eaf6ff !important;
    background-image: none !important;
    color: var(--drisoft-blue) !important;
    border-radius: 999px !important;
    border: none !important;
    padding: 8px 16px !important;
    font-weight: 900 !important;
    box-shadow: none !important;
}

.dataTables_wrapper .dt-buttons .dt-button:hover {
    background-color: var(--drisoft-blue) !important;
    color: #fff !important;
}

.dataTables_filter input {
    border-radius: 999px !important;
    padding: 8px 12px;
    border: 1px solid var(--drisoft-line);
}

@media (max-width: 991px) {
    .drisoft-portal-layout {
        grid-template-columns: 1fr;
    }
    .drisoft-portal-sidebar {
        position: static;
        display: flex;
        overflow-x: auto;
    }
}


