*{
	margin:0;
	padding:0;
	box-sizing:border-box;
}

body{
	font-family:Arial,'Noto Sans KR',sans-serif;
	color:#0f172a;
	background:#fff;
}

a{
	text-decoration:none;
	color:inherit;
}

ul{
	list-style:none;
}

.mw_header{
	position:sticky;
	top:0;
	z-index:100;
	background:rgba(255,255,255,0.92);
	backdrop-filter:blur(12px);
	border-bottom:1px solid #e5eaf3;
}

.mw_header_inner{
	max-width:1440px;
	height:86px;
	margin:0 auto;
	padding:0 34px;
	display:flex;
	align-items:center;
	justify-content:space-between;
}

.mw_logo{
	font-size:42px;
	font-weight:900;
	color:#2169e8;
	letter-spacing:-2px;
	text-shadow:0 4px 10px rgba(33,105,232,0.25);
}

.mw_nav{
	display:flex;
	align-items:center;
	gap:42px;
	font-size:15px;
	font-weight:700;
	color:#111827;
}

.mw_nav_item {
    position: relative;
    padding: 34px 0; /* 기존 유지 */
}

/* 드롭다운 위치 조정 */
.mw_dropdown {
    position: absolute;
    top: 86px; /* 헤더 높이만큼 아래로 */
    left: 50%;
    transform: translateX(-50%);
    width: 170px;
    background: #fff;
    border: 1px solid #dce5f5;
    border-radius: 14px;
    box-shadow: 0 18px 45px rgba(15,23,42,0.14);
    padding: 10px;
    display: none;
    z-index: 100;
}

/* 마우스 호버 시 표시 */
.mw_nav_item:hover .mw_dropdown {
    display: block;
}

.mw_dropdown a{
	display:block;
	padding:12px 14px;
	font-size:14px;
	border-radius:9px;
	color:#334155;
}

.mw_dropdown a:hover{
	background:#eef5ff;
	color:#1d5fd8;
}

.mw_header_btns{
	display:flex;
	align-items:center;
	gap:12px;
}

.mw_btn{
	height:44px;
	padding:0 24px;
	border-radius:15px;
	display:flex;
	align-items:center;
	justify-content:center;
	font-size:14px;
	font-weight:700;
}

.mw_btn_line{
	border:1px solid #d4ddeb;
	color:#111827;
	background:#fff;
}

.mw_btn_blue{
	background:#1f6bea;
	color:#fff;
	box-shadow:0 10px 24px rgba(31,107,234,0.25);
}

.mw_mobile_btn{
	display:none;
	border:0;
	background:#1f6bea;
	color:#fff;
	width:42px;
	height:42px;
	border-radius:10px;
	font-size:22px;
}

.mw_mobile_menu{
	display:none;
	padding:15px 20px;
	background:#fff;
	border-bottom:1px solid #e5eaf3;
}

.mw_mobile_menu a{
	display:block;
	padding:14px 0;
	font-weight:700;
	border-bottom:1px solid #edf2f7;
}

