*{margin:0;padding:0;box-sizing:border-box;}
body{
    font-family:"Noto Sans KR",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
    color:#222;
    background:#fff;
}

/* 공통 래퍼 */
.wrap{
    max-width:1200px;
    margin:0 auto;
}


/* 로고 */
.logo{
    display:flex;
    align-items:center;
    gap:8px;
    text-decoration:none;
    color:inherit;
}
.logo-mark{
    width:18px;
    height:24px;
    background:linear-gradient(to top,#0052ff,#6bb4ff);
    border-radius:2px;
}
.logo-text{
    font-size:22px;
    font-weight:700;
}

/* GNB 메뉴 */
.gnb{
    flex:1;
    display:flex;
    justify-content:center;
}
.gnb ul{
    list-style:none;
    display:flex;
    gap:32px;
}
.gnb a{
    text-decoration:none;
    font-size:15px;
    color:#555;
    padding-bottom:4px;
}
.gnb a:hover,
.gnb a.active{
    color:#0052ff;
    border-bottom:2px solid #0052ff;
}

/* 우측 유틸(로그인) */
.util{
    min-width:60px;
    text-align:right;
    font-size:14px;
}
.util a{
    text-decoration:none;
    color:#666;
}
.util a:hover{
    color:#0052ff;
}

/* 메인 배너 */
.hero{
    width:80%;
    margin: 0 10%;        /* 필요하면 높이 조절 */
    /* ↑ 여기만 실제 배너 이미지 경로로 교체 */
    position:relative;
}
.hero::after{
    /* 살짝 그라데이션 넣고 싶으면 사용 */
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
}

/* 메인 콘텐츠 샘플 */
.main{
    max-width:1200px;
    margin:40px auto 80px;
    padding:0 20px;
}
.main h2{
    font-size:22px;
    margin-bottom:10px;
}
.main p{
    font-size:14px;
    color:#666;
}

/* 반응형 */
@media (max-width:768px){
    .header-inner{
        flex-direction:column;
        align-items:flex-start;
        gap:10px;
    }
    .gnb{
        justify-content:flex-start;
    }
    .gnb ul{
        gap:18px;
        font-size:14px;
        flex-wrap:wrap;
    }
    .hero{height:260px;}
}
/* 전략 리포트 */
.report-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:18px;
}
.report-card{
    background:#ffffff;
    border-radius:16px;
    border:1px solid #e5e7eb;
    padding:16px 14px 18px;
}
.report-label{
    font-size:11px;
    color:#9ca3af;
    margin-bottom:4px;
}
.report-name{
    font-size:15px;
    font-weight:700;
    margin-bottom:6px;
}
.report-meta{
    font-size:12px;
    color:#6b7280;
}
.report-tag{
    margin-top:8px;
    display:inline-block;
    padding:4px 8px;
    border-radius:999px;
    background:#eff6ff;
    font-size:11px;
    color:#1d4ed8;
}

/* 시황/시장뷰 */
.market-box{
    background:#0b1022;
    color:#e5e7eb;
    border-radius:16px;
    padding:18px 18px 20px;
}
.market-title{
    font-size:15px;
    font-weight:600;
    margin-bottom:6px;
}
.market-text{
    font-size:13px;
    color:#c7d2fe;
}

/* 이용 안내 */
.guide-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:18px;
}
.guide-card{
    background:#ffffff;
    border-radius:14px;
    border:1px solid #e5e7eb;
    padding:14px 14px 16px;
    font-size:13px;
}
.guide-step{
    font-size:12px;
    font-weight:700;
    color:#2563eb;
    margin-bottom:4px;
}

/* 고객센터 */
.cs-panel{
    display:grid;
    grid-template-columns:1.1fr 1fr;
    gap:24px;
}
.cs-info{
    font-size:14px;
    color:#4b5563;
}
.cs-info strong{font-size:15px;}
.cs-form{
    background:#ffffff;
    border-radius:16px;
    border:1px solid #e5e7eb;
    padding:14px;
}
.cs-row{
    margin-bottom:10px;
}
.cs-row label{
    display:block;
    font-size:12px;
    margin-bottom:3px;
}
.cs-row input,
.cs-row textarea{
    width:100%;
    border-radius:8px;
    border:1px solid #d1d5db;
    padding:7px 8px;
    font-size:13px;
}
.cs-row textarea{
    min-height:90px;
    resize:vertical;
}
.cs-submit{
    margin-top:6px;
    padding:9px 18px;
    border-radius:999px;
    border:none;
    background:#2563eb;
    color:#ffffff;
    font-size:13px;
    font-weight:600;
    cursor:pointer;
}

