@font-face {
    font-family: 'Pretendard-Regular';
    src: url('https://fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff') format('woff');
    font-style: normal;
}

/* 기본 설정 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Helvetica Neue', 'Segoe UI', 'Apple SD Gothic Neo', 'Noto Sans KR', 'Malgun Gothic', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', sans-serif;
    font-weight: bold;
}

body {
    color: #000;
    line-height: 1.5;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(168, 85, 247, 0.02) 0%, rgba(236, 72, 153, 0.02) 50%, rgba(59, 130, 246, 0.02) 100%);
    pointer-events: none;
    z-index: -1;
}

/* 컨테이너 */
.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 1200px;
        padding: 0 60px;
    }
}

/* 헤더 */
header {
    position: sticky;
    top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 20px;
    padding: 8px 20px;
    border-radius: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    z-index: 100;
    transition: all 0.3s ease;
}

header:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

@media (min-width: 768px) {
    header {
        margin: 0 35px;
        padding: 20px 40px;
    }
}

@media (min-width: 1024px) {
    header {
        padding: 20px 60px;
        max-width: 1200px;
        margin: 0 auto;
    }
}

/* 로고 */
.logo {
    display: flex;
    align-items: center;
}

.logo-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, #ff6a00 0%, #ee0979 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.3);
}

@media (min-width: 768px) {
    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

/* 햄버거 메뉴 버튼 (모바일 전용) */
.hamburger-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 200;
    /*margin-left: 0px;*/
    padding: 0;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: #ff6a00;
    margin: 3px 0;
    border-radius: 1px;
    transition: all 0.3s ease;
}

.hamburger-btn:hover .hamburger-line {
    background: #ec4899;
}

/* 모바일에서 PRO 버튼 숨기기 */
@media (max-width: 767px) {
    .pro-btn-link {
        display: none;
    }
}

/* 모바일 메뉴 오버레이 (새로운 방식) */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(0px);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    backdrop-filter: blur(8px);
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    padding: 20px;
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateY(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
}

.mobile-logo {
    display: flex;
    align-items: center;
}

.close-menu-btn {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-menu-btn:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

.close-line {
    position: absolute;
    width: 20px;
    height: 2px;
    background: #374151;
    border-radius: 1px;
    transition: all 0.3s ease;
}

.close-line:nth-child(1) {
    transform: rotate(45deg);
}

.close-line:nth-child(2) {
    transform: rotate(-45deg);
}

.close-menu-btn:hover .close-line {
    background: #ff6a00;
}

.mobile-nav {
    flex: 1;
    padding: 20px 0;
}

.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-menu li {
    margin: 0 0 8px 0;
}

.mobile-nav-menu li:last-child {
    margin-bottom: 0;
}

.mobile-nav-menu a {
    display: block;
    padding: 16px 20px;
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.mobile-nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.1), transparent);
    transition: left 0.5s ease;
}

.mobile-nav-menu a:hover::before {
    left: 100%;
}

.mobile-nav-menu a:hover {
    background: rgba(168, 85, 247, 0.05);
    color: #ff6a00;
    transform: translateX(8px);
}

.mobile-menu-buttons {
    padding: 20px 0;
    display: flex;
    gap: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.mobile-sign-in-btn {
    background: #fff;
    border: 1px solid rgba(209, 213, 219, 0.5);
    border-radius: 20px;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #374151;
    width: 90px;
    text-align: center;
    white-space: nowrap;
}

.mobile-sign-in-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(168, 85, 247, 0.3);
    color: #ff6a00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.mobile-pro-btn {
    background: linear-gradient(135deg, #ff6a00 0%, #ee0979 100%);
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.3);
    width: 90px;
    text-align: center;
    white-space: nowrap;
}

.mobile-pro-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(168, 85, 247, 0.4);
}

