@font-face {
    font-family: 'Pretendard';
    src: url('../fonts/PretendardVariable.woff2') format('woff2-variations');
    font-weight: 45 920;
    font-style: normal;
    font-display: swap;
}

:root {
    /* Colors */
    --primary-blue: #1E40AF;
    --text-dark: #171717;
    --bg-light: #F2F7FF;
    --text-black: #121212;
    --text-gray-900: #171717;
    --text-gray-800: #212124;
    --text-gray-700: #374151;
    --text-gray-600: #6b7280;
    --text-gray-500: #9ca3af;
    --text-gray-400: #e5e5e5;
    --bg-gray-300: rgba(0, 29, 58, 0.18);
    --bg-gray-200: #f4f6fa;
    --bg-gray-100: #f7f8fb;
    --bg-gray-50: #f9fafb;
    --white: #FFFFFF;
    --black: #000000;

    /* Typography */
    --font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    --font-size-base: clamp(14px, 2vw, 16px);
    
    /* Breakpoints */
    --bp-sm: 640px;
    --bp-md: 768px;
    --bp-lg: 1024px;
    --bp-xl: 1200px;

    /* Spacing */
    --space-base: clamp(16px, 4vw, 40px);
    --container-padding: clamp(16px, 4vw, 40px);
    
    /* Component Specific */
    --nav-height: 60px;
    --hero-height: clamp(600px, 70vh, 884px);
    --hero-title-size: clamp(32px, 5vw, 48px);
    --hero-subtitle-size: clamp(18px, 2.5vw, 24px);

    /* Shadows */
    --shadow-card: 0 2px 78.7px rgba(65, 65, 65, 0.2);
    --shadow-image: -27px 48px 29.2px rgba(0, 0, 0, 0.25);

    /* Benefits Typography */
    --benefit-title-size: clamp(28px, 4vw, 32px);
    --benefit-description-size: clamp(16px, 1.8vw, 20px);
    --benefit-badge-size: clamp(14px, 1vw, 16px);

    /* Features Typography */
    --features-title-size: clamp(28px, 4vw, 32px);
    --features-subtitle-size: clamp(20px, 3vw, 25px);
}

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

html {
    font-size: var(--font-size-base);
    scroll-behavior: smooth;
}

body {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    color: var(--text-black);
    background-color: var(--white);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

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

a {
    text-decoration: none;
    color: inherit;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 24px;
    width: auto;
}

.nav-buttons {
    display: flex;
    gap: 24px;
    align-items: center;
}

.btn-login {
    font-size: 15px;
    font-weight: 400;
    color: #666666;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.btn-signup {
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    background: #0166ff;
    padding: 8px 16px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-signup:hover {
    background: #0052cc;
}

/* Hero Section - Mobile First */
.hero-section {
    position: relative;
    height: var(--hero-height);
    display: flex;
    align-items: center;
    margin-top: var(--nav-height);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

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

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4), transparent);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 var(--container-padding);
    margin: 0 auto;
}

.hero-text {
    max-width: 100%;
}

.hero-title {
    font-size: var(--hero-title-size);
    font-weight: 700;
    line-height: 1.3;
    color: var(--white);
    margin-bottom: calc(var(--space-base) * 0.6);
}

.hero-subtitle {
    font-size: var(--hero-subtitle-size);
    font-weight: 400;
    line-height: 1.5;
    color: var(--white);
    margin-bottom: var(--space-base);
}

.hero-cta-btn {
    background: #0166ff;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-cta-btn:hover {
    background: #0052cc;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(1, 102, 255, 0.3);
}

/* Tablet (641px and up) */
@media (min-width: 641px) {
    .hero-text {
        max-width: 500px;
    }
}

/* Desktop (1025px and up) */
@media (min-width: 1025px) {
    .hero-content {
        max-width: var(--bp-xl);
    }
    
    .hero-text {
        max-width: 600px;
    }
}

/* Features Section */
.features {
    background: #F9FAFB;
    padding: 160px 0;
    text-align: center;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.features-title {
    font-size: var(--features-title-size);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -1px;
    color: #666666;
    margin-bottom: 80px;
    word-break: keep-all;
}

.features-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 80px;
}

.features-icon img {
    width: clamp(140px, 12vw, 180px);
    height: auto;
    max-width: 100%;
}

.features-subtitle {
    font-size: var(--features-subtitle-size);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #388EFF 0%, #086CFF 57%, #0166FF 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    word-break: keep-all;
    color: #ffffff;
}

/* Tablet (641px and up) */
@media (min-width: 641px) {
    .features {
        padding: 80px 0;
    }

    .features-container {
        max-width: 80%;
    }
    
    .features-icon img {
        width: clamp(180px, 16vw, 220px);
    }
}

/* Desktop (1025px and up) */
@media (min-width: 1025px) {
    .features {
        padding: 120px 0;
    }

    .features-container {
        max-width: var(--bp-xl);
    }
    
    .features-icon img {
        width: clamp(220px, 15vw, 280px);
    }
}

/* 간편한 견적 방식 Section */
.frame-2147236940,
.frame-2147236940 * {
    box-sizing: border-box;
}

.frame-2147236940 {
    background: #ecf4ff;
    min-height: 352px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: clamp(40px, 6vw, 80px) clamp(16px, 4vw, 40px);
}

