@font-face {
    font-family: 'Inter-Medium';
    src: url('asset/font/Inter-Medium.ttf') format('truetype');
}

@font-face {
    font-family: 'Inter';
    src: url('asset/font/Inter-Regular.ttf') format('truetype');
}
 
@font-face {
    font-family: 'Raleway';
    src: url('asset/font/Raleway-Bold.ttf') format('truetype');
}

html,body {
    position: relative;
    height: 100%;
    background: #06071B;
    margin: 0;
    padding: 0;
    cursor: default;
}

/* ========================================
   MAIN NAVIGATION BAR
   ======================================== */
.main-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    background: rgba(6, 7, 27, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1000;
    box-sizing: border-box;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.navbar-logo:hover {
    opacity: 0.85;
}

.navbar-logo img {
    width: 40px;
    height: 24px;
    object-fit: contain;
}

.navbar-logo span {
    color: #FFF;
    font-family: Poppins, 'Raleway', sans-serif;
    font-size: 24px;
    font-weight: 600;
}

.navbar-social {
    display: flex;
    align-items: center;
}

.navbar-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.navbar-social a:hover {
    opacity: 1;
}

.navbar-social img {
    width: 36px;
    height: 36px;
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.navbar-links .nav-link {
    color: rgba(255, 255, 255, 0.75);
    font-family: 'Inter';
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s ease;
    padding: 8px 0;
    position: relative;
}

.navbar-links .nav-link:hover {
    color: #FFF;
}

.navbar-links .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #9644FF;
    transition: width 0.2s ease;
}

.navbar-links .nav-link:hover::after {
    width: 100%;
}

.navbar-links .nav-link.active {
    color: #FFF;
}

.navbar-links .nav-link.active::after {
    width: 100%;
}

@media (max-width: 900px) {
    .main-navbar {
        padding: 0 30px;
    }

    .navbar-links {
        gap: 24px;
    }

    .navbar-links .nav-link {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .main-navbar {
        padding: 0 20px;
        height: 60px;
    }

    .navbar-logo span {
        font-size: 18px;
    }

    .navbar-logo img {
        width: 32px;
        height: 20px;
    }

    .navbar-links {
        gap: 12px;
    }

    .navbar-links .nav-link {
        font-size: 11px;
    }

    .navbar-social img {
        width: 28px;
        height: 28px;
    }
}

a {
    all: unset;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    font-size: 18px;
    color: #FFF;
    width: 100vw;
    height: 100vh; 
    overflow: hidden;
}

.nav-page {
    width: 100vw;
    height: 100vh;
    max-width: 100%;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    margin: 0;
}

.nav-page-content {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
}

.nav-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 96px;
    margin-left: 120px;
    margin-right: 120px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.30);
}

.nav-header-icon {
    width: 51px;
    height: 31px;
    margin-right: 8px;
}

.nav-header-name{
    color: #FFF;
    font-family: Poppins;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 103.68px;
    margin-right: auto;
}

