/* ============================================
   EasyVideo Landing — Vrew Layout + EasyVideo Identity
   Primary: #3b82f6 → #8b5cf6 (blue-purple gradient)
   Layout: Vrew-style clean/minimal
   Hero: Descript-style dark
   Font: Pretendard
   ============================================ */

@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');

:root {
    --blue: #3b82f6;
    --purple: #8b5cf6;
    --gradient: linear-gradient(135deg, #3b82f6, #8b5cf6);
    --text-dark: #1a1a2e;
    --text-mid: #555c5d;
    --text-light: #8a8f91;
    --bg-white: #ffffff;
    --bg-off: #f8f9fa;
    --border: #e8eaec;
    --green: #10b981;
}

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

body {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Malgun Gothic', sans-serif;
    background-color: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ============ 헤더 ============ */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-bottom: 1px solid var(--border);
    height: 64px;
    display: flex;
    align-items: center;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo {
    font-size: 22px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    color: var(--text-mid);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--text-dark);
}

/* 기능 드롭다운 */
.nav-dropdown {
    position: static;
}

.nav-dropdown-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    display: flex;
    align-items: center;
    gap: 4px;
}

.dropdown-arrow {
    font-size: 12px;
    transition: transform 0.2s;
}

.nav-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    padding: 28px 0;
    z-index: 1000;
}

.nav-dropdown.open .dropdown-menu {
    display: block;
}

.dropdown-grid {
    display: flex;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.dropdown-col {
    min-width: 120px;
}

.dropdown-heading {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.dropdown-item {
    display: block;
    padding: 6px 0;
    font-size: 14px;
    color: var(--text-mid);
    text-decoration: none;
    transition: color 0.15s;
}

.dropdown-item:hover {
    color: var(--blue);
}

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

.btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    border: 1px solid var(--blue);
    color: var(--blue);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    background: transparent;
    cursor: pointer;
}

.btn-outline:hover {
    background: rgba(59, 130, 246, 0.04);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: var(--gradient);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* ============ 히어로 (다크 — Descript 스타일) ============ */
.hero {
    position: relative;
    padding: 90px 0 80px;
    text-align: center;
    overflow: hidden;
    background: transparent;
    color: var(--text-dark);
}

.hero::before {
    display: none;
}

@keyframes heroGlow {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-2%, 2%); }
}

.hero-badge {
    position: relative;
    display: inline-block;
    padding: 6px 18px;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: var(--blue);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
}

.hero-video {
    max-width: 960px;
    width: 100%;
    height: auto;
    margin-bottom: 60px;
}

.hero h1 {
    position: relative;
    font-size: 60px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -2px;
    color: var(--text-dark);
    margin-bottom: 60px;
}

.hero h1 .highlight {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero .subtitle {
    position: relative;
    font-size: 18px;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 44px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    position: relative;
    margin-bottom: 40px;
}

.hero-features p {
    font-size: 16px;
    color: var(--text-mid);
    line-height: 2.2;
    margin: 0;
}

.hero-features strong {
    color: var(--text-dark);
    font-weight: 700;
}

.hero-cta {
    position: relative;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s;
    cursor: pointer;
}

.btn-hero.primary {
    background: var(--gradient);
    color: #fff;
    border: none;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.btn-hero.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
}

.btn-hero.secondary {
    background: #fff;
    color: var(--text-dark);
    border: 2px solid transparent;
    background-image: linear-gradient(#fff, #fff), var(--gradient);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.btn-hero.secondary:hover {
    background-image: linear-gradient(var(--bg-off), var(--bg-off)), var(--gradient);
}

.hero-note {
    position: relative;
    color: var(--text-light);
    font-size: 13px;
    margin-top: 16px;
}

/* 신뢰 바 */
.trust-bar {
    padding: 32px 0;
    border-bottom: 1px solid var(--border);
    background: var(--bg-white);
}

.trust-label {
    text-align: center;
    color: var(--text-light);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.trust-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    flex-wrap: wrap;
}

.trust-item {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ============ 섹션 공통 ============ */
.section {
    padding: 100px 0;
}

.section.alt {
    background-color: var(--bg-off);
}

/* 튜토리얼 영상 */
#tutorial {
    background: transparent;
    padding: 0 0 80px;
}

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

.section-header h2 {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-header p {
    font-size: 16px;
    color: var(--text-mid);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============ 고통 공감 ============ */
.pain-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.pain-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.25s;
}

.pain-card:hover {
    border-color: var(--blue);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.08);
    transform: translateY(-3px);
}

.pain-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.pain-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.pain-desc {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.6;
}

.pain-solution {
    text-align: center;
    padding: 32px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.04), rgba(139, 92, 246, 0.04));
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.08);
}

