/* ==========================================================================
   Base Reset & Typography
   ========================================================================== */
html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Pretendard", "Freesentation", "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    letter-spacing: -0.02em;
    font-display: swap;
    font-size: 17px;
    background-color: #fff;
    color: #232323;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* ==========================================================================
   Layout Helpers
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1152px; /* ~6xl in tailwind */
    margin: 0 auto;
    padding: 0 var(--s-60);
}
.max-width-m {
    max-width: 1080px;
}
.max-width-l {
    max-width: 1440px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--s-40);
    }
}

.text-primary {
    color: var(--baljugo-primary-600);
}

.bg-white {
    background-color: var(--grayscale-white);
}

.bg-lightblue {
    background-color: var(--baljugo-primary-50);
}

    /* bg-lightblue 배경 대비 조정 */
    .bg-lightblue .benefit-badge {
        background-color: var(--grayscale-white);
        border: 1px solid rgba(var(--baljugo-primary-500-rgb), 0.15);
    }

    .bg-lightblue .benefit-desc {
        color: var(--grayscale-600);
    }

        .bg-lightblue .benefit-desc strong {
            color: var(--baljugo-primary-700);
        }

    .bg-lightblue .highlight-bg:not(.white) {
        background-color: var(--baljugo-primary-200);
    }

    .bg-lightblue .comparison-table th {
        background-color: rgba(var(--baljugo-primary-500-rgb), 0.03);
    }

.bg-gray-50 {
    background-color: var(--grayscale-50);
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.img-hover {
    transition: transform 0.5s ease;
}

    .img-hover:hover {
        transform: scale(1.05);
    }

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    position: relative;
    background: radial-gradient(120% 120% at 50% 10%, #11151f 0%, #080a10 60%, #020305 100%);
    padding-top: 8.5rem;
    padding-bottom: 0;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero-section {
        padding-top: 16rem;
        padding-bottom: 0;
    }
}

.hero-bg-glow {
    position: absolute;
    bottom: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 450px;
    background-color: rgba(var(--baljugo-primary-500-rgb), 0.25);
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}

@media (min-width: 768px) {
    .hero-bg-glow {
        width: 900px;
        height: 600px;
        bottom: -200px;
    }
}

.hero-inner {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--s-60);
}

@media (min-width: 768px) {
    .hero-inner {
        flex-direction: column;
        align-items: center;
    }
}

.hero-content {
    flex: 1;
    max-width: 48rem;
    text-align: center;
}

@media (min-width: 768px) {
    .hero-content {
        text-align: center;
    }
}

.badge-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--s-30);
    margin-bottom: var(--s-65);
}

@media (min-width: 768px) {
    .badge-group {
        justify-content: center;
    }
}

.badge-outline {
    display: inline-block;
    padding: var(--s-20) var(--s-40);
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--baljugo-primary-100);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    font-size: var(--font-size-sm);
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--baljugo-primary-50);
    line-height: 1.2;
    margin-bottom: var(--s-60);
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.25rem;
    }
}

.hero-desc {
    font-size: var(--font-size-lg);
    color: var(--grayscale-100);
    margin-bottom: var(--s-80);
    line-height: 1.6;
}

@media (min-width: 768px) {
    .hero-desc {
        font-size: 1.25rem;
    }
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--s-50) 2.5rem;
    background-color: var(--baljugo-primary-600);
    color: var(--grayscale-white);
    font-size: var(--font-size-lg);
    font-weight: 700;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px -5px rgba(var(--baljugo-primary-500-rgb), 0.3);
    transition: all 0.3s ease;
}

    .hero-btn:hover {
        background-color: var(--baljugo-primary-600);
        transform: translateY(-4px);
    }

.hero-image-wrap {
    width: 100%;
    max-width: 32rem;
    margin: 2rem auto 0 auto;
    position: relative;
    display: flex;
    justify-content: center;
}

@media (min-width: 768px) {
    .hero-image-wrap {
        max-width: 44rem;
        margin-top: -2rem;
    }
}
@media (min-width: 1920px) {
    .hero-image-wrap {
        margin-top: 3rem;
    }
}
.hero-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.25));
    display: block;
    margin-bottom: -30%;
}

@media (min-width: 768px) {
    .hero-image {
        margin-bottom: -30%;
    }
}

