/* ===================================
   Landing Page Styles
   모던 랜딩 페이지 디자인
   =================================== */

/* CSS Variables */
:root {
    --landing-primary: #FF007F;
    --landing-primary-dark: #D4006B;
    --landing-secondary: #10b981;
    --landing-accent: #f59e0b;
    --landing-dark: #0f172a;
    --landing-darker: #020617;
    --landing-light: #f8fafc;
    --landing-gray: #64748b;
    --landing-gray-light: #e2e8f0;
    --landing-white: #ffffff;
    --landing-solid-1: #FF007F;
    --landing-solid-2: #FF4DA6;
    --landing-solid-3: #FF007F;
    --landing-solid-brand: #D4006B;
    --landing-solid-influencer: #D4006B;
    --landing-shadow-sm: none;
    --landing-shadow: none;
    --landing-shadow-lg: none;
    --landing-shadow-xl: none;
    --landing-radius: 12px;
    --landing-radius-lg: 24px;
    --landing-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* I18N layout hardening for longer translated labels. */
html[data-krewpick-lang]:not([data-krewpick-lang="ko"]) body.landing-page .nav-links {
    gap: clamp(18px, 2.4vw, 34px);
}

html[data-krewpick-lang]:not([data-krewpick-lang="ko"]) body.landing-page .nav-links a,
html[data-krewpick-lang]:not([data-krewpick-lang="ko"]) body.landing-page .nav-dropdown-toggle,
html[data-krewpick-lang]:not([data-krewpick-lang="ko"]) body.landing-page .nav-menu-link,
html[data-krewpick-lang]:not([data-krewpick-lang="ko"]) body.landing-page .nav-main-link,
html[data-krewpick-lang]:not([data-krewpick-lang="ko"]) body.landing-page .nav-login {
    white-space: normal !important;
    text-align: center;
    line-height: 1.18;
}

html[data-krewpick-lang]:not([data-krewpick-lang="ko"]) body.landing-page .nav-menu {
    gap: clamp(18px, 3vw, 40px);
}

html[data-krewpick-lang]:not([data-krewpick-lang="ko"]) body.landing-page .service-main-title,
html[data-krewpick-lang]:not([data-krewpick-lang="ko"]) body.landing-page .section-title,
html[data-krewpick-lang]:not([data-krewpick-lang="ko"]) body.landing-page .hero-title,
html[data-krewpick-lang]:not([data-krewpick-lang="ko"]) body.landing-page .main-title {
    overflow-wrap: anywhere;
    word-break: normal;
}

html[data-krewpick-lang]:not([data-krewpick-lang="ko"]) body.landing-page .service-text-content,
html[data-krewpick-lang]:not([data-krewpick-lang="ko"]) body.landing-page .footer-business-text,
html[data-krewpick-lang]:not([data-krewpick-lang="ko"]) body.landing-page .inquiry-modal,
html[data-krewpick-lang]:not([data-krewpick-lang="ko"]) body.landing-page .inquiry-form-group {
    min-width: 0;
    overflow-wrap: anywhere;
}

html[data-krewpick-lang]:not([data-krewpick-lang="ko"]) body.landing-page .inquiry-form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.legal-lang-slot {
    flex: 0 0 auto;
    margin-left: auto;
    margin-right: 12px;
}

@media (max-width: 1024px) {
    html[data-krewpick-lang]:not([data-krewpick-lang="ko"]) body.landing-page nav.top-nav {
        padding-left: 24px !important;
        padding-right: 24px !important;
        gap: 14px;
    }
}

@media (max-width: 768px) {
    .legal-lang-slot {
        margin-left: 0;
        margin-right: 0;
    }

    html[data-krewpick-lang]:not([data-krewpick-lang="ko"]) body.landing-page .inquiry-form-row {
        grid-template-columns: 1fr;
    }
}

/* Reset & Base */
html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

.landing-page * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.landing-page {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Helvetica Neue', 'Segoe UI', 'Apple SD Gothic Neo', 'Noto Sans KR', 'Malgun Gothic', sans-serif;
    line-height: 1.6;
    color: var(--landing-dark);
    background: var(--landing-white);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* ===================================
   Main Selection Page Styles
   =================================== */
.main-landing {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #0f172a;
    position: relative;
    overflow: hidden;
}

/* Animated Background */
.main-landing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        rgba(255, 0, 127, 0.15);
    animation: backgroundPulse 8s ease-in-out infinite;
}

@keyframes backgroundPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

/* Floating Particles */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: float 15s infinite;
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 20s;
}

.particle:nth-child(2) {
    left: 20%;
    animation-delay: 2s;
    animation-duration: 18s;
}

.particle:nth-child(3) {
    left: 30%;
    animation-delay: 4s;
    animation-duration: 22s;
}

.particle:nth-child(4) {
    left: 40%;
    animation-delay: 1s;
    animation-duration: 19s;
}

