/* ===================================
   GNY Consulting - Professional Styles
   =================================== */

/* Paperlogy Local Font */
@font-face {
    font-family: 'Paperlogy';
    src: url('../font/Paperlogy-4Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Paperlogy';
    src: url('../font/Paperlogy-3Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'Paperlogy';
    src: url('../font/Paperlogy-5Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Paperlogy';
    src: url('../font/Paperlogy-6SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'Paperlogy';
    src: url('../font/Paperlogy-7Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Paperlogy';
    src: url('../font/Paperlogy-9Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

/* CSS Variables */
:root {
    --primary-color: #1a365d;
    --secondary-color: #2563eb;
    --accent-color: #d4af37;
    --point-color: #dc3545;
    --dark-color: #0f172a;
    --light-color: #f8fafc;
    --gray-color: #64748b;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    
    --font-primary: 'Noto Sans KR', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
    
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.15);
}

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

/* Remove all default outlines and focus styles */
*:focus {
    outline: none;
}

/* Remove default button and input borders */
button,
input,
textarea,
select {
    border: none;
    outline: none;
}

/* Add back clean borders for inputs */
input,
textarea,
select {
    border: 1px solid #e2e8f0;
}

/* Clean focus state for all interactive elements */
input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
}

/* Checkbox styling */
input[type="checkbox"] {
    border: 1px solid #ddd;
    cursor: pointer;
}

input[type="checkbox"]:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 86, 179, 0.2);
}

button:focus {
    outline: none;
}

a {
    text-decoration: none;
    outline: none;
}

a:focus {
    outline: none;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.8;
    color: var(--dark-color);
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
    overflow-x: hidden;
    letter-spacing: -0.01em;
}

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

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

ul {
    list-style: none;
}

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

/* Section Styles */
section {
    padding: 120px 0;
}

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

.section-header.center {
    text-align: center;
}

.section-badge {
    display: inline-block;
    padding: 10px 28px;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.08) 0%, rgba(59, 130, 246, 0.12) 100%);
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    border-radius: 50px;
    margin-bottom: 24px;
    font-family: var(--font-secondary);
    text-transform: uppercase;
    border: 1px solid rgba(30, 64, 175, 0.15);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.08);
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 24px;
    color: var(--dark-color);
    letter-spacing: -0.02em;
}

.section-title .highlight {
    color: var(--primary-color);
    position: relative;
}

.section-description {
    font-size: 19px;
    color: var(--gray-color);
    max-width: 680px;
    line-height: 1.8;
    font-weight: 400;
}

.section-header.center .section-description {
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    font-family: var(--font-primary);
}

.btn i {
    font-size: 18px;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(30, 64, 175, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(30, 64, 175, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--dark-color);
    border: 2px solid var(--dark-color);
}

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

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ===================================
   Navigation Header
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header.scrolled {
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.navbar {
    padding: 20px 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.logo-text {
    font-size: 26px;
    font-family: var(--font-secondary);
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    font-weight: 800;
}

.logo-sub {
    font-size: 12px;
    font-family: var(--font-secondary);
    color: var(--gray-color);
    letter-spacing: 3px;
}

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

.nav-cta-btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    margin-left: 10px;
    box-shadow: 0 4px 16px rgba(30, 64, 175, 0.2);
}

.nav-cta-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 24px rgba(30, 64, 175, 0.3);
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--dark-color);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    transition: var(--transition);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: url('https://sspark.genspark.ai/cfimages?u1=0Fq3xoeGvkrLO4inaziJWQPbZ9FJpCYRupDlXHarCx3KuENIwReCbfZJGZEg0KLkKe%2BH3TqNsWPeVxWgzjeM2sBkRbCQESYRzw5k0da2%2FNBhGK8TajIHQ9QYho6mjtmSzedFJY6pj8RnOCVVh7gEzjMK2k6SKvi9xUYdECi0cuQIIQ%3D%3D&u2=Cvvog%2B652g8W%2B7BJ&width=2560') center/cover no-repeat;
    overflow: hidden;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 20px;
}

.hero-title-simple {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.2;
    color: var(--white);
    margin: 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

/* ===================================
   About Section
   =================================== */
.about {
    background: var(--light-color);
}

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

.about-image {
    position: relative;
}

.image-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #1e40af 0%, #0ea5e9 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
    color: rgba(255, 255, 255, 0.3);
}

.about-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--white);
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-badge i {
    font-size: 40px;
    color: var(--accent-color);
}

.about-badge strong {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-secondary);
}

.about-badge span {
    font-size: 14px;
    color: var(--gray-color);
}