/* ==========================================================================
   Benefit Sections (Zigzag)
   ========================================================================== */
.benefit-section {
    padding: 6rem 0;
}

@media (min-width: 768px) {
    .benefit-section {
        padding: 9rem 0;
    }
}

.benefit-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}
.zigzag-reverse {
    flex-direction: column-reverse;
}
@media (min-width: 768px) {
    .zigzag-normal {
        flex-direction: row;
    }

    .zigzag-reverse {
        flex-direction: row;
    }
}

.benefit-content {
    flex: 1;
    text-align: center;
}

@media (min-width: 768px) {
    .benefit-content {
        text-align: left;
    }
}

.benefit-badge {
    display: inline-block;
    padding: var(--s-20) var(--s-40);
    background-color: var(--baljugo-primary-50);
    color: var(--baljugo-primary-600);
    border-radius: 9999px;
    font-size: var(--font-size-sm);
    font-weight: 700;
    margin-bottom: var(--s-60);
}

    .benefit-badge.shadow-sm {
        background-color: var(--grayscale-white);
        border: 1px solid var(--baljugo-primary-600);
        box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    }

.benefit-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--grayscale-900);
    line-height: 1.25;
    margin-bottom: var(--s-60);
}

@media (min-width: 768px) {
    .benefit-title {
        font-size: 3rem;
    }
}

.highlight-text {
    position: relative;
    display: inline-block;
    color: var(--baljugo-primary-600);
    z-index: 0;
}

    .highlight-text.white {
        color: var(--grayscale-white);
    }

    .highlight-text.dark {
        color: var(--grayscale-dark);
    }

.highlight-bg {
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 12px;
    background-color: var(--baljugo-primary-100);
    z-index: -1;
}

    .highlight-bg.white {
        background-color: var(--grayscale-white);
    }

    .highlight-bg.yellow {
        background-color: var(--system-yellow-200);
    }

    .highlight-bg.primary {
        background-color: var(--baljugo-primary-600);
    }

.benefit-desc {
    font-size: var(--font-size-lg);
    color: var(--grayscale-500);
    margin-bottom: var(--s-65);
    line-height: 1.6;
}

/* Info Box */
.comparison-container {
    background: var(--grayscale-white);
    border: 1px solid rgba(var(--baljugo-primary-500-rgb), 0.6);
    border-radius: 0.5rem;
    padding: 2.25rem 2rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.04), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    width: 100%;
    max-width: 36rem;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    text-align: center;
}

    .comparison-table th,
    .comparison-table td {
        padding: 1.25rem 1rem;
        font-size: var(--font-size-md);
        color: var(--grayscale-600);
        border-bottom: 1px solid var(--grayscale-100);
        vertical-align: middle;
        white-space: nowrap;
    }

    .comparison-table th {
        font-weight: 700;
        color: var(--grayscale-800);
        background-color: var(--grayscale-50);
    }

        .comparison-table th:first-child {
            border-top-left-radius: 0.25rem;
            border-bottom-left-radius: 0;
        }

        .comparison-table th:last-child {
            border-top-right-radius: 0.25rem;
            border-bottom-right-radius: 0.25rem;
        }

    .comparison-table tr:last-child td {
        border-bottom: none;
    }

    /* Row Label Column (Leftmost) */
    .comparison-table .row-label {
        text-align: left;
        font-weight: 600;
        color: var(--grayscale-700);
        padding-left: 0.5rem;
        text-align: center;
    }

    /* Highlighting the Baljugo Card Column */
    .comparison-table .col-highlight {
        background-color: rgba(var(--baljugo-primary-500-rgb), 0.03);
        color: var(--baljugo-primary-700);
        font-weight: 700;
        position: relative;
        border-left: 1px solid rgba(var(--baljugo-primary-500-rgb), 0.15);
        border-right: 1px solid rgba(var(--baljugo-primary-500-rgb), 0.15);
    }

    .comparison-table th.col-highlight {
        border-top: 1px solid rgba(var(--baljugo-primary-500-rgb), 0.15);
        border-top-left-radius: 0.25rem;
        border-top-right-radius: 0.25rem;
        border-bottom-right-radius: 0;
        background-color: rgba(var(--baljugo-primary-500-rgb), 0.05);
        padding-top: 1.75rem; /* 배지 공간 확보 */
    }

    .comparison-table tr:last-child td.col-highlight {
        border-bottom: 1px solid rgba(var(--baljugo-primary-500-rgb), 0.15);
        border-bottom-left-radius: 0.25rem;
        border-bottom-right-radius: 0.25rem;
    }

    /* Highlighted Column Typography */
    .comparison-table .text-primary-bold {
        color: var(--baljugo-primary-600);
        font-size: var(--font-size-lg);
        font-weight: 800;
    }

