/* B2B Solution Styles */

:root {
    /* Base Colors from User Guide */
    --bg-color: #0E0E0E;
    --neon: #C6FF00;
    --neon-blue: #00E5FF;
    --purple: #7B61FF;
    --male-blue: #5886FF;
    --pink: #FF4FD8;

    /* Font Priority: Segoe UI for English, then SimHei/YaHei for Chinese */
    --primary-font: "Segoe UI", "SimHei", "Microsoft YaHei", "微软雅黑", STHeiti, sans-serif;

    /* Stats Numbers Customization */
    --stats-num-font: 'Segoe UI', Tahoma, sans-serif;
    --stats-num-size: 3.5rem;
    --stats-num-weight: 700;
}

body {
    font-family: var(--primary-font);
}

/* Vertical Scaling for Latin in Title */
.title-accent-latin {
    display: inline-block;
    font-family: 'Segoe UI', Tahoma, sans-serif;
    font-weight: 700;
    transform: scaleY(1.3) translateY(10px);
    transform-origin: center bottom;
    margin: 0 10px;

    /* Inherit and re-apply gradient to solve the disappearing issue in nested spans */
    background: inherit;
    background-image: linear-gradient(90deg, var(--neon-blue), var(--male-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 1. Base Layout & Grid Systems */
@keyframes heroGlow {
    0% {
        text-shadow: 0 0 10px rgba(0, 229, 255, 0.3);
        transform: scale(1);
    }

    50% {
        text-shadow: 0 0 25px rgba(0, 229, 255, 0.6), 0 0 50px rgba(0, 229, 255, 0.3);
        transform: scale(1.02);
    }

    100% {
        text-shadow: 0 0 10px rgba(0, 229, 255, 0.3);
        transform: scale(1);
    }
}

.cta-btn-premium {
    background: linear-gradient(90deg, var(--neon-blue), var(--male-blue)) !important;
    color: #fff !important;
    padding: 10px 40px !important;
    /* Approximately half of original 16-20px */
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
    border: none !important;
    font-weight: 800;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cta-btn-premium:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 35px rgba(0, 229, 255, 0.6);
    background: linear-gradient(90deg, var(--male-blue), var(--neon-blue)) !important;
}

/* Sweep Effect for Premium Button */
.cta-btn-premium::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 150px;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.1) 30%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0.1) 70%,
            transparent 100%);
    transform: skewX(-45deg);
    transition: none;
}

.cta-btn-premium:hover::after {
    left: 150%;
    transition: all 0.8s ease-in-out;
}



/* --- 1. Hero Split Section --- */
.hero-split-section {
    min-height: 85vh;
    padding-top: 60px;
    position: relative;
    overflow: hidden;
}

.hero-split-container {
    max-width: 1520px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-left {
    flex: 1.2;
    z-index: 10;
}

.hero-right {
    flex: 0.8;
    height: 600px;
    position: relative;
}

/* Logo Wrap */
.hero-logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 5px;
    /* Tight with neon subtitle */
}

.hero-logo-img {
    width: 38px;
    height: auto;
}

.hero-logo-text {
    font-size: 28px;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-weight: 800;
    color: #fff;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5), 0 0 20px rgba(255, 255, 255, 0.2);
}

/* Neon Subtitle */
.hero-neon-subtitle {
    color: var(--neon);
    /* Neon Lime */
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 25px;
    text-shadow: 0 0 10px rgba(198, 255, 0, 0.4);
}

.hero-title-main {
    font-size: 5rem;
    line-height: 1.2;
    margin-bottom: 35px;
    font-family: 'Segoe UI', "Microsoft YaHei", "微软雅黑", SimHei, sans-serif;
    font-weight: 900;
    letter-spacing: normal;
}

.hero-title-tag {
    font-size: 2.1rem;
    /* 50% of the main title */
    background: linear-gradient(135deg, var(--neon-blue), var(--purple));
    color: #fff;
    -webkit-text-fill-color: #fff;
    padding: 12px 36px 16px;
    line-height: 1.2;
    border-radius: 100px;
    display: inline-block;
    margin-top: 15px;
    box-shadow: 3px 3px 12px rgba(0, 229, 255, 0.16);
    font-family: 'Segoe UI', "Microsoft YaHei", "微软雅黑", SimHei, sans-serif;
    font-weight: 700;
    letter-spacing: normal;
    line-height: 1;
}

.hero-desc-group {
    margin-bottom: 50px;
}

