/* banner-section */
.banner-section {
    padding: 98px 0 30px 0;
    height: 100vh;
}

.banner-container {
    height: 100%;
}

.banner-content {
    width: 100%;
    background-color: #1d2d5e;
    border-radius: 20px;
    display: flex;
    align-items: center;
    padding: 60px;
    height: 100%;
    gap: 20px;
}

.banner-left {
    width: 50%;
}

.banner-left h1 {
    color: #fff;
    font-size: 43px;
    text-transform: uppercase;
    font-weight: 600;
}

.banner-left p {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    margin-top: 30px;
    margin-bottom: 40px;
    font-family: var(--family-font-secondary);
}

.banner-right {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-right img {
    width: 100%;
    height: auto;
    object-fit: cover;
    /* max-width: 80%; */
}

.banner-left .primary-btn {
    background: #3a4f7a;
    color: #ffffff;
    border: 2px solid #3a4f7a;
    box-shadow: 0 4px 15px rgba(58, 79, 122, 0.4),
        0 2px 8px rgba(58, 79, 122, 0.3);
    padding: 10px 30px;
    font-size: 14px;
}

.banner-left .primary-btn:hover {
    background: #4a5f8a;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(58, 79, 122, 0.5),
        0 4px 12px rgba(58, 79, 122, 0.4);
    border-color: #4a5f8a;
}

.banner-left .primary-btn::before {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
}

.banner-left .primary-btn:hover::before {
    width: 300px;
    height: 300px;
}



/* star-project-section */
.star-section {
    padding: 80px 0;
}

.star-title {
    font-size: 50px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 10px;
    text-align: center;
    position: relative;
}

.star-content {
    display: flex;
    align-items: stretch;
    gap: 25px;
    /* flex-wrap: wrap; */
}

.star-item {
    display: flex;
    flex-direction: column;
    /* background-color: var(--section-bg); */
    border-radius: 20px;
    box-shadow: 0 0px 6px rgba(0, 0, 0, 0.1);
    flex: 1;
    overflow: hidden;
}

.star-img {
    width: 100%;
    height: 230px;
    overflow: hidden;
}

.star-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.star-item:hover img {
    transform: scale(1.05);
}

.star-txt {
    padding: 25px;
    display: flex;
    flex-direction: column;
}

.star-dec {
    flex: 1;
    height: 100%;
}

.star-logo {
    /* width: 50%; */
    margin-bottom: 15px;
}

.star-logo img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.star-logo h5 {
    font-size: 23px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.5;
}

.star-dec p {
    font-size: 18px;
    font-family: var(--family-font-secondary);
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.5;
    overflow-wrap: anywhere;
    word-break: break-word;
}




/* price-section */
.price-section {
    position: relative;
    padding: 110px 0 120px;
    background: var(--section-bg);
}

.price-container {
    position: relative;
    z-index: 2;
}

.price-headline {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 30px;
    justify-content: space-between;
    margin-bottom: 70px;
}

.price-tabs {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 14px 22px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(22, 39, 88, 0.08);
    box-shadow: 0 2px 6px rgba(19, 33, 84, 0.06);
}

.price-tab {
    position: relative;
    border: none;
    background: transparent;
    color: rgba(21, 38, 82, 0.3);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: color 0.3s ease;
    cursor: pointer;
    padding: 0;
}

.price-tab::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 200, 96, 0) 0%, rgba(32, 52, 101, 0.8) 50%, rgba(255, 200, 96, 0) 100%);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.price-tab.active,
.price-tab:hover {
    color: var(--primary-color);
}

.price-tab.active::after {
    transform: scaleX(1);
}

.price-intro {
    flex: 1;
    min-width: 260px;
    max-width: 40%;
}

.price-intro h2 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--primary-color);
    text-transform: uppercase;
}

.price-intro p {
    font-size: 17px;
    font-family: var(--family-font-secondary);
    color: #666;
    line-height: 1.6;
}

.price-slider {
    position: relative;
    width: 100%;
}

