/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-bg: #0a0e1a;
    --secondary-bg: #141824;
    --card-bg: #1a1f2e;
    --accent-orange: #ff9f43;
    --accent-blue: #4a90e2;
    --accent-green: #2ecc71;
    --accent-red: #e74c3c;
    --text-primary: #ffffff;
    --text-secondary: #a0aec0;
    --text-muted: #718096;
    --border-color: #2d3748;
    --gradient-start: #667eea;
    --gradient-end: #764ba2;
}

body {
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    word-break: keep-all;
    -webkit-text-size-adjust: 100%;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.3;
}

.highlight {
    color: var(--accent-orange);
}

.highlight-text {
    color: var(--accent-orange);
    font-weight: 700;
}

.highlight-arrow {
    color: var(--accent-orange);
    font-weight: 600;
    margin-top: 8px;
}

/* Badges */
.badge,
.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 159, 67, 0.1);
    border: 1px solid var(--accent-orange);
    border-radius: 50px;
    color: var(--accent-orange);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-badge.warning {
    background: rgba(231, 76, 60, 0.1);
    border-color: var(--accent-red);
    color: var(--accent-red);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--primary-bg) 0%, #1a1f3a 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 159, 67, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    animation: float 6s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -150px;
    left: -150px;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-30px);
    }
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 30px;
    font-weight: 900;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.hero-note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--card-bg);
    border-radius: 30px;
    margin-bottom: 30px;
    font-size: 14px;
    color: var(--text-secondary);
}

.info-icon {
    font-size: 16px;
}

.hero-features {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.feature-item {
    padding: 12px 24px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
}

.hero-graphic {
    margin-top: 60px;
}

.play-button {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    background: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(255, 159, 67, 0.7);
}

.play-button::before {
    content: '▶▶';
    color: white;
    font-size: 32px;
    letter-spacing: -5px;
}

.play-button::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    border: 2px solid var(--accent-orange);
    border-radius: 50%;
    animation: ripple 2s ease-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 159, 67, 0.7);
    }

    50% {
        box-shadow: 0 0 0 20px rgba(255, 159, 67, 0);
    }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Section Styles */
section {
    padding: 100px 20px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 60px;
    line-height: 1.8;
}

.section-intro {
    text-align: center;
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-secondary);
    margin-bottom: 60px;
    line-height: 2;
}

.subtitle-text {
    font-size: 0.6em;
    color: var(--text-secondary);
    font-weight: 400;
}

/* Reality Check Section */
.reality-check {
    background: var(--secondary-bg);
}

.pain-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 30px;
}

.pain-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.pain-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-orange);
}

.pain-card.featured {
    border: 2px solid var(--accent-orange);
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(255, 159, 67, 0.05) 100%);
}

.pain-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.pain-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.pain-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Problem Section */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 30px;
}

.problem-item {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    border-left: 4px solid var(--accent-orange);
}

.problem-icon {
    font-size: 32px;
    color: var(--accent-orange);
    margin-bottom: 15px;
    font-weight: 700;
}

.problem-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.problem-item p {
    color: var(--text-secondary);
}

/* Role Section */
.role {
    background: var(--secondary-bg);
}

.role-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 30px;
}

.role-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.role-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 159, 67, 0.2);
}

.role-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.role-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--accent-orange);
}

.role-card p {
    color: var(--text-secondary);
}

/* Why Section */
.why-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.why-item {
    display: flex;
    gap: 20px;
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.why-item:hover {
    border-color: var(--accent-orange);
    transform: translateX(10px);
}

.why-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.why-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.why-content p {
    color: var(--text-secondary);
    margin-top: 8px;
}

.warning {
    color: var(--accent-red);
    font-weight: 600;
    margin-top: 10px;
}

/* Goal Structure Section */
.goal-structure {
    background: var(--secondary-bg);
}

.goal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 30px;
}

.goal-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.goal-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.goal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

.goal-icon.blue {
    background: rgba(74, 144, 226, 0.2);
    color: var(--accent-blue);
}

.goal-icon.orange {
    background: rgba(255, 159, 67, 0.2);
    color: var(--accent-orange);
}

.goal-icon.green {
    background: rgba(46, 204, 113, 0.2);
    color: var(--accent-green);
}

.goal-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.goal-target {
    color: var(--accent-orange);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.goal-card p {
    color: var(--text-secondary);
}

/* Service Process Section */
.process-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
    margin: 60px 0;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: min(100%, 250px);
    max-width: 350px;
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid var(--border-color);
    position: relative;
    text-align: center;
}

