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

body {
    font-family: 'Inter', 'Noto Sans KR', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
    overflow: hidden;
    height: 100%;
    min-height: 100vh;
    display: block !important;
    position: static !important;
}

html, body {
    height: 100%;
    min-height: 100vh;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.section {
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #fff;
    font-family: 'Inter', 'Noto Sans KR', sans-serif;
    background: #000;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    will-change: transform;
    transition: transform 2s cubic-bezier(0.8, 0, 0.05, 1);
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.video-background video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: none;
    pointer-events: none;
}

.desktop-video {
    display: block;
}

.mobile-video {
    display: none;
}

@media (max-width: 768px) {
    .desktop-video {
        display: none;
    }
    .mobile-video {
        display: block;
    }
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

#page1 .content {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.motion-top-text {
    font-size: clamp(5rem, 10vw, 13rem);
    font-weight: 700;
    margin-bottom: clamp(30px, 6vw, 100px);
    height: clamp(120px, 16vw, 220px);
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    position: relative;
}

.animated-text-container {
    position: relative;
    display: inline-block;
    perspective: 1000px;
    overflow: visible;
}

.motion-words {
    display: inline-block;
    transition: none;
    opacity: 0;
    line-height: 1.2;
    margin-bottom: clamp(15px, 3vw, 30px);
    font-size: clamp(4.5rem, 9vw, 12rem);
    white-space: nowrap;
    position: relative;
    z-index: 2;
    transform-style: preserve-3d;
    will-change: transform, opacity;
    backface-visibility: hidden;
    transform: translateZ(0) translateY(50px) scale(0.8);
    color: #ffffff;
    text-shadow: 0 6px 12px rgba(0, 0, 0, 0.7), 0 3px 6px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(0, 0, 0, 0.3);
}

.motion-words.silver {
    color: #ffffff;
    text-shadow: 0 6px 12px rgba(0, 0, 0, 0.7), 0 3px 6px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(0, 0, 0, 0.3);
}


@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes floatText {
    0%, 100% {
        transform: translateY(0) rotateX(0deg);
    }
    50% {
        transform: translateY(-10px) rotateX(5deg);
    }
}

@keyframes textReveal {
    from {
        clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
        transform: translateY(50px);
    }
    to {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
        transform: translateY(0);
    }
}

.motion-main-text {
    font-size: clamp(2.8rem, 5vw, 5rem);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: clamp(1px, 0.3vw, 3px);
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
    margin-top: clamp(30px, 4vw, 60px);
}

.motion-sub-text {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 500;
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 0.3s;
    margin-top: clamp(10px, 1.5vw, 10px);
}

.sub-logo {
    width: clamp(80px, 12vw, 150px);
    height: auto;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 0.3s;
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .motion-top-text {
        font-size: clamp(4.5rem, 9vw, 8rem);
        height: clamp(90px, 13vw, 130px);
        margin-bottom: clamp(30px, 6vw, 90px);
    }

    .motion-main-text {
        font-size: clamp(2.5rem, 5vw, 4.5rem);
    }

    .motion-words {
        font-size: clamp(4rem, 8vw, 8rem);
    }
}

@media (max-width: 768px) {
    .motion-top-text {
        font-size: clamp(4rem, 8vw, 7rem);
        height: clamp(80px, 12vw, 120px);
        margin-bottom: clamp(25px, 5vw, 80px);
        white-space: normal;
    }

    .motion-main-text {
        font-size: clamp(2.2rem, 4.5vw, 4rem);
    }

    .motion-words {
        white-space: normal;
        font-size: clamp(3.5rem, 7vw, 7rem);
    }

    .motion-sub-text {
        font-size: clamp(1.1rem, 2vw, 1.5rem);
    }

    .sub-logo {
        width: clamp(75px, 11vw, 150px);
    }
}

@media (max-width: 480px) {
    .motion-top-text {
        font-size: clamp(3.5rem, 7vw, 6rem);
        height: clamp(70px, 11vw, 110px);
        margin-bottom: clamp(20px, 4vw, 70px);
    }

    .motion-main-text {
        font-size: clamp(2rem, 4vw, 3.5rem);
    }

    .motion-words {
        font-size: clamp(3rem, 6vw, 6rem);
    }

    .motion-sub-text {
        font-size: clamp(1rem, 1.8vw, 1.5rem);
    }

    .sub-logo {
        width: clamp(65px, 10vw, 150px);
    }
}

@media (max-width: 320px) {
    .motion-top-text {
        font-size: clamp(3rem, 6vw, 5rem);
        height: clamp(60px, 10vw, 100px);
        margin-bottom: clamp(15px, 3vw, 60px);
    }

    .motion-main-text {
        font-size: clamp(1.8rem, 3.5vw, 3rem);
    }

    .motion-words {
        font-size: clamp(2.5rem, 5vw, 5rem);
    }

    .motion-sub-text {
        font-size: clamp(0.9rem, 1.5vw, 1.2rem);
    }

    .sub-logo {
        width: clamp(55px, 9vw, 120px);
    }
}

#page1 h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
    line-height: 1.2;
}

