* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.grocery-hero {
    background: var(--bg-light);
    height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    padding: 20px 0;
    overflow: hidden;
    position: relative;
}

.grocery-hero-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 60px;
    align-items: center;
}

/* .grocery-hero-wrapper::after {
    position: absolute;
    content: '';
    height: 500px;
    width: 500px;
    background: var(--primary-color);
    right: -289px;
    bottom: -100px;
    transform: rotate(-135deg);
    border-radius: 24px;
    z-index: -1;

} */

.grocery-top-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #b9d0ff;
    background: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 12px;
    color: var(--text-primary);
    margin-bottom: 32px;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: .3px;
}

.grocery-top-badge a {
    text-decoration: none;
    color: inherit;
}

.highlight {
    color: var(--primary-color) !important;
}

.grocery-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: auto 0;
}

.grocery-content h1 {
    font-family: var(--heading-bold-font-family);
    font-size: clamp(2rem, 4.5vw, 2.8rem);
    line-height: 1.2;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    max-width: 600px;
}

.grocery-content h1 span {
    color: var(--primary-color);
}

.grocery-content p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-primary);
    max-width: 700px;
}

.grocery-hero-buttons {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.grocery-primary-btn {
    background: var(--primary-color);
    color: #fff;
    padding: 14px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 5%;
    font-weight: 600;
    transition: .3s;
}

.grocery-primary-btn:hover {
    transform: translateY(-2px);
}

.grocery-secondary-btn {
    border: 2px solid var(--primary-color);
    color: var(--text-primary);
    padding: 14px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 5%;
    transition: .3s;
}

.grocery-secondary-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

.grocery-dashboard {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 560px;
    margin: 0 auto;
    /* border: 2px solid white;
    background: rgba(255, 255, 255, 0.801);
    backdrop-filter: blur(8px);
    padding: 20px;
    border-radius: 24px; */
    /* box-shadow: 0 25px 60px rgba(0, 0, 0, .08); */
}

.grocery-dashboard img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    scale: 1.2;
}

/* =========================
   Tablet
========================= */

@media (max-width: 1300px) {
    .grocery-content h1 {
        max-width: 550px;
        font-size: clamp(2rem, 4.5vw, 2.6rem);
    }

    .grocery-dashboard-card:last-child {
        display: none;
    }

    .grocery-top-badge {
        margin-bottom: 12px;
    }
}

@media (max-width: 1100px) {
    .grocery-dashboard img {
        scale: 1.1;
    }

    .grocery-dashboard-card:last-child {
        display: flex;
    }

    .grocery-hero {
        height: auto;
        padding: 40px 0;
    }

    .grocery-hero-wrapper {
        grid-template-columns: 1fr;
    }

    .grocery-content {
        text-align: center;
        align-items: center;
    }

    .grocery-hero-buttons {
        justify-content: center;
    }

    .grocery-dashboard {
        margin-top: 20px;
        max-width: 560px;
    }
}

/* =========================
   Mobile
========================= */

@media (max-width: 768px) {

    .grocery-content h1 {
        font-size: clamp(34px, 8vw, 46px);
    }

    .grocery-top-badge {
        flex-wrap: wrap;
        justify-content: center;
        padding: 8px 16px;
    }

    .grocery-hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .grocery-primary-btn,
    .grocery-secondary-btn {
        width: 100%;
        text-align: center;
    }



    .grocery-dashboard-card strong {
        margin-top: 5px;
    }
}













.section-eyebrow {
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: var(--space-12);
    color: var(--primary-color);
}

.section-eyebrow__line {
    width: 28px;
    height: 1.5px;
    background-color: var(--primary-color);
}

.section-eyebrow__text {
    font-size: var(--p-size-12);
    font-weight: var(--font-600);
    color: var(--text-grey);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary-color);
}



.section-heading {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 65px;
}

.section-heading h2 {
    font-family: var(--heading-bold-font-family);
    font-size: clamp(var(--h2-size-28), 5vw, var(--h2-size-40));
    font-weight: var(--font-700);
    color: var(--text-primary);
}