.pain-solution p {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.pain-solution a {
    color: var(--blue);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}

.pain-solution a:hover {
    text-decoration: underline;
}

/* ============ 기능 카테고리 ============ */
.feature-category {
    margin-bottom: 64px;
}

.category-header {
    margin-bottom: 24px;
}

.category-header h3 {
    font-size: 22px;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
}

.category-header p {
    font-size: 15px;
    color: var(--text-mid);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.feature-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px 24px;
    transition: all 0.25s;
}

.feature-card:hover {
    border-color: var(--blue);
    box-shadow: 0 2px 16px rgba(59, 130, 246, 0.06);
    transform: translateY(-2px);
}

.feature-card.highlight {
    border-color: var(--purple);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.03), rgba(59, 130, 246, 0.03));
}

.feature-icon {
    font-size: 28px;
    margin-bottom: 12px;
}

.feature-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.feature-desc {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.7;
}

/* ============ 이용 방법 ============ */
.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 45%;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ============ 갤러리 ============ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.placeholder-box {
    aspect-ratio: 16/9;
    background: var(--bg-off);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 14px;
}

/* ============ 후기 ============ */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 28px;
    transition: all 0.2s;
}

.testimonial-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transform: translateY(-2px);
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 18px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-author {
    border-top: 1px solid var(--border);
    padding-top: 14px;
}

.author-name {
    color: var(--text-mid);
    font-size: 13px;
    font-weight: 600;
}

/* ============ 타겟 유저 ============ */
.usecase-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
}

.usecase-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 32px 16px;
    text-align: center;
    transition: all 0.25s;
}

.usecase-card:hover {
    border-color: var(--purple);
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.08);
}

.usecase-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.usecase-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.usecase-desc {
    font-size: 12px;
    color: var(--text-mid);
    line-height: 1.5;
}

/* ============ 요금제 ============ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 960px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    position: relative;
    transition: all 0.25s;
}

.pricing-card:hover {
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}

.pricing-card.recommended {
    border-color: var(--blue);
    box-shadow: 0 4px 24px rgba(59, 130, 246, 0.12);
}

.recommended-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: #fff;
    padding: 4px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.plan-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.plan-price-wrapper {
    margin-bottom: 8px;
}

.original-price {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 16px;
}

.plan-price {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.plan-price .currency {
    font-size: 16px;
    color: var(--text-mid);
    font-weight: 500;
}

.plan-discount {
    color: var(--blue);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
}

.plan-features {
    text-align: left;
    margin-bottom: 24px;
}

.plan-features .feature {
    padding: 5px 0;
    color: var(--text-mid);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.plan-features .feature .check {
    color: var(--blue);
    font-weight: 700;
}

.purchase-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
    font-family: inherit;
}

.purchase-btn.primary {
    background: var(--gradient);
    color: #fff;
}

.purchase-btn.primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

.purchase-btn.outline {
    background: var(--bg-white);
    color: var(--blue);
    border: 1px solid var(--blue);
}

.purchase-btn.outline:hover {
    background: rgba(59, 130, 246, 0.04);
}

.refund-badge {
    margin-top: 12px;
    font-size: 12px;
    color: var(--green);
    font-weight: 600;
}

.price-notice {
    margin-top: 6px;
    font-size: 11px;
    color: var(--text-light);
}

/* ============ 구독 페이지 ============ */
.pricing-hero {
    padding: 80px 0 40px;
    text-align: center;
    background: var(--bg-white);
}

.pricing-hero h1 {
    font-size: 40px;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -1px;
    margin-bottom: 12px;
}

.pricing-hero-desc {
    font-size: 17px;
    color: var(--text-mid);
}

.pricing-page-section {
    padding: 40px 0 100px;
    background: var(--bg-white);
}

.pricing-page-section .pricing-grid {
    margin-bottom: 80px;
}

/* 네비 active */
.nav-link.active {
    color: var(--blue);
    font-weight: 700;
}

/* 비교 테이블 */
.compare-table-wrapper {
    max-width: 900px;
    margin: 0 auto 80px;
}

.compare-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 36px;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.compare-table thead th {
    padding: 16px 12px;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    border-bottom: 2px solid var(--text-dark);
}

.compare-table thead th.compare-feature-col {
    text-align: left;
    width: 40%;
}

.compare-table thead th.compare-highlight {
    color: var(--blue);
}

.compare-table tbody td {
    padding: 13px 12px;
    text-align: center;
    color: var(--text-mid);
    border-bottom: 1px solid var(--border);
}

.compare-table tbody td:first-child {
    text-align: left;
    color: var(--text-dark);
    font-weight: 500;
}

.compare-table tbody td.compare-highlight {
    background: rgba(59, 130, 246, 0.03);
}

.compare-category td {
    padding: 18px 12px 10px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    color: var(--blue) !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--border) !important;
    background: var(--bg-off) !important;
}

.compare-check {
    color: var(--blue);
    font-weight: 700;
    font-size: 16px;
}

.compare-dash {
    color: var(--text-light);
}

