* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



.accounting-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 75px);
    width: 100%;
    padding: 60px 0;
    overflow: hidden;
}

.accounting-hero .container {
    margin: 0 auto;
    padding: 0 20px;
}

.accounting-hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* LEFT */

.accounting-content {
    /* flex: 1; */
    width: 49%;
}

.top-badge {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    padding: 12px 24px;
    border: 1px solid #d7dff0;
    border-radius: 30px;
    background: #fff;
    font-size: clamp(10px, 1vw, 16px);
    font-weight: 400;
    line-height: 16px;
    letter-spacing: .3px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.top-badge span a:hover {
    color: var(--primary-color);
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 50px;
    border: 1.5px solid var(--primary-color);
    background: rgba(0, 101, 242, 0.08);
    color: var(--primary-color);
    font-size: clamp(11px, 0.65rem + 0.25vw, 14px);
    letter-spacing: 5%;
    font-weight: 600;
    margin-bottom: 32px;
}

.accounting-content h1 {
    font-size: clamp(34px, 3.5vw, 62px);
    font-family: var(--heading-bold-font-family);
    line-height: 1.2;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 28px;
}



.accounting-content h1 span {
    color: var(--primary-color);
}

.accounting-content p {
    font-size: clamp(15px, 1vw, 16px);
    letter-spacing: 5%;
    line-height: 1.75;
    color: var(--text-primary);
    max-width: 650px;
    margin-bottom: 25px;
}



.highlight {
    color: var(--primary-color);
}

.hero-btns {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.primary-btn {
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 8px;
    letter-spacing: 5%;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s ease;
    background-color: var(--primary-color);
    color: var(--bg-main);
}



.secondary-btn {
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 8px;
    letter-spacing: 5%;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s ease;
    border: 1.5px solid var(--primary-color);
    color: var(--primary-color);
}



.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.hero-highlights div {
    color: #344054;
    font-size: 15px;
    font-weight: 500;
}

/* RIGHT */

.accounting-image {
    width: 51%;

    /* height: 500px;
     display: flex;
    align-items: center;
    justify-content: center; */
}

/*
.accounting-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
} */
.executive-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .05);
}

.executive-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 25px;
    border-bottom: 1px solid #ececec;
    margin-bottom: 30px;
}

.executive-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #08122e;
    margin: 0;
}

.status-badge {
    background: #eefaf1;
    color: #2f855a;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 12px;
    letter-spacing: 5%;
    font-weight: 600;
}

.executive-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.executive-item {
    display: flex;
    align-items: center;
    gap: 24px;
    border-radius: 20px;
    padding: 8px;
    border: 1px solid #e9ddd2;
    background: #fdf8f2;
}

.executive-item:nth-child(2) {
    background: #f6f6f8;
    border-color: #e8e8e8;
}

.item-number {
    width: 90px;
    height: 90px;
    min-width: 90px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff;
    border-radius: 16px;

    font-size: 24px;
    font-weight: 700;
    letter-spacing: 5%;
    color: #b45309;
}

.item-content {
    flex: 1;
}

.item-content h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #08122e;
}

.item-content p {
    font-size: 14px;
    line-height: 1.7;
    color: #6b7280;
    margin: 0;
}