.particle:nth-child(5) {
    left: 50%;
    animation-delay: 3s;
    animation-duration: 21s;
}

.particle:nth-child(6) {
    left: 60%;
    animation-delay: 5s;
    animation-duration: 17s;
}

.particle:nth-child(7) {
    left: 70%;
    animation-delay: 2s;
    animation-duration: 23s;
}

.particle:nth-child(8) {
    left: 80%;
    animation-delay: 4s;
    animation-duration: 20s;
}

.particle:nth-child(9) {
    left: 90%;
    animation-delay: 1s;
    animation-duration: 18s;
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

/* Header Section */
.main-header {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 80px 20px 40px;
}

.main-logo {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    margin-bottom: 24px;
}

.main-title {
    font-size: clamp(32px, 6vw, 64px);
    font-weight: 800;
    color: var(--landing-white);
    line-height: 1.2;
    margin-bottom: 16px;
    background: #ffffff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.main-subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Selection Cards Container */
.selection-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px 80px;
    gap: 40px;
    position: relative;
    z-index: 10;
}

/* Selection Card */
.selection-card {
    width: 100%;
    max-width: 480px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--landing-radius-lg);
    padding: 48px 40px;
    text-decoration: none;
    transition: var(--landing-transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.selection-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    opacity: 0;
    transition: var(--landing-transition);
}

.selection-card.influencer::before {
    background: var(--landing-solid-influencer);
}

.selection-card.brand::before {
    background: var(--landing-solid-brand);
}

.selection-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: none;
}

.selection-card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 24px;
    transition: var(--landing-transition);
}

.selection-card.influencer .card-icon {
    background: var(--landing-solid-influencer);
}

.selection-card.brand .card-icon {
    background: var(--landing-solid-brand);
}

.selection-card:hover .card-icon {
    transform: scale(1.1);
}

.card-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.selection-card.influencer .card-label {
    color: #FF4DA6;
}

.selection-card.brand .card-label {
    color: #FF4DA6;
}

.card-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--landing-white);
    margin-bottom: 12px;
    line-height: 1.3;
}

.card-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 32px;
}

.card-features {
    list-style: none;
    margin-bottom: 32px;
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 12px;
}

.card-features li::before {
    content: '✓';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.selection-card.influencer .card-features li::before {
    background: rgba(255, 0, 127, 0.2);
    color: #FF4DA6;
}

.selection-card.brand .card-features li::before {
    background: rgba(255, 0, 127, 0.2);
    color: #FF4DA6;
}

.card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    color: var(--landing-white);
    transition: var(--landing-transition);
}

.selection-card.influencer .card-cta {
    background: var(--landing-primary);
}

.selection-card.brand .card-cta {
    background: var(--landing-primary);
}

.card-cta-arrow {
    transition: var(--landing-transition);
}

.selection-card:hover .card-cta-arrow {
    transform: translateX(4px);
}

/* ===================================
   Landing Page Common Styles
   =================================== */
.landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--landing-transition);
}

.landing-nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: none;
}

.landing-nav.dark {
    background: rgba(15, 23, 42, 0.95);
}

.nav-logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--landing-dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.krewpick-mobile-wordmark {
    display: block;
    width: 210px;
    height: auto;
    flex: 0 0 auto;
    image-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    isolation: isolate;
    object-fit: contain;
}

@media (max-width: 768px) {
    .krewpick-mobile-wordmark {
        width: 180px;
        height: auto;
    }
}

.nav-logo.light {
    color: var(--landing-white);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--landing-gray);
    text-decoration: none;
    transition: var(--landing-transition);
}

.nav-link:hover {
    color: var(--landing-primary);
}

.nav-cta {
    padding: 10px 24px;
    background: var(--landing-primary);
    color: var(--landing-white);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--landing-transition);
}

.nav-cta:hover {
    background: var(--landing-primary-dark);
    transform: translateY(-2px);
}

/* Hero Section */
.landing-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 20px 80px;
    position: relative;
    overflow: hidden;
}

.landing-hero.solid-bg {
    background: #f8fafc;
}

.landing-hero.dark-bg {
    background: #0f172a;
    color: var(--landing-white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 0, 127, 0.1);
    border: 1px solid rgba(255, 0, 127, 0.2);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--landing-primary);
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(40px, 8vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    max-width: 900px;
    margin-bottom: 24px;
}

.hero-title .highlight {
    background: var(--landing-solid-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--landing-gray);
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-description.light {
    color: rgba(255, 255, 255, 0.8);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: var(--landing-primary);
    color: var(--landing-white);
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--landing-transition);
}

.btn-primary:hover {
    background: var(--landing-primary-dark);
    transform: translateY(-2px);
    box-shadow: none;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: transparent;
    color: var(--landing-dark);
    border: 2px solid var(--landing-gray-light);
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--landing-transition);
}

.btn-secondary:hover {
    border-color: var(--landing-primary);
    color: var(--landing-primary);
}