/* 푸터 */
.footer{
    margin-top:34px;
    padding:16px 0 20px;
    font-size:11px;
    color:#6b7280;
    border-top:1px solid #e5e7eb;
    text-align:center;
}

/* 반응형 */
@media(max-width:980px){
    .hero-inner{
        grid-template-columns:1fr;
    }
    .service-grid,
    .cs-panel{
        grid-template-columns:1fr;
    }
    .report-grid,
    .guide-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
    .menu-grid{
        grid-template-columns:repeat(3,minmax(0,1fr));
    }
}
@media(max-width:640px){
    .header-inner{padding:10px 14px;}
    .gnb{
        position:absolute;
        right:14px;
        top:50px;
        background:#ffffff;
        border-radius:12px;
        box-shadow:0 10px 30px rgba(15,23,42,.15);
        padding:10px 14px;
        flex-direction:column;
        align-items:flex-start;
        display:none;
    }
    .gnb.open{display:flex;}
    .btn-ghost{margin-top:4px;}
    .nav-toggle{display:flex;}
    .hero-inner{padding:26px 18px 32px;}
    .report-grid,
    .guide-grid{
        grid-template-columns:1fr;
    }
    .menu-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
}
.wrap{
    max-width:80%;
    margin:0 10%;
}

/* 섹션 헤더: 제목 + 설명 + 칩 */
.sectionwrap{
    margin: 20px 0;
}

.section-head-inline{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    margin-bottom:18px;
    padding-bottom:10px;
    border-bottom:1px solid #e5e7eb;
}

.section-head-left{
    display:flex;
    align-items:baseline;
    gap:12px;
}

.section-title{
    font-size:20px;
    font-weight:700;
    margin:0;
}

.section-sub{
    font-size:13px;
    color:#6b7280;
    margin:0;
}

.section-chip{
    display:inline-block;
    padding:4px 10px;
    border-radius:999px;
    font-size:11px;
    color:#1d4ed8;
    background:rgba(59,130,246,.08);
    border:1px solid rgba(59,130,246,.3);
}

/* 리포트 카드 고급 스타일 */
.report-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:18px;
}

