/* ========== Clients Mobile Grid ========== */
.clients-mobile { display: none; }
.clients-desktop { display: flex; flex-direction: column; justify-content: flex-start; gap: 24px; flex: 1; margin-top: 150px; }

@media (max-width: 639px) {
    .clients-desktop { display: none !important; }
    .clients-mobile { display: block; }
    .clients-section {
        min-height: unset !important;
        padding: 40px 0 60px !important;
        background:
            radial-gradient(ellipse 100% 60% at 50% 50%, rgba(46, 184, 136, 0.13) 0%, transparent 70%),
            linear-gradient(180deg, #ffffff 0%, #ffffff 15%, #f6fbf9 30%, #eef4f0 50%, #f6fbf9 62%, #ffffff 75%, #ffffff 100%) !important;
    }

    .clients-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .clients-grid-item {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 22px 16px;
        height: 90px;
        background: #ffffff;
        border: none;
        border-radius: 16px;
        box-shadow: none;
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.35s ease, transform 0.35s ease;
    }

    .clients-grid-item.visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* last odd item spans 2 columns to avoid empty cell */
    .clients-grid-item:last-child:nth-child(odd) {
        grid-column: span 2;
    }
}

/* ========== Mobile Menu ========== */
.mobile-menu-popup {
    display: none;
}

.mobile-menu-popup.menu-open {
    display: flex;
}

@media (min-width: 640px) {
    .mobile-menu-popup {
        display: none !important;
    }
}

/* ========== Partners heading underline ========== */
.partners-underline {
    color: #2EB888;
    position: relative;
    display: inline-block;
}

.partners-underline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 4px;
    border-radius: 100px;
    background: #2EB888;
    opacity: 0.85;
}

/* ========== Partners Section Background ========== */
.clients-section {
    background:
        radial-gradient(ellipse 100% 60% at 50% 50%, rgba(46, 184, 136, 0.13) 0%, transparent 70%),
        radial-gradient(ellipse 60% 40% at 15% 50%, rgba(63, 123, 205, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 85% 50%, rgba(46, 184, 136, 0.07) 0%, transparent 60%),
        linear-gradient(180deg, #ffffff 0%, #ffffff 15%, #f6fbf9 30%, #eef4f0 50%, #f6fbf9 62%, #ffffff 75%, #ffffff 100%);
    position: relative;
}

.clients-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 25% 35%, rgba(46, 184, 136, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 75% 65%, rgba(63, 123, 205, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.clients-section > * {
    position: relative;
    z-index: 1;
}

/* ========== Clients Marquee ========== */
.clients-track-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 20px 0;
    margin: -20px 0;
}

.clients-track-wrapper::before,
.clients-track-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 180px;
    z-index: 2;
    pointer-events: none;
}

.clients-track-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #f0f6f3 0%, rgba(240, 246, 243, 0) 100%);
}

.clients-track-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #f0f6f3 0%, rgba(240, 246, 243, 0) 100%);
}

.clients-track {
    display: flex;
    align-items: center;
    gap: 32px;
    width: max-content;
}

.clients-track--ltr {
    animation: clients-scroll-ltr 50s linear infinite;
}

.clients-track--rtl {
    animation: clients-scroll-rtl 50s linear infinite;
}

.clients-track-wrapper:hover .clients-track {
    animation-play-state: paused;
}

.clients-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 40px;
    min-width: 180px;
    background: rgba(255, 255, 255, 0.42);
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.90);
    border-radius: 100px;
    font-size: 32px;
    font-weight: 700;
    color: #2a2a3a;
    letter-spacing: 0.02em;
    white-space: nowrap;
    box-shadow:
        0 4px 20px rgba(46, 184, 136, 0.10),
        0 1px 6px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    cursor: default;
    user-select: none;
    position: relative;
    overflow: hidden;
}

.clients-logo::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 50%;
    background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent);
    border-radius: 32px 32px 0 0;
    pointer-events: none;
}

.clients-logo img {
    height: 62px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
}

.clients-grid-item img.partner-small {
    height: 50px;
}

.clients-grid-item img.partner-medium {
    height: 70px;
}

.clients-grid-item img.partner-medium_tosca {
    height: 60px;
} 

.clients-grid-item img {
    height: 50px;
    width: auto;
    max-width: 130px;
    object-fit: contain;
    display: block;
}