.item-tag {
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.position {
    background: #eef4ff;
    color: #2563eb;
}

.performance {
    background: #fff7e6;
    color: #d97706;
}

.liquidity {
    background: #eefcf3;
    color: #16a34a;
}

@media(max-width:768px) {

    .executive-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .executive-header h3 {
        font-size: 2rem;
    }

    .executive-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .item-tag {
        align-self: flex-start;
    }
}

/* TABLET */

@media (max-width: 992px) {
    .accounting-hero {
        height: auto;
    }

    .accounting-hero-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .accounting-image {
        display: none;
    }

    .accounting-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-highlights {
        justify-content: center;
    }

    .accounting-image img {
        max-width: 500px;
    }

    .accounting-content {
        width: 100%;
    }
}

/* MOBILE */

@media (max-width: 768px) {

    .accounting-hero {
        padding: 8px 0;
    }

    .accounting-content h1 {
        font-size: 38px;
    }





    .primary-btn,
    .secondary-btn {
        width: 100%;
    }

    .hero-highlights {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 480px) {

    .accounting-content h1 {
        font-size: 32px;
    }

    .hero-btns {
        flex-direction: column;
    }


}
























.financial-intro {
    padding: 85px 0;
    background: var(--bg-light);
    overflow: hidden;
}

.financial-intro-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 80px;
    align-items: start;
}

.financial-intro-content h2 {
    font-family: var(--heading-font-family);
    font-size: clamp(24px, 3vw, 54px);
    line-height: 1.2;
    margin: 0px 0 25px;
    color: var(--text-primary);
}

.financial-intro-content h2 span {
    color: var(--primary-color);
}

.financial-intro-content p {
    font-size: clamp(15px, 1vw, 16px);
    line-height: 1.75;
    color: var(--text-primary);
    margin-bottom: 20px;
}

/* Cards */

.financial-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.financial-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 24px;
    border-radius: 16px;
    background: var(--bg-main);
    border: 2px solid transparent;

    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(135deg,
            #0065f2,
            #dbeafe,
            #ffffff) border-box;

    transition: .35s ease;
}

.financial-card:hover {
    transform: translateY(-8px);
}



.financial-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.financial-card p {
    font-size: clamp(15px, 1vw, 16px);
    line-height: 1.75;
    color: var(--text-primary);
}

/* ==========================
   LARGE LAPTOP
========================== */

@media (max-width: 1200px) {

    .financial-intro-grid {
        gap: 50px;
    }

}


/* ==========================
   TABLET
========================== */

@media (max-width: 991px) {

    .financial-intro {
        padding: 70px 0;
    }

    .financial-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .financial-intro-content {
        text-align: left;
    }

    .financial-intro-content p {
        max-width: 800px;

    }

    .financial-stats {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* ==========================
   MOBILE
========================== */

@media (max-width: 768px) {

    .financial-intro {
        padding: 60px 0;
    }

    .financial-intro-grid {
        gap: 30px;
    }

    .financial-intro-content h2 {
        margin-bottom: 20px;
    }



    .financial-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .financial-card {
        padding: 22px;
    }

    .financial-card h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }



}


/* ==========================
   SMALL MOBILE
========================== */

@media (max-width: 480px) {

    .financial-intro {
        padding: 50px 0;
    }

    .financial-intro-content {
        text-align: left;
    }

    .financial-intro-content h2 {
        line-height: 1.25;
    }



    .financial-card {
        padding: 20px;
        border-radius: 14px;
    }

    .financial-card h3 {
        font-size: 17px;
    }



}


/* ==========================
   EXTRA SMALL DEVICES
========================== */

@media (max-width: 360px) {



    .financial-card {
        padding: 18px;
    }

}















/* 
.position-rail {
    padding: 85px 0;
}

.position-header {
    max-width: 800px;
    margin-bottom: 60px;
}

.position-header h2 {
    font-family: var(--heading-font-family);
    font-size: clamp(24px, 3vw, 54px);
    line-height: 1.2;
    margin: 0px 0 25px;
    color: var(--text-primary);
}

.position-header p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-primary);
}

.position-header h2 span {
    color: var(--primary-color);
}

.position-rail-list {
    border-top: 1px solid rgba(0, 101, 242, .15);
}

.rail-row {
    display: grid;
    grid-template-columns: 80px 300px 1fr;
    gap: 40px;
    padding: 35px 0;
    border-bottom: 1px solid rgba(0, 101, 242, .15);
    transition: .3s ease;
}

.rail-row:hover {
    padding-left: 20px;
}

.rail-row span {
    width: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    background: var(--text-primary);
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 5%;
    color: var(--bg-main);
    height: 48px;
}

.rail-row h3 {
    font-size: 22px;
    margin: 0;
}

.rail-row p {
    line-height: 1.75;
} */












.financial-statements {
    /* background-color: var(--bg-light); */
    padding: 85px 0;
}

.financial-main-card {
    padding: 32px;
    border-radius: 32px;
    max-width: 100%;
    background-color: var(--bg-light);
    margin: 0px auto;
}

.financial-statements-header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    gap: 8px;
    max-width: 100%;
    margin-bottom: 66px;
}

.financial-statements-header h2 {
    font-family: var(--heading-font-family);
    font-size: clamp(24px, 3vw, 54px);
    line-height: 1.2;
    /* margin: 0px 0 25px; */
    color: var(--text-primary);

}

.financial-statements-header h2 span {
    color: var(--primary-color);
}

.financial-statements-header p {
    font-size: clamp(17px, 1vw, 18px);
    line-height: 1.75;
}

.statement-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    counter-reset: statement-counter;

}