.section-heading p {
    font-family: var(--para-font-family);
    font-size: var(--p-size-18);
    font-weight: var(--font-400);
    color: var(--text-primary);
    line-height: var(--leading-normal);
    margin-top: 2px;
}































.grocery-editorial-section {
    padding: 85px 0;
}

.editorial-content {

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;

}

.editorial-left h3 {

    font-size: clamp(24px, 2.5vw, 38px);

    line-height: 1.2;

    font-weight: 700;
}

.editorial-right p {

    font-size: 16px;
    line-height: 1.75;
    color: var(--text-primary);

}

.editorial-divider {

    height: 1px;
    background: #E8EEF5;
    margin: 55px 0;

}

.editorial-statement {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

/* .editorial-statement{

    max-width:900px;

} */

.editorial-statement p {
    flex: 1;
    font-size: 16px;
    line-height: 1.75;
}

.editorial-statement img {
    flex-shrink: 0;
    max-width: 400px;
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.editorial-highlights {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;

}

.editorial-highlights span {

    padding: 14px 22px;
    border: 2px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(335deg, #0065f2, #ffffff, #ffffff, #0065f2) border-box;
    border-radius: 8px;
    font-size: 12px;
    letter-spacing: 2%;
    font-weight: 600;
    transition: .35s;
}

.editorial-highlights span:hover {

    background: var(--primary-color);

    color: #fff;

    border-color: var(--primary-color);

}

@media(max-width:991px) {

    .editorial-content {

        grid-template-columns: 1fr;
        gap: 35px;

    }

    .editorial-divider {

        margin: 35px 0;

    }


    .editorial-statement p {

        font-size: 22px;

    }

}

@media(max-width:576px) {

    .grocery-editorial-section {

        padding: 60px 0;

    }

    .editorial-left h3 {

        font-size: 30px;

    }

    .editorial-right p {

        font-size: 16px;

    }

    .editorial-statement p {

        font-size: 18px;

    }

    .editorial-highlights {

        gap: 12px;

    }

    .editorial-highlights span {

        width: 100%;
        text-align: center;

    }

}


/* ===============================
   Large Laptop
================================ */

@media (max-width:1200px) {

    .editorial-content {
        gap: 60px;
    }

    .editorial-left h3 {
        font-size: clamp(24px, 4vw, 32px);
    }

    .editorial-statement {
        gap: 40px;
    }

    .editorial-statement img {
        max-width: 360px;
        height: auto;
    }

}


/* ===============================
   Tablet
================================ */

@media (max-width:991px) {

    .grocery-editorial-section {
        padding: 70px 0;
    }

    .editorial-content {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .editorial-left {
        max-width: 650px;
    }

    .editorial-left h3 {
        font-size: 36px;
    }

    .editorial-right p {
        font-size: 17px;
    }

    .editorial-divider {
        margin: 40px 0;
    }

    .editorial-statement {

        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 30px;

    }

    .editorial-statement img {
        margin: auto;
        width: 100%;
        max-width: 420px;
        height: auto;

    }

    .editorial-statement p {
        font-size: 17px;
    }

    .editorial-highlights {
        gap: 14px;
    }

}


/* ===============================
   Mobile
================================ */

@media (max-width:767px) {

    .grocery-editorial-section {
        padding: 60px 0;
    }

    .editorial-left h3 {
        font-size: 30px;
        line-height: 1.3;
    }

    .editorial-right p {

        font-size: 16px;
        line-height: 1.75;

    }

    .editorial-divider {
        margin: 30px 0;
    }

    .editorial-statement {
        gap: 24px;
    }

    .editorial-statement img {

        max-width: 100%;
        border-radius: 12px;

    }

    .editorial-statement p {

        font-size: 16px;
        line-height: 1.75;

    }

    .editorial-highlights {

        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;

    }

    .editorial-highlights span {

        width: 100%;
        padding: 14px 16px;
        font-size: 15px;
        text-align: center;

    }

}


/* ===============================
   Small Mobile
================================ */

@media (max-width:480px) {

    .grocery-editorial-section {
        padding: 50px 0;
    }

    .editorial-left h3 {

        font-size: 26px;

    }

    .editorial-right p {

        font-size: 15px;

    }

    .editorial-statement p {

        font-size: 15px;

    }

    .editorial-highlights {

        grid-template-columns: 1fr;

    }

    .editorial-highlights span {

        padding: 14px;
        font-size: 14px;

    }

}



















.billing-dashboard-section {
    padding: 85px 0;
    background: var(--bg-light);
}

.billing-dashboard {

    background: #fff;
    border: 1px solid #E8EEF5;
    border-radius: 24px;
    overflow: hidden;

}

.dashboard-header {
    background-color: var(--text-primary);
    padding: 40px;
    border-bottom: 1px solid #E8EEF5;

}

.feature-label {
    color: #fff;
    padding: 6px 16px;
    border-radius: 25px;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 5%;
    background-color: rgba(255, 68, 0, 0.1);
    border: 1.5px solid orangered;
}

.dashboard-header h3 {
    color: #fff;
    margin-top: 18px;
    font-size: 34px;

}

.dashboard-grid {

    display: grid;
    grid-template-columns: repeat(4, 1fr);

}

.dashboard-widget {

    padding: 32px;
    border-right: 1px solid #E8EEF5;
    border-bottom: 1px solid #E8EEF5;
    transition: .35s;

}

.dashboard-widget:nth-child(4n) {

    border-right: none;

}

.dashboard-widget:nth-last-child(-n+4) {

    border-bottom: none;

}

.dashboard-widget:hover {

    background: #F8FBFF;

}

.dashboard-widget h4 {

    margin-bottom: 12px;
    font-size: 20px;

}

.dashboard-widget p {

    line-height: 1.75;

}

@media(max-width:991px) {

    .dashboard-grid {

        grid-template-columns: repeat(2, 1fr);

    }

    .dashboard-widget:nth-child(2n) {

        border-right: none;

    }

    .dashboard-widget:nth-last-child(-n+2) {

        border-bottom: none;

    }

}

@media(max-width:576px) {

    .billing-dashboard-section {

        padding: 60px 0;

    }

    .dashboard-header {

        padding: 24px;

    }

    .dashboard-header h3 {

        font-size: 26px;

    }

    .dashboard-grid {

        grid-template-columns: 1fr;

    }

    .dashboard-widget {

        border-right: none !important;

        border-bottom: 1px solid #E8EEF5 !important;

        padding: 24px;

    }

    .dashboard-widget:last-child {

        border-bottom: none !important;

    }

}

















.inventory-showcase-section {
    padding: 85px 0;
}

.inventory-showcase {

    display: grid;
    grid-template-columns: 1fr 40%;
    gap: 60px;
    align-items: center;

}

.inventory-content h3 {
    font-family: var(--heading-font-family);

    margin: 20px 0 18px;

    font-size: clamp(32px, 3vw, 32px);

    line-height: 1.25;

    color: var(--text-primary);

}

.inventory-content p {


    font-size: 16px;

    line-height: 1.75;

    color: var(--text-primary);

}

.tag {
    color: var(--primary-color);
    padding: 6px 12px;
    border: 1px solid var(--primary-color);
    background: #0065f216;
    border-radius: 25px;
    font-size: 13px;
    letter-spacing: 5%;
}

.inventory-tags {

    display: flex;
    flex-wrap: wrap;

    gap: 12px;

    margin-top: 48px;


}

.inventory-tags span {

    padding: 12px 18px;
    border-radius: 8px;
    border: 1.5px solid transparent;
    font-size: 16px;
    font-weight: 500;
    transition: .3s;
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(335deg, #0065f2, #ffffff, #ffffff, #0065f2) border-box;

}

.inventory-tags span:hover {

    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);

}

.inventory-visual {

    position: relative;

}

.inventory-visual::before {

    content: "";

    position: absolute;

    inset: -30px;

    border-radius: 32px;

    background: radial-gradient(circle, rgba(0, 101, 242, .08), transparent 70%);

    z-index: -1;

}

.inventory-visual img {

    width: 100%;

    display: block;

    border-radius: 22px;


}

@media(max-width:991px) {

    .inventory-showcase {

        grid-template-columns: 1fr;

        gap: 40px;

    }

    .inventory-visual {

        order: -1;

        max-width: 650px;

        margin: auto;

    }

}

@media(max-width:576px) {

    .inventory-showcase-section {

        padding: 60px 0;

    }

    .inventory-content h3 {

        font-size: 28px;

    }

    .inventory-content p {

        font-size: 16px;

    }

    .inventory-tags span {

        width: 100%;

        text-align: center;

    }

}












.purchase-glass-section {
    padding: 85px 0;
    background-color: var(--bg-light);
}

.purchase-glass-layout {

    position: relative;

    display: grid;

    grid-template-columns: 1fr 30%;

    gap: 80px;

    align-items: start;
}

.explore-link {

    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    color: #0065f2;

    text-decoration: none;

}

.explore-icon {

    width: 36px;
    height: 36px;

    border-radius: 50%;

    background: #0065f2;

    display: flex;
    align-items: center;
    justify-content: center;

}

.explore-icon img {

    width: 16px;
    height: 16px;

    filter: brightness(0) invert(1);
    /* White */

}



.glass-content h3 {

    margin: 18px 0;

    font-size: 32px;

    line-height: 1.2;

}

.glass-content p {

    line-height: 1.75;
    font-size: 18px;

    margin-bottom: 30px;

}




.purchase-feature-list {

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin: 35px 0 80px;

}

.purchase-feature-item {

    display: flex;
    align-items: flex-start;
    gap: 12px;

}

.purchase-feature-item img {
    display: none;
}

.purchase-feature-item::before {

    content: "";

    width: 20px;
    height: 20px;

    flex-shrink: 0;

    margin-top: 2px;

    background-color: #0065f2;

    -webkit-mask: url("../images/icons/li_check-circle-2.svg") no-repeat center;
    -webkit-mask-size: contain;

    /* mask:url("../images/icons/li_check-circle-2.svg") no-repeat center; */
    mask-size: contain;

}

.purchase-feature-item span {

    font-size: 18px;
    line-height: 1.6;
    color: var(--text-primary);
    font-weight: 500;

}

.purchase-feature-item--full {

    grid-column: span 2;

}

/* ---------- Tablet ---------- */

@media(max-width:991px) {

    .purchase-feature-list {

        gap: 16px 18px;

    }

}

/* ---------- Mobile ---------- */

@media(max-width:576px) {

    .purchase-feature-list {

        grid-template-columns: 1fr;
        gap: 16px;
        margin: 28px 0 32px;

    }

    .purchase-feature-item--full {

        grid-column: auto;

    }

    .purchase-feature-item span {

        font-size: 15px;

    }

}

.glass-workflow {

    /* position: relative; */

    /* display: flex; */

    /* justify-content: center; */

    /* align-items: center; */

    /* overflow: hidden; */
}

.glass-workflow img {
    display: block;
    position: absolute;
    /* top: 15px; */
    bottom: -83px;
    max-width: 32%;
}



.glass-center {

    position: relative;
    width: 240px;
    height: 240px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .72);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, .8);
    box-shadow: 0 25px 70px rgba(0, 0, 0, .08);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;

}

.glass-center img {

    width: 56px;

    margin-bottom: 18px;

}

.glass-center h4 {

    font-size: 26px;

    margin-bottom: 8px;

}

.glass-center p {

    color: #666;

}

.glass-card {

    position: absolute;

    min-width: 190px;

    padding: 18px 24px;

    border-radius: 18px;

    background: rgba(255, 255, 255, .78);

    backdrop-filter: blur(16px);

    border: 1px solid rgba(255, 255, 255, .9);

    box-shadow: 0 20px 45px rgba(0, 0, 0, .06);

    font-weight: 600;

    transition: .35s;

}

.glass-card:hover {

    transform: translateY(-8px);

    border-color: var(--primary-color);

}

.card-top {

    top: 0;

}

.card-left {

    left: 0;

}

.card-right {

    right: 0;

}

.card-bottom {

    bottom: 40px;

}

.card-history {

    right: 40px;

    bottom: 180px;

}



@media(max-width:991px) {

    .purchase-glass-layout {

        grid-template-columns: 1fr;

    }

    .glass-workflow {
        position: relative;
        height: 300px;

        padding: 60px 0;

        display: grid;

        grid-template-columns: 1fr;

        gap: 18px;

    }

    .glass-center,
    .glass-card {

        position: relative;

        top: auto;
        left: auto;
        right: auto;
        bottom: auto;

        width: 100%;

    }



    .glass-workflow img {
        display: none;
    }

    .glass-workflow {
        display: none;
    }

}

@media(max-width:576px) {

    .purchase-glass-section {

        padding: 60px 0;

    }

    .glass-content h3 {

        font-size: 30px;

    }

}














.retail-business-section {
    padding: 85px 0;
    overflow: hidden;
}

/* Fade Edges */

.marquee {
    position: relative;
    overflow: hidden;
    margin-top: 25px;
}

.marquee::before,
.marquee::after {

    content: "";
    position: absolute;
    top: 0;
    width: 220px;
    height: 100%;
    z-index: 5;
    pointer-events: none;

}

.marquee::before {

    left: 0;
    background: linear-gradient(to right,
            var(--bg-light) 0%,
            rgba(248, 250, 253, .98) 20%,
            rgba(248, 250, 253, .90) 40%,
            rgba(248, 250, 253, .65) 65%,
            rgba(248, 250, 253, .30) 85%,
            transparent 100%);

}

.marquee::after {

    right: 0;

    background: linear-gradient(to left,
            var(--bg-light) 0%,
            rgba(248, 250, 253, .98) 20%,
            rgba(248, 250, 253, .90) 40%,
            rgba(248, 250, 253, .65) 65%,
            rgba(248, 250, 253, .30) 85%,
            transparent 100%)
}

.marquee-track {

    display: flex;
    width: max-content;
    gap: 18px;

    animation: scrollLeft 32s linear infinite;

}

.marquee-reverse .marquee-track {

    animation: scrollRight 32s linear infinite;

}

.business-pill {

    font-family: var(--heading-font-family);

    flex-shrink: 0;

    padding: 12px 24px;

    border-radius: 8px;

    background: #fff;

    border: 1px solid #E7ECF3;

    font-size: 15px;

    font-weight: 500;

    letter-spacing: 2%;

    color: var(--text-primary);

    box-shadow: 0 10px 30px rgba(0, 0, 0, .04);

    transition: .35s;

}

.business-pill:hover {

    background: #0065f2;

    color: #fff;

    transform: translateY(-4px);

}

@keyframes scrollLeft {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}

@keyframes scrollRight {

    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }

}

/* Tablet */

@media(max-width:991px) {

    .business-pill {

        padding: 16px 22px;
        font-size: 16px;

    }

}

/* Mobile */

@media(max-width:576px) {

    .retail-business-section {

        padding: 60px 0;

    }

    .business-pill {

        padding: 14px 18px;

        font-size: 12px;

    }

    .marquee::before,
    .marquee::after {

        width: 60px;

    }

}









.grocery-why-section {
    padding: 85px 0;
    background-color: var(--bg-light);
}

.grocery-why-wrapper {

    display: grid;
    grid-template-columns: 1fr 540px;
    gap: 70px;
    align-items: center;

}

/* Left */

.grocery-why-image {

    position: relative;

}

.grocery-why-image img {

    width: 100%;
    display: block;

    border-radius: 24px;


}

/* Right */

.grocery-why-content h3 {
    font-family: var(--heading-font-family);
    margin: 18px 0;
    font-size: 32px;
    letter-spacing: 2%;
    line-height: 1.25;

}

.grocery-why-content>p {

    margin-bottom: 35px;

    line-height: 1.75;

}

.why-benefits {

    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 18px 24px;

    margin-bottom: 40px;

}

.why-benefit {

    display: flex;
    align-items: flex-start;
    gap: 12px;

}

.why-benefit::before {

    content: "";

    width: 20px;
    height: 20px;

    flex-shrink: 0;

    margin-top: 3px;

    background-color: #0065f2;

    -webkit-mask: url("../images/icons/li_check-circle-2.svg") no-repeat center;
    -webkit-mask-size: contain;

    mask: url("../images/icons/li_check-circle-2.svg") no-repeat center;
    mask-size: contain;

}

.why-benefit span {

    line-height: 1.6;
    font-weight: 500;
    color: var(--text-primary);

}

/* Tablet */

@media(max-width:991px) {

    .grocery-why-wrapper {

        grid-template-columns: 1fr;

        gap: 45px;

    }

    .grocery-why-content h3 {

        font-size: 32px;

    }

}

/* Mobile */

@media(max-width:576px) {

    .grocery-why-section {

        padding: 60px 0;

    }

    .grocery-why-content h3 {

        font-size: 22px;

    }

    .why-benefits {

        grid-template-columns: 1fr;

        gap: 16px;

    }

    .why-benefit span {

        font-size: 15px;

    }

}
















/* ── FAQ SECTION ── */
.faq-section {
    padding: var(--space-85) 0;
    /* background-color: var(--bg-light); */
}


.faq-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-24);
    margin-bottom: 65px;
    flex-wrap: wrap;
}