/* 모바일 반응형 조정 */
@media (max-width: 480px) {
    .mobile-menu-content {
        padding: 15px;
    }

    .mobile-menu-header {
        padding: 15px 0;
        margin-bottom: 15px;
    }

    .mobile-nav {
        padding: 15px 0;
    }

    .mobile-nav-menu a {
        padding: 14px 16px;
        font-size: 15px;
    }

    .mobile-menu-buttons {
        padding: 15px 0;
        gap: 10px;
    }

    .mobile-sign-in-btn,
    .mobile-pro-btn {
        padding: 10px 16px;
        font-size: 14px;
    }
}

/* 데스크탑에서는 햄버거 메뉴 숨기기 */
@media (min-width: 768px) {
    .hamburger-btn {
        display: none;
    }

    .mobile-menu-overlay {
        display: none;
    }

    .pro-btn-link {
        display: block;
    }
}

/* 헤더 요소들 여백 통일 */
.logo-and-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-menu {
    display: none;
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
        list-style: none;
        margin: 0;
        gap: 24px;
    }

    .nav-menu a {
        text-decoration: none;
        color: #374151;
        font-weight: 500;
        font-size: 15px;
        transition: color 0.3s ease;
    }

    .nav-menu a:hover {
        color: #ff6a00;
    }
}

.header-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* 헤더 버튼 */
.sign-in-btn {
    background: #fff;
    border: 1px solid rgba(209, 213, 219, 0.5);
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.sign-in-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(168, 85, 247, 0.3);
}

@media (min-width: 768px) {
    .sign-in-btn {
        padding: 10px 20px;
        font-size: 15px;
    }
}

.free-trial-btn {
    background: linear-gradient(135deg, #ff6a00 0%, #ee0979 100%);
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.3);
}

.free-trial-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(168, 85, 247, 0.4);
}

@media (min-width: 768px) {
    .free-trial-btn {
        padding: 10px 20px;
        font-size: 15px;
    }
}

/* 메인 섹션 */
.main-section {
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 100vh;
    position: relative;
}

@media (min-width: 768px) {
    .main-section {
        padding: 60px 40px;
    }
}

@media (min-width: 1024px) {
    .main-section {
        padding: 80px 20px;
    }
}