.process-step.highlighted {
    border-color: var(--accent-orange);
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(255, 159, 67, 0.05) 100%);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-icon {
    font-size: 48px;
    margin: 20px 0;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.process-step p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.process-connector {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-orange) 0%, transparent 100%);
    align-self: center;
    display: none;
}

@media (min-width: 768px) {
    .process-connector {
        display: block;
    }
}

.process-notice {
    text-align: center;
    padding: 20px;
    background: rgba(74, 144, 226, 0.1);
    border: 1px solid var(--accent-blue);
    border-radius: 10px;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 40px auto 0;
}

/* Option 01 Section */
.option-01 {
    background: var(--secondary-bg);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--card-bg);
    padding: 50px;
    border-radius: 20px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card.premium {
    border-color: var(--accent-orange);
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(255, 159, 67, 0.05) 100%);
}

.premium-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 16px;
    background: var(--accent-orange);
    color: white;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.price {
    text-align: center;
    margin-bottom: 10px;
}

.price .amount {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-orange);
}

.price .currency {
    font-size: 1.5rem;
    color: var(--text-secondary);
}

.duration {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.features {
    list-style: none;
    padding: 0;
}

.features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.features li:last-child {
    border-bottom: none;
}

.option-notice {
    text-align: center;
    padding: 20px;
    background: rgba(255, 159, 67, 0.1);
    border: 1px solid var(--accent-orange);
    border-radius: 10px;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 40px auto 0;
}

/* Existing Channels Section */
.existing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 30px;
}

.existing-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid var(--border-color);
    position: relative;
    transition: all 0.3s ease;
}

.existing-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-orange);
}

.existing-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.step-label {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.existing-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.existing-card p {
    color: var(--text-secondary);
}

/* Option 02 Section */
.option-02 {
    background: var(--secondary-bg);
}

.commerce-package {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 50px;
    border-radius: 20px;
    border: 2px solid var(--border-color);
}

@media (max-width: 968px) {
    .commerce-package {
        grid-template-columns: 1fr;
    }
}

.commerce-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.shopping-icon {
    width: 100px;
    height: 100px;
    background: rgba(167, 103, 239, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin-bottom: 20px;
}

.shopping-badge {
    padding: 10px 24px;
    background: rgba(167, 103, 239, 0.2);
    border: 1px solid #a767ef;
    border-radius: 30px;
    color: #a767ef;
    font-weight: 700;
    margin-bottom: 15px;
}

.shopping-desc {
    color: var(--text-secondary);
    line-height: 1.8;
}

.commerce-details h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.commerce-subtitle {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.commerce-price {
    margin-bottom: 30px;
}

.commerce-price .amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-orange);
}

.commerce-price .currency {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.commerce-info {
    display: grid;
    gap: 15px;
    margin-bottom: 30px;
}

.info-row {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 20px;
    padding: 15px;
    background: var(--secondary-bg);
    border-radius: 10px;
}

.info-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
}

.info-value {
    color: var(--text-primary);
    font-weight: 600;
}

.commerce-requirement {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 159, 67, 0.1);
    border: 1px solid var(--accent-orange);
    border-radius: 10px;
}

.requirement-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.commerce-requirement strong {
    color: var(--accent-orange);
    display: block;
    margin-bottom: 5px;
}

.commerce-requirement p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Cost Policy Section */
.policy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 30px;
}

.policy-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    border-top: 4px solid var(--accent-orange);
    transition: all 0.3s ease;
}

.policy-card.gold {
    border-top-color: #f1c40f;
}

.policy-card.blue {
    border-top-color: var(--accent-blue);
}

.policy-card.green {
    border-top-color: var(--accent-green);
}

.policy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.policy-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.policy-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.policy-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.policy-highlight {
    margin-top: 20px;
    padding: 15px;
    background: rgba(46, 204, 113, 0.1);
    border-left: 4px solid var(--accent-green);
    color: var(--text-primary);
    line-height: 1.8;
}

/* Target Audience Section */
.target-audience {
    background: var(--secondary-bg);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 30px;
}

.audience-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.audience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.audience-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

.audience-icon.red {
    background: rgba(231, 76, 60, 0.2);
    color: var(--accent-red);
}

.audience-icon.blue {
    background: rgba(74, 144, 226, 0.2);
    color: var(--accent-blue);
}

.audience-icon.green {
    background: rgba(46, 204, 113, 0.2);
    color: var(--accent-green);
}

