/* ==========================================================================
   FEATURE DETAIL CSS - WORTAL THEME
   Styles for Feature Landing Pages (e.g. Order Management)
   ========================================================================== */

.custom-order-management-template {
    width: 100%;
    overflow-x: hidden;
}

/* --------------------------------------------------------------------------
   1. FEATURE HERO SECTION
   -------------------------------------------------------------------------- */
.feature-hero-section {
    position: relative;
    width: 100%;
    background-color: #FAF9F6;
    background: radial-gradient(circle at 50% 10%, #FFF5EF 0%, #FAF9F6 50%, #FFFFFF 100%);
    padding: 150px 20px 0 20px;
    box-sizing: border-box;
    overflow: hidden;
    text-align: center;
}

.feature-hero-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    padding-top: 50px;

}

.feature-hero-content {
    max-width: 900px;
    margin: 0 auto 40px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-hero-badge {
    display: block;
    font-size: clamp(20px, 2.3vw, 30px);
    font-weight: 500;
    color: #2D3139;
    line-height: 1.3;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.feature-hero-title {
    font-size: clamp(30px, 4.2vw, 46px);
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0%;
    color: #333333;
}

.feature-hero-desc {
    font-size: clamp(15px, 1.2vw, 17px);
    line-height: 1.65;
    color: #555E68;
    max-width: 820px;
    margin: 0 auto 34px auto;
}

.feature-hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;

}

/* --- Hero Mockup / Dashboard Preview --- */
.feature-hero-mockup {
    width: 100%;
    max-width: 1160px;
    margin: 10px auto 0 auto;
    position: relative;
}

.feature-mockup-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px 20px 0 0;
}


.feature-hero-section::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 250px;
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            #ffffff 100%);
    pointer-events: none;
}

@media (max-width: 767px) {
    .feature-hero-section::after {
        height: 80px;
        background: linear-gradient(to bottom,
                rgba(255, 255, 255, 0) 0%,
                rgba(255, 255, 255, 0.08) 70%,
                #ffffff 100%);
    }
	.feature-hero-container {
		padding-top:0px;
	}

}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
    .feature-hero-section {
        padding-top: 85px;
    }

    .feature-hero-content {
        margin-bottom: 30px;
    }

	.feature-hero-container {
		padding-top:0px;
	}
}

@media (max-width: 768px) {
    .feature-hero-section {
        padding: 110px 16px 0 16px;
    }

    .feature-hero-desc {
        margin-bottom: 24px;
    }

    .feature-hero-mockup {
        border-radius: 14px 14px 0 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    }

    .feature-mockup-img {
        border-radius: 14px 14px 0 0;
    }
}

@media (max-width: 480px) {
    .feature-hero-actions {
        width: 100%;
        gap: 12px;
    }
}

.feature-section-wrapper {
    margin: 0 auto;
    max-width: 1280px;

}

.feature-section-wrapper .header {
    display: flex;
    padding: 0 30px;
}

.feature-section-wrapper .header .section-header {
    text-align: start;
    padding-bottom: 0px;
    align-self: center;
    width: 70%;
}

.feature-section-wrapper .header .header-img {
    width: 30%;
}


.feature-section {
    margin-top: 70px;
}

@media (max-width: 768px) {

    .feature-section-wrapper .header .section-header {

        width: 100%;
    }

    .header-img {
        display: none;
    }

    .feature-section-wrapper .header {
        padding: 0px;
    }

    .feature-section-wrapper .content {
        padding: 0 15px;
    }
}

/* SECTION */
.cards-section {
    padding: 0px 0px;
    font-family: "Plus Jakarta Sans", Sans-serif;
}

/* GRID */
.cards {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 20px;
}

/* CARD DEFAULT */
.card {
    position: relative;
    flex: 1;
    border-radius: 19px;
    padding: 30px 24px;
    padding-top: 60px;
    border: 2px solid transparent;
    transition: all 0.35s ease;
    cursor: pointer;
    background: #F7F7F5;
}

/* STEP NUMBER */
.step {
    position: absolute;
    top: 25px;
    right: 20px;
    font-weight: 700;
    color: #C8C8C8;
    font-size: 28px;
}

/* TITLE */
.card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    transition: 0.3s;
    font-weight: 700;
}