.clients-logo:hover {
    transform: translateY(-1px);
    box-shadow:
        0 6px 24px rgba(63, 123, 205, 0.18),
        0 2px 8px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(255, 255, 255, 0.3);
}

@keyframes clients-scroll-ltr {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-25%); }
}

@keyframes clients-scroll-rtl {
    0%   { transform: translateX(-25%); }
    100% { transform: translateX(0); }
}

@media (max-width: 640px) {
    .clients-logo {
        padding: 10px 18px;
        font-size: 13px;
        border-radius: 10px;
    }
    .clients-track {
        gap: 24px;
        animation-duration: 35s;
    }
}

/* ========== Footer Text ========== */
.footer-text {
    font-size: 15px;
}

@media (max-width: 640px) {
    .footer-text {
        font-size: 12px;
    }
}

/* ========== Danket Logo Text ========== */
.danket-logo-text {
    font-size: 25px;
    letter-spacing: 1.03px;
}

@media (max-width: 640px) {
    .danket-logo-text {
        font-size: 16px;
        letter-spacing: 0.5px;
    }
}

/* ========== Smooth Scroll ========== */
html {
    scroll-behavior: smooth;
}

/* ========== Nav link transitions ========== */
.header__nav a {
    color: inherit;
    transition: color 0.35s ease, font-weight 0s;
}

.header__nav a.nav-active {
    color: #2EB888 !important;
    font-weight: 700;
}

/* ========== Sticky Header ========== */
.sticky-header {
    position: fixed !important;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 1280px;
    z-index: 100;
    border-radius: 20px;
    padding-top: 14px !important;
    padding-bottom: 14px !important;
    background: rgba(255, 255, 255, 0.55) !important;
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.75);
    box-shadow:
        0 4px 24px rgba(63, 123, 205, 0.10),
        0 1px 6px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

.sticky-header:hover {
    box-shadow:
        0 8px 32px rgba(63, 123, 205, 0.16),
        0 2px 8px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.hero {
    padding-top: 90px !important;
}

@media (max-width: 640px) {
    .sticky-header {
        width: calc(100% - 24px);
        top: 8px;
        border-radius: 14px;
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
    .hero {
        padding-top: 80px !important;
    }
}

/* ========== Official Badge ========== */
.official-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 100px;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #2a2a3a;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.75);
    box-shadow:
        0 2px 16px rgba(63, 123, 205, 0.12),
        0 1px 4px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    max-width: 90vw;
    text-align: center;
}

.badge-wrapper {
    margin: 30px 0 30px 0;
}

.official-badge:hover {
    transform: translateY(-1px);
    box-shadow:
        0 6px 24px rgba(63, 123, 205, 0.18),
        0 2px 8px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3F7BCD;
    flex-shrink: 0;
    box-shadow: 0 0 0 2.5px rgba(63, 123, 205, 0.22);
    animation: badge-pulse 2.5s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% { box-shadow: 0 0 0 2.5px rgba(63, 123, 205, 0.22); }
    50%       { box-shadow: 0 0 0 5px rgba(63, 123, 205, 0.10); }
}

@media (max-width: 640px) {
    .badge-wrapper {
        margin: -10px 0 50px 0 !important;
    }

    .official-badge {
        font-size: 11px;
        padding: 8px 16px;
        gap: 6px;
        letter-spacing: 0.03em;
        white-space: nowrap;
        max-width: unset;
    }

    .accordion-arrow {
        left: 83% !important;
    }

    .badge-dot {
        width: 6px;
        height: 6px;
    }
}

/* ========== Base Styles ========== */
* {
    box-sizing: border-box;
}

body {
    width: 100%;
    background-color: #ffff;
    font-family: "Manrope", sans-serif;
}

h1,
h2 {
    font-family: "Raleway", sans-serif;
}

main {
    overflow: hidden !important;
}

/* ========== Logo Positioning ========== */
.payment_logo,
.order_logo {
    position: absolute;
    z-index: 1;
    width: 400px !important;
    border-radius: 5px;
}

/* ========== Card and Background ========== */
.back-fon {
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.40);
    box-shadow: 0px 4px 24px 0px rgba(167, 162, 162, 0.20);
    backdrop-filter: blur(13.7px);
}

#userRegion {
    background: none;
}

