/* ============================================
   개미창고 새 메인 페이지 스타일
   ============================================ */

/* 기본 변수 */
:root {
    --primary-color: #1a6dff;
    --primary-dark: #0064ff;
    --secondary-color: #0C1B2E;
    --text-dark: #0C1B2E;
    --text-gray: #9A9A9A;
    --bg-light: #f2f7ff;
    --bg-white: #ffffff;
    --border-color: #D6DAE3;
    --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --star-color: #FFC62B;
    --review-name-color: #0064FF;
}

/* 모바일 터치 최적화 */
* {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

button,
a,
.btn {
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* 컨테이너 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* 섹션 공통 */
.gc-section {
    padding: 80px 0;
}

.gc-section:nth-child(even) {
    background-color: var(--bg-light);
}

/* 섹션 타이틀 */
.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    line-height: 1.4;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    text-align: center;
    line-height: 1.6;
    margin-bottom: 60px;
}

/* 버튼 스타일 */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    box-sizing: border-box;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: 0px 4px 16px rgba(26, 109, 255, 0.2);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0px 4px 16px rgba(26, 109, 255, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

/* ============================================
   1. Hero Section
   ============================================ */
.hero {
    background-color: #1a6dff;
    color: white;
    padding: 100px 0 80px;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: white;
    line-height: 1.3;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 10px;
}

.hero-highlight {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 12px;
    font-weight: 500;
}

.hero-question {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin-bottom: 32px;
    font-weight: 600;
}

.btn-note {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.9;
    display: block;
    margin-top: 4px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.hero .btn-primary {
    background-color: #FFFFFF;
    color: var(--primary-color);
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.1);
}

.hero .btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
}

.hero .btn-outline {
    background-color: transparent;
    color: white;
    border-color: white;
}

.hero .btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: white;
}

/* ============================================
   2. Stats Section
   ============================================ */
.stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #0064ff 100%);
}

.stats-intro {
    font-size: 20px;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
}

.stats-sub-intro {
    font-size: 18px;
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.8;
    font-weight: 500;
}

.stats-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.stat-item {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #0064ff 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(26, 109, 255, 0.15);
    border-color: var(--primary-color);
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-number {
    display: block;
    font-size: 56px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0064ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.stat-label {
    display: block;
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 600;
    margin-top: 8px;
}

/* ============================================
   3. Why Section
   ============================================ */
.why-platforms {
    text-align: center;
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 60px;
    margin-top: 20px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    background: var(--bg-white);
    padding: 32px 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: #ECECFF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 28px;
    color: var(--primary-color);
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
    margin: 0;
}

.feature-subtitle {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
    line-height: 1;
    margin-bottom: 8px;
}

.api-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
}

/* ============================================
   4. Features Section
   ============================================ */
.feature-cols {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.feature-col {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.feature-col:hover {
    box-shadow: var(--shadow-md);
}

.feature-col-icon {
    width: 64px;
    height: 64px;
    background: #ECECFF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-col-icon i {
    font-size: 28px;
    color: var(--primary-color);
}

.feature-col-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.feature-col-desc {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* ============================================
   2-1. 실시간 입출고 정보 Section
   ============================================ */
.realtime-inbound {
    background-color: var(--bg-light);
}

.inbound-list::after {
    background: linear-gradient(to bottom, rgba(242, 247, 255, 0) 0%, rgba(242, 247, 255, 0.95) 50%, rgba(242, 247, 255, 1) 100%);
}

.inbound-outbound-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.inbound-section,
.outbound-section {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    height: 100%;
}

.inbound-section h3,
.outbound-section h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
}

.top-items-section {
    margin-bottom: 30px;
}

.top-items-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-align: left;
    padding-left: 8px;
    border-left: 4px solid var(--primary-color);
}

.top-items-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.outbound-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(266px, 1fr));
    gap: 12px;
    flex: 1;
    min-height: 0;
    position: relative;
    padding-bottom: 0;
    overflow: visible;
    align-items: start;
}

.outbound-list::after {
    display: none;
}

.inbound-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(266px, 1fr));
    gap: 12px;
    flex: 1;
    min-height: 0;
    position: relative;
    padding-bottom: 0;
    overflow: visible;
    align-items: start;
}

.inbound-list::after {
    display: none;
}

.inbound-list-item {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    position: relative;
    z-index: 2;
    min-width: 266px;
    max-width: 100%;
    min-height: 120px;
    box-sizing: border-box;
    overflow: hidden;
}

.inbound-list-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.list-item-image {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e9ecef;
}

.list-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.list-item-code {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    word-break: break-word;
    line-height: 1.3;
    margin: 0 0 4px 0;
    flex-shrink: 0;
    max-width: 100%;
    text-align: left;
    overflow-wrap: break-word;
}

.list-item-order-code {
    font-size: 11px;
    color: var(--text-dark);
    font-weight: 600;
    word-break: break-word;
    line-height: 1.3;
    margin: 0 0 4px 0;
    flex-shrink: 0;
    max-width: 100%;
    text-align: left;
    overflow-wrap: break-word;
}

.list-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-width: 0;
    text-align: left;
}

.quantity-wrapper {
    display: flex;
    align-items: flex-start;
    margin-top: 4px;
}

