* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.small-business-hero {
    background: var(--bg-light);
    height: calc(100vh - 79px);
    display: flex;
    align-items: center;
    padding: 20px 0;
    overflow: hidden;
    position: relative;
}

.small-business-hero-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 60px;
    align-items: center;
}



.small-business-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;
}

.small-business-top-badge a {
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 5%;
    color: inherit;
}

.highlight {
    color: var(--primary-color) !important;
    white-space: nowrap;

}

.highlight-red {
    color: #e40000;
}

.small-business-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: auto 0;
}

.small-business-content h1 {
    position: relative;
    font-family: var(--heading-bold-font-family);
    font-size: clamp(2rem, 4.5vw, 4.5rem);
    line-height: 1.1;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    max-width: 90%;
}



.small-business-content h1 span {
    position: relative;
    color: var(--primary-color);
}

.small-business-content h1 span::before {
    content: "";
    position: absolute;
    bottom: 0%;
    left: 16px;
    width: 95%;
    height: 10px;
    background: var(--primary-color);
    clip-path: polygon(0% 35%, 100% 0%, 100% 100%, 0% 65%);
    border-radius: 50px;
}

.small-business-content p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-primary);
    max-width: 90%;
    letter-spacing: 2%;
}

.small-business-hero-buttons {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.small-business-primary-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: var(--primary-color);
    color: #fff;
    padding: 14px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 5%;
    font-weight: 500;
    transition: .3s;
}

.small-business-primary-btn:hover {
    transform: translateY(-2px);
}

.small-business-secondary-btn {
    border: 2px solid var(--primary-color);
    color: var(--text-primary);
    padding: 14px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 5%;
    transition: .3s;
}

.small-business-secondary-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

.small-business-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); */
}

.small-business-dashboard img {
    width: 100%;
    height: auto;
    margin-top: -320px;
    border-radius: 0px 0px 0px 30%;
    scale: 1;
}

/* =========================
   Tablet
========================= */

@media (max-width: 1300px) {
    .small-business-content h1 {
        max-width: 550px;
        font-size: clamp(2rem, 4.5vw, 4rem);
    }

    .small-business-dashboard-card:last-child {
        display: none;
    }

    .small-business-top-badge {
        margin-bottom: 12px;
    }


}

@media (max-width: 1100px) {


    .small-business-dashboard-card:last-child {
        display: flex;
    }

    .small-business-hero {
        height: auto;
        padding: 40px 0;
    }

    .small-business-hero-wrapper {
        grid-template-columns: 1fr;
    }

    .small-business-content {
        text-align: center;
        align-items: center;
    }

    .small-business-hero-buttons {
        justify-content: center;
    }

    .small-business-dashboard {
        margin-top: 20px;
        max-width: 600px;
        overflow: hidden;
        border-radius: 16px;
        border-bottom-left-radius: 16px !important;

    }

    .small-business-content h1 span::before {
        bottom: -4%;
    }
}

/* =========================
   Mobile
========================= */

@media (max-width: 768px) {
    .small-business-dashboard {
        display: none;
    }

    .small-business-content h1 {
        font-size: clamp(34px, 8vw, 46px);
    }

    .small-business-top-badge {
        flex-wrap: wrap;
        justify-content: center;
        padding: 8px 16px;
    }

    .small-business-hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .small-business-primary-btn,
    .small-business-secondary-btn {
        width: 100%;
        text-align: center;
    }




    .small-business-dashboard-card strong {
        margin-top: 5px;
    }


}

@media(max-width: 500px) {
    .small-business-content h1 span::before {
        bottom: -10%;
    }
}













.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;
}

















.better-records-section {
    padding: 85px 0;
}

.better-records-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/*==================================
            CARD
==================================*/

.record-card {
    position: relative;
    display: flex;
    border-top: none;
    flex-direction: column;
    padding: 34px 30px;
    background: #fff;
    border: 1px solid #E7EDF6;
    border-radius: 16px;
    /* overflow:hidden; */
    transition: .35s ease;
}