/* Table Badge inside Header Cell */
.table-badge {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--baljugo-primary-600);
    color: var(--grayscale-white);
    font-size: 9px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 2px;
    letter-spacing: 0.05em;
    line-height: 1;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .comparison-container {
        padding: 1.25rem 1rem;
        border-radius: 0.375rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 1rem 0.5rem;
        font-size: 0.875rem;
    }

    .comparison-table .text-primary-bold {
        font-size: 1rem;
    }

    .table-badge {
        font-size: 8px;
        padding: 1px 6px;
        top: 4px;
    }

    .comparison-table th.col-highlight {
        padding-top: 1.5rem;
    }
}

.comparison-footer {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
}

.comparison-notice {
    font-size: var(--font-size-xs);
    color: var(--grayscale-400);
    text-align: left;
}

/* ==========================================================================
   Comparison Cards (Realistic Credit Card Style)
   ========================================================================== */
.comparison-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    position: relative;
    padding-bottom: 2rem;
}

@media (min-width: 768px) {
    .comparison-cards {
        flex-direction: row-reverse;
        justify-content: center;
        padding-bottom: 0;
    }
}

.credit-card {
    container-type: inline-size;
    border-radius: clamp(0.5rem, 2.5cqi, 1rem);
    padding: clamp(0.5rem, 8cqi, 1.5rem) clamp(0.25rem, 4cqi, 0.75rem);
    width: 100%;
    max-width: 15rem;
    aspect-ratio: 1 / 1.586;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    color: var(--grayscale-white);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), z-index 0s;
}

    .credit-card.normal-card {
        background: #f3f4f6;
        color: var(--grayscale-600);
        border: 1px solid var(--grayscale-200);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        z-index: 1;
        transform: scale(0.9);
    }

        .credit-card.normal-card .cc-chip {
            background: #d1d5db;
            box-shadow: none;
        }

        .credit-card.normal-card .cc-rate {
            color: var(--grayscale-600);
            text-shadow: none;
        }

        .credit-card.normal-card .cc-bank {
            color: var(--grayscale-500);
        }

    .credit-card.best-card {
        background: radial-gradient( rgba(var(--baljugo-primary-500-rgb, 14, 165, 233), 1) 0%, rgba(var(--baljugo-primary-600-rgb, 2, 132, 199), 0.2) 100% );
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);
        box-shadow: 0 12px 40px rgba(var(--baljugo-primary-500-rgb, 14, 165, 233), 0.4), inset 0px 0px 16px rgba(var(--baljugo-primary-500-rgb, 14, 165, 233), 0.6);
        border: 1px solid rgba(var(--baljugo-primary-500-rgb, 14, 165, 233), 0.9);
        z-index: 2;
        transform: scale(1.05);
        margin-top: -14rem;
    }

@media (min-width: 768px) {
    .credit-card {
        border-radius: clamp(0.5rem, 1cqi, 1rem);
        padding: clamp(0.5rem, 2cqi, 1.5rem);
    }

        .credit-card.normal-card {
            transform: scale(0.9);
            transform-origin: center right;
            margin-left: 1rem;
        }

        .credit-card.best-card {
            margin-top: 0;
            margin-right: -3rem;
            transform: scale(1.05);
        }
}

.credit-card.best-card:hover {
    z-index: 10;
    transform: scale(1.08) translateY(-10px);
    box-shadow: 0 20px 50px rgba(var(--baljugo-primary-500-rgb, 14, 165, 233), 0.6), inset 0px 0px 20px rgba(var(--baljugo-primary-500-rgb, 14, 165, 233), 0.8);
}

/* Card Elements */
.cc-top {
    position: absolute;
}

.cc-bank {
    font-size: clamp(0.8rem, 12cqi, 1.25rem);
    font-weight: 700;
    letter-spacing: 0.05em;
    opacity: 0.9;
}