#page1 h1:nth-of-type(1) {
    color: #ffffff;
}

#page1 h1:nth-of-type(2) {
    color: #d4af37;
    font-size: 3rem;
}

#page1 h1:nth-of-type(3),
#page1 h1:nth-of-type(4) {
    color: rgba(255, 255, 255, 0.9);
    font-size: 2.8rem;
}

#page1 h1:nth-of-type(5) {
    color: #d4af37;
    font-size: 2.5rem;
    font-weight: 500;
}

#page1 h3 {
    font-size: 2rem;
    font-weight: 500;
    color: #d4af37;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
    top: 80px;
}

#page1 p {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

#page1 p:nth-of-type(1) {
    top: 160px;
}

#page1 p:nth-of-type(2) {
    top: 200px;
}

#page1 p:nth-of-type(3) {
    top: 240px;
    color: #d4af37;
    font-size: 1.3rem;
    font-weight: 500;
}

@media (max-width: 1024px) {
    #page1 h1 {
        font-size: 3rem;
    }

    #page1 h1:nth-of-type(2) {
        font-size: 2.5rem;
    }

    #page1 h1:nth-of-type(3),
    #page1 h1:nth-of-type(4) {
        font-size: 2.3rem;
    }

    #page1 h1:nth-of-type(5) {
        font-size: 2rem;
    }

    #page1 h3 {
        font-size: 1.8rem;
    }

    #page1 p {
        font-size: 1.3rem;
    }

    #page1 p:nth-of-type(3) {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    #page1 h1 {
        font-size: 2.5rem;
    }

    #page1 h1:nth-of-type(2) {
        font-size: 2.2rem;
    }

    #page1 h1:nth-of-type(3),
    #page1 h1:nth-of-type(4) {
        font-size: 2rem;
    }

    #page1 h1:nth-of-type(5) {
        font-size: 1.8rem;
    }

    #page1 h3 {
        font-size: 1.5rem;
    }

    #page1 p {
        font-size: 1.1rem;
    }

    #page1 p:nth-of-type(3) {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    #page1 h1 {
        font-size: 2rem;
    }

    #page1 h1:nth-of-type(2) {
        font-size: 1.8rem;
    }

    #page1 h1:nth-of-type(3),
    #page1 h1:nth-of-type(4) {
        font-size: 1.6rem;
    }

    #page1 h1:nth-of-type(5) {
        font-size: 1.4rem;
    }

    #page1 h3 {
        font-size: 1.2rem;
    }

    #page1 p {
        font-size: 1rem;
    }

    #page1 p:nth-of-type(3) {
        font-size: 0.9rem;
    }
}

#page1 h2 {
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

#page1 .page-number {
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

#page1 h1, #page1 h2, #page1 p, #page1 .page-number,
#page2 h1, #page2 h2, #page2 p, #page2 .page-number,
#page3 h1, #page3 h2, #page3 p, #page3 .page-number,
#page4 h1, #page4 h2, #page4 p, #page4 .page-number,
#page5 h1, #page5 h2, #page5 p, #page5 .page-number {
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

#page2 .video-overlay {
    background: rgba(0, 0, 0, 0.6);
}

#page3 .video-overlay {
    background: rgba(0, 0, 0, 0.5);
}

#page4 .video-overlay {
    background: rgba(0, 0, 0, 0.5);
}

#page5 .video-overlay {
    background: transparent;
}

#page5 {
    background: #fff;
}

.content {
    text-align: center;
    margin: 0 auto;
}

h1 {
    font-family: 'Inter', sans-serif;
    font-size: 4rem;
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

h2 {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: #1e3a5f;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: #1e3a5f;
    margin-bottom: 8px;
}

p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 32px;
}

#page1 { background: transparent; }
#page2 { background: transparent; }
#page3 { background: transparent; }
#page4 { background: transparent; }
#page6 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
    min-height: 100vh;
    overflow: hidden;
    position: relative;
}

#page6 .content {
    position: relative;
    z-index: 1;
    width: 100%;
    transition: transform 0.3s ease;
    margin-top: -8px;
}

.inquiry-content {
    margin: 0;
    padding: 20px;
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
}

#page6 h2 {
    margin-bottom: 30px;
    margin-top: 12px;
    color: #d4af37;
    font-size: 42px;
    font-family: 'Inter', 'Noto Sans KR', sans-serif;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
}

#page6 h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.business-areas {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-top: 48px;
    width: 100%;
    padding: 0 40px;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    flex-wrap: wrap;
}

.business-card {
    position: relative;
    padding: 32px 24px;
    border-radius: 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    width: 220px;
    height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(100vw);
    opacity: 0;
    flex: 0 0 auto;
    will-change: transform, box-shadow;
    user-select: none;
    position: relative;
}

.business-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 24px;
}

.business-card:hover::before {
    left: 100%;
}

