/* Floating Animation Keyframes */
@keyframes floatUpDown {

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

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

/* Floating Animation Keyframes */
@keyframes floatDownUp {
    0% {
        transform: translateY(-5px);
        background: linear-gradient(90deg, #FBC2EB -50%, #A6C1EE 50%, #FBC2EB 150%);
        background-size: 200% 100%;
        background-position: 0% 50%;
    }

    50% {
        transform: translateY(5px);
        background: linear-gradient(90deg, #FBC2EB -50%, #A6C1EE 50%, #FBC2EB 150%);
        background-size: 200% 100%;
        background-position: 50% 50%;
    }

    100% {
        transform: translateY(-5px);
        background: linear-gradient(90deg, #FBC2EB -50%, #A6C1EE 50%, #FBC2EB 150%);
        background-size: 200% 100%;
        background-position: 100% 50%;
    }
}

/* rect 용 애니메이션 (rotate + translateY 조합) */
@keyframes floatUpDownRotated {

    0%,
    100% {
        transform: translateY(5px) rotate(45deg);
    }

    50% {
        transform: translateY(-5px) rotate(45deg);
    }
}

/* 회전하는 그라디언트 애니메이션 추가 */
@keyframes rotateGradient {
    0% {
        transform: translate(-50%, -50%) rotate(45deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(405deg);
    }
}

@keyframes rotateBorder {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* =================================
   RESET & BASE STYLES
   ================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    background-color: #111111;
    color: #FFFFFF;
    line-height: 1.5;
}

/* =================================
   COMMON UTILITIES
   ================================= */
.saas-container {
    margin: 0 auto;
    padding: 0 132px;
    max-width: 1440px;
}

.saas-section-tag {
    background: linear-gradient(90deg, #155DFC 0%, #0F79FC 52.5%, #00C6FB 84.5%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.25;
    width: fit-content;
}

/* =================================
   HERO SECTION
   ================================= */
.llm-hero {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #111111;
}

.llm-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.llm-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.llm-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 440px;
}

.llm-hero-logo {
    width: 440px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.llm-hero-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.llm-hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    gap: 8px;
    text-align: center;
}

.llm-hero-title {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 1.286;
    letter-spacing: -0.714%;
    color: #FFFFFF;
    margin: 0;
    width: fit-content;
}

.llm-hero-subtitle {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.143;
    letter-spacing: -1.429%;
    color: #FFFFFF;
    text-align: center;
    margin: 0;
    width: fit-content;
}

/* =================================
   MAIN CTA SECTION
   ================================= */
.saas-main-cta {
    position: relative;
    padding: 150px 0;
    background-color: #111111;
    overflow: hidden;
}

.saas-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    z-index: 1;
}

.saas-cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.saas-cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 961px;
    margin: 0 auto;
}

.saas-cta-title {
    font-weight: 600;
    font-size: 36px;
    line-height: 1.111;
    letter-spacing: -0.556%;
    color: #FFFFFF;
    text-align: center;
}

.saas-cta-description {
    font-family: 'Pretendard';
    font-weight: 600;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: -1%;
    color: #FFFFFF;
    text-align: center;
}

.saas-cta-bg-blur {
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 55px;
    background: linear-gradient(90deg, #155DFC 0%, #0F79FC 52.5%, #00C6FB 84.5%);
    filter: blur(80px);
    opacity: 0.2;
    z-index: 1;
}

/* =================================
   SAAS EXPLANATION SECTION
   ================================= */
.saas-explanation {
    position: relative;
    padding: 160px 0 200px;
    background-color: #111111;
}

.saas-explanation-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.saas-explanation-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.saas-explanation-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 101px;
    height: 440px;
}

/* Device Visual */
.saas-device-visual {
    width: 471px;
    height: 442px;
    position: relative;
}

.saas-device-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.saas-device-effects {
    position: relative;
    width: 100%;
    height: 100%;
}

.saas-device-effects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 336px;
    height: 336px;
    background-image: url('/images/saas_device_img.jpg');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.saas-gradient-blur {
    position: absolute;
    border-radius: 50%;
}

.saas-blur-1 {
    width: 73px;
    height: 78px;
    top: 202px;
    left: 340px;
    background-color: #D9D9D9;
    filter: blur(100px);
    z-index: 2;
}

.saas-blur-2 {
    width: 115px;
    height: 123px;
    top: 291px;
    left: 146px;
    background: #155DFC;
    filter: blur(150px);
    opacity: 0.6;
    z-index: 2;
}

.saas-ellipse-1 {
    position: absolute;
    width: 73px;
    height: 73px;
    top: 211px;
    left: 383px;
    background: linear-gradient(90deg, #48C6EF 0%, #6F86D6 100%);
    border-radius: 50%;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    opacity: 0.8;
    z-index: 3;
    animation: floatUpDown 1.8s ease infinite;
}

.saas-gradient-rect {
    position: absolute;
    width: 24px;
    height: 24px;
    top: 285px;
    left: 447px;
    background: linear-gradient(90deg, #A3BDED 0%, #6991C7 100%);
    border-radius: 4px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    transform: rotate(45deg);
    z-index: 3;
    animation: floatUpDownRotated 1.5s ease infinite;
}

.saas-device-circle {
    position: absolute;
    width: 214px;
    height: 214px;
    top: 198px;
    left: 209px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    background-origin: border-box;
    background-clip: content-box, border-box;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    box-shadow:
        0px 4px 4px 0px rgba(0, 0, 0, 0.15),
        inset 0px -5px 15px 0px rgba(255, 255, 255, 0.2),
        inset 0px 5px 15px 0px rgba(0, 0, 0, 0.15),
        inset 0px -5px 10px 1px rgba(30, 51, 190, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    animation: floatUpDown 1.5s ease infinite;
}

.saas-device-inner {
    position: relative;
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
}

.saas-device-inner img {
    display: none;
}

.saas-device-text {
    position: absolute;
    font-weight: 600;
    font-size: 36px;
    line-height: 1.111;
    letter-spacing: 2.778%;
    color: #FFFFFF;
    text-align: center;
    z-index: 5;
}

/* Info Box */
.saas-info-box {
    width: 500px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.saas-info-tabs {
    display: flex;
    gap: 0;
}

.saas-tab {
    border-bottom: 1px solid transparent;
    padding: 10px 16px;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.167;
    letter-spacing: -0.833%;
    color: #A1A1A1;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
}

.saas-tab-active {
    color: transparent;
    background: linear-gradient(90deg, #155DFC 0%, #0F79FC 52.5%, #00C6FB 84.5%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border-bottom: 1px solid;
    border-image: linear-gradient(90deg, #155DFC 0%, #0F79FC 52.5%, #00C6FB 84.5%);
    border-image-slice: 1;
}

.saas-info-content {
    display: flex;
    flex-direction: column;
    margin-top: 32px;
    margin-bottom: 10px;
}

.saas-info-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: -1%;
    color: transparent;
    background: #A1A1A1;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.saas-info-description {
    margin-top: 25px;
}

.saas-info-description p {
    font-weight: 600;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: -1%;
    color: #FFFFFF;
}

.saas-case-study {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 40px;
    cursor: pointer;
    width: fit-content;
    z-index: 2;
}

.saas-case-title {
    font-weight: 600;
    font-size: 16px;
    line-height: 1.25;
    color: #FFFFFF;
}

.saas-case-arrow {
    width: 20px;
    height: 20px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
}

.saas-case-arrow svg {
    width: 100%;
    height: 100%;
}

.saas-case-arrow-img {
    width: 20px;
    height: 20px;
}

.saas-case-arrow-img {
    transition: transform 0.3s ease, opacity 0.2s ease;
}

.saas-case-content {
    display: flex;
    align-items: center;
    gap: 20px;
    opacity: 0;
    margin-top: -20px;
    z-index: 0;
}

/* =================================
   SAAS GROWTH SECTION
   ================================= */
.saas-growth {
    margin: 200px 0;
    padding: 200px 0;
    background-color: #111111;
    position: relative;
    overflow: hidden;
}

.saas-growth-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 100px;
    max-width: 1176px;
    margin: 0 auto;
}

.saas-growth-left {
    flex: 1;
    max-width: 550px;
    position: relative;
}

.saas-growth-title {
    background: linear-gradient(90deg, #155DFC 0%, #0F79FC 52.5%, #00C6FB 84.5%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.25;
    margin-bottom: 28px;
    width: fit-content;
}

.saas-growth-description {
    font-weight: 600;
    font-size: 24px;
    line-height: 1.5;
    letter-spacing: -0.833%;
    color: #FFFFFF;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.chart-image {
    position: absolute;
    top: 70%;
    right: -50px;
    transform: translateY(-50%);
    width: 300px;
    height: auto;
    z-index: 1;
    opacity: 0.8;
}

.chart-image img {
    width: 100%;
    height: auto;
    display: block;
    transform: perspective(800px) rotateX(15deg) rotateY(-10deg);
}

.saas-growth-right {
    flex: 1;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 90px;
    margin-top: -40px;
}

.chart-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    margin-top: -20px;
}

.chart-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: -1%;
    color: #FFFFFF;
}

.chart-unit {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.25;
    color: #FFFFFF;
}

.chart-data-table {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
}

.chart-bars-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    height: 350px;
    padding: 0 20px;
    position: relative;
}

.chart-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex: 1;
    max-width: 52px;
    height: 100%;
    justify-content: flex-end;
}

.bar-fill {
    width: 52px;
    height: 0;
    min-height: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px 8px 0px 0px;
    box-shadow:
        0px 4px 4px 0px rgba(0, 0, 0, 0.25),
        inset 0px -5px 15px 0px rgba(255, 255, 255, 0.4),
        inset 0px 5px 15px 0px rgba(0, 0, 0, 0.25),
        inset 0px -5px 10px 1px rgba(30, 51, 190, 0.4);
    backdrop-filter: blur(30px);
    transition: height 1s ease-out;
    position: relative;
}

.bar-value {
    font-family: 'Pretendard';
    font-weight: 500;
    font-size: 16px;
    line-height: 1.25;
    color: #FFFFFF;
    text-align: center;
}

.bar-year {
    font-family: 'Pretendard';
    font-weight: 400;
    font-size: 16px;
    line-height: 1.25;
    color: #FFFFFF;
    text-align: center;
}

/* =================================
   LIMITATIONS SECTION
   ================================= */
.limitations-section {
    padding: 5rem 0;
    background-color: #111111;
    color: #fff;
    position: relative;
}

.section-header {
    max-width: 1176px;
    margin: 0 auto 4rem;
    text-align: center;
    padding: 0 2rem;
}

.section-subtitle {
    font-size: 1rem;
    font-weight: 600;
    background: linear-gradient(90deg, #155DFC 0%, #0F79FC 52.5%, #00C6FB 84.5%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.55%;
    margin-bottom: 0.5rem;
}

.section-description {
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.5;
    letter-spacing: -1%;
    color: #FFFFFF;
    text-align: center;
}

.limitations-container {
    max-width: 1176px;
    margin: 0 auto;
    position: relative;
    padding: 0 2rem;
}

.limitations-row {
    display: flex;
    justify-content: space-between;
    gap: 4.5rem;
    margin-bottom: 2rem;
}

.limitations-row:last-child {
    margin-bottom: 0;
}

.limitation-card {
    flex: 1;
    max-width: 552px;
    height: 332px;
    border: 1px solid #FFFFFF;
    padding: 4.5rem 5rem;
    background: rgba(17, 17, 17, 0.8);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.limitation-badge {
    display: flex;
    justify-content: center;
    width: fit-content;
}

.limitation-badge-img {
    height: auto;
    width: auto;
    max-width: 100%;
    display: block;
}

.limitation-title {
    font-weight: 600;
    font-size: 1.75rem;
    line-height: 1.286;
    letter-spacing: -0.714%;
    color: #FFFFFF;
    margin: 0;
}

.limitation-description {
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.5;
    color: #FFFFFF;
    margin: 0;
    flex: 1;
}

.central-diamond {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 250px;
    height: 250px;
    transform: translate(-50%, -50%) rotate(45deg);
    z-index: 10;
    overflow: hidden;
}

.diamond-border-container {
    position: absolute;
    top: 3px;
    left: 3px;
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    background: #111111;
    display: flex;
    justify-content: center;
    align-items: center;
}

.diamond-border-container:after {
    position: absolute;
    content: "";
    z-index: -1;
    width: 400%;
    height: 600%;
    background: linear-gradient(45deg, #155DFC, #0F79FC, #00C6FB, #155DFC, #0F79FC, #00C6FB);
    animation: rotateBorder 1.5s linear infinite;
    top: 50%;
    left: 50%;
    transform-origin: center;
    transform: translate(-50%, -50%) rotate(0deg);
}

.diamond-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    width: 335px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.diamond-title {
    font-weight: 600;
    font-size: 1.75rem;
    line-height: 1.286;
    letter-spacing: -0.714%;
    color: #FFFFFF;
    margin: 0;
}

.diamond-description {
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    color: #FFFFFF;
    margin: 0;
}

.highlight {
    color: #155DFC;
    font-weight: 600;
}

/* =================================
   EFFECT SECTION
   ================================= */
.effect-section {
    margin: 200px 0;
    padding: 5rem 0;
    background-color: #111111;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    margin-top: 200px;
}

.effect-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    max-width: 900px;
    text-align: center;
    padding: 0 20px;
}

.effect-subtitle {
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.25;
    background: linear-gradient(90deg, #155DFC 0%, #0F79FC 52.5%, #00C6FB 84.5%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.effect-title-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.effect-title {
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 1.11;
    letter-spacing: -0.55%;
    color: #fff;
}

.effect-description {
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: -1%;
    color: #fff;
    text-align: center;
}

.effect-image-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.effect-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/benefit_background.png');
    background-size: cover;
    background-position: center;
}

.diamond-outline {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 2px solid rgb(255, 255, 255);
    transform: rotate(45deg);
    z-index: 2;
}

.diamond-outline.left {
    top: 50%;
    left: 35%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.diamond-outline.right {
    top: 50%;
    right: 35%;
    transform: translate(50%, -50%) rotate(45deg);
}

.effect-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 300px;
    height: 300px;
    background-color: #1B1E21;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
    overflow: hidden;
}

.effect-card-title {
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 1.29;
    letter-spacing: -0.71%;
    color: #fff;
}

.effect-card-description {
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
    text-align: center;
}

/* =================================
   RELATION SECTION
   ================================= */
.relation-section {
    margin: 200px 0;
    padding: 5rem 0;
    background-color: #111111;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/images/saas_bg_overlay.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.relation-header {
    margin: 0 auto 6rem;
    text-align: center;
    padding: 0 20px;
}

.relation-subtitle {
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.25;
    background: linear-gradient(90deg, #155DFC 0%, #0F79FC 52.5%, #00C6FB 84.5%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.relation-title {
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 1.11;
    letter-spacing: -0.55%;
    color: #fff;
    margin-bottom: 1.5rem;
}

.relation-description {
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: -1%;
    color: #fff;
    text-align: center;
}

.infographic {
    position: relative;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    display: flex;
    align-items: center;
}

.infographic img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    margin: 0 auto;
}

.saas-title {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 600;
    font-size: 28px;
    line-height: 1.28;
    letter-spacing: -0.2px;
    text-align: center;
    color: #FFFFFF;
    z-index: 3;
}

.smp-title {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 600;
    font-size: 28px;
    line-height: 1.28;
    letter-spacing: -0.2px;
    text-align: center;
    color: #FFFFFF;
    z-index: 3;
}

.feature-boxes {
    position: absolute;
    top: 45%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-around;
    width: 100%;
    z-index: 3;
}

.feature-box {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 20px;
    border-radius: 4px;
    background-color: rgba(50, 50, 50, 0.8);
    font-weight: 600;
    font-size: 18px;
    line-height: 1.2;
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.central-line-top {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 25%;
    background: linear-gradient(to bottom, #00C6FB, #0F79FC);
    z-index: 1;
}

.central-line-bottom {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 25%;
    background: linear-gradient(to bottom, #0F79FC, #155DFC);
    z-index: 1;
}

.connections-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

/* =================================
   FEATURES SECTION
   ================================= */
.features-section {
    margin: 300px 0;
    padding: 7rem 2rem;
    background-color: #111111;
}

.features-grid {
    max-width: 1176px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background-color: rgba(17, 17, 17, 0.8);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 1);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-image-container {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background-color: #0d1a2d;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.feature-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff;
}

.feature-description {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.5;
}

/* =================================
   CASES SECTION
   ================================= */
.cases-section {
    padding: 5rem 0;
    background-color: #111111;
    color: #fff;
    background-image: url('/images/bio-gradient-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cases-container {
    max-width: 1176px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 160px;
}

.case-card {
    position: relative;
    width: 548px;
    height: 384px;
    border: 1px solid #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.case-card:nth-child(1) {
    align-self: flex-start;
}

.case-card:nth-child(2) {
    align-self: flex-end;
}

.case-title {
    position: absolute;
    top: 48px;
    left: 48px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 40px;
    line-height: 1.2;
    letter-spacing: -0.5%;
    color: #FFFFFF;
    margin: 0;
    z-index: 2;
}

.case-arrow {
    position: absolute;
    top: 48px;
    right: 48px;
    font-size: 40px;
    color: #FFFFFF;
    z-index: 2;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.case-arrow-gredient {
    position: absolute;
    top: 57px;
    right: 56px;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.case-image-wrapper {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.case-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: auto;
    height: 60%;
    object-fit: contain;
}

.case-card:hover {
    transform: translateY(-5px);
}

.case-card:hover .case-arrow {
    transform: rotate(45deg);
    opacity: 0;
}

.case-card:hover .case-arrow-gredient {
    opacity: 1;
}

/* 물류 */
.logistics-case-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 27px;
}

/* 물류 카드*/
.logistics-details-list {
    width: 548px;
    position: relative;
    height: 384px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
}

.logistics-detail-card {
    position: absolute;
    background-color: #202020;
    border-radius: 12px;
    padding: 16px 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 480px;
    height: 80px;
    transition: all 0.5s ease;
    border: 1px solid #333;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    opacity: 0.8;
}

.logistics-detail-card:nth-child(1) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
}

.logistics-detail-card:nth-child(2) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.logistics-detail-card:nth-child(3) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.logistics-detail-card:nth-child(4) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.logistics-details-list.expanded .logistics-detail-card:nth-child(1) {
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
}

.logistics-details-list.expanded .logistics-detail-card:nth-child(2) {
    top: 36%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
}

.logistics-details-list.expanded .logistics-detail-card:nth-child(3) {
    top: 63%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
}

.logistics-details-list.expanded .logistics-detail-card:nth-child(4) {
    top: 90%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
}

.logistics-detail-title {
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: -1%;
    color: #FFFFFF;
    margin: 0;
}

.logistics-detail-description {
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.25;
    color: #A1A1A1;
    margin: 0;
}

/* =================================
   RESPONSIVE STYLES
   ================================= */

/* 1280px 이상 (Desktop Large) */
@media (min-width: 1280px) {
    /* 기본 스타일 유지 */
}

/* 769px ~ 1279px (Desktop Small / Tablet Landscape) */
@media (max-width: 1279px) and (min-width: 769px) {
    .saas-container {
        padding: 0 60px;
        max-width: 100%;
    }

    /* Hero Section */
    .llm-hero {
        height: 350px;
    }

    .llm-hero-content {
        width: 380px;
    }

    .llm-hero-logo {
        width: 380px;
        height: 70px;
    }

    .llm-hero-title {
        font-size: 24px;
    }

    .llm-hero-subtitle {
        font-size: 13px;
    }

    /* Main CTA */
    .saas-main-cta {
        padding: 120px 0;
    }

    .saas-cta-content {
        width: 100%;
        max-width: 800px;
        padding: 0 20px;
    }

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

    .saas-cta-description {
        font-size: 18px;
    }

    /* Explanation Section */
    .saas-explanation {
        padding: 120px 0 150px;
    }

    .saas-explanation-content {
        gap: 60px;
        height: auto;
        align-items: center;
    }

    .saas-device-visual {
        width: 400px;
        height: 375px;
    }

    .saas-device-effects::before {
        width: 280px;
        height: 280px;
    }

    .saas-device-circle {
        width: 150px;
        height: 150px;
        top: 160px;
        left: 205px;
    }

    .saas-device-inner {
        width: 150px;
        height: 150px;
    }

    .saas-device-text {
        font-size: 30px;
    }

    .saas-ellipse-1 {
        width: 60px;
        height: 60px;
        top: 180px;
        left: 330px;
    }

    .saas-gradient-rect {
        width: 20px;
        height: 20px;
        top: 240px;
        left: 390px;
    }

    .saas-blur-1 {
        width: 60px;
        height: 65px;
        top: 170px;
        left: 290px;
    }

    .saas-blur-2 {
        width: 95px;
        height: 100px;
        top: 250px;
        left: 120px;
    }

    .saas-info-box {
        width: 100%;
        max-width: 450px;
    }

    .saas-tab {
        font-size: 20px;
        padding: 8px 12px;
    }

    .saas-info-title {
        font-size: 18px;
    }

    .saas-info-description p {
        font-size: 18px;
    }

    /* Growth Section */
    .saas-growth {
        margin: 150px 0;
        padding: 150px 0;
    }

    .saas-growth-content {
        max-width: 100%;
        padding: 0 20px;
        align-items: center;
    }

    .saas-growth-left {
        max-width: 100%;
    }

    .saas-growth-description {
        font-size: 15px;
    }

    .chart-header {
        margin-top: 0;
    }

    .chart-image {
        position: static;
        transform: none;
        width: 250px;
        margin: 20px auto;
    }

    .saas-growth-right {
        max-width: 100%;
        margin-top: 0;
    }

    .chart-bars-container {
        height: 300px;
        gap: 15px;
    }

    .chart-bar {
        max-width: 45px;
    }

    .bar-fill {
        width: 45px;
    }

    /* Limitations Section */
    .limitations-row {
        justify-content: center;
        gap: 20px;
    }

    .limitation-card {
        padding: 40px 40px;
        max-width: 400px;
        height: 250px;
    }

    .limitation-title {
        font-size: 20px;
    }

    .limitation-description {
        font-size: 12px;
    }

    .central-diamond {
        width: 150px;
        height: 150px;
    }

    .diamond-content {
        width: 280px;
    }

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

    .diamond-description {
        font-size: 10px;
    }

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

    .section-description {
        font-size: 15px;
    }

    /* Effect Section */
    .effect-section {
        margin: 150px 0;
    }

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

    .effect-description {
        font-size: 18px;
    }

    .effect-image-container {
        height: 400px;
    }

    .diamond-outline {
        width: 250px;
        height: 250px;
    }

    .effect-card {
        width: 250px;
        height: 250px;
    }

    .effect-card-title {
        font-size: 24px;
    }

    .effect-card-description {
        font-size: 13px;
    }

    /* Relation Section */
    .relation-section {
        margin: 150px 0;
    }

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

    .relation-description {
        font-size: 18px;
    }

    .saas-title,
    .smp-title {
        font-size: 24px;
    }

    .feature-box {
        font-size: 16px;
        padding: 10px 16px;
    }

    /* Features Section */
    .features-section {
        margin: 200px 0;
        padding: 5rem 2rem;
    }

    .features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        max-width: 800px;
    }

    .feature-image-container {
        height: 120px;
    }

    .feature-content {
        padding: 15px;
    }

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

    .feature-description {
        font-size: 12px;
    }

    /* Cases Section */
    .cases-container {
        max-width: 900px;
        gap: 120px;
    }

    .case-card {
        width: 400px;
        height: 320px;
    }

    .case-title {
        font-size: 32px;
        top: 40px;
        left: 40px;
    }

    .case-image {
        height: 40%;
    }

    .case-arrow {
        font-size: 32px;
        top: 40px;
        right: 40px;
    }

    .case-arrow-gredient {
        top: 57px;
        right: 57px;
    }

    .logistics-details-list {
        width: 480px;
        height: 320px;
    }

    .logistics-detail-card {
        width: 350px;
        height: 70px;
    }

    .logistics-detail-title {
        font-size: 16px;
    }

    .logistics-detail-description {
        font-size: 12px;
    }

}

/* 481px ~ 768px (Tablet Portrait) */
@media (max-width: 768px) and (min-width: 481px) {
    .saas-container {
        padding: 0 30px;
        max-width: 100%;
    }

    /* Hero Section */
    .llm-hero {
        height: 300px;
    }

    .llm-hero-content {
        width: 320px;
    }

    .llm-hero-logo {
        width: 320px;
        height: 60px;
    }

    .llm-hero-title {
        font-size: 22px;
    }

    .llm-hero-subtitle {
        font-size: 12px;
    }

    /* Main CTA */
    .saas-main-cta {
        padding: 100px 0;
    }

    .saas-cta-content {
        width: 100%;
        max-width: 600px;
        padding: 0 20px;
    }

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

    .saas-cta-description {
        font-size: 16px;
    }

    .saas-cta-bg-blur {
        width: 400px;
        height: 40px;
    }

    /* Explanation Section */
    .saas-explanation {
        padding: 100px 0 120px;
    }

    .saas-explanation-content {
        flex-direction: column;
        gap: 50px;
        height: auto;
        align-items: center;
    }

    .saas-device-visual {
        width: 320px;
        height: 300px;
    }

    .saas-device-effects::before {
        width: 220px;
        height: 220px;
    }

    .saas-device-circle {
        width: 140px;
        height: 140px;
        top: 135px;
        left: 150px;
    }

    .saas-device-inner {
        width: 120px;
        height: 120px;
    }

    .saas-device-text {
        font-size: 24px;
    }

    .saas-ellipse-1 {
        width: 50px;
        height: 50px;
        top: 140px;
        left: 260px;
    }

    .saas-gradient-rect {
        width: 16px;
        height: 16px;
        top: 190px;
        left: 300px;
    }

    .saas-blur-1 {
        width: 50px;
        height: 55px;
        top: 130px;
        left: 240px;
    }

    .saas-blur-2 {
        width: 75px;
        height: 80px;
        top: 200px;
        left: 100px;
    }

    .saas-info-box {
        width: 100%;
        max-width: 400px;
    }

    .saas-tab {
        font-size: 18px;
        padding: 6px 10px;
    }

    .saas-info-title {
        font-size: 16px;
    }

    .saas-info-description p {
        font-size: 16px;
    }

    /* Growth Section */
    .saas-growth {
        margin: 120px 0;
        padding: 120px 0;
    }

    .saas-growth-content {
        flex-direction: column;
        gap: 50px;
        max-width: 100%;
        padding: 0 20px;
        align-items: center;
    }

    .saas-growth-left {
        max-width: 100%;
    }

    .saas-growth-title {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .saas-growth-description {
        font-size: 15px;
    }

    .chart-image {
        position: static;
        transform: none;
        width: 200px;
        margin: 15px auto;
    }

    .saas-growth-right {
        max-width: 100%;
        margin-top: 0;
        gap: 60px;
    }

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

    .chart-unit {
        font-size: 14px;
    }

    .chart-bars-container {
        height: 250px;
        gap: 12px;
        padding: 0 10px;
    }

    .chart-bar {
        max-width: 40px;
    }

    .bar-fill {
        width: 40px;
    }

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

    .bar-year {
        font-size: 14px;
    }

    /* Limitations Section */
    .limitations-section {
        padding: 3rem 0;
    }

    .section-header {
        margin: 0 auto 3rem;
        padding: 0 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-description {
        font-size: 1.1rem;
    }

    .limitations-container {
        padding: 0 1rem;
    }

    .limitations-row {
        gap: 1.5rem;
        margin-bottom: 1.5rem;
        align-items: center;
    }

    .limitation-card {
        max-width: 400px;
        height: auto;
        min-height: 280px;
        padding: 2rem 2rem;
    }

    .limitation-title {
        font-size: 20px;
    }

    .limitation-description {
        font-size: 15px;
    }

    .central-diamond {
        width: 150px;
        height: 150px;
    }

    .diamond-content {
        width: 280px;
    }

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

    .diamond-description {
        font-size: 10px;
    }

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

    .section-description {
        font-size: 15px;
    }

    /* Effect Section */
    .effect-section {
        margin: 120px 0;
        padding: 3rem 0;
        gap: 40px;
    }

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

    .effect-description {
        font-size: 16px;
    }

    .effect-image-container {
        height: 300px;
    }

    .diamond-outline {
        width: 180px;
        height: 180px;
    }

    .diamond-outline.left {
        left: 33%;
    }

    .diamond-outline.right {
        right: 33%;
    }

    .effect-card {
        width: 180px;
        height: 180px;
    }

    .effect-card-title {
        font-size: 20px;
    }

    .effect-card-description {
        font-size: 10px;
    }

    /* Relation Section */
    .relation-section {
        margin: 120px 0;
        padding: 3rem 0;
    }

    .relation-header {
        margin: 0 auto 4rem;
        padding: 0 1rem;
    }

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

    .relation-description {
        font-size: 16px;
    }

    .saas-title,
    .smp-title {
        font-size: 20px;
    }

    .feature-boxes {
        flex-direction: column;
        gap: 15px;
        top: 40%;
        left: 10%;
        right: 10%;
        width: 80%;
    }

    .feature-box {
        font-size: 14px;
        padding: 8px 12px;
    }

    /* Features Section */
    .features-section {
        margin: 150px 0;
        padding: 3rem 1rem;
    }

    .features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        max-width: 650px;
    }

    .feature-image-container {
        height: 100px;
    }

    .feature-content {
        padding: 15px;
    }

    .feature-title {
        font-size: 11px;
    }

    .feature-description {
        font-size: 10px;
    }

    /* Cases Section */
    .cases-container {
        max-width: 700px;
        gap: 120px;
    }

    .case-card {
        width: 495px;
        height: 326px;
    }

    .case-title {
        font-size: 32px;
        top: 40px;
        left: 40px;
    }

    .case-image {
        height: 40%;
    }

    .case-arrow {
        font-size: 32px;
        top: 40px;
        right: 40px;
    }

    .case-arrow-gredient {
        top: 57px;
        right: 57px;
    }

    .logistics-details-list {
        width: 480px;
        height: 320px;
    }

    .logistics-detail-card {
        width: 300px;
        height: 70px;
    }

    .logistics-detail-title {
        font-size: 16px;
    }

    .logistics-detail-description {
        font-size: 12px;
    }

}

/* 480px 이하 (Mobile) */
@media (max-width: 480px) {
    .saas-container {
        padding: 0 20px;
        max-width: 100%;
    }

    /* Hero Section */
    .llm-hero {
        height: 250px;
    }

    .llm-hero-content {
        width: 280px;
    }

    .llm-hero-logo {
        width: 280px;
        height: 50px;
    }

    .llm-hero-title {
        font-size: 20px;
    }

    .llm-hero-subtitle {
        font-size: 11px;
    }

    /* Main CTA */
    .saas-main-cta {
        padding: 80px 0;
    }

    .saas-cta-content {
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
    }

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

    .saas-cta-description {
        font-size: 14px;
    }

    .saas-cta-bg-blur {
        width: 300px;
        height: 30px;
    }

    /* Explanation Section */
    .saas-explanation {
        padding: 80px 0 100px;
    }

    .saas-explanation-content {
        flex-direction: column;
        gap: 40px;
        height: auto;
        align-items: center;
    }

    .saas-device-visual {
        width: 260px;
        height: 240px;
    }

    .saas-device-effects::before {
        width: 180px;
        height: 180px;
    }

    .saas-device-circle {
        width: 110px;
        height: 110px;
        top: 115px;
        left: 130px;
    }

    .saas-device-inner {
        width: 90px;
        height: 90px;
    }

    .saas-device-text {
        font-size: 20px;
    }

    .saas-ellipse-1 {
        width: 40px;
        height: 40px;
        top: 110px;
        left: 210px;
    }

    .saas-gradient-rect {
        width: 12px;
        height: 12px;
        top: 150px;
        left: 240px;
    }

    .saas-blur-1 {
        width: 40px;
        height: 45px;
        top: 100px;
        left: 200px;
    }

    .saas-blur-2 {
        width: 60px;
        height: 65px;
        top: 160px;
        left: 80px;
    }

    .saas-info-box {
        width: 100%;
        max-width: 294px;
    }

    .saas-info-tabs {
        overflow-x: auto;
        gap: 5px;
    }

    .saas-tab {
        font-size: 16px;
        padding: 6px 8px;
    }

    .saas-info-title {
        font-size: 14px;
    }

    .saas-info-description p {
        font-size: 14px;
    }

    .saas-case-study {
        margin-top: 30px;
    }

    .saas-case-title {
        font-size: 14px;
    }

    /* Growth Section */
    .saas-growth {
        margin: 100px 0;
        padding: 100px 0;
    }

    .saas-growth-content {
        flex-direction: column;
        gap: 40px;
        max-width: 100%;
        padding: 0 15px;
        align-items: center;
    }

    .saas-growth-left {
        max-width: 100%;
    }

    .saas-growth-title {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .saas-growth-description {
        font-size: 12px;
    }

    .chart-image {
        position: static;
        transform: none;
        width: 150px;
        margin: 10px auto;
    }

    .saas-growth-right {
        max-width: 100%;
        margin-top: 0;
        gap: 40px;
    }

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

    .chart-unit {
        font-size: 13px;
    }

    .chart-bars-container {
        height: 300px;
        gap: 8px;
        padding: 0 5px;
    }

    .chart-bar {
        max-width: 32px;
    }

    .bar-fill {
        width: 32px;
    }

    .bar-value {
        font-size: 12px;
    }

    .bar-year {
        font-size: 12px;
    }

    /* Limitations Section */
    .limitations-section {
        padding: 2rem 0;
    }

    .section-header {
        margin: 0 auto 2rem;
        padding: 0 0.5rem;
    }

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

    .section-description {
        font-size: 10px;
    }

    .limitations-container {
        padding: 0 0.5rem;
    }

    .limitations-row {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1rem;
        align-items: center;
    }

    .limitation-card {
        max-width: 300px;
        height: 150px;
        min-height: 240px;
        padding: 30px;
        gap: 1.5rem;
    }

    .limitation-title {
        font-size: 20px;
    }

    .limitation-description {
        font-size: 12px;
    }

    .central-diamond {
        display: none;
    }

    /* Effect Section */
    .effect-section {
        margin: 100px 0;
        padding: 2rem 0;
        gap: 30px;
    }

    .effect-header {
        padding: 0 15px;
    }

    .effect-title {
        font-size: 24px;
    }

    .effect-description {
        font-size: 14px;
    }

    .effect-image-container {
        height: 250px;
    }

    .diamond-outline {
        width: 170px;
        height: 170px;
    }

    .diamond-outline.left {
        left: 28%;
    }

    .diamond-outline.right {
        right: 28%;
    }

    .effect-card {
        width: 170px;
        height: 170px;
    }

    .effect-card-title {
        font-size: 25px;
    }

    .effect-card-description {
        font-size: 9px;
        font-weight: 600;
    }

    /* Relation Section */
    .relation-section {
        margin: 100px 0;
        padding: 2rem 0;
    }

    .relation-header {
        margin: 0 auto 3rem;
        padding: 0 0.5rem;
    }

    .relation-title {
        font-size: 24px;
    }

    .relation-description {
        font-size: 14px;
    }

    .saas-title,
    .smp-title {
        font-size: 16px;
    }

    .feature-boxes {
        flex-direction: column;
        gap: 10px;
        top: 35%;
        left: 5%;
        right: 5%;
        width: 90%;
    }

    .feature-box {
        font-size: 12px;
        padding: 6px 10px;
    }

    /* Features Section */
    .features-section {
        margin: 100px 0;
        padding: 2rem 0.5rem;
    }

    .features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
        max-width: 400px;
    }

    .feature-image-container {
        height: 70px;
    }

    .feature-content {
        padding: 15px;
    }

    .feature-title {
        font-size: 9px;
    }

    .feature-description {
        font-size: 8px;
    }

    /* Cases Section */
    .cases-section {
        display: none;
    }

    .cases-container {
        gap: 60px;
        padding: 0 0.5rem;
    }

    .case-card {
        width: 100%;
        max-width: 100%;
        height: 240px;
        align-self: center !important;
    }

    .case-title {
        font-size: 24px;
        top: 25px;
        left: 25px;
    }

    .case-arrow {
        font-size: 28px;
        top: 25px;
        right: 25px;
    }

    .case-arrow-gredient {
        top: 30px;
        right: 30px;
    }

    .logistics-case-wrapper {
        flex-direction: column;
        gap: 15px;
        align-self: center !important;
    }

    .logistics-details-list {
        width: 100%;
        max-width: 100%;
        height: 240px;
    }

    .logistics-detail-card {
        width: 90%;
        max-width: 100%;
        height: 50px;
        padding: 10px 15px;
    }

    .logistics-detail-title {
        font-size: 14px;
    }

    .logistics-detail-description {
        font-size: 11px;
    }

}