/* 구독 페이지 FAQ */
.pricing-faq {
    max-width: 700px;
    margin: 0 auto;
}

/* ============ 최종 CTA ============ */
.final-cta {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, #0a0a2e 0%, #1a0a3a 100%);
    color: #fff;
}

.final-cta h2 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.final-cta p {
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 32px;
}

.final-cta .cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============ FAQ ============ */
.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    padding: 20px 0;
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s;
    font-family: inherit;
}

.faq-question::after {
    content: '+';
    font-size: 20px;
    color: var(--text-light);
    transition: transform 0.3s, color 0.3s;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-question::after {
    content: '\2212';
    color: var(--blue);
}

.faq-question:hover {
    color: var(--blue);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
    color: var(--text-mid);
    font-size: 14px;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 20px;
}

/* ============ 문의 ============ */
.contact-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.2s;
}

.contact-btn.kakao {
    background-color: #fee500;
    color: #1a1a2e;
}

.contact-btn.kakao:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(254, 229, 0, 0.3);
}

.contact-info {
    text-align: center;
    color: var(--text-light);
    font-size: 14px;
}

/* ============ 결제 모달 ============ */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-container {
    background: #fff;
    border-radius: 16px;
    max-width: 480px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    border-bottom: 1px solid var(--border);
}

.modal-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 28px;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    border-radius: 8px;
}

.modal-close:hover {
    color: var(--text-dark);
    background: var(--bg-off);
}

.modal-body {
    padding: 28px;
}

.product-summary {
    background: var(--bg-off);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
}

.product-name {
    font-size: 15px;
    color: var(--text-mid);
    margin-bottom: 8px;
}

.product-price {
    font-size: 32px;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
}

.product-notice {
    font-size: 13px;
    color: var(--text-light);
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    color: var(--text-dark);
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 600;
}

.required {
    color: #ef4444;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"] {
    width: 100%;
    padding: 12px 14px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-dark);
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input::placeholder {
    color: var(--text-light);
}

.form-group input:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.input-notice {
    font-size: 12px;
    color: var(--blue);
    margin-top: 6px;
}

.terms-box {
    background: var(--bg-off);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 14px;
    margin-bottom: 14px;
}

.terms-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.terms-content {
    font-size: 12px;
    color: var(--text-mid);
    line-height: 1.6;
}

.checkbox-group {
    margin-bottom: 20px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: var(--text-mid);
    font-size: 14px;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    cursor: pointer;
    accent-color: var(--blue);
}

.modal-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 8px;
    font-family: inherit;
}

.modal-btn.primary {
    background: var(--gradient);
    color: #fff;
}

.modal-btn.primary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.modal-btn.secondary {
    background: var(--bg-off);
    color: var(--text-mid);
    border: 1px solid var(--border);
}

.modal-btn.secondary:hover {
    background: var(--border);
}

/* 쿠폰 */
.coupon-group label {
    font-size: 13px;
    color: var(--text-mid);
}

.coupon-input-wrap {
    display: flex;
    gap: 8px;
    margin-top: 6px;
}

.coupon-input-wrap input {
    flex: 1;
    padding: 10px 12px;
    font-size: 13px;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-dark);
    background: #fff;
    font-family: inherit;
}

.coupon-apply-btn {
    padding: 10px 16px;
    font-size: 13px;
    background: var(--bg-off);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-dark);
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
    font-family: inherit;
}

.coupon-apply-btn:hover {
    background: var(--border);
}

.coupon-message {
    margin-top: 6px;
    font-size: 12px;
}

.coupon-message.success {
    color: var(--green);
}

.coupon-message.error {
    color: #ef4444;
}

/* ============ 푸터 ============ */
footer {
    background: var(--bg-off);
    border-top: 1px solid var(--border);
    padding: 40px 0;
    color: var(--text-light);
    font-size: 13px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--text-mid);
}

/* ============ 반응형 ============ */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .nav-menu {
        display: none;
    }

    .hero {
        padding: 70px 0 60px;
    }

    .hero h1 {
        font-size: 34px;
        letter-spacing: -0.5px;
    }

    .hero .subtitle {
        font-size: 15px;
        margin-bottom: 32px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn-hero {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .trust-logos {
        gap: 16px;
    }

    .section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .pain-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

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

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

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

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

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 400px;
    }

    .pricing-hero h1 {
        font-size: 28px;
    }

    .compare-table-wrapper {
        overflow-x: auto;
    }

    .compare-table {
        min-width: 600px;
    }

    .video-wrapper {
        padding-bottom: 56.25%;
    }

    .final-cta h2 {
        font-size: 24px;
    }

    .final-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .faq-list {
        padding: 0;
    }

    .modal-container {
        max-width: 100%;
    }

    .modal-header {
        padding: 18px 20px;
    }

    .modal-body {
        padding: 20px;
    }

    .footer-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .pain-grid {
        grid-template-columns: 1fr;
    }

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