.business-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.05),
        rgba(255, 255, 255, 0.1)
    );
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.business-card:hover::after {
    opacity: 1;
}

.business-card:active {
    transform: translateY(-4px) scale(0.98);
    transition: all 0.1s ease;
}

.business-card:hover {
    cursor: pointer;
}

.business-card:hover h3::after {
    content: " →";
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.business-card[data-area="product"] {
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 50%, #b8860b 100%);
    border: 1px solid rgba(255, 215, 0, 0.6);
    box-shadow:
        0 4px 20px rgba(212, 175, 55, 0.25),
        0 1px 3px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(0);
}

.business-card[data-area="product"]:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 12px 40px rgba(212, 175, 55, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.15),
        inset 0 2px 0 rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 215, 0, 0.8);
}

.business-card[data-area="tech"] {
    background: linear-gradient(135deg, #c0c0c0 0%, #e8e8e8 50%, #a8a8a8 100%);
    border: 1px solid rgba(192, 192, 192, 0.6);
    box-shadow:
        0 4px 20px rgba(192, 192, 192, 0.25),
        0 1px 3px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transform: translateY(0);
}

.business-card[data-area="tech"]:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 12px 40px rgba(192, 192, 192, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.15),
        inset 0 2px 0 rgba(255, 255, 255, 0.5);
    border-color: rgba(192, 192, 192, 0.8);
}

.business-card[data-area="turnkey"] {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 50%, #0d0d0d 100%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.4),
        0 1px 3px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: translateY(0);
}

.business-card[data-area="turnkey"]:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.6),
        0 4px 12px rgba(0, 0, 0, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.business-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    z-index: 10;
    position: relative;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-shadow:
        0 0 5px #fff,
        0 0 10px #d4af37;
    animation: neon 2s ease-in-out infinite alternate;
    will-change: text-shadow;
}

@keyframes neon {
    from {
        text-shadow:
            0 0 5px #fff,
            0 0 10px #d4af37;
    }
    to {
        text-shadow:
            0 0 2px #fff,
            0 0 5px #d4af37;
    }
}

.business-card:hover h3 {
    transform: translateY(-2px);
    letter-spacing: 0.8px;
    animation: none;
    text-shadow:
        0 0 5px #fff,
        0 0 10px #d4af37;
}

.business-card p {
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 0;
    z-index: 10;
    position: relative;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0.9;
}

.business-card:hover p {
    transform: translateY(-1px);
    opacity: 1;
}

.business-card[data-area="product"] h3,
.business-card[data-area="tech"] h3,
.business-card[data-area="turnkey"] h3 {
    text-shadow:
        0 0 5px #fff,
        0 0 10px #d4af37;
}

.business-card.slide-in {
    transform: translateX(0);
    opacity: 1;
}

.business-card:nth-child(1) { transition-delay: 0.1s; }
.business-card:nth-child(2) { transition-delay: 0.2s; }
.business-card:nth-child(3) { transition-delay: 0.3s; }

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    border-radius: 20px;
}

.business-card[data-area="product"] .card-overlay {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
}

.business-card[data-area="tech"] .card-overlay {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(192, 192, 192, 0.2) 100%);
}

.business-card[data-area="turnkey"] .card-overlay {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.business-card:hover .card-overlay {
    opacity: 1;
}

.side-nav {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.side-nav.show {
    opacity: 1;
    visibility: visible;
}

.nav-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    margin: 16px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.nav-dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.5);
}

.nav-dot.active {
    background: #ffffff;
    transform: scale(1.8);
}