/* TEXT */
.card p {
    font-size: 14px;
    color: #777;
    line-height: 18px;
    font-weight: 400;
}

/* HOVER EFFECT */
.card:hover {
    border: 2px solid #FF4000;
    box-shadow: 0px 7px 20px 0px #00000033;
    transform: translateY(-6px);
    background: #F7F7F5;
}

.card:hover h3,
.card:hover .step {
    color: #FF4000;
}

.card:hover p {
    color: #777777;
}

/* ICON CONTAINER */
.icons {
    width: 40px;
    height: 40px;
    margin-bottom: 18px;
}

/* SINGLE IMAGE STYLE */
.card-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: filter 0.3s ease;
    /* Smooth color transition */
}

/* COLOR CHANGE ON HOVER */
.card:hover .card-icon {
    filter: brightness(0) saturate(100%) invert(38%) sepia(99%) saturate(2667%) hue-rotate(6deg) brightness(103%) contrast(105%);
}

/* MEDIA QUERIES */
@media (min-width: 768px) and (max-width: 1024px) {
    .cards {
        flex-wrap: wrap;
        max-width: 100%;
    }

    .card {
        min-width: 300px;
    }
}

@media (max-width: 767.4px) {
    .cards {
        overflow-x: auto;
    }

    .card {
        min-width: 250px;
        padding-top: 30px;
    }

    .step {
        top: 10px;
        font-size: 26px;
    }

    .card:hover {
        transform: translateY(0px);
    }
}

/* MOBILE ACTIVE CARD EFFECT */
@media (max-width: 767.4px) {
    .card.active-card {
        border: 2px solid #FF4000;
        box-shadow: 0px 7px 20px 0px #00000033;
        transform: translateY(0px);
        background: #F7F7F5;
    }

    .card.active-card h3,
    .card.active-card .step {
        color: #FF4000;
    }

    /* Triggers the orange color on mobile active state */
    .card.active-card .card-icon {
        filter: brightness(0) saturate(100%) invert(38%) sepia(99%) saturate(2667%) hue-rotate(6deg) brightness(103%) contrast(105%);
    }

    .card {
        transition: all .08s ease;
    }
}


.feature-timeline {
    max-width: 1140px;
    margin: 0 auto;
    margin-top: 40px;
}

.timeline-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    min-height: 420px;
    position: relative;
    z-index: 2;
    overflow: visible;
}

.timeline-item {
    position: relative;
    padding: 42px 24px;
    border-left: 1px solid #FF5C19;
    border-right: 1px solid #FF5C19;
    overflow: visible;
    transition: .4s ease;
}

.timeline-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(255, 92, 25, .10) 0%,
            rgba(255, 92, 25, 0) 100%);
    opacity: 0;
    transition: .4s ease;
}

.timeline-content {
    position: absolute;
    left: 18px;
    width: calc(100% - 36px);
    z-index: 5;
}

/* Above line (Desktop only default) */
.timeline-item:nth-child(1) .timeline-content,
.timeline-item:nth-child(2) .timeline-content {
    top: 20px;
}

/* Below line (Desktop only default) */
.timeline-item:nth-child(3) .timeline-content,
.timeline-item:nth-child(4) .timeline-content {
    top: 220px;
}

.timeline-content h3 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 100%;
    color: #333;
    margin-bottom: 20px;
    transition: .4s ease;
}

.timeline-content p {
    font-size: 16px;
    line-height: 130%;
    color: #333;
}

.timeline-dot {
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid #FF4000;
    background: #fff;
    z-index: 10;
    transition: .4s ease;
}

/* DOT POSITIONS */
.timeline-item:nth-child(1) .timeline-dot {
    left: -10px;
    bottom: 100px;
}

.timeline-item:nth-child(2) .timeline-dot {
    left: -10px;
    bottom: 129px;
}

.timeline-item:nth-child(3) .timeline-dot {
    left: -10px;
    bottom: 194px;
}

.timeline-item:nth-child(4) .timeline-dot {
    left: -10px;
    bottom: 258px;
}

/* ACTIVE STATE */
.timeline-item.active {
    border-left: 2px solid #FF4302;
    /*border-right: 2px solid #FF4302;*/
}

.timeline-item.active::before {
    opacity: 1;
}

.timeline-item.active h3 {
    color: #FF4000;
}