.faq-header__left {
    max-width: 70%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.faq-header__left h2 {
    font-family: var(--heading-bold-font-family);
    font-size: clamp(var(--h2-size-28), 5vw, var(--h2-size-40));
    font-weight: var(--font-700);
    color: var(--text-primary);
    line-height: var(--leading-tight);
}

.faq-header__left p {
    font-family: var(--para-font-family);
    font-size: var(--p-size-18);
    font-weight: var(--font-400);
    color: var(--text-primary);
    line-height: var(--leading-normal);
    margin-top: 2px;
}

.collapse-all-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-8);
    cursor: pointer;
    color: var(--primary-color);
    font-family: var(--para-font-family);
    font-size: var(--p-size-14);
    font-weight: var(--font-600);
    padding: 8px 14px;
    border-radius: var(--radius-9999);
    border: 1.5px solid var(--color-border);
    background: var(--bg-main);
    user-select: none;
    white-space: nowrap;
    transition: background 0.2s;
    flex-shrink: 0;
    margin-top: 6px;
}

.collapse-all-btn:hover {
    background: #eaf0ff;
}

.collapse-all-btn .btn-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1.5px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 1;
    font-weight: var(--font-700);
}

/* ── FAQ LIST ── */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-16);
}

/* ── EACH FAQ ITEM ── */
.faq-item input[type="checkbox"] {
    display: none;
}