@media (max-width: 768px) {
    .section {
        height: 100vh;
        min-height: 100vh;
        max-height: 100vh;
    }
    .container {
        padding: 60px 20px;
    }
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.3rem; }
    .contact-info {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    .business-areas {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-top: 24px;
        padding: 0 20px;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }
    .business-card {
        width: auto;
        height: 120px;
        padding: 20px 16px;
    }
    .business-card h3 {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    .business-card p {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    .support-cards {
        flex-direction: column;
        gap: 16px;
        margin-top: 32px;
        padding: 0 20px;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }
}

#root, #app {
    height: 100vh !important;
    min-height: 100vh !important;
}

.inquiry_form {
    width: 100%;
    max-width: min(650px, 80vw);
    margin: clamp(5px, 1vh, 10px) auto;
    padding: clamp(20px, 2.5vw, 25px);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: clamp(16px, 3vw, 24px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    font-family: 'Inter', 'Noto Sans KR', sans-serif;
}

.form-row {
    display: flex;
    gap: clamp(12px, 1.8vw, 18px);
    margin-bottom: clamp(10px, 1.8vw, 15px);
    width: 100%;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: clamp(3px, 0.7vw, 4px);
    position: relative;
    width: 100%;
    min-width: 0;
}

.form-group.full-width {
    width: 100%;
    flex: 1 1 100%;
}

.inquiry_form label {
    display: block;
    font-size: clamp(0.85rem, 1.1vw, 0.95rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: clamp(2px, 0.7vw, 3px);
    text-align: left;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.inquiry_form input,
.inquiry_form select,
.inquiry_form textarea {
    width: 100%;
    min-width: 0;
    height: clamp(48px, 6vh, 56px);
    padding: clamp(6px, 1.3vw, 10px) clamp(10px, 1.5vw, 14px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: clamp(8px, 2vw, 12px);
    font-size: clamp(0.85rem, 1.1vw, 0.95rem);
    line-height: clamp(1.2, 1.3vw, 1.3);
    color: #1a1a1a;
    background-color: rgba(255, 255, 255, 0.95);
    transition: all 0.3s ease;
    margin-top: 2px;
    font-family: 'Inter', 'Noto Sans KR', sans-serif;
    position: relative;
    box-sizing: border-box;
}

.inquiry_form input::placeholder,
.inquiry_form select::placeholder,
.inquiry_form textarea::placeholder {
    font-size: clamp(0.8rem, 1.3vw, 0.9rem);
    color: rgba(26, 26, 26, 0.6);
}

.inquiry_form input.error::placeholder,
.inquiry_form select.error::placeholder,
.inquiry_form textarea.error::placeholder {
    color: #ff4444;
}

.error-message {
    position: absolute;
    bottom: -20px;
    left: 0;
    font-size: clamp(0.7rem, 0.9vw, 0.8rem);
    color: #ff4444;
    display: none;
    text-shadow: none;
    font-weight: 500;
    padding-top: 2px;
}

.form-group.error .error-message {
    display: block;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #ff4444;
    background-color: rgba(255, 255, 255, 0.95);
}

.form-group.error input:focus,
.form-group.error select:focus,
.form-group.error textarea:focus {
    border-color: #ff4444;
    box-shadow: 0 0 0 3px rgba(255, 68, 68, 0.15);
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.inquiry_form select {
    height: clamp(42px, 5vh, 48px);
    cursor: pointer;
    appearance: none;
    background-color: rgba(255, 255, 255, 0.95);
    color: #1a1a1a;
    padding: clamp(6px, 1.3vw, 10px) clamp(10px, 1.5vw, 14px);
    padding-right: 35px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666666' d='M6 8.825L1.175 4 2.05 3.125 6 7.075 9.95 3.125 10.825 4z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    font-size: clamp(0.85rem, 1.1vw, 0.95rem);
    line-height: 1.3;
}

.inquiry_form select.error {
    border-color: #ff4444;
    background-color: rgba(255, 255, 255, 0.95);
    color: #ff4444;
}

.inquiry_form select.error option {
    color: #1a1a1a;
}

.inquiry_form select.error option:first-child {
    color: #ff4444;
}

.inquiry_form select.error:focus {
    border-color: #ff4444;
    box-shadow: 0 0 0 3px rgba(255, 68, 68, 0.15);
}

.inquiry_form textarea {
    height: clamp(100px, 16vh, 160px);
    min-height: clamp(100px, 16vh, 160px);
    resize: vertical;
    line-height: clamp(1.2, 1.3vw, 1.3);
}

@media (min-width: 1024px) {
    .inquiry_form input,
    .inquiry_form select {
        height: clamp(46px, 5.5vh, 54px);
        padding: clamp(6px, 1.3vw, 10px) clamp(10px, 1.5vw, 14px);
        font-size: clamp(0.85rem, 1.1vw, 0.95rem);
    }

    .inquiry_form textarea {
        height: clamp(90px, 14vh, 150px);
        min-height: clamp(90px, 14vh, 150px);
    }

    .inquiry_form label {
        font-size: clamp(0.85rem, 1.1vw, 0.95rem);
        margin-bottom: clamp(2px, 0.7vw, 3px);
    }

    .form-row {
        gap: clamp(12px, 1.8vw, 18px);
        margin-bottom: clamp(12px, 1.8vw, 18px);
    }

    .form-group {
        gap: clamp(3px, 0.7vw, 4px);
    }

    .submit-btn {
        padding: clamp(10px, 1.5vw, 14px) clamp(16px, 2vw, 20px);
        font-size: clamp(0.85rem, 1.1vw, 0.95rem);
        margin-top: clamp(12px, 1.8vw, 16px);
    }
}

@media screen and (min-width: 1024px) and (-webkit-device-pixel-ratio: 1.25) {
    .inquiry_form input,
    .inquiry_form select {
        height: clamp(40px, 5vh, 48px);
        padding: clamp(5px, 1.2vw, 8px) clamp(8px, 1.3vw, 12px);
        padding-right: 32px;
    }

    .inquiry_form textarea {
        height: clamp(80px, 12vh, 120px);
        min-height: clamp(80px, 12vh, 120px);
    }

    .inquiry_form label {
        font-size: clamp(0.8rem, 1vw, 0.9rem);
    }

    .form-row {
        gap: clamp(10px, 1.5vw, 15px);
        margin-bottom: clamp(10px, 1.5vw, 15px);
    }
}

@media screen and (min-width: 1024px) and (-webkit-device-pixel-ratio: 1.5) {
    .inquiry_form input,
    .inquiry_form select {
        height: clamp(36px, 4.5vh, 44px);
        padding: clamp(4px, 1.1vw, 7px) clamp(7px, 1.2vw, 10px);
        padding-right: 30px;
    }

    .inquiry_form textarea {
        height: clamp(70px, 10vh, 100px);
        min-height: clamp(70px, 10vh, 100px);
    }

    .inquiry_form label {
        font-size: clamp(0.75rem, 0.9vw, 0.85rem);
    }

    .form-row {
        gap: clamp(8px, 1.3vw, 12px);
        margin-bottom: clamp(8px, 1.3vw, 12px);
    }
}

@media screen and (min-width: 1024px) and (-webkit-device-pixel-ratio: 1.75) {
    .inquiry_form input,
    .inquiry_form select {
        height: clamp(32px, 4vh, 40px);
        padding: clamp(3px, 1vw, 6px) clamp(6px, 1.1vw, 8px);
        padding-right: 28px;
    }

    .inquiry_form textarea {
        height: clamp(60px, 8vh, 90px);
        min-height: clamp(60px, 8vh, 90px);
    }

    .inquiry_form label {
        font-size: clamp(0.7rem, 0.8vw, 0.8rem);
    }

    .form-row {
        gap: clamp(6px, 1.2vw, 10px);
        margin-bottom: clamp(6px, 1.2vw, 10px);
    }
}

.submit-btn {
    position: relative;
    width: 100%;
    padding: clamp(10px, 1.5vw, 14px) clamp(16px, 2vw, 20px);
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 50%, #b8860b 100%);
    color: #1a1a1a;
    border: none;
    border-radius: clamp(8px, 2vw, 12px);
    font-size: clamp(0.85rem, 1.1vw, 0.95rem);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-family: 'Inter', 'Noto Sans KR', sans-serif;
    margin-top: clamp(12px, 1.8vw, 16px);
    letter-spacing: 1px;
    overflow: hidden;
}

.submit-btn .btn-text {
    position: relative;
    z-index: 1;
    display: inline-block;
}

.submit-btn.success .btn-text {
    color: #28a745;
}

.submit-btn.error .btn-text {
    color: #dc3545;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn .spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.submit-btn.loading .spinner {
    opacity: 1;
    visibility: visible;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@media (max-width: 1024px) {
    #page6 .content {
        margin-top: -15px;
    }

    .inquiry-content {
        padding: 30px;
    }

    .inquiry_form {
        max-width: 700px;
        padding: 35px;
        margin: 0 auto;
    }

    .form-row {
        gap: 25px;
    }

    #page6 h2 {
        font-size: 36px;
    }

    .inquiry_form input,
    .inquiry_form select,
    .inquiry_form textarea {
        padding: 13px 16px;
    }

    .submit-btn {
        padding: 15px 26px;
        font-size: 1.05rem;
    }
}

@media (max-width: 768px) {
    .inquiry-content {
        padding: 0 15px;
        width: 100%;
    }

    .inquiry_form {
        padding: 20px 15px;
        margin: 10px auto;
        max-width: 100%;
    }

    .form-row {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 15px;
    }

    .form-group {
        width: 100%;
        margin-bottom: 5px;
    }

    .form-group.full-width {
        width: 100%;
    }

    #page6 h2 {
        font-size: 32px;
    }

    .inquiry_form input,
    .inquiry_form select {
        height: 42px;
        font-size: 0.9rem;
        padding: 8px 12px;
    }

    .inquiry_form textarea {
        height: 80px;
        min-height: 80px;
        font-size: 0.9rem;
        padding: 8px 12px;
    }

    .inquiry_form label {
        font-size: 0.85rem;
        margin-bottom: 4px;
    }

    .error-message {
        font-size: 0.75rem;
        bottom: -18px;
    }

    .submit-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .inquiry-content {
        padding: 0 10px;
    }

    .inquiry_form {
        padding: 15px 10px;
        margin: 5px auto;
        max-width: 100%;
    }

    .form-row {
        gap: 12px;
        margin-bottom: 12px;
    }

    #page6 h2 {
        font-size: 28px;
    }

    .inquiry_form input,
    .inquiry_form select {
        height: 38px;
        font-size: 0.85rem;
        padding: 6px 10px;
    }

    .inquiry_form textarea {
        height: 70px;
        min-height: 70px;
        font-size: 0.85rem;
        padding: 6px 10px;
    }

    .inquiry_form label {
        font-size: 0.8rem;
        margin-bottom: 3px;
    }

    .error-message {
        font-size: 0.7rem;
        bottom: -16px;
    }

    .submit-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
        margin-top: 12px;
    }
}

@media (max-width: 320px) {
    .inquiry-content {
        padding: 0 8px;
    }

    .inquiry_form {
        padding: 12px 8px;
        margin: 0;
    }

    .form-row {
        gap: 10px;
        margin-bottom: 10px;
    }

    #page6 h2 {
        font-size: 24px;
    }

    .inquiry_form input,
    .inquiry_form select {
        height: 36px;
        font-size: 0.8rem;
        padding: 5px 8px;
    }

    .inquiry_form textarea {
        height: 60px;
        min-height: 60px;
        font-size: 0.8rem;
        padding: 5px 8px;
    }

    .inquiry_form label {
        font-size: 0.75rem;
        margin-bottom: 2px;
    }

    .error-message {
        font-size: 0.65rem;
        bottom: -14px;
    }

    .submit-btn {
        padding: 8px 14px;
        font-size: 0.8rem;
        margin-top: 10px;
    }
}

.hamburger-menu {
    position: fixed;
    top: 13px;
    right: 20px;
    z-index: 1000;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    color: #d4af37;
    font-size: 24px;
    transition: all 0.3s ease;
}

.hamburger-menu:hover {
    color: #ffd700;
    transform: scale(1.1);
}

.slide-menu.active ~ .hamburger-menu {
    opacity: 0;
    visibility: hidden;
}

.slide-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: rgba(26, 26, 26, 0.95);
    z-index: 999;
    transition: right 0.3s ease;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
}

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

