/* ===================================
   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;
    overflow-x: hidden;
    max-width: 100%;
    -webkit-text-size-adjust: 100%;
}
body {
    font-family: var(--font-primary);
    font-size: 22px;
    line-height: 1.7;
    color: var(--dark-color);
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
    overflow-x: hidden;
    max-width: 100%;
    position: relative;
    letter-spacing: -0.01em;
    -webkit-overflow-scrolling: touch;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}
/* 카카오톡 등 인앱 브라우저 가로 넘침 방지 */
.page-onestop {
    overflow-x: hidden;
    max-width: 100%;
}

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;
    overflow-x: hidden;
    max-width: 100%;
}
.page-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

/* Header: PC 네비 우측, 칸 줄임 */
.site-header {
    background: #fff;
    border-bottom: 1px solid #e8ece8;
    padding: 12px 0;
    position: relative;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.header-row-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    gap: 24px;
}
.header-logo-link {
    display: block;
}
.header-title-mobile {
    display: none;
    font-size: 13px;
    font-weight: 700;
    color: #1a3d2e;
    line-height: 1.3;
    max-width: 140px;
}
.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); }
}
/* PC: 우측 섹션 네비 */
.header-nav-pc {
    display: flex;
    align-items: center;
    gap: 28px;
}
.header-nav-pc a {
    font-size: 16px;
    font-weight: 600;
    color: #1a3d2e;
    text-decoration: none;
    transition: color 0.2s;
}
.header-nav-pc a:hover {
    color: #2d5a45;
}
.header-menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    color: #1a3d2e;
    font-size: 20px;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
}
.header-menu-btn:hover {
    background: #f0f7f2;
    color: #2d5a45;
}
/* 모바일 슬라이드 메뉴: 오른쪽 → 왼쪽 */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.mobile-nav-overlay.is-open {
    display: block;
    opacity: 1;
}
.mobile-nav-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    max-width: 85vw;
    height: 100%;
    background: #fff;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
    z-index: 1001;
    padding: 24px 20px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}
.mobile-nav-panel.is-open {
    transform: translateX(0);
}
.mobile-nav-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    color: #1a3d2e;
    font-size: 20px;
    cursor: pointer;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.mobile-nav-close:hover {
    background: #f0f7f2;
}
.mobile-nav-links {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    text-align: center;
}
.mobile-nav-links a {
    display: block;
    padding: 14px 20px;
    font-size: 17px;
    font-weight: 600;
    color: #1a3d2e;
    text-decoration: none;
    width: 100%;
    border-radius: 10px;
    transition: background 0.2s, color 0.2s;
}
.mobile-nav-links a:hover {
    background: #f0f7f2;
    color: #2d5a45;
}
.mobile-nav-footer {
    padding-top: 24px;
    text-align: center;
}
.mobile-nav-logo {
    max-width: 160px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Hero: 배경 이미지 + 헤드라인·서브 강조 */
.hero-section {
    background: #fff;
    padding: 48px 0 56px;
    overflow-x: hidden;
    max-width: 100%;
}
.hero-section-bg {
    position: relative;
    min-height: 800px;
    padding: 48px 0 56px;
    display: flex;
    align-items: center;
    overflow-x: hidden;
    max-width: 100%;
}
.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    background-color: #1e293b;
    background-image: url('../main.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
/* PC: 배경 이미지 디스클레이머 삭제 반영 */
.hero-section-bg .hero-disclaimer {
    display: none !important;
}
.hero-section-bg .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(105deg, rgba(15, 23, 42, 0.88) 0%, rgba(30, 41, 59, 0.6) 45%, rgba(51, 65, 85, 0.35) 100%);
    pointer-events: none;
}
.hero-section-bg .hero-content-wrap {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    overflow-x: hidden;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-section-bg .hero-inner {
    margin: 0 auto;
    max-width: 560px;
    width: 100%;
    box-sizing: border-box;
}
/* 히어로 안내 문구: 버튼 아래에 고정, 잘 보이게 */
.hero-section-bg .hero-disclaimer {
    margin: 20px 0 0;
    padding: 10px 14px;
    font-size: 12px;
    color: #fff;
    text-align: center;
    line-height: 1.5;
    background: rgba(0,0,0,0.4);
    border-radius: 8px;
}

/* 2번째 섹션(원스톱 폐업 지원 항목) 하단 중앙 스크롤 유도 */
.hero-scroll-hint,
.support-scroll-hint {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-decoration: none;
    z-index: 2;
    animation: scroll-hint-bounce 2s ease-in-out infinite;
}
.hero-scroll-hint {
    color: rgba(255, 255, 255, 0.9);
}
.hero-scroll-hint:hover {
    color: #fff;
}
.support-scroll-hint {
    color: rgba(26, 61, 46, 0.85);
}
.support-scroll-hint:hover {
    color: #1a3d2e;
}
.hero-scroll-hint i,
.support-scroll-hint i {
    display: block;
}
@keyframes scroll-hint-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(8px); opacity: 0.85; }
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
    max-width: 560px;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}
