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

:root {
    --primary-color: #1070FF; /* 연한 블루 브랜드 컬러 -> #1070FF로 수정 */
    --primary-hover: #005ce6;  /* 호버 컬러 보정 */
    --accent-color: #00d282; /* point green */
    --accent-red: #ff4b5c; /* point red */
    --text-dark: #191f28;
    --text-desc: #4e5968;
    --text-light: #8b95a1;
    --bg-gray: #f9fafb;
    --bg-pastel-blue: #f2f7ff;
    --white: #ffffff;
    --card-radius: 24px;
    --card-shadow: 0 12px 40px rgba(0, 0, 0, 0.04), 0 2px 8px rgba(0, 0, 0, 0.02);
}

html {
    scroll-behavior: smooth; /* 브라우저 자체 네이티브 스무스 스크롤 애니메이션 선언 */
}

body {
    font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    letter-spacing: -0.02em;
    word-break: keep-all;
}

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

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

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

/* Top Banner */
.top-banner {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 13px 24px;
    text-align: center;
    position: sticky;
    top: 16px;
    z-index: 1000;
    font-size: 14.5px;
    font-weight: 500; /* 미디움 두께로 조정 (800에서 500으로) */
    letter-spacing: -0.02em;
    box-shadow: 0 8px 32px rgba(85, 141, 250, 0.15);
    width: calc(100% - 160px); /* 헤더 좌우 여백을 섹션과 맞춰 160px로 확대 */
    max-width: 1040px;
    margin: 16px auto 24px auto;
    border-radius: 1000px; /* full round 효과 */
    box-sizing: border-box;
}

.top-banner p {
    display: inline-block;
}

/* Header 지우기 */
header {
    display: none;
}

/* 3D Emoji 스타일 데코레이션 */
.emoji-3d {
    font-size: 42px;
    filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.15));
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    user-select: none;
}

.feature-card:hover .emoji-3d {
    transform: scale(1.22) rotate(5deg);
}

.emoji-3d-check, 
.emoji-3d-building, 
.emoji-3d-crown, 
.emoji-3d-warning {
    font-size: 28px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.12));
    display: inline-block;
}

/* 각 섹션 상하좌우 마진 여백 & 보더 라운팅 처리 (Floating Grid Card Section Design) */
.grid-card-section {
    margin: 32px auto;
    width: calc(100% - 160px); /* 여백 바깥쪽 추가 확대하여 여백을 눈에 띄게 증가시킴 (기존 96px -> 160px) */
    max-width: 1040px;
    border-radius: 32px;
    overflow: hidden;
    border: none; /* 외곽선 제거 */
    box-shadow: none; /* 그림자 효과 제거 */
    padding: 30px 48px 70px 48px; /* 히어로 및 전체 섹션 상단의 물리적인 여백 축소를 위해 패딩 상단을 70px에서 30px로 축소 */
    transition: none;
    box-sizing: border-box;
}

.grid-card-section:hover {
    box-shadow: none; /* 호버 시 그림자 제거 */
}

/* Hero Section */
.hero {
    background: linear-gradient(to right bottom, rgb(224, 242, 254), rgb(244, 244, 245), rgb(204, 251, 241));
    text-align: center;
    position: relative;
    padding-top: 50px !important; /* 상호명 제거 후 센터명이 상단 배너에 가리지 않도록 간격 유지 */
    padding-left: 2px !important; /* 히어로 섹션 내 좌우여백을 더 강하고 타이트하게 대폭 좁게 축소 */
    padding-right: 2px !important; /* 히어로 섹션 내 좌우여백을 더 강하고 타이트하게 대폭 좁게 축소 */
    padding-bottom: 0 !important; /* 이미지 하단 밀착을 위해 패딩 제거 */
}

.hero-content {
    padding: 0px 2px 30px 2px; /* 내부 좌우여백을 극적인 수준으로 대폭 축소 */
}

.hero-mockup-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-top: 10px; /* 메인 CTA 버튼 아래 여백 줄이기 (20px -> 10px) */
    padding: 0;
    line-height: 0;
}