/* 메인 타이틀 */
h1 {
    font-size: 48px;
    font-weight: 700;
    padding-top: 35px;
    margin-bottom: 32px;
    max-width: 800px;
    background: linear-gradient(135deg, #ff6a00 0%, #ee0979 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

@media (min-width: 768px) {
    h1 {
        font-size: 64px;
    }
}

@media (min-width: 1024px) {
    h1 {
        font-size: 80px;
    }
}

/* 서브타이틀 */
.subtitle {
    font-size: 18px;
    color: #374151;
    max-width: 800px;
    margin-bottom: 48px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(4px);
    padding: 20px 24px;
    border-radius: 16px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .subtitle {
        font-size: 20px;
        padding: 24px 28px;
    }
}

@media (min-width: 1024px) {
    .subtitle {
        font-size: 24px;
        padding: 24px 32px;
    }
}

/* 브라우즈 버튼 */
.browse-btn {
    background: linear-gradient(135deg, #ff6a00 0%, #ee0979 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 20px 25px -5px rgba(168, 85, 247, 0.1), 0 10px 10px -5px rgba(168, 85, 247, 0.04);
    transition: all 0.3s;
    transform: scale(1);
}

.browse-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 20px 25px -5px rgba(168, 85, 247, 0.3), 0 10px 10px -5px rgba(168, 85, 247, 0.1);
}

@media (min-width: 768px) {
    .browse-btn {
        padding: 18px 36px;
        font-size: 18px;
    }
}

@media (min-width: 1024px) {
    .browse-btn {
        padding: 20px 40px;
        font-size: 20px;
    }
}

/* 앱 스크린샷 그리드 */
.app-grid-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.app-grid {
    width: 100%;
    height: 300px;
}

@media (min-width: 768px) {
    .app-grid {
        height: 350px;
    }
}

@media (min-width: 1024px) {
    .app-grid {
        height: 400px;
    }
}

.app-item {
    width: 100%;
    height: 100%;
    border: 1px solid #ddd;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #6b7280;
    transition: all 0.3s ease;
}

.app-item:hover {
    transform: scale(1.02);
}

@media (min-width: 768px) {
    .app-item {
        font-size: 17px;
    }
}

@media (min-width: 1024px) {
    .app-item {
        font-size: 18px;
    }
}

/* 플랫폼 섹션 */
.platform-section {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    padding: 60px 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

@media (min-width: 768px) {
    .platform-section {
        padding: 70px 40px;
    }
}

@media (min-width: 1024px) {
    .platform-section {
        padding: 80px 20px;
    }
}

.platform-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 48px;
    color: #1f2937;
}

@media (min-width: 768px) {
    .platform-title {
        font-size: 28px;
    }
}

@media (min-width: 1024px) {
    .platform-title {
        font-size: 32px;
    }
}

.platform-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .platform-icons {
        gap: 24px;
    }
}

@media (min-width: 1024px) {
    .platform-icons {
        gap: 32px;
    }
}

.platform-icon {
    padding: 12px 16px;
    background: #fff;
    backdrop-filter: blur(8px);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #ddd;
    font-weight: 600;
    color: #6b7280;
    font-size: 14px;
}

.platform-icon:hover {
    transform: translateY(-4px);
    border-color: rgba(168, 85, 247, 0.2);
    background: rgba(255, 255, 255, 0.9);
}

.platform-icon.active {
    background: linear-gradient(135deg, #ff6a00 0%, #ee0979 100%);
    color: white;
}

@media (min-width: 768px) {
    .platform-icon {
        padding: 14px 20px;
        font-size: 15px;
    }
}

@media (min-width: 1024px) {
    .platform-icon {
        padding: 16px 24px;
        font-size: 16px;
    }
}

/* 라이브러리 섹션 */
.library-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .library-section {
        padding: 70px 40px;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (min-width: 1024px) {
    .library-section {
        padding: 80px 20px;
        gap: 48px;
    }
}

.library-card {
    background: #fff;
    backdrop-filter: blur(8px);
    border-radius: 24px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    /*border: 1px solid #ddd;*/
    box-shadow: 0 0px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.library-card:hover {
    transform: translateY(-8px);
}

@media (min-width: 768px) {
    .library-card {
        padding: 28px;
    }
}

@media (min-width: 1024px) {
    .library-card {
        padding: 32px;
    }
}

.library-card-left {
    text-align: left;
}

.library-card-center {
    text-align: center;
}

.library-card-right {
    text-align: right;
}

.library-card h2 {
    font-size: 20px;
    font-weight: 700;
}

@media (min-width: 768px) {
    .library-card h2 {
        font-size: 24px;
    }
}

@media (min-width: 1024px) {
    .library-card h2 {
        font-size: 28px;
    }
}

.library-card p {
    color: #6b7280;
    font-size: 14px;
}

@media (min-width: 768px) {
    .library-card p {
        font-size: 15px;
    }
}

@media (min-width: 1024px) {
    .library-card p {
        font-size: 16px;
    }
}

.library-buttons {
    display: flex;
    gap: 8px;
}

.library-buttons-left {
    justify-content: flex-start;
}

.library-buttons-center {
    justify-content: center;
}

.library-buttons-right {
    justify-content: flex-end;
}

.library-btn-primary {
    border-radius: 50px;
    padding: 10px 16px;
    background: linear-gradient(135deg, #ff6a00 0%, #ee0979 100%);
    color: white;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
}

.library-btn-primary:hover {
    transform: scale(1.05);
}

@media (min-width: 768px) {
    .library-btn-primary {
        padding: 11px 18px;
        font-size: 15px;
    }
}

@media (min-width: 1024px) {
    .library-btn-primary {
        padding: 12px 20px;
        font-size: 16px;
    }
}

.library-btn-secondary {
    border-radius: 50px;
    padding: 10px 16px;
    border: 1px solid #d1d5db;
    color: #374151;
    font-weight: 600;
    background: white;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
}

.library-btn-secondary:hover {
    background: #f9fafb;
    transform: scale(1.05);
}

@media (min-width: 768px) {
    .library-btn-secondary {
        padding: 11px 18px;
        font-size: 15px;
    }
}

@media (min-width: 1024px) {
    .library-btn-secondary {
        padding: 12px 20px;
        font-size: 16px;
    }
}

.pro-badge {
    background: #ff6a00;
    color: #fff;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 4px;
}

.library-image {
    border-radius: 16px;
    width: 100%;
}

/* 통계 섹션 */
.stats-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
    align-items: stretch;
}

@media (min-width: 768px) {
    .stats-section {
        padding: 70px 40px;
        flex-direction: row;
        gap: 32px;
    }
}

@media (min-width: 1024px) {
    .stats-section {
        padding: 80px 20px;
    }
}

.stat-card {
    flex: 1;
    background: #fff;
    backdrop-filter: blur(8px);
    border-radius: 24px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    /*border: 1px solid #ddd;*/
    box-shadow: 0 0px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
}

@media (min-width: 768px) {
    .stat-card {
        padding: 28px;
    }
}

@media (min-width: 1024px) {
    .stat-card {
        padding: 32px;
    }
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #ff6a00 0%, #ee0979 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (min-width: 768px) {
    .stat-number {
        font-size: 42px;
    }
}

@media (min-width: 1024px) {
    .stat-number {
        font-size: 48px;
    }
}

.stat-label {
    background: linear-gradient(90deg, #8a9bb3 0%, #374151 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
    font-size: 16px;
}

@media (min-width: 768px) {
    .stat-label {
        font-size: 18px;
    }
}

.stat-subtitle {
    font-size: 12px;
    color: #9ca3af;
}

/* 추가 섹션들 */
.features-section {
    width: 100%;
    margin: 60px 0;
    padding: 80px 20px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

@media (min-width: 768px) {
    .features-section {
        margin: 70px 0;
        padding: 100px 40px;
    }
}

@media (min-width: 1024px) {
    .features-section {
        margin: 80px 0;
        padding: 120px 20px;
    }
}

.features-content {
    max-width: 1200px;
    margin: 0 auto;
}

.features-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 48px;
    background: linear-gradient(135deg, #ff6a00 0%, #ee0979 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (min-width: 768px) {
    .features-title {
        font-size: 40px;
        margin-bottom: 56px;
    }
}

@media (min-width: 1024px) {
    .features-title {
        font-size: 48px;
        margin-bottom: 64px;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 28px;
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 32px;
    }
}

.feature-card {
    background: #fff;
    backdrop-filter: blur(8px);
    border-radius: 24px;
    padding: 32px;
    /*border: 1px solid #ddd;*/
    box-shadow: 0 0px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.9);
}

@media (min-width: 768px) {
    .feature-card {
        padding: 36px;
    }
}

@media (min-width: 1024px) {
    .feature-card {
        padding: 40px;
    }
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #ff6a00 0%, #ee0979 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 20px;
    font-weight: bold;
}

@media (min-width: 768px) {
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 22px;
        margin-bottom: 22px;
    }
}

@media (min-width: 1024px) {
    .feature-icon {
        width: 64px;
        height: 64px;
        font-size: 24px;
        margin-bottom: 24px;
    }
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1f2937;
}

@media (min-width: 768px) {
    .feature-title {
        font-size: 22px;
        margin-bottom: 14px;
    }
}

@media (min-width: 1024px) {
    .feature-title {
        font-size: 24px;
        margin-bottom: 16px;
    }
}

.feature-description {
    color: #6b7280;
    line-height: 1.6;
    font-size: 14px;
}

@media (min-width: 768px) {
    .feature-description {
        font-size: 15px;
    }
}

@media (min-width: 1024px) {
    .feature-description {
        font-size: 16px;
    }
}

/* CTA 섹션 */
.cta-section {
    width: 100%;
    margin: 60px 0;
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 25%, #cbd5e1 50%, #94a3b8 75%, #64748b 100%);
    color: #1e293b;
}

@media (min-width: 768px) {
    .cta-section {
        margin: 70px 0;
        padding: 100px 40px;
    }
}

@media (min-width: 1024px) {
    .cta-section {
        margin: 80px 0;
        padding: 120px 20px;
    }
}

.cta-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cta-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0f172a;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 40px;
        margin-bottom: 22px;
    }
}

@media (min-width: 1024px) {
    .cta-title {
        font-size: 48px;
        margin-bottom: 24px;
    }
}

.cta-description {
    font-size: 16px;
    margin-bottom: 40px;
    color: #475569;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .cta-description {
        font-size: 18px;
        margin-bottom: 44px;
    }
}

@media (min-width: 1024px) {
    .cta-description {
        font-size: 20px;
        margin-bottom: 48px;
    }
}

.cta-button {
    background: linear-gradient(135deg, #ff6a00 0%, #ee0979 100%);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-4px);
}

@media (min-width: 768px) {
    .cta-button {
        padding: 18px 36px;
        font-size: 18px;
    }
}

@media (min-width: 1024px) {
    .cta-button {
        padding: 20px 40px;
        font-size: 20px;
    }
}

/* 푸터 */
footer {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
    color: #6b7280;
}

@media (min-width: 768px) {
    footer {
        padding: 70px 40px;
    }
}

@media (min-width: 1024px) {
    footer {
        padding: 80px 20px;
    }
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        margin-bottom: 44px;
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 48px;
        margin-bottom: 48px;
    }
}

.footer-section h3 {
    color: #1f2937;
    margin-bottom: 16px;
    font-size: 16px;
    font-weight: 600;
}

@media (min-width: 768px) {
    .footer-section h3 {
        font-size: 17px;
    }
}

@media (min-width: 1024px) {
    .footer-section h3 {
        font-size: 18px;
    }
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-section ul li a:hover {
    color: #ff6a00;
}

@media (min-width: 768px) {
    .footer-section ul li a {
        font-size: 15px;
    }
}

.footer-bottom {
    border-top: 1px solid #e5e7eb;
    padding-top: 24px;
    color: #9ca3af;
    font-size: 14px;
}

@media (min-width: 768px) {
    .footer-bottom {
        padding-top: 28px;
        font-size: 15px;
    }
}

@media (min-width: 1024px) {
    .footer-bottom {
        padding-top: 32px;
        font-size: 16px;
    }
}

/* 메인 섹션 배경 효과 */
.main-bg-effect-1 {
    position: absolute;
    top: 80px;
    left: 80px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(168, 85, 247, 0.08);
    filter: blur(48px);
}

@media (min-width: 768px) {
    .main-bg-effect-1 {
        width: 240px;
        height: 240px;
    }
}

@media (min-width: 1024px) {
    .main-bg-effect-1 {
        width: 256px;
        height: 256px;
    }
}

.main-bg-effect-2 {
    position: absolute;
    bottom: 80px;
    right: 80px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.08);
    filter: blur(48px);
}

@media (min-width: 768px) {
    .main-bg-effect-2 {
        width: 280px;
        height: 280px;
    }
}

@media (min-width: 1024px) {
    .main-bg-effect-2 {
        width: 320px;
        height: 320px;
    }
}

.main-bg-effect-3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(236, 72, 153, 0.05);
    filter: blur(64px);
}