.service-text {
    color: var(--neutral-black, #121212);
    text-align: center;
    font-family: var(--font-family, "Pretendard", sans-serif);
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.35;
    letter-spacing: -0.02em;
    font-weight: 700;
    margin-bottom: clamp(12px, 2vw, 20px);
    word-break: keep-all;
}

.service-subtitle {
    color: #0166ff;
    text-align: center;
    font-family: "Pretendard", sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.35;
    letter-spacing: -0.02em;
    font-weight: 700;
    margin-bottom: 0;
    word-break: keep-all;
}

.background {
    background: #dbeafe;
    border-radius: 9999px;
    padding: clamp(8px, 1.5vw, 12px) clamp(16px, 3vw, 24px);
    display: flex;
    flex-direction: row;
    gap: clamp(6px, 1vw, 10px);
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-bottom: clamp(24px, 4vw, 40px);
}

.background:hover {
    background: #bfdbfe;
    transform: translateY(-2px);
}

.svg {
    flex-shrink: 0;
    width: clamp(18px, 2vw, 24px);
    height: clamp(18px, 2vw, 24px);
    position: relative;
    overflow: visible;
}

.frame-2147236940 .div {
    color: #1d4ed8;
    text-align: center;
    font-family: "Pretendard", sans-serif;
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.3;
    letter-spacing: -0.02em;
    font-weight: 500;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .frame-2147236940 {
        min-height: 280px;
    }
    
    .service-text {
        font-size: clamp(24px, 6vw, 32px);
    }
    
    .service-subtitle {
        font-size: clamp(28px, 6vw, 36px);
    }
}

@media (max-width: 480px) {
    .frame-2147236940 {
        min-height: 240px;
    }
    
    .service-text {
        font-size: clamp(20px, 7vw, 28px);
    }
    
    .service-subtitle {
        font-size: clamp(24px, 7vw, 32px);
    }
    
    .frame-2147236940 .div {
        font-size: clamp(16px, 4vw, 18px);
    }
}

/* 견적 방식 상세 Section */
.frame-2147236941,
.frame-2147236941 * {
    box-sizing: border-box;
}

.frame-2147236941 {
    background: #ecf4ff;
    padding: 60px 20px 120px 20px;
    position: relative;
    overflow: hidden;
}

.ex-1, .ex-2, .ex-3 {
    background: #ffffff;
    border-radius: 48px;
    max-width: 1152px;
    width: 100%;
    height: auto;
    min-height: 644px;
    margin: 0 auto 60px auto;
    box-shadow: -9px 10px 39.9px 0px rgba(0, 0, 0, 0.14);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    padding: 60px 60px 0 60px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.ex-1.animate, .ex-2.animate, .ex-3.animate {
    opacity: 1;
    transform: translateY(0);
}

/* 호버 효과 (데스크탑만) */
@media (hover: hover) {
    .ex-1:hover, .ex-2:hover, .ex-3:hover {
        transform: translateY(-8px);
        box-shadow: -9px 18px 60px 0px rgba(0, 0, 0, 0.18);
    }
}

.ex-3 {
    margin-bottom: 0;
}

.usp-3 {
    background: rgba(18, 18, 18, 0);
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    justify-content: center;
    width: 50%;
    max-width: 482px;
    padding-right: 40px;
}

.frame-2147236941 .service-text {
    color: #0166ff;
    text-align: left;
    font-family: "Pretendard", sans-serif;
    font-size: 48px;
    line-height: 1.35;
    letter-spacing: -0.02em;
    font-weight: 700;
    position: relative;
    margin-bottom: 0;
}

.service-text2 {
    color: #4b5563;
    text-align: left;
    font-family: "Pretendard", sans-serif;
    font-size: 24px;
    line-height: 1.4;
    letter-spacing: -0.02em;
    font-weight: 400;
    position: relative;
}

.no-wrap {
    white-space: nowrap;
}

/* 태블릿 이하에서는 줄바꿈 허용 */
@media (max-width: 1024px) {
    .no-wrap {
        white-space: normal;
    }
}

.ex-12, .ex-22, .ex-32 {
    width: 50%;
    max-width: 522px;
    height: auto;
    object-fit: cover;
    aspect-ratio: 522/583;
    border-radius: 24px 24px 0 0;
    position: absolute;
    bottom: 0;
    right: 60px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

/* 태블릿 대응 */
@media (max-width: 1024px) {
    .frame-2147236941 {
        padding: 40px 20px 100px 20px;
    }
    
    .ex-1, .ex-2, .ex-3 {
        max-width: 90%;
        padding: 40px 40px 0 40px;
        margin-bottom: 40px;
        min-height: 500px;
        align-items: center;
    }
    
    .usp-3 {
        width: 55%;
        padding-right: 20px;
        justify-content: center;
    }
    
    .frame-2147236941 .service-text {
        font-size: 36px;
    }
    
    .service-text2 {
        font-size: 20px;
    }
    
    .ex-12, .ex-22, .ex-32 {
        width: 45%;
        max-width: 400px;
        right: 40px;
    }
}

/* 모바일 대응 */
@media (max-width: 768px) {
    .frame-2147236941 {
        padding: 32px 16px 80px 16px;
    }
    
    .ex-1, .ex-2, .ex-3 {
        flex-direction: column;
        padding: 32px 24px 0 24px;
        margin-bottom: 32px;
        min-height: auto;
        border-radius: 32px;
        align-items: center;
    }
    
    .usp-3 {
        width: 100%;
        padding-right: 0;
        margin-bottom: 24px;
        text-align: center;
        align-items: center;
        justify-content: center;
    }
    
    .frame-2147236941 .service-text {
        text-align: center;
        font-size: 28px;
    }
    
    .service-text2 {
        text-align: center;
        font-size: 18px;
    }
    
    .ex-12, .ex-22, .ex-32 {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
        position: relative;
        bottom: auto;
        right: auto;
        border-radius: 0 0 32px 32px;
    }
}

/* 작은 모바일 대응 */
@media (max-width: 480px) {
    .frame-2147236941 {
        padding: 24px 12px 60px 12px;
    }
    
    .ex-1, .ex-2, .ex-3 {
        padding: 24px 16px 0 16px;
        margin-bottom: 24px;
        border-radius: 24px;
    }
    
    .usp-3 {
        gap: 16px;
        margin-bottom: 20px;
        justify-content: center;
    }
    
    .frame-2147236941 .service-text {
        font-size: 24px;
    }
    
    .service-text2 {
        font-size: 16px;
        line-height: 1.5;
    }
    
    .ex-12, .ex-22, .ex-32 {
        max-width: 300px;
        border-radius: 0 0 24px 24px;
    }
}

/* Benefits Section */
.benefits {
    background: var(--white);
    padding: clamp(60px, 10vw, 180px) 0;
    overflow-x: hidden;
    box-sizing: border-box;
    max-width: 100vw;
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 40px);
}

.benefit-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: clamp(40px, 5vw, 80px);
    margin-bottom: clamp(80px, 10vw, 160px);
}

.benefit-item:last-child {
    margin-bottom: 0;
}

.benefit-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    margin-right: clamp(40px, 8vw, 120px);
}