.ai-phone-mockup {
    position: relative;
    width: 60%;
    max-width: 420px;
    padding: 14px 12px 0;
    overflow: hidden;
    border: 3px solid #17191c;
    border-bottom: 0;
    border-radius: 54px 54px 0 0;
    background: linear-gradient(145deg, #30343a 0%, #070809 38%, #202329 100%);
    box-shadow: 0 24px 54px rgba(15, 23, 42, 0.24), inset 0 0 0 2px rgba(255, 255, 255, 0.12);
}

.phone-notch {
    position: absolute;
    top: 13px;
    left: 50%;
    z-index: 2;
    width: 42%;
    height: 32px;
    transform: translateX(-50%);
    border-radius: 0 0 20px 20px;
    background: #070809;
}

.phone-notch::after {
    content: "";
    position: absolute;
    top: 9px;
    left: 50%;
    width: 46px;
    height: 5px;
    transform: translateX(-50%);
    border-radius: 99px;
    background: #24272c;
}

.ai-phone-screen {
    overflow: hidden;
    border-radius: 39px 39px 0 0;
    background: #f6f7f9;
    line-height: 0;
}

.ai-diagnosis-demo {
    display: block;
    width: 100%;
    height: auto;
}

/* AI + 담당 매니저 2단계 검증 */
.ai-verification {
    text-align: center;
    background: linear-gradient(145deg, #ffffff 0%, #f4f8ff 100%);
}

.ai-verification-badge {
    display: inline-block;
    margin-bottom: 16px;
    padding: 7px 14px;
    border: 1px solid rgba(26, 109, 251, 0.18);
    border-radius: 100px;
    background: rgba(26, 109, 251, 0.07);
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.ai-verification-intro {
    max-width: 680px;
    margin: 12px auto 30px;
    color: var(--text-desc);
    font-size: 18px;
    line-height: 1.7;
}

.ai-verification-intro strong {
    color: var(--primary-color);
    font-weight: 850;
}

.ai-verification-flow {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 52px minmax(0, 1fr);
    align-items: stretch;
    max-width: 820px;
    margin: 0 auto;
}

.ai-verification-card {
    padding: 26px 24px;
    border: 1px solid rgba(26, 109, 251, 0.12);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 30px rgba(26, 109, 251, 0.06);
}

.verification-step {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.1em;
}

.ai-verification-card h3 {
    margin-bottom: 10px;
    color: var(--text-dark);
    font-size: 22px;
    font-weight: 850;
}

.ai-verification-card p {
    color: var(--text-desc);
    font-size: 15px;
    line-height: 1.7;
}

.verification-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 28px;
    font-weight: 850;
}

.ai-verification-note {
    margin-top: 18px;
    color: #8b9199;
    font-size: 12px;
    line-height: 1.6;
}

.hero .company-name {
    font-size: 15px;
    font-weight: 800;
    color: var(--primary-color); /* 메인 블루 컬러(#1070FF)로 교체 */
    letter-spacing: 0.05em; /* 자간 축소 (0.15em -> 0.05em) */
    margin-top: 0; /* 위 공백 최소화 */
    margin-bottom: 8px; /* 아래 간격을 좁게 수정 */
    text-transform: uppercase;
    background-color: rgba(26, 109, 251, 0.07); /* 뱃지 스타일을 위해 반투명 메인 블루 배경 다시 적용 */
    display: inline-block; /* 뱃지 모양을 컴팩트하게 감싸도록 inline-block 환원 */
    padding: 6px 16px; /* 뱃지 안쪽 패딩 복구 */
    border-radius: 30px; /* 뱃지 둥근 모서리(라운드 캡슐) 복구 */
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    background-clip: initial;
}

.hero .center-name {
    font-size: 20px; /* (주)동부비즈파트너스(15px)보다 확실하게 큼 */
    font-weight: 800;
    color: var(--text-dark); /* 잘 보이도록 진한 색상 적용 */
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.hero .main-copy {
    font-size: 46px;
    font-weight: 850;
    margin-top: 0;
    margin-bottom: 0;
    padding: 16px 10px 10px 10px !important; /* 제목 아래 및 위 여백(설명 위) 패딩을 조금 조밀하고 밀도감 있게 축소 단축 조정 (기존 32px 10px 16px -> 16px 10px 10px) */
    line-height: 1.25; /* 행간을 기존 1.35에서 1.25로 타이트하게 좁게 통일 */
    color: var(--text-dark);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.hero .main-copy span {
    color: var(--primary-color);
}

.hero .sub-copy {
    font-size: 18px;
    padding-top: 14px !important; /* 제목 아래 부분 패딩을 요구하신 비율에 맞추어 조금 더 조밀하게 단축 보정 (24px -> 14px) */
    margin-bottom: 16px; /* 메인 CTA 버튼 위 여백 줄이기 (24px -> 16px) */
    color: var(--text-desc);
    line-height: 1.6;
    font-weight: 500;
}

/* Hero Button Custom Width */
.hero-buttons {
    margin-bottom: 10px; /* 버튼 아래 여백 줄이기 */
}

.hero-buttons .cta-button {
    padding: 12px 30px !important; /* CTA 버튼 위아래 여백 긴장감 있게 대폭 줄임 (기존 16px 36px -> 12px 30px) */
    font-size: 17px;
    width: 100%;
    max-width: 260px; /* 최대 폭을 260px로 제한하여 날씬하고 콤팩트한 비율 형성 */
    display: inline-block;
    animation: pulse 2s infinite; /* 히어로 메인 CTA 버튼에도 은은한 맥박 강조 애니메이션 전면 반영 */
}

/* Buttons (CTA Style) */
.cta-button {
    display: inline-block;
    padding: 20px 48px;
    font-size: 19px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-align: center;
}

.cta-button.full-round {
    border-radius: 1000px !important; /* 상담 버튼 풀 라운드 적용 보장 */
}

.cta-button.primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(26, 109, 251, 0.25);
}

.cta-button.primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(26, 109, 251, 0.35);
}

.cta-button.secondary {
    background-color: #e8f3ff;
    color: var(--primary-color);
}

.cta-button.secondary:hover {
    background-color: #d8eaff;
    transform: translateY(-2px);
}

/* Pulse Animation for Reviews CTA */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(26, 109, 251, 0.4);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(26, 109, 251, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(26, 109, 251, 0);
    }
}

.reviews-cta .cta-button {
    animation: pulse 2s infinite;
}

.hook-action .cta-button {
    animation: pulse 2s infinite; /* '내 사업장 대상 여부 확인하기' 버튼에도 동일한 강조 맥박 애니메이션 적용 */
}

/* Hook Section */
.hook {
    background: #f0f5ff; /* 연한 블루 (짝수번째 그대로) */
    text-align: center;
}

.hook-title {
    font-size: 38px; /* 제목 크기 조금 더 크게 (기존 32px) */
    font-weight: 850;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
    line-height: 1.22; /* 각 섹션 제목 행간 좁게 통일 */
    color: var(--text-dark);
}

.hook-title .highlight-blue {
    color: var(--primary-color) !important; /* 블루포인트 */
    font-weight: 800 !important; /* 볼드(800)로 확실하게 굵게 수정 */
}

.hook-desc {
    font-size: 20px; /* 설명 크기 강화 */
    color: var(--text-desc);
    margin-bottom: 40px;
    font-weight: 550;
}

.hook-action {
    margin-top: 40px;
    text-align: center;
}

.hook .cta-button.secondary {
    background-color: var(--white);
    color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(26, 109, 251, 0.08);
}

.hook .cta-button.secondary:hover {
    background-color: #f5f9ff;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(26, 109, 251, 0.15);
}

/* Checklist Section (Yellow / Golden Pastel Theme) */
.checklist {
    display: none; /* Hook 섹션과 통합되었으므로 숨김 처리 */
}

.checklist-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    width: 100%;
}