.menu-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.overlay-footer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    pointer-events: none;
}

.overlay-footer.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.footer-content {
    text-align: center;
    color: #ffffff;
    padding: 0 20px;
    transform: translateY(50px);
    transition: transform 0.5s ease;
}

.overlay-footer.active .footer-content {
    transform: translateY(0);
}

.footer-info {
    margin-bottom: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.info-item i {
    font-size: 24px;
    color: #d4af37;
}

.info-item p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.social-icon {
    color: #ffffff;
    font-size: 32px;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.social-icon:hover {
    color: #d4af37;
    opacity: 1;
    transform: translateY(-5px);
}

.footer-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .contact-info {
        gap: 15px;
        margin-bottom: 25px;
    }

    .info-item i {
        font-size: 22px;
    }

    .info-item p {
        font-size: 1rem;
    }

    .social-links {
        gap: 25px;
        margin-bottom: 25px;
    }

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

    .footer-content p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .contact-info {
        gap: 12px;
        margin-bottom: 20px;
    }

    .info-item {
        flex-direction: column;
        gap: 8px;
    }

    .info-item i {
        font-size: 20px;
    }

    .info-item p {
        font-size: 0.9rem;
    }

    .social-links {
        gap: 20px;
        margin-bottom: 20px;
    }

    .social-icon {
        font-size: 24px;
    }

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

@media (max-width: 480px) {
    .contact-info {
        gap: 10px;
        margin-bottom: 15px;
    }

    .info-item i {
        font-size: 18px;
    }

    .info-item p {
        font-size: 0.8rem;
    }

    .social-links {
        gap: 15px;
        margin-bottom: 15px;
    }

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

    .footer-content p {
        font-size: 0.8rem;
    }
}

.menu-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-header h3 {
    color: #ffffff;
    margin: 0;
    font-size: 1.2rem;
}
.close-menu:hover {
    color: #d4af37;
}

.menu-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-items li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-items a {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.menu-items a i {
    width: 24px;
    margin-right: 10px;
    font-size: 18px;
}

.menu-items a:hover {
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
}

.menu-items a.active {
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 1024px) {
    #page1 h1 {
        font-size: 4rem;
    }

    #page1 h3 {
        font-size: 1.8rem;
    }

    #page1 p {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    #page1 h1 {
        font-size: 3rem;
    }

    #page1 h3 {
        font-size: 1.5rem;
    }

    #page1 p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    #page1 h1 {
        font-size: 2.5rem;
    }

    #page1 h3 {
        font-size: 1.2rem;
    }

    #page1 p {
        font-size: 1rem;
    }
}