.card-logo svg {
    width: clamp(40px, 32cqi, 100px);
    height: auto;
    display: block;
}

.cc-chip {
    width: clamp(24px, 16cqi, 36px);
    height: clamp(32px, 22cqi, 48px);
    background: linear-gradient(135deg, #eab308 0%, #ca8a04 100%);
    border-radius: clamp(2px, 2cqi, 6px);
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3);
    margin-top: clamp(4px, 2cqi, 8px);
    position: relative;
    top: 10px;
    left: 10px;
}

    .cc-chip::after {
        content: "";
        position: absolute;
        top: clamp(2px, 1.5cqi, 6px);
        left: clamp(2px, 1.5cqi, 6px);
        right: clamp(2px, 1.5cqi, 6px);
        bottom: clamp(2px, 1.5cqi, 6px);
        border: 1px solid rgba(0, 0, 0, 0.2);
        border-radius: clamp(1px, 1cqi, 4px);
    }

.infographic-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    margin-bottom: auto;
    text-align: center;
}

.credit-card.normal-card .infographic-center {
    margin-top: 1rem;
}

@media (min-width: 768px) {
    .credit-card.normal-card .infographic-center {
        margin-top: auto;
    }
}

.cc-label {
    font-size: clamp(0.6rem, 10cqi, 0.9rem);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: clamp(4px, 2cqi, 8px);
}

.cc-rate {
    font-size: clamp(1rem, 15cqi, 2rem);
    font-weight: 800;
    line-height: 1.1;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.best-card .cc-rate {
    font-size: clamp(1.2rem, 18.5cqi, 2.5rem);
    color: var(--grayscale-white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3), -1px -1px 1px rgba(255, 255, 255, 0.3);
}

/* Badge & Divider */
.card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--system-yellow-300);
    color: var(--grayscale-900);
    font-size: 10px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.vs-divider {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.15));
}

.vs-text {
    background-color: var(--system-yellow-500);
    color: var(--grayscale-900);
    font-weight: 900;
    padding: clamp(0.25rem, 3cqi, 0.75rem) clamp(0.5rem, 5cqi, 1.25rem);
    border-radius: 0 0 0 clamp(0.5rem, 2cqi, 1rem);
    font-size: clamp(0.6rem, 8cqi, 1rem);
    white-space: nowrap;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
    border: none;
    box-shadow: none;
}

    .vs-text small {
        color: #374151;
        font-size: clamp(0.5rem, 6cqi, 0.8rem);
        font-weight: 700;
        opacity: 0.9;
    }

/* Benefit List */
.benefit-list {
    display: inline-flex;
    flex-direction: column;
    gap: var(--s-40);
    width: 100%;
    max-width: 28rem;
    text-align: left;
}

    .benefit-list li {
        display: flex;
        align-items: flex-start;
        gap: var(--s-30);
    }

.list-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--baljugo-primary-100);
    color: var(--baljugo-primary-600);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    font-size: var(--font-size-sm);
    font-weight: 700;
}

.benefit-list p {
    color: var(--grayscale-600);
}

.benefit-list strong {
    color: var(--grayscale-800);
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: var(--s-60);
    width: 100%;
    max-width: 28rem;
    text-align: left;
}

.process-step {
    display: flex;
    align-items: center;
    gap: var(--s-40);
    background-color: var(--grayscale-50);
    padding: var(--s-40);
    border-radius: 0.5rem;
    border: 1px solid var(--grayscale-100);
}

.step-num {
    width: 48px;
    height: 48px;
    color: var(--grayscale-white);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--font-size-dl);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.step-1 {
    background-color: var(--baljugo-primary-600);
}

.step-2 {
    background-color: var(--baljugo-primary-400);
}

.step-3 {
    background-color: var(--baljugo-primary-300);
}

.step-info h4 {
    font-weight: 700;
    color: var(--grayscale-900);
    margin-bottom: var(--s-10);
}

.step-info p {
    font-size: var(--font-size-sm);
    color: var(--grayscale-500);
}

.benefit-image-wrap {
    flex: 1;
    width: 100%;
    max-width: 28rem;
}

.benefit-image {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    filter: drop-shadow(0 20px 13px rgba(0, 0, 0, 0.1));
}

