@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-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-8ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Paperlogy';
    src: url('font/Paperlogy-9Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Paperlogy', sans-serif;
    color: #1a1a1a;
    background: #1a1a1a;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.has-bottom-inquiry {
    padding-bottom: 140px;
}

@media (max-width: 768px) {
    .has-bottom-inquiry {
        padding-bottom: 300px;
    }
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.header-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
}

.logo-img {
    height: 150px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: opacity 0.3s ease;
}

.logo-white {
    opacity: 1;
    position: relative;
}

.logo-black {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
}

.header.scrolled .logo-white {
    opacity: 0;
}

.header.scrolled .logo-black {
    opacity: 1;
}

.header-nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.header-nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.2s ease;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.header.scrolled .header-nav a {
    color: #1a1a1a;
    text-shadow: none;
}

.header-nav a:hover {
    color: #2e7dff;
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    width: 34px;
    height: 22px;
    padding: 0;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 3px;
    background: #ffffff;
    border-radius: 999px;
    transition: background 0.3s ease;
}

.header.scrolled .mobile-menu-toggle span {
    background: #1f2a37;
}

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 1200;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100%;
    background: #ffffff;
    box-shadow: -20px 0 40px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform 0.25s ease;
    z-index: 1201;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow-y: auto;
}

.mobile-menu.is-open {
    transform: translateX(0);
}

.menu-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

.menu-close {
    align-self: flex-end;
    background: #f3f4f6;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    font-size: 20px;
    cursor: pointer;
    margin-bottom: 20px;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 0;
    flex: 1;
}

.mobile-menu-footer-logo {
    display: flex;
    justify-content: center;
    padding: 20px 0;
    border-top: 1px solid #e5e7eb;
    margin-top: auto;
}

.mobile-footer-logo-img {
    height: 120px;
    width: auto;
    object-fit: contain;
}

.mobile-menu-links a {
    text-decoration: none;
    color: #1f2a37;
    font-weight: 700;
    font-size: 18px;
    padding: 12px 0;
    transition: color 0.2s ease;
}

.mobile-menu-links a:hover {
    color: #2e7dff;
}

@media (max-width: 768px) {
    .header {
        top: -20px;
        left: -8px;
    }

    .header-inner {
        padding: 8px 0;
        padding-left: 20px;
        justify-content: space-between;
    }

    .header-logo {
        margin-left: 0;
    }

    .logo-img {
        height: 130px;
    }

    .header-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
        margin-right: 20px;
    }

    .bottom-inquiry {
        padding: 12px 16px;
    }

    .bottom-inquiry-logo {
        display: none;
    }
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.25) 55%, rgba(0, 0, 0, 0.1) 100%);
    z-index: -1;
}

.hero-inner {
    padding-top: 120px;
}

.hero-content {
    max-width: 560px;
    color: #ffffff;
    margin-left: -600px;
}