.check-item {
    display: flex;
    align-items: center;
    background: var(--white);
    padding: 20px 24px; /* 기존 24px 32px 에서 단정하게 축소 */
    border-radius: 18px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    border: 1px solid #f2f4f7;
    text-align: left;
}

.bullet-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-right: 18px;
    flex-shrink: 0;
}

.bullet-icon.blue {
    color: var(--primary-color);
}

.bullet-icon.red {
    color: var(--accent-red);
}

.check-item .text strong {
    font-size: 16px; /* 텍스트 크기 작게 보정 (기존 18px) */
    font-weight: 800;
    color: var(--text-dark);
    display: block;
    margin-bottom: 4px;
}

.check-item .text p {
    font-size: 13.5px; /* 텍스트 크기 작게 보정 (기존 15.5px) */
    color: var(--text-desc);
    line-height: 1.5;
}

.check-item.disable {
    border-left: none; /* 불가대상카드 왼쪽 빨간색 border 제거 */
}

.highlight-danger {
    color: var(--accent-red) !important;
    font-weight: 800;
}

/* Features Section (Coral Pink / Peach Pastel Theme) */
.features {
    background: linear-gradient(to right bottom, rgb(224, 242, 254), rgb(244, 244, 245), rgb(204, 251, 241));
    text-align: center;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.22; /* 각 섹션 제목 행간 좁게 통일 */
    color: var(--text-dark);
    letter-spacing: -0.03em;
}

.subtitle {
    font-size: 17px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 50px;
    background: rgba(26, 109, 251, 0.08);
    display: inline-block;
    padding: 6px 18px;
    border-radius: 30px;
}

.features .subtitle {
    color: var(--primary-color);
    background: rgba(26, 109, 251, 0.08);
}

/* Features Viewport & Vertical Scroll (Luxury Card Stack Overlay) */
.features-viewport {
    overflow: hidden;
    height: 250px; /* 3개 활성화 카드 중첩 높이에 최적화 */
    position: relative;
    width: 100%;
    max-width: 680px; /* centered vertical layout looks very luxury and neat */
    margin: 0 auto;
}

.feature-grid {
    position: relative;
    width: 100%;
    height: 100%;
}

.feature-card {
    position: absolute; /* 절대 배치로 전환하여 겹침 유도 */
    top: 0;
    left: 0;
    width: 100%;
    height: 112px;
    flex-shrink: 0;
    box-sizing: border-box;
    background: var(--white);
    padding: 24px 32px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), 
                opacity 0.8s ease, 
                border-color 0.8s ease, 
                box-shadow 0.8s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
}

/* 카드 스택 상태 클래스들 */
.feature-card.card-hidden-up {
    transform: translateY(-130px) scale(0.9);
    opacity: 0;
    z-index: 10;
    pointer-events: none;
}

.feature-card.card-slot-1 {
    transform: translateY(10px) scale(0.92);
    opacity: 0.7;
    z-index: 11;
}

.feature-card.card-slot-2 {
    transform: translateY(65px) scale(0.96);
    opacity: 0.88;
    z-index: 12;
}

.feature-card.card-slot-3 {
    transform: translateY(120px) scale(1.0);
    opacity: 1;
    z-index: 13;
    border-color: rgba(26, 109, 251, 0.15);
    box-shadow: 0 12px 32px rgba(26, 109, 251, 0.08);
}