@keyframes heroDescFloat {

    0%,
    100% {
        transform: translateY(0);
        text-shadow: 0 0 10px rgba(0, 229, 255, 0.2);
    }

    50% {
        transform: translateY(-5px);
        text-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
    }
}

.hero-desc-line1,
.hero-desc-line2 {
    font-size: 1.6rem;
    line-height: 1.4;
    background: linear-gradient(135deg, #FFFFFF 20%, var(--neon-blue) 80%, var(--male-blue) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: heroDescFloat 4s infinite ease-in-out;
    margin: 0;
    display: block;
    /* Ensure individual lines float correctly */
}

/* Hero Integrated Stats */
.hero-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
    width: 120%;
}

.hs-item {
    text-align: left;
    padding-left: 0;
}

.hs-num {
    font-family: var(--stats-num-font);
    font-size: var(--stats-num-size);
    font-weight: var(--stats-num-weight);
    line-height: 1;
    background: linear-gradient(135deg, var(--neon-blue), var(--purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    margin-bottom: 15px;
}

.hs-unit {
    font-size: 1rem;
    margin-left: 4px;
    color: var(--neon) !important;
    -webkit-text-fill-color: var(--neon) !important;
    font-weight: 400;
    /* Removed bold */
}

.hs-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 19px;
    /* Increased from 16px (+3px) */
    font-weight: 700;
    margin: 0 0 12px 0;
    color: #fff;
}

.hs-label i {
    font-size: 1.1rem;
    /* Slightly increased to match text */
    background: linear-gradient(135deg, var(--neon), var(--neon-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hs-sub {
    font-size: 16.6px;
    /* Increased from 13.6px (+3px) */
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.5;
    word-break: keep-all;
    border-left: 2px solid transparent;
    border-image: linear-gradient(to bottom, var(--neon), var(--neon-blue)) 1;
    padding-left: 12px;
    margin-left: 2px;
}


.scroll-down-wrap {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.scroll-down-btn {
    font-size: 42px;
    background: linear-gradient(135deg, var(--neon-blue), var(--male-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: bounceDown 2s infinite;
    display: inline-block;
}

.scroll-down-btn:hover {
    transform: scale(1.15);
    filter: drop-shadow(0 0 10px rgba(0, 229, 255, 0.4));
}

@keyframes bounceDown {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
        opacity: 0.8;
    }

    40% {
        transform: translateY(-12px);
        opacity: 1;
    }

    60% {
        transform: translateY(-6px);
        opacity: 1;
    }
}



.services-header-box {
    padding-top: 75px;
}

.services-header-box,
.process-header-box,
.tech-header-box {
    text-align: center;
    margin-bottom: 0px !important;
}

/* Unified Section Titles: One place to control all h2 headers in B2B pages */
.services-header-box h2,
.process-header-box h2,
.tech-header-box h2 {
    text-align: center;
    font-size: 56px !important;
    margin-bottom: 25px;
    font-family: 'Segoe UI', "Microsoft YaHei", "微软雅黑", SimHei, sans-serif !important;
    font-weight: 900 !important;
    background: linear-gradient(135deg, var(--neon-blue), var(--purple)) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    letter-spacing: normal;
    display: block;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}





.section-desc {
    position: relative;
    display: inline-block !important;
    padding-bottom: 12px;
    background: linear-gradient(135deg, #00E5FF, #2979FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 500;
    font-size: 28px !important;
    letter-spacing: normal;
}

.section-desc::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
    border-radius: 10px;
}

.services-scroll-wrapper {
    width: 100%;
    overflow-x: auto;
    cursor: grab;
    padding-top: 40px;
    margin-bottom: 30px;
    -webkit-overflow-scrolling: touch;
    /* Hide scrollbar for cleaner look, but keep functionality */
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.services-scroll-wrapper::-webkit-scrollbar {
    display: none;
}

.services-scroll-track {
    display: flex;
    gap: 20px;
    padding: 0;
}

.services-scroll-track .premium-card {
    width: 520px;
    flex-shrink: 0;
    height: auto;
}

.services-dots-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 10px 0 40px;
}

.service-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-dot.active {
    background: var(--neon-blue);
    transform: scale(1.4);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.8);
    opacity: 1;
}

/* Services Slider Navigation Buttons */
.svc-nav-btn {
    position: absolute;
    top: 55%;
    /* Adjusted for card center height */
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    cursor: pointer;
    z-index: 100;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.svc-nav-btn:hover {
    background: rgba(0, 229, 255, 0.15);
    border-color: var(--neon-blue);
    color: var(--neon-blue);
    box-shadow: 0 0 25px rgba(0, 229, 255, 0.4);
}

.svc-nav-btn.prev:hover {
    transform: translateY(-50%) translateX(-30px) scale(1.1);
}

.svc-nav-btn.next:hover {
    transform: translateY(-50%) translateX(30px) scale(1.1);
}

.svc-nav-btn.prev {
    left: -22px;
    transform: translateY(-50%) translateX(-30px);
}

.svc-nav-btn.next {
    right: -22px;
    transform: translateY(-50%) translateX(30px);
}

@media (max-width: 1600px) {
    .svc-nav-btn.prev {
        left: 10px;
    }

    .svc-nav-btn.next {
        right: 10px;
    }
}

.other-services-container {
    max-width: 1520px;
    margin: 0 auto;
    padding: 0;
}

/* 2. Premium Service Cards (Clean & Flat Neon) */
.premium-card {
    padding: 30px 24px;
    border-radius: 24px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.16), rgba(123, 97, 255, 0.1));
    border: 1.5px solid transparent;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    background-size: 150% 150%;
    background-position: center;
    background-clip: padding-box !important;
    isolation: isolate;
}

.premium-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 229, 255, 0.2);
}

.premium-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 200px;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.08),
            rgba(255, 255, 255, 0.15),
            rgba(255, 255, 255, 0.08),
            transparent);
    transform: skewX(-45deg);
    pointer-events: none;
    transition: none;
}

