/* ===== AirMonitor ===== */
.page-hero{
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}
.service-wrapper{
    width:100%;
    text-align:center;
    margin: 30px 0;
}
.service-img{
    width:100%;
    max-width:1100px;
    height:auto;
}
/* AirMonitor 특장점 2x2 파란색 */
.am-features-grid {
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:28px;
    max-width:1800px;
    margin:0 auto;
}
.am-feat-card {
    background:var(--bg-card);
    padding:36px;
    border-top:4px solid var(--accent-blue);
    transition:background 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
    min-height:260px;
    height: 100%;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}
.am-feat-card:hover {
    background:#F0F7FF;
    transform:translateY(-8px);
    box-shadow:0 12px 32px rgba(59,130,246,0.15);
}
.am-feat-card:hover .am-feat-num { color:var(--accent-blue); }
.am-feat-card:hover h4 { color:#1A1A1A; }
.am-feat-card:hover p { color:#4A4A4A; }
.am-feat-card:hover .am-feat-icon { color:var(--accent-blue); }
.am-feat-num {
    font-size:22px;
    font-weight:700;
    color:var(--accent-blue);
    display:block;
    margin-bottom:10px;
    transition:color 0.3s;
}
.am-feat-card h4 {
    font-size:19px;
    font-weight:700;
    color:var(--text-primary);
    margin-bottom:14px;
    transition:color 0.3s;
}
.am-feat-card p {
    font-size:14px;
    color:var(--text-secondary);
    line-height:1.7;
    margin-bottom:16px;
    transition:color 0.3s;
}
.am-feat-icon {
    display:flex;
    justify-content:flex-end;
    color:var(--accent-blue);
    opacity:0.6;
    transition:color 0.3s;
}

/* ===== MoMo ===== */
/* MOMO 특장점 카드 (핑크→하이라이트 그라디언트 테마) */
.momo-feat-card {
    background: var(--bg-card);
    padding: 36px;
    border-top: 4px solid #F7A1F9;
    transition: background 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease, border-top-color 0.4s ease;
    min-height: 260px;
    height:100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.momo-feat-card:hover {
    background: #FDF2FF;
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(167, 139, 250, 0.18);
    border-top-color: #A2D8F0;
}
.momo-feat-card:hover .momo-feat-num {
    background: linear-gradient(135deg, #A2D8F0, #F7A1F9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.momo-feat-card:hover h4 { color: #1A1A1A; }
.momo-feat-card:hover p { color: #4A4A4A; }
.momo-feat-card:hover .momo-feat-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #F7A1F9, #A2D8F0);
}
.momo-feat-num {
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(135deg, #F7A1F9, #A2D8F0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 10px;
    transition: background 0.3s ease;
}
.momo-feat-card h4 {
    font-size: 19px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 14px;
    transition: color 0.3s;
}
.momo-feat-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
    transition: color 0.3s;
}
.momo-feat-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #F7A1F9, #A2D8F0);
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: flex-end;
    color: #fff;
    transition: transform 0.3s ease, background 0.3s ease;
}
.momo-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 1800px;
    margin: 0 auto;
}
/* ===== MOMO 3단계 타임라인 (가로) ===== */
.momo-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    max-width: 1800px;
    margin: 0 auto;
    position: relative;
}
.momo-timeline-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 0 12px;
}
/* 타임라인 연결선 (가로 수평선) */
.momo-timeline-step::before {
    content: '';
    position: absolute;
    top: 75px;
    left: 50%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #F7A1F9, #C9B0F5, #A2D8F0);
    z-index: 0;
    transform: translateX(0);
}
.momo-timeline-step:last-child::before { display: none; }
/* 원형 노드 */
.momo-timeline-node {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 16px rgba(167, 139, 250, 0.35);
    transition: transform 0.3s, box-shadow 0.3s;
    flex-shrink: 0;
}
.momo-timeline-node:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(167,139,250,0.5); }
/* 단계 번호 표지 */
.momo-timeline-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #C9B0F5;
    font-size: 11px;
    font-weight: 700;
    color: #8B5CF6;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
/* 단계 제목 */
.momo-timeline-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-top: 18px;
    margin-bottom: 16px;
    line-height: 1.4;
}
/* 세부 내용 카드 */
.momo-timeline-card {
    background: var(--bg-card);
    border-radius: 14px;
    padding: 22px 20px;
    border: 1.5px solid transparent;
    transition: border-color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
}
.momo-timeline-card:hover {
    border-color: #C9B0F5;
    background: #FAFAFE;
    box-shadow: 0 6px 20px rgba(167,139,250,0.12);
    transform: translateY(-3px);
}
.momo-timeline-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 8px;
    text-align: center;
}
.momo-timeline-card p:last-child { margin-bottom: 0; }
.momo-timeline-card .momo-tl-highlight {
    font-size: 12px;
    font-weight: 600;
    color: #8B5CF6;
    background: rgba(139,92,246,0.07);
    border-radius: 6px;
    padding: 4px 10px;
    display: inline-block;
    margin-top: 4px;
    text-align: center;
}