.audience-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.audience-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Checklist Section */
.checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 30px;
}

.checklist-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    border-left: 4px solid var(--accent-orange);
}

.checklist-card.yellow {
    border-left-color: #f1c40f;
}

.checklist-card.red {
    border-left-color: var(--accent-red);
}

.checklist-card.green {
    border-left-color: var(--accent-green);
}

.checklist-card.blue {
    border-left-color: var(--accent-blue);
}

.checklist-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.checklist-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.checklist-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.checklist-notice {
    text-align: center;
    padding: 20px;
    background: rgba(74, 144, 226, 0.1);
    border: 1px solid var(--accent-blue);
    border-radius: 10px;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 40px auto 0;
}

/* Service Notice Section */
.notice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 30px;
}

.notice-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.notice-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.notice-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

.notice-icon.blue {
    background: rgba(74, 144, 226, 0.2);
    color: var(--accent-blue);
}

.notice-icon.purple {
    background: rgba(167, 103, 239, 0.2);
    color: #a767ef;
}

.notice-icon.orange {
    background: rgba(255, 159, 67, 0.2);
    color: var(--accent-orange);
}

.notice-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    text-align: center;
}

.notice-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    text-align: center;
}

.notice-alert {
    text-align: center;
    padding: 20px;
    background: rgba(74, 144, 226, 0.1);
    border: 1px solid var(--accent-blue);
    border-radius: 10px;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 40px auto 0;
}

/* CTA Section */
.cta {
    padding: 120px 20px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-bg) 0%, #1a1f3a 100%);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 159, 67, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cta .container {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-weight: 400;
}

.cta-main {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 50px;
    font-weight: 900;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 30px 50px;
    background: linear-gradient(135deg, var(--accent-orange) 0%, #ff7f00 100%);
    color: white;
    text-decoration: none;
    border-radius: 60px;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 159, 67, 0.3);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 159, 67, 0.5);
}

.button-icon {
    font-size: 32px;
}

.button-content {
    text-align: left;
}

.button-label {
    font-size: 0.8rem;
    opacity: 0.9;
}

.button-text {
    font-size: 1.3rem;
}

.button-arrow {
    font-size: 32px;
}

.cta-features {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.cta-feature {
    padding: 12px 24px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    font-size: 14px;
    color: var(--text-secondary);
}

/* Contact Form Section */
.contact-form {
    padding: 100px 20px;
    background: var(--secondary-bg);
}

.form-title {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 20px;
}

.form-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 50px;
}

.form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(255, 159, 67, 0.1);
}

.form-group.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-group.checkbox input[type="checkbox"] {
    width: auto;
    margin-top: 5px;
    cursor: pointer;
}

.form-group.checkbox label {
    margin-bottom: 0;
    cursor: pointer;
}

.submit-button {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--accent-orange) 0%, #ff7f00 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 159, 67, 0.4);
}

.form-success {
    max-width: 500px;
    margin: 0 auto;
    padding: 60px;
    background: var(--card-bg);
    border-radius: 20px;
    border: 2px solid var(--accent-green);
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
}

.form-success h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--accent-green);
}