.benefit-content-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    margin-left: clamp(40px, 8vw, 120px);
}

.benefit-badge {
    display: inline-flex;
    align-items: center;
    padding: clamp(8px, 2vw, 12px) clamp(16px, 3vw, 24px);
    border: 1px solid #e0e0e0;
    border-radius: 25px;
    font-size: var(--benefit-badge-size);
    line-height: 1.5;
    color: #666666;
    margin-bottom: clamp(20px, 4vw, 32px);
    background: #ffffff;
    width: fit-content;
    white-space: nowrap;
}

.benefit-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -1px;
    color: var(--text-black);
    margin-bottom: clamp(16px, 3vw, 24px);
    word-break: keep-all;
}

.benefit-description {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: -0.5px;
    color: #666666;
    word-break: keep-all;
    max-width: 400px;
}

.benefit-description br {
    display: block;
    margin-bottom: 4px;
}

.benefit-description .note {
    font-size: clamp(14px, 1.4vw, 16px);
    color: #999999;
    font-weight: 400;
    display: block;
    margin-top: 8px;
    line-height: 1.4;
}

.benefit-image {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: clamp(20px, 4vw, 60px);
}

.benefit-image-center {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: clamp(20px, 4vw, 100px);
}

.benefit-image img,
.benefit-image-center img {
    width: clamp(260px, 28vw, 340px);
    height: auto;
    display: block;
    max-width: 100%;
}

@media (max-width: 1024px) {
    .benefits {
        padding: 140px 0;
    }
    
    .benefits-container {
        padding: 0 40px;
    }

    .benefit-item {
        margin-bottom: clamp(60px, 8vw, 120px);
    }

    .benefit-content {
        margin-right: clamp(20px, 4vw, 60px);
    }

    .benefit-content-center {
        margin-left: clamp(20px, 4vw, 60px);
    }

    .benefit-image img,
    .benefit-image-center img {
        width: clamp(240px, 25vw, 320px);
    }
    
    .benefit-title {
        font-size: 36px;
    }
    
    .benefit-description {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .benefits {
        padding: 100px 0;
        text-align: center;
    }
    
    .benefits-container {
        padding: 0 32px;
    }

    .benefit-item {
        grid-template-columns: 1fr;
        gap: clamp(24px, 5vw, 40px);
        margin-bottom: clamp(80px, 12vw, 140px);
    }

    .benefit-content,
    .benefit-content-center {
        margin: 0 auto;
        align-items: center;
        text-align: center;
        padding: 0 clamp(16px, 4vw, 24px);
        order: 1;
    }

    .benefit-badge {
        margin: 0 auto clamp(16px, 3vw, 24px);
    }

    .benefit-title {
        text-align: center;
        margin-bottom: clamp(20px, 4vw, 32px);
        font-size: 28px;
    }

    .benefit-description {
        text-align: center;
        font-size: 18px;
        line-height: 1.6;
        word-break: keep-all;
        max-width: 400px;
        margin: 0 auto;
    }

    .benefit-image,
    .benefit-image-center {
        margin: 0 auto;
        order: 2;
    }

    .benefit-image img,
    .benefit-image-center img {
        width: clamp(220px, 48vw, 280px);
        margin: 0 auto;
    }
}

@media (max-width: 360px) {
    .benefits {
        padding: 60px 0;
    }
    
    .benefits-container {
        padding: 0 20px;
    }

    .benefit-item {
        margin-bottom: clamp(60px, 15vw, 100px);
    }

    .benefit-content,
    .benefit-content-center {
        padding: 0;
        order: 1;
    }

    .benefit-badge {
        font-size: clamp(12px, 3.5vw, 14px);
        padding: 6px 12px;
    }

    .benefit-title {
        font-size: 24px;
        margin-bottom: clamp(16px, 5vw, 24px);
    }

    .benefit-description {
        font-size: 16px;
        line-height: 1.6;
        max-width: 320px;
        word-break: keep-all;
        margin: 0 auto;
        text-align: center;
    }

    .benefit-description br {
        display: block;
        margin-bottom: 2px;
    }

    .benefit-image,
    .benefit-image-center {
        margin: 0;
        order: 2;
    }

    .benefit-image img,
    .benefit-image-center img {
        width: clamp(200px, 48vw, 260px);
        margin: 0 auto;
    }

    .features-title {
        margin-bottom: 24px;
    }

    .features-icon {
        margin-bottom: 24px;
    }

    .features-icon img {
        width: 70%;
        max-width: 240px;
    }
}

@media (max-width: 480px) {
    .benefit-description {
        font-size: 15px;
        line-height: 1.5;
        max-width: 320px;
        margin: 0 auto;
        word-break: keep-all;
    }
    
    .benefit-description .note {
        font-size: 13px;
        margin-top: 8px;
        display: block;
    }
}

/* ===== 캘린더 섹션 기본 스타일 ===== */
.calendar-section {
    padding: 160px 0;
    background-color: #F7F8FB;
    overflow: hidden;
}

.calendar-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: start;
}