#mobileMenu {
    position: absolute;
    top: 15px;
    height: auto;
    width: 60%;
    right: 15px;
    border-radius: 30px 0 30px 30px;
}

.hero__image img {
    z-index: 1 !important;
}

.hero {
    position: relative;
    background: url('../image/imgbackground.jpg') lightgray 50% / cover no-repeat;
    background-repeat: no-repeat;
    background-position: center;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 411px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), white);
    pointer-events: none;
}

.advantages__text h3 {
    border-bottom: 1px solid #A4A4A4;
    padding-bottom: 10px;
}

.businesstype__line {
    padding: 20px;
    border-top: #A4A4A4 1px solid;
    width: 100%;
    text-align: center;
}

.features__wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.features__left {
    display: flex;
    align-items: center;
}

.features__icon {
    margin-right: 15px;
}

.features__text {
    color: var(--style-Color-white, #FFF);
    font-family: Manrope;
}

.pricing__card {
    max-height: fit-content !important;
}

.pricing__card .wrapper {
    height: 93%;
}

.mini-card .features__text,
.pro-card .features__text {
    color: var(--style-black, #222323);
    line-height: 100%;
    letter-spacing: -0.48px;
}

.testing {
    width: 70px !important;
}

.mobile-menu {
    display: none;
}

.list-purple {
    margin-bottom: auto !important;
    padding-bottom: 25px !important;
    gap: 5px !important;

}

.second-icon {
    margin-left: 10%;
}

thead .acordion_text__title {
    font-weight: 800 !important;
}

.trynow__button {
    z-index: 99 !important;
}

#userComment {
    background: transparent;
}

.accordion-title {
    position: relative;
}

.accordion-arrow {
    position: absolute;
    left: 72%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.accordion-arrow svg {
    width: 22px;
    height: 22px;
    stroke: #222323;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.3s ease;
}

.accordion-title.open-title .accordion-arrow {
    transform: translateY(-50%) rotate(180deg);
}

.accordion-title.open-title .accordion-arrow svg {
    stroke: #ffffff;
}

.accordion-title.open-title {
    background-color: #3F7BCD;
    transition: background-color 0.3s ease;
}

.accordion-title.open-title .acordion_text__title,
.accordion-title.open-title {
    color: white;
}


thead tr.thead-active {
    background-color: #3F7BCD;
    /* Or any highlight color */
    color: white;
}

thead tr.thead-active th {
    color: white;
}

.accordion-inner table td {
    padding-left: 8px;
    padding-right: 8px;

  }
  
  /* Or if you want to match the exact thead padding */
  .accordion-inner table td:not(:first-child) {
    padding: 12px 8px; /* py-3 px-2 equivalent */
  }

  .tooltip-container {
    position: relative;
    display: inline-block;
  }
  
  .tooltip-text {
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    max-width: 200px;
    padding: 6px 8px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 4px;
    white-space: normal;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
    pointer-events: none; /* prevent flicker */
  }
  
  .tooltip-container.show-tooltip .tooltip-text {
    visibility: visible;
    opacity: 1;
  }
  

  .tooltip-icon {
    color: #548BDE;
    width: 25px !important;
    height: 25px !important;
    min-width: 25px;
  }

  .check_mark {
    color: #548BDE;
  }

  .accordion-title {
    width: 300%;
    display: inline-table;
    overflow: hidden;
  }

  .form-switch {
    display: inline-block;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  .form-switch i {
    position: relative;
    display: inline-block;
    margin-right: .5rem;
    width: 46px;
    height: 26px;
    background-color: #e6e6e6;
    border-radius: 23px;
    vertical-align: text-bottom;
    transition: all 0.3s linear;
  }
  .form-switch i::before {
    content: "";
    position: absolute;
    left: 0;
    width: 42px;
    height: 22px;
    background-color: #fff;
    border-radius: 11px;
    transform: translate3d(2px, 2px, 0) scale3d(1, 1, 1);
    transition: all 0.25s linear;
  }
  .form-switch i::after {
    content: "";
    position: absolute;
    left: 0;
    width: 22px;
    height: 22px;
    background-color: #fff;
    border-radius: 11px;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.24);
    transform: translate3d(2px, 2px, 0);
    transition: all 0.2s ease-in-out;
  }
  .form-switch:active i::after {
    width: 28px;
    transform: translate3d(2px, 2px, 0);
  }
  .form-switch:active input:checked + i::after { transform: translate3d(16px, 2px, 0); }
  .form-switch input { display: none; }
  .form-switch input:checked + i { background-color: rgb(63 123 205 / var(--tw-text-opacity, 1)); }
  .form-switch input:checked + i::before { transform: translate3d(18px, 2px, 0) scale3d(0, 0, 0); }
  .form-switch input:checked + i::after { transform: translate3d(22px, 2px, 0); }
  

/* ========== Responsive Styles ========== */
@media screen and (max-width: 500px) {
    .border-t td {
        font-size: .875rem !important;
    }

    .trynow__button {
        font-size: 20px !important;
        line-height: 100% !important;
        letter-spacing: -0.8px !important;
        border-radius: 10px !important;
        padding: 10px 15px;
        height: 52px;
        margin-top: 7vh !important;
    }

    .promo__button {
        margin-top: 25px !important;
    }

    .back-fon p {
        font-size: 16px !important;
    }

    .poster-title {
        margin-top: -20px;
    }

    body {
        overflow-x: hidden !important;
    }

    .header__consult {
        padding: 10px 15px;
    }

    header {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .header-description {
        width: 280px !important;
        font-size: 15px !important;
    }

    .header__logo {
        width: 81px;
    }

    .hero {
        height: 105vh;
        background-size: 605px 100% !important;
    }

    .hero__image {
        margin-top: 5rem !important;
        position: relative;
        overflow: hidden;
    }

    .hero__image img:nth-child(1) {
        height: 181px !important;
    }

    .payment_logo {
        position: absolute;
        left: 0;
        top: calc(100% - 11vh);
        /* place 10vh from bottom */
        width: 150px !important;
    }

    .order_logo {
        position: absolute;
        right: 0;
        top: calc(100% - 15vh);
        /* place 10vh from bottom */
        width: 150px !important;
    }

    #userRegion {
        padding: 16px !important;
        -webkit-appearance: initial !important;
    }

    .advantages span {
        display: block !important;
    }

    .advantages__text p {
        color: #222323 !important;
        line-height: 15px !important;
    }

    #mobileMenu {
        padding: 20px;
    }

    .functional-advantages__section {
        height: 100vh;
        justify-content: start !important;
        background-size: cover !important;
        background-position-y: 70px !important;
        padding-top: 80px !important;
    }

    .functional-advantages__section .grid-cols-1 {
        margin-top: 4rem;
    }

    .functional-advantages {
        font-family: Manrope !important;
        font-size: 22px !important;
        letter-spacing: -0.96px !important;
    }

    .functional-advantages__card {
        padding: 15px !important;
        position: absolute;
        width: 43vw;
        color: #222323 !important;
    }

    .functional-advantages__card:nth-child(1) {
        right: 0;
        top: 89px;
    }

    .functional-advantages__card:nth-child(2) {
        top: 200px;
    }

    .functional-advantages__card:nth-child(3) {
        top: 275px;
        right: 0;
    }

    .functional-advantages__card h3 {
        color: var(--style-black, #222323);
        font-family: Manrope;
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: 100%;
        letter-spacing: -0.64px;
    }

    .functional-advantages__card p {
        color: 232323;
        font-family: Manrope;
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: 15px !important;
        letter-spacing: -0.48px;
        padding-top: 30px;
    }

    .posibilities-section {
        padding-top: 5px !important;
    }

    .posibilities-section .grid-cols-2 {
        margin-top: 25px !important;
        grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
    }

    .posibilities-desc {
        color: #222323 !important;
        font-size: 13px !important;
        line-height: 15px !important;
    }

    .posibilities__button-text {
        font-size: 12px !important;
        text-align: left !important;
    }

    .posibilities__button {
        font-size: 12px !important;
        padding: 15px 5px !important;
        width: 144px !important;
    }

    .analitycs__image {
        display: flex !important;
        flex-direction: row !important;
        justify-content: baseline !important;
        align-items: baseline !important;
    }

    .phone__image {
        width: 150px !important;
    }

    .business-card,
    .pro-card,
    .mini-card {
        width: 100% !important;
        overflow: hidden;
    }

    .business-card li,
    .pro-card li,
    .mini-card li {
        justify-content: space-between !important;
        text-align: left !important;
    }

    .contact-form {
        margin: 0 !important;
    }

    .seeall-link {
        margin: 10px !important;
    }

    .card-icons {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    .contact-header {
        color: var(--color-black, #2E2E2E);
        text-align: center;
        font-family: Manrope;
        font-size: 24px;
        font-style: normal;
        font-weight: 600;
        line-height: 140%;
        letter-spacing: -0.96px;
        margin-bottom: 40px !important;
    }

    .contact-info {
        color: var(--style-black, #222323);
        text-align: center;
        font-family: Manrope;
        font-size: 24px !important;
        font-style: normal !important;
        font-weight: 600 !important;
        line-height: 100% !important;
        letter-spacing: -0.96px !important;
    }

    .contact-info__subtitle {
        color: var(--style-black, #222323);
        text-align: center;
        font-family: Manrope !important;
        font-size: 12px !important;
        font-style: normal !important;
        font-weight: 400 !important;
        line-height: 100% !important;
        letter-spacing: -0.48px !important;
    }

    .feature-card__content {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100%;
    }

    .feature-card__content .card__wrapper {
        display: flex !important;
        align-items: center !important;
    }

    .feature-card__icon {
        margin-right: 15px;
        width: 25px;
        height: 25px;
    }

    .feature-card__text {
        font-family: Manrope;
        font-style: normal;
        font-weight: 400;
        line-height: 100%;
        letter-spacing: -0.48px;
    }

    .feature-card__info-icon {
        width: 25px;
        height: 25px;
    }

    .title-allposibilities {
        font-family: Manrope;
        font-size: 21px !important;
    }

    .store_type {
        background-image: url('../image/bg_image2.png');
        background-size: 1000px;
        background-repeat: no-repeat;
        background-position: top;
        background-position-y: 213px;
        padding-top: 5px !important;
    }

    .sectors__subtitle {
        line-height: 100% !important;
        color: #222323 !important;
        margin-top: 10px !important;
    }

    .promo__content .promo__title {
        text-align: center !important;
    }

    .promo__content br {
        display: none;
    }

    .cards_promo {
        margin-top: 55px !important;
    }

    .testing {
        width: 52px !important;
    }

    .promo__feature img {
        width: 40px;
        height: auto !important;
        margin-bottom: 25px !important;
    }

    .promo__feature {
        min-height: 150px !important;
        height: 100% !important;
        justify-content: start !important;
        text-align: center !important;
        display: flex !important;
        align-items: center !important;
        align-self: center !important;

    }

    .promo__feature p {
        text-align: center !important;
        line-height: 20px !important;
    }

    .promo__cta {
        margin-top: 55px;
    }

    .list-purple {
        gap: 5px !important;
    }

    .purple_price {
        color: #fff !important;
    }

    .businesstype__line {
        padding-top: 5px !important;
        padding-bottom: 5px !important;
    }

    .businesstype__line:nth-child(1) {
        padding-top: 8px !important;
    }

    .businesstype__line:nth-child(2) {
        padding-top: 8px !important;
    }

    .acordion_text__title.mini {
        text-align: center !important;
    }

    .accordion-section img {
        width: 20px !important;
        display: inline-flex !important;
    }

    thead th {
        font-weight: 800 !important;
        font-size: 12px !important;
    }

    .contact__wrapper {
        padding: 0 !important;
        margin: 0 !important;
    }

    .contact__content {
        height: 100% !important;
        padding: 15px !important;
    }

    .contact__content h2 {
        padding: 40px 0 !important;
    }

    .contact__usform {
        color: #fff !important;
    }

    .contact__wrapper form {
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
    }

    .contant__notice {
        padding: 20px 0 !important;
    }

    .acordion_text__title {
        font-size: 15px !important;
        letter-spacing: -0.64px !important;
    }

    .accordion-content td {
        padding-top: 5px !important;
        padding-bottom: 5px !important;
    }

    .laptop-display {
        display: none !important;
    }

    .cta__text {
        text-align: center !important;
        line-height: 20px !important;
    }

    .cta__button {
        width: 100% !important;
        color: var(--style-Color-white, #FFF);
        text-align: center;
        font-family: Manrope;
        font-style: normal;
        font-weight: 700;
        line-height: 100%;
        letter-spacing: -0.48px;
        margin-top: 50px !important;
    }

    .features__price,
    small {
        color: var(--color-black, #2E2E2E);
        text-align: center;
        font-family: Manrope;
        font-size: 24px !important;
        font-style: normal;
        font-weight: 600;
        line-height: 140% !important;
        letter-spacing: -0.96px !important;
    }

    .contant__notice {
        color: #222323 !important;
        font-weight: 800 !important;
    }

    .second-icon {
        margin-left: 2% !important;
    }

    .acordion-title_li {
        font-size: 1rem !important;
    }
}

/* Mobile (max-width: 768px) */
@media screen and (min-width: 501px) and (max-width: 768px) {
    .trynow__button {
        font-size: 20px !important;
        line-height: 100% !important;
        letter-spacing: -0.8px !important;
        border-radius: 10px !important;
        padding: 10px 15px;
        height: 52px;
    }

    body {
        overflow-x: hidden !important;
    }

    .header__consult {
        padding: 10px 15px;
    }

    header {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .header-description {
        width: 240px !important;
    }

    .header__logo {
        width: 81px;
    }

    .hero {
        height: 105vh;
        background-size: 605px 100% !important;
    }

    .hero__image {
        margin-top: 7rem !important;
    }

    .hero__image img:nth-child(1) {
        height: 181px !important;
    }

    .payment_logo {
        left: 0;
        top: calc(100vh - 70px);
        width: 150px !important;
    }

    .order_logo {
        right: 0;
        top: 466px;
        width: 150px !important;
    }

    #mobileMenu {
        padding: 20px;
    }

    .functional-advantages__section {
        height: 100vh;
        justify-content: start !important;
        background-size: cover !important;
    }

    .functional-advantages {
        font-family: Manrope !important;
        font-size: 22px !important;
        letter-spacing: -0.96px !important;
    }

    .functional-advantages__card {
        padding: 30px !important;
        position: absolute;
        width: 174px;
    }

    .functional-advantages__card:nth-child(1) {
        right: 0;
        top: 89px;
    }

    .functional-advantages__card:nth-child(2) {
        top: 260px;
    }

    .functional-advantages__card:nth-child(3) {
        top: 345px;
        right: 0;
    }

    .functional-advantages__card h3 {
        color: var(--style-black, #222323);
        font-family: Manrope;
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: 100%;
        letter-spacing: -0.64px;
    }

    .functional-advantages__card p {
        color: var(--style-grey, #A4A4A4);
        font-family: Manrope;
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: 100%;
        letter-spacing: -0.48px;
        padding-top: 30px;
    }

    .posibilities__button-text {
        font-size: 12px !important;
        text-align: left !important;
    }

    .posibilities__button {
        font-size: 12px !important;
        padding: 15px 5px !important;
        width: 144px !important;
    }

    .analitycs__image {
        display: flex !important;
        flex-direction: row !important;
        justify-content: baseline !important;
        align-items: baseline !important;
    }

    .phone__image {
        width: 150px !important;
    }

    .business-card,
    .pro-card,
    .mini-card {
        width: 100% !important;
        overflow: hidden;
    }

    .business-card li,
    .pro-card li,
    .mini-card li {
        justify-content: space-between !important;
        text-align: left !important;
    }

    .contact-form {
        margin: 0 !important;
    }

    .seeall-link {
        margin: 10px !important;
    }

    .card-icons {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    .contact-header {
        color: var(--color-black, #2E2E2E);
        text-align: center;
        font-family: Manrope;
        font-size: 24px;
        font-style: normal;
        font-weight: 600;
        line-height: 140%;
        letter-spacing: -0.96px;
        margin-bottom: 40px !important;
    }

    .contact-info {
        color: var(--style-black, #222323);
        text-align: center;
        font-family: Manrope;
        font-size: 24px !important;
        font-style: normal !important;
        font-weight: 600 !important;
        line-height: 100% !important;
        letter-spacing: -0.96px !important;
    }

    .contact-info__subtitle {
        color: var(--style-black, #222323);
        text-align: center;
        font-family: Manrope !important;
        font-size: 12px !important;
        font-style: normal !important;
        font-weight: 400 !important;
        line-height: 100% !important;
        letter-spacing: -0.48px !important;
    }

    .feature-card__content {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100%;
    }

    .feature-card__content .card__wrapper {
        display: flex !important;
        align-items: center !important;
    }

    .feature-card__icon {
        margin-right: 15px;
        width: 25px;
        height: 25px;
    }

    .feature-card__text {
        font-family: Manrope;
        font-style: normal;
        font-weight: 400;
        line-height: 100%;
        letter-spacing: -0.48px;
    }

    .feature-card__info-icon {
        width: 25px;
        height: 25px;
    }

    .title-allposibilities {
        font-family: Manrope;
        font-size: 21px !important;
    }

    .store_type {
        background-image: url('../image/bg_image2.png');
        background-size: 1000px;
        background-repeat: no-repeat;
        background-position: top;
        background-position-y: 213px;
    }

    .contact__wrapper {
        padding: 0 !important;
        margin: 0 !important;
    }

    .contact__content {
        height: 100% !important;
        padding: 15px !important;
    }

    .contact__content h2 {
        padding: 40px 0 !important;
    }

    .contact__wrapper form {
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
    }

    .contant__notice {
        padding: 20px 0 !important;
    }

    .acordion_text__title {
        font-size: 16px !important;
        letter-spacing: -0.64px !important;
    }

    .laptop-display {
        display: none !important;
    }

    .cta__text {
        text-align: left !important;
    }

    .cta__button {
        width: 173px !important;
        color: var(--style-Color-white, #FFF);
        text-align: center;
        font-family: Manrope;
        font-size: 12px !important;
        font-style: normal;
        font-weight: 700;
        line-height: 100%;
        letter-spacing: -0.48px;
    }

    .features__price,
    small {
        color: var(--color-black, #2E2E2E);
        text-align: center;
        font-family: Manrope;
        font-size: 24px !important;
        font-style: normal;
        font-weight: 600;
        line-height: 140% !important;
        letter-spacing: -0.96px !important;
    }
}

/* Laptop (min-width: 769px) and (max-width: 1024px) */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .phone-display {
        display: none;
    }

    .text-selection {
        max-width: none !important;
    }

    .grid_section {
        display: grid;
        grid-template-columns: repeat(1, 1fr) !important;
        grid-template-rows: repeat(5, 1fr) !important;
        gap: 8px !important;
    }

    .grid_card-1,
    .grid_card-2 {
        grid-row: span 2 / span 2 !important;
    }

    .grid_card-3,
    .grid_card-4 {
        grid-row: span 2 / span 2 !important;
        grid-row-start: 3 !important;
    }

    .cta {
        display: flex !important;
        flex-direction: row !important;
    }

    .cta__text {
        min-width: 234px !important;
        text-align: left !important;
    }

    .sectors {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }

    .promo {
        grid-template-columns: none !important;
        margin: 0 !important;
        max-width: 100% !important;
        padding: 0 !important;
    }

    .promo__image {
        max-width: 305px !important;
        top: 35px !important;
    }

    .promo__feature {
        position: relative;
        width: 100% !important;
        height: 226px !important;
    }

    .promo__features {
        height: 100% !important;
    }

    .promo__title {
        margin-left: 71px !important;
        margin-bottom: 90px !important;
    }

    .promo__cta {
        bottom: 91px !important;
    }

    .section__card {
        align-items: start !important;
    }

    .pricing__grid {
        gap: 11px !important;
    }

    .pricing__card {
        max-width: 100% !important;
    }

    .advantages__text {
        width: 336px !important;
    }

    .pricing__icon {
        width: 100% !important;
    }

    .sectors__header {
        margin: auto !important;
    }

    .sector__title {
        margin-bottom: 90px !important;
    }

    .grid_section {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }

    .functional-advantages__section {
        height: 100vh !important;
        justify-content: start !important;
    }

    .functional-advantages__card {
        position: absolute;
        width: 310px;
        height: 170px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .functional-advantages__card:nth-child(0) {
        top: 0;
        right: 0;
    }

    .functional-advantages__card:nth-child(1) {
        top: 81px;
        right: 32px;
    }

    .functional-advantages__card:nth-child(2) {
        top: 283px;
        left: 32px;
    }

    .functional-advantages__card:nth-child(3) {
        top: 357px;
        right: 0;
    }
}

/* Desktop (min-width: 1440px) */
@media screen and (min-width: 1440px) {
    .phone-display {
        display: none;
    }

    .poster-title {
        color: var(--style-black, #222323) !important;
        line-height: 100% !important;
        letter-spacing: -2.56px !important;
    }

    .header__nav a {
        color: var(--style-black, #222323);
        text-align: center;
        font-family: Manrope;
        font-size: 16px !important;
        font-style: normal;
        font-weight: 400;
        line-height: 100% !important;
        letter-spacing: -0.64px !important;
    }

    .header__consult {
        padding: 13px 27px !important;
    }

    .header-description {
        font-size: 17px !important;
    }

    .trynow__button {
        border-radius: 10px !important;
        padding: 20px 40px !important;
        color: var(--style-Color-white, #FFF);
        text-align: center;
        line-height: 100% !important;
        letter-spacing: -0.8px !important;
    }

    .dashboard__img {
        max-width: 1010px !important;
    }

    .order_logo {
        top: 558px !important;
        right: 68px !important;
    }

    .payment_logo {
        left: 41px !important;
        top: 579px !important;
    }

    .grid_section {
        padding: 0 !important;
    }

    .grid_card {
        width: 310px !important;
    }

    .functional-advantages__section {
        height: 100vh !important;
        justify-content: start !important;
    }

    .functional-advantages__card {
        position: absolute;
        width: 310px;
        height: 170px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .functional-advantages__card:nth-child(0) {
        top: 0;
        right: 0;
    }

    .functional-advantages__card:nth-child(1) {
        top: 81px;
        right: 32px;
    }

    .functional-advantages__card:nth-child(2) {
        top: 283px;
        left: 32px;
    }

    .functional-advantages__card:nth-child(3) {
        top: 357px;
        right: 0;
    }

    .posibilities-section {
        margin-top: 125px;
    }

    .posibilities-section h3 {
        height: 50px !important;
    }

    .header__logo {
        width: 125px;
    }

    .posibilities-desc {
        color: #A4A4A4;
        font-family: Manrope;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 100%;
        letter-spacing: -0.64px;
    }

    .cta.relative {
        justify-content: end !important;
    }

    .cta__text {
        text-align: left !important;
    }

    .cta__button {
        font-size: 16px !important;
    }

    .sectors__title_2 br {
        display: none !important;
    }

    .tablet-display {
        display: none !important;
    }

    .section__card {
        background-image: url(../image/functionalityback.png);
        background-size: 2700px 2700px;
        background-position-x: -1594px;
        background-position-y: -420px;
        background-repeat: no-repeat;
    }

    .pricing__grid {
        gap: 15px !important;
    }

    .pricing__card {
        justify-content: space-between;
        display: flex;
        flex-direction: column;
        width: 100% !important;
    }

    .show_all {
        margin-top: -58px !important;
    }

    .contact__title {
        text-align: center !important;
    }

    select {
        background: transparent;
    }

    .order_logo {
        right: 10% !important;
        top: 65% !important;
    }

    .payment_logo {
        left: 10% !important;
        top: 77% !important;
    }

    .posibilities-desc {
        line-height: 17px !important;
        color: #474949;
    }

    .advantages {
        margin-top: 5rem !important;
    }

    .advantages__text p {
        color: #222323;
    }

    .cta__button {
        margin-top: 100px !important;
    }

    .cta.relative {
        justify-content: center !important;
        margin-top: 1rem !important;
    }

    .cta__text {
        text-align: right !important;
        font-size: 24px !important;
        line-height: 30px !important;
    }

    .promo__cta {
        margin-top: 35px !important;
    }

    .contant__notice2 {
        font-size: 1rem !important;
        color: #222323 !important;
    }

    .accordion-content .flex.items-center {
        font-size: 1.3rem !important;
    }

    .sectors__card {
        min-height: 303px !important;
        height: 100% !important;
        justify-content: space-between !important;
    }

    .sectors__image {
        width: 241px !important;
        height: 241px !important;
    }

    .testing {
        margin-bottom: 42px !important;
    }

    .promo__feature {
        justify-content: start !important;
        min-height: 226px !important;
        height: 100% !important;
    }

    .promo__icon {
        margin-bottom: 50px;
    }

    .promo__feature-text br {
        display: none !important;

    }

    .contactForm {
        gap: 25px;
        display: flex;
        flex-direction: column;
    }

    .third-icon {
        margin-left: 38px;
    }
}

.accordion-inner {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.7s cubic-bezier(0.33, 1, 0.68, 1), opacity 0.5s;
    will-change: max-height, opacity;
}

.accordion-inner.open {
    max-height: 1000px;
    opacity: 1;
}

.accordion-inner table {
    width: 100%;
    table-layout: fixed;
}