/* ===== 채증 관리 ===== */
/* ─── WORKFLOW ─── */
.workflow-steps {
    display: flex; gap: 0; align-items: stretch;
    margin: 56px 0;
}
.workflow-step {
    flex: 1; min-width: 180px; text-align: center;
    display: flex; flex-direction: column; align-items: center;
    position: relative; padding: 0 12px;
}
.workflow-num {
    font-family: 'Outfit', sans-serif;
    width: 36px; height: 36px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 800;
    background: linear-gradient(135deg, #10D9A0, #00D4FF);
    /*background: linear-gradient(135deg, #2E8BFF, #00D4FF);*/
    color: #FFFFFF; margin-bottom: 14px;
}
.workflow-connector {
    position: absolute; top: 18px;
    right: -18px; width: 36px; height: 2px;
    background: linear-gradient(90deg, var(--accent-green), #00a375);
    /*background: linear-gradient(90deg, var(--accent-blue), var(--primary));*/
    opacity: 0.4;
}
.workflow-step:last-child .workflow-connector { display: none; }
.workflow-step-title {
    font-size: 14px; font-weight: 700; color: #FFFFFF;
    margin-bottom: 6px;
}
.workflow-step-desc {
    font-size: 12px; color: var(--text-secondary); line-height: 1.5;
}

/* ANIM 특장점 2x2 파란색 */
.news-features-grid {
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
    max-width:1800px;
    margin:0 auto;
}
.news-feat-card {
    background:var(--bg-card);
    padding:36px;
    border-top:4px solid var(--accent-green);
    /*border-top:4px solid var(--accent-blue);*/
    transition:background 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
    min-height:260px;
    height: 100%;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}
.news-feat-card:hover {
    background:#F0F7FF;
    transform:translateY(-8px);
    box-shadow:0 12px 32px rgba(59,130,246,0.15);
}
.news-feat-card:hover .am-feat-num { color:var(--accent-green); }
/*.news-feat-card:hover .am-feat-num { color:var(--accent-blue); }*/
.news-feat-card:hover h4 { color:#1A1A1A; }
.news-feat-card:hover p { color:#4A4A4A; }
.news-feat-card:hover .am-feat-icon { color:var(--accent-green); }
/*.news-feat-card:hover .am-feat-icon { color:var(--accent-blue); }*/
.news-feat-num {
    font-size:22px;
    font-weight:700;
    color:var(--accent-green);
    /*color:var(--accent-blue);*/
    display:block;
    margin-bottom:10px;
    transition:color 0.3s;
}
.news-feat-card h4 {
    font-size:19px;
    font-weight:700;
    color:var(--text-primary);
    margin-bottom:14px;
    transition:color 0.3s;
}
.news-feat-card p {
    font-size:14px;
    color:var(--text-secondary);
    line-height:1.7;
    margin-bottom:16px;
    transition:color 0.3s;
}
.news-feat-icon {
    display:flex;
    justify-content:flex-end;
    color:var(--accent-green);
    /*color:var(--accent-blue);*/
    opacity:0.6;
    transition:color 0.3s;
}

/* ===== 반응형 ===== */
@media(max-width:900px){
    .am-features-grid{ grid-template-columns:1fr }
    .momo-features-grid { grid-template-columns: 1fr; }
    .news-features-grid{ grid-template-columns:1fr }

    .workflow-steps { flex-direction: column; align-items: center; margin: 40px 0; }
    .workflow-step { display: grid; grid-template-columns: 36px 1fr; grid-template-areas: "num   title" "num   desc" "conn  .   ";
        column-gap: 20px; row-gap: 4px; width: 100%; max-width: 251px; min-width: unset; text-align: left; padding: 0; }
    .workflow-num { grid-area: num; align-self: center; margin-bottom: 0; }
    .workflow-step-title { grid-area: title; text-align: left; margin-bottom: 0; }
    .workflow-step-desc { grid-area: desc; text-align: left; }
    .workflow-connector { grid-area: conn; position: static; width: 2px; height: 28px; right: auto; top: auto;
        margin: 8px auto; background: linear-gradient(180deg, var(--accent-green), #00a375); }
        /*margin: 8px auto; background: linear-gradient(180deg, var(--accent-blue), var(--primary)); }*/
}
@media (max-width: 800px) {
    .momo-timeline { flex-direction: column; gap: 32px; align-items: center; }
    .momo-timeline-step::before { display: none; }
    .momo-timeline-step { width: 100%; max-width: 380px; }
}
@media (max-width: 480px) {
    .workflow-step-title { font-size: 13px; }
    .workflow-step-desc  { font-size: 12px; }
    .workflow-connector  { height: 22px; }
}