.calendar-column {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.calendar-column.right-column {
    margin-top: -180px;
}

.calendar-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.calendar-label {
    display: inline-block;
    font-size: 26px;
    font-weight: 600;
    color: #0166ff;
    margin-bottom: 16px;
    text-align: left;
}

.calendar-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-black);
    margin-bottom: 32px;
    text-align: left;
}

.calendar-description {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.6;
    color: #666666;
    text-align: left;
    margin-right: 100px;
}

.calendar-image {
    width: 100%;
    max-width: 377px;
}

.calendar-img,
.calendar-img-1,
.calendar-img-2 {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.calendar-title .highlight {
    color: var(--color-primary-500);
}

.calendar-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.calendar-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* ===== 태블릿 반응형 ===== */
@media (max-width: 1024px) {
    .calendar-section {
        padding: 100px 0;
    }

    .calendar-grid {
        gap: 30px;
    }

    .calendar-column {
        gap: 30px;
    }

    .calendar-column.right-column {
        margin-top: -120px;
    }

    .calendar-content {
        margin-left: 50px;
    }

    .calendar-title {
        font-size: 40px;
    }

    .calendar-description {
        font-size: 18px;
    }
}

/* ===== 모바일 반응형 ===== */
@media (max-width: 640px) {
    .calendar-section {
        padding: 80px 0;
    }

    .calendar-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .calendar-column {
        gap: 24px;
    }

    .calendar-column.right-column {
        margin-top: 0;
    }

    .calendar-content {
        align-items: center;
        text-align: center;
    }

    .calendar-label {
        font-size: 18px;
        margin-bottom: 16px;
        text-align: center;
    }

    .calendar-title {
        font-size: 32px;
        margin-bottom: 24px;
        text-align: center;
    }

    .calendar-description {
        font-size: 15px;
        line-height: 1.5;
        text-align: center;
        margin-right: 0;
        word-break: keep-all;
        max-width: 320px;
        margin: 0 auto;
    }

    .calendar-image {
        max-width: 115%;
        margin: 0 auto;
        transform: translateX(-7%);
    }
}

@media (max-width: 640px) {
    .calendar-image img {
        width: 125%;
        height: auto;
        border-radius: 12px;
    }
}

@media (min-width: 640px) {
    .calendar-image {
        align-items: flex-start;
    }
}

/* ===== 캘린더 모바일 레이아웃 (세로 스크롤 기반 가로 슬라이드) ===== */
.calendar-mobile-layout {
    display: none;
}

.calendar-mobile-header {
    text-align: center;
    margin-bottom: 20px;
}

.calendar-mobile-slider {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-bottom: 2rem;
    overflow-x: hidden;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    position: relative;
    pointer-events: none;
}

.calendar-mobile-slider::-webkit-scrollbar {
    display: none;
}

.calendar-mobile-image-container {
    width: 640px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    flex-shrink: 0;
    pointer-events: none;
}

.calendar-mobile-img,
.calendar-img-m {
    width: 640px;
    height: auto;
    border-radius: 12px;
    object-fit: contain;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
}

.calendar-mobile-description {
    text-align: center;
    padding: 0 1rem;
}

.calendar-mobile-description .calendar-description {
    font-size: 15px;
    line-height: 1.5;
    word-break: keep-all;
    max-width: 350px;
    margin: 0 auto;
}

/* ===== 반응형 레이아웃 전환 ===== */
@media (max-width: 640px) {
    .calendar-grid {
        display: none;
    }
    
    .calendar-mobile-layout {
        display: block;
    }
}

@media (min-width: 641px) {
    .calendar-mobile-layout {
        display: none;
    }
    
    .calendar-grid {
        display: grid;
    }
}

/* ===== 데스크탑 이미지 교체 ===== */
@media (min-width: 641px) {
    .calendar-img-1 {
        content: url("../images/calendar-img-2.png");
    }

    .calendar-img-2 {
        content: url("../images/calendar-img-1.png");
    }
}

/* ===== 데스크탑 미디어 쿼리 추가 스타일 ===== */
@media (min-width: 640px) {
    .calendar-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
    }
    
    .calendar-content {
        text-align: center;
        justify-self: center;
        align-self: center;
    }
    
    .calendar-image {
        max-width: none;
        justify-self: center;
        align-self: center;
    }
    
    .calendar-label {
        font-size: 20px;
    }
    
    .calendar-title {
        font-size: 2.25rem;
    }
    
    .calendar-description {
        font-size: 1.125rem;
    }
}

@media (min-width: 1024px) {
    .calendar-label {
        font-size: 20px;
    }

    .calendar-grid {
        gap: 4rem;
    }
    
    .calendar-title {
        font-size: 2.75rem;
    }
    
    .calendar-description {
        font-size: 1.25rem;
    }
}



/* Icons */
.icon-check {
    width: 16px;
    height: 16px;
    display: block;
    object-fit: contain;
}

@media (min-width: 640px) {
    .icon-check {
        width: 20px;
        height: 20px;
    }
}

/* Reviews Section */
.reviews {
    background: var(--white);
    padding: 120px 0;
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.reviews-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -1px;
    color: var(--text-black);
    margin-bottom: 40px;
}

.reviews-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 80px;
}

.rating-score {
    font-size: 24px;
    font-weight: 500;
    color: #666666;
}

.rating-divider {
    font-size: 24px;
    color: #cccccc;
}

.rating-stars {
    display: flex;
    align-items: center;
}

.stars-image {
    height: 24px;
    width: auto;
}

/* 리뷰 슬라이더 */
.reviews-slider-container {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-slider {
    display: flex;
    animation: scrollReviews 30s linear infinite;
}

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

.reviews-slider:not(:hover) {
    animation-play-state: running;
}

.review-card {
    flex: 0 0 calc(33.333% - 32px);
    background: #FFFFFF;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    min-height: 280px;
    margin: 0 16px;
    width: 360px;
}

.review-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

@keyframes scrollReviews {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(0); }
}