.flex-col-wrap {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.info-box-image-side {
    max-width: 100%;
    margin-top: 1rem;
}

/* ==========================================================================
   Dashboard Section
   ========================================================================== */
.dashboard-section {
    position: relative;
    padding: 6rem 0;
    background-color: var(--grayscale-900);
    overflow: hidden;
}

@media (min-width: 768px) {
    .dashboard-section {
        padding: 10rem 0;
    }
}

.dashboard-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxjaXJjbGUgY3g9IjMiIGN5PSIzIiByPSIzIiBmaWxsPSIjMmQzNzQ4IiBmaWxsLW9wYWNpdHk9IjAuNSIvPjwvZz48L3N2Zz4=");
    opacity: 0.2;
}

.dashboard-inner {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 64rem;
}

.dashboard-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--grayscale-white);
    line-height: 1.25;
    margin-bottom: var(--s-60);
}

@media (min-width: 768px) {
    .dashboard-title {
        font-size: 3rem;
    }
}

.dashboard-desc {
    font-size: var(--font-size-lg);
    color: var(--grayscale-400);
    margin-bottom: 4rem;
    line-height: 1.6;
}

.dashboard-image-wrap {
    position: relative;
    max-width: 56rem;
    height: 20rem;
    margin: 0 auto;
}

.dashboard-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(var(--grayscale-700-rgb), 0.5);
}

/* ==========================================================================
   Target Audience Section
   ========================================================================== */
.target-section {
    padding: 5rem 0;
    background-color: var(--grayscale-100);
    border-bottom: 1px solid var(--grayscale-200);
}

.target-title {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--grayscale-800);
    margin-bottom: 2.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .target-title {
        font-size: 1.875rem;
    }
}

.target-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--s-40);
    max-width: 56rem;
    margin: 0 auto;
}

.target-tag {
    padding: var(--s-30) 1.25rem;
    background-color: var(--grayscale-white);
    border: 1px solid var(--grayscale-200);
    border-radius: 9999px;
    color: var(--grayscale-700);
    font-weight: 500;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

    .target-tag:hover {
        border-color: var(--baljugo-primary-400);
        color: var(--baljugo-primary-600);
    }

/* ==========================================================================
   Inquiry Form Section (Split & Floating)
   ========================================================================== */
.split-form-section {
    padding: 6rem 0;
}

.split-form-inner {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 64rem;
    margin: 0 auto;
    align-items: center;
}

@media (min-width: 768px) {
    .split-form-inner {
        flex-direction: row;
        align-items: center;
    }
}

.split-form-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 28rem;
    text-align: center;
}

@media (min-width: 768px) {
    .split-form-info {
        text-align: left;
    }
}

.split-form-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--grayscale-900);
}

.split-form-desc {
    font-size: 1.125rem;
    color: var(--grayscale-600);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.split-form-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 768px) {
    .split-form-benefits {
        align-items: flex-start;
    }
}

.split-form-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--grayscale-800);
}

/* Form Box */
.floating-form {
    flex: 1;
    max-width: 36rem;
    width: 100%;
}

.form-box {
    background-color: var(--grayscale-white);
    padding: 2.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--grayscale-100);
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.form-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--baljugo-primary-500);
    color: var(--grayscale-white);
    padding: var(--s-20) 1.5rem;
    border-radius: 9999px;
    font-weight: 700;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.form-title {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--grayscale-900);
    margin-bottom: var(--s-20);
    margin-top: 1rem;
    text-align: center;
}