.faq-item {
    background: var(--bg-main);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-12);
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 101, 242, 0.08);
}

.faq-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-24);
    padding: var(--space-20) var(--space-24);
    cursor: pointer;
    user-select: none;
}

.faq-question {
    font-family: var(--para-font-family);
    font-size: clamp(var(--p-size-18), 2.5vw, 22px);
    font-weight: var(--font-500);
    color: var(--text-primary);
    line-height: var(--leading-tight);
    letter-spacing: -0.38px;
}

.faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.faq-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--text-grey);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.2s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 var(--space-24);
}

.faq-answer p {
    font-size: var(--p-size-16);
    color: var(--text-primary);
    line-height: var(--leading-relaxed);
    padding-bottom: var(--space-20);
    max-width: 1000px;
}

.faq-item input[type="checkbox"]:checked~.faq-label .faq-icon {
    transform: rotate(180deg);
}

.faq-item input[type="checkbox"]:checked~.faq-label .faq-icon svg {
    stroke: var(--primary-color);
}

.faq-item input[type="checkbox"]:checked~.faq-answer {
    max-height: 300px;
    padding-top: 0;
}

#faq1:checked~.faq-label .faq-icon {
    transform: rotate(180deg);
}

#faq1:checked~.faq-answer {
    max-height: 300px;
}

@media (max-width: 1023px) {}

@media (max-width: 767px) {
    .faq-section {
        padding: var(--space-48) var(--space-16);
    }


    .faq-label {
        padding: var(--space-16);
        gap: var(--space-12);
    }

    .faq-answer {
        padding: 0 var(--space-16);
    }

    .faq-item input[type="checkbox"]:checked~.faq-answer {
        padding-top: 0;
    }

    .faq-header {
        flex-direction: column;
        align-items: baseline;
    }

    .faq-header__left {
        max-width: 100%;
    }
}