.record-card:last-child {
    background: linear-gradient(45deg, #d8d8d8, transparent, #d8d8d8);
}

.record-card:last-child>.record-number {
    color: #bebebe;
}


.record-card:hover {
    transform: translateY(-10px);
    border-color: #D5E5FF;
    box-shadow: 0 25px 50px rgba(0, 101, 242, .10);
}

.record-card:hover::before {
    opacity: 1;
}

.record-card:hover::after {
    transform: scaleX(1);
}

/*==================================
            NUMBER
==================================*/

.record-number {
    border: 1px solid #fff;
    background: #ffffff3b;
    position: absolute;
    backdrop-filter: blur(2px);
    border-radius: 8px;
    padding: 8px;
    font-family: var(--heading-font-family);
    font-size: 56px;
    line-height: 1;
    top: -38px;
    left: 12px;
    font-weight: 900;
    color: #e3eeff;
    margin-bottom: 35px;
    transition: .35s;
}

.record-card:hover .record-number {
    color: var(--primary-color);
}

/*==================================
            CONTENT
==================================*/

.record-card h3 {
    margin-bottom: 14px;
    margin-top: 20px;
    font-family: var(--heading-font-family);
    font-size: 24px;
    line-height: 1.3;
    color: var(--text-primary);
}

.record-card p {
    margin: 0;
    color: var(--text-primary);
    line-height: 1.75;
    font-size: 18px;
}

/*==================================
            BUTTON
==================================*/

/* .record-arrow{
    width:48px;
    height:48px;
    margin-top:auto;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#F3F8FF;
    color:var(--primary-color);
    font-size:20px;
    transition:.35s;
} */

.record-card:hover .record-arrow {
    background: var(--primary-color);
    color: #fff;
    transform: rotate(-45deg);
}

/*==================================
            TABLET
==================================*/

@media(max-width:991px) {

    .better-records-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .record-card {
        min-height: 280px;
    }

}

/*==================================
            MOBILE
==================================*/

@media(max-width:767px) {

    .better-records-section {
        padding: 65px 0;
    }

    .better-records-grid {
        margin-top: 40px;
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .record-card {
        min-height: auto;
        padding: 24px;
        border-radius: 20px;
    }

    .record-number {
        font-size: 46px;
        margin-bottom: 22px;
    }

    .record-card h3 {
        font-size: 20px;
    }

    .record-card p {
        font-size: 16px;
    }

}

















.upgrade-section {
    padding: 85px 0;
}

.upgrade-layout {
    margin-top: 70px;
    display: grid;
    grid-template-columns: 45% 1fr;
    gap: 60px;
    align-items: start;
}

/*==================================
            LEFT PANEL
==================================*/

.upgrade-left {
    position: sticky;
    top: 100px;
    /* padding:40px; */
    /* background:linear-gradient(135deg,#16233D,#0E4AA8); */
    border-radius: 28px;
    /* overflow:hidden; */
}


.upgrade-left h3 {
    position: relative;
    margin-bottom: 24px;
    margin-top: 24px;
    font-family: var(--heading-font-family);
    font-size: 36px;
    line-height: 1.3;
    color: var(--text-primary);
}

.upgrade-left h3::before {
    position: absolute;
    content: '';
    height: 500px;
    width: 500px;
    left: -252px;
    top: -12px;
    background: linear-gradient(45deg, #c0c0c0, transparent, #d8d8d8);
    border-radius: 50%;
    z-index: -1;
}

.upgrade-left p {
    position: relative;
    font-size: 18px;
    margin-bottom: 20%;
    color: var(--text-primary);
    line-height: 1.75;
}

.upgrade-left .primary-btn {
    position: relative;
}

/*==================================
            RIGHT
==================================*/

.upgrade-list {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
}



.upgrade-item {
    position: relative;
    display: flex;
    gap: 28px;
    align-items: flex-start;
    padding: 24px;
    background: #fff;
    /* border:1px solid #E8EDF6; */
    border-radius: 16px;
    transition: .35s;
}

.upgrade-item:hover {
    transform: translateX(10px);
    border-color: #CFE0FF;
    box-shadow: 0 18px 40px rgba(0, 101, 242, .10);
}

.upgrade-item span {
    position: relative;
    z-index: 2;
    width: 58px;
    height: 58px;
    display: none;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
    background: #F4F8FF;
    border: 2px solid #D9E7FF;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
    transition: .35s;
}

.upgrade-item:hover span {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.upgrade-item h4 {
    margin-bottom: 10px;
    font-family: var(--heading-font-family);
    font-size: 24px;
    line-height: 1.3;
    background: var(--bg-light);
    border-radius: 8px;
    padding: 12px 24px;
    display: inline-flex;
    color: var(--text-primary);
}

.upgrade-item p {
    margin: 0;
    padding-left: 24px;
    color: var(--text-primary);
    font-size: 18px;
    line-height: 1.75;
}

/*==================================
            TABLET
==================================*/

@media(max-width:991px) {

    .upgrade-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .upgrade-left {
        position: relative;
        top: 0;
    }

}

/*==================================
            MOBILE
==================================*/

@media(max-width:767px) {
    .upgrade-left p {
        font-size: 16px;
    }

    .upgrade-section {
        padding: 65px 0;
    }

    .upgrade-layout {
        margin-top: 40px;
    }

    .upgrade-left {
        padding: 28px;
        border-radius: 20px;
    }

    .upgrade-left h3 {
        font-size: 28px;
    }

    .upgrade-item {
        gap: 18px;
        padding: 22px;
    }

    .upgrade-list::before {
        left: 22px;
    }

    .upgrade-item span {
        width: 44px;
        height: 44px;
        font-size: 15px;
    }

    .upgrade-item h4 {
        font-size: 21px;
    }

    .upgrade-item p {
        font-size: 15px;
        line-height: 1.7;
    }

}










.accounting-scroll-section {
    padding: 85px 0;
    background: var(--bg-light);
}

/*=================================
        WRAPPER
=================================*/

.accounting-scroll-wrapper {
    position: relative;
}

.accounting-scroll-sticky {
    position: sticky;
    top: 120px;
    ;
    display: flex;
    flex-direction: column;
}

/*=================================
        HEADING
=================================*/

.accounting-scroll-sticky .section-heading {
    padding-bottom: 60px;
}

/*=================================
        TRACK
=================================*/

.accounting-scroll-track {

    flex: 1;

    display: flex;

    align-items: start;

    gap: 20px;

    padding-left: max(20px, calc((100vw - 1320px)/2));

    padding-right: max(20px, calc((100vw - 1320px)/2));

    will-change: transform;
}

/*=================================
        CARD
=================================*/

.accounting-card {

    flex: 0 0 clamp(342px, 29vw, 637px);

    width: 637px;

    position: relative;

    display: flex;

    flex-direction: column;

    padding: 32px;

    border-radius: 16px;

    background: #fff;

    border: 1px solid #E7EDF6;

    overflow: hidden;

    transition: .35s;

    box-shadow:
        0 25px 60px rgba(0, 0, 0, .05);
}

.accounting-card::before {

    /* content:""; */

    position: absolute;

    width: 380px;

    height: 380px;

    border-radius: 50%;

    right: -160px;

    top: -160px;

    background:
        radial-gradient(circle,
            rgba(0, 101, 242, .08),
            transparent 72%);
}


.accounting-card:hover {

    transform: translateY(-8px);

    border-color: #CFE0FF;

    box-shadow:
        0 40px 80px rgba(0, 101, 242, .10);

}

.accounting-card:hover::after {

    transform: scaleY(1);

}

/*==============================
            TITLE
==============================*/

.accounting-card h3 {

    margin: 0 0 30px;

    font-size: 24px;

    line-height: 1.2;

    font-weight: 700;

    color: var(--text-primary);

    font-family: var(--heading-font-family);

    position: relative;

    z-index: 2;
}

/*==============================
            LIST
==============================*/

.accounting-card ul {

    margin: 0;

    padding: 0;

    list-style: none;

    display: flex;

    flex-direction: column;

    gap: 8px;

    position: relative;

    z-index: 2;
}

.accounting-card li {

    position: relative;

    padding-left: 32px;

    font-size: 18px;

    line-height: 1.7;

    color: var(--text-primary);

    transition: .9s;
}

.accounting-card li::before {

    content: "";

    position: absolute;

    left: 0;
    top: 8px;

    width: 20px;
    height: 20px;

    background-image: url("../images/inner-pages/blue-tick.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

}

.accounting-card:hover {
    background: linear-gradient(45deg, #d8d8d8, transparent, #d8d8d8);
}

/* .accounting-card:hover li{

    transform:translateX(6px);

    color:var(--text-primary);

} */

/* .accounting-card:hover li::before{

    transform:scale(1.25);

    box-shadow:
        0 0 0 8px rgba(0,101,242,.16);

} */

/*=================================
        HEADER
=================================*/

.card-header {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 40px;

}

.card-count {

    width: 56px;

    height: 56px;

    display: flex;

    padding: 16px;

    font-weight: 900;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    background: #ebebeb;

    color: var(--text-primary);

    font-size: 24px;

    font-family: var(--heading-font-family);

    /* font-weight:700; */
}

.card-progress {

    color: #9AA6B2;

    font-size: 14px;

    font-weight: 600;

    margin-top: -47px;

    letter-spacing: 1px;

    text-transform: uppercase;
}












.inventory-control-section {
    padding: 85px 0;
    overflow: hidden;
    background-image: url(../images/inner-pages/accounting-inventory-connect.webp);
    background-repeat: no-repeat;
    background-position: right;
    background-size: 74%;
}

/*==================================
            LAYOUT
==================================*/

.inventory-control {

    display: grid;

    grid-template-columns: 520px 1fr;

    align-items: center;

    gap: 80px;

    margin-top: 70px;

}

/*==================================
            CONTENT
==================================*/

.inventory-control__content {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

}

.inventory-label {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 12px 22px;

    margin-bottom: 32px;

    text-transform: uppercase;

    letter-spacing: 5%;

    border-radius: 8px;

    background: #EEF5FF;

    color: var(--primary-color);

    font-size: 14px;

    font-weight: 600;
}

.inventory-list {

    margin: 0;

    padding: 0;

    list-style: none;

    display: flex;

    flex-direction: column;

    gap: 22px;

}

.inventory-list li {

    position: relative;

    padding-left: 34px;

    font-size: 18px;

    line-height: 1.7;

    color: var(--text-primary);

    transition: .35s;
}

.inventory-list li::before {

    content: "";

    position: absolute;

    left: 0;

    top: 7px;

    width: 24px;

    height: 24px;

    background: url("../images/inner-pages/blue-tick.png") center/contain no-repeat;

    transition: .35s;
}

.inventory-list li:hover {

    transform: translateX(8px);

    color: var(--text-primary);

}

/*==================================
            IMAGE
==================================*/

.inventory-control__image {

    position: relative;

}

/* .inventory-control__image img {

    width: 100%;
    top: -21.7vw;
    right: 2vw;
    position: absolute;
    display: block;
   
    transition: .4s;
    scale: 1.5;
} */


/*==================================
          RESPONSIVE
==================================*/

@media(max-width:991px) {

    .inventory-control {

        grid-template-columns: 1fr;

        gap: 50px;

    }

    .inventory-control__content {

        order: 2;

    }

    .inventory-control__image {

        order: 1;

    }

}

@media(max-width:767px) {
    .accounting-card h3 {
        font-size: 20px;
    }

    .accounting-card li {
        font-size: 16px;
    }

    .inventory-control {

        margin-top: 50px;

    }

    .inventory-list li {

        font-size: 16px;

    }

    .inventory-control-section {
        background: #fff;
    }
}






















/*=========================
  MORE THAN BILLING
=========================*/

.more-billing-section {
    padding: 90px 0;
    background: var(--bg-light);
}

.section-header {
    max-width: 720px;
    margin: 0 auto 70px;
    text-align: center;
}

.section-tag {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 30px;
    background: rgba(0, 101, 242, .1);
    color: #0065f2;
    font-weight: 600;
    margin-bottom: 18px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    margin-bottom: 20px;
    color: #111827;
}

.section-header p {
    color: #6b7280;
    font-size: 17px;
    line-height: 1.8;
}

/*======================
GRID
=======================*/

.billing-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 45px;
    align-items: end;
}

/*======================
LEFT
=======================*/

.billing-image img {
    width: 100%;
    display: block;
    border-radius: 24px;
    scale: 1.1;
}

.connected-card {
    margin-top: 28px;
    padding: 35px;
    border-radius: 16px;
    background: linear-gradient(0deg, #d8d8d8, #d8d8d8, transparent, #fff, #f9f9fa);
    color: #fff;
    overflow: hidden;
    position: relative;
}

.connected-card span {
    display: inline-block;
    margin-bottom: 24px;
    font-size: 14px;
    background: rgb(188 188 188 / 15%);
    letter-spacing: 5%;
    font-weight: bold;
    color: #0064f2;
    padding: 7px 15px;
    border-radius: 8px;
}

.connected-card h3 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 18px;
    color: #333;
}

.connected-card p {
    line-height: 1.75;
    font-size: 15px;
    color: #333;
}

.connected-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20%;
}

.connected-icons div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 6%;
    color: #444;
    border: 1.5px solid #fff;
    padding: 14px;
    border-radius: 6px;
    background: #ececec;
}



/*======================
RIGHT
=======================*/

.billing-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.feature-card {
    display: flex;
    gap: 18px;
    flex-direction: column;
    padding: 28px;
    background: #fff;
    border-radius: 16px;
    transition: .35s;
    border: 1px solid #eef3fb;
    box-shadow: 0 10px 30px rgba(18, 38, 63, .05);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: #0065f2;
    box-shadow: 0 18px 45px rgba(0, 101, 242, .12);
}

.feature-card i {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background: #ececec;
    color: #0065f2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.feature-card h4 {
    font-family: var(--heading-font-family);
    margin-bottom: 10px;
    color: #111827;
    font-size: 20px;
}

.feature-card p {
    color: var(--text-primary);
    line-height: 1.75;
    font-size: 15px;
}

/*======================
RESPONSIVE
=======================*/

@media(max-width:992px) {

    .billing-grid {
        grid-template-columns: 1fr;
    }

    .billing-features {
        grid-template-columns: 1fr 1fr;
    }

}

@media(max-width:768px) {

    .more-billing-section {
        padding: 70px 0;
    }

    .billing-features {
        grid-template-columns: 1fr;
    }

    .connected-icons {
        grid-template-columns: repeat(2, 1fr);
    }

    .connected-card h3 {
        font-size: 26px;
    }

}

@media(max-width:576px) {

    .connected-icons {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 22px;
    }

    .section-header {
        margin-bottom: 45px;
    }

}













.structured-records-section {
    padding: 85px 0;
    background: #fff;
}

/*==================================
            GRID
==================================*/

.structured-records-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;

    align-items: stretch;

    margin-top: 70px;
}

/*==================================
            CARD
==================================*/

.records-card {

    position: relative;

    padding: 32px;

    border-radius: 16px;

    background: linear-gradient(-28deg, #f9f9fa, transparent, transparent);

    /* border:1px solid #E7EDF6; */

    /* box-shadow:
        0 18px 50px rgba(18,38,63,.06); */

    overflow: hidden;

    transition: .35s;
}

.records-card::before {

    content: "";

    position: absolute;

    width: 320px;

    height: 320px;

    right: 241px;

    top: -73px;

    /* border: 1px solid red; */

    border-radius: 50%;

    z-index: -1;

    background: radial-gradient(circle, rgb(227 227 227), #ededed00);
}



/*==================================
            BADGE
==================================*/

.records-card__badge {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 8px 22px;

    margin-bottom: 26px;

    text-transform: uppercase;

    border-radius: 100px;

    background: #FFF2F2;

    color: #E5484D;

    font-size: 14px;

    letter-spacing: 5%;

    font-weight: 600;
}

.records-card__badge.success {

    background: #0065f214;

    color: #0065f2;
}

/*==================================
            TITLE
==================================*/

.records-card h3 {

    margin: 0 0 26px;

    font-size: 32px;

    line-height: 1.3;

    color: var(--text-primary);

    font-family: var(--heading-font-family);

    position: relative;

    z-index: 2;
}

.records-card p {

    margin: 0;

    font-size: 18px;

    line-height: 1.75;

    color: var(--text-primary);

    position: relative;

    z-index: 2;
}

/*==================================
            LIST
==================================*/

.records-card ul {

    margin: 0;

    padding: 0;

    list-style: none;

    display: flex;

    flex-direction: column;

    gap: 12px;

    position: relative;

    z-index: 2;
}

.records-card li {

    position: relative;

    padding: 0 0 14px;

    margin-bottom: 16px;

    font-size: 18px;

    line-height: 1.75;

    color: var(--text-primary);
}

.records-card li::before {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 100%;

    height: 3px;

    border-radius: 50px;

    background: linear-gradient(45deg, red, transparent, transparent);
}






/*==================================
        BENEFITS
==================================*/

.records-benefits {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 16px;

    margin-top: 20%;

    position: relative;

    z-index: 2;
}

.records-benefits span {

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 14px 18px;

    border-radius: 8px;

    background: #f9f9fa;

    border: 1px solid #fff;

    color: var(--text-primary);

    font-size: 16px;

    font-weight: 500;

    letter-spacing: 0%;

    transition: .35s;
}

.records-benefits span:hover {

    background: #EEF5FF;

    border-color: #D5E4FF;

}

/*==================================
            DIVIDER
==================================*/

.records-divider {

    display: flex;

    align-items: center;

    justify-content: center;

}


/*==================================
        RESPONSIVE
==================================*/

@media(max-width:991px) {

    .structured-records-grid {

        grid-template-columns: 1fr;

    }

    .records-divider {

        transform: rotate(90deg);

        margin: 10px 0;

    }

    .records-benefits {

        grid-template-columns: 1fr;

    }

}

@media(max-width:767px) {

    .records-card {

        padding: 28px;

    }

    .records-card h3 {

        font-size: 24px;

    }

    .records-card li {

        font-size: 16px;

    }

}
















.business-visibility-section {
    padding: 85px 0;
    background: var(--bg-light);
}

/*==================================
            GRID
==================================*/

.visibility-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 40px;

    margin-top: 70px;
}

.visibility-card--large {

    grid-column: span 2;

}

/*==================================
            CARD
==================================*/

.visibility-card {

    position: relative;

    padding: 28px;

    min-height: 230px;

    display: flex;

    flex-direction: column;

    justify-content: end;

    background: linear-gradient(45deg, #f9f9fa, transparent);

    border: 1px solid #E7EDF6;

    border-radius: 16px;

    /* overflow: hidden; */

    transition: .35s;

    box-shadow:
        0 20px 50px rgba(18, 38, 63, .05);
}



.visibility-card::after {

    position: relative;
    padding: 28px;
    min-height: 230px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    background: linear-gradient(3deg, #e9e9e9, transparent);
    border: 1px solid #E7EDF6;
    border-radius: 16px;
    /* overflow: hidden; */
    transition: .35s;
    box-shadow: 0 20px 50px rgba(18, 38, 63, .05);

}

.visibility-card:hover {

    transform: translateY(-4px);

    border-color: #D6E5FF;

    box-shadow:
        none;
    backdrop-filter: blur(40px);

}

.visibility-card:hover .visibility-number {
    color: #0065f2;
    transition: .7s;
    background-color: #0065f20a;
    backdrop-filter: blur(4px);
}

/* .visibility-card:hover::before {

    transform: scale(1.15);

}

.visibility-card:hover::after {

    transform: scaleX(1);

} */

/*==================================
            NUMBER
==================================*/

.visibility-number {

    position: absolute;

    top: -32px;

    right: 30px;

    font-size: 48px;

    line-height: 1;

    font-weight: 900;

    border-radius: 8px;

    color: #d8d8d8;

    background: #ffffff42;

    backdrop-filter: blur(12px);

    border: 2px solid #fff;

    padding: 6px 16px;

    font-family: var(--heading-font-family);

    user-select: none;
}

/*==================================
            TITLE
==================================*/

.visibility-card h3 {

    margin: 0 0 16px;

    font-size: 24px;

    line-height: 1.25;

    color: var(--text-primary);

    font-family: var(--heading-font-family);

    position: relative;

    z-index: 2;
}

/*==================================
        DESCRIPTION
==================================*/

.visibility-card p {

    margin: 0;

    font-size: 18px;

    line-height: 1.75;

    color: var(--text-primary);

    position: relative;

    z-index: 2;
}

/*==================================
        RESPONSIVE
==================================*/

@media(max-width:1200px) {

    .visibility-grid {

        grid-template-columns: repeat(2, 1fr);

    }

    .visibility-card--large {

        grid-column: span 2;

    }

}

@media(max-width:767px) {

    .visibility-grid {

        grid-template-columns: 1fr;

    }

    .visibility-card--large {

        grid-column: auto;

    }

    .visibility-card {

        min-height: 220px;

        padding: 28px;

    }

    .visibility-card h3 {

        font-size: 20px;

    }

    .visibility-card p {

        font-size: 16px;

    }

    .visibility-number {

        font-size: 44px;

    }

}














.accountant-ready-section {

    padding: 85px 0;


}

/*========================*/

.accountant-ready {

    display: grid;

    grid-template-columns: .8fr 1.2fr;

    align-items: center;

    gap: 30px;
}

/*========================*/

.accountant-ready__content h2 {

    margin: 24px 0;

    font-size: 40px;

    line-height: 1.3;

    width: 500px;

    color: var(--text-primary);

    font-family: var(--heading-font-family);
}

.accountant-ready__content p {

    max-width: 540px;

    font-size: 18px;

    line-height: 1.75;

    margin-top: 8%;

    color: var(--text-primary);
}

/*========================*/

.accountant-ready__card {

    padding: 40px;




}

.accountant-ready__card ul {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 16px;

    margin: 0;

    padding: 0;

    list-style: none;
}

.accountant-ready__card li {

    display: flex;

    align-items: start;

    gap: 18px;

    height: 72px;

    padding-bottom: 22px;

    font-size: 18px;

    padding-top: 12px;

    color: var(--text-primary);

    border-bottom: 4px solid transparent;

    border-radius: 0px;

    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(35deg, #0065f2, #ffffff, #ffffff) border-box;
}



/*========================*/



/*========================*/

@media(max-width:991px) {

    .accountant-ready {

        grid-template-columns: 1fr;

        gap: 50px;

    }

    .accountant-ready__content h2 {

        font-size: 48px;

    }

    .accountant-ready__card li {

        font-size: 20px;

    }

}

@media(max-width:767px) {
    .accountant-ready__card ul {
        grid-template-columns: 1fr;
    }

    .accountant-ready__content h2 {

        font-size: 38px;

    }

    .accountant-ready__content p {

        font-size: 17px;

    }

    .accountant-ready__card {

        padding: 28px;

    }

    .accountant-ready__card li {

        padding: 18px 0;

        font-size: 17px;

    }

}











.growth-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.container {
    width: min(1200px, 90%);
    margin: auto;
}





.growth-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.growth-card {
    background: #fff;
    padding: 35px;
    border-radius: 16px;
    border: 1px solid #e8eef8;
    transition: .35s;
    position: relative;
    overflow: hidden;
}


.step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    background: #eaf3ff;
    color: #0065f2;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .8px;
    margin-bottom: 20px;
    font-family: var(--heading-font-family);
}

.growth-card h3 {
    font-size: 24px;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.4;
    font-family: var(--heading-font-family);
}

.growth-card p {
    color: var(--text-primary);
    font-size: 18px;
    line-height: 1.75;
}

@media(max-width:768px) {
    .growth-card h3 {
        font-size: 20px;
    }

    .growth-card p {
        font-size: 16px;
    }


    .growth-section {
        padding: 70px 0;
    }

    .section-heading h2 {
        font-size: 34px;
    }

    .growth-card {
        padding: 28px;
    }
}




.growth-cta {
    border: 1px solid #d9e8ff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.growth-card p {
    margin-bottom: 6%;
}



.growth-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 10px 22px;
    background: #0065f2;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    letter-spacing: 5%;
    transition: .3s;
}

.growth-btn:hover {
    background: #0053ca;
    transform: translateY(-2px);
}

.growth-btn span {
    font-size: 22px;
    transition: .3s;
}

.growth-btn:hover span {
    transform: translateX(5px);
}















.business-types {
    padding: 100px 0;
}

.marquee-wrapper {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    overflow: hidden;
}

.marquee {
    overflow: hidden;
    white-space: nowrap;
}

.track {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    animation: scroll-left 30s linear infinite;
}

.reverse .track {
    animation: scroll-right 30s linear infinite;
}

.track span {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background: linear-gradient(45deg, #d8d8d8, transparent, #d8d8d8);
    border: 1px solid #e8edf5;
    border-radius: 8px;
    font-size: 16px;
    letter-spacing: 5%;
    font-weight: 600;
    color: var(--text-primary);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .05);
    transition: .3s;
}

 

@keyframes scroll-left {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}

@keyframes scroll-right {

    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }

}

.marquee:hover .track {
    animation-play-state: paused;
}














































/* FAQ Section */

.faq-section {
    padding: var(--space-85) 0;
    background: var(--bg-light);
}


.faq-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--space-24);
    /* margin-bottom: var(--space-48); */
    flex-wrap: wrap;
}

.faq-header__left {
    flex: 1;
}

/* .faq-header__left p{
  margin-top: 16px;
} */
.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;
    }
}