.timeline-item.active .timeline-dot {
    background: #FF4000;
}

/* SVG PATHS */
.card-path {
    position: absolute;
    pointer-events: none;
    overflow: visible;
    z-index: 3;
    display: block;
}

.card-path path {
    fill: none;
    stroke: #FF4202;
    stroke-width: 2;
    vector-effect: non-scaling-stroke;
}

.path-1 {
    width: 100%;
    height: 35px;
    left: 0;
    bottom: 104px;
}

.path-2 {
    width: 100%;
    height: 77px;
    left: -1px;
    bottom: 130px;
}

.path-3 {
    width: 100%;
    height: 77px;
    left: -1px;
    bottom: 195px;
}

.path-4 {
    width: 100%;
    height: 108px;
    left: -1px;
    bottom: 262px;
}

@media (max-width: 1024px) {
    .timeline-content p {
        font-size: 16px;
    }

    .timeline-content h3 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .timeline-section {
        display: flex;
        flex-direction: column;
        min-height: auto;
        gap: 0;
    }

    .timeline-item {
        border-right: none;
        border-left: 2px solid #ccc;
        padding: 24px 0 24px 24px;
        margin-left: 15px;
    }

    .timeline-item.active {
        border-left: 2px solid #FF4302;
        border-right: none;
    }

    .timeline-item:nth-child(1) .timeline-content,
    .timeline-item:nth-child(2) .timeline-content,
    .timeline-item:nth-child(3) .timeline-content,
    .timeline-item:nth-child(4) .timeline-content {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
    }

    .timeline-dot {
        display: block;
        left: -10px !important;
        top: 28px !important;
        bottom: auto !important;
    }

    .card-path {
        display: none !important;
    }
}

/* ==========================================================================
   MANAGE LEAD / WORKFLOWS DARK GRID SECTION
   ========================================================================== */
.mange-lead-section {
    padding: 90px 20px;
    background-color: #FFFFFF;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.mange-lead-section .section-header {
    text-align: center;
    max-width: 950px;
    margin: 0 auto 50px auto;
    padding: 0 20px;
}

.mange-lead-container {
    max-width: 1240px;
    margin: 0 auto;
    box-sizing: border-box;
}

.mange-lead-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background-color: #1E1E1E;
    border: 1px solid #2F2F2F;
    border-radius: 4px;
    overflow: hidden;
    box-sizing: border-box;
}

.mange-lead-card {
    padding: 44px 36px;
    background-color: #1F1F1F;
    border-right: 1px solid #2F2F2F;
    border-bottom: 1px solid #2F2F2F;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-sizing: border-box;
    transition: background-color 0.3s ease;
    background-repeat: no-repeat;
    background-size: cover;
}