.feature-card.card-hidden-down {
    transform: translateY(240px) scale(0.95);
    opacity: 0;
    z-index: 0;
    pointer-events: none;
    transition: none !important; /* 즉시 아래로 배치 */
}

.feature-card h3 {
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.feature-card p {
    font-size: 14px;
    color: var(--text-desc);
    line-height: 1.5;
}

.highlight-blue {
    color: var(--primary-color) !important;
    font-weight: 800;
}

/* Reviews Section (Lavender / Violet Soft Pastel Theme) */
.reviews {
    background: #f0f5ff; /* 연한 블루 (짝수번째 그대로) */
    position: relative;
    overflow: hidden;
    padding-left: 24px; /* 더 넓은 카드 폭 확보를 위해 패딩 축소 */
    padding-right: 24px;
}

.reviews .section-title {
    text-align: left;
    margin-bottom: 0;
}

.reviews-header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px; /* 좌우이동버튼이랑 리뷰카드 사이 여백 대폭 축소 (기존 40px) */
    flex-wrap: wrap;
    gap: 20px;
}

/* Slider Controls (오른쪽 상단 배치) */
.slider-controls {
    display: flex;
    gap: 8px;
}

.slider-btn {
    width: 32px; /* 좌우이동버튼 크기 축소 (기존 44px) */
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid #e5e8eb;
    background: var(--white);
    color: var(--text-desc);
    font-size: 12px; /* 폰트도 함께 축소 */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.slider-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(26, 109, 251, 0.2);
}

.slider-btn:active {
    transform: scale(0.95);
}

/* Slider Viewport */
.slider-viewport {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 10px 0;
}

.review-list {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.25, 1); /* 더욱 길고 부드러운 전환 효과 */
    width: 100%;
    gap: 24px;
}

.review-item {
    flex: 0 0 100%;
    max-width: 100%;
    box-sizing: border-box;
    background: var(--white);
    border: 1px solid #f2f4f7;
    padding: 40px;
    border-radius: var(--card-radius);
    transition: transform 0.25s ease;
}

.review-item:hover {
    transform: scale(1.01);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.review-header .badge {
    background: rgba(26, 109, 251, 0.08);
    color: var(--primary-color);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
}

.review-header .result-badge {
    background: #00d282;
    color: var(--white);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0, 210, 130, 0.15);
}

.review-item h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.4;
}

.review-profile {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
}

.review-text {
    line-height: 1.45; /* 리뷰카드 설명문구 행간 좁게 수정 (1.75 -> 1.45) */
    margin-bottom: 24px;
    color: var(--text-desc);
    font-size: 15.5px;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tags span {
    background: rgba(26, 109, 251, 0.08); /* 업종뱃지와 통일된 파스텔 블루 배경 */
    color: var(--primary-color);          /* 주 색상과 통일 */
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 30px;                   /* 둥근 타원 형태로 변경 */
    font-weight: 700;
}

.reviews-cta {
    text-align: center;
    margin-top: 50px;
}

/* Form Section (Consultation Form - Toss Blue/Pink Pastel Gradient - Direct Layout) */
.consultation {
    background: linear-gradient(to right bottom, rgb(224, 242, 254), rgb(244, 244, 245), rgb(204, 251, 241));
    text-align: center;
}

.consultation form {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
    text-align: left;
}

.form-title {
    font-size: 38px; /* 상담폼 섹션 제목 더 크게 보정 (기존 32px -> 38px) */
    font-weight: 850;
    text-align: center;
    margin-bottom: 35px;
    line-height: 1.25; /* 각 섹션 제목 행간 좁게 통일 */
    color: var(--text-dark);
}

/* 추가 스타일 */
.form-section-title {
    font-size: 18px;
    font-weight: 600; /* 제목 텍스트 굵기 세미볼드(600)로 수정 */
    color: var(--primary-color);
    margin: 20px 0 12px 0; /* 여백 축소 */
    padding-bottom: 0; /* 아래 패딩 차감 */
    border-bottom: none; /* 아래 구분선 삭제 */
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-section-title .required-star {
    color: var(--accent-red);
    font-weight: bold;
}

.form-group {
    margin-bottom: 16px !important; /* 각 항목 간의 하단 여백 중요도 부여로 확실하게 대폭 줄임 */
}

/* 입력 필드 필수 입력 빨간 * 표시 */
.form-group label {
    font-weight: 500;
    font-size: 14.5px;
    margin-bottom: 6px !important; /* 라벨과 인풋 사이 간격 축소 */
    display: block;
    color: var(--text-dark);
}

.form-group label .required-star {
    color: var(--accent-red);
    font-weight: bold;
    margin-left: 3px;
}

/* 단계별 애니메이션 전환 */
.form-step {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    height: 0;
    overflow: hidden;
    pointer-events: none;
}

.form-step.active {
    opacity: 1;
    transform: translateY(0);
    height: auto;
    overflow: visible;
    pointer-events: auto;
    margin-bottom: 20px;
}

.form-group select {
    width: 100%;
    padding: 16px;
    border: 1.5px solid #e5e8eb;
    border-radius: 14px;
    font-size: 16px;
    color: var(--text-dark);
    outline: none;
    transition: all 0.2s ease;
    background-color: #fafbfc;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234e5968' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
}

.form-group select:focus {
    border-color: var(--primary-color);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(26, 109, 251, 0.1);
}

/* 체크박스 그리드 스타일 (중복선택용 및 라디오 대체용) */
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px; /* 여백 축소 */
}

/* 지역 선택용 3열 조밀한 그리드 */
.checkbox-grid.compact-grid {
    grid-template-columns: repeat(3, 1fr);
}

.checkbox-label {
    display: flex;
    align-items: center;
    justify-content: center; /* 가운데 정렬로 더 깔끔한 디자인 */
    padding: 12px 10px; /* 패딩 축소 */
    border: 1.5px solid #e5e8eb;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    background-color: #fafbfc;
    text-align: center;
}

/* 체크/라디오 동그라미/네모 자체를 완벽하게 보이지 않게 처리 */
.checkbox-label input[type="checkbox"],
.checkbox-label input[type="radio"] {
    display: none !important;
}

.checkbox-label span {
    font-weight: 550;
    font-size: 14px;
    color: var(--text-desc);
    word-break: keep-all;
}

.checkbox-label:hover {
    border-color: #ccd2d8;
}

.checkbox-label:has(input:checked) {
    border-color: var(--primary-color);
    background-color: #f0f7ff;
}

.checkbox-label:has(input:checked) span {
    color: var(--primary-color);
}

@media (max-width: 576px) {
    .checkbox-grid {
        grid-template-columns: repeat(2, 1fr); /* 모바일에서도 2열 유지로 정돈 */
    }
    .checkbox-grid.compact-grid {
        grid-template-columns: repeat(3, 1fr); /* 모바일에서도 지역은 3열 유지 */
        gap: 6px;
    }
}
}