.review-text {
    font-size: 18px;
    line-height: 1.6;
    color: #1A1A1A;
    margin: 0;
}

.review-text .highlight {
    color: #0166FF;
    font-weight: 600;
}

.review-footer {
    margin-top: 24px;
}

.review-author {
    font-size: 16px;
    color: #666666;
    text-align: center;
}

/* 슬라이더 컨트롤 */
.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 -20px;
}

.slider-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.slider-arrow:hover {
    background: #F3F4F6;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.slider-arrow.prev {
    transform: rotate(90deg);
    margin-left: -24px;
}

.slider-arrow.next {
    transform: rotate(-90deg);
    margin-right: -24px;
}

.arrow-icon {
    width: 24px;
    height: 24px;
    opacity: 0.6;
}

/* 태블릿 반응형 */
@media (max-width: 1024px) {
    .reviews-title {
        font-size: 40px;
    }

    .rating-score {
        font-size: 20px;
    }

    .rating-divider {
        font-size: 20px;
    }

    .stars-image {
        height: 20px;
    }

    .reviews-slider-container {
        max-width: 800px;
    }

    .review-card {
        flex: 0 0 calc(50% - 24px);
        padding: 24px;
        min-height: 260px;
        margin: 0 12px;
        width: 320px;
    }

    .review-text {
        font-size: 16px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
    }

    .arrow-icon {
        width: 20px;
        height: 20px;
    }
}

/* 모바일 반응형 */
@media (max-width: 768px) {
    .reviews {
        padding: 80px 0;
    }

    .reviews-container {
        padding: 0 20px;
    }

    .reviews-title {
        font-size: 32px;
        margin-bottom: 32px;
    }

    .reviews-rating {
        margin-bottom: 60px;
        gap: 12px;
    }

    .rating-score {
        font-size: 18px;
    }

    .rating-divider {
        font-size: 18px;
    }

    .stars-image {
        height: 18px;
    }

    .reviews-slider-container {
        max-width: 400px;
    }

    .review-card {
        flex: 0 0 calc(100% - 32px);
        padding: 24px;
        min-height: 240px;
        margin: 0 16px;
        width: 280px;
    }

    .review-text {
        font-size: 15px;
    }

    .review-author {
        font-size: 14px;
    }

    .slider-arrow {
        width: 36px;
        height: 36px;
    }

    .arrow-icon {
        width: 18px;
        height: 18px;
    }
}

/*─────────────────────────────────*/
/* Banner Section */
/*─────────────────────────────────*/
.section_banner {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 120px 0;
    background: #F2F7FF;
    text-align: center;
}

.section_banner_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section_banner_title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark) !important;
    line-height: 1.3;
    margin-bottom: 48px;
    word-break: keep-all;
}

.section_banner_button {
    background: linear-gradient(135deg, #0166ff, #0052cc);
    color: var(--white);
    border: none;
    padding: clamp(16px, 3vw, 24px) clamp(24px, 5vw, 48px);
    border-radius: 8px;
    font-size: clamp(16px, 1.5vw, 18px);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    width: fit-content;
}

.section_banner_button:hover {
    background: linear-gradient(135deg, #0052cc, #0166ff);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(1,102,255,0.3);
}

/*─────────────────────────────────*/
/* FAQ Section */
/*─────────────────────────────────*/
.section_faq {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 120px 0;
    background-color: #FFFFFF !important;
}

.section_faq_container {
    max-width: var(--bp-xl);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section_faq_list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
}

.section_faq_title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
    color: var(--text-gray-900);
}

.section_faq_item {
    background: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e5e5e5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.section_faq_question {
    width: 100%;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-gray-800);
    background: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s ease;
}

.section_faq_question:hover {
    background: var(--bg-gray-50);
}

.section_faq_toggle {
    color: var(--text-gray-500);
    transition: all 0.3s ease;
    font-size: 14px;
    margin-left: 16px;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-gray-100);
}

.section_faq_item.active .section_faq_toggle {
    transform: rotate(180deg);
    color: var(--white);
    background: var(--primary-blue);
}

.section_faq_answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--bg-gray-50);
}

.section_faq_item.active .section_faq_answer {
    max-height: 300px;
}

.section_faq_content {
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.section_faq_icon {
    font-size: 24px;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: rgba(1, 102, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
}

.section_faq_text {
    flex: 1;
}

.section_faq_text p {
    color: var(--text-gray-600);
    line-height: 1.6;
    margin-bottom: 12px;
    font-size: 15px;
}

.section_faq_highlight {
    background: rgba(1, 102, 255, 0.1);
    padding: 12px 16px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-blue);
    font-size: 14px;
    color: var(--primary-blue);
    text-align: left;
}

.section_faq_highlight strong {
    display: inline-block;
    margin-right: 8px;
}

.section_faq_cta_content {
    background: linear-gradient(135deg, rgb(1, 102, 255), rgb(0, 82, 204));
    color: var(--white);
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(1, 102, 255, 0.3);
    text-align: center;
}

.section_faq_cta_content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
}

.section_faq_cta_content p {
    margin-bottom: 24px;
    opacity: 0.9;
    font-size: 16px;
    line-height: 1.6;
    color: var(--white);
}

.section_faq_cta_content strong {
    color: var(--white);
    font-weight: 700;
}