.about-text h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.about-text p {
    margin-bottom: 20px;
    color: var(--gray-color);
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.feature-box {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-box i {
    font-size: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.feature-box strong {
    display: block;
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.feature-box p {
    font-size: 14px;
    color: var(--gray-color);
    margin: 0;
}

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

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

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
    transition: var(--transition);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 36px;
    color: var(--white);
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-card > p {
    color: var(--gray-color);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-list {
    margin-bottom: 25px;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--gray-color);
    font-size: 15px;
}

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

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 15px;
}

.service-link:hover {
    gap: 12px;
}

/* ===================================
   Portfolio Section
   =================================== */
.portfolio {
    background: var(--light-color);
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid #e2e8f0;
    background: var(--white);
    color: var(--gray-color);
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.portfolio-item {
    transition: var(--transition);
}

.portfolio-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: var(--white);
}

.portfolio-image .image-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #e0e7ff 0%, #dbeafe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: rgba(30, 64, 175, 0.2);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(30, 64, 175, 0.95) 0%, rgba(30, 64, 175, 0.7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.portfolio-overlay p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.portfolio-link {
    width: 50px;
    height: 50px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: var(--transition);
}

.portfolio-link:hover {
    transform: rotate(90deg);
}


/* ===================================
   Safe Management Service Section
   =================================== */
.safe-service-section {
    background: linear-gradient(135deg, #f0f7ff 0%, #fafbff 50%, #ffffff 100%);
    padding: 120px 0;
}

.safe-service-title {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.safe-service-desc {
    font-size: 21px;
    color: #475569;
    margin-bottom: 60px;
    font-weight: 400;
    line-height: 1.7;
}

.safe-service-info-box {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 60px 50px;
    box-shadow: 0 16px 48px rgba(30, 64, 175, 0.12);
    border: 1px solid rgba(226, 232, 240, 0.6);
    max-width: 960px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

.safe-service-info-box .info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid #e8f1ff;
}

.safe-service-info-box .info-item:last-of-type {
    border-bottom: none;
    margin-bottom: 30px;
}

.info-icon-wrap {
    background: var(--gradient);
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(30, 64, 175, 0.2);
}

.info-icon-wrap i {
    font-size: 28px;
    color: white;
}

.info-text {
    flex: 1;
}

.info-text strong {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.info-text p {
    font-size: 18px;
    color: #475569;
    line-height: 1.75;
    margin: 0;
    font-weight: 400;
}

.highlight-text {
    color: var(--accent-color);
    font-weight: 900;
    font-size: 19px;
}

.highlight-region {
    color: var(--primary-color);
    font-weight: 900;
    font-size: 19px;
}

.info-notice {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 10px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
}

.info-notice i {
    color: #ff9800;
    font-size: 20px;
    flex-shrink: 0;
}

.info-notice span {
    color: #856404;
    font-size: 15px;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    .safe-service-title {
        font-size: 32px;
    }
    
    .safe-service-desc {
        font-size: 18px;
    }
    
    .safe-service-info-box {
        padding: 35px 25px;
    }
    
    .safe-service-info-box .info-item {
        flex-direction: column;
        gap: 15px;
        padding: 20px 0;
    }
    
    .info-icon-wrap {
        width: 50px;
        height: 50px;
    }
    
    .info-icon-wrap i {
        font-size: 24px;
    }
    
    .info-text strong {
        font-size: 18px;
    }
    
    .info-text p {
        font-size: 16px;
    }
    
    .highlight-text,
    .highlight-region {
        font-size: 17px;
    }
}

/* ===================================
   Testimonials Section
   =================================== */
.testimonials {
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
    padding: 120px 0;
    overflow: hidden;
}

.testimonials-slider-wrapper {
    overflow: hidden;
    width: 100%;
    margin-top: 40px;
}

.testimonials-slider {
    display: flex;
    gap: 30px;
    animation: scroll-left 40s linear infinite;
    width: fit-content;
}

.testimonials-slider:hover {
    animation-play-state: paused;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.testimonial-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 48px;
    border-radius: 20px;
    position: relative;
    min-width: 420px;
    max-width: 420px;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid rgba(226, 232, 240, 0.6);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.testimonial-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(30, 64, 175, 0.12);
    background: rgba(255, 255, 255, 1);
    border-color: rgba(30, 64, 175, 0.2);
}

.testimonial-icon {
    font-size: 40px;
    color: var(--primary-color);
    opacity: 0.2;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.9;
    color: #475569;
    margin-bottom: 32px;
    font-style: italic;
    font-weight: 400;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-info strong {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.author-info span {
    font-size: 14px;
    color: var(--gray-color);
}

/* ===================================
   Step by Step Process Section
   =================================== */
.step-process-section {
    padding: 120px 0;
    text-align: center;
    font-family: var(--font-primary);
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.step-process-title {
    font-size: 44px;
    font-weight: 900;
    color: var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.step-process-subtitle {
    font-size: 20px;
    color: #475569;
    margin-bottom: 80px;
    line-height: 1.7;
    font-weight: 400;
}

/* 단계별 컨테이너 */
.step-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

/* 숫자 사이 연결선 */
.step-container::before {
    content: "";
    position: absolute;
    top: 25px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, #0056b3 0%, #0066cc 100%);
    z-index: 0;
}

.step-item {
    flex: 1;
    position: relative;
    z-index: 1;
    padding: 0 15px;
}

/* 숫자 아이콘 스타일 */
.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border: 4px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-weight: 900;
    color: #ffffff;
    font-size: 32px;
    box-shadow: 0 8px 24px rgba(30, 64, 175, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-item:hover .step-number {
    transform: scale(1.15);
    box-shadow: 0 12px 36px rgba(30, 64, 175, 0.4);
}

.step-name {
    font-size: 22px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}

.step-desc {
    font-size: 16px;
    color: #64748b;
    line-height: 1.7;
    word-break: keep-all;
    font-weight: 400;
}

/* 모바일 반응형 디자인 */
@media (max-width: 768px) {
    .step-process-section {
        padding: 60px 0;
    }
    
    .step-process-title {
        font-size: 22px;
        line-height: 1.4;
    }
    
    .step-process-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .step-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .step-container::before {
        display: none; /* 모바일에서는 연결선 제거 */
    }
    
    .step-item {
        width: 100%;
        padding: 0;
    }
    
    .step-number {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
    
    .step-name {
        font-size: 18px;
    }
    
    .step-desc {
        font-size: 14px;
    }
}

/* ===================================
   Success Cases Section
   =================================== */
.success-cases-section {
    background: #f9f9f9;
    padding: 80px 0;
    overflow: hidden;
}

.success-slider-wrapper {
    overflow: hidden;
    width: 100%;
    margin-top: 40px;
}

.success-slider {
    display: flex;
    gap: 20px;
    animation: scroll-success 35s linear infinite;
    width: fit-content;
}

.success-slider:hover {
    animation-play-state: paused;
}

@keyframes scroll-success {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.success-card {
    min-width: 320px;
    max-width: 320px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #eee;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.success-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.success-card strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.success-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ===================================
   Apply Section
   =================================== */
.apply-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: white;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.apply-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.apply-box {
    background: rgba(255, 255, 255, 0.98);
    color: #333;
    padding: 60px;
    border-radius: 28px;
    max-width: 960px;
    margin: 40px auto 0;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 20px;
}

.input-group {
    text-align: left;
}

.input-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 15px;
    color: #333;
}

.input-group input {
    width: 100%;
    padding: 16px 18px;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    box-sizing: border-box;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #fafbfc;
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(30, 64, 175, 0.08);
    background: white;
}

.btn-submit {
    width: 100%;
    background: var(--gradient);
    color: white;
    padding: 20px;
    border: none;
    border-radius: 50px;
    font-size: 19px;
    font-weight: 800;
    margin-top: 30px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(30, 64, 175, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 12px 36px rgba(30, 64, 175, 0.4);
}

.warning-text {
    color: #ff4d4d;
    font-size: 14px;
    margin-top: 15px;
    font-weight: 700;
    text-align: center;
}

/* 반응형 */
@media (max-width: 768px) {
    .success-card {
        min-width: 280px;
        max-width: 280px;
        padding: 25px;
    }
    
    .apply-section {
        padding: 60px 0;
    }
    
    .apply-box {
        padding: 30px 20px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .btn-submit {
        font-size: 16px;
        padding: 14px;
    }
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.footer-logo .logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
}

.footer-logo .logo-sub {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 13px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 15px;
}

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

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

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.footer-contact i {
    color: var(--primary-color);
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--white);
}

/* ===================================
   Scroll to Top Button
   =================================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: var(--gradient);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(30, 64, 175, 0.3);
    z-index: 999;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 12px 36px rgba(30, 64, 175, 0.4);
}

/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 1024px) {
    .section-title {
        font-size: 36px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .trust-card {
        padding: 30px 20px;
    }
    
    .trust-card-title {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-description {
        font-size: 16px;
    }
    
    /* Navigation */
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 20px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    /* Hero */
    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Testimonials Mobile */
    .testimonial-item {
        min-width: 300px;
        max-width: 300px;
        padding: 30px;
    }
    
    .testimonial-text {
        font-size: 15px;
    }
    
    .author-info strong {
        font-size: 16px;
    }
    
    /* Portfolio */
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-filter {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 8px 20px;
        font-size: 14px;
    }
    
    /* Testimonials */
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    /* Form */
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .trust-title-white {
        font-size: 28px;
    }
    
    .trust-desc-white {
        font-size: 15px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .btn {
        padding: 14px 24px;
        font-size: 15px;
    }
    
    .image-placeholder {
        height: 300px;
    }
}

/* ===================================
   Utility Classes
   =================================== */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

/* AOS Animation Support */
[data-aos] {
    pointer-events: auto;
}

/* ===================================
   Custom Styles for 폐업 지원
   =================================== */

/* Government Badge in Hero */
.gov-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.gov-badge i {
    font-size: 18px;
    color: var(--accent-color);
}

/* Trust Section Styles */
.trust-section {
    background-image: url('https://www.genspark.ai/api/files/s/a24rOHFW?cache_control=3600');
    background-position: -50px center;
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-color: #ffffff;
    background-attachment: scroll;
    position: relative;
    padding: 160px 0 120px;
    margin-top: 80px;
    min-height: 650px;
    display: flex;
    align-items: center;
}

.trust-hero-overlay {
    display: none;
}

.trust-section::before {
    display: none;
}

.trust-section .container {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

/* Trust Hero Content Styles */
.trust-hero-content {
    position: relative;
    z-index: 2;
    margin-bottom: 60px;
    padding-top: 0;
    text-align: center;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.trust-cta-btn {
    margin-top: 40px;
    padding: 18px 48px;
    font-size: 19px;
    font-weight: 800;
    box-shadow: 0 12px 32px rgba(30, 64, 175, 0.3);
    border-radius: 50px;
}

.trust-cta-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 48px rgba(30, 64, 175, 0.4);
}

.trust-badge-white {
    background: rgba(255, 255, 255, 0.98);
    color: var(--primary-color);
    border: 2px solid rgba(30, 64, 175, 0.2);
    box-shadow: 0 8px 24px rgba(30, 64, 175, 0.15);
    backdrop-filter: blur(10px);
}

.trust-title-white {
    color: var(--primary-color);
    text-shadow: none;
    margin-bottom: 24px;
    font-size: 56px;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.highlight-white {
    color: var(--primary-color);
}

.trust-desc-white {
    color: #1e293b;
    text-shadow: none;
    font-size: 24px;
    font-weight: 500;
    text-align: center;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.trust-card {
    background: rgba(255, 255, 255, 0.98);
    padding: 28px 22px;
    border-radius: 20px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(10px);
}

.trust-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 48px rgba(30, 64, 175, 0.15);
    border-color: rgba(30, 64, 175, 0.3);
    background: rgba(255, 255, 255, 1);
}

.trust-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 28px;
    color: var(--white);
    box-shadow: 0 8px 24px rgba(30, 64, 175, 0.25);
    transition: var(--transition);
}

.trust-card:hover .trust-icon {
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 12px 32px rgba(30, 64, 175, 0.35);
}

.trust-card-title {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 12px;
    color: var(--primary-color);
    letter-spacing: -0.01em;
}

.trust-card-content {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

.trust-badge {
    display: none;
}

.highlight-box {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    padding: 40px;
    border-radius: 15px;
    border-left: 5px solid var(--primary-color);
}

.highlight-content {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.highlight-content i {
    font-size: 32px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.highlight-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--dark-color);
    margin: 0;
}

.highlight-content strong {
    color: var(--primary-color);
}

.emphasize {
    color: var(--point-color);
    font-weight: 700;
}

/* Service Highlight Badge */
.service-highlight {
    display: inline-block;
    padding: 8px 16px;
    background: var(--accent-color);
    color: var(--dark-color);
    font-size: 13px;
    font-weight: 700;
    border-radius: 50px;
    margin-top: 15px;
}

/* Process Timeline Enhancements */
.process-section {
    background: var(--light-color);
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
}

.step-connector {
    position: absolute;
    left: 40px;
    top: 100%;
    width: 3px;
    height: 40px;
    background: linear-gradient(to bottom, var(--primary-color), transparent);
}

.process-step:last-child .step-connector {
    display: none;
}

.process-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.highlight-item {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: var(--shadow-sm);
}

.highlight-item i {
    font-size: 32px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.highlight-item strong {
    display: block;
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.highlight-item p {
    font-size: 14px;
    color: var(--gray-color);
    line-height: 1.6;
    margin: 0;
}

/* Contact Section Enhancements */
.quick-benefits {
    margin-top: 40px;
    padding: 25px;
    background: var(--light-color);
    border-radius: 12px;
}

.quick-benefits h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.quick-benefits ul {
    list-style: none;
    padding: 0;
}

.quick-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--dark-color);
    font-size: 15px;
}

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

.form-note {
    text-align: center;
    font-size: 13px;
    color: var(--gray-color);
    margin-top: 15px;
}

.form-note i {
    color: var(--primary-color);
    margin-right: 5px;
}

/* Mobile Sticky Phone Button */
.mobile-sticky-phone {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--point-color);
    color: var(--white);
    padding: 18px 0;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 12px;
    z-index: 999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

.mobile-sticky-phone i {
    font-size: 22px;
    animation: ring 1.5s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.9;
    }
}

@keyframes ring {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30% {
        transform: rotate(-10deg);
    }
    20%, 40% {
        transform: rotate(10deg);
    }
}

/* Footer Badge */
.footer-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    font-size: 11px;
}

.footer-badge i {
    color: var(--accent-color);
    font-size: 14px;
}

.footer-disclaimer {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-top: 10px;
}

/* ===================================
   Mobile Responsive Updates
   =================================== */

@media (max-width: 768px) {
    .mobile-sticky-phone {
        display: flex;
    }
    
    .contact {
        padding-bottom: 80px;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .trust-card-title {
        font-size: 20px;
    }
    
    .trust-card-content {
        font-size: 13px;
    }
    
    .trust-card {
        padding: 20px 15px;
    }
    
    .trust-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .process-highlights {
        grid-template-columns: 1fr;
    }
    
    .highlight-box {
        padding: 25px 20px;
    }
    
    .highlight-content {
        flex-direction: column;
        text-align: center;
    }
    
    .gov-badge {
        font-size: 12px;
        padding: 10px 20px;
    }
    
    .trust-section {
        padding: 120px 0 80px;
        background-image: none;
        background: linear-gradient(135deg, #f0f4ff 0%, #ffffff 100%);
    }
    
    .trust-section .container {
        align-items: center;
    }
    
    .trust-hero-content {
        margin-bottom: 60px;
        text-align: center;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .trust-title-white {
        font-size: 36px;
    }
    
    .trust-desc-white {
        font-size: 17px;
    }
    
    .trust-hero-overlay {
        height: 400px;
    }
    
    .nav-cta-btn {
        display: none;
    }
}

@media (min-width: 769px) {
    .mobile-sticky-phone {
        display: none !important;
    }
}

/* ===================================
   One-Stop Page (희망리턴패키지 원스톱폐업지원)
   =================================== */
.page-onestop {
    font-family: 'Paperlogy', 'Noto Sans KR', sans-serif;
    background: #f8faf8;
}
.page-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* TOP Banner (PC · 모바일) */
.top-banner {
    background: linear-gradient(90deg, #1a3d2e 0%, #2d5a45 100%);
    color: #fff;
    padding: 10px 0;
    text-align: center;
}
.top-banner-text {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
}

/* Header */
.site-header {
    background: #fff;
    border-bottom: 1px solid #e8ece8;
    padding: 20px 0;
}
.header-inner {
    display: flex;
    align-items: center;
    gap: 16px;
}
.header-logo {
    height: 48px;
    width: auto;
}
.header-logo-shake {
    animation: logo-shake 3s ease-in-out infinite;
}
@keyframes logo-shake {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-2px) rotate(-0.5deg); }
    75% { transform: translateY(1px) rotate(0.5deg); }
}
.header-title {
    font-family: 'Paperlogy', 'Noto Sans KR', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #1a3d2e;
    margin: 0;
}

/* Hero */
.hero-section {
    background: #fff;
    padding: 48px 0 56px;
}
/* PC: 기존처럼 왼쪽 텍스트+폼 한 덩어리, 오른쪽 이미지 2단 */
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.hero-text {
    grid-column: 1;
}
.hero-image-wrap {
    grid-column: 2;
}
.hero-headline {
    font-family: 'Paperlogy', 'Noto Sans KR', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: #1a3d2e;
    margin: 0 0 12px;
    line-height: 1.3;
}
.hero-sub {
    font-size: 18px;
    color: #2d5a45;
    margin: 0 0 16px;
    font-weight: 600;
}
.hero-sub-mobile {
    display: none;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 12px;
}
.hero-badge-logo {
    height: 32px;
    width: auto;
    object-fit: contain;
}
.hero-badge-text {
    font-size: 13px;
    color: #4a7c59;
}
.hero-desc {
    font-size: 15px;
    color: #475569;
    line-height: 1.75;
    margin: 0 0 28px;
}
.hero-form .form-row {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
}
.hero-form input {
    flex: 1;
    padding: 14px 18px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
}
.hero-form input:focus {
    border-color: #2d5a45;
    outline: none;
}
.btn-cta {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #2d5a45 0%, #4a7c59 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(45, 90, 69, 0.35);
}
.hero-image-wrap {
    position: relative;
}
.hero-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}
.img-disclaimer {
    position: absolute;
    right: 0;
    bottom: 0;
    margin: 0;
    font-size: 11px;
    color: #94a3b8;
    background: rgba(255,255,255,0.9);
    padding: 6px 10px;
    border-radius: 6px;
}

/* Support */
.support-section {
    padding: 56px 0;
    background: #fff;
}
.support-section .section-title {
    font-family: 'Paperlogy', 'Noto Sans KR', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #1a3d2e;
    margin: 0 0 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.notice-tag {
    font-size: 14px;
    font-weight: 600;
    color: #b45309;
    background: #fef3c7;
    padding: 6px 12px;
    border-radius: 8px;
}
.support-card {
    background: #f0f7f2;
    border-radius: 16px;
    padding: 28px 32px;
    border: 1px solid #d1e7dd;
}
.support-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 24px;
}
.support-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #1a3d2e;
}
.support-list i {
    color: #2d5a45;
    font-size: 20px;
    width: 28px;
    text-align: center;
}

/* Testimonials */
.testimonials-section {
    padding: 56px 0;
    background: #f8faf8;
}
.testimonials-section .section-title {
    font-family: 'Paperlogy', 'Noto Sans KR', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #1a3d2e;
    margin: 0 0 28px;
}
.testimonials-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    align-items: start;
}
.testimonial-image-wrap {
    position: relative;
}
.testimonial-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}
.testimonial-image-wrap .img-disclaimer {
    margin-top: 8px;
    position: static;
    font-size: 11px;
    color: #94a3b8;
}
/* 캐러셀: 한 카드가 뷰포트에 꽉 차게 표시되어 잘리지 않음, 카드 크기 JS에서 --carousel-card-width로 설정 */
.carousel-wrap {
    overflow: hidden;
    padding: 0 0;
    position: relative;
}
.carousel-viewport {
    overflow: hidden;
    margin-bottom: 20px;
    max-width: 100%;
    position: relative;
}
.carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}
/* 카드: 뷰포트 100% 너비로 한 장씩 전체 표시, 호버 시 1.05배 확대 + 위로 + 드롭 섀도 */
.testimonial-card {
    flex: 0 0 var(--carousel-card-width, 100%);
    width: var(--carousel-card-width, 100%);
    min-width: var(--carousel-card-width, 100%);
    max-width: var(--carousel-card-width, 100%);
    box-sizing: border-box;
    background: #fff;
    border-radius: 16px;
    padding: 28px 32px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    border: 1px solid #e2e8f0;
}
.testimonial-card:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 20px 48px rgba(0,0,0,0.14), 0 8px 24px rgba(0,0,0,0.08);
}
.testimonial-card h3 {
    font-size: 18px;
    font-weight: 800;
    color: #2d5a45;
    margin: 0 0 12px;
}
.testimonial-card .quote {
    font-size: 15px;
    font-weight: 700;
    color: #1a3d2e;
    margin: 0 0 12px;
    line-height: 1.5;
}
.testimonial-card .consultant,
.testimonial-card .customer {
    font-size: 14px;
    color: #475569;
    line-height: 1.7;
    margin: 0 0 10px;
}
.testimonial-card .customer {
    font-style: italic;
    color: #64748b;
}
.carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.carousel-prev,
.carousel-next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #2d5a45;
    background: #fff;
    color: #2d5a45;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}
.carousel-prev:hover,
.carousel-next:hover {
    background: #2d5a45;
    color: #fff;
}
.carousel-dots {
    display: flex;
    gap: 8px;
}
.carousel-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
}
.carousel-dots .dot.active {
    background: #2d5a45;
    transform: scale(1.2);
}
.cta-small-wrap {
    text-align: center;
    margin-top: 32px;
}
.btn-cta-small {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, #2d5a45 0%, #4a7c59 100%);
    color: #fff;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-cta-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(45, 90, 69, 0.35);
}

/* FAQ - 중앙 정렬 */
.faq-section {
    padding: 56px 0;
    background: #fff;
    text-align: center;
}
.faq-section .section-title {
    font-family: 'Paperlogy', 'Noto Sans KR', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #1a3d2e;
    margin: 0 0 24px;
}
.faq-list {
    max-width: 720px;
    margin: 0 auto;
    text-align: left;
}
.faq-item {
    border-bottom: 1px solid #e2e8f0;
}
.faq-q {
    width: 100%;
    text-align: left;
    padding: 18px 0;
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: inherit;
}
.faq-q::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 12px;
    color: #94a3b8;
    transition: transform 0.3s;
}
.faq-item.open .faq-q::after {
    transform: rotate(180deg);
}
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-item.open .faq-a {
    max-height: 300px;
}
.faq-a p {
    margin: 0 0 16px;
    padding: 0 0 18px;
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
}
.faq-item-more {
    display: none;
}
.faq-list.expanded .faq-item-more {
    display: block;
}
.faq-more-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background: transparent;
    border: 2px solid #2d5a45;
    color: #2d5a45;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s, color 0.2s;
}
.faq-more-btn:hover {
    background: #2d5a45;
    color: #fff;
}

/* Final CTA */
.final-cta-section {
    padding: 56px 0;
    background: linear-gradient(135deg, #1a3d2e 0%, #2d5a45 100%);
    color: #fff;
}
.final-cta-title {
    font-family: 'Paperlogy', 'Noto Sans KR', sans-serif;
    font-size: 28px;
    font-weight: 900;
    text-align: center;
    margin: 0 0 8px;
    line-height: 1.35;
}
.final-cta-sub {
    text-align: center;
    font-size: 17px;
    margin: 0 0 28px;
    opacity: 0.95;
}
.final-form {
    max-width: 420px;
    margin: 0 auto;
}
.final-form-row {
    margin-bottom: 16px;
}
.final-form-row label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
}
.final-form input[type="text"],
.final-form input[type="tel"] {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 10px;
    font-size: 15px;
    background: rgba(255,255,255,0.95);
    font-family: inherit;
}
.final-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    margin: 16px 0 20px;
    cursor: pointer;
}
.final-form .btn-cta {
    background: #fff;
    color: #2d5a45;
}
.final-form .btn-cta:hover {
    background: #f0f7f2;
}
.final-notice {
    text-align: center;
    font-size: 12px;
    margin: 16px 0 0;
    opacity: 0.85;
}

/* Floating - 오른쪽 하단 */
.floating-wrap {
    position: fixed;
    right: 12px;
    bottom: 24px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.floating-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.floating-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    transition: transform 0.2s, box-shadow 0.2s;
}
.floating-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.floating-top {
    background: #64748b;
}
.floating-top:hover {
    background: #475569;
}
.floating-phone {
    background: #2d5a45;
}
.floating-kakao {
    background: #fae100;
    color: #3c1e1e;
}
.floating-text {
    font-size: 10px;
    color: #94a3b8;
    margin: 0;
}

/* Impact words: move + color blink */
.impact-word {
    display: inline-block;
    animation: impact-pulse 2.5s ease-in-out infinite;
    font-weight: 800;
}
.impact-word-light {
    animation: impact-pulse-light 2.5s ease-in-out infinite;
}
@keyframes impact-pulse {
    0%, 100% { transform: scale(1) translateY(0); color: #1a3d2e; }
    25% { transform: scale(1.02) translateY(-1px); color: #2d5a45; }
    50% { transform: scale(1) translateY(0); color: #b45309; }
    75% { transform: scale(1.02) translateY(-1px); color: #1a3d2e; }
}
@keyframes impact-pulse-light {
    0%, 100% { transform: scale(1) translateY(0); color: #fff; text-shadow: 0 0 0 transparent; }
    25% { transform: scale(1.03) translateY(-2px); color: #fef3c7; text-shadow: 0 0 12px rgba(254,243,199,0.6); }
    50% { transform: scale(1) translateY(0); color: #fff; text-shadow: 0 0 8px rgba(255,255,255,0.5); }
    75% { transform: scale(1.03) translateY(-2px); color: #e0f2e9; text-shadow: 0 0 10px rgba(224,242,233,0.5); }
}

/* Footer - 화이트 배경, 진한 텍스트 */
.site-footer {
    background: #ffffff;
    color: #1e293b;
    padding: 48px 0 32px;
    border-top: 1px solid #e2e8f0;
}
.footer-inner {
    text-align: center;
}
.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}
.footer-logo {
    height: 40px;
    width: auto;
    opacity: 0.9;
}
.footer-title {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
}
.footer-desc {
    font-size: 14px;
    color: #475569;
    margin: 0 0 24px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 20px;
}
.footer-links a {
    color: #334155;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: #2d5a45;
}
.footer-copy {
    font-size: 12px;
    color: #64748b;
    margin: 0 0 8px;
}
.footer-copy-small {
    font-size: 11px;
    color: #94a3b8;
    margin: 0;
}

/* One-Stop Responsive - 900px 이하에서도 PC와 동일 2단 유지, 모바일에서만 변경 */
@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }
    .hero-text,
    .hero-image-wrap {
        grid-column: 1;
    }
    .hero-image-wrap {
        order: -1;
    }
    .testimonials-layout {
        grid-template-columns: 1fr;
    }
    .testimonial-image-wrap {
        max-width: 320px;
        margin: 0 auto;
    }
    .support-list {
        grid-template-columns: 1fr;
    }
}

/* ========== 모바일 전용 (768px 이하) ========== */
@media (max-width: 768px) {
    .top-banner {
        padding: 8px 0;
    }
    .top-banner-text {
        font-size: 15px;
    }
    .page-wrap {
        padding: 0 16px;
    }
    .header-inner {
        padding: 12px 0;
        justify-content: center;
    }
    .header-logo {
        height: 40px;
    }
    .header-title {
        font-size: 15px;
        font-weight: 700;
    }

    /* Hero: 모바일 전용 - 순서 헤드 → 서브 → 메인이미지 → 폼, 텍스트 중앙정렬 (PC 레이아웃 유지) */
    .hero-section {
        padding: 20px 0 28px;
        min-height: 0;
    }
    .hero-text {
        display: contents;
    }
    .hero-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-head-block {
        order: 1;
        width: 100%;
        text-align: center;
    }
    .hero-image-wrap {
        order: 2;
        width: 100%;
        margin: 0 0 20px;
    }
    .hero-form-block {
        order: 3;
        width: 100%;
        text-align: center;
    }
    .hero-form-block .hero-form {
        text-align: left;
        max-width: 100%;
    }
    .hero-form-block .form-row {
        justify-content: stretch;
    }
    .hero-form-block .form-row input {
        max-width: 100%;
    }
    .hero-form-block .btn-cta {
        width: 100%;
    }
    .hero-sub-pc {
        display: none;
    }
    .hero-sub-mobile {
        display: block;
        font-size: 22px;
        color: #2d5a45;
        margin: 0 0 20px;
        line-height: 1.5;
        text-align: center;
    }
    .hero-sub-mobile strong {
        font-weight: 700;
    }
    .hero-headline {
        font-size: 22px;
        margin-bottom: 10px;
        text-align: center;
    }
    .hero-badge {
        justify-content: center;
        margin-bottom: 8px;
        text-align: center;
    }
    .hero-badge-logo {
        height: 28px;
    }
    .hero-badge-text {
        font-size: 12px;
    }
    .hero-desc {
        display: none;
    }
    .hero-image {
        border-radius: 12px;
        max-height: 200px;
        object-fit: cover;
    }
    .hero-form input {
        min-height: 60px;
        padding: 16px 18px;
        font-size: 16px;
    }
    .btn-cta {
        min-height: 44px;
        min-width: 44px;
        padding: 16px 24px;
        font-size: 16px;
    }

    /* 첫 화면 85%: 스크롤 한 번으로 지원 항목 도달 가능 */
    .support-section {
        padding: 32px 0;
    }
    .support-section .section-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    .support-card {
        padding: 24px 20px;
    }
    .support-list {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .support-list li {
        font-size: 15px;
        padding: 4px 0;
    }
    .support-list i {
        font-size: 18px;
        width: 24px;
    }

    /* 도움 받은 분들의 이야기: 모바일 2~3개 사례만 카드형, 이미지 후기 아래 */
    .testimonials-section {
        padding: 40px 0;
    }
    .testimonials-section .section-title {
        font-size: 22px;
    }
    .testimonials-layout {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }
    .testimonial-image-wrap {
        order: 2;
        max-width: 100%;
        margin: 0;
    }
    .testimonial-image-wrap .img-disclaimer {
        font-size: 11px;
    }
    .carousel-wrap {
        order: 1;
    }
    .carousel-viewport {
        overflow: visible;
    }
    .carousel-track {
        flex-direction: column;
        transform: none !important;
        gap: 20px;
    }
    .testimonial-card {
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 auto;
        padding: 24px 20px;
    }
    .testimonial-card:nth-child(n+4) {
        display: none !important;
    }
    .carousel-nav {
        display: none;
    }
    .testimonial-card h3 {
        font-size: 16px;
    }
    .testimonial-card .quote,
    .testimonial-card .consultant,
    .testimonial-card .customer {
        font-size: 14px;
    }
    .cta-small-wrap {
        margin-top: 24px;
    }
    .btn-cta-small {
        min-height: 44px;
        padding: 14px 28px;
        font-size: 15px;
    }

    /* FAQ: 모바일 4개 펼침, 더보기로 유도 */
    .faq-section {
        padding: 40px 0;
    }
    .faq-section .section-title {
        font-size: 22px;
    }
    .faq-q {
        padding: 16px 0;
        font-size: 15px;
    }
    .faq-a p {
        font-size: 14px;
    }
    .faq-more-btn {
        min-height: 44px;
        padding: 14px 28px;
    }

    /* 최종 CTA: 30초 문구, 입력 60px, 버튼 44px */
    .final-cta-section {
        padding: 40px 0;
    }
    .final-cta-title {
        font-size: 22px;
    }
    .final-cta-sub {
        font-size: 16px;
        margin-bottom: 24px;
    }
    .final-form input[type="text"],
    .final-form input[type="tel"] {
        min-height: 60px;
        padding: 16px 18px;
        font-size: 16px;
    }
    .final-form .btn-cta {
        min-height: 44px;
        min-width: 44px;
        padding: 16px 24px;
    }
    .final-notice {
        font-size: 11px;
    }

    /* 플로팅: 텍스트 위치 유지, 전화·카카오·TOP 아이콘만 더 오른쪽 */
    .floating-wrap {
        right: 8px;
        bottom: 16px;
    }
    .floating-buttons {
        align-self: flex-end;
    }
    .floating-btn {
        width: 48px;
        height: 48px;
        min-width: 48px;
        min-height: 48px;
    }
    .floating-text {
        font-size: 9px;
    }
}

@media (max-width: 600px) {
    .page-wrap {
        padding: 0 16px;
    }
    .header-title {
        font-size: 14px;
    }
    .hero-headline {
        font-size: 20px;
    }
    .hero-form .form-row {
        flex-direction: column;
    }
    .footer-brand {
        flex-direction: column;
    }
    .footer-links {
        flex-direction: column;
    }
}