.form-desc {
    color: var(--grayscale-500);
    text-align: center;
    font-size: var(--font-size-sm);
    margin-bottom: 2rem;
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.required {
    color: var(--system-red-500);
}

/* Floating Label Styles */
.floating-group {
    position: relative;
    margin-bottom: 0.25rem;
}

.floating-input {
    width: 100%;
    padding: 1.5rem 1rem 0.5rem;
    background-color: var(--grayscale-white);
    border: 1px solid var(--grayscale-100);
    border-radius: 0.25rem;
    outline: none;
    transition: all 0.3s ease;
    font-family: inherit;
    font-size: var(--font-size-md);
    color: var(--grayscale-900);
}

    .floating-input:focus {
        border-color: var(--baljugo-primary-500);
        background-color: var(--grayscale-white);
        box-shadow: 0 0 0 2px rgba(var(--baljugo-primary-500-rgb), 0.2);
    }

.floating-label {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    font-size: var(--font-size-md);
    color: var(--grayscale-500);
    font-weight: 500;
    pointer-events: none;
    transition: all 0.2s ease-out;
}

.floating-input:focus ~ .floating-label,
.floating-input:not(:placeholder-shown) ~ .floating-label {
    top: 0.5rem;
    font-size: 0.75rem;
    transform: translateY(0);
    color: var(--baljugo-primary-600);
    font-weight: 700;
}

.form-agree {
    background-color: var(--grayscale-50);
    padding: 1rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: flex-start;
    gap: var(--s-30);
    margin-top: 1rem;
}

    .form-agree input[type="checkbox"] {
        margin-top: 0.0625rem;
        width: 1.25rem;
        height: 1.25rem;
        accent-color: var(--baljugo-primary-500);
        cursor: pointer;
    }

@media (min-width: 768px) {
    .form-agree input[type="checkbox"] {
        margin-top: 0.125rem;
    }
}

.form-agree label {
    font-size: var(--font-size-sm);
    color: var(--grayscale-600);
    cursor: pointer;
}

.modal-link {
    background: none;
    border: none;
    color: var(--baljugo-primary-700);
    font-weight: 700;
    text-decoration: underline;
    cursor: pointer;
    font-size: inherit;
    font-family: inherit;
}

    .modal-link:hover {
        color: var(--baljugo-primary-800);
    }

.submit-btn {
    width: 100%;
    padding: 1rem;
    margin-top: 1rem;
    background-color: var(--baljugo-primary-600);
    color: var(--grayscale-white);
    font-weight: 700;
    font-size: var(--font-size-md);
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(var(--baljugo-primary-500-rgb), 0.3);
    transition: all 0.3s ease;
    font-family: inherit;
}

    .submit-btn:hover {
        background-color: var(--baljugo-primary-700);
        transform: translateY(-2px);
    }

/* ==========================================================================
   Privacy Modal
   ========================================================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(var(--grayscale-900-rgb), 0.6);
    backdrop-filter: blur(4px);
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

    .modal-overlay.show {
        opacity: 1;
        visibility: visible;
    }

.modal-content {
    background-color: var(--grayscale-white);
    width: 90%;
    max-width: 28rem;
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(1rem);
    transition: transform 0.3s ease;
}

.modal-overlay.show .modal-content {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

    .modal-header h3 {
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--grayscale-900);
    }

.modal-close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--grayscale-50);
    border: none;
    border-radius: 50%;
    color: var(--grayscale-500);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .modal-close:hover {
        background-color: var(--grayscale-100);
    }

    .modal-close svg {
        width: 20px;
        height: 20px;
    }

.modal-body {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 0.5rem;
}

    .modal-body::-webkit-scrollbar {
        width: 6px;
    }

    .modal-body::-webkit-scrollbar-thumb {
        background-color: var(--grayscale-200);
        border-radius: 3px;
    }

    .modal-body p {
        font-size: var(--font-size-sm);
        color: var(--grayscale-600);
        margin-bottom: 1rem;
        line-height: 1.5;
    }

        .modal-body p strong {
            display: block;
            color: var(--grayscale-800);
            margin-bottom: 0.25rem;
        }

.modal-footer-text {
    padding-top: 1rem;
    border-top: 1px solid var(--grayscale-100);
    color: var(--grayscale-500) !important;
}

/* ==========================================================================
   Footer Notice Section
   ========================================================================== */
.footer-notice {
    background-color: var(--grayscale-100);
    padding: 4rem 0;
    border-top: 1px solid var(--grayscale-200);
}

.footer-notice-inner {
    max-width: 64rem;
    margin: 0 auto;
}

.footer-notice-title {
    font-size: var(--font-size-md);
    font-weight: 700;
    color: var(--grayscale-800);
    margin-bottom: 1rem;
}

.footer-notice-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

    .footer-notice-list li {
        position: relative;
        padding-left: 1rem;
        font-size: var(--font-size-sm);
        color: var(--grayscale-700);
        line-height: 1.5;
    }

        .footer-notice-list li::before {
            content: "-";
            position: absolute;
            left: 0;
            color: var(--grayscale-400);
        }