@media (max-width: 320px) {
    #page1 h1 {
        font-size: 2rem;
    }

    #page1 h3 {
        font-size: 1rem;
    }

    #page1 p {
        font-size: 0.9rem;
    }
}

.image-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
    background-color: #fff;
}

.image-background img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transform: none;
    pointer-events: none;
}

.image-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    pointer-events: none;
}

.slide-container.active {
    opacity: 1;
}

.slide-container .slide {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.slide-container .top-text {
    position: absolute;
    bottom: 120px;
    left: 50px;
    font-size: 24px;
    color: #2b3674;
    font-weight: bold;
    z-index: 2;
    text-align: center;
    width: 350px;
}

.slide-container .step-box {
    position: absolute;
    bottom: 40px;
    left: 50px;
    background-color: #2b3674;
    color: white;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    max-width: 350px;
    clip-path: polygon(0% 0%, 90% 0%, 100% 50%, 90% 100%, 0% 100%, 10% 50%);
    z-index: 2;
}

.slide-container .step-text {
    font-size: 22px;
    font-weight: bold;
    color: white;
    padding: 0 15px;
    white-space: nowrap;
}

.slide-container .description {
    position: absolute;
    bottom: 50px;
    right: 50px;
    font-size: 16px;
    color: #333;
    text-align: left;
    line-height: 1.4;
    max-width: 400px;
    z-index: 2;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(43, 54, 116, 0.7);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: all 0.3s ease;
    pointer-events: auto !important;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.slider-arrow:hover {
    background: rgba(43, 54, 116, 1);
}

.prev-arrow {
    left: 20px;
}

.next-arrow {
    right: 20px;
}

.slider-arrow i {
    font-size: 24px;
}

@media screen and (max-width: 1024px) {
    .slider-arrow {
        width: 45px;
        height: 45px;
    }

    .slider-arrow i {
        font-size: 22px;
    }
}

@media screen and (max-width: 768px) {
    .slider-arrow {
        width: 40px;
        height: 40px;
    }

    .slider-arrow i {
        font-size: 20px;
    }

    .prev-arrow {
        left: 15px;
    }

    .next-arrow {
        right: 15px;
    }
}

@media screen and (max-width: 480px) {
    .slider-arrow {
        width: 35px;
        height: 35px;
    }

    .slider-arrow i {
        font-size: 18px;
    }

    .prev-arrow {
        left: 10px;
    }

    .next-arrow {
        right: 10px;
    }
}

@media screen and (max-width: 320px) {
    .slider-arrow {
        width: 30px;
        height: 30px;
    }

    .slider-arrow i {
        font-size: 16px;
    }

    .prev-arrow {
        left: 8px;
    }

    .next-arrow {
        right: 8px;
    }
}

@media screen and (max-width: 768px) {
    .slide-container .top-text {
        bottom: 100px;
        left: 30px;
        font-size: 20px;
        width: 280px;
    }

    .slide-container .step-box {
        bottom: 25px;
        left: 30px;
        padding: 10px 20px;
        max-width: 280px;
    }

    .slide-container .step-text {
        font-size: 18px;
        padding: 0 10px;
    }

    .slide-container .description {
        bottom: 30px;
        right: 30px;
        font-size: 14px;
        max-width: 300px;
    }
}

@media screen and (max-width: 480px) {
    .slide-container .top-text {
        top: 20px;
        bottom: auto;
        left: 50%;
        transform: translateX(-50%);
        font-size: 18px;
        width: 250px;
    }

    .slide-container .step-box {
        top: 60px;
        bottom: auto;
        left: 50%;
        transform: translateX(-50%);
        padding: 8px 15px;
        max-width: 250px;
    }

    .slide-container .step-text {
        font-size: 16px;
        padding: 0 8px;
    }

    .slide-container .description {
        bottom: 30px;
        left: 20px;
        right: 20px;
        font-size: 12px;
        max-width: 100%;
        padding: 0 15px;
        text-align: center;
    }
}

@media screen and (min-width: 1024px) and (-webkit-device-pixel-ratio: 1.25) {
    .slide-container .step-box {
        max-width: 300px;
        padding: 12px 25px;
    }

    .slide-container .step-text {
        font-size: 20px;
        padding: 0 12px;
    }
}

@media screen and (min-width: 1024px) and (-webkit-device-pixel-ratio: 1.5) {
    .slide-container .step-box {
        max-width: 280px;
        padding: 10px 20px;
    }

    .slide-container .step-text {
        font-size: 18px;
        padding: 0 10px;
    }
}

@media screen and (min-width: 1024px) and (-webkit-device-pixel-ratio: 1.75) {
    .slide-container .step-box {
        max-width: 250px;
        padding: 8px 15px;
    }

    .slide-container .step-text {
        font-size: 16px;
        padding: 0 8px;
    }
}

@media screen and (max-width: 1024px) {
    .slide-container .step-box {
        max-width: 320px;
        padding: 12px 25px;
    }

    .slide-container .step-text {
        font-size: 20px;
        padding: 0 12px;
    }
}

@media screen and (max-width: 768px) {
    .slide-container .step-box {
        bottom: 30px;
        left: 30px;
        padding: 10px 20px;
        max-width: 280px;
    }

    .slide-container .step-text {
        font-size: 18px;
        padding: 0 10px;
    }
}

@media screen and (max-width: 480px) {
    .slide-container .step-box {
        top: 70px;
        left: 50%;
        transform: translateX(-50%);
        bottom: auto;
        padding: 8px 15px;
        max-width: 250px;
    }

    .slide-container .step-text {
        font-size: 16px;
        padding: 0 8px;
    }
}

@media screen and (max-width: 320px) {
    .slide-container .step-box {
        max-width: 220px;
        padding: 6px 12px;
    }

    .slide-container .step-text {
        font-size: 14px;
        padding: 0 6px;
    }
}

@media screen and (min-width: 1000px) and (max-width: 1440px) {
    .slide-container .top-text {
        bottom: 110px;
        left: 40px;
        width: 300px;
    }

    .slide-container .step-box {
        bottom: 35px;
        left: 40px;
        padding: 12px 25px;
        max-width: 300px;
    }

    .slide-container .step-text {
        font-size: 20px;
    }
}

@media screen and (max-width: 1024px) {
    .slide-container .top-text {
        bottom: 110px;
        left: 40px;
        width: 320px;
    }

    .slide-container .step-box {
        bottom: 35px;
        left: 40px;
    }
}

@media screen and (max-width: 768px) {
    .slide-container .top-text {
        bottom: 100px;
        left: 30px;
        font-size: 20px;
        width: 280px;
    }

    .slide-container .step-box {
        bottom: 25px;
        left: 30px;
        padding: 10px 20px;
        max-width: 280px;
    }
}

@media screen and (max-width: 480px) {
    .slide-container .top-text {
        top: 20px;
        bottom: auto;
        left: 50%;
        transform: translateX(-50%);
        font-size: 18px;
        width: 250px;
    }

    .slide-container .step-box {
        top: 60px;
        bottom: auto;
        left: 50%;
        transform: translateX(-50%);
        padding: 8px 15px;
        max-width: 250px;
    }
}

@media screen and (max-width: 320px) {
    .slide-container .top-text {
        top: 15px;
        font-size: 16px;
        width: 220px;
    }

    .slide-container .step-box {
        top: 50px;
        max-width: 220px;
        padding: 6px 12px;
    }
}

#page3 .content,
#page4 .content,
#page5 .content {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

#page3 h2,
#page4 h2,
#page5 h2 {
    font-size: 4.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0;
    text-shadow: 0 6px 12px rgba(0, 0, 0, 0.7), 0 3px 6px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
    font-family: 'Inter', sans-serif;
    position: relative;
}

#page3 h2::after,
#page4 h2::after,
#page5 h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: #ffffff;
}

