* {
    box-sizing: border-box;
}

html {
    scrollbar-gutter: stable;
}


/* 기본 스타일 */
body {
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans KR', sans-serif;
    background: #ffffff;
    color: #1A1A1A;
    overflow-y: scroll;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
.header {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* 로고 영역 */
.logo-wrap {
    display: inline-flex;
    align-items: center;
}

.logo {
    height: 54px;
    /* 지금 화면에서 보이는 크기 정도 */
    width: auto;
}

/* 내비게이션 */
.nav {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 14px;
}

.nav-link {
    text-decoration: none;
    color: #0A355A;
    /* font-weight: 500; */
    font-weight: bold;
    position: relative;
    padding-bottom: 2px;
}

/* active / hover 상태 강조 */
.nav-link.active,
.nav-link:hover {
    color: #062544;
}

.nav-link.active::after,
.nav-link:hover::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: #3AAFFF;
}

/* 전화 버튼 */
.call-btn {
    padding: 8px 18px;
    background: #0A355A;
    color: #ffffff !important;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
}

.call-btn:hover {
    background: #062544;
}

/* Hero Section */
.hero {
    position: relative;
    height: 70vh;
    background: url("../assets/hero-truck.png") center 20% / cover no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

/* Overlay 더 강하게 */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.10);
    /* 기존 0.45 → 0.60로 강화 */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    /* 완전한 화이트 */
}

/* 텍스트 가독성 강화 */
.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.75);
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}


/* Primary Button */
.btn-primary {
    background: #0A355A;
    color: white;
}

/* Secondary Button */
.btn-secondary {
    background: #3AAFFF;
    color: white;
}

/* 모바일 */
@media (max-width: 768px) {
    .nav a {
        margin-left: 12px;
        font-size: 14px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }
}

.page-section {
    max-width: 1100px;
    margin: auto;
    padding: 160px 20px 80px;
    text-align: center;
}

.page-section h1 {
    font-size: 36px;
    color: #0A355A;
}

.page-section .desc {
    font-size: 18px;
    color: #444;
    margin-bottom: 40px;
}

/* 서비스 박스 */
.service-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.service-box {
    padding: 20px;
    border: 1px solid #dce1e7;
    border-radius: 10px;
    background: #fff;
    text-align: left;
}

/* 프로세스 */
.process-flow {
    margin-top: 40px;
    display: flex;
    justify-content: space-around;
    font-size: 20px;
    font-weight: 600;
    color: #0A355A;
    text-align: center;
}

.process-flow div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

/* 아이콘 스타일 */
.process-flow .icon {
    font-size: 26px;
    display: block;
}

.process-title {
    font-size: 22px;
    font-weight: 800;
}


/* 차량 박스 */
.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

/* 차량 카드 전체 통일감 강화 */
.vehicle-box {
    text-align: center;
    padding: 24px 20px;
    border-radius: 10px;
    background: #F5F7FA;
    border: 1px solid #dce1e7;
    box-shadow: 0 8px 24px rgba(15, 35, 52, 0.04);
}

/* 차량 이미지 중앙 정렬 + 사이즈 안정화 */
.vehicle-img {
    display: block;
    max-width: 200px;
    width: 100%;
    margin: 0 auto 12px auto;
}

/* 차량 제목 */
.vehicle-box h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #0A355A;
}

/* 본문 가독성 개선 */
.vehicle-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 12px;
}

/* bullet 정보 정렬 자연스럽게 */
.vehicle-spec {
    text-align: left;
    margin: 0 auto;
    max-width: 440px;
    line-height: 1.6;
}

.small-desc {
    font-size: 14px;
    margin-top: 8px;
    margin-bottom: 24px;
}


/* 접수 폼 */
.contact-form {
    width: 100%;
    max-width: 500px;
    margin: auto;
    text-align: left;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 16px;
    border: 1px solid #cfd6dd;
    border-radius: 6px;
}