.hero-title {
    font-size: 55px;
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 18px;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 34px;
    font-weight: 800;
    color: #ffeb3b;
    margin-bottom: 26px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-features {
    list-style: none;
    margin-bottom: 22px;
}

.hero-features li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
    background: rgba(0, 0, 0, 0.25);
    padding: 10px 14px;
    border-radius: 10px;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.feature-icon {
    font-weight: 900;
    font-size: 26px;
    line-height: 1.2;
}

.highlight-blink {
    font-size: inherit;
    font-weight: 900;
    animation: blinkRed 1.2s ease-in-out infinite;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-extra {
    font-size: 30px;
    font-weight: 800;
    margin: 10px 0 26px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    animation: blinkHighlight 1.4s ease-in-out infinite;
}

.cta-button {
    background: linear-gradient(135deg, #2e7dff 0%, #1b5ed9 100%);
    color: #ffffff;
    border: none;
    border-radius: 999px;
    padding: 12px 26px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(46, 125, 255, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(46, 125, 255, 0.45);
}

/* Concerns */
.concerns {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 100px 0;
}

.concerns-header {
    text-align: center;
    margin-bottom: 60px;
}

.concerns-image {
    width: 200px;
    height: auto;
    display: block;
    margin: 0 auto 24px;
    animation: bounce 2s ease-in-out infinite;
}

.concerns-title {
    font-size: 42px;
    font-weight: 900;
    color: #2c3e50;
}

.concerns-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.concern-card {
    background: #ffffff;
    padding: 36px 28px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.concern-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.concern-image-icon {
    width: 110px;
    height: 110px;
    object-fit: contain;
    margin-bottom: 16px;
    animation: float 3s ease-in-out infinite;
}

.concern-text {
    font-size: 22px;
    font-weight: 700;
    color: #34495e;
}

/* Intro Section */
.intro {
    background: linear-gradient(135deg, #0f1c3f 0%, #1f3b8f 50%, #2e7dff 100%);
    padding: 110px 0 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.intro::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 60%);
}

.intro-inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 32px;
    align-items: center;
}

.intro-kicker {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 14px;
}

.intro-title {
    font-size: 35px;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 18px;
}

.intro-desc {
    font-size: 20px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.intro-media {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.intro-image {
    width: 100%;
    max-width: 720px;
    height: auto;
    border-radius: 16px;
    display: block;
    margin: 0;
}

.intro-card {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    padding: 28px;
    backdrop-filter: blur(8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.intro-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
}

.intro-card-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 10px;
}

.intro-card-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
}

/* Difference Section */
.difference {
    background: #f7f9fc;
    padding: 110px 0;
}

.difference-header {
    text-align: center;
    margin-bottom: 56px;
}

.difference-kicker {
    font-size: 18px;
    font-weight: 800;
    color: #2e7dff;
    margin-bottom: 12px;
}

.difference-title {
    font-size: 38px;
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1.4;
}

.difference-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

.difference-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #eef2f7;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 26px;
}

.difference-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.difference-icon {
    font-size: 30px;
    margin-bottom: 12px;
}

.difference-image-icon {
    width: 120px;
    height: 120px;
    object-fit: contain;
    display: block;
    margin: 0;
    flex-shrink: 0;
}

.difference-content {
    flex: 1;
}

.difference-card:nth-child(even) {
    flex-direction: column;
}

.difference-card-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #1f2a37;
    text-align: center;
}

.difference-card-text {
    font-size: 18px;
    font-weight: 600;
    color: #4b5563;
    line-height: 1.6;
    text-align: center;
}

/* Benefits Section */
.benefits {
    background: #ffffff;
    padding: 110px 0;
}

.benefits-header {
    text-align: center;
    margin-bottom: 56px;
}

.benefits-kicker {
    font-size: 18px;
    font-weight: 800;
    color: #2e7dff;
    margin-bottom: 12px;
}

.benefits-title {
    font-size: 38px;
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1.4;
}

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

.benefits-card {
    background: #f7f9fc;
    border-radius: 18px;
    padding: 30px 28px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #eef2f7;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.benefits-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.benefits-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
    margin: 0 auto;
}

.benefits-card-title {
    font-size: 22px;
    font-weight: 800;
    color: #1f2a37;
    text-align: center;
}

.benefits-card-text {
    font-size: 18px;
    font-weight: 600;
    color: #4b5563;
    text-align: center;
    line-height: 1.6;
}

.benefits-card-text .text-indent {
    display: block;
    padding-left: 1.2em;
    text-align: left;
}

.benefits-card-text br + .text-indent {
    margin-top: 0.25em;
}

.text-em {
    font-weight: 800;
    color: #c41e3a;
}

.success-title .text-indent {
    display: block;
    padding-left: 0.6em;
    margin-top: 0.15em;
}

/* Success Section */
.success {
    background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
    padding: 110px 0;
}

.success-header {
    text-align: center;
    margin-bottom: 56px;
}

.success-kicker {
    font-size: 18px;
    font-weight: 800;
    color: #2e7dff;
    margin-bottom: 12px;
}

.success-title {
    font-size: 38px;
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1.4;
    margin-bottom: 12px;
}

.success-desc {
    font-size: 18px;
    font-weight: 600;
    color: #4b5563;
}

.success-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.success-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 28px 26px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8eef6;
    position: relative;
    overflow: hidden;
}

.success-card-title {
    font-size: 22px;
    font-weight: 800;
    color: #1f2a37;
    margin-bottom: 18px;
}

.success-bars {
    display: flex;
    gap: 20px;
    align-items: flex-end;
}

.success-bar {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.success-bar-label {
    font-size: 14px;
    font-weight: 700;
    color: #6b7280;
}

.success-bar-track {
    width: 100%;
    max-width: 120px;
    height: 220px;
    background: #f1f5f9;
    border-radius: 16px;
    display: flex;
    align-items: flex-end;
    padding: 10px;
}

.success-bar-fill {
    width: 100%;
    border-radius: 12px;
}

.success-bar-fill.before {
    background: linear-gradient(180deg, #9ca3af 0%, #6b7280 100%);
}

.success-bar-fill.after {
    background: linear-gradient(180deg, #2e7dff 0%, #1b5ed9 100%);
}

.success-bar-value {
    font-size: 16px;
    font-weight: 800;
    color: #111827;
}

.success-bar-company {
    font-size: 12px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 999px;
    color: #4b5563;
    background: #e5e7eb;
}

.success-bar-company.after {
    color: #ffffff;
    background: linear-gradient(135deg, #2e7dff 0%, #1b5ed9 100%);
    box-shadow: 0 8px 18px rgba(46, 125, 255, 0.35);
}

.success-bar-company.before {
    color: #374151;
    background: #e5e7eb;
}

.success-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-bottom: 34px;
    color: #f97316;
    font-weight: 900;
    position: relative;
    padding-top: 6px;
}

.success-arrow::before {
    content: "";
    width: 6px;
    height: 150px;
    background: linear-gradient(180deg, rgba(249, 115, 22, 0.2) 0%, #f97316 100%);
    border-radius: 999px;
    box-shadow: 0 6px 14px rgba(249, 115, 22, 0.25);
}

.success-arrow::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 22px solid #f97316;
    margin-top: -6px;
    filter: drop-shadow(0 6px 8px rgba(249, 115, 22, 0.25));
}

.success-arrow-text {
    font-size: 13px;
    letter-spacing: 0.08em;
}

.success-badge {
    position: absolute;
    top: 22px;
    right: 22px;
    background: #1f2a37;
    color: #ffffff;
    font-weight: 800;
    font-size: 14px;
    padding: 6px 12px;
    border-radius: 999px;
}

/* Inquiry Section */
.inquiry {
    background: #0f1c3f;
    color: #ffffff;
    padding: 110px 0;
}

.inquiry-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}

.inquiry-kicker {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
}

.inquiry-title {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 14px;
}

.inquiry-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
}

.inquiry-form {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    backdrop-filter: blur(8px);
}

.inquiry-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-weight: 700;
}

.inquiry-field input {
    padding: 12px 14px;
    border-radius: 10px;
    border: none;
    font-size: 16px;
}

.inquiry-check {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    justify-content: space-between;
}

.inquiry-check-label {
    display: flex;
    align-items: center;
    gap: 8px;
}

.privacy-open {
    border: none;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-weight: 700;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    cursor: pointer;
}

.inquiry-submit {
    background: #2e7dff;
    color: #ffffff;
    border: none;
    border-radius: 999px;
    padding: 14px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
}

/* Bottom Inquiry Bar */
.bottom-inquiry {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 28, 63, 0.96);
    color: #ffffff;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 1100;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.2);
    justify-content: center;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

/* 모바일: 스크롤 끝까지 내리기 전에는 숨김 */
@media (max-width: 768px) {
    .bottom-inquiry {
        transform: translateY(100%);
        opacity: 0;
        pointer-events: none;
    }

    .bottom-inquiry.is-visible {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
}

.bottom-inquiry-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
    display: none;
}

@media (min-width: 769px) {
    .bottom-inquiry-logo {
        display: none;
    }
}

.bottom-inquiry-title {
    font-size: 18px;
    font-weight: 800;
    white-space: nowrap;
}

.bottom-inquiry-form {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.bottom-inquiry-form input[type="text"],
.bottom-inquiry-form input[type="tel"] {
    padding: 10px 12px;
    border-radius: 8px;
    border: none;
    font-size: 14px;
    width: 160px;
}

.bottom-inquiry-check {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    white-space: nowrap;
}

.bottom-inquiry-check-label {
    display: flex;
    align-items: center;
    gap: 6px;
}

.bottom-inquiry-check .privacy-open {
    background: #ffffff;
    color: #1f2a37;
}

/* Privacy Modal */
.privacy-modal {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 1300;
    padding: 20px;
}

.privacy-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.privacy-modal-content {
    background: #ffffff;
    border-radius: 16px;
    width: min(520px, 100%);
    padding: 22px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.privacy-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.privacy-modal-header h3 {
    font-size: 20px;
    font-weight: 800;
    color: #1f2a37;
}

.privacy-close {
    border: none;
    background: #f3f4f6;
    color: #1f2a37;
    padding: 6px 12px;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 700;
}

.privacy-modal-body p {
    font-size: 15px;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 8px;
}

.privacy-note {
    margin-top: 10px;
    color: #ef4444;
    font-weight: 700;
}

.bottom-inquiry-submit {
    background: #ffeb3b;
    border: none;
    color: #1f2a37;
    font-weight: 800;
    border-radius: 999px;
    padding: 10px 16px;
    cursor: pointer;
    white-space: nowrap;
}

/* Animations */
@keyframes bounce {

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

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

@keyframes float {

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

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

@keyframes blinkHighlight {

    0%,
    100% {
        color: #ffffff;
    }

    50% {
        color: #ffeb3b;
    }
}

@keyframes blinkRed {
    0%,
    100% {
        color: #ffffff;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    }

    50% {
        color: #ff0000;
        text-shadow: 0 0 8px rgba(255, 0, 0, 0.9), 2px 2px 4px rgba(0, 0, 0, 0.8);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 44px;
    }

    .hero-subtitle {
        font-size: 24px;
    }

    .hero-features li {
        font-size: 20px;
    }

    .hero-extra {
        font-size: 22px;
    }

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

    .concerns-image {
        width: 160px;
    }

    .intro-inner {
        grid-template-columns: 1fr;
    }

    .intro-title {
        font-size: 34px;
    }

    .intro-desc {
        font-size: 18px;
    }

    .intro-image {
        max-width: 600px;
    }

    .difference-title {
        font-size: 32px;
    }

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

    .benefits-title {
        font-size: 32px;
    }

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

    .success-title {
        font-size: 32px;
    }

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

    .inquiry-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
        word-break: keep-all;
    }

    .hero {
        align-items: flex-start;
    }

    .hero-inner {
        padding-top: 100px;
    }

    .hero-content {
        margin-left: 0;
        max-width: 100%;
    }

    .hero-cta {
        margin-top: 32px;
    }

    .hero-title {
        font-size: 34px;
        word-break: keep-all;
    }

    .hero-subtitle {
        font-size: 20px;
        word-break: keep-all;
    }

    .hero-features li {
        font-size: 18px;
        line-height: 1.6;
        word-break: keep-all;
    }
    
    .hero-features .feature-icon {
        font-size: 18px;
        line-height: 1.6;
    }
    
    .hero-features .highlight-blink {
        font-size: 1.1em;
        white-space: nowrap;
        display: inline-block;
        word-break: normal;
    }
    
    .hero-features .highlight-blink-nowrap {
        white-space: nowrap;
        display: inline-block;
        word-break: normal;
        flex-shrink: 0;
        min-width: fit-content;
    }
    
    .hero-features li:last-child {
        word-break: normal;
    }
    
    .hero-features li:last-child .highlight-blink-nowrap {
        white-space: nowrap !important;
        word-break: normal !important;
    }

    .hero-extra {
        font-size: 20px;
        text-align: center;
        word-break: keep-all;
    }

    .cta-button {
        width: 100%;
    }

    .concerns-title {
        word-break: keep-all;
    }

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

    .concerns-image {
        width: 140px;
    }

    .concern-image-icon {
        margin: 0 auto 16px;
    }

    .concern-text {
        font-size: 18px;
        line-height: 1.7;
        word-break: keep-all;
    }

    .intro {
        padding: 90px 0 0;
    }

    .intro-title {
        font-size: 26px;
        line-height: 1.5;
        word-break: keep-all;
    }

    .intro-desc {
        font-size: 16px;
        line-height: 1.8;
        word-break: keep-all;
    }

    .intro-image {
        max-width: 520px;
    }

    .difference {
        padding: 90px 0;
    }

    .difference-title {
        font-size: 24px;
        word-break: keep-all;
    }

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

    .difference-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .difference-card:nth-child(even) {
        flex-direction: column;
    }

    .difference-image-icon {
        margin: 0 auto 12px;
    }

    .difference-card-title {
        font-size: 20px;
        word-break: keep-all;
    }

    .difference-card-text {
        font-size: 16px;
        line-height: 1.8;
        word-break: keep-all;
    }

    .benefits {
        padding: 90px 0;
    }

    .benefits-title {
        font-size: 24px;
        word-break: keep-all;
    }

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

    .benefits-card {
        align-items: center;
        text-align: center;
    }

    .benefits-icon {
        margin: 0 auto;
    }

    .benefits-card-title {
        word-break: keep-all;
        text-align: center;
    }

    .benefits-card-text {
        font-size: 16px;
        line-height: 1.8;
        word-break: keep-all;
        text-align: center;
    }

    .success {
        padding: 90px 0;
    }

    .success-title {
        font-size: 24px;
        word-break: keep-all;
    }

    .success-desc {
        font-size: 15px;
        line-height: 1.7;
        word-break: keep-all;
    }

    .success-bar-track {
        height: 200px;
    }

    .success-bars {
        gap: 14px;
    }

    .success-arrow {
        margin-bottom: 26px;
    }

    .success-arrow::before {
        height: 120px;
    }

    .inquiry-text {
        text-align: center;
    }

    .inquiry-kicker {
        text-align: center;
    }

    .inquiry-title {
        font-size: 26px;
        word-break: keep-all;
        text-align: center;
    }

    .inquiry-desc {
        font-size: 16px;
        line-height: 1.8;
        word-break: keep-all;
        text-align: center;
    }

    .bottom-inquiry {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .bottom-inquiry-form {
        flex-direction: column;
        align-items: stretch;
    }

    .bottom-inquiry-form input[type="text"],
    .bottom-inquiry-form input[type="tel"] {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 19px;
    }

    .hero-features li {
        font-size: 17px;
    }
    
    .hero-features .feature-icon {
        font-size: 17px;
        line-height: 1.6;
    }
    
    .hero-features .highlight-blink {
        font-size: 1.12em;
        white-space: nowrap;
        display: inline-block;
        word-break: normal;
    }
    
    .hero-features .highlight-blink-nowrap {
        white-space: nowrap;
        display: inline-block;
        word-break: normal;
        flex-shrink: 0;
        min-width: fit-content;
    }
    
    .hero-features li:last-child {
        word-break: normal;
    }
    
    .hero-features li:last-child .highlight-blink-nowrap {
        white-space: nowrap !important;
        word-break: normal !important;
    }
    
    .hero-extra {
        font-size: 19px;
    }

    .concerns-title {
        font-size: 32px;
    }

    .concerns-image {
        width: 120px;
    }

    .intro-title {
        font-size: 26px;
    }

    .intro-desc {
        font-size: 16px;
    }

    .intro-image {
        max-width: 360px;
    }

    .difference-title {
        font-size: 24px;
    }

    .difference-card-text {
        font-size: 16px;
    }

    .benefits-title {
        font-size: 24px;
    }

    .benefits-card-text {
        font-size: 16px;
    }

    .success-title {
        font-size: 24px;
    }

    .success-bar-track {
        height: 180px;
    }

    .success-arrow {
        margin-bottom: 20px;
    }

    .success-arrow::before {
        height: 100px;
    }
}

/* 358px 기준: 노하우 제공 등 강조 문구 한 줄 유지, 작은 화면에서도 가독 유지 */
@media (max-width: 358px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 17px;
    }
    
    .hero-features li {
        font-size: 15px;
        line-height: 1.5;
    }
    
    .hero-features .feature-icon {
        font-size: 15px;
        line-height: 1.5;
    }
    
    .hero-features .highlight-blink {
        font-size: 1.08em;
        white-space: nowrap;
        display: inline-block;
        word-break: normal;
    }
    
    .hero-features .highlight-blink-nowrap {
        white-space: nowrap !important;
        display: inline-block;
        word-break: normal !important;
        flex-shrink: 0;
        min-width: fit-content;
    }
    
    .hero-features li:last-child {
        font-size: 14px;
        word-break: normal;
    }
    
    .hero-features li:last-child .feature-icon {
        font-size: 14px;
    }
    
    .hero-features li:last-child .highlight-blink-nowrap {
        white-space: nowrap !important;
        word-break: normal !important;
        display: inline-block !important;
    }
    
    .hero-extra {
        font-size: 17px;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 0;
    margin-top: 0;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding: 40px 24px;
}

.footer-logo {
    height: 240px;
    width: auto;
    object-fit: contain;
}

.footer-contact {
    width: 100%;
    max-width: 800px;
    text-align: center;
}

.footer-contact-title {
    font-size: 28px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 28px;
}

.footer-contact-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.footer-contact-item {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 20px;
    backdrop-filter: blur(8px);
}

.footer-contact-office {
    font-size: 16px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
}

.footer-contact-name {
    font-size: 18px;
    font-weight: 800;
    color: #ffeb3b;
    margin-bottom: 12px;
}

.footer-contact-phone {
    display: inline-block;
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    padding: 10px 16px;
    background: rgba(46, 125, 255, 0.2);
    border: 2px solid #2e7dff;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.footer-contact-phone:hover {
    background: #2e7dff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(46, 125, 255, 0.4);
}

.footer-contact-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-action-btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.footer-action-inquiry {
    background: linear-gradient(135deg, #2e7dff 0%, #1b5ed9 100%);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(46, 125, 255, 0.3);
}

.footer-action-inquiry:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(46, 125, 255, 0.4);
}

.footer-action-call {
    background: #ffeb3b;
    color: #1a1a1a;
    box-shadow: 0 8px 20px rgba(255, 235, 59, 0.3);
}

.footer-action-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(255, 235, 59, 0.4);
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-align: center;
}

@media (max-width: 768px) {
    .footer {
        padding: 0;
        margin-top: 0;
    }

    .footer-inner {
        padding: 30px 24px;
        gap: 24px;
    }

    .footer-logo {
        height: 200px;
    }

    .footer-contact-title {
        font-size: 22px;
        margin-bottom: 20px;
        word-break: keep-all;
    }

    .footer-contact-list {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 24px;
    }

    .footer-contact-item {
        padding: 16px;
    }

    .footer-contact-office {
        font-size: 14px;
        word-break: keep-all;
    }

    .footer-contact-name {
        font-size: 16px;
        word-break: keep-all;
    }

    .footer-contact-phone {
        font-size: 18px;
        padding: 8px 14px;
        word-break: keep-all;
    }

    .footer-contact-actions {
        flex-direction: column;
        gap: 12px;
    }

    .footer-action-btn {
        width: 100%;
        padding: 12px 24px;
        font-size: 15px;
    }

    .footer-text {
        font-size: 13px;
    }
}