@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;700;900&family=Yeseva+One&display=swap');

:root {
    --primary: #ff0090;
    --bg-color: #fff5fa;
    --white: #ffffff;
    --text: #222;
    --gray-bg: #f3f3f3;
    --border-color: #e0e0e0;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Noto Sans KR', sans-serif;
    background-color: var(--bg-color);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

.inner-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

section.inner-container { margin-bottom: 180px; }

/* 정렬 유틸리티 */
.center { text-align: center; }
.left-align { text-align: left; }

/* 폰트 */
.main-title, .sub-title, .section-title, .num {
    font-family: 'Yeseva One', cursive;
    font-weight: 400;
    line-height: 1.1;
}
.outline-text {
    color: transparent;
    -webkit-text-stroke: 1.5px var(--primary);
}
.pink-text { color: var(--primary); }

/* 헤더 */
.header-full {
    background: var(--white);
    border-bottom: 2px solid var(--primary);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.nav-flex { display: flex; justify-content: space-between; }
.nav-flex a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 900;
    padding: 20px 10px;
    flex: 1;
    text-align: center;
    transition: 0.3s;
}
.nav-flex a.active, .nav-flex a:hover {
    background: var(--primary);
    color: var(--white);
}

/* 히어로 */
.hero-section { padding: 80px 0; text-align: center; margin-bottom: 100px !important; }
.main-title {
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 30px;
    font-style: italic;
    transform: skewX(-5deg);
}
.block-text { display: block; }
.tags-wrapper { display: flex; justify-content: center; gap: 15px; margin-bottom: 30px; }
.tag { background: #222; color: #fff; padding: 8px 20px; border-radius: 30px; font-weight: bold; }
.big-arrow { margin: 20px 0; animation: bounce 2s infinite; }
.big-arrow i { font-size: 4rem; color: var(--primary); }
@keyframes bounce { 0%, 100% {transform:translateY(0);} 50% {transform:translateY(-15px);} }
.sub-title { font-size: 3rem; margin-bottom: 30px; }
.info-box { background: var(--gray-bg); display: inline-block; padding: 20px 40px; border-radius: 15px; font-size: 1.1rem; }
.highlight { color: #00b894; font-weight: bold; margin-top: 5px;}

/* 마퀴 */
.marquee-full {
    background: var(--primary); width: 100%; padding: 15px 0; overflow: hidden; margin: 50px 0 150px 0;
}
.marquee-track {
    white-space: nowrap; animation: scroll 20s linear infinite; font-size: 1.5rem; font-weight: 900; color: #fff; font-style: italic;
}
.marquee-track span { margin-right: 50px; }
@keyframes scroll { from {transform: translateX(0);} to {transform: translateX(-50%);} }

/* 프로필 (토끼 위치 고정) */
.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--primary);
    font-style: italic;
    margin-bottom: 30px;
}
.profile-wrapper { position: relative; margin-top: 100px; }
.character-img {
    position: absolute;
    top: -195px;
    right: 10px; 
    z-index: 10;
    width: 180px;
}
.character-img img { width: 100%; height: auto; }
.profile-card {
    background: var(--gray-bg);
    padding: 40px;
    border-radius: 20px;
    position: relative;
}
.card-row {
    display: flex; justify-content: space-between; padding: 18px 0;
    border-bottom: 1px solid var(--border-color); font-size: 1.1rem; color: #555;
}
.card-row.last { border-bottom: none; }
.card-row .label { font-weight: 900; color: var(--text); }
@media (max-width: 768px) {
    .profile-wrapper { margin-top: 150px; }
    .character-img { top: -160px; right: 50%; transform: translateX(50%); }
}

/* 메뉴 링크 */
.menu-grid { display: flex; gap: 40px; align-items: flex-start; }
@media (max-width: 768px) { .menu-grid { flex-direction: column; align-items: stretch; } }
.click-guide { flex: 0 0 30%; }
.click-guide h3 { font-size: 2.5rem; color: var(--primary); margin-bottom: 20px; line-height: 1.2;}
.arrow-icon { font-size: 3rem; color: var(--primary); }

.link-list { flex: 1; list-style: none; }
.link-list li {
    background: #fff; border: 1px solid #eee; border-radius: 10px; 
    margin-bottom: 10px; transition: 0.3s; padding: 0; 
}
.link-list li a {
    display: flex; align-items: center; width: 100%; height: 100%;
    padding: 20px; text-decoration: none; 
    font-size: 1.3rem; font-weight: 900; color: #ccc;
}
.link-list li:hover { transform: translateX(10px); border-color: var(--primary); }
.link-list li:hover a { color: var(--primary); }
.link-list .num { margin-right: 20px; font-size: 1.5rem; font-style: italic;}

/* Why & Stats */
.reason-list { display: flex; gap: 20px; justify-content: center; margin: 30px 0; flex-wrap: wrap;}
.reason-item { background: #fff; padding: 12px 30px; border-radius: 50px; font-weight: 900; box-shadow: 0 4px 10px rgba(0,0,0,0.05); font-size: 1.1rem;}
.bullet { background: var(--primary); color: #fff; border-radius: 50%; width: 35px; height: 35px; display: inline-flex; align-items: center; justify-content: center; margin-right: 15px; font-family: 'Yeseva One'; font-style: italic;}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin: 50px 0; }
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-box {
    background: var(--primary); color: #fff; padding: 40px 20px; border-radius: 20px;
    text-align: center; display: flex; flex-direction: column; justify-content: center;
    transition: transform 0.3s;
}
.stat-box:hover { transform: translateY(-10px); }
.stat-box strong { font-family: 'Yeseva One'; font-size: 3rem; font-style: italic; margin-bottom: 10px; line-height: 1;}
.stat-box span { font-weight: 900; font-size: 1.1rem; }

/* 서비스 */
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; margin-top: 50px; }
@media (max-width: 768px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
.service-card {
    background: #fff; padding: 40px 20px; text-align: center;
    border-radius: 25px; box-shadow: 0 10px 25px rgba(255, 0, 144, 0.15);
}
.pill { background: var(--primary); color: #fff; padding: 8px 20px; border-radius: 30px; font-size: 0.9rem; display: inline-block; margin-bottom: 20px; font-weight: 900;}
.service-card p { font-weight: 900; color: #555; font-size: 1.1rem; line-height: 1.4;}

/* 파트너스 */
.logo-grid { display: flex; gap: 25px; flex-wrap: wrap; margin-top: 40px; justify-content: center;} /* 중앙 정렬 추가 */
.logo-item {
    background: #fff; padding: 15px; border-radius: 15px; width: 160px; height: 90px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05); overflow: hidden;
}
.logo-item img { max-width: 100%; max-height: 100%; object-fit: contain; }

/* 폼 & 푸터 (중앙 정렬 수정됨) */
.footer-section { margin-bottom: 50px !important; }

/* 🔥 [수정] 폼 중앙 정렬 (margin: 40px auto) 🔥 */
.newsletter-form { 
    max-width: 700px; 
    margin: 40px auto; /* 여기서 auto가 중요! */
}

.input-row { display: flex; gap: 30px; margin-bottom: 30px; }
@media (max-width: 768px) { .input-row { flex-direction: column; gap: 20px; } }
.input-group { flex: 1; text-align: left; /* 라벨은 왼쪽 정렬 */ }
.input-group label { display: block; font-weight: 900; color: var(--primary); margin-bottom: 10px; font-size: 1.1rem;}
.input-group input { 
    width: 100%; padding: 15px 5px; border: none; 
    border-bottom: 3px solid var(--primary); 
    background: transparent; font-size: 1.2rem; outline: none; color: #555;
}
.full-btn { 
    width: 100%; background: var(--primary); color: #fff; border: none; 
    padding: 20px; border-radius: 50px; font-size: 1.3rem; font-weight: 900; 
    cursor: pointer; transition: 0.3s;
}
.full-btn:hover { background: #d40078; }
.bottom-info { margin-top: 80px; border-top: 1px solid #ddd; padding-top: 30px; color: #aaa; font-size: 0.95rem; text-align: center;}