@charset "UTF-8";

/* Website Section */
.service-dev-section { padding: 150px 0; overflow: hidden; background: #fff; }
.service-dev-section.dev-website { background: #fff; }

.dev-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; align-items: center; }
.dev-grid.rev { grid-template-columns: 0.9fr 1.1fr; }
.dev-grid.rev .dev-visual { order: 1; }
.dev-grid.rev .dev-text { order: 2; }

.dev-label { font-family: var(--font-en); font-weight: 800; font-size: 13px; letter-spacing: 0.2em; color: var(--electric-blue); text-transform: uppercase; margin-bottom: 25px; display: block; }
.dev-title { font-family: var(--font-primary); font-size: 48px; font-weight: 900; line-height: 1.2; letter-spacing: -0.04em; color: var(--black); margin-bottom: 30px; }
.dev-title span { color: var(--electric-blue); }
.dev-desc { font-size: 18px; color: #666; line-height: 1.7; margin-bottom: 40px; word-break: keep-all; }

/* Special Service Card - Fixed & Upgraded */
.special-service-card { 
    background: linear-gradient(145deg, #0a0a0f 0%, #1a1a25 100%); 
    padding: 40px; 
    border-radius: 24px; 
    border: 1px solid rgba(0,102,255,0.2); 
    box-shadow: 0 20px 40px rgba(0,0,0,0.15); 
    position: relative;
    overflow: hidden;
    color: #fff;
    margin-top: 50px;
    text-align: left; /* 정렬 명시 */
}

.special-service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
    background: linear-gradient(90deg, #0066ff, #00f2ff);
}

.card-head { margin-bottom: 25px; }
.card-head .tag { 
    display: inline-block;
    background: #0066ff;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 15px;
    letter-spacing: 0.1em;
}

.card-head h3 { 
    font-size: 28px; 
    font-weight: 800; 
    color: #fff; 
    letter-spacing: -0.02em;
    line-height: 1.3;
}
.card-head h3 span { color: #00f2ff; text-shadow: 0 0 15px rgba(0,242,255,0.3); }

.special-service-card p { 
    font-size: 16px; 
    color: rgba(255,255,255,0.7); 
    line-height: 1.7; 
    margin-bottom: 30px; 
    word-break: keep-all;
}

.special-features { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 12px; 
    list-style: none; 
    padding: 0; 
    margin: 0; 
}
.special-features li { 
    font-size: 14px; 
    font-weight: 600; 
    color: #00f2ff; 
    background: rgba(0,242,255,0.1); 
    padding: 6px 14px; 
    border-radius: 30px; 
    border: 1px solid rgba(0,242,255,0.2);
}

/* Website Mockup Style */
.website-mockup { background: #fff; border-radius: 12px; box-shadow: 0 40px 100px rgba(0,0,0,0.1); border: 1px solid #eee; padding: 15px; transform: rotate(-2deg); width: 100%; max-width: 600px; }
.mockup-frame { border: 1px solid #eee; border-radius: 8px; overflow: hidden; }
.m-nav { padding: 15px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #f5f5f5; }
.m-logo { width: 60px; height: 10px; background: #eee; border-radius: 5px; }
.m-menu { display: flex; gap: 4px; }
.m-menu span { width: 15px; height: 15px; background: #f5f5f5; border-radius: 3px; }

.m-hero { padding: 40px 20px; text-align: center; background: #fafafa; }
.m-badge { width: 80px; height: 10px; background: #e0e7ff; margin: 0 auto 15px; border-radius: 5px; }
.m-title-lines { margin-bottom: 20px; }
.m-title-lines span { display: block; width: 150px; height: 15px; background: #ddd; margin: 5px auto; border-radius: 7px; }
.m-title-lines span:nth-child(2) { width: 100px; }
.m-btn { width: 80px; height: 30px; background: var(--electric-blue); margin: 0 auto; border-radius: 15px; }

.m-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 20px; }
.m-card { height: 80px; background: #fff; border: 1px solid #eee; border-radius: 8px; }

.ai-badge-float { position: absolute; right: -40px; bottom: 40px; background: var(--black); color: #fff; padding: 20px 25px; border-radius: 20px; display: flex; align-items: center; gap: 15px; box-shadow: 0 20px 40px rgba(0,0,0,0.2); z-index: 20; }
.ai-icon { width: 40px; height: 40px; background: var(--electric-blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.ai-txt strong { display: block; font-family: var(--font-en); font-size: 16px; font-weight: 800; }
.ai-txt span { font-size: 12px; color: #999; }

/* Tech Stack Icons */
.tech-stack-icons { margin-top: 40px; display: flex; align-items: center; gap: 20px; }
.tech-stack-icons span { font-size: 14px; font-weight: 700; color: #999; }
.tech-stack-icons .icons { display: flex; gap: 10px; }
.t-icon { font-size: 12px; font-weight: 800; color: #666; background: #f0f0f0; padding: 5px 12px; border-radius: 4px; }

@media (max-width: 1199px) {
    .dev-grid { gap: 40px; }
    .dev-title { font-size: 38px; }
}

@media (max-width: 991px) {
    .service-dev-section { padding: 100px 0; }
    .dev-grid { grid-template-columns: 1fr !important; gap: 60px; }
    .dev-grid.rev .dev-visual { order: 2; }
    .dev-grid.rev .dev-text { order: 1; }
    .dev-visual { max-width: 600px; margin: 0 auto; width: 100%; }
    .ai-badge-float { right: 0; bottom: -20px; }
    .special-service-card { padding: 30px; }
}

@media (max-width: 767px) {
    .dev-title { font-size: 32px; }
    .dev-desc { font-size: 16px; }
}