.form-success p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Footer */
.footer {
    padding: 40px 20px;
    background: var(--primary-bg);
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.footer p {
    color: var(--text-muted);
    margin-bottom: 10px;
}

.footer-note {
    color: var(--accent-orange);
    font-weight: 600;
}

/* Responsive Design */

/* Tablet and below */
@media (max-width: 768px) {
    section {
        padding: 60px 20px;
    }

    .hero {
        padding: 80px 20px;
    }

    .pain-points,
    .problem-grid,
    .role-grid,
    .goal-grid,
    .pricing-grid,
    .existing-grid,
    .policy-grid,
    .audience-grid,
    .checklist-grid,
    .notice-grid {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        flex-direction: column;
    }

    .form {
        padding: 30px;
    }

    /* CTA 버튼 모바일 최적화 */
    .cta-button {
        padding: 20px 30px;
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .button-text {
        font-size: 1.1rem;
    }

    .button-icon,
    .button-arrow {
        font-size: 24px;
    }

    /* 가격 폰트 사이즈 조정 */
    .price .amount {
        font-size: 2.5rem;
    }

    .commerce-price .amount {
        font-size: 2rem;
    }

    /* 플레이 버튼 크기 조정 */
    .play-button {
        width: 100px;
        height: 100px;
    }

    .play-button::before {
        font-size: 24px;
    }

    .play-button::after {
        width: 130px;
        height: 130px;
    }

    /* Commerce info-row 모바일 최적화 */
    .info-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .commerce-package {
        padding: 30px;
    }

    /* 카드 패딩 조정 */
    .pain-card,
    .problem-item,
    .role-card,
    .goal-card,
    .pricing-card,
    .existing-card,
    .policy-card,
    .audience-card,
    .checklist-card,
    .notice-card {
        padding: 30px;
    }

    .process-step {
        padding: 30px;
        min-width: auto;
        max-width: none;
    }

    /* Why 리스트 모바일 최적화 */
    .why-item {
        flex-direction: column;
        gap: 15px;
    }

    .why-icon {
        font-size: 28px;
    }

    /* CTA features 모바일 */
    .cta-features {
        gap: 15px;
    }

    .cta-feature {
        padding: 10px 16px;
        font-size: 13px;
    }

    /* 섹션 서브타이틀 줄 높이 */
    .section-subtitle {
        margin-bottom: 40px;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    section {
        padding: 50px 15px;
    }

    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 60px 15px;
        min-height: auto;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-note {
        padding: 10px 16px;
        font-size: 12px;
    }

    .hero-features {
        gap: 10px;
        margin-top: 30px;
    }

    .feature-item {
        padding: 10px 16px;
        font-size: 12px;
    }

    .hero-graphic {
        margin-top: 40px;
    }

    .play-button {
        width: 80px;
        height: 80px;
    }

    .play-button::before {
        font-size: 20px;
    }

    .play-button::after {
        width: 100px;
        height: 100px;
    }

    /* 섹션 타이틀 */
    .section-title {
        font-size: 1.5rem;
        word-break: keep-all;
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .section-intro {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    /* 뱃지 */
    .badge,
    .section-badge {
        padding: 6px 14px;
        font-size: 12px;
    }

    /* 카드 패딩 더 줄이기 */
    .pain-card,
    .problem-item,
    .role-card,
    .goal-card,
    .pricing-card,
    .existing-card,
    .policy-card,
    .audience-card,
    .checklist-card,
    .notice-card {
        padding: 25px 20px;
    }

    .process-step {
        padding: 25px 20px;
    }

    /* 아이콘 크기 조정 */
    .pain-icon,
    .role-icon,
    .step-icon,
    .existing-icon,
    .policy-icon {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .goal-icon,
    .audience-icon,
    .notice-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .checklist-icon {
        font-size: 28px;
    }

    /* 카드 제목 */
    .pain-card h3,
    .role-card h3,
    .goal-card h3,
    .existing-card h3,
    .policy-card h3,
    .audience-card h3,
    .notice-card h3 {
        font-size: 1.2rem;
    }

    .problem-item h3,
    .process-step h3,
    .checklist-card h3 {
        font-size: 1.1rem;
    }

    /* 가격 표시 */
    .price .amount {
        font-size: 2rem;
    }

    .price .currency {
        font-size: 1.2rem;
    }

    .commerce-price .amount {
        font-size: 1.8rem;
    }

    .commerce-price .currency {
        font-size: 1rem;
    }

    .pricing-card {
        padding: 30px 20px;
    }

    .premium-badge {
        padding: 5px 12px;
        font-size: 10px;
        top: 15px;
        right: 15px;
    }

    .features li {
        padding: 10px 0;
        font-size: 0.9rem;
    }

    /* Commerce 패키지 */
    .commerce-package {
        padding: 25px 20px;
        gap: 30px;
    }

    .shopping-icon {
        width: 80px;
        height: 80px;
        font-size: 36px;
    }

    .shopping-badge {
        padding: 8px 16px;
        font-size: 12px;
    }

    .commerce-details h3 {
        font-size: 1.4rem;
    }

    .info-row {
        padding: 12px;
    }

    .info-label {
        font-size: 0.8rem;
    }

    .info-value {
        font-size: 0.9rem;
    }

    .commerce-requirement {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
    }

    /* CTA 섹션 */
    .cta {
        padding: 80px 15px;
    }

    .cta-title {
        font-size: 1rem;
    }

    .cta-main {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .cta-button {
        padding: 18px 24px;
        gap: 12px;
        font-size: 1rem;
        border-radius: 40px;
    }

    .button-icon {
        font-size: 20px;
    }

    .button-label {
        font-size: 0.7rem;
    }

    .button-text {
        font-size: 1rem;
    }

    .button-arrow {
        font-size: 20px;
    }

    .cta-features {
        flex-direction: column;
        gap: 10px;
        margin-top: 30px;
    }

    .cta-feature {
        padding: 10px 20px;
        font-size: 12px;
    }

    /* 폼 */
    .contact-form {
        padding: 50px 15px;
    }

    .form-title {
        font-size: 1.5rem;
    }

    .form-subtitle {
        font-size: 0.9rem;
    }

    .form {
        padding: 25px 20px;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
        font-size: 14px;
    }

    .form-group.checkbox {
        align-items: flex-start;
    }

    .form-group.checkbox label {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .form-group.checkbox input[type="checkbox"] {
        margin-top: 3px;
        flex-shrink: 0;
    }

    .submit-button {
        padding: 15px;
        font-size: 1rem;
    }

    /* 성공 메시지 */
    .form-success {
        padding: 40px 25px;
    }

    .success-icon {
        width: 60px;
        height: 60px;
        font-size: 36px;
    }

    .form-success h3 {
        font-size: 1.5rem;
    }

    /* 푸터 */
    .footer {
        padding: 30px 15px;
    }

    .footer p {
        font-size: 0.85rem;
    }

    /* notice, option-notice, process-notice, checklist-notice */
    .option-notice,
    .process-notice,
    .checklist-notice,
    .notice-alert {
        padding: 15px;
        font-size: 0.85rem;
    }

    /* Step label */
    .step-label {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
        top: 15px;
        right: 15px;
    }

    /* Policy highlight */
    .policy-highlight {
        padding: 12px;
        font-size: 0.9rem;
    }

    /* Why item */
    .why-item {
        padding: 20px;
    }

    .why-content h3 {
        font-size: 1.05rem;
    }

    .why-content p {
        font-size: 0.9rem;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .cta-main {
        font-size: 1.3rem;
    }

    .price .amount {
        font-size: 1.8rem;
    }

    .commerce-price .amount {
        font-size: 1.5rem;
    }

    .cta-button {
        padding: 15px 20px;
    }

    .button-content {
        text-align: center;
    }

    .pain-card,
    .problem-item,
    .role-card,
    .goal-card,
    .pricing-card,
    .existing-card,
    .policy-card,
    .audience-card,
    .checklist-card,
    .notice-card {
        padding: 20px 15px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection */
::selection {
    background: var(--accent-orange);
    color: white;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--primary-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-orange);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff7f00;
}

/* Kakao Channel Chat Button - Hidden as per new requirements */
#kakao-talk-channel-chat-button {
    display: none !important;
}

/* Fixed Floating CTA Button */
.cta-button.fixed-floating {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    /* Adjust size for floating state if needed, but keeping original size for now */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    animation: slideUp 0.5s ease-out;
}

.cta-button.fixed-floating:hover {
    transform: translateX(-50%) translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 159, 67, 0.6);
}

@keyframes slideUp {
    from {
        transform: translateX(-50%) translateY(100px);
        opacity: 0;
    }

    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

/* Wrapper to prevent layout shift */
.cta-button-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    /* Height will be handled by JS to match button height */
}

/* Custom Kakao Floating Button */
.kakao-float-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #FEE500;
    color: #3C1E1E;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    font-weight: 700;
    overflow: hidden;
}

.kakao-float-btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 25px rgba(254, 229, 0, 0.4);
}

.kakao-float-btn:active {
    transform: scale(0.98);
}

.kakao-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.kakao-text {
    font-size: 16px;
    line-height: 1;
}

/* Add specialized animation for attention */
@keyframes kakao-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(254, 229, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(254, 229, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(254, 229, 0, 0);
    }
}

.kakao-float-btn {
    animation: kakao-pulse 2s infinite;
}



/* Mobile optimizations for Fixed Floating Button */
@media (max-width: 768px) {
    .cta-button.fixed-floating {
        bottom: 20px;
        padding: 12px 20px;
        gap: 12px;
        width: 90%;
        /* Occupy most of the screen width for easier tapping */
        max-width: 360px;
        justify-content: space-between;
        border-radius: 50px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    }

    .cta-button.fixed-floating .button-icon {
        font-size: 20px;
    }

    .cta-button.fixed-floating .button-content {
        flex: 1;
        text-align: center;
    }

    /* Hide the small English label on mobile fixed state to save space */
    .cta-button.fixed-floating .button-label {
        display: none;
    }

    .cta-button.fixed-floating .button-text {
        font-size: 1rem;
        margin: 0;
    }

    .cta-button.fixed-floating .button-arrow {
        font-size: 18px;
    }
}