/* 전체 섹션 */
.page-section {
    max-width: 700px;
    margin: auto;
    padding: 150px 20px;
}

/* 제목 */
.page-section h1 {
    text-align: center;
    font-size: 34px;
    color: #0A355A;
    margin-bottom: 30px;
}

/* 카드형 박스 */
.form-box {
    background: #ffffff;
    padding: 28px;
    border-radius: 14px;
    border: 1px solid #e2e6ea;
    margin-bottom: 26px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.form-box h2 {
    font-size: 20px;
    color: #0A355A;
    margin-bottom: 16px;
    border-left: 4px solid #0A355A;
    padding-left: 10px;
}

/* 라벨 없는 입력 스타일 */
input[type=text],
input[type=date],
select,
textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid #cfd6dd;
    font-size: 15px;
    margin-bottom: 14px;
    box-sizing: border-box;
    transition: all 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
    border-color: #0A355A;
    box-shadow: 0 0 0 3px rgba(10, 53, 90, 0.15);
    outline: none;
}

/* 두 개 나란히 배치 */
.flex-row {
    display: flex;
    gap: 10px;
}

/* 주소 검색 버튼 */
.btn-secondary {
    background: #3AAFFF;
    color: white;
    border-radius: 10px;
    padding: 14px 18px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    transition: 0.15s;
    white-space: nowrap;
}

.btn-secondary:hover {
    background: #1f97ff;
}

/* 제출 버튼 */
.submit-btn {
    width: 100%;
    background: #0A355A;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 18px;
    margin-top: 20px;
    cursor: pointer;
    transition: 0.2s;
}

.submit-btn:hover {
    background: #092e4f;
}

.agreement-box {
    background: #f7f9fb;
    border: 1px solid #dfe4ea;
    padding: 16px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.6;
    color: #444;
}

.agree-row {
    margin-top: 12px;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.agree-row input[type="checkbox"] {
    transform: scale(1.2);
}


.hero-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
}

.hero-btn {
    padding: 14px 22px;
    font-size: 17px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
}

/* Buttons */
.hero-btn.call {
    background: #112d54;
    color: #fff;
}

.hero-btn.call:hover {
    background: #0d2342;
}

.hero-btn.submit {
    background: #3AAFFF;
    color: #fff;
}

.hero-btn.submit:hover {
    background: #1395f7;
}

/* Stats Section */
.stats {
    max-width: 1000px;
    margin: 70px auto;
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-box h2 {
    font-size: 34px;
    color: #0A355A;
    font-weight: 700;
}

.stat-box p {
    font-size: 16px;
    color: #555;
}

.certification {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 70px 0;
    background: #f8fbff;
}

.cert-box {
    max-width: 350px;
    text-align: center;
}

.cert-box img {
    width: 300px;
    max-width: 100%;
    margin-bottom: 15px;
}

.cert-box h3 {
    font-size: 20px;
    color: #0A355A;
    margin-bottom: 10px;
}

.cert-box p {
    font-size: 14px;
    color: #444;
    line-height: 1.5;
}

/* 비교 섹션 */
.compare-section {
    padding: 80px 20px;
    background: #f9fbff;
    text-align: center;
}

.compare-section h2 {
    font-size: 32px;
    color: #0A355A;
    margin-bottom: 40px;
    font-weight: 700;
}

.compare-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.compare-box {
    flex: 1;
    min-width: 320px;
    background: white;
    border-radius: 14px;
    padding: 30px 28px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e6ea;
    text-align: left;
}

.compare-box h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #0A355A;
}

.compare-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.compare-box ul li {
    font-size: 15px;
    color: #444;
    margin-bottom: 12px;
    line-height: 1.5;
    padding-left: 18px;
    position: relative;
}

.compare-box ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #0A355A;
    font-size: 20px;
}

/* 우리 회사 강조색 */
.compare-box.ours {
    border-left: 4px solid #0A355A;
}