.mange-lead-card.odd {
    background-image: url(https://wortal.co/wp-content/uploads/2026/06/Frame-2055246943-1.svg);
}

.mange-lead-card.even {
    background-image: url(https://wortal.co/wp-content/uploads/2026/06/Frame-20552469441.svg);
}

.mange-lead-card:hover {
    background-color: #FF7A33;
}

/* Remove right border on 3rd column */
.mange-lead-card:nth-child(3n) {
    border-right: none;
}

/* Remove bottom border on last row */
.mange-lead-card:nth-child(n+4) {
    border-bottom: none;
}


.mange-lead-card-title {
    font-size: clamp(20px, 1.6vw, 24px);
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.3;
    margin: 0 0 14px 0;
    letter-spacing: -0.01em;
    font-family: "Plus Jakarta Sans", sans-serif;
}

.mange-lead-card-desc {
    font-size: 15.5px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
    font-family: "Plus Jakarta Sans", sans-serif;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .mange-lead-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mange-lead-card {
        padding: 36px 28px;
    }

    /* Reset 3-column borders */
    .mange-lead-card:nth-child(3n) {
        border-right: 1px solid #2F2F2F;
    }

    .mange-lead-card:nth-child(n+4) {
        border-bottom: 1px solid #2F2F2F;
    }

    /* 2-column borders */
    .mange-lead-card:nth-child(2n) {
        border-right: none;
    }

    .mange-lead-card:nth-child(n+5) {
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    .mange-lead-section {
        padding: 60px 16px;
    }

    .mange-lead-section .section-header {
        margin-bottom: 36px;
    }

    .mange-lead-grid {
        grid-template-columns: 1fr;
    }

    .mange-lead-card {
        padding: 30px 22px;
        border-right: none !important;
        border-bottom: 1px solid #2F2F2F !important;
    }

    .mange-lead-card:last-child {
        border-bottom: none !important;
    }
}






/* ==========================================================================
   BUSINESS IMPACT SECTION (And That's Not All)
   ========================================================================== */
.business-impact-section {
    padding: 0 0 100px 0;
    background-color: #FFFFFF;
    width: 100%;
    position: relative;
    box-sizing: border-box;
}

.business-impact-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.business-impact-section .section-header {
    text-align: center;
    max-width: 800px;
}

.business-impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.business-impact-card {
    background-color: #F8F8F8;
    border-radius: 28px;
    padding: 36px 28px 24px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 440px;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, background 0.35s ease, border-color 0.35s ease;
    border: 1px solid #ECECEC;
    box-sizing: border-box;
}

/* Gradient Overlay sitting ON TOP of the image */
.business-impact-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(241, 101, 51, 1) 0%, rgba(241, 101, 51, 0.65) 30%, rgba(241, 101, 51, 0.15) 60%, rgba(255, 255, 255, 0) 90%) !important;
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 2;
    /* Above image (z-index: 1), below text (z-index: 3) */
    pointer-events: none;
    border-radius: inherit;
    mix-blend-mode: multiply;
}

.business-impact-card:hover::before {
    opacity: 1;
}

.impact-card-content {
    margin-bottom: 24px;
    position: relative;
    z-index: 3;
}

.impact-card-title {
    font-size: 22px;
    font-weight: 600;
    color: #333333;
    line-height: 1.25;
    margin: 0 0 12px 0;
    letter-spacing: -0.01em;
}

.impact-card-desc {
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    line-height: 1.55;
    margin: 0;
}

.impact-card-media {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-top: auto;
    min-height: 160px;
    position: relative;
    z-index: 1;
}

.impact-card-media img {
    max-width: 100%;
    max-height: 160px;
    object-fit: contain;
    display: block;
    transition: transform 0.35s ease;
    mix-blend-mode: multiply;
}

.business-impact-card:hover .impact-card-media img {
    transform: scale(1.04);
}

/* Responsive Media Queries */
@media (max-width: 1100px) {
    .business-impact-section {
        padding: 55px 0 80px 0;
    }

    .business-impact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .business-impact-card {
        min-height: 400px;
        padding: 30px 24px 20px;
    }
}

@media (max-width: 640px) {
    .business-impact-section {
        padding: 0 0 60px 0;
    }

    .business-impact-container {
        padding: 0 16px;
    }

    .business-impact-section .section-header {
        margin-bottom: 30px;
    }

    .business-impact-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .business-impact-card {
        border-radius: 20px;
        padding: 24px 20px;
        min-height: auto;
    }

    .impact-card-title {
        font-size: 19px;
        margin-bottom: 8px;
    }

    .impact-card-desc {
        font-size: 13.5px;
    }

    .impact-card-media {
        min-height: 130px;
    }
}

/* ==========================================================================
   WORKFLOWS ACROSS MODULES SECTION
   ========================================================================== */
.workflows-section {
    padding: 90px 0 110px 0;
    background-color: #FFFFFF;
    width: 100%;
    position: relative;
    box-sizing: border-box;
}

.workflows-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.workflows-grid {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 60px 80px;
    align-items: flex-start;
}

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

.workflows-title {
    font-size: clamp(28px, 3.4vw, 42px);
    font-weight: 700;
    color: #1E2229;
    line-height: 1.2;
    margin: 0;
    letter-spacing: -0.02em;
    font-family: "Plus Jakarta Sans", sans-serif;
}

@media (max-width: 768px) {
    .workflows-title {
        text-align: center;
    }
}

.workflows-title-highlight {
    color: #FF4000;
}

.workflows-right {
    display: flex;
    flex-direction: column;
}

.workflow-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.workflow-item-header {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 12px;
}

.workflow-number {
    font-size: clamp(26px, 2.5vw, 36px);
    font-weight: 700;
    color: #FF4000;
    line-height: 1.2;
    font-family: "Plus Jakarta Sans", sans-serif;
}

.workflow-name {
    font-size: clamp(26px, 2.5vw, 36px);
    font-weight: 700;
    color: #FF4000;
    line-height: 1.2;
    margin: 0;
    font-family: "Plus Jakarta Sans", sans-serif;
}

.workflow-desc {
    font-size: 16px;
    font-weight: 400;
    color: #4A4A4A;
    line-height: 1.55;
    margin: 0 0 14px 0;
    max-width: 580px;
    font-family: "Plus Jakarta Sans", sans-serif;
}

.workflow-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 600;
    color: #FF4000;
    text-decoration: none;
    transition: gap 0.25s ease, color 0.25s ease;
}

