@charset "UTF-8";

/* Platform Section */
.service-dev-section { padding: 150px 0; overflow: hidden; background: #fff; }
.service-dev-section.dev-platform { background: #fcfcfc; }

.dev-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; align-items: center; }

.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; }

.dev-features { list-style: none; padding: 0; margin: 0; display: grid; gap: 25px; }
.dev-features li { position: relative; padding-left: 35px; }
.dev-features .icon { position: absolute; left: 0; top: 4px; color: var(--electric-blue); width: 22px; height: 22px; }
.dev-features strong { display: block; font-size: 18px; color: var(--black); margin-bottom: 5px; font-weight: 700; }
.dev-features p { font-size: 15px; color: #777; line-height: 1.6; }

/* Browser Mockup Style */
.browser-mockup { background: #fff; border-radius: 12px; box-shadow: 0 40px 100px rgba(0,0,0,0.12); border: 1px solid #eee; overflow: hidden; width: 100%; max-width: 600px; }
.browser-header { background: #f5f5f7; padding: 12px 20px; display: flex; align-items: center; gap: 15px; border-bottom: 1px solid #eee; }
.browser-header .dots { display: flex; gap: 6px; }
.browser-header .dots span { width: 10px; height: 10px; border-radius: 50%; background: #ff5f57; }
.browser-header .dots span:nth-child(2) { background: #febc2e; }
.browser-header .dots span:nth-child(3) { background: #28c840; }
.address-bar { flex: 1; background: #fff; border-radius: 6px; font-size: 11px; color: #999; padding: 4px 15px; font-family: var(--font-en); text-align: center; }

.browser-body { display: flex; min-height: 350px; background: #fff; }
.mockup-sidebar { width: 60px; background: #f9f9f9; border-right: 1px solid #eee; padding: 20px 15px; display: flex; flex-direction: column; gap: 15px; }
.mockup-sidebar .s-item { width: 100%; height: 6px; background: #eee; border-radius: 3px; }
.mockup-sidebar .s-item.active { background: var(--electric-blue); }

.mockup-content { flex: 1; padding: 30px; }
.m-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.m-title { font-family: var(--font-en); font-weight: 800; font-size: 14px; }
.m-user { width: 30px; height: 30px; border-radius: 50%; background: #eee; }
.m-stats { display: flex; gap: 15px; margin-bottom: 30px; }
.stat-card { flex: 1; background: #fcfcfc; border: 1px solid #eee; border-radius: 10px; padding: 15px; }
.s-label { font-size: 11px; color: #999; margin-bottom: 5px; }
.s-value { font-family: var(--font-en); font-weight: 800; font-size: 16px; color: var(--black); }
.s-graph { height: 4px; width: 100%; background: #f0f0f0; margin-top: 10px; border-radius: 2px; position: relative; overflow: hidden; }
.s-graph::after { content: ''; position: absolute; left: 0; top: 0; height: 100%; width: 60%; background: var(--electric-blue); }

.m-table { background: #fff; border: 1px solid #eee; border-radius: 10px; overflow: hidden; }
.t-row { display: flex; padding: 10px 15px; border-bottom: 1px solid #f5f5f5; font-size: 11px; }
.t-row.header { background: #fafafa; font-weight: 700; color: #999; }
.t-col { flex: 1; }
.tag { padding: 2px 8px; border-radius: 4px; background: #fef3c7; color: #d97706; font-size: 10px; }
.tag.success { background: #d1fae5; color: #059669; }

@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-visual { max-width: 600px; margin: 0 auto; width: 100%; }
}

@media (max-width: 767px) {
    .dev-title { font-size: 32px; }
    .dev-desc { font-size: 16px; }
}