.btn-secondary.light {
    color: var(--landing-white);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-secondary.light:hover {
    border-color: var(--landing-white);
}

/* Stats Section */
.stats-section {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 60px 20px;
    background: var(--landing-white);
    border-top: 1px solid var(--landing-gray-light);
    border-bottom: 1px solid var(--landing-gray-light);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--landing-primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--landing-gray);
    font-weight: 500;
}

/* Features Section */
.features-section {
    padding: 120px 20px;
    background: var(--landing-light);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 0, 127, 0.1);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: var(--landing-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: var(--landing-dark);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-description {
    font-size: 18px;
    color: var(--landing-gray);
    line-height: 1.7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--landing-white);
    border-radius: var(--landing-radius-lg);
    padding: 40px;
    transition: var(--landing-transition);
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: none;
    border-color: rgba(255, 0, 127, 0.2);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
    background: var(--landing-solid-1);
}

.feature-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--landing-dark);
    margin-bottom: 12px;
}

.feature-description {
    font-size: 15px;
    color: var(--landing-gray);
    line-height: 1.7;
}

/* How It Works Section */
.how-it-works {
    padding: 120px 20px;
    background: var(--landing-white);
}

.steps-container {
    max-width: 1000px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 60px;
    position: relative;
}

.step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 35px;
    top: 80px;
    width: 2px;
    height: calc(100% - 40px);
    background: var(--landing-primary);
}

.step-number {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--landing-solid-1);
    color: var(--landing-white);
    font-size: 28px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--landing-dark);
    margin-bottom: 12px;
}

.step-description {
    font-size: 16px;
    color: var(--landing-gray);
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials-section {
    padding: 120px 20px;
    background: var(--landing-dark);
    color: var(--landing-white);
}

.testimonials-section .section-title {
    color: var(--landing-white);
}

.testimonials-section .section-description {
    color: rgba(255, 255, 255, 0.7);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--landing-radius-lg);
    padding: 32px;
    transition: var(--landing-transition);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.testimonial-rating {
    color: #fbbf24;
    font-size: 18px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--landing-solid-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    color: var(--landing-white);
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--landing-white);
}

.author-role {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

/* Partners Section */
.partners-section {
    padding: 80px 20px;
    background: var(--landing-white);
    text-align: center;
}

.partners-title {
    font-size: 14px;
    color: var(--landing-gray);
    margin-bottom: 40px;
    font-weight: 500;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
    opacity: 0.6;
}

.partner-logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--landing-gray);
}

/* CTA Section */
.cta-section {
    padding: 120px 20px;
    background: var(--landing-primary, #FF007F);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    animation: rotateBg 30s linear infinite;
}

@keyframes rotateBg {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: var(--landing-white);
    margin-bottom: 16px;
}

.cta-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 18px 36px;
    background: var(--landing-white);
    color: var(--landing-primary);
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--landing-transition);
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: none;
}

/* FAQ Section */
.faq-section {
    padding: 120px 20px;
    background: var(--landing-light);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--landing-white);
    border-radius: 16px;
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #e2e8f0;
}

.faq-item.active {
    border-color: #e2e8f0;
    box-shadow: none;
}

.faq-question {
    width: 100%;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    gap: 16px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--landing-dark);
    text-align: left;
    cursor: pointer;
    transition: var(--landing-transition);
}

.faq-question>span:nth-child(2) {
    flex: 1;
}

.faq-question:hover {
    background: #fafbfc;
}

.faq-q-label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 10px;
    background: #FF007F;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    min-width: 28px;
    font-size: 13px;
    color: #94a3b8;
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: #FF007F;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 28px 24px 76px;
    font-size: 15px;
    color: #64748b;
    line-height: 1.8;
    border-top: 1px solid #f1f5f9;
    margin-left: 28px;
    margin-right: 28px;
    padding-left: 20px;
    padding-right: 0;
    padding-top: 20px;
    margin-bottom: 4px;
}

.faq-answer-content p {
    margin: 0 0 12px 0;
}

.faq-answer-content p:last-child {
    margin-bottom: 0;
}

.faq-answer-content strong {
    color: #334155;
    font-weight: 600;
}

.faq-answer-content ul,
.faq-answer-content ol {
    margin: 8px 0 12px 0;
    padding-left: 20px;
}

.faq-answer-content li {
    margin-bottom: 6px;
    color: #64748b;
}

.faq-answer-content li strong {
    color: #334155;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 18px 20px;
        font-size: 15px;
        gap: 12px;
    }

    .faq-q-label {
        width: 28px;
        height: 28px;
        min-width: 28px;
        font-size: 12px;
        border-radius: 8px;
    }

    .faq-answer-content {
        padding: 0 20px 20px 60px;
        margin-left: 20px;
        margin-right: 20px;
        padding-left: 16px;
        font-size: 14px;
    }
}