.hero-text {
    grid-column: 1;
}
.hero-image-frame {
    display: none;
}
.hero-head-block {
    position: relative;
    padding: 20px 24px 24px;
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow-wrap: break-word;
    word-wrap: break-word;
}
.hero-head-block-no-box {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    padding: 12px 0 16px;
}
.hero-headline {
    font-family: 'Paperlogy', 'Noto Sans KR', sans-serif;
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 900;
    color: #ffffff;
    margin: 0 0 12px;
    line-height: 1.35;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5), 0 4px 12px rgba(0,0,0,0.4), 0 6px 24px rgba(0,0,0,0.35);
}
@media (min-width: 1100px) {
    .hero-headline-pc {
        white-space: normal;
    }
}
.hero-headline-mobile {
    display: none;
}
.hero-sub {
    font-size: 26px;
    color: #ffffff;
    margin: 0 0 20px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: -0.01em;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5), 0 2px 10px rgba(0,0,0,0.4);
}
.hero-sub-mobile {
    display: none;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 14px;
    max-width: 100%;
    min-width: 0;
    flex-wrap: wrap;
}
/* 히어로 배지 로고: 사파리 등에서 잘 보이도록 배경 처리 */
.hero-badge-logo {
    height: 36px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    
    padding: 6px 10px;
    border-radius: 8px;
    box-sizing: content-box;
}
.hero-badge-text {
    font-size: 18px;
    color: #ffffff;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
    line-height: 1.5;
}
.hero-detail-pc {
    margin-top: 8px;
}
/* 히어로 하단 공식 지원 사업 띠 */
.hero-official-strip {
    width: 100%;
    background: #fff;
    border-top: 1px solid #e2e8f0;
    padding: 16px 20px;
    box-sizing: border-box;
}
.hero-official-strip-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.hero-official-strip-logo {
    width: 40px;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
}
.hero-official-strip-text {
    margin: 0;
    font-size: 15px;
    color: #475569;
    line-height: 1.55;
    text-align: center;
    font-weight: 600;
}
/* 지원금 문구 영역: 배경으로 이미지와 분리, 가독성·행간 개선 */
.hero-desc-wrap {
    padding: 20px 24px 24px;
    margin: 0 0 28px;
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.62);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    overflow-wrap: break-word;
    word-wrap: break-word;
    max-width: 100%;
    box-sizing: border-box;
}
.hero-desc-wrap-no-box {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    padding: 12px 0 20px;
    margin-bottom: 24px;
}
.hero-desc {
    font-size: 22px;
    color: #ffffff;
    line-height: 1.85;
    margin: 0;
    letter-spacing: -0.01em;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5), 0 2px 10px rgba(0,0,0,0.45);
}
.hero-desc-line1 {
    font-size: clamp(22px, 2.5vw, 36px);
    font-weight: 800;
    line-height: 1.5;
    margin: 0 0 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    text-shadow: 0 2px 4px rgba(0,0,0,0.5), 0 4px 12px rgba(0,0,0,0.4);
}
.hero-desc-line2 {
    margin: 0;
    font-size: clamp(18px, 1.8vw, 26px);
}
.hero-check {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    margin: 12px 0 16px 0;
    font-size: 14px;
    color: #fff;
    cursor: pointer;
    width: fit-content;
    max-width: 100%;
}
.hero-check input[type="checkbox"] {
    margin: 0;
    padding: 0;
    flex-shrink: 0;
}
.hero-form {
    text-align: left;
}
.hero-form .form-row {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    min-width: 0;
}
.hero-form input {
    flex: 1;
    min-width: 0;
    padding: 18px 22px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    font-size: 19px;
    font-family: inherit;
    box-sizing: border-box;
}
.hero-form input:focus {
    border-color: #2d5a45;
    outline: none;
}
.btn-cta {
    width: 100%;
    padding: 20px 28px;
    background: linear-gradient(135deg, #2d5a45 0%, #4a7c59 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 22px;
    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);
}
.img-disclaimer {
    position: absolute;
    right: 0;
    bottom: 0;
    margin: 0;
    font-size: 12px;
    color: #94a3b8;
    background: rgba(255,255,255,0.9);
    padding: 6px 10px;
    border-radius: 6px;
}