#page3 p,
#page4 p,
#page5 p {
    font-size: 1.5rem;
    color: #ffffff;
    margin-top: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 0.3s;
    font-family: 'Noto Sans KR', sans-serif;
    line-height: 1.6;
    letter-spacing: 0.5px;
    font-weight: 400;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5), 0 2px 4px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1024px) {
    #page3 h2,
    #page4 h2,
    #page5 h2 {
        font-size: 3.5rem;
    }

    #page3 p,
    #page4 p,
    #page5 p {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    #page3 h2,
    #page4 h2,
    #page5 h2 {
        font-size: 2.8rem;
    }

    #page3 p,
    #page4 p,
    #page5 p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    #page3 h2,
    #page4 h2,
    #page5 h2 {
        font-size: 2.2rem;
    }

    #page3 p,
    #page4 p,
    #page5 p {
        font-size: 1rem;
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.text-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(45deg, #ffffff, #c0c0c0);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    box-shadow: 0 0 8px rgba(192, 192, 192, 0.6);
}

#page5 h2 {
    font-size: 4.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0;
    text-shadow: 0 8px 16px rgba(0, 0, 0, 0.8), 0 4px 8px rgba(0, 0, 0, 0.6), 0 2px 4px rgba(0, 0, 0, 0.4), 0 0 0 3px rgba(255, 255, 255, 0.8);
    letter-spacing: 2px;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
    font-family: 'Inter', sans-serif;
    position: relative;
}