.price-grid {
    display: grid;
    /* grid-template-columns: repeat(3, minmax(0, 1fr)); */
    gap: 30px;
    width: 90%;
    position: relative;
}

.price-grid.first-change {
    width: 90%;
}

.price-grid.second-change {
    width: 90%;
    margin: 0 auto;
}

.price-grid.third-change {
    width: 90%;
    margin-left: auto;
}

.price-swiper {
    width: 100%;
}

.price-swiper:not(.swiper-initialized) .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.price-swiper .swiper-slide {
    height: auto;
}

.price-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #1d2d5e 0%, #2d4a85 100%);
    box-shadow: 0 12px 24px rgba(27, 41, 86, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
}

.price-arrow svg {
    width: 20px;
    height: 20px;
    fill: #ffffff;
}

.price-arrow svg path {
    fill: #ffffff;
}

.price-arrow--prev svg {
    transform: rotate(180deg);
}

.price-arrow:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 16px 32px rgba(27, 41, 86, 0.3);
}

.price-arrow:active {
    transform: translateY(-50%) scale(0.97);
}

.price-arrow--prev {
    left: 0;
}

.price-arrow--next {
    right: 0;
}

.price-arrow.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.price-grid.slide-out-left {
    animation: priceSlideOutLeft 0.35s forwards;
}

.price-grid.slide-in-right {
    animation: priceSlideInRight 0.35s forwards;
}

.price-grid.slide-out-right {
    animation: priceSlideOutRight 0.35s forwards;
}

.price-grid.slide-in-left {
    animation: priceSlideInLeft 0.35s forwards;
}

@keyframes priceSlideOutLeft {
    to {
        transform: translateX(-60px);
        opacity: 0;
    }
}