/* 타사 박스 색상 */
.compare-box.competitor {
    border-left: 4px solid #c93f3f;
}

.reviews {
    padding: 60px 0;
    text-align: center;
}

.reviews h2 {
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 700;
    color: #0A355A;
}

.review-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.review-card {
    background: #fff;
    padding: 22px 20px;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee;
    text-align: left;
}

.review-card p {
    font-size: 15px;
    line-height: 1.5;
    color: #444;
    margin-bottom: 12px;
}

.review-card span {
    font-size: 13px;
    color: #666;
}

/* 후기 캐러셀 */
.review-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

.carousel-track-container {
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
}

/* 버튼 */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #0A355A;
    color: white;
    border: none;
    font-size: 30px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.2s;
}

.carousel-btn:hover {
    background: #062544;
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

.review-card {
    width: 85%;
    background: white;
    padding: 25px 20px;
    border-radius: 12px;
    border: 1px solid #eee;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    margin-bottom: 8px;
    /* 슬라이드 영역 안에서 조금 더 여유 */
}

/* Footer */
.footer {
    background: #0A355A;
    color: #ffffff;
    padding: 50px 20px 30px;
    margin-top: 80px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
}

.footer-info p,
.footer-cert p,
.footer-support p {
    margin: 4px 0;
    font-size: 14px;
    opacity: 0.85;
}

.footer-call,
.footer-kakao {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 14px;
    background: #3AAFFF;
    border-radius: 8px;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    margin-right: 6px;
    transition: 0.2s;
}

.footer-call:hover,
.footer-kakao:hover {
    background: #1f97ff;
}

/* 하단 */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    font-size: 13px;
    opacity: 0.8;
}

.footer-bottom a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 5px;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.footer-bottom .tm-note {
    margin-top: 4px;
    font-size: 12px;
    opacity: 0.75;
}

/* 플로팅 카카오 상담 버튼 */
.kakao-floating {
    position: fixed;
    right: 24px;
    bottom: 24px;
    background: #FEE500;
    color: #000;
    font-weight: 700;
    padding: 12px 18px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    z-index: 9999;
    font-size: 15px;
    transition: 0.2s;
}

.kakao-floating:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}

/* 모바일에서 조금 위로 */
@media (max-width: 600px) {
    .process-flow {
        flex-direction: row;
        gap: 12px;
        font-size: 14px;
    }

    .process-flow .icon {
        font-size: 22px;
    }

    .flex-row {
        flex-direction: column;
    }

    .page-section {
        padding: 130px 14px;
    }

    .form-box {
        padding: 22px;
    }

    .submit-btn {
        font-size: 17px;
        padding: 14px;
    }

    .floating-kakao {
        right: 16px;
        bottom: 16px;
        width: 52px;
        height: 52px;
    }

    .floating-kakao-bubble {
        font-size: 12px;
    }
}


/* 공통 카드 스타일 향상 */
.service-box,
.vehicle-card,
.vehicle-box,
.form-box,
.compare-box,
.review-card {
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.service-box:hover,
.vehicle-card:hover,
.vehicle-box:hover,
.form-box:hover,
.compare-box:hover,
.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: #c5d4e3;
}

/* 페이지 섹션 간 여백 약간 줄이고 정리 */
.page-section {
    max-width: 960px;
    margin: 0 auto;
    padding: 140px 20px 80px;
}

/* 섹션 제목 일관성 */
.section-title {
    font-size: 32px;
    color: #0A355A;
    text-align: center;
    margin-bottom: 10px;
    font-weight: 700;
}

.section-subtitle {
    font-size: 16px;
    text-align: center;
    color: #555;
    margin-bottom: 32px;
}