.mw_hero{
	position:relative;
	overflow:hidden;
	margin-top:-50px;
	background:
		radial-gradient(circle at 72% 20%, #dbeafe 0, transparent 34%),
		linear-gradient(110deg,#fff 0%,#f8fbff 44%,#dcebff 100%);
}

.mw_hero_slider{
	position:relative;
	min-height:520px;
}

.mw_slide{
	display:none;
}

.mw_slide.active{
	display:block;
}

.mw_hero_inner{
	max-width:1440px;
	margin:0 auto;
	padding:80px 34px 70px;
	display:grid;
	grid-template-columns:1fr 1.15fr;
	align-items:center;
	gap:60px;
}

.mw_hero_sub{
	font-size:18px;
	color:#0d5be1;
	font-weight:800;
	margin-bottom:18px;
}

.mw_hero_text h1{
	font-size:50px;
	line-height:0.95;
	letter-spacing:-3px;
	color:#071631;
	font-weight:900;
	margin-bottom:18px;
}

.mw_hero_text h2{
	font-size:30px;
	line-height:1.35;
	margin-bottom:22px;
	font-weight:800;
}

.mw_hero_desc{
	font-size:17px;
	line-height:1.8;
	color:#5b677a;
	margin-bottom:32px;
}

.mw_hero_btns{
	display:flex;
	gap:16px;
}

.mw_big_btn{
	height:56px;
	padding:0 30px;
	border-radius:13px;
	display:flex;
	align-items:center;
	justify-content:center;
	font-size:17px;
	font-weight:800;
}

.mw_big_blue{
	background:#1767e9;
	color:#fff;
	box-shadow:0 15px 30px rgba(23,103,233,0.28);
}

.mw_big_white{
	background:#fff;
	color:#111827;
	border:1px solid #d7e0ee;
	box-shadow:0 8px 20px rgba(15,23,42,0.08);
}

.mw_hero_visual{
	min-width:0;
}

.mw_browser{
	background:#fff;
	border:1px solid #d7e0ef;
	border-radius:18px;
	box-shadow:0 28px 70px rgba(37,99,235,0.18);
	overflow:hidden;
}

.mw_browser_top{
	height:42px;
	background:#eef3fb;
	display:flex;
	align-items:center;
	gap:8px;
	padding:0 16px;
}

.mw_browser_top span{
	width:10px;
	height:10px;
	border-radius:50%;
	background:#f97316;
}

.mw_browser_top span:nth-child(2){
	background:#facc15;
}

.mw_browser_top span:nth-child(3){
	background:#22c55e;
}

.mw_browser_body{
	height:360px;
	display:grid;
	grid-template-columns:170px 1fr 280px;
}

.mw_sidebar{
	background:#f6f9fe;
	border-right:1px solid #e3ebf7;
	padding:24px 16px;
}

.mw_sidebar strong{
	color:#1f6bea;
	font-size:18px;
	display:block;
	margin-bottom:18px;
}

.mw_sidebar p{
	font-size:13px;
	padding:10px;
	border-radius:8px;
	color:#334155;
}

.mw_sidebar p.on{
	background:#1f6bea;
	color:#fff;
}

.mw_mail_list{
	padding:24px 18px;
	border-right:1px solid #e3ebf7;
}

.mw_search{
	height:28px;
	width:200px;
	border-radius:14px;
	background:#f1f5f9;
	margin:0 auto 20px;
}

.mw_mail_row{
	display:grid;
	grid-template-columns:70px 1fr 45px;
	gap:10px;
	align-items:center;
	height:42px;
	border-bottom:1px solid #edf2f7;
	font-size:12px;
	color:#334155;
}

.mw_mail_row span{
	overflow:hidden;
	white-space:nowrap;
	text-overflow:ellipsis;
}

.mw_mail_row em{
	font-style:normal;
	color:#64748b;
}

.mw_mail_view{
	padding:34px 22px;
	font-size:13px;
	line-height:1.8;
	color:#334155;
}

.mw_mail_view h3{
	font-size:17px;
	color:#111827;
	margin-bottom:20px;
}

.mw_file_box{
	margin-top:20px;
	padding:14px;
	border:1px solid #dce5f5;
	border-radius:10px;
	background:#fff;
	color:#0f172a;
}

.mw_dashboard{
	display:grid;
	grid-template-columns:1fr 1fr;
	gap:18px;
}

.mw_dash_card{
	min-height:99px;
	background:#fff;
	border:1px solid #dce5f5;
	border-radius:20px;
	padding:25px;
	font-size:20px;
	font-weight:800;
	box-shadow:0 20px 50px rgba(37,99,235,0.12);
}

.mw_dash_card.large{
	grid-column:1 / 3;
	min-height:170px;
}

.mw_slider_dots{
	position:absolute;
	left:50%;
	bottom:25px;
	transform:translateX(-50%);
	display:flex;
	gap:8px;
}

.mw_slider_dots button{
	width:10px;
	height:10px;
	border-radius:50%;
	border:0;
	background:#b8c7dc;
	cursor:pointer;
}

.mw_slider_dots button.active{
	width:28px;
	border-radius:10px;
	background:#1f6bea;
}

.mw_stats{
	max-width:1320px;
	margin:-15px auto 0;
	position:relative;
	z-index:3;
	background:#fff;
	border:1px solid #dce5f5;
	border-radius:16px;
	box-shadow:0 18px 40px rgba(15,23,42,0.08);
	display:grid;
	grid-template-columns:repeat(4,1fr);
	padding:24px;
	background-color:#fbfcfe;
}

.mw_stat_item{
	display:flex;
	align-items:center;
	justify-content:center;
	gap:16px;
}

.mw_stat_icon{
	font-size:34px;
}

.mw_stat_item strong{
	display:block;
	font-size:18px;
	color:#1464e8;
	line-height:1.1;
}

.mw_stat_item span{
	display:block;
	font-size:14px;
	color:#64748b;
	margin-top:4px;
}

.mw_section{
	max-width:1320px;
	margin:70px auto 0;
	padding:0 20px;
}

.mw_section_title{
	text-align:center;
	margin-top: -50px;
	margin-bottom:34px;
}

.mw_section_title h2{
	font-size:30px;
	font-weight:900;
	margin-bottom:10px;
}

.mw_section_title p{
	color:#64748b;
	font-size:15px;
}

.mw_feature_grid{
	display:grid;
	grid-template-columns:repeat(6,1fr);
	gap:16px;
}

.mw_feature_card{
	background:#fff;
	border:1px solid #dce5f5;
	border-radius:15px;
	padding:24px 22px;
	box-shadow:0 14px 35px rgba(15,23,42,0.08);
	transition:0.25s;
}

.mw_feature_card:hover{
	transform:translateY(-8px);
	box-shadow:0 24px 50px rgba(37,99,235,0.14);
}

.mw_feature_icon{
	font-size:34px;
	margin-bottom:12px;
}

.mw_feature_card h3{
	font-size:18px;
	margin-bottom:18px;
}

.mw_feature_card li{
	font-size:14px;
	color:#334155;
	line-height:1.9;
	position:relative;
	padding-left:12px;
}

.mw_feature_card li:before{
	content:"";
	position:absolute;
	left:0;
	top:12px;
	width:4px;
	height:4px;
	background:#64748b;
	border-radius:50%;
}

.mw_reason{
	margin-top:70px;
	padding:50px 20px 70px;
	background:#f8fbff;
}

.mw_reason_inner{
	max-width:1320px;
	margin:0 auto;
	display:grid;
	grid-template-columns:1.2fr 2fr;
	gap:40px;
	align-items:center;
}

.mw_reason_text h2{
	font-size:30px;
	font-weight:900;
	margin-bottom:18px;
}

.mw_reason_text p{
	font-size:15px;
	line-height:1.8;
	color:#475569;
}

.mw_reason_grid{
	display:grid;
	grid-template-columns:repeat(4,1fr);
	gap:24px;
}

.mw_reason_item div{
	font-size:34px;
	margin-bottom:12px;
}

.mw_reason_item strong{
	display:block;
	font-size:17px;
	margin-bottom:8px;
}

.mw_reason_item p{
	font-size:14px;
	line-height:1.6;
	color:#64748b;
}

@media(max-width:1200px){
	.mw_feature_grid{
		grid-template-columns:repeat(3,1fr);
	}

	.mw_browser_body{
		grid-template-columns:150px 1fr;
	}

	.mw_mail_view{
		display:none;
	}
}

@media(max-width:900px){
	.mw_nav,
	.mw_header_btns{
		display:none;
	}

	.mw_mobile_btn{
		display:block;
	}

	.mw_mobile_menu.active{
		display:block;
	}

	.mw_hero_inner{
		grid-template-columns:1fr;
		padding-top:50px;
	}

	.mw_hero_text h1{
		font-size:54px;
	}

	.mw_stats{
		grid-template-columns:repeat(2,1fr);
		margin:20px 20px 0;
	}

	.mw_reason_inner{
		grid-template-columns:1fr;
	}

	.mw_reason_grid{
		grid-template-columns:repeat(2,1fr);
	}
}

@media(max-width:600px){
	.mw_header_inner{
		height:70px;
		padding:0 18px;
	}

	.mw_logo{
		font-size:30px;
	}

	.mw_hero_inner{
		padding:40px 20px 60px;
	}

	.mw_hero_text h1{
		font-size:42px;
	}

	.mw_hero_text h2{
		font-size:23px;
	}

	.mw_hero_btns{
		flex-direction:column;
	}

	.mw_browser_body{
		grid-template-columns:1fr;
		height:auto;
	}

	.mw_sidebar{
		display:none;
	}

	.mw_mail_list{
		border-right:0;
	}

	.mw_stats{
		grid-template-columns:1fr;
	}

	.mw_feature_grid{
		grid-template-columns:1fr;
	}

	.mw_reason_grid{
		grid-template-columns:1fr;
	}
}

.mw_reason_grid {
    display: flex;
    justify-content: space-between; /* 항목 사이 간격 균등 분배 */
    flex-wrap: nowrap;              /* 핵심: 줄바꿈 금지 */
    gap: 15px;                      /* 항목 간 간격 */
    width: 100%;                    /* 전체 너비 확보 */
}

.mw_reason_item {
    display: flex;
    align-items: flex-start;        /* 상단 정렬 유지 */
    flex: 0 0 23%;                  /* 4개를 나란히 놓기 위해 약 25% 설정 */
    box-sizing: border-box;
}

/* 아이콘과 텍스트 스타일은 그대로 유지 */
.mw_icon {
    flex-shrink: 0;
    margin-right: 10px;
    width: 35px;                    /* 아이콘 크기 조정 */
}

.mw_text {
    display: flex;
    flex-direction: column;
}

.mw_text strong {
    font-size: 14px;
    margin-bottom: 3px;
    white-space: nowrap;            /* 제목이 줄바꿈 되지 않도록 */
}

.mw_text p {
    margin: 0;
    font-size: 12px;
    color: #666;
    line-height: 1.3;
}
/* ==========================================
   메일웨어 서브페이지 공통 스타일 (가독성 강화 버전)
   ========================================== */

/* 상단 비주얼 타이틀 섹션 */
.sub-visual {
    background: linear-gradient(135deg, #1b2a4a 0%, #2952a3 100%);
    color: #ffffff;
    padding: 60px 20px;
    text-align: center;
    margin-bottom: 50px;
}

.sub-visual .sub-category {
    font-size: 14px;
    color: #93c5fd; /* 상단 분류 라벨은 시원하게 */
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 700;
}

.sub-visual h1 {
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 15px 0;
    color: #ffffff;
}

.sub-visual h2 {
    font-size: 20px;
    font-weight: 500;
    color: #f1f5f9; /* 연한 회색에서 밝은 화이트톤으로 변경 */
    margin: 0 0 15px 0;
}

.sub-visual p {
    font-size: 15px;
    color: #cbd5e1; /* 설명글 글자색을 진하게 올림 */
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* 핵심 기능 상세 섹션 레이아웃 */
.feature-detail-section {
    max-width: 1200px;
    margin: 0 auto 80px auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 28px;
    color: #0f172a; /* 거의 완전한 검정에 가까운 진한 색상 */
    font-weight: 800;
    margin-bottom: 10px;
}

.section-header p {
    font-size: 16px;
    color: #334155; /* 서브 카피도 진하게 수정 */
    font-weight: 500;
}

/* 기능 카드 그리드 (2열 구조) */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feature-card {
    background: #ffffff;
    border: 1px solid #cbd5e1; /* 테두리도 조금 더 선명하게 */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
}


.feature-content {
    padding: 25px;
}

.feature-content h3 {
    font-size: 20px;
    color: #1e3a8a; /* 타이틀은 진한 네이비 */
    margin: 0 0 12px 0;
    font-weight: 800;
}

.feature-content p {
    font-size: 15px;
    color: #1e293b; /* 본문 텍스트를 연한 회색(#475569)에서 진한 차콜색으로 대폭 상향 */
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
}

/* 하단 CTA 배너 섹션 */
.cta-banner {
    background: #f1f5f9;
    border-top: 1px solid #cbd5e1;
    border-bottom: 1px solid #cbd5e1;
    padding: 60px 20px;
    text-align: center;
    margin-top: 60px;
}

.cta-banner h2 {
    font-size: 26px;
    color: #0f172a;
    font-weight: 800;
    margin-bottom: 10px;
}

.cta-banner p {
    font-size: 16px;
    color: #334155;
    font-weight: 500;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.cta-buttons .btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s;
}

.cta-buttons .btn.primary {
    background: #2563eb;
    color: #ffffff;
}

.cta-buttons .btn.primary:hover {
    background: #1d4ed8;
}

.cta-buttons .btn.secondary {
    background: #0f172a;
    color: #ffffff;
}

.cta-buttons .btn.secondary:hover {
    background: #000000;
}

/* 반응형 모바일 대응 */
@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
    .sub-visual h1 {
        font-size: 28px;
    }
}

/* ==========================================
   웹메일 상세 페이지 이미지 컨테이너 스타일
   ========================================== */

.feature-image {
    background: #f1f5f9;
    width: 100%;
    height: 240px; /* 카드의 이미지 영역 높이 지정 */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #cbd5e1;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 이미지가 영역에 꽉 차도록 비율 유지하며 자름 */
    object-position: center; /* 이미지의 중앙을 기준으로 정렬 */
    transition: transform 0.3s ease; /* 마우스 오버 시 부드러운 확대 효과 */
}

/* 마우스가 카드로 올라갔을 때 이미지가 살짝 확대되는 시각적 디테일 */
.feature-card:hover .feature-image img {
    transform: scale(1.03);
}