/* Footer */
.landing-footer {
    background: var(--landing-dark);
    color: var(--landing-white);
    padding: 80px 20px 40px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
}

.footer-brand {
    max-width: 300px;
    --footer-wordmark-visual-inset: 16px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    padding-left: var(--footer-wordmark-visual-inset);
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--landing-white);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: var(--landing-transition);
}

.footer-links a:hover {
    color: var(--landing-white);
}

.footer-bottom {
    max-width: 1200px;
    margin: 60px auto 0;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--landing-white);
    text-decoration: none;
    transition: var(--landing-transition);
}

.footer-social a:hover {
    background: var(--landing-primary);
    transform: translateY(-2px);
}

/* ===================================
   Brand Page Specific Styles
   =================================== */
.brand-hero {
    background: #020617;
}

.brand-hero .hero-title .highlight {
    background: #FF007F;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-features .feature-icon {
    background: var(--landing-solid-brand);
}

/* ===================================
   Influencer Page Specific Styles
   =================================== */
.influencer-hero {
    background: #f8fafc;
}

.influencer-hero .hero-title .highlight {
    background: #FF007F;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.influencer-features .feature-icon {
    background: var(--landing-solid-influencer);
}

/* ===================================
   Animations
   =================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger Animation */
.stagger-item {
    opacity: 0;
    transform: translateY(20px);
}

.stagger-item.visible {
    animation: staggerFadeIn 0.6s ease-out forwards;
}