.kakao-btn {
    display: inline-flex;
    align-items: center;
    background: #FEE500;
    color: #191919;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.kakao-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

/* PC에서만 줄바꿈 */
@media (min-width: 769px) {
    .desktop-break::before {
        content: "\A";
        white-space: pre;
    }
}

@media (max-width: 768px) {
    .section_faq_content {
        padding: 20px 16px;
        gap: 12px;
    }

    .section_faq_text p {
        font-size: 15px;
        line-height: 1.5;
    }

    .section_faq_highlight {
        padding: 10px 24px;
        margin: 0 -16px 0 -44px;
        font-size: 14px;
    }

    .section_faq_highlight strong {
        display: block;
        margin-bottom: 4px;
    }

    .mobile-break::before {
        content: "\A";
        white-space: pre;
    }

    .section_faq_cta_content {
        padding: 32px 24px;
    }

    .section_faq_cta_content h3 {
        font-size: 20px;
    }

    .section_faq_cta_content p {
        font-size: 15px;
        color: var(--white);
    }
}

@media (max-width: 480px) {
    .section_faq_content {
        padding: 18px 14px;
        gap: 10px;
    }

    .section_faq_text p {
        font-size: 14px;
        line-height: 1.4;
    }

    .section_faq_highlight {
        padding: 8px 20px;
        margin: 0 -14px 0 -38px;
        font-size: 13px;
    }

    .section_faq_highlight strong {
        display: block;
        margin-bottom: 4px;
    }

    .section_faq_cta_content {
        padding: 24px 20px;
        border-radius: 12px;
    }

    .section_faq_cta_content h3 {
        font-size: 18px;
    }

    .section_faq_cta_content p {
        font-size: 14px;
        color: var(--white);
    }
}

/* Footer */
.section_footer {
    background-color: #0166FF;
    padding: clamp(80px, 6vw, 120px) 0;
}

.section_footer_content {
    max-width: var(--bp-xl);
    margin: 0 auto;
    padding: 0 clamp(120px, 10vw, 200px);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(90px, 10vw, 200px);
    align-items: flex-end;
}

.section_footer_left {
    display: flex;
    flex-direction: column;
    gap: clamp(24px, 4vw, 40px);
    min-width: 0;
}

.section_footer_right {
    display: flex;
    flex-direction: column;
    gap: clamp(24px, 4vw, 40px);
    min-width: 0;
    align-items: flex-start;
}

.section_footer_logo {
    display: flex;
    align-items: flex-end;
    gap: clamp(16px, 2vw, 24px);
}

.section_footer_logo img {
    height: clamp(24px, 3vw, 39px);
    width: auto;
}

.section_footer_privacy {
    color: rgba(255, 255, 255, 0.6);
    font-size: clamp(12px, 1.2vw, 16px);
    text-decoration: none;
    padding-bottom: 4px;
}

.section_footer_info {
    display: flex;
    flex-direction: column;
    gap: clamp(8px, 1.2vw, 15px);
}

.section_footer_row {
    color: #FFFFFF;
    font-size: clamp(12px, 1.4vw, 18px);
    display: flex;
    align-items: center;
    gap: 8px;
}

.section_footer_divider {
    font-family: 'Pretendard';
    font-weight: 500;
}

.section_footer_kakao {
    display: flex;
    flex-direction: column;
    gap: clamp(12px, 1.5vw, 16px);
    align-items: flex-start;
}

.section_footer_kakao_icon {
    height: 32px;
    width: 67px;
    object-fit: contain;
}

.section_footer_kakao_text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
}

.section_footer_kakao_text p {
    color: #FFFFFF;
    font-size: clamp(14px, 1.6vw, 24px);
    line-height: 1.4;
}

.section_footer_hours {
    display: flex;
    flex-direction: column;
    gap: clamp(8px, 1.2vw, 15px);
    align-items: flex-start;
}

.section_footer_hours_row {
    display: flex;
    gap: clamp(12px, 1.5vw, 16px);
    color: #FFFFFF;
    font-size: clamp(14px, 1.5vw, 18px);
}

.section_footer_hours_row span:last-child {
    font-weight: 700;
}

@media (max-width: 1024px) {
    .section_footer {
        padding: clamp(60px, 5vw, 80px) 0;
    }
    
    .section_footer_content {
        padding: 0 clamp(80px, 8vw, 160px);
        gap: clamp(60px, 8vw, 90px);
    }
}