/* Support: 카드 4개 - 2번째 메인, 눈에 확 띄게 크게 */
.support-section {
    position: relative;
    padding: 48px 0 100px;
    min-height: 50vh;
    background: linear-gradient(180deg, #f0faf4 0%, #ffffff 100%);
}
.support-section .section-title {
    font-family: 'Paperlogy', 'Noto Sans KR', sans-serif;
    font-size: 56px;
    font-weight: 900;
    color: #1a3d2e;
    margin: 0 0 48px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    letter-spacing: -0.02em;
    text-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.notice-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 900;
    color: #b45309;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(180, 83, 9, 0.25), 0 0 0 2px rgba(245, 158, 11, 0.4);
    animation: notice-pulse-color 2s ease-in-out infinite;
}
.notice-tag:hover {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 50%, #b91c1c 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4), 0 0 0 2px rgba(185, 28, 28, 0.5) !important;
    animation: none !important;
    transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}
.notice-tag:hover i {
    color: #ffffff !important;
}
.notice-tag i {
    font-size: 24px;
    margin-right: 4px;
    transition: color 0.3s ease;
}
@keyframes notice-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 16px rgba(180, 83, 9, 0.25), 0 0 0 2px rgba(245, 158, 11, 0.4); }
    50% { transform: scale(1.03); box-shadow: 0 6px 24px rgba(180, 83, 9, 0.35), 0 0 0 3px rgba(245, 158, 11, 0.5); }
}
/* 움직임 유지: 작을 때 노란색, 커질 때 빨간색 */
@keyframes notice-pulse-color {
    0%, 100% {
        transform: scale(1);
        background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
        color: #b45309;
        box-shadow: 0 4px 16px rgba(180, 83, 9, 0.25), 0 0 0 2px rgba(245, 158, 11, 0.4);
    }
    50% {
        transform: scale(1.03);
        background: linear-gradient(135deg, #ef4444 0%, #dc2626 50%, #b91c1c 100%);
        color: #ffffff;
        box-shadow: 0 6px 24px rgba(220, 38, 38, 0.4), 0 0 0 3px rgba(185, 28, 28, 0.5);
    }
}
.support-mobile-card {
    display: none;
}
.support-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: stretch;
}
.support-card-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 320px;
    background: #fff;
    border-radius: 24px;
    padding: 52px 40px;
    border: 3px solid #b8ddc8;
    text-align: center;
    transition: transform 0.35s ease-out, box-shadow 0.35s ease-out, border-color 0.35s ease-out;
    box-shadow: 0 8px 32px rgba(45, 90, 69, 0.12);
}
.support-card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #2d5a45 0%, #1a3d2e 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.12em;
    padding: 8px 20px;
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(26, 61, 46, 0.4);
    z-index: 1;
}
.support-card-trust {
    position: absolute;
    right: 20px;
    bottom: 20px;
    font-size: 28px;
    color: #2d5a45;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}
.support-card-item:hover,
.support-card-item.card-active {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 48px rgba(45, 90, 69, 0.22);
    border: 4px solid #2d5a45;
}
.support-card-item:hover .support-card-trust,
.support-card-item.card-active .support-card-trust {
    opacity: 1;
    transform: scale(1);
}
.support-card-icon {
    width: 104px;
    height: 104px;
    margin: 0 auto 28px;
    background: linear-gradient(135deg, #2d5a45 0%, #4a7c59 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 48px;
    box-shadow: 0 8px 24px rgba(45, 90, 69, 0.3);
}
.support-card-title {
    font-size: 38px;
    font-weight: 900;
    color: #1a3d2e;
    margin: 0 0 14px;
    white-space: nowrap;
    letter-spacing: -0.02em;
}
.support-card-desc {
    font-size: 26px;
    color: #2d5a45;
    margin: 0;
    font-weight: 700;
    line-height: 1.4;
}

/* Testimonials - 단순 구조, 스크롤 없음, 카드 전체 보이게 */
.testimonials-section {
    padding: 80px 0 100px;
    background: #fafbfa;
    position: relative;
    overflow: hidden;
}
.testimonials-section .section-title {
    font-family: 'Paperlogy', 'Noto Sans KR', sans-serif;
    font-size: 38px;
    font-weight: 800;
    color: #1a3d2e;
    margin: 0 0 48px;
}
.testimonials-layout {
    display: block;
    max-width: 100%;
}
/* PC: 왼쪽 이미지 + 오른쪽 캐러셀 2열 */
.testimonials-pc {
    display: grid;
    grid-template-columns: minmax(260px, 0.35fr) minmax(420px, 1fr);
    gap: 32px;
    align-items: start;
    max-width: 100%;
}
.testimonials-pc-image {
    position: sticky;
    top: 24px;
    max-width: 320px;
}
.testimonials-pc-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
    display: block;
}
.testimonials-pc-disclaimer {
    margin: 12px 0 0;
    font-size: 13px;
    color: #64748b;
    text-align: left;
    position: static;
}
/* 캐러셀: 단순 overflow hidden, 충분한 패딩으로 잘림 방지 */
.carousel-wrap {
    overflow: hidden;
    padding: 40px 0 60px;
    position: relative;
}
.carousel-viewport {
    overflow: hidden;
    margin-bottom: 32px;
    max-width: 100%;
    padding: 24px;
    position: relative;
}
/* PC 2열 레이아웃일 때: 오른쪽 카드가 통째로 보이도록 뷰포트 = 카드 영역 */
.testimonials-pc .carousel-wrap {
    min-width: 0;
}
.testimonials-pc .carousel-viewport {
    padding: 16px 0;
}
.carousel-track {
    display: flex;
    gap: 28px;
    transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform;
}
/* 카드: 기본 - 밝고 선명하게 */
.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;
    position: relative;
    background: #fff;
    border-radius: 18px;
    padding: 32px 34px;
    border: 2px solid #e2e8f0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.45s ease,
                opacity 0.45s ease,
                border-color 0.3s ease;
    transform: scale(1);
    opacity: 1;
}
/* 중앙 카드도 동일하게 선명, 호버 시에만 강조 */
.testimonial-card.carousel-card-center {
    transform: scale(1);
    opacity: 1;
    border: 2px solid #e2e8f0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    z-index: 1;
}
.testimonial-card:hover {
    transform: scale(1.02) translateY(-8px);
    opacity: 1;
    border: 3px solid #2d5a45;
    box-shadow: 
        0 12px 32px rgba(45, 90, 69, 0.2),
        0 24px 56px rgba(45, 90, 69, 0.14);
    z-index: 3;
}
.testimonial-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: #2d5a45;
    margin: 0 0 14px;
}
.testimonial-card .quote {
    font-size: 18px;
    font-weight: 700;
    color: #1a3d2e;
    margin: 0 0 14px;
    line-height: 1.55;
}
.testimonial-card .consultant,
.testimonial-card .customer {
    font-size: 16px;
    color: #475569;
    line-height: 1.75;
    margin: 0 0 12px;
}
.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: 48px;
}
.cta-small-wrap .btn-cta-small {
    display: block;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 20px 28px;
    font-size: 22px;
    font-weight: 700;
    min-height: 0;
    line-height: 1.25;
}
.testimonial-image-mobile {
    display: none;
}