.nav-header-more {
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.nav-link-btn {
    color: #FFF;
    font-family: 'Raleway';
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    margin-left: 32px;
    cursor: pointer;
}

.nav-header-content-title {
    color: #FFF;
    text-align: center;
    font-variant-numeric: lining-nums proportional-nums;
    font-family: 'Raleway';
    font-size: 80px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.nav-header-content-desc {
    color: #FFF;;
    text-align: center;
    margin-top: 24px;
    font-family: 'Inter';
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    opacity: 0.8;
    margin-left: 300px;
    margin-right: 300px;
}


.nav-header-btn {
    width: 190px;
    height: 56px;
    border-radius: 40px;
    background: #9644FF;
    text-align: center;
    line-height: 56px;
    margin: 0 auto;
    margin-top: 64px;
    color: #FFF;
    text-align: center;
    font-family: 'Raleway';
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    cursor: pointer;
}


.nav-center-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: center;
}

.nav-img-background {
    background-image: url('asset/div-background.png');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

.nav-background-b3 {
    background-image: url('asset/div-b3.png');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

.nav-background-b4 {
    background-image: url('asset/div-b4.png');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

.nav-label-title {
    color: #FFF;
    font-family: 'Raleway';
    font-size: 80px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
    margin-left: 150px;
    margin-right: 150px;
    text-align: center;
}


.nav-label-description {
    color: #FFF;;
    text-align: center;
    font-family: 'Inter';
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    opacity: 0.8;
    margin-left: 300px;
    margin-right: 300px; 
    padding-bottom: 20px;
    margin-top: 27px;
}

.nav-relative-container {
    position: relative;
}

.nav-label-30 {
    width: 850px;
    position: absolute;
    top: 155px;
    left: 190px;
    z-index: 2;
}

.nav-map-img {
    margin: auto;
    margin-bottom: 20px;
    z-index: 1; 
}

.nav-label-title-30 {
    color: #FFF;
    font-variant-numeric: lining-nums proportional-nums;
    font-family: 'Raleway';
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
}

.nav-label-description-30 {
    color: #FFF;
    font-family: 'Inter';
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    opacity: 0.8;
    margin-top: 14px;
}

.nav-horizontal-container {
    height: 600px;
    display: flex;
}

.nav-label-title-40 {
    color: #FFF;
    font-family: Raleway;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px; /* 120% */
}

.nav-label-description-40 {
    color: #FFF;
    font-family: 'Inter';
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px; /* 213.333% */
    opacity: 0.8;
}

.nav-vertical-container {
    width: 480px;
    margin-left: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: flex-start;
}

.nav-label-title-40 {
    margin-top: 20px;
    color: #FFF;
    font-family: 'Raleway';
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
}

.nav-label-description-40 {
    margin-top: 27px;
    color: #FFF;
    font-family: 'Inter';
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px; /* 213.333% */
    opacity: 0.8;
}

.nav-label-tag {
    color: #FFF;
    font-family: 'Raleway';
    font-size: 11px;
    font-style: normal;
    font-weight: 700;
    line-height: 11px; /* 100% */
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.nav-label-title-64 {
    color: #FFF;
    text-align: center;
    font-family: 'Raleway';
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.nav-label-description-64 {
    color:  #FFF;
    text-align: center;
    font-family: 'Inter';
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px; /* 177.778% */
    margin-top: 70px;
    margin-left: 348px;
    margin-right: 348px;
    opacity: 0.8;
}

.nav-label-title-36 {
    color: #FFF;
    text-align: center;
    font-family: 'Raleway';
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-top: 50px;
}

.nav-label-description-36 {
    color: #FFF;
    text-align: center;
    font-family: 'Inter';
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 19px;
}

.nav-spacer-20 {
    height: 20px;
}

.nav-list-container {
    display: flex; 
    margin-top: 40px;
}

.nav-list-item {
    cursor: pointer;
    width: 319px;
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: center;
}

.nav-margin-150 {
    margin-left: 150px;
}


.nav-section-content {
    width: 760px;
    margin: 0 auto;
    margin-top: 252px;
}

.nav-label-description-16 {
    color: #FFF;
    text-align: center;
    font-family: 'Inter';
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    opacity: 0.8;
}

.nav-label-title-16 {
    margin-top: 23px;
    color: #FFF;
    text-align: center;
    font-family: 'Raleway';
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.nav-margin {
    margin-top: 40px;
}

.nav-relative-page {
    position: relative;
    background-image: url('asset/div-b1.png');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

.nav-background-b2 {
    position: relative;
    background-image: url('asset/div-b2.png');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

.nav-shoppal {
    position: absolute;
    left: 117px;
    bottom: 137px;
    display: flex;

}

.nav-shoppal-name {
    color: #FFF;
    font-family: 'Raleway';
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    margin-left: 8px;
}

.wrapper {
    position: relative;
    display: inline-block; 
    color: rgba(255, 255, 255, 0.70);
    text-align: center;
    font-family: 'Raleway';
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px; /* 140% */
}

.registered-mark {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 12px;
    transform: translate(100%, 40%);
}

.nav-name {
    display: flex;
    text-align: center;
}

.split-line {
    width: 1px;
    height: 68px;
    background: rgba(255, 255, 255, 0.40);
    margin-left: 32px;
    margin-right: 32px;
    align-self: center;
}

.inter-24 {
    color: rgba(255, 255, 255, 0.70);
    font-family: 'Inter';
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

/* ========================================
   NEW BUSINESS SECTIONS STYLES
   ======================================== */

/* Section 1: Business Hero */
.business-hero {
    position: relative;
    background: linear-gradient(135deg, #06071B 0%, #0D0E2B 50%, #14153A 100%);
    overflow: hidden;
}

.business-hero-content {
    max-width: 900px;
    text-align: center;
    z-index: 2;
    position: relative;
    padding: 0 40px;
}

.business-tag {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 4px;
    border: 1px solid rgba(150, 68, 255, 0.35);
    background: rgba(150, 68, 255, 0.08);
    color: rgba(150, 68, 255, 0.95);
    font-family: 'Inter';
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.business-hero-title {
    color: #FFF;
    font-family: 'Raleway';
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 32px 0;
    text-shadow: 0 2px 20px rgba(150, 68, 255, 0.3);
}

.business-hero-desc {
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Inter';
    font-size: 18px;
    line-height: 1.8;
    margin: 0 0 24px 0;
}

.geometric-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0.05;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 50px, rgba(150, 68, 255, 0.3) 50px, rgba(150, 68, 255, 0.3) 51px),
        repeating-linear-gradient(-45deg, transparent, transparent 50px, rgba(150, 68, 255, 0.3) 50px, rgba(150, 68, 255, 0.3) 51px);
}

/* Section 2: Services Section */
.services-section {
    background: linear-gradient(180deg, #06071B 0%, #0A0B24 100%);
    padding: 80px 40px;
    box-sizing: border-box;
    width: 100%;
}

.business-section-title {
    color: #FFF;
    font-family: 'Raleway';
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin: 0 auto 20px auto;
    max-width: 1200px;
    box-sizing: border-box;
}

.business-section-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Inter';
    font-size: 18px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
    line-height: 1.6;
    box-sizing: border-box;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(150, 68, 255, 0.18);
    border-radius: 8px;
    padding: 36px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-sizing: border-box;
}

.service-card:hover {
    transform: translateY(-2px);
    border-color: rgba(150, 68, 255, 0.4);
    box-shadow: 0 4px 24px rgba(150, 68, 255, 0.15);
    background: rgba(150, 68, 255, 0.04);
}

.service-title {
    color: #FFF;
    font-family: 'Raleway';
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.service-desc {
    color: rgba(255, 255, 255, 0.75);
    font-family: 'Inter';
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* Section 3: Clients Section */
.clients-section {
    background: radial-gradient(circle at top right, rgba(150, 68, 255, 0.1) 0%, transparent 50%), #06071B;
}

.business-content-container {
    max-width: 1000px;
    width: 100%;
    padding: 0 40px;
    text-align: center;
}

.business-content-body {
    margin: 40px 0;
    text-align: left;
}

.business-body-text {
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Inter';
    font-size: 17px;
    line-height: 1.8;
    margin: 0 0 20px 0;
}

.business-body-text-large {
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Inter';
    font-size: 19px;
    line-height: 1.8;
    margin: 0 0 24px 0;
}

.highlight-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(150, 68, 255, 0.25);
    border-radius: 6px;
    padding: 40px 50px;
    margin-top: 48px;
}

.highlight-item {
    flex: 1;
    text-align: center;
}

.highlight-label {
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Inter';
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 8px;
}

.highlight-value {
    color: #FFF;
    font-family: 'Raleway';
    font-size: 20px;
    font-weight: 700;
}

.highlight-divider {
    width: 1px;
    height: 50px;
    background: rgba(150, 68, 255, 0.3);
    margin: 0 30px;
}

/* Section 4: U.S. Entity Section */
.us-entity-section {
    background: linear-gradient(135deg, #06071B 0%, #0D0E2B 100%);
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.capability-item {
    text-align: center;
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(150, 68, 255, 0.18);
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.capability-item:hover {
    background: rgba(150, 68, 255, 0.06);
    border-color: rgba(150, 68, 255, 0.35);
    transform: translateY(-2px);
}

.capability-text {
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Inter';
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.3px;
}

/* Section 5: Ownership Section */
.ownership-section {
    background: radial-gradient(circle at bottom left, rgba(150, 68, 255, 0.08) 0%, transparent 50%), #06071B;
}

.structure-content {
    margin-top: 40px;
}

.structure-main {
    margin-bottom: 40px;
    text-align: left;
}

.structure-highlights {
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid rgba(150, 68, 255, 0.6);
    border-radius: 4px;
    padding: 32px 40px;
    margin: 32px 0;
    border: 1px solid rgba(150, 68, 255, 0.2);
    border-left-width: 3px;
}

.structure-highlight-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 24px;
}

.structure-highlight-item:last-child {
    margin-bottom: 0;
}

.check-icon {
    color: #9644FF;
    font-size: 18px;
    font-weight: 700;
    margin-right: 20px;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(150, 68, 255, 0.12);
    border: 1.5px solid rgba(150, 68, 255, 0.4);
    border-radius: 4px;
}

.structure-highlight-item p {
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Inter';
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

.entity-badges {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.entity-badge {
    padding: 20px 32px;
    background: rgba(150, 68, 255, 0.08);
    border: 1px solid rgba(150, 68, 255, 0.25);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 180px;
}

.entity-badge-label {
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Inter';
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.entity-badge-location {
    color: rgba(255, 255, 255, 0.95);
    font-family: 'Raleway';
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* Section 6: Closing Section */
.closing-section {
    background: linear-gradient(135deg, #0D0E2B 0%, #06071B 50%, #14153A 100%);
}

.closing-content {
    max-width: 900px;
    text-align: center;
}

.closing-quote {
    position: relative;
    padding: 0 48px 48px 48px;
    margin-bottom: 48px;
}

.closing-text {
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Inter';
    font-size: 18px;
    line-height: 1.8;
    margin: 0;
    position: relative;
}

.closing-cta {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(150, 68, 255, 0.25);
    border-radius: 8px;
    padding: 48px;
}

.closing-cta-title {
    color: #FFF;
    font-family: 'Raleway';
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 32px 0;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

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

    .highlight-box {
        flex-direction: column;
        gap: 32px;
    }

    .highlight-divider {
        width: 100%;
        height: 1px;
        margin: 0;
    }
}

@media (max-width: 768px) {
    .business-hero-title {
        font-size: 36px;
    }

    .business-section-title {
        font-size: 32px;
    }

    .services-section {
        padding: 60px 40px;
    }

    .capabilities-grid {
        grid-template-columns: 1fr;
    }

    .business-content-container {
        padding: 0 24px;
    }

    .closing-cta-title {
        font-size: 24px;
    }
}

/* Deliverables Section */
.deliverables-container {
    width: 100%;
    max-width: 1200px;
}

.deliverables-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.deliverable-tab {
    padding: 20px 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(150, 68, 255, 0.18);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.deliverable-tab:hover {
    border-color: rgba(150, 68, 255, 0.4);
    background: rgba(150, 68, 255, 0.04);
}

.deliverable-tab:focus-visible {
    outline: 2px solid rgba(150, 68, 255, 0.8);
    outline-offset: 2px;
}

.deliverable-tab.expanded {
    border-color: rgba(150, 68, 255, 0.6);
    background: rgba(150, 68, 255, 0.12);
}

.deliverable-title {
    color: #FFF;
    font-family: 'Raleway';
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.deliverable-desc {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Inter';
    font-size: 13px;
    margin: 0;
    line-height: 1.4;
}

.examples-container {
    min-height: 300px;
}

.examples-panel {
    display: none;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 24px;
}

.examples-panel.active {
    display: flex;
}

.examples-panel img {
    max-height: 400px;
    border-radius: 6px;
    object-fit: contain;
}

@media (max-width: 900px) {
    .deliverables-tabs {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .deliverables-tabs {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   HOW IT WORKS SECTION (SpringBrand Style)
   ======================================== */

.how-it-works-section {
    background: linear-gradient(180deg, #0a0a0f 0%, #06071B 100%);
    padding: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
}

/* Allow scrolling on specific slides */
.swiper-slide-scrollable {
    overflow: hidden !important;
}

.hiw-container {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.hiw-header {
    text-align: center;
    padding-top: 60px;
    padding-bottom: 40px;
    flex-shrink: 0;
}

.hiw-title {
    font-family: 'Raleway';
    font-size: 56px;
    font-weight: 300;
    letter-spacing: 8px;
    margin: 0 0 24px 0;
}

.hiw-title-white {
    color: #FFF;
    font-weight: 400;
}

.hiw-title-gray {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
}

.hiw-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Inter';
    font-size: 18px;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.hiw-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1;
    overflow: hidden;
    padding-bottom: 60px;
}

.hiw-step {
    display: flex;
    gap: 24px;
}

.hiw-step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hiw-step-indicator {
    position: relative;
}

/* Line above the icon */
.hiw-step:not(:first-child) .hiw-step-indicator::before {
    content: '';
    position: absolute;
    width: 2px;
    top: -12px;
    bottom: calc(50% + 32px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(150, 68, 255, 0.7);
}

/* Line below the icon */
.hiw-step:not(:last-child) .hiw-step-indicator::after {
    content: '';
    position: absolute;
    width: 2px;
    top: calc(50% + 32px);
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(150, 68, 255, 0.7);
}

.hiw-step-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(20, 20, 30, 0.8);
    border: 1px solid rgba(150, 68, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(150, 68, 255, 0.8);
    flex-shrink: 0;
}

.hiw-step-content {
    flex: 1;
    background: rgba(18, 18, 28, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 28px 32px;
    transition: all 0.3s ease;
}

.hiw-step-content:hover {
    border-color: rgba(150, 68, 255, 0.25);
    background: rgba(22, 22, 35, 0.7);
}

.hiw-step-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 12px;
}

.hiw-step-title {
    color: #FFF;
    font-family: 'Raleway';
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.hiw-step-badge {
    padding: 6px 14px;
    border-radius: 4px;
    font-family: 'Inter';
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
}

.hiw-step-badge.hiw-badge-processing {
    background: rgba(150, 68, 255, 0.1);
    border-color: rgba(150, 68, 255, 0.4);
    color: rgba(150, 68, 255, 0.9);
}

.hiw-step-badge.hiw-badge-active {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.4);
    color: rgba(34, 197, 94, 0.9);
}

.hiw-step-desc {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Inter';
    font-size: 15px;
    line-height: 1.7;
    margin: 0 0 12px 0;
}

.hiw-step-desc:last-of-type {
    margin-bottom: 0;
}

.hiw-step-preview {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.hiw-step-preview img {
    max-height: 200px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    object-fit: contain;
    background: rgba(0, 0, 0, 0.3);
}

/* ========================================
   CASE STUDY SECTION (Fabrique x Shoppal)
   ======================================== */

.case-study-section {
    background: radial-gradient(circle at center, rgba(150, 68, 255, 0.08) 0%, transparent 60%), #06071B;
    padding: 40px 20px;
}

.case-study-section .business-content-container {
    max-width: 1100px;
}

.case-study-section .business-content-body {
    margin: 20px 0;
}

.case-study-section .business-body-text {
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 12px 0;
}

.case-study-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 24px;
}

.case-study-product {
    max-height: 260px;
    border-radius: 8px;
    border: 1px solid rgba(150, 68, 255, 0.25);
    object-fit: contain;
    background: rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.case-study-arrow {
    color: rgba(150, 68, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.case-study-arrow svg {
    width: 32px;
    height: 32px;
    animation: pulse-arrow 2s ease-in-out infinite;
}

@keyframes pulse-arrow {
    0%, 100% { opacity: 0.6; transform: translateX(0); }
    50% { opacity: 1; transform: translateX(6px); }
}

.case-study-outfits {
    display: flex;
    gap: 12px;
    align-items: center;
}

.case-study-outfits img {
    max-height: 240px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    object-fit: contain;
    background: rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.case-study-outfits img:hover {
    border-color: rgba(150, 68, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(150, 68, 255, 0.2);
}

img.case-study-result {
    max-height: 260px;
    border-radius: 8px;
    border: 1px solid rgba(150, 68, 255, 0.25);
    object-fit: contain;
    background: rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

/* Case Study Statistics */
.case-study-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
    width: 100%;
}

.stat-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(150, 68, 255, 0.18);
    border-radius: 6px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(150, 68, 255, 0.06);
    border-color: rgba(150, 68, 255, 0.35);
    transform: translateY(-2px);
}

.stat-value {
    color: #FFF;
    font-family: 'Raleway';
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 12px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Inter';
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

@media (max-width: 900px) {
    .case-study-flow {
        flex-direction: column;
        gap: 16px;
    }

    .case-study-arrow {
        transform: rotate(90deg);
    }

    .case-study-product {
        max-height: 120px;
        max-width: 100%;
    }

    .case-study-outfits {
        flex-wrap: wrap;
        justify-content: center;
    }

    .case-study-outfits img {
        max-height: 100px;
        max-width: 30%;
    }

    img.case-study-result {
        max-height: 100px;
        max-width: 20%;
    }

    .case-study-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-value {
        font-size: 32px;
    }

    .stat-card {
        padding: 24px 20px;
    }
}

/* Responsive for How It Works */
@media (max-width: 768px) {
    .hiw-container {
        padding: 0 20px;
    }

    .hiw-header {
        padding-top: 40px;
        padding-bottom: 24px;
    }

    .hiw-title {
        font-size: 36px;
        letter-spacing: 4px;
    }

    .hiw-subtitle {
        font-size: 16px;
    }

    .hiw-step {
        flex-direction: column;
        gap: 0;
    }

    .hiw-step-indicator {
        flex-direction: row;
        padding: 0 0 12px 0;
    }

    .hiw-step-line {
        width: auto;
        height: 2px;
        flex-grow: 1;
        margin: 0 0 0 12px;
        min-height: auto;
    }

    .hiw-step-content {
        padding: 20px 24px;
    }

    .hiw-step-title {
        font-size: 20px;
    }

    .hiw-step-preview img {
        max-height: 150px;
        max-width: 100%;
    }
}