﻿
.section-content.reverse {
    direction: rtl;
}

.section-content.reverse > * {
    direction: ltr;
}

.text-content {
    padding: 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.section-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.6;
}

.key-points {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.point {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.point-icon {
    font-size: 1.5rem;
}

.point span:last-child {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.visual-content {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

/* 3?뱀뀡 - ?곗씠??湲곕컲 ?섏궗寃곗젙 */
.data-decision {
    padding: 120px 10%;
    background: #F9FAFB;
    color: #1a1a1a;
}

.data-decision .section-title {
    color: #0B1220;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.data-decision .section-description {
    color: #4B5563;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 50px;
}

/* ?곗씠???ъ씤??移대뱶 */
.data-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.data-point {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.data-point:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.15);
}

.data-icon {
    color: #2563EB;
    flex-shrink: 0;
}

.data-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.data-content p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* ?곗씠????쒕낫??*/
.data-dashboard {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    width: 100%;
    max-width: 500px;
}

.chart-container {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.chart-container h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 20px;
    text-align: center;
}

/* ?쇱씤 李⑦듃 */
.line-chart {
    display: flex;
    align-items: end;
    justify-content: space-between;
    height: 120px;
    margin-bottom: 15px;
    padding: 0 10px;
}

.chart-line {
    width: 60px;
    height: var(--percentage);
    background: linear-gradient(180deg, #2563EB 0%, #3b82f6 100%);
    border-radius: 4px 4px 0 0;
    position: relative;
    transition: all 0.8s ease;
    transform: scaleY(0);
    transform-origin: bottom;
}

.chart-line::after {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: #2563EB;
    border-radius: 50%;
    border: 2px solid white;
}

/* 諛?李⑦듃 */
.bar-chart {
    display: flex;
    align-items: end;
    justify-content: space-between;
    height: 120px;
    margin-bottom: 15px;
    padding: 0 10px;
}

.bar {
    width: 40px;
    height: var(--height);
    background: linear-gradient(180deg, #2563EB 0%, #3b82f6 100%);
    border-radius: 4px 4px 0 0;
    transition: all 0.8s ease;
    transform: scaleY(0);
    transform-origin: bottom;
}

/* ?꾨꽋 李⑦듃 */
.donut-chart {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
}

.donut-segment {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 8px solid #e5e7eb;
    border-top: 8px solid #2563EB;
    border-radius: 50%;
    transition: all 0.8s ease;
    transform: rotate(calc(var(--percentage) * 3.6deg));
}

.donut-segment:nth-child(2) {
    border-top-color: #3b82f6;
    transform: rotate(calc(var(--percentage) * 3.6deg + 126deg));
}

.donut-segment:nth-child(3) {
    border-top-color: #60a5fa;
    transform: rotate(calc(var(--percentage) * 3.6deg + 216deg));
}

.donut-segment:nth-child(4) {
    border-top-color: #93c5fd;
    transform: rotate(calc(var(--percentage) * 3.6deg + 288deg));
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #6b7280;
    text-align: center;
}

.chart-labels span {
    flex: 1;
    padding: 0 5px;
}

/* 4?뱀뀡 - ?먮룞?붋룻슚??洹밸???*/
.automation-efficiency {
    padding: 120px 10%;
    background: #FFFFFF;
    color: #1a1a1a;
}

.automation-efficiency .section-title {
    color: #0B1220;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.automation-efficiency .section-description {
    color: #4B5563;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 50px;
}

/* ?먮룞???ъ씤??移대뱶 */
.automation-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.automation-point {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #F3F4F6;
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.automation-point:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(250, 204, 21, 0.15);
    background: #FEF3C7;
}

.automation-icon {
    color: #FACC15;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.automation-point:hover .automation-icon {
    color: #EAB308;
    transform: scale(1.1);
}

.automation-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.automation-content p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* ?뚰겕?뚮줈???ㅼ씠?닿렇??*/
.workflow-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    max-width: 600px;
    margin: 0 auto;
}

.workflow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: #F3F4F6;
    border-radius: 12px;
    padding: 20px;
    min-width: 100px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-30px);
}

.workflow-step.automation-highlight {
    background: #FEF3C7;
    border: 2px solid #FACC15;
    transform: scale(1.05);
}

.workflow-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(250, 204, 21, 0.2);
}

.step-icon {
    color: #6b7280;
    transition: all 0.3s ease;
}

.workflow-step.automation-highlight .step-icon {
    color: #FACC15;
}

.workflow-step span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #374151;
    text-align: center;
}

.workflow-arrow {
    color: #D1D5DB;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-20px);
}

.workflow-arrow.animate {
    opacity: 1;
    transform: translateX(0);
}

/* 5?뱀뀡 - ?먯뒪??釉뚮옖???붾（??*/
.onestop-solution {
    padding: 120px 10%;
    background: #F0F9FF;
    color: #1a1a1a;
}

.onestop-solution .section-title {
    color: #0B1220;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.onestop-solution .section-description {
    color: #4B5563;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 50px;
}

/* ?꾨줈?몄뒪 ?ъ씤??移대뱶 */
.process-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.process-point {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.process-point:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.process-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.process-icon.planning {
    background: #0B1220;
    color: white;
}

.process-icon.design {
    background: #2563EB;
    color: white;
}

.process-icon.development {
    background: #FACC15;
    color: #1f2937;
}

.process-icon.marketing {
    background: #10B981;
    color: white;
}

.process-icon.branding {
    background: #8B5CF6;
    color: white;
}

.process-point:hover .process-icon {
    transform: scale(1.1);
}

.process-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.process-content p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* ?먯뒪???뚮줈??*/
.onestop-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