@media (max-width: 768px) {
    .section_footer {
        padding: clamp(40px, 4vw, 60px) 0;
    }
    
    .section_footer_content {
        padding: 0 clamp(60px, 6vw, 120px);
        gap: clamp(30px, 6vw, 60px);
    }

    .section_footer_left,
    .section_footer_right {
        text-align: center;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll behavior */
.nav.hidden {
    transform: translateY(-100%);
}

/*─────────────────────────────────*/
/* FAQ Section */
/*─────────────────────────────────*/
.section_faq {
    padding: 120px 0;
    background-color: var(--bg-gray-100);
}

.section_faq_container {
    max-width: var(--bp-xl);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section_faq_list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.section_faq_title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
    color: var(--text-gray-900);
}

.section_faq_item {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e5e5e5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.section_faq_question {
    width: 100%;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-gray-800);
    background: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.section_faq_question:hover {
    background: var(--bg-gray-50);
}

.section_faq_arrow {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.section_faq_item.active .section_faq_arrow {
    transform: rotate(90deg);
}

.section_faq_answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.section_faq_item.active .section_faq_answer {
    padding: 0 24px 24px;
    max-height: 1000px;
}

/* Banner Section */
.section_banner {
    padding: 120px 0;
    background: #F2F7FF;
    text-align: center;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.section_banner_container {
    max-width: var(--bp-xl);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section_banner_title {
    color: var(--white);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 32px;
}

.btn_primary {
    background: var(--white);
    color: var(--primary-blue);
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn_primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* Footer */
.section_footer {
    background-color: #0166FF;
    padding: clamp(80px, 6vw, 120px) 0;
}

.section_footer_container {
    max-width: var(--bp-xl);
    margin: 0 auto;
    padding: 0 clamp(120px, 10vw, 200px);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(90px, 10vw, 200px);
    align-items: flex-end;
}

.section_footer_left {
    text-align: left;
}

.section_footer_right {
    text-align: right;
}

.section_footer_logo {
    display: flex;
    align-items: flex-end;
    gap: clamp(16px, 2vw, 24px);
}

.section_footer_logo img {
    height: 39px;
    width: auto;
}

.section_footer_privacy {
    color: rgba(255, 255, 255, 0.6);
    font-size: clamp(14px, 1.5vw, 16px);
    text-decoration: none;
    padding-bottom: 4px;
}

.section_footer_info {
    display: flex;
    flex-direction: column;
    gap: clamp(8px, 1.2vw, 15px);
}

.section_footer_row {
    color: #FFFFFF;
    font-size: clamp(14px, 1.5vw, 18px);
    display: flex;
    align-items: center;
    gap: 8px;
}

.section_footer_divider {
    font-family: 'Pretendard';
    font-weight: 500;
}

.section_footer_kakao {
    display: flex;
    flex-direction: column;
    gap: clamp(12px, 1.5vw, 16px);
}

.section_footer_kakao_icon {
    height: 32px;
    width: 67px;
    object-fit: contain;
}

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

.section_footer_kakao_text p {
    color: #FFFFFF;
    font-size: clamp(14px, 1.6vw, 24px);
    line-height: 1.4;
}

.section_footer_hours {
    display: flex;
    flex-direction: column;
    gap: clamp(8px, 1.2vw, 15px);
}

.section_footer_hours_row {
    display: flex;
    gap: clamp(12px, 1.5vw, 16px);
    color: #FFFFFF;
    font-size: clamp(14px, 1.5vw, 18px);
}

.section_footer_hours_row span:last-child {
    font-weight: 700;
}

/* Media Queries */
@media (max-width: 1024px) {
    .section_banner {
        padding: 60px 0;
    }

    .section_banner_title {
        font-size: 28px;
    }

    .section_banner_button {
        padding: 20px 36px;
        font-size: 16px;
    }

    .section_footer_container {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .section_banner {
        padding: 48px 0;
    }

    .section_banner_title {
        font-size: 24px;
        margin-bottom: 32px;
    }

    .section_banner_button {
        padding: 16px 32px;
        font-size: 15px;
    }
}

@media (max-width: 640px) {
    .section_banner {
        padding: 40px 0;
    }

    .section_banner_title {
        font-size: 20px;
        margin-bottom: 24px;
    }

    .section_banner_button {
        padding: 14px 28px;
        font-size: 14px;
        width: auto;
        min-width: 160px;
        max-width: 200px;
    }

    .section_footer_container {
        grid-template-columns: 1fr;
        text-align: left;
        align-items: flex-start;
    }

    .section_footer_left, .section_footer_right {
        align-items: flex-start;
    }

    .section_footer_logo {
        flex-direction: row;
        align-items: flex-end;
        justify-content: flex-start;
        width: 100%;
    }

    .info-row {
        justify-content: flex-start;
    }

    .business-hours {
        align-items: flex-start;
    }

    .hours-row {
        flex-direction: row;
        gap: 8px;
    }

    .kakao-text {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .section_banner_title {
        font-size: 18px;
    }

    .section_footer {
        padding: 40px 0;
    }

    .section_footer_container {
        padding: 0 20px;
    }
}

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

/* Video Section */
.main_video_section {
    width: 100vw;
    height: 70vh;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 0;
    background: #000;
    position: relative;
    overflow: hidden;
}

.main_video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.main_video_section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 2;
    pointer-events: none;
}

.video_text_overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
}

.video_title {
    color: white;
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0 0 clamp(16px, 2.5vw, 24px) 0;
    line-height: 1.2;
    word-break: keep-all;
    white-space: nowrap;
}

.video_subtitle {
    color: white;
    font-size: clamp(16px, 2.2vw, 24px);
    font-weight: 400;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    margin: 0 0 clamp(32px, 4vw, 48px) 0;
    line-height: 1.5;
    opacity: 0.95;
    word-break: keep-all;
}

.video_cta_btn {
    background: linear-gradient(135deg, #388EFF 0%, #086CFF 57%, #0166FF 80%);
    color: white;
    border: none;
    padding: clamp(14px, 1.8vw, 18px) clamp(28px, 3.5vw, 42px);
    font-size: clamp(14px, 1.6vw, 18px);
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(56, 142, 255, 0.3);
    text-shadow: none;
}

.video_cta_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(56, 142, 255, 0.4);
    background: linear-gradient(135deg, #4a9aff 0%, #1a7cff 57%, #0d5cff 80%);
}

/* 360px 초과에서는 br 태그 숨김 */
.mobile-360-only {
    display: none;
}

/* 태블릿과 모바일에서는 줄바꿈 허용 및 행간 조정 (361px~768px) */
@media (min-width: 361px) and (max-width: 768px) {
    .video_title {
        white-space: normal;
        line-height: 1.4;
        margin-bottom: clamp(12px, 2vw, 16px);
    }
    
    .video_subtitle {
        line-height: 1.6;
        margin-bottom: clamp(24px, 3vw, 32px);
    }
    
    .video_subtitle .mobile-break::before {
        content: "\A";
        white-space: pre;
    }
}

/* 모바일 360px 이하에서만 br 태그 표시 */
@media (max-width: 360px) {
    .video_title {
        line-height: 1.4;
        margin-bottom: clamp(12px, 2vw, 16px);
    }
    
    .video_subtitle {
        line-height: 1.6;
        margin-bottom: clamp(24px, 3vw, 32px);
    }
    
    .video_subtitle .mobile-break::before {
        content: "\A";
        white-space: pre;
    }
    
    .mobile-360-only {
        display: block;
    }
}

/* Footer */
.footer {
    background-color: #0166FF;
    padding: clamp(40px, 6vw, 80px) 0;
}

.footer-container {
    max-width: var(--bp-xl);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(24px, 4vw, 60px);
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: clamp(24px, 4vw, 40px);
}

.footer-logo {
    display: flex;
    align-items: flex-end;
    gap: clamp(16px, 2vw, 24px);
}

.footer-logo img {
    height: clamp(24px, 3vw, 39px);
    width: auto;
}

.footer-privacy {
    color: rgba(255, 255, 255, 0.6);
    font-size: clamp(12px, 1.2vw, 16px);
    text-decoration: none;
    padding-bottom: 4px;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: clamp(8px, 1.2vw, 15px);
}

.info-row {
    color: #FFFFFF;
    font-size: clamp(12px, 1.4vw, 18px);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: clamp(24px, 4vw, 40px);
}

.kakao-section {
    display: flex;
    flex-direction: column;
    gap: clamp(12px, 1.5vw, 16px);
}

.kakao-icon {
    height: 32px;
    width: auto;
}

.kakao-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.kakao-text p {
    color: #FFFFFF;
    font-size: clamp(14px, 1.6vw, 24px);
    line-height: 1.4;
}

.business-hours {
    display: flex;
    flex-direction: column;
    gap: clamp(8px, 1.2vw, 15px);
}

.hours-row {
    display: flex;
    gap: clamp(12px, 1.5vw, 16px);
    color: #FFFFFF;
    font-size: clamp(12px, 1.4vw, 18px);
}

/* 모바일 스타일 */
@media (max-width: 640px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 0 16px;
    }

    .footer-logo {
        flex-direction: row;
        align-items: flex-end;
    }

    .footer-info {
        gap: 8px;
    }

    .hours-row {
        flex-direction: row;
        align-items: center;
    }

    .kakao-text {
        text-align: left;
    }
}

/* 태블릿 스타일 */
@media (min-width: 641px) and (max-width: 1024px) {
    .footer-container {
        gap: 24px;
        padding: 0 24px;
    }
}

/* 데스크탑 (1024px 초과) */
@media (min-width: 1025px) {
    .footer {
        padding: 80px 0;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
    
    .footer .container {
        padding: 0 40px;
    }
    
    .footer-logo {
        gap: 16px;
    }
    
    .footer-logo img {
        height: 40px;
    }
    
    .footer-logo span {
        font-size: 16px;
    }
    
    .company-info div {
        font-size: 18px;
    }
    
    .kakao-logo {
        height: 40px !important;
    }

    .kakao-info h3 {
        font-size: 20px;
    }
    
    .operating-hours div {
        gap: 16px;
    }
    
    .operating-hours div span:first-child {
        font-size: 18px;
    }
    
    .operating-hours div span:last-child {
        font-size: 18px;
    }
}

.kakao-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.kakao-icon {
    height: 32px;
    width: auto;
}

.kakao-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.kakao-text p {
    color: #FFFFFF;
    font-size: clamp(16px, 1.8vw, 24px);
    line-height: 1.4;
}

.kakao-text strong {
    font-weight: 700;
}

@media (max-width: 1024px) {
    .section_footer {
        padding: clamp(60px, 5vw, 80px) 0;
    }
    
    .section_footer_content {
        padding: 0 clamp(80px, 8vw, 160px);
        gap: clamp(60px, 8vw, 90px);
    }
}

@media (max-width: 768px) {
    .section_footer {
        padding: clamp(40px, 4vw, 60px) 0;
    }
    
    .section_footer_content {
        padding: 0 clamp(24px, 4vw, 40px);
        gap: clamp(40px, 8vw, 60px);
        grid-template-columns: 1fr;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .section_footer_left,
    .section_footer_right {
        text-align: left;
        align-items: flex-start;
        width: 100%;
        max-width: 300px;
    }

    .section_footer_kakao,
    .section_footer_hours {
        align-items: flex-start;
    }

    .section_footer_logo {
        justify-content: flex-start;
    }

    .section_footer_privacy {
        text-align: left;
    }

    .section_footer_kakao_text {
        flex-direction: row;
        gap: 8px;
        align-items: center;
    }
}

/* Remove duplicate media queries */
@media (max-width: 1024px) {
    .hero-section {
        height: clamp(500px, 60vh, 700px);
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-text {
        max-width: 600px;
    }

    .hero-title {
        font-size: clamp(28px, 4vw, 40px);
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: clamp(16px, 2vw, 20px);
        margin-bottom: 24px;
    }
}

@media (max-width: 640px) {
    .hero-section {
        height: clamp(400px, 50vh, 600px);
    }

    .hero-content {
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-title {
        font-size: clamp(24px, 3.5vw, 32px);
        margin-bottom: 12px;
    }

    .hero-subtitle {
        font-size: clamp(14px, 1.8vw, 18px);
        margin-bottom: 28px;
    }
}

@media (max-width: 1024px) {
    .features-title {
        margin-bottom: 60px;
    }

    .features-icon {
        margin-bottom: 60px;
    }
}

@media (max-width: 768px) {
    .features {
        padding: 80px 0;
    }

    .features-title {
        margin-bottom: 40px;
    }

    .features-icon {
        margin-bottom: 40px;
    }

    .features-icon img {
        width: clamp(160px, 22vw, 200px);
    }
}

@media (max-width: 360px) {
    .features {
        padding: 60px 0;
    }

    .features-container {
        padding: 0 16px;
    }

    .features-title {
        font-size: clamp(28px, 4vw, 32px);
    }

    .features-icon {
        margin: 32px 0 24px 0;
    }

    .features-icon img {
        width: clamp(140px, 28vw, 180px);
    }
    
    .calendar-mobile-description .calendar-description {
        font-size: 15px;
        line-height: 1.4;
        max-width: 320px;
        padding: 0 10px;
    }
}

/* 상단으로 이동 버튼 */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #3865FF;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

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

.scroll-to-top:hover {
    background: #2550E8;
    transform: translateY(-2px);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
}

.scroll-to-top:hover svg {
    fill: white;
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
    }
    
    .scroll-to-top svg {
        width: 20px;
        height: 20px;
    }
} 