@media (min-width: 768px) {
    .main-bg-effect-3 {
        width: 350px;
        height: 350px;
    }
}

@media (min-width: 1024px) {
    .main-bg-effect-3 {
        width: 400px;
        height: 400px;
    }
}

/* 메인 섹션 요소들 */
.main-badge {
    text-align: center;
    margin-bottom: 32px;
    position: relative;
    z-index: 10;
}

.main-badge span {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

@media (min-width: 768px) {
    .main-badge span {
        font-size: 16px;
        padding: 14px 28px;
    }
}

@media (min-width: 1024px) {
    .main-badge span {
        font-size: 18px;
        padding: 16px 32px;
    }
}

.main-title {
    font-size: 48px;
    font-weight: 700;
    padding-top: 35px;
    margin-bottom: 32px;
    max-width: 800px;
    background: linear-gradient(135deg, #ff6a00 0%, #ee0979 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .main-title {
        font-size: 64px;
    }
}

@media (min-width: 1024px) {
    .main-title {
        font-size: 80px;
    }
}

/*
.main-subtitle {
    font-size: 18px;
    color: #374151;
    max-width: 800px;
    margin-bottom: 48px;
    background: #fff;
    backdrop-filter: blur(8px);
    padding: 20px 24px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 10;
}
*/

.main-subtitle {
    font-size: 18px;
    max-width: 800px;
    margin-bottom: 48px;
    background: linear-gradient(90deg, #8a9bb3 0%, #374151 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


@media (min-width: 768px) {
    .main-subtitle {
        font-size: 20px;
        padding: 22px 26px;
    }
}

@media (min-width: 1024px) {
    .main-subtitle {
        font-size: 24px;
        padding: 24px 32px;
    }
}

.main-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 48px;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .main-buttons {
        gap: 20px;
        margin-bottom: 56px;
    }
}

@media (min-width: 1024px) {
    .main-buttons {
        gap: 24px;
        margin-bottom: 64px;
    }
}

.main-btn-primary {
    background: linear-gradient(135deg, #ff6a00 0%, #ee0979 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    transform: scale(1);
}

.main-btn-primary:hover {
    transform: scale(1.05);
}

@media (min-width: 768px) {
    .main-btn-primary {
        padding: 18px 36px;
        font-size: 18px;
    }
}

@media (min-width: 1024px) {
    .main-btn-primary {
        padding: 20px 40px;
        font-size: 20px;
    }
}

.main-btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    color: #374151;
    border: 2px solid rgba(209, 213, 219, 0.5);
    border-radius: 50px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    transform: scale(1);
}

.main-btn-secondary:hover {
    transform: scale(1.05);
    background: rgba(249, 250, 251, 0.95);
}

@media (min-width: 768px) {
    .main-btn-secondary {
        padding: 18px 36px;
        font-size: 18px;
    }
}

@media (min-width: 1024px) {
    .main-btn-secondary {
        padding: 20px 40px;
        font-size: 20px;
    }
}

/* 쿠키 알림 */
.cookie-notice {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 24px;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .cookie-notice {
        margin-top: 28px;
    }
}

@media (min-width: 1024px) {
    .cookie-notice {
        margin-top: 32px;
    }
}

.cookie-notice-content {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(12px);
    color: white;
    font-size: 14px;
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
    flex-wrap: wrap;
}

.cookie-notice-content:hover {
    transform: scale(1.02);
}

@media (min-width: 768px) {
    .cookie-notice-content {
        font-size: 16px;
        padding: 22px 28px;
        gap: 20px;
    }
}

@media (min-width: 1024px) {
    .cookie-notice-content {
        font-size: 18px;
        padding: 24px 32px;
        gap: 24px;
    }
}

.cookie-link {
    text-decoration: underline;
    color: #ff6a00;
    transition: color 0.3s;
}

.cookie-link:hover {
    color: #9333ea;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, #ff6a00 0%, #ee0979 100%);
    color: white;
}

.cookie-btn-accept:hover {
    transform: scale(1.02);
}

.cookie-btn-reject {
    background: #374151;
    color: white;
}

.cookie-btn-reject:hover {
    background: #1f2937;
    transform: scale(1.02);
}

@media (min-width: 768px) {
    .cookie-btn {
        padding: 12px 22px;
        font-size: 15px;
    }
}

@media (min-width: 1024px) {
    .cookie-btn {
        padding: 12px 24px;
        font-size: 16px;
    }
}