@keyframes priceSlideInRight {
    from {
        transform: translateX(60px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes priceSlideOutRight {
    to {
        transform: translateX(60px);
        opacity: 0;
    }
}

@keyframes priceSlideInLeft {
    from {
        transform: translateX(-60px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.price-card {
    flex: 1 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 40px 36px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(22, 39, 88, 0.06);
    box-shadow: 0 2px 6px rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.price-card::before {
    content: "";
    position: absolute;
    inset: 0;
    height: 5px;
    background: linear-gradient(90deg, rgba(29, 45, 94, 0.95) 0%, rgba(255, 230, 176, 0) 100%);
    display: none;
}

.price-card:hover {
    transform: translateY(-5px);
}

.price-card-header {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: space-between;
    gap: 36px;
    margin-bottom: 40px;
}

.price-card h4 {
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    color: #1a1a1a;
    line-height: 1.4;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.price-card-value .amount {
    font-size: 45px;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1;
    text-transform: uppercase;
}

.price-card-value .amount.amount--text {
    font-size: 28px;
}

.price-card-value .suffix {
    display: inline-block;
    margin-left: 6px;
    font-size: 18px;
    font-weight: 500;
    color: rgba(62, 73, 106, 0.6);
}

.price-card-value .suffix:empty {
    display: none;
}

.price-card-list {
    margin: 0 0 45px;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    font-family: var(--family-font-secondary);
    flex: 1;
}

.price-card-list li {
    position: relative;
    padding-left: 20px;
    font-size: 17px;
    color: #1a1a1a;
    line-height: 1.6;
}

.price-card-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ddd;
}

.price-card .primary-btn {
    padding: 10px 15px;
    border-radius: 10px;
}

@media (max-width: 1024px) {
    .price-intro h2 {
        font-size: 30px;
    }

    .price-swiper:not(.swiper-initialized) .swiper-wrapper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
    .price-section {
        padding: 80px 0 90px;
    }

    .price-headline {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .price-tabs {
        width: 100%;
        justify-content: space-between;
    }

    .price-tab {
        font-size: 14px;
    }

    .price-slider {
        padding: 0 32px;
    }

    .price-grid {
        width: 100%;
    }

    .price-swiper {
        padding-bottom: 32px;
    }

    .price-swiper:not(.swiper-initialized) .swiper-wrapper {
        grid-template-columns: 1fr;
    }

    .price-pagination {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 6px;
        margin-top: 12px;
    }

    .price-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        background: #c8cddf;
        opacity: 1;
    }

    .price-pagination .swiper-pagination-bullet-active {
        background: var(--primary-color);
        width: 20px;
        border-radius: 999px;
    }
}

@media (max-width: 520px) {
    .price-tabs {
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
        gap: 18px;
    }

    .price-tab {
        text-align: left;
        font-size: 15px;
    }

    .price-card {
        padding: 36px 28px;
    }

    .price-card-value .amount {
        font-size: 46px;
    }

    .price-slider {
        padding: 0 24px;
    }

    .price-arrow {
        width: 48px;
        height: 48px;
        box-shadow: 0 10px 20px rgba(27, 41, 86, 0.25);
    }
}



/* contact-section */
.contact-section {
    padding: 80px 0;
    background-color: var(--section-bg);
}

.contact-content {
    width: 100%;
    display: flex;
    border-radius: 20px;
    /* box-shadow: 0 0px 4px rgba(0, 0, 0, 0.1); */
    padding: 50px;
    gap: 30px;
    background-color: #fff;
}

.contact-left,
.contact-right {
    width: 50%;
}

.contact-left {
    display: flex;
    flex-direction: column;
}

.contact-left span {
    font-size: 20px;
    text-transform: uppercase;
    color: var(--primary-color);
    opacity: 0.8;
    font-weight: 500;
}

.contact-left h1 {
    color: var(--primary-color);
    font-size: 32px;
    text-transform: uppercase;
    margin: 30px 0 50px 0;
}

.contact-left p {
    font-size: 17px;
    font-family: var(--family-font-secondary);
    color: #666;
    line-height: 1.6;
    width: 80%;
}

.contact-response {
    margin-top: auto;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    flex-direction: column;

}

.contact-response-avatars {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding-right: 12px;
}

.contact-response-avatars img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 6px 16px rgba(26, 39, 88, 0.18);
    background: #fff;
}

.contact-response-avatars img:not(:first-child) {
    margin-left: -14px;
}

.contact-response-status {
    position: absolute;
    right: 0px;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--primary-color);
    border: 3px solid #fff;
    box-shadow: 0 4px 10px rgba(39, 194, 108, 0.35);
}

.contact-response-text {
    font-size: 14px;
    color: #1a1a1a;
    opacity: 0.7;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--family-font-secondary);
}

.contact-response-text span svg {
    width: 15px;
    height: 15px;
    transform: rotate(180deg);
}

.contact-form {
    width: 100%;
    background: #f9f9f9;
    border-radius: 18px;
    padding: 36px 40px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.contact-form-body .layui-form-item {
    margin-bottom: 18px;
}

.contact-form-body .layui-input-block {
    margin-left: 0;
}

.contact-form-body .layui-input,
.contact-form-body .layui-textarea {
    border-radius: 10px;
    border: 1px solid rgba(29, 45, 94, 0.08);
    background: #fbfbfd;
    padding: 14px 18px;
    font-size: 16px;
    font-family: var(--family-font-secondary);
    color: #1a1a1a;
    box-shadow: none;
    height: 50px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form-body .layui-input:focus,
.contact-form-body .layui-input:hover,
.contact-form-body .layui-textarea:focus,
.contact-form-body .layui-textarea:hover {
    border-color: rgba(29, 45, 94, 0.4);
    box-shadow: 0 0 0 3px rgba(29, 45, 94, 0.08);
}

.contact-form-body .layui-textarea {
    min-height: 160px;
    resize: vertical;
    line-height: 1.6;
}

.contact-submit-item {
    margin-top: 28px;
}

.contact-submit-btn {
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    background: var(--primary-color);
    border: none;
    box-shadow: 0 12px 24px rgba(29, 45, 94, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-submit-btn:hover {
    box-shadow: 0 16px 30px rgba(26, 39, 88, 0.28);
    transform: translateY(-1px);
}

.contact-submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 10px 20px rgba(26, 39, 88, 0.2);
}

.contact-form-body .layui-form-checked[lay-skin=primary] i {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    color: #fff;
}

.contact-form-body .layui-btn+.layui-btn {
    margin-left: 0;
}

.contact-form-body .layui-form-select .layui-input {
    padding-right: 40px;
}

.contact-form-body .layui-form-select .layui-edge {
    right: 18px;
}

@media (max-width: 992px) {
    .contact-content {
        flex-direction: column;
    }

    .contact-left,
    .contact-right {
        width: 100%;
    }

    .contact-form {
        padding: 28px 24px;
    }

    .contact-left p {
        width: 100%;
    }

    .contact-response {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .contact-response-avatars {
        padding-right: 0;
    }

    .contact-response-text {
        font-size: 15px;
    }
}

@media (max-width: 560px) {

    .contact-form-body .layui-input,
    .contact-form-body .layui-textarea {
        font-size: 15px;
    }

    .contact-submit-btn {
        font-size: 16px;
    }
}




.industries-section {
    background-color: #fff;
}




/* content reveal animation */
[data-reveal] {
    opacity: 0;
    transform: translateY(42px);
    transition: opacity 0.9s cubic-bezier(0.19, 1, 0.22, 1), transform 0.9s cubic-bezier(0.19, 1, 0.22, 1);
    will-change: opacity, transform;
}

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

[data-reveal-item] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    transition-delay: var(--reveal-delay, 0s);
    will-change: opacity, transform;
}

[data-reveal].is-visible [data-reveal-item] {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {

    [data-reveal],
    [data-reveal-item] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}


.contact-form-body .layui-form-selected dl {
    top: 55px;
    border-radius: 10px;
    font-family: var(--family-font-secondary);
}
.contact-form-body .layui-form-selectup dl{
    top: auto;
    bottom: 60px;
}

.layui-form-select dl dd.layui-this {
    color: var(--primary-color);
    font-weight: 600;
}



/* faq-section */
.faq-section {
    padding: 100px 0 60px 0;
}

.faq-title {
    font-size: 50px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 40px;
}

.faq-title h2 {
    font-size: 50px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 40px;
}

.faq-content {
    display: flex;
    gap: 40px;
    background-color: #fff;
    box-shadow: 0 0px 4px rgba(29, 45, 94, 0.1);
    padding: 30px;
    border-radius: 20px;
}

.faq-left {
    width: 40%;
}

.faq-right {
    width: 60%;
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 20px;
}

.faq-left span {
    text-transform: uppercase;
    font-size: 16px;
    color: #666;
}

.faq-left p {
    font-size: 18px;
    font-family: var(--family-font-secondary);
}


.faq-item-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 0;
    border-bottom: 1px solid #e0e0e0;
    cursor: pointer;
    user-select: none;
    gap: 15px;
}

.faq-item-title h3 {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500;
    color: #1a1a1a;
    flex: 1;
}

.faq-item-title span {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    background-color: rgba(26, 26, 26, 0.1);
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 500;
    font-family: var(--family-font-secondary);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: rotate(0deg);
}

.faq-item-title span svg {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: rotate(0deg);
}

.faq-item-title span.active {
    background-color: var(--primary-color);
    color: #fff;
}

.faq-item-title span.active svg {
    transform: rotate(180deg);
}

.faq-item-content {
    max-height: 0;
    overflow: hidden;
    padding: 0;
    opacity: 0;
    transform: translateY(-8px);
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s,
        transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s,
        padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item-content.active {
    max-height: 1500px;
    padding: 15px 0 10px 0;
    opacity: 1;
    transform: translateY(0);
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s,
        transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s,
        padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item-content p {
    color: #1a1a1a;
    font-size: 16px;
    font-family: var(--family-font-secondary);
    font-weight: 400;
    line-height: 1.5;
    overflow-wrap: anywhere;
    word-break: break-word;
    opacity: 0.9;
}

.faq-item-content ul {
    margin-bottom: 10px;
    padding-left: 5px;
}

.faq-item-content ul li {
    color: #1a1a1a;
    font-size: 15px;
    font-family: var(--family-font-secondary);
    font-weight: 400;
    line-height: 1.5;
    overflow-wrap: anywhere;
    word-break: break-word;
    opacity: 0.9;
    margin-bottom: 5px;
    position: relative;
    padding-left: 15px;
}

.faq-item-content ul li span {
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
}

.faq-item-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 1px;
    background-color: #1a1a1a;
    border-radius: 50%;
}




/* reset-section */
.reset-section {
    /* background-color: var(--section-bg); */
    padding: 60px 0 100px 0;
}

.reset-container>p {
    font-size: 20px;
    font-family: var(--family-font-secondary);
    font-weight: 400;
    line-height: 1.5;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-align: center;
    margin-bottom: 40px;
}

.reset-content {
    gap: 40px;

    display: grid;
    grid-template-columns: 1.2fr 1fr;
    width: 100%;
}

.reset-left {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 100%;
}

.reset-left .reset-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reset-left .reset-img.active {
    opacity: 1;
    transform: translateY(0);
    z-index: 1;
}

.reset-left .reset-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    /* object-fit: contain; */
}

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

.reset-item {
    border-radius: 15px;
    background-color: #fff;
    padding: 20px;
    border: 1px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 0px 6px rgba(29, 45, 94, 0.1);
}

.reset-item.active {
    border: 1px solid var(--primary-color);
}

.reset-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.reset-title h5 {
    font-size: 18px;
    color: #1a1a1a;
    text-transform: uppercase;
    font-weight: 600;
}

.reset-title img {
    width: 20%;
    object-fit: cover;
}

.reset-dec {
    margin-top: 15px;
}

.reset-dec p {
    font-size: 14px;
    color: #1a1a1a;
    font-family: var(--family-font-secondary);
    font-weight: 400;
    line-height: 1.5;
    overflow-wrap: anywhere;
    word-break: break-word;
    opacity: 0.9;
}

.reset-dec img {
    display: none;
}

.mobile-accordion-icon {
    display: none;
}

.reset-dec .btn-content{
    display: none;
}

.reset-dec .btn-content .primary-btn {
    padding: 8px 10px;
    width: 100%;
    font-size: 13px;
    border-radius: 8px;
}


@media (min-width: 993px) and (max-width: 1200px){
    .price-intro p{
        font-size: 15px;
    }

    .price-arrow {
        display: none;
    }

    .price-tab {
        text-align: center;
    }

    .price-grid.first-change,
    .price-grid.second-change,
    .price-grid.third-change {
        width: 100%;
    }

    .price-grid {
        width: 100%;
        gap: 20px;
        grid-template-columns: 1fr !important;
    }

    .price-swiper:not(.swiper-initialized) .swiper-wrapper{
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
    }

    .price-headline{
        margin-bottom: 30px;
    }

    .price-card-value .amount{
        font-size: 27px;
    }
}


@media screen and (max-width: 992px) {
    .reset-dec .btn-content{
        margin-top: 10px;
        display: block;
    }

    /* .contact-section */
    .contact-section {
        padding: 30px 0 !important;
    }

    .contact-content {
        padding: 20px 15px;
    }

    .contact-left span {
        font-size: 18px;
    }

    .contact-left h1 {
        font-size: 30px !important;
        margin: 10px 0 20px 0;
    }

    .contact-left p {
        font-size: 15px !important;
    }

    .contact-response {
        margin-top: 20px;
    }

    .contact-form {
        padding: 20px;
    }

    .contact-response-avatars img {
        width: 40px;
        height: 40px;
    }

    .contact-form-body .layui-input,
    .contact-form-body .layui-textarea {
        padding: 10px;
        font-size: 14px;
        border-radius: 5px;
        height: 45px;
    }

    .contact-submit-btn {
        height: 45px;
        font-size: 14px;
    }


    .reset-section {
        padding: 0 0 20px 0;
    }

    .star-title {
        font-size: 36px;
        margin-bottom: 0px;
    }

    .reset-container>p {
        margin-bottom: 20px;
        font-size: 15px;
    }

    .reset-content {
        display: block;
    }

    .reset-left {
        display: none;
    }

    .reset-right {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .reset-title {
        flex-wrap: wrap;
        align-items: center;
        padding-right: 20px;
        row-gap: 5px;
    }

    .reset-title h5 {
        font-size: 18px;
    }

    .reset-title img {
        width: 30%;
    }

    .reset-item {
        padding: 15px;
        position: relative;
        border-radius: 10px;
    }

    .mobile-accordion-icon {
        width: 12px;
        height: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        color: var(--primary-color);
        transition: all 0.3s ease;
        position: absolute;
        right: 15px;
    }

    .mobile-accordion-icon svg {
        width: 100%;
        height: 100%;
    }

    .reset-item.active .mobile-accordion-icon {
        transform: rotate(180deg);
    }

    .reset-dec {
        display: block;
        margin-top: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.35s ease, opacity 0.25s ease, margin-top 0.25s ease;
    }

    .reset-dec img {
        display: block;
        width: 100%;
        border-radius: 5px;
        margin-bottom: 10px;
    }

    .reset-item.active .reset-dec {
        margin-top: 12px;
        max-height: 700px;
        opacity: 1;
    }

    .core-section {
        padding: 40px 0;
    }

    .core-title {
        font-size: 36px;
        margin-bottom: 0px;
    }

    .core-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .price-section {
        padding: 30px 0;
    }

    .price-intro h2 {
        font-size: 30px;
        margin-bottom: 5px;
    }

    .price-intro p {
        font-size: 15px;
    }

    .price-intro {
        width: 100%;
        min-width: 100%;
    }

    .price-headline {
        margin-bottom: 20px;
    }

    .price-card {
        padding: 20px;
        flex: none;
    }

    .price-slider {
        padding: 0;
    }

    .free-section {
        padding: 40px 0;
    }

    .free-title {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .free-content {
        grid-template-columns: 1fr;
    }


    /* .faq-section */
    .faq-section {
        padding: 30px 0;
    }

    .faq-content {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .faq-left,
    .faq-right {
        width: 100%;
    }

    .faq-title {
        font-size: 36px;
        margin-bottom: 10px;
    }

    .faq-title h2 {
        font-size: 36px;
        margin-bottom: 10px;
    }

    .faq-left p {
        font-size: 15px;
    }

    .faq-right {
        padding: 20px;
    }

    .faq-item-title h3 {
        font-size: 15px;
    }

    .faq-item-title span {
        width: 20px;
        height: 20px;
    }

    [data-reveal],
    [data-reveal-item] {
        opacity: 1 !important;
        transform: none;
    }

    .price-card h3 {
        font-size: 22px;
    }

    .price-card-header {
        margin-bottom: 20px;
        padding-top: 10px;
    }

    .price-tabs {
        border-radius: 10px;
    }

    .price-arrow {
        display: none;
    }

    .price-tab {
        text-align: center;
    }

    .price-grid.first-change,
    .price-grid.second-change,
    .price-grid.third-change {
        width: 100%;
    }

    .price-grid {
        width: 100%;
        gap: 20px;
    }

    .price-card h4 {
        font-size: 22px;
    }

    .price-card-value .amount {
        font-size: 36px;
    }

    .banner-section {
        padding: 80px 0 60px 0;
        height: calc(100vh - 50px);
    }

    .right-list {
        gap: 20px;
    }

    .contact-form-body .layui-form-selected dl {
        top: 50px;
    }
    .contact-form-body .layui-form-selectup dl{
        bottom: 50px;
        top: auto;
    }
}

@media (min-width: 768px) and (max-width: 992px) {
    .banner-section {
        padding: 80px 0 60px 0;
        height: auto;
    }
}