.premium-card:hover::after {
    left: 200%;
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.premium-card.selected {
    border: 1px solid var(--neon) !important;
}

/* Horizontal 'Other' Card Restore: Full Width */
.premium-card.other-service {
    width: 100%;
    display: grid !important;
    grid-template-columns: auto auto 1fr !important;
    align-items: center !important;
    text-align: left;
    gap: 20px;
    padding: 30px 40px;
    margin-top: 10px;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.16), rgba(255, 79, 216, 0.35)) !important;
    background-size: 150% 150% !important;
    background-position: center !important;
    background-clip: padding-box !important;
}

.other-service .service-card-icon {
    margin-bottom: 0 !important;
}


.other-service .service-title {
    margin-bottom: 0 !important;
}

.other-service .card-text-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
}


/* Light Effects Disabled per User Request */
.card-glow {
    display: none !important;
}

.service-card-icon {
    display: block;
    width: fit-content;
    font-size: 42px;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}


/* Individual Card Icon & Title Gradients using All Scroll Track & Other Row */
.services-scroll-track .premium-card:nth-child(1) .service-card-icon {
    background-image: linear-gradient(135deg, var(--neon), var(--neon-blue));
}

.services-scroll-track .premium-card:nth-child(2) .service-card-icon {
    background-image: linear-gradient(135deg, var(--pink), var(--purple));
}

.services-scroll-track .premium-card:nth-child(3) .service-card-icon {
    background-image: linear-gradient(135deg, var(--neon), var(--neon-blue), var(--purple));
}

.services-scroll-track .premium-card:nth-child(4) .service-card-icon {
    background-image: linear-gradient(135deg, var(--neon), var(--pink));
}

.services-scroll-track .premium-card:nth-child(5) .service-card-icon {
    background-image: linear-gradient(135deg, var(--pink), var(--purple), var(--neon));
}

.services-scroll-track .premium-card:nth-child(6) .service-card-icon {
    background-image: linear-gradient(135deg, var(--neon-blue), var(--pink));
}

.other-services-container .other-service .service-card-icon {
    background-image: linear-gradient(135deg, var(--neon-blue), var(--purple));
}


.service-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.service-card-header .service-card-icon {
    margin-bottom: 0 !important;
}

.service-card-header .service-title {
    margin-bottom: 0 !important;
}