#page5 h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: #2c3e50;
}

#page5 p {
    font-size: 1.5rem;
    color: #34495e;
    margin-top: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 0.3s;
    font-family: 'Noto Sans KR', sans-serif;
    line-height: 1.6;
    letter-spacing: 0.5px;
    font-weight: 400;
    text-shadow: 0 6px 12px rgba(0, 0, 0, 0.7), 0 3px 6px rgba(0, 0, 0, 0.5), 0 0 0 2px rgba(255, 255, 255, 0.9);
}

@media (max-width: 1024px) {
    #page5 h2 {
        font-size: 3.5rem;
    }

    #page5 p {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    #page5 h2 {
        font-size: 2.8rem;
    }

    #page5 p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    #page5 h2 {
        font-size: 2.2rem;
    }

    #page5 p {
        font-size: 1rem;
    }
}

#page5 .content {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    pointer-events: none;
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: none;
    box-shadow: none;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #000;
    color: #fff;
    padding: 8px;
    text-decoration: none;
    z-index: 1000;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 6px;
}

@media print {
    .video-background,
    .video-overlay,
    .side-nav,
    .hamburger-menu,
    .slide-menu,
    .overlay-footer {
        display: none !important;
    }
    
    .section {
        position: static !important;
        height: auto !important;
        page-break-inside: avoid;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    h1, h2, h3, h4, h5, h6 {
        color: black !important;
    }
}

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

@media (prefers-contrast: high) {
    .video-overlay {
        background: rgba(0, 0, 0, 0.7) !important;
    }
    
    .business-card {
        border: 2px solid #fff !important;
    }
    
    .submit-btn {
        border: 2px solid #fff !important;
    }
}

@media (prefers-color-scheme: dark) {
}

.loading {
    opacity: 0.7;
    pointer-events: none;
}

.success {
    border-color: #28a745 !important;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25) !important;
}