/* 배차 프로세스 반응형 개선 */
.process-flow {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.process-flow div {
    white-space: nowrap;
    font-size: 18px;
}

/* ===================== */
/*  반응형 레이아웃 설정  */
/* ===================== */

/* 태블릿 (1024px 이하) */
@media (max-width: 1024px) {

    .header-inner {
        padding: 10px 16px;
    }

    .nav a {
        margin-left: 16px;
        font-size: 14px;
    }

    .hero {
        height: 60vh;
        background-position: center;
    }

    .stats {
        margin: 50px auto;
    }
}

/* 모바일 공통 (768px 이하) */
@media (max-width: 768px) {

    /* 헤더 쪽 정리 */
    .header-inner {
        max-width: 100%;
        padding: 6px 14px 10px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0;
    }

    /* 로고 크기 줄이기 */
    .logo {
        height: 46px;
        width: auto;
    }

    /* 메뉴 정렬 */
    .nav {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        gap: 12px;
        font-size: 13px;
    }

    .nav a {
        margin-left: 0;
        white-space: nowrap;
    }

    /* 전화 버튼 사이즈 축소 */
    .call-btn {
        padding: 5px 10px;
        font-size: 12px;
    }

    /* 히어로 섹션 */
    .hero {
        min-height: 60vh;
        padding: 110px 16px 60px;
        /* ⬅ 위에 여백 크게 줌 */
        background-position: center;
    }

    .hero-content h1 {
        font-size: 26px;
        margin-bottom: 8px;
    }

    .hero-content p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .hero-btn {
        width: 100%;
        text-align: center;
        font-size: 15px;
        padding: 12px 16px;
    }

    /* 지표 섹션 */
    .stats {
        max-width: 100%;
        margin: 40px auto 30px;
        padding: 0 16px;
        flex-direction: column;
        gap: 14px;
    }

    .stat-box h2 {
        font-size: 24px;
    }

    /* 인증 박스 */
    .certification {
        flex-direction: column;
        align-items: center;
        padding: 40px 16px;
        gap: 24px;
    }

    .cert-box img {
        max-width: 220px;
    }

    /* 비교 섹션 */
    .compare-section {
        padding: 50px 16px;
    }

    .compare-section h2 {
        font-size: 22px;
        margin-bottom: 24px;
    }

    .reviews h2 {
        font-size: 22px;
        margin-bottom: 24px;
    }


    .compare-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .compare-box {
        min-width: 0;
        padding: 22px 18px;
    }

    /* 후기 캐러셀 */
    .review-carousel {
        max-width: 100%;
        padding: 0 24px;
        position: relative;
    }

    .carousel-track-container {
        position: relative;
        /* flex 해제해서 높이 강제되지 않게 */
        display: block;
        overflow: hidden;
        padding: 8px 0 16px;
        /* 위아래 여유 줘서 글씨 안 잘리게 */
    }

    .review-card {
        width: 100%;
    }

    .carousel-btn {
        top: 50%;
        transform: translateY(-50%);
        z-index: 5;
    }


    /* 공통 페이지 섹션 여백 */
    .page-section {
        max-width: 100%;
        padding: 120px 16px 60px;
        text-align: center;
    }

    .page-section h1 {
        font-size: 26px;
    }

    .page-section .desc {
        font-size: 15px;
    }

    /* 배차 프로세스 — 태블릿 이상에서 2열 정렬 */
    .process-flow--steps {
        display: grid;
        grid-template-columns: 1fr 1fr;
        max-width: 500px;
        margin: 20px auto;
        gap: 12px 14px;
    }

    .process-step {
        width: 100%;
        justify-content: center;
    }

    /* 서비스 카드 / 차량 카드 한 줄씩 */
    .service-container,
    .vehicle-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-box,
    .vehicle-box {
        text-align: left;
    }

    /* 접수 폼 카드 */
    .form-box {
        padding: 22px 18px;
        margin-bottom: 20px;
    }

    .flex-row {
        flex-direction: column;
        gap: 8px;
    }

    /* 푸터 */
    .footer {
        margin-top: 50px;
        padding: 40px 16px 26px;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        text-align: left;
    }

    .footer-bottom {
        margin-top: 24px;
        font-size: 12px;
    }
}

/* 작은 모바일 (480px 이하) */
@media (max-width: 480px) {

    /* 헤더 전체 정렬 재조정 */
    .header-inner {
        max-width: 100%;
        padding: 8px 10px;
        flex-direction: column;
        /* 로고 위, 메뉴 아래 */
        align-items: center;
        /* 가운데 정렬 */
        gap: 4px;
    }

    /* 로고 래퍼 중앙 정렬 */
    .logo-wrap {
        width: 100%;
        justify-content: center;
    }

    /* 로고 크기 조금 더 축소 */
    .logo {
        height: 46px;
        width: auto;
    }

    /* 메뉴 줄바꿈 & 가운데 정렬 */
    .nav {
        width: 100%;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 6px;
    }

    .nav a {
        margin-left: 0;
        font-size: 13px;
        padding: 2px 6px;
    }

    /* 상단 전화 버튼도 살짝 축소 */
    .call-btn {
        padding: 4px 8px;
        font-size: 12px;
        border-radius: 999px;
    }

    .hero {
        min-height: 70vh;
        padding-top: 140px;
        /* ⬅ 헤더에서 더 떨어지게 */
        padding-bottom: 60px;
        background-position: center;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 13px;
    }

    .stats {
        margin: 30px auto 20px;
    }

    /* 버튼들 */
    .hero-btn {
        font-size: 14px;
        padding: 10px 14px;
    }

    .submit-btn {
        font-size: 16px;
        padding: 13px;
    }

    /* 후기 캐러셀 버튼 조금 작게 */
    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 24px;
    }

    /* 카카오톡 상담 플로팅 버튼(있다면) */
    .kakao-floating {
        right: 12px;
        bottom: 12px;
        padding: 10px 14px;
        font-size: 13px;
    }

    .process-flow {
        gap: 8px;
    }

    .process-flow div {
        font-size: 15px;
    }

    .review-card {
        width: 100%;
    }

    .review-card p {
        font-size: 14px;
        line-height: 1.6;
    }

}

