* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.highlight {
    color: var(--primary-color);
}

.inventory-hero {
    display: flex;
    align-items: center;
    height: calc(100vh - 80px);
    align-items: center;
    padding: 40px 0;
    overflow: hidden;
    position: relative;
}



.inventory-hero-wrapper {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 60px;
    align-items: start;
}

.hero-tag {
    display: inline-flex;
    padding: 10px 18px;
    border: 1px solid rgba(0, 101, 242, .15);
    border-radius: 50px;
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 600;
}

.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: 0.3px;
}

.top-badge span {
    cursor: pointer;
}

.inventory-content {
    max-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: baseline;
    margin: auto 0px;
}

.inventory-content h1 {
    font-family: var(--heading-bold-font-family);
    font-size: clamp(2rem, 4.5vw, 2.9rem);
    line-height: 120%;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    max-width: 710px;
}

.inventory-content h1 span {
    color: var(--primary-color);
}

.inventory-content p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-primary);
    max-width: 700px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.primary-btn {
    background: var(--primary-color);
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 5%;
    font-weight: 600;
}

.secondary-btn {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 5%;
    font-weight: 600;
}


.inventory-dashboard {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 550px;
    margin: 0 auto;
    background: #fff;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .08);
}

.inventory-dashboard h3 {
    font-size: 24px;
    margin-bottom: 24px;
    margin-top: 4px;
}

.dashboard-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border: 1px solid #e9edf5;
    border-radius: 12px;
}

.dashboard-card .text p {
    font-size: 14px;
    color: var(--text-primary);

}

.dashboard-card span {
    display: inline-flex;
    width: 50px;
    height: 50px;
    padding: 12px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2%;
    background: #0d1023;
    color: #fff;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.dashboard-card h4 {
    margin-bottom: 8px;
}

.dashboard-card p {
    color: #666;
    line-height: 1.7;
}

.dashboard-card strong {
    color: var(--primary-color);
    white-space: nowrap;
    font-size: 15px;
}

@media(max-width:992px) {
    .inventory-hero {
        height: auto;
    }

    .inventory-content {
        align-items: center;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .inventory-hero-wrapper {
        grid-template-columns: 1fr;
    }

    .inventory-dashboard {
        margin-top: 20px;
    }

}

@media(max-width:768px) {

    .inventory-hero {
        padding: 70px 0;
    }

    .inventory-content h1 {
        font-size: clamp(34px, 8vw, 48px);
    }

    .hero-buttons {
        flex-direction: column;
    }

    .dashboard-card {
        flex-direction: column;
        align-items: baseline;
    }
}






















.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;
}

.inventory-rail-section {
    background-color: var(--bg-light);
    padding: 85px 0;
}

.report-rail {
    margin: 70px auto 0;
    position: relative;
}

.report-rail::before {
    content: "";
    position: absolute;
    left: 28px;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom,
            var(--primary-color),
            rgba(0, 101, 242, .15));
}

.rail-item {
    display: flex;
    gap: 40px;
    position: relative;
    margin-bottom: 50px;
}

.rail-number {
    flex-shrink: 0;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.rail-content {
    flex: 1;
    background: #fff;
    border-radius: 24px;
    padding: 28px;
    transition: .3s;
    border: 2px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(335deg, #0065f2, #ffffff, #ffffff) border-box;
    backdrop-filter: blur(10px);
}

.rail-content:hover {
    transform: translateX(10px);
    box-shadow: 0 20px 40px rgba(0, 101, 242, .08);
}

.rail-content h3 {
    font-size: 28px;
    margin-bottom: 12px;
}

.rail-content p {
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 15px;
}

.rail-tags {
    display: flex;
    flex-wrap: wrap;
}

.rail-tags span {
    padding: 8px 14px;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 600;
}

@media(max-width:768px) {

    .report-rail::before {
        left: 18px;
    }

    .rail-item {
        gap: 8px;
    }

    .rail-number {
        width: 38px;
        height: 38px;
        font-size: 12px;
    }

    .rail-content {
        padding: 20px;
    }

    .rail-content h3 {
        font-size: 20px;
    }
}













.inventory-impact-section {
    padding: 85px 0;
}

.impact-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 32px;
    align-items: start;
}

/* Left Card */

.intro-card {
    position: sticky;
    top: 100px;
    padding: 40px;
    border-radius: 16px;
    background: linear-gradient(135deg,
            var(--primary-color),
            #1E7BFF);
    color: #fff;
}

.intro-card h3 {
    font-size: clamp(28px, 3vw, 40px);
    margin-bottom: 24px;
    line-height: 1.2;
}

.intro-card p {
    line-height: 1.8;
    opacity: .95;
}

/* Right Grid */

.impact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.impact-card {
    padding: 28px;
    border-radius: 16px;
    border: 1px solid #E7ECF4;
    background: #fff;
    transition: .3s ease;
}

.impact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 101, 242, .08);
}

.impact-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(0, 101, 242, .08);
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 18px;
}

.impact-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 1.3;
}

.impact-card p {
    color: var(--text-primary);
    line-height: 1.7;
}

@media (max-width: 1200px) {

    .impact-layout {
        grid-template-columns: 1fr;
    }

    .intro-card {
        position: static;
    }
}

@media (max-width: 768px) {

    .inventory-impact-section {
        padding: 70px 0;
    }

    .impact-grid {
        grid-template-columns: 1fr;
    }

    .intro-card {
        padding: 30px;
    }

    .impact-card {
        padding: 24px;
    }

    .impact-card h4 {
        font-size: 18px;
    }
}













.inventory-control-section {
    padding: 85px 0;
}

.inventory-question-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.question-box {
    position: relative;
    padding: 32px;
    border: 1px solid #E7ECF4;
    border-radius: 16px;
    background: #fff;
    transition: .3s ease;
    overflow: hidden;
}

.question-box::before {
    content: "?";
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 60px;
    font-weight: 700;
    color: rgba(0, 101, 242, .08);
}

.question-box:hover {
    transform: translateY(-6px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(0, 101, 242, .08);
}

.question-box h3 {
    font-size: clamp(18px, 2vw, 18px);
    line-height: 1.5;
    max-width: 280px;
}

@media(max-width:992px) {

    .inventory-question-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width:768px) {

    .inventory-control-section {
        padding: 70px 0;
    }

    .question-box {
        padding: 24px;
    }

    .question-box::before {
        font-size: 45px;
    }

    .question-box h3 {
        font-size: 18px;
    }
}










/* ── FAQ SECTION ── */
.faq-section {
    padding: var(--space-85) 0;
    background: 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%;
    }
}