.quantity-text {
    font-size: 13px;
    color: var(--text-dark);
    font-weight: 500;
    margin: 0;
    flex-shrink: 0;
    line-height: 1.4;
    text-align: left;
}

.quantity-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    display: inline;
}

.inbound-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-gray);
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.inbound-empty p {
    margin: 0;
    font-size: 16px;
}

/* 반응형 스타일 */
@media (max-width: 1024px) {
    .inbound-outbound-wrapper {
        gap: 30px;
    }

    .list-item-image {
        width: 70px;
        height: 70px;
    }

    .list-item-code {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .inbound-outbound-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .inbound-section h3,
    .outbound-section h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .top-items-title {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .top-items-list {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 15px;
    }

    .inbound-list,
    .outbound-list {
        grid-template-columns: 1fr;
    }

    .inbound-list-item {
        width: 100%;
        min-width: auto;
        height: auto;
        min-height: 120px;
        padding: 12px;
        gap: 10px;
        flex-direction: row;
    }

    .list-item-image {
        width: 100px;
        height: 100px;
        flex-shrink: 0;
    }

    .list-item-info {
        flex: 1;
        min-width: 0;
        text-align: left;
    }

    .list-item-code {
        font-size: 13px;
        margin-bottom: 3px;
        text-align: left;
    }

    .list-item-order-code {
        font-size: 11px;
        margin-bottom: 3px;
        text-align: left;
    }

    .quantity-wrapper {
        margin-top: 3px;
    }

    .quantity-text {
        font-size: 12px;
        text-align: left;
    }

    .quantity-value {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .inbound-list-item {
        width: 100%;
        min-width: auto;
        height: auto;
        min-height: 110px;
        padding: 10px;
        gap: 8px;
        flex-direction: row;
    }

    .list-item-image {
        width: 80px;
        height: 80px;
        flex-shrink: 0;
    }

    .list-item-info {
        flex: 1;
        min-width: 0;
        text-align: left;
    }

    .list-item-code {
        font-size: 12px;
        margin-bottom: 2px;
        text-align: left;
    }

    .list-item-order-code {
        font-size: 10px;
        margin-bottom: 2px;
        text-align: left;
    }

    .quantity-wrapper {
        margin-top: 2px;
    }

    .quantity-text {
        font-size: 11px;
        text-align: left;
    }

    .quantity-value {
        font-size: 14px;
    }
}

/* ============================================
   4-1. 시스템 기반 운영 Section
   ============================================ */
.system-based {
    background-color: var(--bg-light);
}

.system-based-content {
    max-width: 1000px;
    margin: 0 auto;
}

.system-based-text {
    background: var(--bg-white);
    padding: 50px 40px;
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    margin-bottom: 50px;
    text-align: center;
}

.system-text-line {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 400;
}

.system-text-line:last-of-type {
    margin-bottom: 0;
}

.system-text-highlight {
    font-size: 22px;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.6;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
}

.system-icons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.system-icon-item {
    background: var(--bg-white);
    padding: 32px 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.system-icon-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.system-icon-circle {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #ECECFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.system-icon-item:hover .system-icon-circle {
    background: var(--primary-color);
    box-shadow: 0 8px 24px rgba(26, 109, 255, 0.3);
}

.system-icon-circle i {
    font-size: 32px;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.system-icon-item:hover .system-icon-circle i {
    color: #fff;
}

.system-icon-label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.system-based-cta {
    text-align: center;
    margin-top: 40px;
}

/* ============================================
   4-2. MyPage Preview Section
   ============================================ */
.mypage {
    background-color: var(--bg-light);
    overflow: hidden;
    /* For floating elements */
}

.mypage-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
}

.mypage-text {
    flex: 1 1 320px;
}

.mypage-text .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.mypage-desc {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.mypage-visual {
    flex: 1 1 320px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.mypage-image-container {
    position: relative;
    width: 100%;
    max-width: 600px;
}

.mypage-image {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease;
}

.mypage-image:hover {
    transform: scale(1.02);
}

/* Floating Cards */
.float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 16px 20px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.5);
    animation: floatBounce 4s ease-in-out infinite;
}

.float-card-1 {
    top: 10%;
    left: -30px;
    animation-delay: 0s;
}

.float-card-2 {
    bottom: 20%;
    right: -20px;
    animation-delay: 1.5s;
}

.float-card-3 {
    top: -20px;
    right: 10%;
    animation-delay: 2.5s;
}

.float-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}

.float-content {
    display: flex;
    flex-direction: column;
}

.float-label {
    font-size: 12px;
    color: var(--text-gray);
    font-weight: 500;
}

.float-value {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 700;
}

@keyframes floatBounce {

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

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

/* 반응형 */
@media (max-width: 768px) {
    .mypage-inner {
        flex-direction: column;
        gap: 40px;
    }

    .mypage-text {
        text-align: center;
    }

    .mypage-text .section-title {
        text-align: center;
    }

    .float-card {
        padding: 12px 16px;
    }

    .float-card-1 {
        left: 0;
        top: 5%;
    }

    .float-card-2 {
        right: 0;
        bottom: 10%;
    }

    .float-card-3 {
        right: 5%;
        top: -10px;
    }

    .float-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .float-label {
        font-size: 11px;
    }

    .float-value {
        font-size: 14px;
    }
}

/* ============================================
   5. Process Section
   ============================================ */
.step-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    position: relative;
}

.step-item {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 화살표 추가 - 3열 그리드에서 1열, 2열 아이템에만 */
.step-item:nth-child(3n+1)::after,
.step-item:nth-child(3n+2)::after {
    content: '→';
    position: absolute;
    right: -30px;
    /* gap(30px)의 중앙에 배치 */
    top: 50%;
    transform: translateY(-50%);
    font-size: 32px;
    color: var(--primary-color);
    font-weight: 300;
    z-index: 1;
    pointer-events: none;
}

/* 마지막 행의 아이템에는 화살표 제거 */
.step-item:nth-child(3n)::after {
    display: none;
}

.step-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.step-icon-wrapper {
    position: relative;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 700;
    line-height: 48px;
    box-shadow: 0px 4px 12px rgba(26, 109, 255, 0.3);
    flex-shrink: 0;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: #ECECFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.step-icon i {
    font-size: 32px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.step-item:hover .step-icon {
    background: var(--primary-color);
    transform: scale(1.05);
}

.step-item:hover .step-icon i {
    color: #fff;
}

.step-content {
    flex: 1;
    width: 100%;
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.step-desc {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   6. 화주사 해방 Section
   ============================================ */
.owner-benefits {
    background-color: var(--bg-light);
}

.benefits-negative-section {
    background: var(--bg-white);
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    margin-bottom: 40px;
    border: 2px solid #ffebee;
}

.benefits-section-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.benefits-icon-negative,
.benefits-icon-positive {
    font-size: 28px;
}

.benefits-negative-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 800px;
    margin: 0 auto;
}

.benefits-negative-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.6;
}

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

.benefits-negative-item i {
    color: #e74c3c;
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.benefits-negative-conclusion {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 0;
}

.benefits-positive-section {
    background: var(--bg-white);
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    margin-bottom: 40px;
    border: 2px solid #e8f5e9;
}

.benefits-positive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.benefits-positive-item {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.benefits-positive-item:hover {
    background: #ECECFF;
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.benefits-positive-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefits-positive-icon i {
    font-size: 28px;
    color: #fff;
}

.benefits-positive-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.5;
    margin: 0;
}

.benefits-focus-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 50px 40px;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: var(--shadow-lg);
}

.benefits-focus-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.benefits-focus-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.benefits-focus-desc {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin: 0;
}

.benefits-final-message {
    text-align: center;
    padding: 30px;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 12px;
}

.benefits-final-text {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.6;
}

/* 반응형 스타일 */
@media (max-width: 1024px) {
    .benefits-positive-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-negative-section,
    .benefits-positive-section {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .benefits-section-title {
        font-size: 20px;
        flex-direction: column;
        gap: 8px;
    }

    .benefits-negative-section,
    .benefits-positive-section {
        padding: 30px 20px;
    }

    .benefits-negative-item {
        font-size: 15px;
        padding: 14px 0;
    }

    .benefits-positive-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefits-focus-section {
        padding: 40px 20px;
    }

    .benefits-focus-title {
        font-size: 24px;
    }

    .benefits-focus-desc {
        font-size: 18px;
    }

    .benefits-final-text {
        font-size: 18px;
    }
}

/* Pricing Section (기존 스타일 유지 - 다른 곳에서 사용될 수 있음) */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.pricing-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.pricing-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.pricing-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    background: #ECECFF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-icon i {
    font-size: 28px;
    color: var(--primary-color);
}

.pricing-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.pricing-amount {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
    line-height: 1.4;
}

.pricing-amount .pricing-detail {
    font-size: 16px;
    color: var(--text-gray);
    font-weight: 400;
}

.pricing-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
}

.pricing-detail {
    font-size: 16px;
    color: var(--text-gray);
    font-weight: 400;
}

.pricing-desc {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
}

.pricing-desc-highlight {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 16px;
    margin-top: 8px;
}

.pricing-highlight {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 14px;
    background: #ECECFF;
    padding: 12px 16px;
    border-radius: 8px;
    margin-top: 16px;
    border-left: 4px solid var(--primary-color);
    white-space: nowrap;
}

.pricing-note {
    text-align: center;
    font-size: 14px;
    margin-bottom: 60px;
}


/* ============================================
   7. Testimonials Section (Dark & Flashy Redesign)
   ============================================ */
.testimonials {
    background: linear-gradient(135deg, #050C18 0%, #0F2038 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

/* Flashy Background Effect */
.testimonials::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(26, 109, 255, 0.08) 0%, transparent 50%);
    animation: rotateBg 60s linear infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes rotateBg {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.testimonials .container {
    position: relative;
    z-index: 1;
}

.testimonials .section-title {
    color: #ffffff;
    text-shadow: 0 0 20px rgba(26, 109, 255, 0.5);
    margin-bottom: 16px;
}

.testimonials .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 70px;
}

.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 36px 30px;
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-item.active {
    opacity: 1;
    transform: translateY(0);
}

/* Card Glow Effect on Hover */
.testimonial-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    opacity: 0;
}

.testimonial-item:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 50px rgba(26, 109, 255, 0.15);
}

.testimonial-item:hover::after {
    transform: scaleX(1);
    opacity: 1;
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.testimonial-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 30px;
    flex: 1;
    font-style: normal;
    word-break: keep-all;
    font-weight: 300;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.review_img {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.author-stars {
    color: var(--star-color);
    font-size: 13px;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 198, 43, 0.4);
}

/* 반응형 */
@media (max-width: 1024px) {
    .testimonial-slider {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonial-slider {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .testimonial-item {
        padding: 30px 24px;
    }

    .testimonial-text {
        font-size: 15px;
    }
}


/* ============================================
   7-1. Capabilities Section
   ============================================ */
.capabilities {
    background-color: var(--bg-light);
}

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

/* 반응형 */
@media (max-width: 1200px) {
    .capabilities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

@media (max-width: 768px) {
    .capabilities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .capability-card {
        padding: 30px 20px;
    }
}

.capability-card {
    background: var(--bg-white);
    padding: 40px 32px;
    border-radius: 16px;
    border: 2px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.capability-card:hover {
    border-color: #1D7BFF;
    box-shadow: 0 8px 24px rgba(29, 123, 255, 0.15);
    transform: translateY(-4px);
}

.capability-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #1D7BFF 0%, #0DF2FF 100%);
    border-radius: 50%;
    border: 6px solid #1D7BFF;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.capability-card:hover .capability-icon {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(29, 123, 255, 0.3);
}

.capability-icon i {
    font-size: 36px;
    color: #fff;
    font-weight: 400;
}

.capability-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 50%;
}

.capability-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.capability-desc {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.capabilities-final-message {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.8;
    margin: 60px 0 40px;
    padding: 0 20px;
}

.capabilities-cta {
    text-align: center;
}

/* ============================================
   8. FAQ Section
   ============================================ */
.faq-list {
    max-width: 800px;
    margin: 60px auto 0;
}

.faq-item {
    background: var(--bg-white);
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 24px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item {
    border: 1px solid var(--border-color);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 30px 24px;
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
}

.faq-answer p {
    margin: 0;
}

.faq-answer strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* ============================================
   9. CTA Banner Section
   ============================================ */
.cta {
    background-color: #0064ff;
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 100, 255, 0.95);
    z-index: 0;
}

.cta .container {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.cta-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    color: #ffffff;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta .btn-primary {
    background-color: #FFFFFF;
    color: var(--primary-color);
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.1);
}

.cta .btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
}

.cta .btn-outline {
    border-color: #fff;
    color: #fff;
    background-color: transparent;
}

.cta .btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: #fff;
}

/* ============================================
   1-1. 실제 운영 증거 Section
   ============================================ */
.proof-section {
    background-color: var(--bg-light);
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.proof-item {
    text-align: center;
}

.proof-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 16px;
    border: 1px solid var(--border-color);
}

.proof-desc {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 600;
    margin: 0;
}

.proof-cta {
    text-align: center;
    margin-top: 50px;
}

/* ============================================
   3-1. 유형별 사용 사례 Section
   ============================================ */
.use-cases {
    background-color: var(--bg-light);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.use-case-card {
    background: var(--bg-white);
    padding: 32px 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.use-case-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: #ECECFF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.use-case-icon i {
    font-size: 28px;
    color: var(--primary-color);
}

.use-case-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.use-case-desc {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.use-cases-cta {
    text-align: center;
    margin-top: 50px;
}

/* 시스템 물류 핵심 요약 */
.system-summary-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 50px 0 60px;
    padding: 40px;
    background: linear-gradient(135deg, #ECECFF 0%, #f0f4ff 100%);
    border-radius: 16px;
    border: 2px solid var(--primary-color);
}

.summary-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}

.summary-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.summary-icon i {
    font-size: 20px;
    color: #fff;
}

.summary-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-dark);
}

.summary-text strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
}

/* 시스템 물류 소개 카드 */
.system-logistics-card {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    background: var(--bg-white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
    margin-bottom: 60px;
}

.system-logistics-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.system-logistics-icon i {
    font-size: 40px;
    color: #fff;
}

.system-logistics-content {
    flex: 1;
}

.system-logistics-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.system-logistics-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0;
}

.system-logistics-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

.system-cost-highlight {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 20px;
    padding: 16px 20px;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 8px;
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 600;
}

.system-cost-highlight i {
    font-size: 20px;
    color: #ffc107;
    flex-shrink: 0;
    margin-top: 2px;
}

.system-cost-text {
    flex: 1;
    line-height: 1.3;
}

.system-cost-text strong {
    display: block;
    margin-bottom: 0;
    color: var(--text-dark);
    font-weight: 700;
}

/* 업종별 맞춤형 시스템 섹션 */
.industry-custom-section {
    margin-bottom: 60px;
}

.industry-section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 40px;
}

/* 맞춤형 시스템 하이라이트 */
.custom-system-highlight {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 50px 40px;
    border-radius: 16px;
    margin-bottom: 50px;
    box-shadow: var(--shadow-lg);
}

.custom-system-inner {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.custom-system-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.custom-system-icon i {
    font-size: 40px;
    color: #fff;
}

.custom-system-content {
    flex: 1;
}

.custom-system-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.custom-system-desc {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

.custom-system-desc strong {
    color: #fff;
    font-weight: 700;
}

/* 반응형 */
@media (max-width: 1024px) {
    .system-summary-box {
        grid-template-columns: repeat(2, 1fr);
    }

    .system-logistics-card {
        flex-direction: column;
        text-align: center;
    }

    .custom-system-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .system-summary-box {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }

    .system-logistics-card {
        padding: 30px 20px;
    }

    .custom-system-highlight {
        padding: 40px 20px;
    }

    .custom-system-title {
        font-size: 24px;
    }

    .custom-system-desc {
        font-size: 16px;
    }
}

/* ============================================
   6-1. 샘플 견적 Section
   ============================================ */
.sample-quote {
    background-color: var(--bg-light);
}

.quote-form {
    max-width: 800px;
    margin: 60px auto 0;
    background: var(--bg-white);
    padding: 50px 40px;
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.quote-inputs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.quote-input-group {
    display: flex;
    flex-direction: column;
}

.quote-input-group label {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.quote-input-group input,
.quote-input-group select {
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    color: var(--text-dark);
    background-color: var(--bg-white);
    transition: border-color 0.3s ease;
}

.quote-input-group input:focus,
.quote-input-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.quote-result {
    text-align: center;
    padding: 30px;
    background: #ECECFF;
    border-radius: 12px;
    margin-bottom: 30px;
}

.quote-result-label {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 12px;
}

.quote-result-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

.quote-cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ============================================
   6-2. 시스템 대시보드 미리보기 Section
   ============================================ */
.dashboard-preview {
    background-color: var(--bg-light);
}

.dashboard-preview-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
}

.dashboard-preview-visual {
    flex: 1 1 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-preview-image {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.dashboard-preview-content {
    flex: 1 1 400px;
}

.dashboard-preview-content .section-title {
    text-align: left;
    margin-bottom: 40px;
}

.dashboard-features {
    margin-bottom: 40px;
}

.dashboard-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 32px;
}

.dashboard-feature:last-child {
    margin-bottom: 0;
}

.dashboard-feature-icon {
    width: 56px;
    height: 56px;
    background: #ECECFF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dashboard-feature-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.dashboard-feature-text {
    flex: 1;
}

.dashboard-feature-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.dashboard-feature-desc {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.dashboard-preview-cta {
    margin-top: 40px;
}

/* ============================================
   Floating CTA Button
   ============================================ */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    animation: floatBounce 2s ease-in-out infinite;
}

.floating-cta-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #fff;
    padding: 18px 28px;
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(26, 109, 255, 0.4);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.floating-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(26, 109, 255, 0.5);
    color: #fff;
}

.floating-cta-icon {
    font-size: 24px;
    line-height: 1;
}

.floating-cta-text {
    line-height: 1.2;
}

@keyframes floatBounce {

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

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

/* ============================================
   반응형 디자인
   ============================================ */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    .gc-section {
        padding: 70px 0;
    }

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

    .hero-title {
        font-size: 36px;
        text-align: center;
    }

    .hero-subtitle,
    .hero-highlight,
    .hero-question {
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

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

    .feature-cols {
        grid-template-columns: 1fr;
    }

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

    /* 태블릿: 2열 그리드에서 1열 아이템에만 화살표 */
    .step-item:nth-child(3n+1)::after,
    .step-item:nth-child(3n+2)::after {
        display: none;
    }

    .step-item:nth-child(2n+1)::after {
        content: '→';
        position: absolute;
        right: -24px;
        /* gap(24px)의 중앙에 배치 */
        top: 50%;
        transform: translateY(-50%);
        font-size: 28px;
        color: var(--primary-color);
        font-weight: 300;
        z-index: 1;
        pointer-events: none;
        display: block;
    }

    .step-item:nth-child(2n)::after {
        display: none;
    }

    .testimonial-slider {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .testimonial-item {
        padding: 30px 24px;
    }

    .testimonial-item::before {
        font-size: 60px;
        top: 15px;
        left: 20px;
    }

    .testimonial-text {
        font-size: 15px;
    }

    .review_img {
        width: 50px;
        height: 50px;
    }

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

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

    .api-integration-wrapper {
        gap: 25px;
    }

    .api-column {
        height: 180px;
    }

    .api-item {
        min-width: 160px;
        padding: 20px 16px;
    }

    .api-logo {
        font-size: 40px;
    }

    .api-name {
        font-size: 14px;
    }

    .system-icons {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .system-text-line {
        font-size: 16px;
    }

    .system-text-highlight {
        font-size: 20px;
    }

    .quote-inputs {
        grid-template-columns: 1fr;
    }

    .dashboard-preview-inner {
        flex-direction: column;
    }

    .dashboard-preview-content .section-title {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .gc-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .hero {
        padding: 80px 0 60px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .hero-highlight {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .hero-question {
        font-size: 17px;
        margin-bottom: 28px;
    }

    .hero {
        padding-top: 120px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
        margin: 0;
        padding: 0;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 100%;
        text-align: center;
        margin: 0;
        box-sizing: border-box;
    }

    .hero-image {
        max-width: 100%;
        margin-top: 40px;
    }

    .mypage-inner {
        flex-direction: column;
        gap: 40px;
    }

    .mypage-text {
        flex: 1 1 100%;
    }

    .mypage-text .section-title {
        text-align: center;
    }

    .mypage-visual {
        flex: 1 1 100%;
    }

    .stats-list {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .stat-item {
        padding: 32px 24px;
    }

    .stat-number {
        font-size: 42px;
    }

    .stat-label {
        font-size: 16px;
    }

    .stats-intro {
        font-size: 18px;
        margin-bottom: 40px;
    }

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

    .step-timeline {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* 모바일: 모든 화살표 제거 (세로 배치) */
    .step-item::after {
        display: none !important;
    }

    .step-item {
        padding: 28px 20px;
    }

    .step-icon-wrapper {
        margin-bottom: 16px;
        gap: 10px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
        line-height: 40px;
    }

    .step-icon {
        width: 60px;
        height: 60px;
    }

    .step-icon i {
        font-size: 24px;
    }

    .step-title {
        font-size: 17px;
    }

    .step-desc {
        font-size: 13px;
    }

    .step-icon-wrapper {
        width: 90px;
        height: 90px;
    }

    .step-icon {
        width: 70px;
        height: 70px;
    }

    .step-icon i {
        font-size: 28px;
    }

    .step-title {
        font-size: 18px;
    }

    .step-desc {
        font-size: 14px;
    }

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

    .testimonial-slider {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-item {
        padding: 28px 20px;
    }

    .testimonial-item::before {
        font-size: 50px;
        top: 12px;
        left: 15px;
    }

    .testimonial-text {
        font-size: 14px;
    }

    .review_img {
        width: 48px;
        height: 48px;
    }

    .author-name {
        font-size: 15px;
    }

    .author-stars {
        font-size: 14px;
    }

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

    .use-cases-grid {
        grid-template-columns: 1fr;
    }

    .api-integration-wrapper {
        gap: 20px;
    }

    .api-column {
        height: 160px;
    }

    .api-item {
        min-width: 150px;
        padding: 18px 14px;
    }

    .api-logo {
        font-size: 36px;
    }

    .api-name {
        font-size: 13px;
    }

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

    .system-icon-circle {
        width: 64px;
        height: 64px;
    }

    .system-icon-circle i {
        font-size: 24px;
    }

    .system-text-line {
        font-size: 15px;
    }

    .system-text-highlight {
        font-size: 18px;
        margin-top: 24px;
        padding-top: 24px;
    }

    .system-based-text {
        padding: 30px 20px;
    }

    .system-icon-item {
        padding: 24px 16px;
    }

    .quote-form {
        padding: 30px 20px;
    }

    .quote-cta {
        flex-direction: column;
    }

    .quote-cta .btn {
        width: 100%;
    }

    .cta-title {
        font-size: 32px;
    }

    .cta-subtitle {
        font-size: 18px;
    }

    .cta-actions {
        flex-direction: column;
        margin: 0;
        padding: 0;
    }

    .cta-actions .btn {
        width: 100%;
        max-width: 100%;
        margin: 0;
        box-sizing: border-box;
    }

    /* 입출고 정보 섹션 모바일 최적화 */
    .stats-sub-intro {
        font-size: 16px;
        margin-bottom: 30px;
    }

    /* Use Cases 섹션 모바일 최적화 */
    .system-summary-box {
        padding: 24px 20px;
    }

    .summary-text {
        font-size: 15px;
    }

    .system-logistics-card {
        padding: 30px 20px;
    }

    .system-cost-text {
        font-size: 15px;
    }

    .industry-custom-grid {
        gap: 20px;
    }

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

    .custom-system-highlight {
        padding: 24px 20px;
    }

    /* Benefits 섹션 모바일 최적화 */
    .benefits-positive-item {
        padding: 24px 20px;
    }

    .benefits-focus-section {
        padding: 35px 24px;
    }

    .benefits-focus-title {
        font-size: 22px;
    }

    .benefits-focus-desc {
        font-size: 16px;
    }

    .benefits-final-text {
        font-size: 17px;
    }

    /* Dashboard Preview 모바일 최적화 */
    .dashboard-preview-content .section-title {
        font-size: 24px;
    }

    .dashboard-feature-title {
        font-size: 19px;
    }

    .dashboard-feature-desc {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .gc-section {
        padding: 50px 0;
    }

    .hero {
        padding: 60px 0 50px;
    }

    .hero-title {
        font-size: 24px;
        line-height: 1.4;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .hero-highlight {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .hero-question {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .hero {
        padding-top: 100px;
    }

    .hero-actions {
        gap: 12px;
        margin: 0;
        padding: 0;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 100%;
        padding: 14px 20px;
        font-size: 15px;
        margin: 0;
        box-sizing: border-box;
    }

    .section-title {
        font-size: 22px;
        margin-bottom: 16px;
    }

    .section-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .btn-large {
        padding: 14px 28px;
        font-size: 15px;
    }

    .stats {
        padding: 50px 0;
    }

    .stats-intro {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .stats-sub-intro {
        font-size: 14px;
        margin-bottom: 30px;
        line-height: 1.6;
    }

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

    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 14px;
    }

    .why-platforms {
        font-size: 14px;
        margin-top: 16px;
        line-height: 1.6;
    }

    .why-features {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-card {
        padding: 20px 16px;
    }

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

    .feature-subtitle {
        font-size: 13px;
    }

    .feature-cols {
        gap: 24px;
    }

    .feature-col {
        padding: 30px 20px;
    }

    .feature-col-title {
        font-size: 20px;
    }

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

    .step-item {
        padding: 24px 16px;
    }

    .step-icon-wrapper {
        margin-bottom: 16px;
        gap: 8px;
    }

    .step-icon {
        width: 60px;
        height: 60px;
    }

    .step-icon i {
        font-size: 24px;
    }

    .step-title {
        font-size: 16px;
    }

    .step-desc {
        font-size: 13px;
    }

    .mypage-inner {
        gap: 30px;
    }

    .mypage-desc {
        font-size: 15px;
    }

    .testimonial-item {
        padding: 28px 20px;
    }

    .testimonial-item::before {
        font-size: 50px;
        top: 8px;
        left: 12px;
    }

    .testimonial-text {
        font-size: 13px;
        line-height: 1.7;
    }

    .review_img {
        width: 48px;
        height: 48px;
    }

    .author-name {
        font-size: 14px;
    }

    .author-stars {
        font-size: 14px;
        letter-spacing: 1px;
    }

    .system-based-text {
        padding: 24px 16px;
    }

    .system-text-line {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .system-text-highlight {
        font-size: 16px;
        margin-top: 20px;
        padding-top: 20px;
    }

    .system-icon-item {
        padding: 20px 12px;
    }

    .system-icon-circle {
        width: 60px;
        height: 60px;
        margin-bottom: 12px;
    }

    .system-icon-circle i {
        font-size: 24px;
    }

    .system-icon-label {
        font-size: 14px;
    }

    .quote-form {
        padding: 24px 16px;
    }

    .quote-inputs {
        gap: 16px;
    }

    .quote-result-value {
        font-size: 28px;
    }

    .capabilities {
        padding: 60px 0;
    }

    .capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 40px;
    }

    .capability-card {
        padding: 30px 24px;
    }

    .capability-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 20px;
    }

    .capability-icon i {
        font-size: 28px;
    }

    .capability-title {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .capability-desc {
        font-size: 14px;
    }

    .api-integration-wrapper {
        gap: 15px;
    }

    .api-column {
        height: 140px;
    }

    .api-item {
        min-width: 140px;
        padding: 16px 12px;
    }

    .api-logo {
        font-size: 32px;
    }

    .api-name {
        font-size: 12px;
    }

    .capabilities-final-message {
        font-size: 18px;
        margin: 40px 0 30px;
    }

    .cta-title {
        font-size: 28px;
    }

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

    .cta-actions {
        margin: 0;
        padding: 0;
    }

    .cta-actions .btn {
        width: 100%;
        max-width: 100%;
        margin: 0;
        box-sizing: border-box;
    }

    .dashboard-preview-inner {
        gap: 30px;
    }

    .dashboard-feature {
        gap: 16px;
        margin-bottom: 24px;
    }

    .dashboard-feature-icon {
        width: 48px;
        height: 48px;
    }

    .dashboard-feature-icon i {
        font-size: 20px;
    }

    .dashboard-feature-title {
        font-size: 18px;
    }

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

    .floating-cta {
        bottom: 16px;
        right: 16px;
    }

    .floating-cta-btn {
        padding: 12px 18px;
        font-size: 13px;
        border-radius: 40px;
    }

    .floating-cta-icon {
        font-size: 18px;
    }

    .floating-cta-text {
        display: none;
    }

    /* 입출고 정보 모바일 최적화 */
    .inbound-section h3,
    .outbound-section h3 {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .top-items-title {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .top-items-list {
        gap: 8px;
        margin-bottom: 12px;
    }

    .inbound-list-item {
        padding: 14px 10px;
        gap: 8px;
    }

    .list-item-image {
        max-width: 80px;
        height: 80px;
    }

    .list-item-code {
        font-size: 13px;
        margin-bottom: 2px;
    }

    .list-item-order-code {
        font-size: 11px;
        margin-bottom: 2px;
    }

    .quantity-wrapper {
        margin-top: 2px;
    }

    .quantity-text {
        font-size: 11px;
    }

    .quantity-value {
        font-size: 15px;
    }

    /* Use Cases 모바일 최적화 */
    .system-summary-box {
        padding: 20px 16px;
    }

    .summary-item {
        padding: 12px 0;
    }

    .summary-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .summary-text {
        font-size: 14px;
    }

    .system-logistics-card {
        padding: 24px 16px;
    }

    .system-cost-text {
        font-size: 14px;
        line-height: 1.6;
    }

    .industry-custom-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .industry-card {
        padding: 20px 16px;
    }

    .industry-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .industry-title {
        font-size: 18px;
    }

    .industry-desc {
        font-size: 13px;
    }

    .custom-system-highlight {
        padding: 20px 16px;
    }

    .custom-system-title {
        font-size: 18px;
    }

    .custom-system-desc {
        font-size: 14px;
    }

    /* Benefits 섹션 모바일 최적화 */
    .benefits-negative-section,
    .benefits-positive-section {
        padding: 24px 16px;
    }

    .benefits-section-title {
        font-size: 18px;
    }

    .benefits-negative-item {
        font-size: 14px;
        padding: 12px 0;
    }

    .benefits-positive-grid {
        gap: 16px;
    }

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

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

    .capability-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 16px;
    }

    .capability-icon i {
        font-size: 24px;
    }

    .capability-title {
        font-size: 15px;
    }

    .capability-desc {
        font-size: 13px;
    }

    .capabilities-final-message {
        font-size: 16px;
        margin: 30px 0 24px;
    }

    .benefits-positive-item {
        padding: 20px 16px;
    }

    .benefits-positive-title {
        font-size: 16px;
    }

    .benefits-positive-desc {
        font-size: 13px;
    }

    .benefits-focus-section {
        padding: 30px 16px;
    }

    .benefits-focus-icon {
        font-size: 36px;
    }

    .benefits-focus-title {
        font-size: 20px;
    }

    .benefits-focus-desc {
        font-size: 15px;
    }

    .benefits-final-message {
        padding: 20px 16px;
    }

    .benefits-final-text {
        font-size: 16px;
    }
}

/* ============================================
   3-0. API Integration Section (Redesign)
   ============================================ */
.api-integration {
    background-color: #F8F9FB;
    overflow: hidden;
    /* Hide scrollbar */
    padding: 80px 0;
}

.api-integration-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 50px;
    position: relative;
    max-width: 100vw;
}

/* Gradient Fade Effect on Sides */
.api-integration-wrapper::before,
.api-integration-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.api-integration-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #F8F9FB, transparent);
}

.api-integration-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #F8F9FB, transparent);
}

.api-marquee {
    position: relative;
    width: 100vw;
    max-width: 100%;
    overflow: hidden;
    margin-left: 50%;
    transform: translateX(-50%);
}

.api-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: scroll 40s linear infinite;
    padding: 10px 0;
    /* Space for shadow */
}

/* Row 2 Reverse Animation */
.marquee-reverse .api-track {
    animation-direction: reverse;
}

.api-logo-card {
    background: #fff;
    width: 180px;
    height: 90px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    box-sizing: border-box;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    flex-shrink: 0;
}

.api-logo-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
}

.api-logo-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 12px));
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {

    .api-integration-wrapper::before,
    .api-integration-wrapper::after {
        width: 60px;
    }

    .api-logo-card {
        width: 140px;
        height: 70px;
    }
}


/* ============================================
   2-1. Real-time Inbound/Outbound Dashboard
   ============================================ */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.dashboard-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dashboard-header {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

.dashboard-header i {
    color: var(--primary-color);
}

/* Common Card Styles */
.dashboard-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.card-title {
    font-size: 16px;
    color: var(--text-gray);
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
}

/* Highlight Card */
.highlight-card {
    background: linear-gradient(135deg, #ffffff 0%, #f9fcff 100%);
    border: 1px solid #eef2ff;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.highlight-item.mini {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.highlight-item.mini:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.highlight-image {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #f0f0f0;
    flex-shrink: 0;
}

.highlight-item.mini .highlight-image {
    width: 60px;
    height: 60px;
}

.highlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.highlight-info {
    flex: 1;
}

.highlight-label {
    font-size: 12px;
    color: var(--text-gray);
    display: block;
    margin-bottom: 4px;
}

.highlight-code {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    display: block;
    margin-bottom: 8px;
}

.highlight-code.small {
    font-size: 16px;
}

.highlight-stat {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
}

.stat-value {
    font-size: 24px;
    font-weight: 800;
}

.text-blue {
    color: var(--primary-color);
}

.text-red {
    color: #FF4B4B;
}

/* List Card */
.list-card {
    position: relative;
    padding-bottom: 24px;
    /* Ensure space for gradient */
}

.list-card::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1) 90%);
    pointer-events: none;
    border-radius: 0 0 16px 16px;
    z-index: 2;
}

.dashboard-list {
    max-height: 400px;
    overflow-y: hidden;
    /* Hide scrollbar for cleaner look if requested, or keep auto */
    padding-right: 5px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
    padding-bottom: 20px;
    /* Space for gradient */
}

/* Custom Scrollbar */
.dashboard-list::-webkit-scrollbar {
    width: 6px;
}

.dashboard-list::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.dashboard-list::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.list-row {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
    gap: 15px;
}

.list-row:last-child {
    border-bottom: none;
}

.row-image {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #f9f9f9;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid #eee;
}

.row-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.row-info {
    flex: 1;
}

.row-code {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.row-stat {
    font-size: 13px;
    display: flex;
    gap: 6px;
    align-items: center;
}

.row-stat .label {
    color: var(--text-gray);
}

.row-stat .val {
    font-weight: 700;
}

.row-time {
    font-size: 12px;
    color: #bbb;
    font-weight: 500;
}

.empty-msg {
    text-align: center;
    padding: 20px;
    color: #999;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 900px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}