.checkbox-label:has(input:checked) span {
    color: var(--primary-color);
}

/* 기존 중복된 form-group 마진 선언 삭제 및 일관된 간격 적용 */
.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 500; /* 라벨 텍스트 굵기를 미디엄(500)으로 조정 (기존 700에서 500으로) */
    margin-bottom: 6px !important;
    color: var(--text-dark);
}

.form-group input[type="text"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 16px;
    border: 1.5px solid #e5e8eb;
    border-radius: 14px;
    font-size: 16px;
    color: var(--text-dark);
    outline: none;
    transition: all 0.2s ease;
    background-color: #fafbfc;
}

.form-group input:focus {
    border-color: var(--primary-color);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(26, 109, 251, 0.1);
}

/* Radio button design customization (Toss Style) */
.radio-group {
    display: grid; /* 기존 flex에서 grid로 교환 */
    grid-template-columns: repeat(2, 1fr); /* 2열 1행 그리드 강제 장착 */
    gap: 16px;
}

.radio-label {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    border: 1.5px solid #e5e8eb;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    background-color: #fafbfc;
}

.radio-label input {
    margin-right: 8px;
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
}

.radio-label span {
    font-weight: 600;
    font-size: 15.5px;
    color: var(--text-desc);
}

.radio-label:hover {
    border-color: #ccd2d8;
}

/* Styling selected state */
.radio-label:has(input:checked) {
    border-color: var(--primary-color);
    background-color: #f0f7ff;
}

.radio-label:has(input:checked) span {
    color: var(--primary-color);
}

.form-policy {
    font-size: 14px;
    margin: 30px 0;
    display: flex;
    align-items: center;
    justify-content: center; /* 한곳에 이쁘게 정렬하도록 추가 */
    gap: 8px; /* 체크박스 라벨과 보기 버튼 간격 */
}

.form-policy label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.form-policy input {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    accent-color: var(--primary-color);
    cursor: pointer;
}

.form-policy span {
    color: var(--text-desc);
    font-weight: 550;
}