/* 모바일 전용 Testimonials 아코디언 */
.testimonials-accordion-mobile {
    display: none;
}
.testimonial-accordion-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    overflow: hidden;
}
.testimonial-accordion-q {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    background: #fff;
    border: none;
    font-size: 15px;
    font-weight: 700;
    color: #1a3d2e;
    text-align: left;
    cursor: pointer;
}
.testimonial-accordion-q .fa-quote-left {
    color: #2d5a45;
    font-size: 14px;
}
.testimonial-accordion-q span {
    flex: 1;
}
.testimonial-accordion-q .accordion-arrow {
    color: #94a3b8;
    font-size: 12px;
    transition: transform 0.3s ease;
}
.testimonial-accordion-item.open .accordion-arrow {
    transform: rotate(180deg);
}
.testimonial-accordion-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 18px;
    background: #f8faf9;
}
.testimonial-accordion-item.open .testimonial-accordion-a {
    max-height: 600px;
    padding: 16px 18px;
}
.testimonial-accordion-a .quote {
    font-size: 15px;
    font-weight: 700;
    color: #2d5a45;
    margin: 0 0 14px;
    line-height: 1.5;
    padding-left: 12px;
    border-left: 3px solid #2d5a45;
}
.testimonial-accordion-a .consultant {
    font-size: 13px;
    color: #475569;
    line-height: 1.65;
    margin: 0 0 12px;
}
.testimonial-accordion-a .consultant strong {
    color: #1a3d2e;
    font-weight: 700;
}
.testimonial-accordion-a .customer {
    font-size: 13px;
    color: #64748b;
    line-height: 1.65;
    margin: 0;
    font-style: italic;
    background: #fff;
    padding: 12px;
    border-radius: 8px;
}
.testimonial-accordion-a .customer strong {
    color: #475569;
    font-weight: 600;
    font-style: normal;
}
.testimonial-accordion-a .detail {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}
.testimonials-more-link {
    display: block;
    text-align: center;
    padding: 14px;
    font-size: 15px;
    font-weight: 600;
    color: #2d5a45;
    text-decoration: none;
}
.testimonials-more-link:hover {
    text-decoration: underline;
}
.testimonials-cta-mobile {
    display: none;
    text-align: center;
    margin-top: 20px;
}
.testimonials-cta-mobile .btn-cta-small {
    display: inline-block;
    padding: 14px 28px;
    font-size: 16px;
}
.btn-cta-small {
    display: inline-block;
    padding: 18px 48px;
    font-size: 18px;
    font-weight: 800;
    min-height: 56px;
    background: linear-gradient(135deg, #2d5a45 0%, #4a7c59 100%);
    color: #fff;
    border-radius: 10px;
    font-size: 18px;
    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: 38px;
    font-weight: 800;
    color: #1a3d2e;
    margin: 0 0 28px;
}
.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: 22px 0;
    font-size: 22px;
    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.35s ease;
}
.faq-item.open .faq-a {
    max-height: 500px;
}
.faq-a p {
    margin: 0 0 18px;
    padding: 0 0 20px;
    font-size: 20px;
    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;
}
.faq-all-link {
    display: none;
    margin-top: 12px;
    font-size: 15px;
    font-weight: 600;
    color: #2d5a45;
    text-decoration: underline;
    text-align: center;
}
.faq-all-link:hover {
    color: #1a3d2e;
}

/* 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: 40px;
    font-weight: 900;
    text-align: center;
    margin: 0 0 12px;
    line-height: 1.35;
}
.final-cta-sub {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 28px;
    opacity: 0.98;
}
.final-cta-sub-mobile {
    display: none;
}
.final-cta-sub-note {
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    margin: 8px 0 28px;
    opacity: 0.92;
}
.final-notice-mobile {
    display: none;
}
/* 마지막 폼 0원·30초 애니메이션 */
.final-anim-0,
.final-anim-30 {
    display: inline-block;
    animation: final-highlight 2.2s ease-in-out infinite;
}
@keyframes final-highlight {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.08); 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: 16px 20px;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 10px;
    font-size: 18px;
    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;
}
.final-checkbox .link-detail {
    margin-left: 6px;
    font-size: 1em;
    font-weight: 600;
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 3px;
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.final-checkbox .link-detail:hover {
    color: #ffffff;
    opacity: 0.9;
    cursor: pointer;
}
.final-form .btn-cta {
    background: #fff;
    color: #2d5a45;
}
.final-form .btn-cta:hover {
    background: #f0f7f2;
}
.final-notice {
    text-align: center;
    font-size: 15px;
    margin: 12px 0 0;
    opacity: 0.95;
    line-height: 1.6;
}
.final-notice-region {
    font-weight: 600;
    margin-top: 20px;
}
.final-notice-caution {
    font-size: 13px;
    opacity: 0.9;
    margin-top: 6px;
}

/* Floating - 화면 세로 중간, 가로 오른쪽 (안내 문구와 겹치지 않음), 아이콘 크게 */
.floating-wrap {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.floating-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.floating-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    transition: transform 0.2s, box-shadow 0.2s;
    font-size: 26px;
}
.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.floating-top {
    background: #64748b;
    font-size: 22px;
}
.floating-top:hover {
    background: #475569;
}
.floating-phone {
    background: #2d5a45;
    font-size: 28px;
}
.floating-kakao {
    background: transparent;
    padding: 0;
    overflow: hidden;
    box-shadow: none;
}
.floating-kakao:hover {
    background: transparent;
}
.floating-kakao-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Impact words: move + color blink */
.impact-word {
    display: inline-block;
    animation: impact-pulse 2.5s ease-in-out infinite;
    font-weight: 800;
}
/* 히어로 배경 위에서는 항상 밝은 색으로 가독성 확보 */
.hero-section-bg .hero-headline .impact-word,
.hero-section-bg .hero-sub .impact-word,
.hero-section-bg .hero-desc .impact-word {
    color: #fef9e7;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5), 0 2px 12px rgba(0,0,0,0.4);
    animation: impact-pulse-hero 2.5s ease-in-out infinite;
}
@keyframes impact-pulse-hero {
    0%, 100% { transform: scale(1) translateY(0); color: #ffffff; }
    50% { transform: scale(1.03) translateY(-1px); color: #fef9e7; }
}
.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: 17px;
    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: 17px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: #2d5a45;
}
.footer-company {
    margin: 0 0 12px;
    padding: 0;
    font-size: 10px;
    line-height: 1.5;
    color: #94a3b8;
    font-weight: 400;
    opacity: 0.65;
}
.footer-company p {
    margin: 0 0 3px;
    font-size: 10px;
    color: #94a3b8;
    line-height: 1.5;
    font-weight: 400;
}
.footer-company p:last-child {
    margin-bottom: 0;
}
.footer-copy {
    font-size: 10px;
    color: #94a3b8;
    margin: 0 0 4px;
    opacity: 0.65;
}
.footer-copy-small {
    font-size: 10px;
    color: #cbd5e1;
    margin: 0;
    opacity: 0.6;
}
.hero-check .link-detail {
    margin-left: 6px;
    font-size: 0.95em;
    font-weight: 600;
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 3px;
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}
.hero-check .link-detail:hover {
    color: #ffffff;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
    opacity: 0.95;
}
.footer-legal-links {
    margin: 0 0 4px;
    font-size: 10px;
    opacity: 0.65;
}
.footer-legal {
    color: #94a3b8;
    text-decoration: underline;
}
.footer-legal:hover {
    color: #64748b;
}
.footer-legal-sep {
    margin: 0 6px;
    color: #94a3b8;
}

/* 개인정보/이용약관 모달 */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}
.modal-overlay.is-open {
    opacity: 1;
    visibility: visible;
}
.modal-box {
    position: relative;
    background: #fff;
    border-radius: 16px;
    max-width: 560px;
    width: 100%;
    max-height: 85vh;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
    transform: scale(0.95);
    transition: transform 0.25s ease;
}
.modal-overlay.is-open .modal-box {
    transform: scale(1);
}
.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: none;
    background: #f1f5f9;
    color: #475569;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background 0.2s, color 0.2s;
}
.modal-close:hover {
    background: #e2e8f0;
    color: #1e293b;
}
.modal-title {
    margin: 0;
    padding: 24px 24px 12px;
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    border-bottom: 1px solid #e2e8f0;
}
.modal-body {
    padding: 20px 24px 24px;
    overflow-y: auto;
    max-height: calc(85vh - 100px);
}
.modal-body h3 {
    margin: 20px 0 8px;
    font-size: 16px;
    color: #334155;
}
.modal-body h4 {
    margin: 16px 0 6px;
    font-size: 14px;
    color: #475569;
}
.modal-body p, .modal-body ul {
    margin: 0 0 12px;
    font-size: 14px;
    line-height: 1.65;
    color: #475569;
}
.modal-body ul {
    padding-left: 20px;
}
.modal-body li {
    margin-bottom: 6px;
}
.modal-content-panel[hidden] {
    display: none !important;
}

