/* ===================================
   CSS Variables & Reset
   =================================== */
:root {
    /* Colors - 부드럽고 차분한 톤 */
    --primary: #3b7dd8;
    --primary-dark: #2c6bc4;
    --primary-light: #5a9ae8;
    --secondary: #5ba3d9;
    --accent: #4a90c2;

    --text-primary: #333333;
    --text-secondary: #666666;
    --text-light: #888888;

    --bg-white: #ffffff;
    --bg-light: #f5f7fa;
    --bg-gray: #eef2f7;
    --bg-dark: #3a4a5c;

    --border-color: #d8e0e8;

    /* 그라데이션 최소화 - 단색 위주 */
    --gradient-subtle: linear-gradient(180deg, #f5f7fa 0%, #ffffff 100%);

    /* Shadows - 더 부드럽게 */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 8px 24px rgba(0, 0, 0, 0.12);

    /* Spacing */
    --section-padding: 52px;
    --container-padding: 20px;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* ===================================
   Utility Classes
   =================================== */
.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.text-primary {
    color: var(--primary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-white {
    background: white;
    color: var(--primary);
    border-color: white;
}

.btn-white:hover {
    background: var(--bg-light);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 15px;
}

.btn-block {
    width: 100%;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 36px;
}

.section-badge {
    display: inline-block;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    background: rgba(59, 125, 216, 0.1);
    border-radius: var(--radius-full);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.4;
}

.section-description {
    font-size: 15px;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    background: white;
    border-bottom: 1px solid var(--border-color);
    transition: all var(--transition-base);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    min-height: 90px;
}

.nav-logo {
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 80px;
    width: auto;
    display: block;
}

.logo-korea {
    color: var(--primary);
}

.logo-cms {
    color: var(--secondary);
}

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

.nav-link {
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.nav-link:hover {
    color: var(--primary);
    background: rgba(59, 125, 216, 0.08);
}

.nav-link.active {
    color: var(--primary);
    font-weight: 600;
}

.nav-cta {
    display: flex;
    align-items: center;
}

.nav-cta .btn {
    padding: 8px 16px;
    font-size: 13px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition-fast);
}

/* ===================================
   Hero Section - 밝고 부드러운 톤
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, #e8f0f8 0%, #f5f8fc 50%, #ffffff 100%);
    overflow: hidden;
    padding: 100px 0 60px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}

.hero-shape-1 {
    width: 500px;
    height: 500px;
    background: rgba(91, 163, 217, 0.3);
    top: -150px;
    right: -100px;
    animation: float 25s ease-in-out infinite;
}

.hero-shape-2 {
    width: 350px;
    height: 350px;
    background: rgba(74, 144, 194, 0.2);
    bottom: -100px;
    left: -50px;
    animation: float 20s ease-in-out infinite reverse;
}

.hero-shape-3 {
    width: 250px;
    height: 250px;
    background: rgba(59, 125, 216, 0.15);
    top: 40%;
    left: 30%;
    animation: pulse 15s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, 20px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.1); opacity: 0.3; }
}

.hero-content {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    color: var(--text-primary);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    margin-bottom: 20px;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.hero-badge i {
    color: #f59e0b;
}

.hero-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.hero-title .text-primary {
    color: var(--primary);
}

.hero-description {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 36px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
}

.stat-suffix {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary);
}

.stat-label {
    display: block;
    font-size: 13px;
    color: var(--text-light);
    margin-top: 4px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 450px;
}

.hero-card {
    position: absolute;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.hero-card-main {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 36px;
    text-align: center;
    width: 260px;
}

.hero-card-main .card-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.hero-card-main .card-icon i {
    font-size: 28px;
    color: var(--primary);
}

.hero-card-main h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.hero-card-main p {
    font-size: 13px;
    color: var(--text-secondary);
}

.hero-card-float-1,
.hero-card-float-2 {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
}

.hero-card-float-1 {
    top: 18%;
    right: 8%;
    animation: floatCard 7s ease-in-out infinite;
}

.hero-card-float-2 {
    bottom: 22%;
    left: 8%;
    animation: floatCard 9s ease-in-out infinite reverse;
}

.hero-card-float-1 i {
    font-size: 20px;
    color: #22c55e;
}

.hero-card-float-2 i {
    font-size: 20px;
    color: var(--primary);
}

.hero-card-float-1 span,
.hero-card-float-2 span {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--text-light);
    font-size: 11px;
    animation: bounce 2.5s infinite;
}

.scroll-indicator i {
    font-size: 14px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-8px); }
    60% { transform: translateX(-50%) translateY(-4px); }
}

/* ===================================
   Services Section
   =================================== */
.services {
    padding: var(--section-padding) 0;
    background: var(--bg-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.services-grid.services-grid-double {
    grid-template-columns: repeat(2, 380px);
    justify-content: center;
    gap: 24px;
}

.service-card {
    position: relative;
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    transition: all var(--transition-base);
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.service-card.featured {
    background: var(--primary);
    border-color: var(--primary);
}

.service-card.featured * {
    color: white;
}

.service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-full);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-card.featured .service-icon {
    background: rgba(255, 255, 255, 0.2);
}

.service-icon i {
    font-size: 24px;
    color: var(--primary);
}

.service-card.featured .service-icon i {
    color: white;
}

.service-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.service-card p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.7;
}

.service-card.featured p {
    color: rgba(255, 255, 255, 0.9);
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-secondary);
}

.service-card.featured .service-features li {
    color: rgba(255, 255, 255, 0.9);
}

.service-features li i {
    font-size: 12px;
    color: var(--primary);
}

.service-card.featured .service-features li i {
    color: #86efac;
}

/* ===================================
   Features Section
   =================================== */
.features {
    padding: var(--section-padding) 0;
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    text-align: center;
    padding: 32px 24px;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: all var(--transition-base);
}

.feature-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all var(--transition-base);
}

.feature-card:hover .feature-icon {
    transform: scale(1.05);
}

.feature-icon i {
    font-size: 26px;
    color: white;
}

.feature-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===================================
   Process Section
   =================================== */
.process {
    padding: var(--section-padding) 0;
    background: var(--bg-dark);
    color: white;
}

.process .section-badge {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.process .section-title {
    color: white;
}

.process .section-description {
    color: rgba(255, 255, 255, 0.7);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    font-size: 40px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.15);
    margin-bottom: 16px;
}

.step-icon {
    width: 72px;
    height: 72px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.step-icon i {
    font-size: 24px;
    color: white;
}

.step-content h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* ===================================
   About Section
   =================================== */
.about {
    padding: var(--section-padding) 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text .section-badge {
    margin-bottom: 12px;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.about-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.value-item i {
    width: 44px;
    height: 44px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary);
    flex-shrink: 0;
}

.value-item h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.value-item p {
    font-size: 13px;
    color: var(--text-secondary);
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image {
    position: relative;
    width: 360px;
    height: 360px;
}

.image-decoration {
    position: absolute;
    inset: 0;
    background: var(--primary);
    border-radius: var(--radius-xl);
    transform: rotate(-4deg);
    opacity: 0.1;
}

.image-content {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.image-content i {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.image-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.image-content p {
    font-size: 14px;
    opacity: 0.9;
}

/* ===================================
   Online Apply Section
   =================================== */
.online-apply {
    padding: var(--section-padding) 0;
    background: var(--bg-light);
}

.apply-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.apply-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 28px 32px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    text-decoration: none;
    transition: all var(--transition-base);
}

.apply-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.apply-card-icon {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.apply-card-icon i {
    font-size: 32px;
    color: white;
}

.apply-icon-contract {
    background: linear-gradient(135deg, #3b7dd8, #5a9ae8);
}

.apply-icon-inquiry {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.apply-icon-phone {
    background: linear-gradient(135deg, #22c55e, #4ade80);
}

.apply-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.apply-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.apply-card-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--transition-fast);
}

.apply-card:hover .apply-card-link {
    gap: 10px;
}

/* CTA Box (섹션 내 포함) */
.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 32px;
    padding: 28px 36px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: var(--radius-xl);
    color: white;
}

.cta-box-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.cta-box-content p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

.cta-box-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .cta-box {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }

    .cta-box-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-box-buttons .btn {
        width: 100%;
    }

    .apply-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .apply-card {
        padding: 28px 24px 24px;
    }

    .apply-card:hover {
        transform: none;
    }
}

/* ===================================
   Apply Process Section
   =================================== */
.apply-process {
    padding: var(--section-padding) 0;
    background: var(--bg-white);
}

.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.process-step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 16px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    width: 160px;
    transition: all var(--transition-base);
}

.process-step-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.step-badge {
    display: inline-block;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 700;
    color: white;
    background: var(--primary);
    border-radius: var(--radius-full);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.step-icon-wrap {
    width: 56px;
    height: 56px;
    background: white;
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.step-icon-wrap i {
    font-size: 22px;
    color: var(--primary);
}

.process-step-item h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.process-step-item p {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.step-arrow {
    display: flex;
    align-items: center;
    padding-top: 60px;
    color: var(--text-light);
    font-size: 18px;
}

/* 가로 타임라인 (Horizontal Process Steps) */
.process-steps-horizontal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.process-step-slim {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: all var(--transition-fast);
}

.process-step-slim:hover {
    border-color: var(--primary);
    background: white;
}

.step-icon-sm {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-icon-sm i {
    font-size: 16px;
    color: white;
}

.step-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.step-num {
    font-size: 10px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
}

.step-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
}

.step-arrow-sm {
    color: var(--text-light);
    font-size: 14px;
}

@media (max-width: 1024px) {
    .process-steps-horizontal {
        gap: 6px;
    }

    .process-step-slim {
        padding: 10px 12px;
    }

    .step-name {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .process-steps-horizontal {
        flex-wrap: wrap;
        justify-content: center;
    }

    .step-arrow-sm {
        display: none;
    }

    .process-step-slim {
        flex: 0 0 calc(33.333% - 8px);
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .process-step-slim {
        flex: 0 0 calc(50% - 6px);
    }
}

/* Documents Section */
.documents-section {
    background: var(--bg-light);
    border-radius: var(--radius-xl);
    padding: 28px;
    border: 1px solid var(--border-color);
    margin-bottom: 0;
}

.documents-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.documents-title i {
    color: var(--primary);
    font-size: 20px;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 20px;
}

.document-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.document-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    font-size: 15px;
    font-weight: 700;
}

.document-header.corporate {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

.document-header i {
    font-size: 18px;
}

.document-list {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.document-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-primary);
}

.document-list li i {
    font-size: 12px;
    color: #22c55e;
}

.documents-notice {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-secondary);
    background: white;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.documents-notice i {
    color: var(--primary);
}

.doc-note {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 400;
}

.documents-notice-box {
    background: #fffbeb;
    border: 1px solid #fcd34d;
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    margin-top: 20px;
}

.documents-notice-box h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: #b45309;
    margin-bottom: 16px;
}

.documents-notice-box h4 i {
    color: #f59e0b;
}

.notice-list {
    list-style: none;
}

.notice-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 10px;
}

.notice-list li:last-child {
    margin-bottom: 0;
}

.notice-list li i {
    font-size: 6px;
    color: #f59e0b;
    margin-top: 8px;
    flex-shrink: 0;
}

.notice-list li strong {
    color: var(--text-primary);
}

/* Responsive for Apply Process */
@media (max-width: 992px) {
    .process-steps {
        gap: 8px;
    }

    .process-step-item {
        width: 140px;
        padding: 16px 12px;
    }

    .step-arrow {
        padding-top: 50px;
    }
}

@media (max-width: 768px) {
    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .process-step-item {
        width: 100%;
        max-width: 280px;
        flex-direction: row;
        text-align: left;
        gap: 16px;
        padding: 16px 20px;
    }

    .step-badge {
        position: absolute;
        top: -8px;
        left: 16px;
        margin-bottom: 0;
    }

    .process-step-item {
        position: relative;
    }

    .step-icon-wrap {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .step-arrow {
        display: none;
    }

    .documents-section {
        padding: 24px;
    }

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

/* ===================================
   CTA Section
   =================================== */
.cta {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.cta-content {
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 700;
    margin-bottom: 12px;
}

.cta-content p {
    font-size: 15px;
    opacity: 0.9;
    margin-bottom: 24px;
}

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

/* Partners Section */
.partners-section {
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.partners-label {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 28px;
}

.partners-grid {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.partner-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 28px;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

.partner-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.partner-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-icon i {
    font-size: 24px;
    color: white;
}

.partner-icon.kftc {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
}

.partner-icon.hyosung {
    background: linear-gradient(135deg, #dc2626 0%, #f87171 100%);
}

.partner-icon.nicepay {
    background: linear-gradient(135deg, #059669 0%, #34d399 100%);
}

.partner-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.partner-name {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-primary);
}

.partner-desc {
    font-size: 13px;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .partners-grid {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .partner-item {
        width: 100%;
        max-width: 320px;
    }
}

/* ===================================
   Solutions Section
   =================================== */
.solutions {
    padding: var(--section-padding) 0;
    background: var(--bg-light);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.solution-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all var(--transition-base);
}

.solution-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.solution-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.solution-icon i {
    font-size: 24px;
    color: var(--primary);
}

.solution-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.solution-content p {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.solution-tag {
    display: inline-block;
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 600;
    color: var(--primary);
    background: rgba(59, 125, 216, 0.1);
    border-radius: var(--radius-full);
}

/* Solutions Grid - 중앙 정렬 래퍼 */
.solutions-grid-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* Solutions Grid - 2열 레이아웃 */
.solutions-grid-3 {
    display: flex;
    justify-content: center;
    gap: 24px;
    width: 100%;
}

.solutions-grid-3 .solution-card-simple {
    flex: 0 1 380px;
}

.solution-card-simple {
    background: white;
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.solution-card-simple:hover {
    box-shadow: var(--shadow-md);
}

.solution-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.solution-desc {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.solution-desc strong {
    color: var(--primary);
    font-weight: 600;
}

.solution-desc em {
    color: var(--text-primary);
    font-style: normal;
    font-weight: 500;
}

/* Responsive for Solutions Grid */
@media (max-width: 992px) {
    .solutions-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .solutions-grid-3 {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   Additional Services Section
   =================================== */
.additional-services {
    padding: var(--section-padding) 0;
    background: white;
}

.additional-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.additional-card {
    text-align: center;
    padding: 32px 20px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.additional-card:hover {
    background: white;
    box-shadow: var(--shadow-md);
}

.additional-icon {
    width: 56px;
    height: 56px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.additional-icon i {
    font-size: 22px;
    color: white;
}

.additional-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.additional-card p {
    font-size: 13px;
    color: var(--text-secondary);
}

/* ===================================
   Support Section
   =================================== */
.support {
    padding: var(--section-padding) 0;
    background: var(--bg-light);
}

.support-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 24px;
    align-items: start;
}

/* 메인 고객센터 카드 */
.support-main-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.support-main-header {
    background: linear-gradient(135deg, var(--primary) 0%, #2563eb 100%);
    color: white;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.support-main-header i {
    font-size: 24px;
}

.support-main-header span {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
}

.support-main-body {
    padding: 24px;
}

.support-phone-wrap {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.phone-label {
    display: block;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.phone-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -1px;
}

.phone-number:hover {
    color: #2563eb;
}

.support-time {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.time-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.time-label {
    color: var(--text-secondary);
    font-weight: 500;
}

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

.time-value.closed {
    color: #e74c3c;
}

/* 연락처 카드 그리드 */
.support-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
}

.contact-card-v2 {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    transition: all 0.2s ease;
}

a.contact-card-v2:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card-icon i {
    font-size: 20px;
    color: white;
}

.contact-card-v2.kakao .contact-card-icon {
    background: #FEE500;
}

.contact-card-v2.kakao .contact-card-icon i {
    color: #3C1E1E;
}

.contact-card-v2.remote .contact-card-icon {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.contact-card-v2.fax .contact-card-icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.contact-card-v2.email .contact-card-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.contact-card-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.contact-card-label {
    font-size: 12px;
    color: var(--text-secondary);
}

.contact-card-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.contact-card-arrow {
    color: var(--text-light);
    font-size: 14px;
}

/* 바로가기 링크들 */
.support-quick-links {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.quick-links-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.quick-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.quick-link-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.2s ease;
}

.quick-link-item:hover {
    background: var(--primary);
    color: white;
}

.quick-link-item:hover i,
.quick-link-item:hover span {
    color: white;
}

.quick-link-item i {
    font-size: 16px;
    color: var(--primary);
}

.quick-link-item span {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
}

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

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

@media (max-width: 576px) {
    .support-contact-grid {
        grid-template-columns: 1fr;
    }
}

/* 다운로드 영역 (고객지원 내부) */
.download-area {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.subsection-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.subsection-title i {
    font-size: 20px;
    color: var(--primary);
}

.download-grid-compact {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.download-card-compact {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
    min-width: 0;
    box-shadow: var(--shadow-sm);
}

.download-card-compact:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.download-icon-sm {
    width: 52px;
    height: 52px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.download-icon-sm i {
    font-size: 22px;
    color: var(--primary);
}

.download-info {
    flex: 1;
    min-width: 0;
}

.download-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.download-info p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .download-grid-compact {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .download-card-compact {
        flex-wrap: wrap;
    }

    .download-card-compact .btn {
        width: 100%;
        margin-top: 8px;
    }
}

/* ===================================
   Download Section (legacy)
   =================================== */
.download {
    padding: var(--section-padding) 0;
    background: white;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.download-card {
    text-align: center;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px 20px;
    transition: all var(--transition-base);
}

.download-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.download-icon {
    width: 60px;
    height: 60px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.download-icon i {
    font-size: 24px;
    color: var(--primary);
}

.download-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.download-card p {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.download-card .btn {
    padding: 10px 20px;
    font-size: 13px;
}

/* Logo Text */
.logo-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-left: 8px;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: #2d3a4a;
    color: white;
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    display: inline-block;
}

.footer-logo img {
    height: 90px;
    width: auto;
    display: block;
}

.footer-logo .logo-korea {
    color: white;
}

.footer-logo .logo-cms {
    color: var(--secondary);
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--primary);
}

.footer-social i {
    font-size: 16px;
    color: white;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition-fast);
}

.footer-column a:hover {
    color: white;
    padding-left: 4px;
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-info p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
}

.footer-copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

/* ===================================
   Back to Top Button
   =================================== */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-base);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-visual {
        display: none;
    }

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

    .hero-stats {
        justify-content: center;
    }

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

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

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

    .support-content {
        grid-template-columns: 1fr;
    }

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

    .apply-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 80px 24px 24px;
        box-shadow: var(--shadow-xl);
        transition: right var(--transition-base);
        z-index: 998;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        color: var(--text-primary);
        padding: 14px 0;
        border-bottom: 1px solid var(--border-color);
        width: 100%;
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--primary);
        background: transparent;
    }

    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
        z-index: 999;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-title {
        font-size: clamp(26px, 6vw, 36px);
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-number {
        font-size: 26px;
    }

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

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

    .support-links {
        grid-template-columns: 1fr;
    }

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

    .apply-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .apply-card {
        padding: 28px 24px 24px;
    }

    .apply-card:hover {
        transform: none;
    }

    .support-card.main {
        flex-direction: column;
        text-align: center;
    }

    .logo-text {
        display: none;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

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

    .cta-buttons .btn {
        width: 100%;
        max-width: 260px;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .back-to-top {
        bottom: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
    }
}

/* ===================================
   Floating Buttons (카카오톡, 원격지원)
   =================================== */
.floating-buttons {
    position: fixed;
    bottom: 100px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.floating-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.floating-btn-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-btn-icon i {
    font-size: 16px;
}

.floating-title {
    font-size: 14px;
    font-weight: 700;
}

/* 카카오톡 버튼 */
.kakao-btn {
    background: #FEE500;
    color: #3C1E1E;
    box-shadow: 0 4px 15px rgba(254, 229, 0, 0.4);
}

.kakao-btn:hover {
    box-shadow: 0 6px 25px rgba(254, 229, 0, 0.5);
    color: #3C1E1E;
}

.kakao-btn .floating-btn-icon {
    background: rgba(60, 30, 30, 0.1);
}

/* 원격지원 버튼 */
.remote-btn {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
}

.remote-btn:hover {
    box-shadow: 0 6px 25px rgba(231, 76, 60, 0.5);
}

@media (max-width: 768px) {
    .floating-buttons {
        bottom: 80px;
        right: 16px;
    }

    .floating-btn {
        padding: 10px 14px;
    }

    .floating-btn-icon {
        width: 32px;
        height: 32px;
    }

    .floating-btn-icon i {
        font-size: 14px;
    }

    .floating-title {
        font-size: 12px;
    }
}