.policy-view-btn {
    font-size: 13.5px;
    color: var(--text-dark); /* 가독성이 좋은 컬러 적용 */
    font-weight: 600;
    text-decoration: underline; /* 밑줄 처리 */
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.policy-view-btn:hover {
    opacity: 0.7;
    color: var(--primary-color); /* 호버 시 파란 포인트 적용 */
}

.submit-button {
    width: 100%;
    max-width: 320px; /* 상담신청하기 버튼을 조금 작고 세련되게 축소 (가로 최대 제한 부여) */
    margin: 0 auto;
    display: block; /* 마진 오토 작동 정렬 */
    padding: 16px 24px; /* 단추 세로 폭을 조절하여 날씬하고 콤팩트하게 교정 */
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 16px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 8px 24px rgba(26, 109, 251, 0.2);
}

.submit-button.full-round {
    border-radius: 1000px; /* 상담 신청하기 버튼을 완전한 라운드(풀 라운드) 형태로 수정 */
}

.submit-button:hover {
    background-color: var(--primary-hover);
    box-shadow: 0 12px 30px rgba(26, 109, 251, 0.3);
}

.submit-button:disabled {
    background-color: var(--text-light);
    cursor: not-allowed;
    box-shadow: none;
}

.form-sub-text {
    text-align: center;
    font-size: 15.5px; /* 시인성에 최적화된 편안한 사이즈 */
    font-weight: 600; /* 깔끔하고 선명한 세미볼드(600)로 수정 */
    color: var(--text-dark); /* 검은색 컬러 적용 및 가독성 확보 */
    margin-top: 14px;
    letter-spacing: -0.01em;
    display: block; /* 뱃지 스타일을 없애고 블록 형태로 복구 */
    margin: 14px auto 0 auto;
    padding: 0;
    border-radius: 0;
    background: none; /* 배경색 제거 */
}

/* Footer */
footer {
    width: calc(100% - 160px); /* 푸터 좌우 여백 맞춰 확대 */
    max-width: 1040px;
    margin: 32px auto 0 auto; /* 상단 플로팅 마진 적용, 밑바닥 밀착 */
    padding: 36px 48px 48px 48px; /* 푸터 정렬에 맞춰 좌우 여백을 넓혀 정돈되게 수정 */
    text-align: left; /* 왼쪽 정렬 */
    background-color: #f0f5ff; /* 짝수 섹션과 완벽 매치되는 소프트 웜 블루 단색 배경 */
    color: var(--text-dark); /* 가독성을 대폭 고려해 확실히 어두운 글자색으로 변경 */
    font-size: 14.5px;
    border-radius: 32px 32px 0 0; /* 하단 빼고 상단, 좌우에만 24px/32px round 효과 */
    border: none;
    line-height: 1.5; /* 푸터 설명 및 고지문구 행간조정 */
    box-sizing: border-box;
    font-weight: 500; /* 전체 푸터 텍스트 미디움 두께 기본 적용 */
}

footer p, footer span, footer div {
    font-weight: 500 !important; /* 푸터 내부 텍스트 굵기 미디엄화 강제 */
}

footer p:first-child, footer .footer-title {
    font-weight: 700 !important; /* 푸터 첫줄 제목만 강조 */
    color: var(--text-dark);
    margin-bottom: 14px;
    font-size: 18px; /* 크기 키움 */
}

.footer-notice {
    font-size: 14.5px; /* 크기 조금 더 키움 */
    color: var(--text-dark); /* 어두운 색상 */
    line-height: 1.6;
    margin-bottom: 24px;
    opacity: 1.0; /* 투명도를 없애 글자가 매우 잘 보이도록 수정 */
}

.footer-info {
    display: flex;
    flex-direction: column; /* 각 줄바꿈하여 라인마다 출력 위해 세로 정렬 */
    align-items: flex-start; /* 왼쪽정렬 */
    gap: 4px; /* 요소간 간격을 좁게 수정 (8px -> 4px) */
    margin-top: 14px;
    margin-bottom: 14px;
    font-size: 14px; /* 크기 조금 더 키움 */
    color: var(--text-dark); /* 어두운 색상 */
    line-height: 1.4; /* 행간을 조금 더 촘촘하게 수정 (1.6 -> 1.4) */
    opacity: 1.0; /* 투명도 제거 */
}

.footer-info span {
    display: block; /* 줄바꿈 확실하게 보장 */
}

.footer-info span:not(:last-child)::after {
    display: none; /* 줄바꿈 세로 정렬 방식이므로 오른쪽 구분선 제거 */
}

.footer-copyright {
    font-size: 13.5px; /* 조금 더 키움 */
    color: var(--text-dark); /* 어두운 색상 */
    margin-top: 18px;
    opacity: 0.9; /* 저작권 줄 가독성 향상 */
}

.footer-brand-notice {
    margin-top: 8px;
    font-size: 13.5px;
    color: var(--text-dark);
    opacity: 0.9;
}

@media (max-width: 991px) {
    /* 기존 grid 컬럼 스타일 제거 */
}

@media (max-width: 768px) {
    .grid-card-section {
        width: calc(100% - 40px); /* 모바일 좌우 20px 마진으로 넓혀 플로팅 입체감 강화 */
        margin: 16px auto;
        padding: 40px 20px;
        border-radius: 24px;
    }

    .hero-content {
        padding: 15px 12px 10px 12px !important; /* 모바일에서도 상호명 위 여백 극소화 및 좌우 여백 축소 */
    }

    .ai-phone-mockup {
        width: 78%;
        max-width: 310px;
        padding: 11px 9px 0;
        border-width: 2px;
        border-bottom: 0;
        border-radius: 42px 42px 0 0;
    }

    .phone-notch {
        top: 10px;
        height: 25px;
    }

    .ai-phone-screen {
        border-radius: 31px 31px 0 0;
    }

    .ai-verification-intro {
        margin-bottom: 24px;
        font-size: 15.5px;
    }

    .ai-verification-flow {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .verification-arrow {
        min-height: 24px;
        transform: rotate(90deg);
        font-size: 24px;
    }

    .ai-verification-card {
        padding: 22px 18px;
    }

    .ai-verification-card h3 {
        font-size: 19px;
    }

    .hook-title {
        font-size: 26px !important; /* 모바일 크기 보정 */
    }

    .hook-desc {
        font-size: 15.5px !important;
    }

    /* Features Viewport Height & Card Height adjustment for mobile vertical slider */
    .features-viewport {
        height: 310px !important; /* 모바일 중첩 카드 높이에 최적화 */
    }

    .feature-card {
        height: 140px !important;
        padding: 16px 20px !important;
        position: absolute !important; /* 절대 배치 준수 */
    }

    /* Adjust the card overlapping translate values on mobile */
    .feature-card.card-hidden-up {
        transform: translateY(-160px) scale(0.85) !important;
    }

    .feature-card.card-slot-1 {
        transform: translateY(5px) scale(0.9) !important;
    }

    .feature-card.card-slot-2 {
        transform: translateY(70px) scale(0.95) !important; // 모바일 겹치는 정렬 조정
    }

    .feature-card.card-slot-3 {
        transform: translateY(135px) scale(1.0) !important;
    }

    .feature-card.card-hidden-down {
        transform: translateY(280px) scale(0.95) !important;
        transition: none !important;
    }

    .feature-card {
        height: 140px !important;
        padding: 16px 20px !important;
    }

    .feature-card h3 {
        font-size: 16px !important;
        margin-bottom: 6px !important;
    }

    .feature-card p {
        font-size: 12.5px !important;
        line-height: 1.4 !important;
    }

    footer {
        width: calc(100% - 40px); /* 모바일 좌우 20px 마진 일치 */
        margin: 16px auto 0 auto;
        padding: 32px 24px 48px 24px !important; /* 모바일에서도 왼쪽 정렬에 맞춰 패딩을 확보하도록 수정 */
        border-radius: 24px 24px 0 0; /* 모바일에서도 하단 제외 탑라운딩 */
    }

    .footer-info {
        gap: 6px;
        font-size: 13px; /* 모바일 크기 키움 */
    }

    .top-banner {
        width: calc(100% - 40px); /* 모바일 좌우 20px 마진 일치 */
        margin: 12px auto;
        top: 12px;
        font-size: 11.5px;
        padding: 10px 14px;
        border-radius: 1000px; /* 모바일에서도 full round 효과 */
        line-height: 1.4;
    }

    header {
        display: none;
    }

    .hero .main-copy {
        font-size: 28px;
        line-height: 1.35;
        padding: 0 !important; /* 자르지 않고 좌우 여백을 극소화하여 가로 넓게 */
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .hero .sub-copy {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .cta-button {
        width: 100%;
        padding: 16px 20px;
        font-size: 16px;
    }

    /* 히어로 버튼 폭 좁게 모바일 개별 적용 */
    .hero-buttons .cta-button {
        width: auto !important;
        max-width: 250px !important;
        padding: 14px 30px !important;
        font-size: 15.5px !important;
        display: inline-block !important;
        margin: 0 auto;
    }

    .hook-title {
        font-size: 22px;
    }

    .hook-desc {
        font-size: 14.5px;
        margin-bottom: 24px;
    }
    
    .checklist-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 24px;
    }

    .check-item {
        padding: 16px 20px;
    }

    .mobile-only {
        display: block !important;
    }

    .section-title {
        font-size: 24px;
        letter-spacing: -0.02em;
    }
    
    .subtitle {
        font-size: 14px;
        margin-bottom: 30px;
        padding: 5px 14px;
    }

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

    .feature-card {
        padding: 16px 20px;
    }

    .reviews {
        padding-left: 12px; /* 모바일에서 더 풍성하고 넓게 가로 폭 확장 */
        padding-right: 12px;
    }

    .review-item {
        padding: 30px 20px;
    }

    .review-item h3 {
        font-size: 17px;
        line-height: 1.4;
    }

    .review-header {
        margin-bottom: 16px;
    }

    .review-header .badge, 
    .review-header .result-badge {
        font-size: 11px;
        padding: 4px 10px;
    }

    .review-text {
        font-size: 14px;
        margin-bottom: 18px;
    }

    .tags span {
        font-size: 11px;
        padding: 4px 10px;
    }

    .form-title {
        font-size: 22px;
        margin-bottom: 24px;
    }

    .radio-group {
        flex-direction: column;
        gap: 10px;
    }

    .radio-label {
        padding: 14px;
    }

    .form-policy {
        margin: 20px 0;
    }
}

/* Scroll Reveal CSS (동부비즈 특별 부드러운 스크롤 페이드 무브 애니메이션) */
.scroll-reveal {
    opacity: 0; /* JS가 클래스를 부여할 때 자연스럽게 보이도록 CSS transition 적용 */
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, opacity;
}

.scroll-reveal.active {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* staggered transitions for deeper nested elements */
.scroll-reveal.delay-1 {
    transition-delay: 0.15s;
}

.scroll-reveal.delay-2 {
    transition-delay: 0.3s;
}

.scroll-reveal.delay-3 {
    transition-delay: 0.45s;
}

.scroll-reveal.delay-4 {
    transition-delay: 0.6s;
}

/* Litmers-inspired purple brand palette */
:root {
    --primary-color: #5500ff;
    --primary-hover: #4400cc;
    --accent-color: #9666ff;
    --text-dark: #191f28;
    --text-desc: #4e5968;
    --text-light: #8b95a1;
    --bg-gray: #f9fafb;
    --bg-pastel-blue: #f6f0ff;
    --white: #ffffff;
    --brand-deep: #2c0080;
    --brand-light: #9865ff;
    --brand-pink: #fc67ff;
    --brand-soft: #efe5ff;
    --border-color: #e5e8ec;
    --dark-surface: #110d16;
}

.top-banner {
    background-color: var(--text-dark);
    box-shadow: 0 8px 32px rgba(85, 0, 255, 0.18);
}

.hero {
    background:
        radial-gradient(circle at 50% 32%, rgba(87, 0, 255, 0.4) 0%, rgba(0, 0, 0, 0) 60%),
        linear-gradient(180deg, #2c0080 0%, #5700ff 40%, #9865ff 80%, #ffffff 100%);
}

.hero .center-name,
.hero .main-copy {
    color: var(--white);
}

.hero .center-name,
.hero .sub-copy {
    color: rgba(255, 255, 255, 0.88);
}

.hero .main-copy span {
    color: var(--brand-pink);
}

.hero .company-name {
    background-color: rgba(85, 0, 255, 0.08);
}

.hero-buttons .cta-button.primary {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 0 12px 32px rgba(25, 31, 40, 0.2);
}

.hero-buttons .cta-button.primary:hover {
    background: #f6f0ff;
    color: var(--primary-hover);
}

.ai-verification {
    background: linear-gradient(145deg, #ffffff 0%, #f6f0ff 100%);
}

.ai-verification-badge {
    border-color: rgba(85, 0, 255, 0.18);
    background: rgba(85, 0, 255, 0.07);
}

.ai-verification-card {
    border-color: rgba(85, 0, 255, 0.12);
    box-shadow: 0 12px 30px rgba(85, 0, 255, 0.06);
}

.cta-button.primary {
    box-shadow: 0 8px 24px rgba(85, 0, 255, 0.25);
}

.cta-button.primary:hover {
    box-shadow: 0 12px 28px rgba(85, 0, 255, 0.35);
}

.cta-button.secondary {
    background-color: #efe5ff;
}

.cta-button.secondary:hover {
    background-color: #e2d1ff;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(85, 0, 255, 0.4);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(85, 0, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(85, 0, 255, 0);
    }
}

.hook {
    background: #f6f0ff;
}

.hook .cta-button.secondary {
    box-shadow: 0 8px 24px rgba(85, 0, 255, 0.08);
}

.hook .cta-button.secondary:hover {
    background-color: #efe5ff;
    box-shadow: 0 12px 28px rgba(85, 0, 255, 0.15);
}

.features,
.consultation {
    background: linear-gradient(145deg, #ffffff 0%, #f6f0ff 55%, #efe5ff 100%);
}

.subtitle,
.features .subtitle,
.review-header .badge,
.tags span {
    background: rgba(85, 0, 255, 0.08);
}

.feature-card.card-slot-3 {
    border-color: rgba(85, 0, 255, 0.15);
    box-shadow: 0 12px 32px rgba(85, 0, 255, 0.08);
}

.reviews {
    background: #f2f4f6;
}

.slider-btn:hover {
    box-shadow: 0 4px 12px rgba(85, 0, 255, 0.2);
}

.review-header .result-badge {
    background: linear-gradient(135deg, #5500ff 0%, #fc67ff 100%);
    box-shadow: 0 4px 10px rgba(85, 0, 255, 0.18);
}

.form-group select:focus,
.form-group input:focus {
    box-shadow: 0 0 0 4px rgba(85, 0, 255, 0.1);
}

.checkbox-label:has(input:checked),
.radio-label:has(input:checked) {
    background-color: #f6f0ff;
}

.submit-button:hover {
    box-shadow: 0 12px 30px rgba(85, 0, 255, 0.3);
}

.submit-button {
    box-shadow: 0 8px 24px rgba(85, 0, 255, 0.2);
}

footer {
    background-color: var(--dark-surface);
    color: var(--white);
}

footer p:first-child,
footer .footer-title {
    color: var(--white);
}

.footer-notice,
.footer-info {
    color: #d1d6db;
}

.footer-copyright {
    color: #8b95a1;
}

.footer-brand-notice {
    color: #cfc4ff;
}

.footer-brand-headline {
    margin: 0 0 6px;
    color: var(--white);
    font-size: 19px;
    font-weight: 700 !important;
    line-height: 1.55;
    opacity: 1;
}

footer .footer-company-headline {
    margin: 0 0 24px;
    color: #cfc4ff;
    font-size: 16px;
    font-weight: 600 !important;
    line-height: 1.5;
    opacity: 1;
}

@media (max-width: 768px) {
    .footer-brand-headline {
        font-size: 17px;
    }

    footer .footer-company-headline {
        font-size: 14.5px;
    }
}

/* Interactive hero dot field */
.hero {
    isolation: isolate;
}

.hero-dot-canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    opacity: 0.9;
    pointer-events: none;
}

.hero-content,
.hero-mockup-wrap {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .hero-dot-canvas {
        opacity: 0.72;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-dot-canvas {
        opacity: 0.62;
    }
}

@media (forced-colors: active) {
    .hero-dot-canvas {
        display: none;
    }
}
