@charset "UTF-8";

/* Service Develop Hero Styles */
.dev-hero { 
    text-align: left; 
    min-height: 80vh; 
    background: #050505;
    overflow: hidden;
    position: relative;
    padding: 160px 0 100px !important;
}

.dev-hero .section-inner { width: 100%; position: relative; z-index: 10; }

.dev-hero-grid { 
    display: grid; 
    grid-template-columns: 1.1fr 0.9fr; 
    gap: 80px; 
    align-items: center;
}

/* Background Enhancements - Enhanced Visibility */
.service-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-pattern-grid {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at center, black, transparent 80%);
}

.dev-hero .glow-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6; /* 투명도 상향 */
    pointer-events: none;
    mix-blend-mode: screen;
}

.dev-hero .circle-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(0,102,255,0.4) 0%, transparent 70%);
    top: -150px; right: -50px; /* 위치 조정 */
}

.dev-hero .circle-2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(79,70,229,0.3) 0%, transparent 70%);
    bottom: -50px; left: -50px; /* 위치 조정 */
}

.dev-hero .circle-3 {
    width: 450px; height: 450px;
    background: radial-gradient(circle, rgba(0,242,255,0.25) 0%, transparent 70%);
    top: 25%; left: 15%;
    animation: floating 12s infinite alternate ease-in-out;
}

/* Typography Tuning */
.dev-hero .hero-label {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(0,102,255,0.15);
    border: 1px solid rgba(0,102,255,0.3);
    border-radius: 4px;
    font-size: 13px;
    margin-bottom: 25px;
    text-shadow: 0 0 20px rgba(0,102,255,0.5);
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.2em;
}

.dev-hero .hero-title { 
    font-size: 82px; 
    text-align: left; 
    letter-spacing: -0.03em;
    margin-bottom: 35px;
    line-height: 1.05;
    color: #fff;
    font-weight: 900;
}

.dev-hero .hero-title span {
    position: relative;
    background: linear-gradient(135deg, #00f2ff 0%, #0066ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px rgba(0,242,255,0.4));
}

.dev-hero .hero-desc { 
    margin: 0 0 50px 0; 
    text-align: left; 
    font-size: 19px;
    color: rgba(255,255,255,0.7); /* 시인성 상향 */
    line-height: 1.7;
    max-width: 580px; /* 너비 미세 조정 */
    word-break: keep-all; /* 단어 단위 줄바꿈 */
}

/* Hero UI Mockup - Immersive */
.hero-ui-mockup { 
    position: relative; 
    height: 500px; 
    width: 100%; 
    /* perspective: 1000px; - Removed to fix GNB layout break */
}

.mockup-window { 
    position: absolute; 
    background: rgba(15, 15, 25, 0.8); 
    backdrop-filter: blur(25px); 
    border: 1px solid rgba(255,255,255,0.15); 
    border-radius: 16px; 
    box-shadow: 
        0 10px 40px rgba(0,0,0,0.5),
        inset 0 0 0 1px rgba(255,255,255,0.05);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1); 
}

.mockup-window:hover {
    transform: translateZ(50px) scale(1.05);
    border-color: rgba(0,242,255,0.5);
    box-shadow: 
        0 40px 80px rgba(0,0,0,0.7),
        0 0 40px rgba(0,102,255,0.3);
}

.window-code { 
    width: 360px; 
    top: 0; 
    left: 0; 
    z-index: 3; 
    animation: floatAnim 6s infinite alternate ease-in-out; 
}

.window-ui { 
    width: 300px; 
    bottom: 30px; 
    right: 0; 
    z-index: 2; 
    animation: floatAnim 8s infinite alternate-reverse ease-in-out -1s; 
}

.window-stats { 
    width: 200px; 
    top: 45%; 
    left: 35%; 
    z-index: 4; 
    padding: 24px; 
    animation: floatAnim 5s infinite alternate ease-in-out -2s; 
}

.window-code .w-header { padding: 14px; display: flex; gap: 8px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.window-code .dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: #ff5f57; box-shadow: 0 0 10px rgba(255,95,87,0.5); } 
.dot.yellow { background: #febc2e; box-shadow: 0 0 10px rgba(254,188,46,0.5); } 
.dot.green { background: #28c840; box-shadow: 0 0 10px rgba(40,200,64,0.5); }

.window-code .w-content { padding: 25px; font-family: 'JetBrains Mono', 'Consolas', monospace; font-size: 14px; color: #e1e1e6; line-height: 1.6; }
.code-line span { color: #00f2ff; text-shadow: 0 0 10px rgba(0,242,255,0.4); }
.code-line.indent { padding-left: 24px; }

.window-ui { padding: 24px; }
.ui-element-bar { height: 14px; background: rgba(255,255,255,0.1); border-radius: 7px; margin-bottom: 24px; position: relative; overflow: hidden; }
.ui-element-bar::after { content: ''; position: absolute; top: 0; left: 0; height: 100%; width: 40%; background: #0066ff; border-radius: 7px; }
.ui-element-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px; }
.ui-element-grid span { height: 45px; background: rgba(255,255,255,0.06); border-radius: 6px; border: 1px solid rgba(255,255,255,0.08); }
.ui-element-btn { width: 70px; height: 28px; background: linear-gradient(90deg, #0066ff, #00f2ff); border-radius: 14px; margin-left: auto; box-shadow: 0 4px 15px rgba(0,102,255,0.4); }

.stat-circle { 
    width: 60px; height: 60px; 
    border: 5px solid rgba(255,255,255,0.1); 
    border-top-color: #00f2ff; 
    border-radius: 50%; 
    margin-bottom: 20px; 
    animation: rotate 3s linear infinite; 
    filter: drop-shadow(0 0 10px rgba(0,242,255,0.5));
}
.stat-lines span { display: block; height: 7px; background: rgba(255,255,255,0.1); border-radius: 4px; margin-bottom: 10px; }
.stat-lines span:last-child { width: 60%; background: rgba(0,242,255,0.3); }

@keyframes floatAnim { 
    from { transform: translateY(0) rotate(0deg); } 
    to { transform: translateY(-30px) rotate(2deg); } 
}

@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

@media (max-width: 1200px) {
    .dev-hero .hero-title { font-size: 64px; }
    .hero-ui-mockup { height: 400px; }
    .window-code { width: 300px; }
    .window-ui { width: 250px; }
}

@media (max-width: 991px) {
    .dev-hero { padding: 140px 0 80px !important; }
    .dev-hero-grid { grid-template-columns: 1fr; text-align: center; gap: 100px; }
    .dev-hero .hero-title { text-align: center; margin-left: auto; margin-right: auto; }
    .dev-hero .hero-desc { text-align: center; margin-left: auto; margin-right: auto; }
    .hero-ui-mockup { max-width: 500px; margin: 0 auto; }
}

@media (max-width: 767px) {
    .dev-hero .hero-title { font-size: 48px; }
    .hero-ui-mockup { height: 350px; transform: scale(0.85); transform-origin: center; }
    .window-stats { display: none; }
}