@keyframes staggerFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating Animation */
.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Pulse Animation */
.pulse {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
    .selection-container {
        flex-direction: column;
        gap: 24px;
    }

    .selection-card {
        max-width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .landing-nav {
        padding: 16px 20px;
    }

    .nav-links {
        display: none;
    }

    .main-header {
        padding: 60px 20px 20px;
    }

    .selection-container {
        padding: 20px 20px 60px;
    }

    .selection-card {
        padding: 32px 24px;
    }

    .card-title {
        font-size: 24px;
    }

    .stats-section {
        flex-direction: column;
        gap: 32px;
    }

    .step-item {
        flex-direction: column;
        gap: 20px;
    }

    .step-item::after {
        display: none;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-brand {
        --footer-wordmark-visual-inset: 14px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .partners-logos {
        gap: 24px;
    }
}

/* ========== LOGIN MODAL (밝은 글래스모피즘 디자인) ========== */
.login-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.login-modal-overlay.active {
    display: flex;
    opacity: 1;
}

/* 로그인 패널 */
.login-modal {
    position: relative;
    z-index: 20;
    width: 440px;
    max-width: 92vw;
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
    background: #ffffff;
    border: none;
    border-radius: 20px;
    padding: 40px 36px 32px;
    box-shadow: none;
    transform: translateY(20px) scale(0.97);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.login-modal::before {
    display: none;
}

.login-modal-overlay.active .login-modal {
    transform: translateY(0) scale(1);
}

/* 왼쪽 핑크 액센트 바 — 비활성 */
.login-modal-accent {
    display: none;
}

/* 닫기 버튼 */
.login-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border: 1px solid var(--neutral-action, #6b7280);
    background: var(--neutral-action, #6b7280);
    border-radius: 8px;
    color: #ffffff;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    line-height: 1;
}

.login-modal-close:hover {
    background: var(--neutral-action-hover, #4b5563);
    border-color: var(--neutral-action-hover, #4b5563);
    color: #ffffff;
}

/* 헤더 (타이틀 + 서브타이틀) */
.login-modal-header {
    margin-bottom: 28px;
}

.login-modal-title {
    margin: 0 0 6px;
    font-size: 24px;
    font-weight: 800;
    color: #111827;
    letter-spacing: -0.02em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.login-modal-subtitle {
    display: none;
}

/* 로그인 모달 로고 */
.login-modal-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.login-modal-wordmark {
    margin: 0 auto;
    image-rendering: auto;
}

/* 폼 */
.login-modal-form .form-group {
    margin-bottom: 18px;
}

.login-modal-form .form-group label {
    display: block;
    margin-bottom: 6px;
    color: #1f2937;
    font-size: 14.5px;
    font-weight: 700;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.login-modal-form .input-icon {
    position: relative;
}

.login-modal-form .input-icon > i:first-child {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 15px;
    pointer-events: none;
}

.login-modal-form .form-control {
    width: 100%;
    padding: 14px 44px 14px 42px;
    font-size: 15px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #f9fafb;
    color: #111827;
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    outline: none;
    transition: all 0.2s ease;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

.login-modal-form .form-control::placeholder {
    color: #9ca3af;
}

.login-modal-form .form-control:focus {
    border-color: #FF007F;
    background: #ffffff;
    box-shadow: none;
}

/* 비밀번호 토글 */
.login-pw-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: none;
    color: #9ca3af;
    font-size: 15px;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.login-pw-toggle:hover {
    color: #6b7280;
}

/* 비밀번호 찾기 */
.login-forgot-pw {
    text-align: right;
    margin-top: 6px;
}

.login-forgot-pw a {
    font-size: 13px;
    font-weight: 500;
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s;
    -webkit-font-smoothing: antialiased;
}

.login-forgot-pw a:hover {
    color: #FF007F;
    text-decoration: none;
}

/* 로그인 버튼 */
.login-modal-form .btn-login {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    font-weight: 800;
    margin-top: 6px;
    -webkit-font-smoothing: antialiased;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #FF007F;
    border: none;
    border-radius: 10px;
    color: white;
    font-family: 'Pretendard', sans-serif;
    cursor: pointer;
    transition: all 0.25s ease;
}

.login-modal-form .btn-login:hover {
    transform: translateY(-1px);
    box-shadow: none;
}

.btn-login-arrow {
    font-size: 18px;
    margin-left: 4px;
}

/* 입점 신청 바 */
.login-modal-register-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding: 14px 16px;
    background: #fdf2f8;
    border-radius: 12px;
    gap: 12px;
}

.login-register-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.login-register-q {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    -webkit-font-smoothing: antialiased;
}

.login-register-desc {
    font-size: 13px;
    font-weight: 500;
    color: #4b5563;
    -webkit-font-smoothing: antialiased;
}

.login-register-btn {
    flex-shrink: 0;
    padding: 8px 16px;
    background: #FF007F;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    -webkit-font-smoothing: antialiased;
    border-radius: 8px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.login-register-btn:hover {
    background: #D4006B;
    text-decoration: none;
    color: #fff;
}

/* 앱 다운로드 */
.login-app-store-links {
    margin-top: 22px;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.login-app-store-title {
    margin: 2px 0 14px;
    color: #374151;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.55;
    text-align: center;
    -webkit-font-smoothing: antialiased;
}

.login-store-badges {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.login-store-badge {
    min-height: 48px;
    padding: 8px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: none;
    transition: all 0.2s ease;
    background: #ffffff;
}

.login-store-badge:hover {
    transform: none;
    box-shadow: none;
    border-color: #d1d5db;
    text-decoration: none;
}

.login-store-badge.app-store {
    background: #ffffff;
    color: #111827;
}

.login-store-badge.google-play {
    background: #ffffff;
    color: #111827;
    border-color: #e5e7eb;
}

.login-store-badge.google-play:hover {
    border-color: #d1d5db;
    box-shadow: none;
}

.login-store-icon {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    font-size: 20px;
}

.login-store-badge.app-store .login-store-icon {
    color: #111827;
}

.login-store-badge.google-play .login-store-icon {
    color: #111827;
}

.login-store-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.15;
}

.login-store-copy span {
    margin-bottom: 1px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.04em;
    -webkit-font-smoothing: antialiased;
}

.login-store-badge.app-store .login-store-copy span {
    color: #6b7280;
}

.login-store-badge.google-play .login-store-copy span {
    color: #6b7280;
}

.login-store-copy strong {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -0.01em;
    white-space: nowrap;
    -webkit-font-smoothing: antialiased;
}

.login-store-badge.app-store .login-store-copy strong {
    color: #111827;
}

.login-store-badge.google-play .login-store-copy strong {
    color: #111827;
}

/* SNS 로그인 (미사용) */
.login-modal .sns-login-section {
    display: none;
}

.login-modal .btn-sns-icon.naver {
    background: #03C75A;
}

.login-modal .btn-sns-icon.naver:hover {
    box-shadow: none;
}

.login-modal .btn-sns-icon.kakao {
    background: #FEE500;
}

.login-modal .btn-sns-icon.kakao:hover {
    box-shadow: none;
}

.login-modal .btn-sns-icon.facebook {
    background: #1877F2;
}

.login-modal .btn-sns-icon.facebook:hover {
    box-shadow: none;
}

.login-modal .btn-sns-icon.google {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.login-modal .btn-sns-icon.google:hover {
    box-shadow: none;
}

.login-modal .btn-sns-icon.apple {
    background: #000000;
}

.login-modal .btn-sns-icon.apple:hover {
    box-shadow: none;
}

.login-modal .btn-sns-icon.instagram {
    background: #FF007F;
}

.login-modal .btn-sns-icon.instagram:hover {
    box-shadow: none;
}

/* 토스트 메시지 (모달용) */
.login-modal-toast {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    max-width: calc(100vw - 32px);
    padding: 12px 28px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    line-height: 1.45;
    text-align: center;
    white-space: normal;
    overflow-wrap: anywhere;
    z-index: 100000;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
}

.login-modal-toast.show {
    transform: translateX(-50%) translateY(0);
}

.login-modal-toast.success {
    background: #FF007F;
    box-shadow: none;
}

.login-modal-toast.error {
    background: #FF007F;
    box-shadow: none;
}

.login-modal-toast.warning {
    background: #FF007F;
    box-shadow: none;
}

/* 스크롤바 스타일링 */
.login-modal::-webkit-scrollbar {
    width: 6px;
}

.login-modal::-webkit-scrollbar-track {
    background: transparent;
}

.login-modal::-webkit-scrollbar-thumb {
    background: rgba(255, 0, 127, 0.2);
    border-radius: 3px;
}

.login-modal::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 0, 127, 0.35);
}

@media (max-width: 480px) {
    .login-modal {
        width: calc(100vw - 24px);
        max-width: calc(100vw - 24px);
        max-height: calc(100dvh - 24px);
        padding: 32px 24px 24px;
        border-radius: 16px;
    }

    .login-modal-title {
        font-size: 20px;
    }

    .login-store-badges {
        grid-template-columns: 1fr;
    }

    .login-modal-register-bar {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .login-register-info {
        align-items: center;
    }
}

/* ========== LANGUAGE SELECTOR (랜딩 공통) ========== */
.lang-selector-slot {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 8px;
}

.lang-selector {
    position: relative;
}

.lang-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: #FF007F;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    color: #ffffff;
    font-family: 'Pretendard', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
    box-shadow: none;
}

.lang-toggle:hover {
    background: #FF007F;
    border-color: rgba(255, 255, 255, 0.72);
    box-shadow: none;
}

.lang-toggle.open {
    background: #FF007F;
    border-color: rgba(255, 255, 255, 0.78);
    box-shadow: none;
}

.lang-current-flag {
    width: 30px;
    height: 20px;
    object-fit: contain;
    border-radius: 3px;
    flex-shrink: 0;
    display: block;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: none;
}

.lang-current-label-sr {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.lang-chevron {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    transition: transform 0.25s ease;
    color: rgba(255, 255, 255, 0.86);
}

.lang-toggle.open .lang-chevron {
    transform: rotate(180deg);
    color: #ffffff;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 170px;
    background: #ffffff;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 0, 127, 0.2);
    border-radius: 14px;
    padding: 6px;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.96);
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 9999;
}

.lang-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 10px 14px;
    border: none;
    border-radius: 10px;
    background: transparent;
    color: #1f2937;
    font-family: 'Pretendard', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
    cursor: pointer;
    transition: all 0.15s ease;
    text-align: left;
    -webkit-font-smoothing: antialiased;
}

.lang-option + .lang-option {
    margin-top: 2px;
}

.lang-option:hover {
    background: #fff0f6;
    color: #D4006B;
}

.lang-option.active {
    background: rgba(255, 0, 127, 0.16);
    color: #D4006B;
    font-weight: 700;
}

.lang-flag-img {
    width: 30px;
    height: 20px;
    object-fit: contain;
    border-radius: 3px;
    flex-shrink: 0;
    display: block;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: none;
}

.lang-label {
    flex: 1;
}

/* ========== REGISTER MODAL ========== */
.register-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.register-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.register-modal {
    position: relative;
    z-index: 20;
    width: 580px;
    max-width: 94vw;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 32px;
    padding: 0;
    box-shadow: none;
    transform: translateY(20px) scale(0.97);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.register-modal-body {
    overflow-y: auto;
    flex: 1;
    min-height: 0;
    padding: 40px 36px;
    padding-top: 56px;
}

.register-modal-overlay.active .register-modal {
    transform: translateY(0) scale(1);
}

.register-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 10;
    width: 36px;
    height: 36px;
    border: 1px solid var(--neutral-action, #6b7280);
    background: var(--neutral-action, #6b7280);
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    line-height: 1;
}

.register-modal-close:hover {
    background: var(--neutral-action-hover, #4b5563);
    border-color: var(--neutral-action-hover, #4b5563);
    color: #fff;
}

/* 로고 */
.register-modal-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
}

.register-modal-logo h2 {
    font-family: 'Pretendard', sans-serif;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #111111;
    -webkit-font-smoothing: antialiased;
}

/* 제목 */
.reg-modal-title {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 20px;
}

.reg-modal-title i {
    color: #FF007F;
    margin-right: 6px;
}

/* SNS 섹션 - 로그인 모달과 동일한 아이콘 스타일 */
.register-modal .sns-login-section {
    margin-bottom: 8px;
}

.register-modal .sns-divider {
    display: flex;
    align-items: center;
    margin: 12px 0;
}

.register-modal .sns-divider::before,
.register-modal .sns-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e2e8f0;
}

.register-modal .sns-divider span {
    padding: 0 14px;
    font-size: 17px;
    font-weight: 800;
    color: #111111;
}

.register-modal .sns-buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 12px;
}

.register-modal .btn-sns-icon {
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.register-modal .btn-sns-icon:hover {
    transform: translateY(-3px) scale(1.05);
}

.register-modal .btn-sns-icon svg {
    width: 24px;
    height: 24px;
}

.register-modal .btn-sns-icon.naver {
    background: #03C75A;
}

.register-modal .btn-sns-icon.naver:hover {
    box-shadow: none;
}

.register-modal .btn-sns-icon.kakao {
    background: #FEE500;
}

.register-modal .btn-sns-icon.kakao:hover {
    box-shadow: none;
}

.register-modal .btn-sns-icon.facebook {
    background: #1877F2;
}

.register-modal .btn-sns-icon.facebook:hover {
    box-shadow: none;
}

.register-modal .btn-sns-icon.google {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.register-modal .btn-sns-icon.google:hover {
    box-shadow: none;
}

.register-modal .btn-sns-icon.apple {
    background: #000000;
}

.register-modal .btn-sns-icon.apple:hover {
    box-shadow: none;
}

.register-modal .btn-sns-icon.instagram {
    background: #FF007F;
}

.register-modal .btn-sns-icon.instagram:hover {
    box-shadow: none;
}

/* 구분선 */
.reg-divider {
    display: flex;
    align-items: center;
    margin: 16px 0;
}

.reg-divider::before,
.reg-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e2e8f0;
}

.reg-divider span {
    padding: 0 14px;
    font-size: 14px;
    font-weight: 600;
    color: #111111;
    white-space: nowrap;
}

/* 폼 */
.reg-form-group {
    margin-bottom: 14px;
}

.reg-form-group label {
    display: block;
    margin-bottom: 6px;
    color: #111111;
    font-size: 15px;
    font-weight: 600;
}

.reg-required {
    color: #ef4444;
    font-weight: 700;
}

.reg-input {
    width: 100%;
    padding: 14px 14px;
    font-size: 15px;
    height: 48px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: #f8fafc;
    color: #111111;
    font-family: 'Pretendard', sans-serif;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.reg-input::placeholder {
    color: #999999;
}

.reg-input:focus {
    border-color: #FF007F;
    background: #ffffff;
    box-shadow: none;
}

.reg-select {
    width: 100%;
    padding: 14px 14px;
    font-size: 15px;
    height: 48px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: #f8fafc;
    color: #111111;
    font-family: 'Pretendard', sans-serif;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
    cursor: pointer;
}

.reg-select:focus {
    border-color: #FF007F;
    background: #ffffff;
    box-shadow: none;
}

.reg-input-row {
    display: flex;
    gap: 8px;
}

.reg-input-row .reg-input {
    flex: 1;
}

.reg-btn-check {
    padding: 0 16px;
    font-size: 12px;
    font-weight: 600;
    color: #D4006B;
    background: #f3f0ff;
    border: 1px solid #e9e5f5;
    border-radius: 10px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
    font-family: 'Pretendard', sans-serif;
}

.reg-btn-check:hover {
    background: #FFF0F8;
    border-color: #FF007F;
}

.reg-error {
    display: none;
    color: #ef4444;
    font-size: 11px;
    margin-top: 4px;
}

.reg-success {
    display: none;
    color: #10b981;
    font-size: 11px;
    margin-top: 4px;
}

/* 채널 정보 */
.reg-channel-section {
    background: #f8f7ff;
    border: 1px solid #e9e5f5;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
}

.reg-channel-title {
    font-size: 13px;
    font-weight: 700;
    color: #D4006B;
    margin-bottom: 12px;
}

.reg-channel-title i {
    margin-right: 6px;
}

.reg-channel-section .reg-form-group {
    margin-bottom: 10px;
}

.reg-channel-section .reg-form-group:last-child {
    margin-bottom: 0;
}

/* 약관 동의 */
.reg-agreement {
    background: #fafafa;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 16px;
}

.reg-agree-all,
.reg-agree-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #333333;
    cursor: pointer;
    padding: 5px 0;
}

.reg-agree-all {
    padding-bottom: 10px;
    margin-bottom: 8px;
    border-bottom: 1px solid #e2e8f0;
}

.reg-agree-all strong {
    color: #111111;
}

.reg-agreement input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #FF007F;
    cursor: pointer;
}

/* 제출 버튼 */
.reg-btn-submit {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #FF007F;
    border: none;
    border-radius: 12px;
    color: white;
    font-family: 'Pretendard', sans-serif;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.reg-btn-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: none;
}

.reg-btn-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.reg-btn-secondary {
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    background: transparent;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    color: #666666;
    font-family: 'Pretendard', sans-serif;
    cursor: pointer;
    margin-top: 8px;
    transition: all 0.2s ease;
}

.reg-btn-secondary:hover {
    background: #f8fafc;
    border-color: #FF007F;
    color: #D4006B;
}

/* 하단 푸터 */
.reg-modal-footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
}

.reg-modal-footer p {
    color: #333333;
    font-size: 16px;
    font-weight: 500;
}

.reg-modal-footer a {
    color: #D4006B;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    margin-left: 8px;
    transition: color 0.3s ease;
}

.reg-modal-footer a:hover {
    color: #FF007F;
    text-decoration: underline;
}

/* 가입 완료 */
.reg-complete {
    text-align: center;
    padding: 20px 0;
}

.reg-complete-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.reg-complete-icon i {
    font-size: 32px;
    color: white;
}

.reg-complete-title {
    font-size: 22px;
    font-weight: 800;
    color: #111111;
    margin-bottom: 12px;
}

.reg-complete-msg {
    font-size: 14px;
    color: #555555;
    line-height: 1.7;
    margin-bottom: 8px;
}

/* 스크롤바 */
.register-modal-body::-webkit-scrollbar {
    width: 6px;
}

.register-modal-body::-webkit-scrollbar-track {
    background: transparent;
}

.register-modal-body::-webkit-scrollbar-thumb {
    background: rgba(255, 0, 127, 0.2);
    border-radius: 3px;
}

.register-modal-body::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 0, 127, 0.35);
}

.register-modal-body {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 0, 127, 0.2) transparent;
}

.hero-phone-visual picture,
.footer-payment-badge .logo-wrapper picture {
    display: block;
    width: 100%;
    height: 100%;
}

.footer-payment-badge .logo-wrapper picture img {
    display: block;
}

.video-wrapper .lite-youtube {
    appearance: none;
    cursor: pointer;
    padding: 0;
    position: relative;
    overflow: hidden;
    background: rgba(255, 0, 127, 0.08);
}

.video-wrapper .lite-youtube img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    filter: saturate(1.04) contrast(1.03);
}

.video-wrapper .lite-youtube::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        rgba(255, 0, 127, 0.16);
    pointer-events: none;
}

.video-wrapper .lite-youtube-play {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: none;
    z-index: 1;
}

.video-wrapper .lite-youtube-play::before {
    content: '';
    position: absolute;
    left: 27px;
    top: 21px;
    border-left: 20px solid #FF007F;
    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
}

.video-wrapper .lite-youtube:focus-visible .lite-youtube-play {
    outline: 3px solid rgba(255, 0, 127, 0.35);
    outline-offset: 4px;
}

@media (max-width: 480px) {
    .register-modal {
        width: calc(100vw - 24px);
        max-width: calc(100vw - 24px);
        max-height: calc(100dvh - 24px);
        border-radius: 24px;
    }

    .register-modal-body {
        padding: 48px 20px 28px;
    }

    .register-modal-logo h2 {
        font-size: 26px;
    }
}

/* Landing mobile hardening shared by main, brand and influencer landings. */
@media (max-width: 768px) {
    body.landing-page {
        overflow-x: hidden;
    }

    body.landing-page .top-nav,
    body.landing-page nav.top-nav {
        min-width: 0 !important;
    }

    body.landing-page .top-nav .krewpick-mobile-wordmark,
    body.landing-page nav.top-nav .krewpick-mobile-wordmark {
        width: clamp(132px, 38vw, 180px) !important;
        max-width: 42vw !important;
        height: auto !important;
    }

    body.landing-page nav.top-nav > div[style*="display: flex"],
    body.landing-page nav.top-nav > div[style*="display:flex"] {
        min-width: 0 !important;
        gap: 8px !important;
    }

    body.landing-page .nav-main-link,
    body.landing-page .nav-login {
        min-width: 0 !important;
        padding: 9px 14px !important;
        border-radius: 10px !important;
        font-size: 14px !important;
        line-height: 1 !important;
        white-space: nowrap !important;
    }

    body.landing-page .inquiry-modal-overlay {
        align-items: flex-end !important;
        padding: 0 10px 10px !important;
    }

    body.landing-page .inquiry-modal {
        width: 100% !important;
        max-width: none !important;
        max-height: min(86dvh, 720px) !important;
        border-radius: 18px !important;
    }

    body.landing-page .inquiry-modal-header {
        padding: 18px 18px 14px !important;
    }

    body.landing-page .inquiry-modal-header h3 {
        min-width: 0 !important;
        font-size: 18px !important;
        line-height: 1.35 !important;
    }

    body.landing-page .inquiry-form {
        padding: 18px !important;
    }

    body.landing-page .inquiry-form-row {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    body.landing-page .inquiry-radio-group {
        flex-wrap: wrap !important;
        gap: 10px 14px !important;
    }
}

@media (max-width: 420px) {
    body.landing-page .top-nav,
    body.landing-page nav.top-nav {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    body.landing-page .top-nav .krewpick-mobile-wordmark,
    body.landing-page nav.top-nav .krewpick-mobile-wordmark {
        width: clamp(118px, 34vw, 148px) !important;
        max-width: 38vw !important;
    }

    body.landing-page .nav-main-link {
        display: none !important;
    }

    body.landing-page .nav-login {
        padding-left: 12px !important;
        padding-right: 12px !important;
        font-size: 13px !important;
    }
}