.workflow-link span {
    font-size: 16px;
    transition: transform 0.25s ease;
}

.workflow-link:hover {
    color: #E63900;
    gap: 10px;
}

.workflow-link:hover span {
    transform: translateX(3px);
}

.workflow-divider {
    border-top: 1px solid #ECECEC;
    width: 100%;
    margin: 32px 0 28px 0;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .workflows-section {
        padding: 70px 0 80px 0;
    }

    .workflows-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .workflows-title br {
        display: none;
    }
}

@media (max-width: 600px) {
    .workflows-section {
        padding: 50px 0 60px 0;
    }

    .workflows-container {
        padding: 0 16px;
    }

    .workflow-item-header {
        gap: 10px;
        margin-bottom: 8px;
    }

    .workflow-desc {
        font-size: 14.5px;
    }

    .workflow-divider {
        margin: 24px 0 20px 0;
    }
}









/* ─── Reset & Base ─── */
.wi-root * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.wi-root {
    font-family: Plus Jakarta Sans, sans-serif;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 10px;
}

/* ─── Scroll container ─── */
.wi-scroll-track {
    position: relative;
    /* 4 sections × 100vh each */
    /*height: 400vh;*/
}

/* ─── Sticky wrapper ─── */
.wi-sticky {
    position: sticky;
    top: 0;
    /*height: 100vh;*/
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* ─── Card shell ─── */
.wi-card {
    display: flex;
    align-items: stretch;
    background: #fff;
    border: 1.5px solid #e8e8e8;
    // border-radius: 18px;
    overflow: hidden;
    width: 100%;
    // box-shadow: 0 8px 40px rgba(0,0,0,0.08);
    min-height: 60vh;
}

/* ─── LEFT PANEL ─── */
.wi-left {
    flex: 0 0 50%;
    background: #fafafa;
    border-right: 1.5px solid #e8e8e8;
    padding: 40px 32px 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}


.wi-left::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(-32deg,
            transparent 0,
            transparent 180px,
            #4A3D40 180px,
            #4A3D40 181px);
    opacity: 0.2;
    pointer-events: none;
}

.wi-illus-slot {
    z-index: 1;
}

.wi-hint {
    z-index: 2;
}

/* Illustration slots — all stacked, toggled by JS */
.wi-illus-slot {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    padding: 40px 32px 32px;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.45s ease, transform 0.45s ease;
    pointer-events: none;
}

.wi-illus-slot.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.wi-industry-label {
    font-size: 40px;
    font-weight: 700;
    color: #FF4000;
    letter-spacing: -0.6px;
    line-height: 1.15;
    margin-bottom: 20px;
}

.wi-illus-slot img {
    width: 60%;
    height: auto;
    margin: auto;
}

/* ─── RIGHT PANEL ─── */
.wi-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.wi-item {
    padding: 22px 30px;
    border-bottom: 1.5px solid #f0f0f0;
    cursor: pointer;
    transition: background 0.2s ease;
    position: relative;
}

.wi-item:last-child {
    border-bottom: none;
}

.wi-item:hover {
    background: #fff7f5;
}

/* orange left bar */
.wi-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #FF4000;
    border-radius: 0 2px 2px 0;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.wi-item.active::before {
    transform: scaleY(1);
}

.wi-item.active {
    background: #fff7f5;
}

.wi-item-title {
    font-size: 24px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 5px;
    letter-spacing: -0.1px;
    transition: color 0.25s ease;
}

.wi-item.active .wi-item-title {
    color: #FF4000;
}

.wi-item-desc {
    display: block;
    font-size: 16px;
    color: #6B6B6B;
    line-height: 1.6;
    font-weight: 400;
    margin-top: 6px;
    opacity: 1;
    visibility: visible;
    max-height: none;
    overflow: visible;
}

.wi-item.active .wi-item-desc {
    max-height: 120px;
    // opacity: 1;
}

/* ─── Progress dots ─── */
.wi-dots {
    position: absolute;
    right: -28px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wi-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    transition: background 0.3s ease, transform 0.3s ease;
}

.wi-dot.active {
    background: #FF4000;
    transform: scale(1.4);
}

/* ─── Scroll hint ─── */
.wi-hint {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    color: #aaa;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    animation: wi-bounce 2s infinite;
    display: none;
}

@keyframes wi-bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(6px);
    }
}