.statement-card {
    counter-increment: statement-counter;

    position: relative;
    padding: 32px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(0, 101, 242, .12);
    transition: .35s ease;
    overflow: hidden;
}

.statement-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 101, 242, .08);
}



.statement-card h3 {
    position: relative;
    padding-top: 56px;
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.statement-card h3::before {
    content: "0" counter(statement-counter);
    position: absolute;
    top: 0;
    left: 0;

    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.statement-card p {
    font-size: clamp(15px, 1vw, 16px);
    line-height: 1.75;
    margin-bottom: 25px;
}

.statement-card ul {
    display: block;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.statement-card ul li {
    position: relative;
    padding: 10px 24px;
    border-radius: 30px;
    color: var(--text-primary);
    font-size: clamp(11px, 2vw, 14px);
    font-weight: 500;
}

.statement-card ul li::after {
    position: absolute;

    content: '';
    width: 8px;
    height: 8px;
    margin-top: 16px;
    top: 0;
    left: 0;
    border-radius: 50px;
    color: red;
    background-color: var(--primary-color);

}

@media(max-width:991px) {

    .statement-grid {
        grid-template-columns: 1fr;
    }

}

@media(max-width:768px) {

    .statement-card {
        padding: 28px;
    }

    .statement-number {
        font-size: 56px;
    }

    .statement-card h3 {
        font-size: 20px;
    }

}



















.financial-feature-cards {
    padding: 85px 0;
}

.feature-header {
    max-width: 90%;
    margin-bottom: 60px;
}

.feature-header h2 {
    font-family: var(--heading-font-family);
    font-size: clamp(24px, 3vw, 54px);
    line-height: 1.2;
    margin: 0px 0 25px;
    color: var(--text-primary);
}

.feature-header h2 span {
    color: var(--primary-color);
}

.feature-card-layout {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
}

.feature-report-card {
    padding: 32px;
    border-radius: 20px;
    background: #fff;

    border: 2px solid transparent;

    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(135deg,
            #0065f2,
            #dbeafe,
            #ffffff) border-box;

    transition: .35s ease;
}

.feature-report-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 101, 242, .08);
}

.report-points {
    margin-top: 24px;
    padding: 0;
    list-style: none;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.report-points li {
    padding: 14px 0;
    border-top: 1px solid rgba(0, 101, 242, .12);

    font-size: 15px;
    font-weight: 500;
}

.card-number {
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    letter-spacing: 5%;
    font-size: 16px;
    font-weight: 700;
    color: var(--bg-main);
    background: var(--text-primary);
    margin-bottom: 20px;
}

.feature-report-card h3 {
    font-size: 24px;
    line-height: 1.35;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.feature-report-card p {
    font-size: clamp(15px, 1vw, 16px);
    line-height: 1.75;
    color: var(--text-primary);
}

/* Staggered Layout */

.card-1 {
    grid-column: span 6;
}

.card-2 {
    grid-column: span 5;
    margin-top: 60px;
}

.card-3 {
    grid-column: span 5;
}

.card-4 {
    grid-column: span 7;
    margin-top: -40px;
}

.financial-visibility-row {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(0, 101, 242, .12);

    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 80px;
    align-items: start;
}

.visibility-heading h3 {
    font-size: clamp(24px, 2.4vw, 42px);
    line-height: 1.2;
    color: var(--text-primary);
    font-family: var(--heading-font-family);
    margin: 0;
}

.visibility-content p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.visibility-content p:last-child {
    margin-bottom: 0;
}

@media(max-width:991px) {

    .feature-card-layout {
        grid-template-columns: 1fr;
    }

    .card-1,
    .card-2,
    .card-3,
    .card-4 {
        grid-column: auto;
        margin-top: 0;
    }

}

@media(max-width:768px) {

    .feature-report-card {
        padding: 24px;
    }

    .feature-report-card h3 {
        font-size: 20px;
    }

}

@media (max-width: 991px) {

    .financial-visibility-row {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 60px;
        padding-top: 50px;
    }

}

@media (max-width: 768px) {

    .visibility-heading h3 {
        font-size: 28px;
    }

    .visibility-content p {
        font-size: 15px;
    }

}







.financial-reports-list {
    padding: 85px 0;
    background: var(--bg-light);
}

.reports-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 90%;
    margin-bottom: 65px;
}

.reports-header h2 {
    font-family: var(--heading-font-family);
    font-size: clamp(24px, 3vw, 54px);
    line-height: 1.2;
    /* margin: 0px 0 25px; */
    color: var(--text-primary);
}

.reports-header p {
    font-size: clamp(17px, 1vw, 18px);
    line-height: 1.75;
    /* margin-top: 20px; */
}

.reports-list {
    border-top: 1px solid rgba(0, 0, 0, .08);
}

.report-row {
    display: grid;
    grid-template-columns: 90px 1.2fr 1fr;
    gap: 40px;
    align-items: center;

    padding: 35px 0;

    border-bottom: 1px solid rgba(0, 0, 0, .08);

    transition: .3s ease;
}

.report-row:hover {
    padding-left: 15px;
}

.report-number {
    width: 70px;
    height: 70px;

    border-radius: 50%;

    background: #edf3ff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;
    font-weight: 700;

    color: var(--primary-color);
}

.report-title h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.report-title span {
    display: inline-block;

    padding: 8px 18px;

    border-radius: 30px;

    background: #f4f6ff;

    color: var(--primary-color);

    font-size: 14px;
    font-weight: 500;
}

.report-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-primary);
}

@media(max-width:991px) {

    .report-row {
        grid-template-columns: 80px 1fr;
        gap: 25px;
    }

    .report-content {
        grid-column: 2;
    }

    .report-title h3 {
        font-size: 26px;
    }

}

@media(max-width:767px) {

    .report-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .report-content {
        grid-column: auto;
    }

    .report-number {
        width: 60px;
        height: 60px;
        font-size: 18px;
    }

    .report-title h3 {
        font-size: 24px;
    }

    .report-content p {
        font-size: 16px;
    }

    .report-row:hover {
        padding-left: 0;
    }

}





















.financial-insights {
    padding: 85px 0;
    background: var(--bg-light);
}

.insights-header {
    max-width: 90%;
    margin-bottom: 65px;
}

.insights-header h2 {
    font-family: var(--heading-font-family);
    font-size: clamp(24px, 3vw, 54px);
    line-height: 1.2;
    margin: 0px 0 25px;
    color: var(--text-primary);

}

.insights-header h2 span {
    color: var(--primary-color);
}

.insights-header h2 {
    font-family: var(--heading-font-family);
    font-size: clamp(24px, 3vw, 54px);
    line-height: 1.2;
    margin: 0px 0 25px;
    color: var(--text-primary);
}

.insights-header p {
    font-size: clamp(17px, 1vw, 18px);
    line-height: 1.75;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.insight-block {
    padding: 35px;
    border-radius: 20px;

    border: 2px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(135deg, #0065f2, #dbeafe, #ffffff) border-box;
    transition: .35s ease;

    height: 100%;
}

.insight-block h3 {
    height: 100px;
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.insight-block p {
    font-size: clamp(15px, 1vw, 16px);
    line-height: 1.4;
    margin-bottom: 24px;
}

.insight-block ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.insight-block ul li {
    font-size: clamp(15px, 1vw, 16px);
    list-style: none;
    position: relative;
    padding-left: 24px;
    line-height: 1.75;
}

.insight-block ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;

    width: 8px;
    height: 8px;

    border-radius: 50%;
    background: var(--primary-color);
}

@media(max-width:991px) {

    .insights-grid {
        grid-template-columns: 1fr;
    }

    .insight-block h3 {
        height: auto;
    }

}

@media(max-width:768px) {

    .insight-block h3 {
        height: auto;
        margin-bottom: 16px;
    }

    .insight-block h3 {
        font-size: 20px;
    }


}
































/* ======================================================================================================== */



.reports-matter {
    padding: 85px 0;
}

.reports-matter-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 80px;
    align-items: start;
}

.reports-left {
    position: sticky;
    top: 120px;
}

.reports-left h2 {
    font-family: var(--heading-font-family);
    font-size: clamp(24px, 3vw, 54px);
    line-height: 1.2;
    margin: 0px 0 25px;
    color: var(--text-primary);
}

.reports-left h2 span {
    color: var(--primary-color);
}

.reports-left p {
    font-size: 16px;
    line-height: 1.75;
    margin-top: 20px;
}

.reports-right {
    border-left: 1px solid rgba(0, 101, 242, .15);
    padding-left: 40px;
}

.matter-item {
    position: relative;
    padding: 0 0 35px 35px;
}

.matter-item:last-child {
    padding-bottom: 0;
}

.matter-item::before {
    content: "";
    position: absolute;
    left: -47px;
    top: 8px;

    width: 12px;
    height: 12px;
    border-radius: 50%;

    background: var(--primary-color);
    box-shadow: 0 0 0 8px rgba(0, 101, 242, .08);
}

.matter-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.matter-item p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-primary);
}