.report-card{
    background:linear-gradient(135deg,#ffffff,#f9fafb);
    border-radius:18px;
    border:1px solid #e5e7eb;
    padding:16px 16px 18px;
    box-shadow:0 10px 24px rgba(15,23,42,.06);
    transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.report-card:hover{
    transform:translateY(-4px);
    box-shadow:0 16px 32px rgba(15,23,42,.12);
    border-color:#c4d3ff;
}

.report-card-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:6px;
}

.report-label{
    font-size:11px;
    color:#9ca3af;
}

.report-status{
    font-size:11px;
    padding:3px 8px;
    border-radius:999px;
    background:#ecfdf3;
    color:#15803d;
    font-weight:600;
}
.report-status.ended{
    background:#fef2f2;
    color:#b91c1c;
}

.report-name{
    font-size:16px;
    font-weight:700;
    margin-bottom:6px;
    color:#111827;
}

.report-meta{
    font-size:12px;
    color:#6b7280;
}

.report-tag{
    display:inline-block;
    margin-top:10px;
    padding:5px 10px;
    border-radius:999px;
    background:#eff6ff;
    color:#1d4ed8;
    font-size:11px;
    font-weight:500;
}
.section-head-right{
    display:flex;
    align-items:center;
    gap:14px;
}

.section-more{
    font-size:13px;
    font-weight:600;
    color:#2563eb;
    padding:6px 10px;
    border-radius:8px;
    border:1px solid rgba(37,99,235,.3);
    background:rgba(37,99,235,.06);
    transition:0.15s ease;
    text-decoration:none;
}

.section-more:hover{
    background:rgba(37,99,235,.12);
    border-color:#2563eb;
    color:#1d4ed8;
    text-decoration:none;
}
.market-weather-box{
    background:linear-gradient(135deg,#1F3A7A,#3558A6);
    color:#fff;
    padding:26px 28px;
    border-radius:18px;
    box-shadow:0 6px 20px rgba(0,0,0,.15);
    margin-bottom:24px;

    display:flex;
    justify-content:space-between;
    align-items:flex-start;
}

/* 왼쪽 박스: 아이콘 + 제목 + 맑음 */
.weather-left{
    display:flex;
    align-items:flex-start;
    gap:14px;
    flex-shrink:0;
}

/* 아이콘 */
.weather-icon{
    width:55px;
    height:55px;
    border-radius:50%;
    background:radial-gradient(circle at 35% 25%, #ffe999, #ffb300);
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}
.weather-icon img{
    width:34px;
    height:34px;
    object-fit:contain;
}

/* 제목 + 맑음 */
.weather-title-box{
    display:flex;
    flex-direction:column;
    gap:3px;
}
.weather-title{
    font-size:20px;
    font-weight:700;
}
.weather-sub{
    font-size:13px;
    opacity:.9;
}

/* 오른쪽 설명문 */
.weather-desc{
    flex:1;
    margin-left:40px;
    font-size:14px;
    line-height:1.65;
    opacity:.95;
}
/* 전체 영역 */
/* 전체 섹션 래퍼 */
.cs-section{
    max-width:900px;
    margin:40px auto 60px;
    padding:0 10px;
    font-family:"Noto Sans KR",-apple-system,system-ui,sans-serif;
}

/* 상단: 고객센터 제목 줄 */
.cs-section-head{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    padding-bottom:10px;
    border-bottom:1px solid #e5e7eb;
    margin-bottom:26px;
}
.cs-section-title{
    font-size:20px;
    font-weight:700;
    margin:0;
}
.cs-section-sub{
    font-size:13px;
    color:#6b7280;
    margin:4px 0 0;
}
.cs-head-more{
    display:inline-block;
    padding:6px 14px;
    font-size:13px;
    font-weight:600;
    color:#2563eb;
    border-radius:999px;
    border:1px solid rgba(37,99,235,.4);
    background:#ffffff;
    text-decoration:none;
    transition:.15s;
}
.cs-head-more:hover{
    background:#eff6ff;
}

/* 공지사항 박스 */
.cs-notice{
    margin-top:10px;
}
.notice-title{
    font-size:18px;
    font-weight:700;
    margin:0 0 16px;
}
.notice-list{
    list-style:none;
    padding:0;
    margin:0;
    border-top:1px solid #e5e7eb;
    border-bottom:1px solid #e5e7eb;
}
.notice-list li{
    border-bottom:1px solid #f3f4f6;
}
.notice-list li:last-child{
    border-bottom:none;
}
.notice-list a{
    display:block;
    padding:12px 4px;
    font-size:14px;
    color:#374151;
    text-decoration:none;
    transition:.15s;
}
.notice-list a:hover{
    background:#f3f6ff;
    color:#2563eb;
}

/* 공지사항 전체보기 */
.notice-more-wrap{
    margin-top:10px;
    text-align:right;
}
.notice-more{
    font-size:13px;
    color:#2563eb;
    text-decoration:none;
    font-weight:600;
}
.notice-more:hover{
    text-decoration:underline;
}

/* 하단 문의하기 버튼 */
.cs-contact-wrap{
    margin-top:24px;
    text-align:right;
}
.cs-contact-btn{
    display:inline-block;
    padding:12px 32px;
    border-radius:999px;
    background:linear-gradient(135deg,#4f9bff,#2563e)
}
.report-thumb {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 8px;
}
.report-thumb img {
    width: 100%;
    display: block;
}
.report-meta div {
    font-size: 0.9rem;
}
.report-meta strong {
    font-weight: 700;
}
.report-thumb {
    width: 100%;
    height: 180px; /* 원하는 고정 높이 */
    overflow: hidden;
    border-radius: 12px;
}

.report-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 이미지 비율 유지하면서 영역 꽉 채움 */
    display: block;
}
.meta-goal {
    color: #d62828;   /* 선명한 빨강 */
    font-weight: 600;
}

.meta-risk {
    color: #1e6ffb;   /* Blue 계열 안정적 색상 */
    font-weight: 600;
}
.pbtn{
    width: 100%;
    display: flex;
    justify-content: center;
}
.product-btn{
    display:inline-block;
    margin-top:16px;
    padding:9px 26px;
    background:#333;
    color:#fff;
    font-size:14px;
    text-decoration:none;
    cursor: pointer;
}
.floating-buy-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #1f5fff;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    line-height: 64px;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
    z-index: 9999;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* hover 효과 */
.floating-buy-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.35);
}

/* 모바일 대응 */
@media (max-width: 480px) {
    .floating-buy-btn {
        width: 56px;
        height: 56px;
        line-height: 56px;
        font-size: 12px;
        right: 16px;
        bottom: 16px;
    }
}