.service-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: normal;
    background: linear-gradient(135deg, var(--neon-blue), var(--purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: none;
    display: block !important;
    width: fit-content !important;
    /* Force width to match text only */
}

.service-desc {
    font-size: 15px;
    color: #00E5FF !important;
    line-height: 1.6;
    margin-bottom: 20px;
}

.select-check {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    transition: all 0.2s ease;
    font-size: 10px;
}

.premium-card.selected .select-check {
    color: var(--neon);
    opacity: 1;
}

.premium-card.selected .select-check {
    background: var(--neon);
    border-color: var(--neon);
}

.premium-card.selected .select-check i {
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    -webkit-text-fill-color: initial;
    color: #000 !important;
    font-size: 14px;
    font-weight: 900;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.service-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    opacity: 0.85;
}

/* 3. Custom Sections: Team Intro & Punchy Tagline */
.team-intro-box {
    margin-bottom: 80px;
    text-align: left;
    width: 100%;
}

.team-intro-box p {
    margin-bottom: 35px;
    word-break: keep-all;
    font-size: 22px !important;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

.punchy-tagline {
    grid-column: span 3;
    font-size: 1.3rem;
    line-height: 1.4;
    color: #00E5FF;
    font-weight: 800;
    border-left: 6px solid #C6FF00;
    padding-left: 10px;
    margin-top: 20px;
    /* Reduced to 1/3 */
    margin-bottom: 30px;
    /* Reduced to 1/3 */
    word-break: keep-all;
}

/* Stats Power Section (from albit_stats_power_v3) */
/* Special Numeric Highlight Section */

.sp-wrap {
    padding: 0 0 80px 0;
    /* Top 0 */
    background: transparent;
    position: relative;
    overflow: hidden;
    border: none;
    /* No border */
    margin-bottom: 60px;
    width: 100%;
}

.sp-bg-glow-1,
.sp-bg-glow-2,
.sp-bg-glow-3 {
    display: none;
}

.sp-bg-glow-1 {
    position: absolute;
    top: -60px;
    left: -60px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(123, 97, 255, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.sp-bg-glow-2 {
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.sp-bg-glow-3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 200px;
    background: radial-gradient(ellipse, rgba(198, 255, 0, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.sp-stats {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 0;
}

.sp-stat {
    padding: 0 40px;
    text-align: left;
    flex: 1;
    min-width: 150px;
}

.sp-stat:first-of-type {
    padding-left: 0;
}

.sp-stat:last-of-type {
    padding-right: 0;
}

.sp-num-wrap {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 1px;
    margin-bottom: 14px;
}

.sp-num {
    font-family: 'Segoe UI', sans-serif;
    font-size: 84px;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--neon-blue), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sp-unit {
    font-family: 'Segoe UI', sans-serif;
    font-size: 27px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 8px;
    color: var(--neon);
    align-self: flex-end;
}

.sp-plus {
    font-family: 'Segoe UI', sans-serif;
    font-size: 27px;
    font-weight: 400;
    color: var(--neon);
    align-self: flex-start;
    margin-top: 12px;
}

.sp-subtitle-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}

.sp-icon {
    font-size: 24px;
    background: linear-gradient(135deg, var(--neon), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sp-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.5px;
}

.sp-desc {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.8;
    border-left: 3px solid;
    border-image: linear-gradient(180deg, var(--neon), var(--neon-blue)) 1;
    padding-left: 18px;
    text-align: left;
    word-break: keep-all;
}

.sp-divider {
    display: block;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(198, 255, 0, 0.2), rgba(0, 229, 255, 0.2), transparent);
    align-self: stretch;
    flex-shrink: 0;
}

.services-grid-section {
    padding: 0 0 100px;
}

.services-header-box {
    text-align: center;
    margin-bottom: 80px;
}


.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.service-tag {
    position: relative;
    padding: 5px 10px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 12.6px;
    display: inline-block;
    transition: all 0.3s ease;
    z-index: 10;
    isolation: isolate;
    margin-bottom: 5px;
}

.service-tag>span {
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, var(--neon-blue), var(--male-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}



.service-tag::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 6px;
    padding: 1.5px;
    /* Border width */
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.45), rgba(123, 97, 255, 0.45));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.premium-card:hover .service-tag::before {
    display: block !important;
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 6px;
    background: linear-gradient(135deg, rgba(198, 255, 0, 0.45), rgba(0, 229, 255, 0.45)) !important;
    -webkit-mask: none !important;
    mask: none !important;
    z-index: -1 !important;
    /* Send to back within the .service-tag context */
}

.premium-card:hover .service-tag {
    z-index: 1;
}

.premium-card:hover .service-tag>span {
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    -webkit-text-fill-color: #FFFFFF !important;
}


/* 3. Horizontal Process Steps */
.process-line-dashed {
    position: absolute;
    top: 105px;
    left: 100px;
    right: 100px;
    border-top: 2px dashed rgba(255, 255, 255, 0.1);
    z-index: 1;
}

/* 3. Horizontal Process Steps (PV5 Design) */
.pv5-wrap {
    padding: 30px 0 60px;
    position: relative;
    overflow: hidden;
    margin-bottom: 60px;
}

.pv5-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 200px;
    background: radial-gradient(ellipse, rgba(0, 229, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.pv5-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.pv5-step {
    flex: 1;
    min-width: 120px;
    text-align: center;
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.pv5-icon-wrap {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.pv5-icon-wrap i {
    font-size: 26px;
    color: var(--neon);
}

.pv5-s1 .pv5-icon-wrap {
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.25), rgba(0, 229, 255, 0.06));
    border: 0.5px solid rgba(0, 229, 255, 0.3);
}

.pv5-s2 .pv5-icon-wrap {
    background: linear-gradient(135deg, rgba(0, 210, 255, 0.22), rgba(30, 100, 255, 0.06));
    border: 0.5px solid rgba(0, 210, 255, 0.25);
}

.pv5-s3 .pv5-icon-wrap {
    background: linear-gradient(135deg, rgba(88, 134, 255, 0.22), rgba(88, 134, 255, 0.06));
    border: 0.5px solid rgba(88, 134, 255, 0.25);
}

.pv5-s4 .pv5-icon-wrap {
    background: linear-gradient(135deg, rgba(123, 97, 255, 0.22), rgba(123, 97, 255, 0.06));
    border: 0.5px solid rgba(123, 97, 255, 0.25);
}

.pv5-s5 .pv5-icon-wrap {
    background: linear-gradient(135deg, rgba(160, 70, 240, 0.22), rgba(160, 70, 240, 0.06));
    border: 0.5px solid rgba(160, 70, 240, 0.25);
}

.pv5-s6 .pv5-icon-wrap {
    background: linear-gradient(135deg, rgba(198, 0, 255, 0.22), rgba(198, 0, 255, 0.06));
    border: 0.5px solid rgba(198, 0, 255, 0.25);
}

.pv5-num-row {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.pv5-num {
    font-family: 'Segoe UI', sans-serif;
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(45deg, #ffffff, var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.pv5-label {
    font-size: 10px;
    font-weight: 700;
    color: rgba(0, 229, 255, 0.45);
    letter-spacing: 0.1em;
}

.pv5-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    background: linear-gradient(90deg, var(--neon-blue), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    word-break: keep-all;
}

.pv5-desc {
    font-size: 16px;
    color: rgba(0, 229, 255, 0.65);
    line-height: 1.5;
    word-break: keep-all;
    max-width: 200px;
}

.pv5-desc b {
    color: var(--neon);
    font-weight: 700;
}

.pv5-connector {
    width: 0;
    height: 0;
    position: relative;
    z-index: 5;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-12px);
}

.pv5-connector-dot {
    width: 8px;
    height: 8px;
    background: var(--neon);
    border-radius: 50%;
    position: absolute;
    left: -80px;
    /* Half of 160px gap */
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 5px rgba(198, 255, 0, 0.6);
    z-index: 2;
}

.pv5-connector::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -72px;
    /* Start after dot */
    width: 144px;
    /* Bridge the 160px gap */
    height: 3px;
    background-image: linear-gradient(to right, rgba(0, 229, 255, 0.4) 60%, transparent 40%);
    background-size: 10px 100%;
    transform: translateY(-50%);
}

.pv5-connector::after {
    content: "";
    position: absolute;
    left: 72px;
    /* End of gap */
    top: 50%;
    width: 0;
    height: 0;
    border-left: 10px solid #C6FF00;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    transform: translateY(-50%);
}

.pv5-dot,
.pv5-arrow {
    display: none;
}

/* 4. Tech Stack Infinity Loop & Colors */
@keyframes scrollTrack {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.tech-header-box {
    text-align: center;
    margin-bottom: 60px;
}


.tech-infinity-scroll {
    overflow: hidden;
    padding-top: 30px;
    padding-bottom: 0px !important;
    /* Space for labels on top */
    width: 100%;
    display: flex;
    justify-content: flex-start;
    /* Changed from center to fix loop gap */
    margin: 0;
}

.tech-chip-group-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}


.tech-category-marker {
    position: absolute;
    top: -28px;
    left: 0;

    font-size: 12.6px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    white-space: nowrap;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    display: block;
    width: fit-content;
}

.marker-frontend {
    background: linear-gradient(45deg, var(--neon), var(--neon-blue));
}

.marker-backend {
    background: linear-gradient(45deg, var(--neon-blue), var(--male-blue));
}

.marker-ai {
    background: linear-gradient(45deg, var(--purple), var(--pink));
}

.marker-infra {
    background: linear-gradient(45deg, var(--pink), var(--neon));
}




.tech-track {
    display: flex;
    width: max-content;
    animation: scrollTrack 60s linear infinite;
}

.tech-group {
    display: flex;
    gap: 15px;
    padding-right: 15px;
    align-items: flex-end;
}


.tech-chip-premium {
    padding: 4px 24px;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    border: 1.5px solid transparent;
    position: relative;
    cursor: default;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    isolation: isolate;
}


.tech-chip-premium img {
    filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.5));
}

/* Premium Gradient Border: 1.5px Uniform with 45deg */
.chip-frontend {
    background: linear-gradient(45deg, rgba(198, 255, 0, 0.15), rgba(0, 229, 255, 0.05));
    border: none;
}

.chip-backend {
    background: linear-gradient(45deg, rgba(0, 229, 255, 0.15), rgba(88, 134, 255, 0.05));
    border: none;
}

.chip-ai {
    background: linear-gradient(45deg, rgba(123, 97, 255, 0.15), rgba(255, 79, 216, 0.05));
    border: none;
}

.chip-infra {
    background: linear-gradient(45deg, rgba(255, 79, 216, 0.15), rgba(198, 255, 0, 0.05));
    border: none;
}

.tech-chip-premium::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 100px;
    padding: 1.5px;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: -1;
}

.chip-frontend::before {
    background: linear-gradient(45deg, var(--neon), var(--neon-blue));
}

.chip-backend::before {
    background: linear-gradient(45deg, var(--neon-blue), var(--male-blue));
}

.chip-ai::before {
    background: linear-gradient(45deg, var(--purple), var(--pink));
}

.chip-infra::before {
    background: linear-gradient(45deg, var(--pink), var(--neon));
}


/* Multi-color Gradient Combinations - Kept for reference or other uses */
.chip-frontend-grad::before {
    background: linear-gradient(45deg, var(--neon), var(--neon-blue));
}

.chip-backend-grad::before {
    background: linear-gradient(45deg, var(--neon-blue), var(--male-blue));
}

.chip-ai-grad::before {
    background: linear-gradient(45deg, var(--purple), var(--pink));
}

.chip-infra-grad::before {
    background: linear-gradient(45deg, var(--pink), var(--neon));
}

.tech-legend-bar {
    max-width: 900px;
    margin: 0 auto 40px;
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 10px;
    flex-wrap: wrap;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.grad-frontend {
    background: linear-gradient(45deg, var(--neon), var(--neon-blue));
}

.grad-backend {
    background: linear-gradient(45deg, var(--neon-blue), var(--male-blue));
}

.grad-ai {
    background: linear-gradient(45deg, var(--purple), var(--pink));
}

.grad-infra {
    background: linear-gradient(45deg, var(--pink), var(--neon));
}

/* 5. Team Section Premium Style */
.card-inner-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    /* Minimalist border */
    border-radius: 24px;
    padding: 35px 25px;
    text-align: center;
    transition: 0.3s;
    height: 100%;
}

.team-card-premium:hover .card-inner-box {
    transform: translateY(-10px);
    border-color: var(--neon-blue);
    background: rgba(255, 255, 255, 0.05);
}

.phd-badge {
    background: rgba(0, 229, 255, 0.1);
    /* Soft Neon Blue */
    border: 1px solid rgba(0, 229, 255, 0.2);
    padding: 4px 12px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 25px;
}

.phd-text {
    color: var(--neon-blue);
    font-weight: 800;
    font-size: 0.75rem;
}

.member-img-box {
    width: 140px;
    height: 140px;
    margin: 0 auto 25px;
    border-radius: 50%;
    padding: 5px;
    border: 2px solid rgba(0, 229, 255, 0.3);
    /* Neon Blue Profile Border */
}

.member-title {
    color: var(--neon-blue);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 20px;
}

.team-card ul {
    list-style: none;
    padding: 0;
    margin: 30px 0 0;
    text-align: left;
}

.team-card ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    white-space: normal !important;
    /* 가로가 길면 2줄로 나타나게 수정 */
    word-break: break-all;
}

.team-card ul li::before {
    content: "\f058";
    /* FontAwesome circle-check */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--neon);
    font-size: 1.1rem;
}