/*
========== PC 히어로 이전 디자인 (수정 전 버전 - 보관용 주석) ==========
- 배경: hero-bg-image + hero-overlay 표시 (display:none 없음)
- 레이아웃: 단일 컬럼 중앙, .hero-inner width 560px, margin auto
- hero-content-wrap: display block, padding 0 24px
- 폼: 이름/전화 .form-row, .hero-check(개인정보+자세히보기), .btn-cta 모두 표시
- 헤드라인: .hero-headline-pc transform translateX(-175px)
- 부제: .hero-sub-pc transform translateX(-108px), font-size 38px
- 설명: .hero-desc-wrap 표시, .hero-desc-line1 translateX(-188px) font-size 52px,
  .hero-desc-line2 translateX(-88px) white-space nowrap
- min-height: 720px (section.hero-section-bg#hero)
- 오른쪽 액자(hero-image-frame) 없음
- 전체 CSS 복원용: css/hero-pc-previous-backup.css 참고
========== 이전 디자인 주석 끝 ========== */

/* ========== PC 히어로 (769px 이상): 왼쪽 텍스트 + 오른쪽 액자 이미지 ========== */
@media (min-width: 769px) {
    .hero-section-bg {
        --hero-pc-base: clamp(36px, 3.6vw, 52px);
        min-height: 560px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
        background: #eef0f3 !important;
        padding: 48px 0 0 !important;
        overflow: visible !important;
    }
    .hero-section-bg .hero-bg-image,
    .hero-section-bg .hero-overlay {
        display: none !important;
    }
    .hero-section-bg .hero-content-wrap {
        display: block !important;
        width: 100% !important;
        max-width: 1200px !important;
        margin: 0 auto !important;
        padding: 0 40px 48px !important;
        box-sizing: border-box !important;
        overflow: visible !important;
        flex: 1 0 auto;
    }
    .hero-section-bg .hero-inner {
        display: grid !important;
        grid-template-columns: 1fr 520px !important;
        gap: 56px !important;
        align-items: center !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
        overflow: visible !important;
    }
    .hero-section-bg .hero-text {
        width: 100% !important;
        max-width: 100% !important;
    }
    .hero-section-bg .hero-head-block,
    .hero-section-bg .hero-form-block {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
    }
    .hero-section-bg .hero-head-block .hero-headline.hero-headline-pc {
        color: #1e293b !important;
        text-align: left;
        transform: none;
        white-space: normal !important;
        font-size: var(--hero-pc-base) !important;
        font-weight: 800 !important;
        text-shadow: none !important;
        line-height: 1.2;
        display: flex !important;
        flex-direction: column !important;
        gap: 0.12em !important;
        margin: 0 0 16px !important;
    }
    .hero-headline-pc .hero-headline-line1,
    .hero-headline-pc .hero-headline-line2 {
        display: block;
        font-size: 1em;
        font-weight: 800;
        color: #1e293b;
        letter-spacing: -0.02em;
    }
    .hero-headline-pc .hero-headline-accent {
        color: #ea580c !important;
        font-weight: 900 !important;
        font-size: 1.08em;
    }
    .hero-section-bg .hero-head-block .hero-sub-pc:not(.hero-detail-pc) {
        color: #64748b !important;
        transform: none;
        font-size: calc(var(--hero-pc-base) * 0.75) !important;
        white-space: normal !important;
        text-shadow: none !important;
        font-weight: 600 !important;
        line-height: 1.45 !important;
        margin: 0 0 12px !important;
    }
    .hero-section-bg .hero-head-block .hero-detail-pc {
        font-size: calc(var(--hero-pc-base) * 0.45) !important;
        line-height: 1.55 !important;
        color: #94a3b8 !important;
        white-space: normal !important;
        text-shadow: none !important;
        font-weight: 500 !important;
        margin: 0 0 20px !important;
    }
    .hero-desc-pc-only {
        display: none !important;
    }
    .hero-section-bg .hero-desc-wrap {
        display: none !important;
        margin-bottom: 0 !important;
    }
    .hero-section-bg .hero-form-block .form-row,
    .hero-section-bg .hero-form-block .hero-check {
        display: none !important;
    }
    .hero-section-bg .hero-form-block .hero-form {
        display: block !important;
        width: 100% !important;
        max-width: 780px !important;
    }
    .hero-section-bg .hero-form-block .btn-cta {
        width: 100% !important;
        margin: 0 !important;
        background: linear-gradient(180deg, #fb923c 0%, #ea580c 100%) !important;
        color: #ffffff !important;
        border: none !important;
        border-radius: 14px !important;
        box-shadow: 0 10px 28px rgba(234, 88, 12, 0.35) !important;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    }
    .hero-section-bg .hero-form-block .btn-cta:hover {
        background: linear-gradient(180deg, #fdba74 0%, #f97316 100%) !important;
        color: #ffffff !important;
        box-shadow: 0 12px 32px rgba(234, 88, 12, 0.42) !important;
    }
    .hero-official-strip-text {
        font-size: calc(var(--hero-pc-base) * 0.575) !important;
        color: #1e293b !important;
        font-weight: 800 !important;
        letter-spacing: -0.02em;
    }
    .hero-image-frame {
        display: block !important;
        width: 100% !important;
        min-width: 0;
        border: 14px solid #fff;
        border-radius: 20px;
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.14), 0 10px 30px rgba(0, 0, 0, 0.08);
        overflow: hidden;
        background: #fff;
    }
    .hero-image-frame img {
        display: block;
        width: 100%;
        height: auto;
        vertical-align: top;
        object-fit: cover;
    }
    .hero-sub-pc:not(.hero-detail-pc) {
        white-space: normal;
        letter-spacing: -0.02em;
    }
    .hero-detail-pc {
        white-space: normal;
    }
    .support-section {
        padding-top: 24px;
        padding-bottom: 100px;
        min-height: 50vh;
    }
}

/* One-Stop Responsive - 900px 이하 */
@media (max-width: 900px) {
    .hero-headline {
        font-size: 32px;
    }
    .hero-sub {
        font-size: 20px;
    }
    .testimonials-layout {
        grid-template-columns: 1fr;
    }
    .testimonial-image-wrap {
        max-width: 320px;
        margin: 0 auto;
    }
    .support-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========== 모바일 전용 (768px 이하) ========== */
@media (max-width: 768px) {
    .page-wrap {
        padding: 0 16px;
    }
    .header-inner {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 10px 0;
        gap: 6px;
        width: 100%;
    }
    .header-row-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
    .header-title-mobile {
        display: block;
        font-size: 19px;
        font-weight: 800;
        color: #1a3d2e;
        text-align: center;
        width: 100%;
        max-width: none;
        white-space: nowrap;
        letter-spacing: -0.02em;
        margin: 0;
        padding: 0;
    }
    .header-nav-pc {
        display: none;
    }
    .header-menu-btn-mobile {
        display: flex;
    }
    .header-logo {
        height: 36px;
    }

    /* ========== 모바일 히어로: 세로·가로 중앙 + 약간 아래 배치, 다음 섹션 일부 노출 ========== */
    .hero-section {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        overflow-y: visible !important;
        box-sizing: border-box;
        position: relative;
        padding: 0 !important;
    }
    .hero-section-bg {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        overflow-y: visible !important; /* translateY/CTA가 세로로 잘리지 않도록 */
        box-sizing: border-box;
        display: flex !important;
        flex-direction: column !important;
        min-height: min(46vh, 360px) !important;
        padding: 4px 0 4px !important;
    }
    .hero-headline-pc {
        display: none !important;
    }
    .hero-headline-mobile {
        display: block !important;
        font-size: clamp(36px, 11vw, 52px) !important;
        line-height: 1.02 !important;
        font-weight: 900 !important;
        text-shadow: 0 2px 8px rgba(0,0,0,0.55), 0 4px 16px rgba(0,0,0,0.4) !important;
        margin-bottom: 4px !important;
        text-align: center;
    }
    .hero-headline-mobile .impact-word {
        display: block !important;
        font-size: clamp(40px, 12vw, 58px) !important;
        font-weight: 900 !important;
        color: #fef3c7 !important;
        line-height: 1.02 !important;
        text-shadow: 0 2px 8px rgba(0,0,0,0.55), 0 4px 16px rgba(0,0,0,0.4) !important;
        animation: impact-pulse-hero 2.5s ease-in-out infinite !important;
    }
    .hero-headline-mobile .impact-word:not(.impact-word-line2) {
        margin-bottom: -0.12em;
    }
    .hero-headline-mobile .impact-word + br + .impact-word,
    .hero-headline-mobile .impact-word-line2 {
        margin-top: -0.35em !important;
        white-space: normal !important;
        line-height: 1.02 !important;
    }
    .hero-headline-mobile strong {
        font-weight: 900;
        color: #fef3c7;
    }
    /* PC 전용 설명 숨김 · 모바일은 CTA 버튼만 (이름/전화/동의 숨김) */
    .hero-form-block .hero-desc-wrap.hero-desc-pc-only {
        display: none !important;
    }
    .hero-form-block .form-row,
    .hero-form-block .hero-check {
        display: none !important;
    }
    .hero-form-block {
        margin-top: 4px !important;
    }
    .hero-sub-mobile {
        margin-bottom: 6px !important;
    }
    .hero-section-bg .hero-content-wrap {
        width: 100%;
        max-width: 100%;
        /* CTA 하단 잘림 방지: transform 대신 margin으로 밀 때와 동일한 여유 */
        padding: 6px 16px 18px;
        box-sizing: border-box;
        flex: 1 1 auto;
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        /* min-height:0은 플렉스에서 자식보다 낮게 줄어들며 버튼이 잘리게 할 수 있음 */
        min-height: auto;
        overflow: visible;
    }
    .hero-section-bg .hero-inner {
        width: 100%;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
        /* translateY는 레이아웃 높이에 포함되지 않아 버튼 하단이 잘릴 수 있음 → margin-top 사용 */
        transform: none;
        margin-top: clamp(28px, 6vh, 56px);
    }
    .hero-official-strip {
        flex-shrink: 0;
        margin-top: auto;
        padding: 8px 12px !important;
    }
    .hero-section-bg .hero-disclaimer {
        display: none;
    }
    .support-scroll-hint {
        display: none;
    }
    .notice-tag-pc {
        display: none !important;
    }
    .support-cards {
        display: none !important;
    }
    .support-mobile-card {
        display: block !important;
        background: #fff;
        border-radius: 20px;
        padding: 24px 20px;
        margin-top: 20px;
        border: 3px solid #b8ddc8;
        box-shadow: 0 8px 32px rgba(45, 90, 69, 0.15);
    }
    .support-mobile-notice {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        font-size: 18px;
        font-weight: 900;
        color: #b45309;
        background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
        padding: 14px 18px;
        border-radius: 12px;
        margin: 0 0 20px 0;
        box-shadow: 0 4px 16px rgba(180, 83, 9, 0.3), 0 0 0 2px rgba(245, 158, 11, 0.5);
        animation: notice-pulse-color 2s ease-in-out infinite;
    }
    .support-mobile-notice:hover {
        background: linear-gradient(135deg, #ef4444 0%, #dc2626 50%, #b91c1c 100%) !important;
        color: #ffffff !important;
        box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4), 0 0 0 2px rgba(185, 28, 28, 0.5) !important;
        animation: none !important;
        transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    }
    .support-mobile-notice:hover i {
        color: #ffffff !important;
    }
    .support-mobile-notice i {
        font-size: 22px;
    }
    .support-mobile-list {
        list-style: none;
        margin: 0;
        padding: 0;
    }
    .support-mobile-list li {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 0;
        border-bottom: 1px solid #e2e8f0;
        font-size: 16px;
        font-weight: 600;
        color: #1a3d2e;
    }
    .support-mobile-list li:last-child {
        border-bottom: none;
    }
    .support-mobile-list li i {
        font-size: 20px;
        color: #2d5a45;
        flex-shrink: 0;
    }
    .hero-text {
        display: block;
        min-width: 0;
        max-width: 100%;
    }
    .hero-inner {
        margin: 0 auto;
        max-width: 100%;
        min-width: 0;
    }
    .hero-head-block {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        text-align: center;
        box-sizing: border-box;
    }
    .hero-form-block {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        text-align: center;
        box-sizing: border-box;
    }
    .hero-form-block .hero-form {
        text-align: left;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }
    .hero-desc-wrap {
        max-width: 100%;
        box-sizing: border-box;
    }
    .hero-form-block .btn-cta {
        width: 100%;
        margin-top: 0 !important;
    }
    .hero-sub-pc {
        display: none !important;
    }
    .hero-head-block,
    .hero-head-block-no-box {
        padding: 4px 0 6px;
    }
    .hero-desc-wrap-no-box {
        padding: 12px 0 16px;
        margin-bottom: 20px;
    }
    .hero-sub-mobile {
        display: block;
        font-size: 22px;
        color: #ffffff;
        margin: 0 0 12px;
        line-height: 1.45;
        text-align: center;
        text-shadow: 0 2px 4px rgba(0,0,0,0.5), 0 3px 12px rgba(0,0,0,0.4);
    }
    .hero-sub-mobile strong {
        font-weight: 800;
    }
    .hero-headline.hero-headline-pc {
        font-size: 28px;
        margin-bottom: 10px;
        text-align: center;
        line-height: 1.45;
    }
    .hero-headline.hero-headline-mobile {
        font-size: clamp(36px, 11vw, 52px) !important;
        line-height: 1.02 !important;
        font-weight: 900 !important;
        margin-bottom: 4px !important;
        text-align: center;
    }
    .hero-headline.hero-headline-mobile .impact-word {
        display: block !important;
        font-size: clamp(40px, 12vw, 58px) !important;
        font-weight: 900 !important;
        color: #fef3c7 !important;
        margin-top: 0 !important;
        line-height: 1.02 !important;
    }
    .hero-headline.hero-headline-mobile .impact-word:not(.impact-word-line2) {
        margin-bottom: -0.12em;
    }
    .hero-headline.hero-headline-mobile .impact-word-line2 {
        margin-top: -0.35em !important;
        line-height: 1.02 !important;
    }
    .hero-badge {
        justify-content: center;
        margin-bottom: 8px;
        text-align: center;
    }
    .hero-badge-logo {
        height: 28px;
    }
    .hero-badge-text {
        font-size: 14px;
        line-height: 1.5;
    }
    /* 모바일에서도 지원금 문구 표시, 행간·가독성 유지 */
    .hero-desc-wrap {
        padding: 16px 20px 20px;
        margin: 0 0 24px;
    }
    .hero-desc-wrap .hero-desc {
        display: block;
    }
    .hero-desc-wrap .hero-desc-line1 {
        font-size: 19px;
        line-height: 1.6;
        margin-bottom: 12px;
        padding-bottom: 12px;
    }
    .hero-desc-wrap .hero-desc-line2,
    .hero-desc-wrap .hero-desc-line3 {
        font-size: 17px;
        line-height: 1.75;
    }
    .hero-form input {
        min-height: 60px;
        padding: 16px 18px;
        font-size: 18px;
    }
    .hero-form-block .btn-cta {
        min-height: 52px;
        min-width: 44px;
        padding: 18px 24px;
        font-size: 20px;
        font-weight: 700;
    }

    /* 지원 항목: 타이틀·설명 중앙정렬 (히어로 제외) */
    .support-section {
        padding: 32px 0;
    }
    .support-section .section-title {
        font-size: 26px;
        margin-bottom: 22px;
        text-align: center;
        justify-content: center;
    }
    .support-cards {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .support-card-item {
        padding: 28px 22px;
        min-height: 260px;
    }
    .support-card-title {
        font-size: 20px;
        white-space: normal;
    }
    .support-card-desc {
        font-size: 17px;
    }

    /* 도움 받은 분들의 이야기: 타이틀 중앙정렬 */
    .testimonials-section {
        padding: 40px 0;
    }
    .testimonials-section .section-title {
        font-size: 24px;
        text-align: center;
    }
    /* 모바일: 아코디언 표시, 캐러셀 숨김 */
    .testimonials-accordion-mobile {
        display: block;
    }
    .testimonials-pc {
        display: none !important;
    }
    .testimonials-cta-mobile {
        display: block;
    }
    .testimonials-cta-mobile .btn-cta-small {
        display: block !important;
        width: 100% !important;
        min-height: 52px !important;
        padding: 18px 24px !important;
        font-size: 20px !important;
        font-weight: 700 !important;
        text-align: center;
        box-sizing: border-box;
    }
    .testimonials-layout {
        display: block;
        width: 100%;
        max-width: 100%;
    }
    .carousel-wrap {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        padding: 24px 0 32px;
    }
    .carousel-viewport {
        overflow: hidden;
        width: 100%;
        max-width: 100%;
        padding: 16px;
    }
    .carousel-track {
        flex-direction: column;
        transform: none !important;
        gap: 20px;
        max-width: 100%;
    }
    .testimonial-card {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        flex: 0 0 auto;
        padding: 26px 22px;
        box-sizing: border-box;
        transform: none !important;
        opacity: 1 !important;
    }
    .carousel-nav {
        display: none;
    }
    .testimonial-card:nth-child(n+4) {
        display: none !important;
    }
    .testimonial-image-mobile {
        display: block;
        margin-top: 28px;
        text-align: center;
    }
    .testimonial-image-mobile-img {
        width: 100%;
        max-width: 320px;
        height: auto;
        border-radius: 12px;
        object-fit: cover;
        margin: 0 auto;
    }
    .testimonial-image-mobile .img-disclaimer {
        font-size: 11px;
        color: #94a3b8;
        margin-top: 8px;
        position: static;
    }
    .testimonial-card h3 {
        font-size: 16px;
    }
    .testimonial-card .quote,
    .testimonial-card .consultant,
    .testimonial-card .customer {
        font-size: 14px;
    }
    .cta-small-wrap {
        display: none;
    }
    .btn-cta-small {
        min-height: 44px;
        padding: 14px 28px;
        font-size: 15px;
    }

    /* FAQ: 타이틀 중앙정렬 */
    .faq-section {
        padding: 40px 0;
    }
    .faq-section .section-title {
        font-size: 24px;
        text-align: center;
    }
    .faq-q {
        padding: 18px 0;
        font-size: 17px;
    }
    .faq-a p {
        font-size: 16px;
    }
    .faq-more-btn {
        min-height: 44px;
        padding: 14px 28px;
    }

    /* 최종 CTA: 타이틀·설명 중앙정렬 */
    .final-cta-section {
        padding: 40px 0;
    }
    .final-cta-title {
        font-size: 24px;
        text-align: center;
    }
    .final-cta-sub {
        font-size: 19px;
        margin-bottom: 24px;
        text-align: center;
    }
    .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-cta-sub-pc {
        display: block !important;
        text-align: center;
    }
    .final-cta-sub-region {
        white-space: nowrap;
    }
    .final-cta-sub-mobile {
        display: none !important;
    }
    .final-notice-region,
    .final-notice-caution {
        display: none !important;
    }
    .final-notice-mobile {
        display: block !important;
        font-size: 12px;
        margin-top: 16px;
        opacity: 0.9;
    }

    .faq-all-link {
        display: block;
    }

    /* 플로팅: 모바일 우측 하단, 전화+카카오 2개만, 적당한 크기 */
    .floating-wrap {
        right: 16px;
        bottom: 24px;
        top: auto;
        transform: none;
    }
    .floating-buttons {
        align-self: flex-end;
        gap: 10px;
    }
    .floating-top {
        display: none !important;
    }
    .floating-btn {
        width: 52px;
        height: 52px;
        min-width: 52px;
        min-height: 52px;
        font-size: 22px;
    }
    .floating-phone {
        font-size: 24px;
    }
}

@media (max-width: 600px) {
    .page-wrap {
        padding: 0 16px;
    }
    .header-title {
        font-size: 14px;
    }
    .hero-headline.hero-headline-pc {
        font-size: 20px;
    }
    .hero-headline.hero-headline-mobile {
        font-size: clamp(32px, 10vw, 44px) !important;
        line-height: 1.02 !important;
    }
    .hero-headline.hero-headline-mobile .impact-word {
        font-size: clamp(36px, 11vw, 50px) !important;
        line-height: 1.02 !important;
    }
    .hero-headline.hero-headline-mobile .impact-word-line2 {
        margin-top: -0.35em !important;
    }
    .hero-form .form-row {
        flex-direction: column;
    }
    .footer-brand {
        flex-direction: column;
    }
    .footer-links {
        flex-direction: column;
    }
}

/* PC 히어로 높이 (좌 텍스트 + 우 액자 이미지 레이아웃) */
@media (min-width: 769px) {
    section.hero-section.hero-section-bg#hero {
        min-height: 560px !important;
    }
}