@media(max-width:991px) {

    .reports-matter-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .reports-left {
        position: static;
    }

    .reports-right {
        padding-left: 25px;
    }

    .matter-item {
        padding-left: 25px;
    }

    .matter-item::before {
        left: -26px;
    }
}

@media(max-width:768px) {

    .reports-right {
        padding-left: 20px;
    }

    .matter-item h3 {
        font-size: 20px;
    }
}

























.decision-section {
    padding: 85px 0;
}

.decision-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
    margin-bottom: 65px;
}

.decision-header h2 {
    font-family: var(--heading-font-family);
    font-size: clamp(24px, 3vw, 54px);
    line-height: 1.2;
    /* margin: 0px 0 25px; */
    color: var(--text-primary);
}

.decision-header h2 span {
    color: var(--primary-color);
}

.decision-header p {
    font-size: 16px;
    line-height: 1.8;
}

.decision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.decision-question {
    display: flex;
    align-items: center;
    gap: 20px;

    padding: 28px;

    border-bottom: 1px solid rgba(0, 101, 242, .15);
    transition: .3s ease;
}

.decision-question:hover {
    padding-left: 40px;
}

.decision-question span {
    flex-shrink: 0;

    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(0, 101, 242, .08);
    color: var(--primary-color);

    font-size: 28px;
    font-weight: 700;
}

.decision-question h3 {
    font-size: 20px;
    line-height: 1.4;
    margin: 0;
    color: var(--text-primary);
}

@media(max-width:991px) {

    .decision-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width:768px) {

    .decision-header {
        margin-bottom: 50px;
    }

    .decision-question {
        padding: 22px 0;
    }

    .decision-question:hover {
        padding-left: 0;
    }

    .decision-question h3 {
        font-size: 18px;
    }

    .decision-question span {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }
}









 








.section-eyebrow {
  display: flex;
  align-items: center;
  gap: var(--space-12);
  margin-bottom: var(--space-16);
  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);
}

/* ── 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;
  }
}