.wi-hint img {
    width: 14px;
    height: 14px;
}

/* ─── Mobile ─── */
@media (max-width: 640px) {

    /*.wi-scroll-track { height: 500vh; }*/
    .wi-card {
        flex-direction: column;
        min-height: unset;
    }

    .wi-left {
        flex: none;
        height: 200px;
        border-right: none;
        border-bottom: 1.5px solid #e8e8e8;
    }

    .wi-illus-slot {
        padding: 20px;
    }

    .wi-industry-label {
        font-size: 40px;
    }

    .wi-illus-slot img {
        max-width: 120px;
    }

    .wi-item {
        padding: 16px 20px;
    }

    .wi-dots {
        right: -20px;
    }
}

/* ==========================================================================
   COMPLEMENTARY FEATURES SECTION
   ========================================================================== */
.complementary-features-section {
    padding: 50px 0 40px 0;
    background-color: #FFFFFF;
    width: 100%;
    position: relative;
    box-sizing: border-box;
}

.complementary-features-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.complementary-features-section .section-header {
    text-align: center;
    max-width: 820px;
}

.complementary-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid #ECECEC;
    border-radius: 4px;
    background-color: #FFFFFF;
    box-sizing: border-box;
    overflow: hidden;
}

.complementary-feature-card {
    padding: 38px 28px 42px 28px;
    border-right: 1px solid #ECECEC;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    background-color: #FFFFFF;
    box-sizing: border-box;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.complementary-feature-card:last-child {
    border-right: none;
}

.complementary-feature-card:hover {
    background-color: #FAFAFA;
}

.feature-card-icon {
    width: 100%;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 24px;
}

.feature-card-icon img {
    max-height: 72px;
    max-width: 90px;
    object-fit: contain;
    display: block;
}

.feature-card-title {
    font-size: clamp(19px, 1.35vw, 22px);
    font-weight: 700;
    color: #262930;
    line-height: 1.25;
    margin: 0 0 12px 0;
    letter-spacing: -0.01em;
    font-family: "Plus Jakarta Sans", sans-serif;
}

.feature-card-desc {
    font-size: 15px;
    font-weight: 400;
    color: #6C727F;
    line-height: 1.55;
    margin: 0;
    font-family: "Plus Jakarta Sans", sans-serif;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .complementary-features-section {
        padding: 70px 0 90px 0;
    }

    .complementary-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .complementary-feature-card {
        padding: 32px 24px 36px 24px;
        border-right: 1px solid #ECECEC;
        border-bottom: 1px solid #ECECEC;
    }

    .complementary-feature-card:nth-child(2n) {
        border-right: none;
    }

    .complementary-feature-card:nth-child(n+3) {
        border-bottom: none;
    }
}

@media (max-width: 640px) {
    .complementary-features-section {
        padding: 50px 0 70px 0;
    }

    .complementary-features-container {
        padding: 0 16px;
    }

    .complementary-features-section .section-header {
        margin-bottom: 32px;
    }

    .complementary-features-grid {
        grid-template-columns: 1fr;
    }

    .complementary-feature-card {
        padding: 26px 20px 28px 20px;
        border-right: none !important;
        border-bottom: 1px solid #ECECEC !important;
    }

    .complementary-feature-card:last-child {
        border-bottom: none !important;
    }

    .feature-card-icon {
        min-height: 65px;
        margin-bottom: 18px;
    }

    .feature-card-icon img {
        max-height: 60px;
        max-width: 75px;
    }

    .feature-card-title {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .feature-card-desc {
        font-size: 14px;
    }
}