/* ============================
   배차 프로세스 뱃지 스타일
   ============================ */

.process-flow--steps {
    margin-top: 28px;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #f5f7fb;
    border: 1px solid #d0d8e4;
    font-size: 15px;
    color: #0A355A;
    white-space: nowrap;
}

.process-step .step-icon {
    font-size: 20px;
}

/* 작은 모바일에서 세로로 쌓이게 */
@media (max-width: 480px) {
    .process-flow--steps {
        flex-direction: column;
        align-items: center;
    }

    .process-step {
        width: 100%;
        max-width: 260px;
        justify-content: center;
    }
}

/* ============================
   about 페이지 CTA 버튼 정렬
   ============================ */

.cta-row {
    margin-top: 8px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.cta-row .hero-btn {
    min-width: 220px;
}

/* 작은 화면에서는 세로로 꽉 차게 */
@media (max-width: 480px) {
    .cta-row {
        flex-direction: column;
        align-items: center;
    }

    .cta-row .hero-btn {
        width: 100%;
        max-width: 320px;
    }
}

/* ============================
   배차 프로세스 개선 스타일
   ============================ */

/* 공통 스타일 */
.process-flow--steps {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid #d6dde8;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    font-size: 15px;
    color: #0A355A;
    white-space: nowrap;
    transition: all .2s ease;
}

/* Hover 효과 (PC에서만) */
@media (hover:hover) {
    .process-step:hover {
        background: #0A355A;
        color: #fff;
        border-color: #0A355A;
    }
}

/* 모바일 (가로 좁을 때 세로 정렬) */
@media (max-width: 480px) {
    .process-flow--steps {
        flex-direction: column;
        align-items: center;
    }

    .process-step {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* 작은 모바일에서 조금 더 안정적으로 */
@media (max-width: 480px) {
    .vehicle-img {
        max-width: 170px;
    }

    .vehicle-desc {
        font-size: 13.5px;
    }
}

/* =========================
   Vehicles page layout 개선 (about와 폰트 사이즈 통일)
   ========================= */

/* 제목은 공통 .section-title(32px)를 그대로 쓰고, 간격만 조정 */
.vehicles-page .section-title {
    margin-bottom: 10px;
}

/* 부제목도 about 페이지와 동일한 크기(16px)로 통일 */
.vehicles-page .section-subtitle {
    font-size: 16px;
    color: #555;
    margin-bottom: 32px;
    line-height: 1.7;
}

/* 카테고리 블록 간격 */
.vehicle-category {
    margin-bottom: 56px;
}

.vehicle-category-title {
    font-size: 20px;
    font-weight: 700;
    color: #0A355A;
    margin-bottom: 8px;
}

.vehicle-category-desc {
    font-size: 14px;
    color: #4A627A;
    margin-bottom: 20px;
    line-height: 1.7;
}

/* PC: 2열 / 태블릿 이하: 1열 */
.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    gap: 24px;
}

/* 카드 높이 통일 & 이미지 중앙 정렬 */
.vehicle-box {
    background: #ffffff;
    border-radius: 16px;
    padding: 22px 20px 20px;
    box-shadow: 0 4px 16px rgba(15, 35, 52, 0.06);
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* 차량 이미지 */
.vehicle-img {
    display: block;
    max-width: 160px;
    width: 100%;
    margin: 0 auto 16px;
}

/* 카드 제목 – about 서비스 카드와 비슷한 느낌으로 살짝 키움 */
.vehicle-box h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #0A355A;
}

/* 설명 문단 – about 서비스 설명과 맞춰서 14px */
.vehicle-desc {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #33475B;
}

/* bullet 스펙 – 14px로 통일 */
.vehicle-spec {
    margin: 0;
    padding-left: 18px;
    font-size: 14px;
    line-height: 1.6;
    color: #4A627A;
}

.vehicle-note {
    font-size: 13px;
    line-height: 1.7;
    margin-top: 16px;
    color: #4A627A;
}

/* 모바일 대응 */
@media (max-width: 768px) {
    .vehicle-grid {
        grid-template-columns: 1fr;
    }

    .vehicle-box {
        padding: 18px 16px 18px;
    }
}

/* 작은 모바일에서 설명 글씨 너무 줄지 않게 유지 */
@media (max-width: 480px) {
    .vehicle-img {
        max-width: 170px;
    }

    .vehicle-desc,
    .vehicle-spec {
        font-size: 14px;
    }
}

/* ===== 정책/약관 모달 ===== */
.policy-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.policy-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.policy-modal__content {
    position: relative;
    width: 90%;
    max-width: 680px;
    max-height: 80vh;
    background: #ffffff;
    border-radius: 16px;
    padding: 24px 24px 28px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
    overflow-y: auto;
    font-size: 14px;
    line-height: 1.6;
}

.policy-modal__content h2 {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 700;
    color: #14213d;
}

.policy-modal__body p {
    margin-bottom: 8px;
}

.policy-modal__body strong {
    font-weight: 600;
}

.policy-modal__close {
    position: absolute;
    top: 10px;
    right: 12px;
    border: none;
    background: none;
    font-size: 18px;
    cursor: pointer;
    color: #666;
}

/* 모바일에서 여백 조금 줄이기 */
@media (max-width: 480px) {
    .policy-modal__content {
        width: 92%;
        padding: 18px 18px 22px;
        max-height: 82vh;
    }
}

/* 약관 / 개인정보 모달 가독성 향상 */
.policy-section {
    margin-bottom: 16px;
    line-height: 1.5;
    font-size: 13px;
}

.policy-section h3 {
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 600;
}

.policy-section ul {
    margin: 4px 0 4px 18px;
    padding: 0;
}

.policy-section li {
    margin-bottom: 2px;
}

/* 결제 / 증빙 배지 */
.payment-badges {
    margin-top: 18px;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.payment-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    background: #f5f7fb;
    border: 1px solid #d0d8e4;
    color: #0A355A;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.payment-badge .badge-icon {
    font-size: 18px;
}

/* 모바일 최적화 */
@media (max-width: 480px) {
    .payment-badge {
        font-size: 13px;
        padding: 9px 14px;
    }
}


.mobile-bottom-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 2000;
}

.cta-call {
    flex: 1.2;
    background: #0A355A;
    color: #fff;
    padding: 16px;
    text-align: center;
    font-weight: 700;
}

.cta-form {
    flex: 1;
    background: #3AAFFF;
    color: #fff;
    padding: 16px;
    text-align: center;
}

/*
모바일에서는 카톡 숨기기
*/
@media (max-width: 768px) {
    .kakao-floating {
        display: none;
    }
}

/* 모바일에서 로고, nav, 1800-9524 사이 간격 너무 좁아보이는 것 수정*/
@media (max-width: 768px) {
    .header {
        padding: 12px 0 16px;
    }

    .logo-wrap {
        margin-bottom: 8px;
    }

    .nav {
        gap: 14px;
    }

    .call-btn {
        margin-top: 8px;
    }
}

/* ==============================
   스크롤 시 헤더 shrink + 전화버튼 강조 (모바일)
   ============================== */

/* 부드럽게 줄어들도록 트랜지션 */
.header,
.header-inner,
.logo,
.nav,
.call-btn {
    transition: all 0.2s ease;
}

/* 모바일 기본 헤더 여백 살짝 넉넉하게 (답답함 해소) */
@media (max-width: 768px) {
    .header-inner {
        padding: 14px 16px;
        /* 기존 10px 16px 보다 여유 */
    }

    /* 전화 버튼 살짝 강조: 테두리/그림자(색은 기존 톤 유지) */
    .call-btn {
        border: 1px solid rgba(58, 175, 255, 0.7);
        /* #3AAFFF 계열 */
        box-shadow: 0 6px 16px rgba(10, 53, 90, 0.18);
    }

    /* 스크롤 내려서 shrink 상태 */
    .header.is-shrink .header-inner {
        padding: 8px 16px;
    }

    .header.is-shrink .logo {
        height: 42px;
        /* 54px -> 42px */
    }

    .header.is-shrink .nav {
        gap: 14px;
        /* 메뉴 간격 살짝 정리 */
        font-size: 13px;
    }

    /* shrink 상태에서 전화 버튼 더 또렷하게 */
    .header.is-shrink .call-btn {
        box-shadow: 0 8px 18px rgba(58, 175, 255, 0.25);
        border-color: rgba(58, 175, 255, 0.95);
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 78px;
    }
}

/* PC에서는 모바일 하단 CTA 숨김 */
@media (min-width: 769px) {
    .mobile-bottom-cta {
        display: none;
    }
}

/* PC에서 헤더 전화 버튼을 1순위 CTA처럼 보이게 */
@media (min-width: 769px) {
    .call-btn {
        padding: 10px 16px;
        font-size: 14.5px;
        font-weight: 800;
        letter-spacing: 0.2px;
        border: 1px solid rgba(58, 175, 255, 0.55);
        box-shadow: 0 10px 22px rgba(10, 53, 90, 0.18);
        transform: translateY(-1px);
    }

    .call-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 28px rgba(58, 175, 255, 0.22);
    }

    /* 살짝 '반짝' 느낌: 너무 과하면 신뢰감 떨어져서 약하게 */
    .call-btn {
        position: relative;
        overflow: hidden;
    }

    .call-btn::after {
        content: "";
        position: absolute;
        top: -30%;
        left: -40%;
        width: 40%;
        height: 160%;
        background: rgba(255, 255, 255, 0.18);
        transform: rotate(18deg);
        transition: 0.35s ease;
    }

    .call-btn:hover::after {
        left: 110%;
    }
}