@media screen and (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    .hide-pc {
        display: block;
    }

    .hide-mobile {
        display: none;
    }

    /* ================================== */

    /* 헤더 */
    .header {
        height: 70px;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
    }

    .header-logo img {
        height: 35px;
    }

    .header-container {
        padding: 0 15px;
    }

    .mobile-buttons {
        display: flex;
        align-items: center;
    }

    .mobile-left-btn,
    .mobile-menu-btn {
        display: block;
    }

    .mobile-left-btn {
        padding: 0px 12px;
        background-color: var(--maincolor);
        color: #fff;
        border-radius: 150px;
        font-size: 12px;
        text-decoration: none;
        height: 35px;
        line-height: 35px;
        transition: background-color 0.3s ease;
    }

    .mobile-left-btn:hover {
        background-color: var(--subcolor);
    }

    /* 모바일 메뉴 */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background-color: #fff;
        padding: 2rem;
        transition: right 0.3s ease;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    }

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

    .nav-menu .close-btn {
        display: flex;
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
        color: var(--text-color);
        width: 30px;
        height: 30px;
        align-items: center;
        justify-content: center;
        transition: color 0.3s ease;
    }

    .nav-menu .close-btn:hover {
        color: var(--maincolor);
    }

    .nav-list {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 100px;
        align-items: center;
    }

    /* ================ 메인 ================ */

    /* 모바일 메인 */
    .main-top {
        height: auto;
    }

    .main-top .container {
        flex-direction: column;
        position: relative;
        height: 380px;
    }

    .main-top .main-top-txt {
        display: block;
        position: absolute;
        top: 60px;
    }

    .main-top .main-top-txt .title {
        font-size: 26px;
    }

    .main-top .main-top-txt .sub-title {
        font-size: 16px;
        margin-bottom: 18px;
    }

    .main-top .main-top-txt .txt {
        font-size: 16px;
    }

    .main-top-img {
        align-items: center;
        margin-left: 0px;
        margin-bottom: 00px;

        width: 150px !important;
        height: 150px !important;

        display: block;
        position: absolute;
        bottom: 3px;
        right: 1px;
    }

    .main-top-img img {
        width: 150px;
    }

    /* 모바일 introduce 섹션 */
    .main-introduce {
        padding: 50px 0;
    }

    .main-introduce .container {
        flex-direction: column;
        gap: 40px;
    }

    .main-introduce-title {
        padding-top: 0;
        text-align: center;
    }

    .main-introduce-title h3 {
        font-size: 20px;
        margin-bottom: 3px;
    }

    .main-introduce-title h2 {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .main-introduce-title p {
        font-size: 16px;
    }

    .main-introduce-title p.small {
        font-size: 12px;
    }

    .main-introduce-cards {
        padding: 0 10px;
    }

    .card-wrapper {
        justify-content: flex-start;
    }

    .card-wrapper:nth-child(even) {
        justify-content: flex-end;
    }

    .main-introduce .card {
        width: 95%;
        padding: 15px 20px;
    }

    .main-introduce .card p {
        font-size: 13px;
    }

    .main-introduce .card h3 {
        font-size: 16px;
    }

    /* 모바일 리뷰 섹션 */
    .main-review {
        padding: 50px 0;
    }

    .main-review .container>p {
        font-size: 16px;
        margin-bottom: 3px;
    }

    .main-review .container>h2 {
        font-size: 26px;
        margin-bottom: 40px;
    }

    .review-swiper {
        padding: 20px 0;
    }

    .review-card {
        padding: 20px;
        height: 280px;
    }

    .profile-img {
        width: 40px;
        height: 40px;
    }

    .profile-info .name {
        font-size: 14px;
    }

    .review-text {
        font-size: 14px;
        -webkit-line-clamp: 4;
    }

    .review-date {
        font-size: 12px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }

    /* 모바일 live 섹션 */
    .main-live {
        padding: 50px 0;
    }

    .main-live h2 {
        font-size: 26px;
        margin-bottom: 40px;
    }

    .live-table-container {
        padding: 10px;
        margin: 0 -10px;
        border-radius: 10px;
        height: 280px;
        max-height: 400px;
        overflow: hidden;
    }

    .live-table th,
    .live-table td {
        padding: 10px 5px;
        font-size: 14px;
    }

    .live-table .status-button {
        padding: 4px 12px;
        font-size: 12px;
    }

    .main-lic {
        padding: 50px 0;
    }

    .main-lic p {
        font-size: 16px;
        margin-bottom: 3px;
    }

    .main-lic p.small {
        font-size: 12px;
        margin-bottom: 40px;
    }

    .main-lic h2 {
        font-size: 26px;
    }

    .lic-wrapper {
        flex-direction: column;
    }

    .lic-card {
        width: 100%;
    }

    .lic-card img {
        width: 100%;
    }

    .main-form {
        padding: 50px 0;
    }

    .form-wrapper p {
        font-size: 16px;
        margin-bottom: 3px;
    }

    .form-wrapper h2 {
        font-size: 26px;
        margin-bottom: 40px;
    }

    .main-links {
        padding: 15px 0;
    }

    .main-links .container {
        padding: 0;
    }

    .partners-logo-wrapper {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .partner-logo {
        padding: 0 10px;
    }

    .partner-logo img {
        max-width: 85%;
    }

    /* ================ 서브 페이지 공통 ================ */

    .top-banner {
        padding: 15px 20px;
        height: 100px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .top-banner p {
        font-size: 20px;
    }

    /* ================ about ================ */
    /* about intro 섹션 */
    .about-intro {
        padding: 40px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-card {
        height: auto;
    }

    .about-card-inner {
        padding: 30px 20px;
    }

    .about-content h3 {
        font-size: 18px;
    }

    .about-content p {
        font-size: 14px;
    }

    .about-img {
        margin-bottom: 20px;
        max-height: 130px;
    }

    .about-img img {
        max-height: 130px;

    }

    .about-content h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .about-content p {
        font-size: 14px;
        margin-bottom: 10px;
    }

    /* about links 섹션 */
    .about-links {
        padding: 40px 0;
    }

    .about-links-content {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }

    .about-links-text {
        text-align: left;
    }

    .about-links-content h2 {
        font-size: 24px;
    }

    .about-links-content h3 {
        font-size: 18px;
    }

    .about-links-content p {
        font-size: 14px;
        margin-bottom: 0;
    }

    .about-links-button {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 15px;
    }

    /* ================ product ================ */
    /* Product Money 섹션 */
    .product {
        padding: 40px 0;
    }

    .product-hero {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 40px;
        height: 540px;
    }

    .product-text {
        padding: 0 25px 25px 25px;
        order: 2;
        text-align: center;
    }

    .product-text h2 {
        font-size: 16px;
    }

    .product-text h3 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .product-text p {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .product-text p.small {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .product-swiper{
        overflow: visible !important;
        margin-bottom: 40px;
    }

    .product-item{
        height: 415px;
    }

    .product-header h3 {
        font-size: 18px;
    }

    .product-content .label {
        font-size: 14px;
    }
    
    .product-content .value {
        font-size: 14px;
    }


    .timeline {
        padding: 20px 0;
        margin-top: 0px;
        margin-bottom: 40px;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: calc(100% - 20px);
        margin: 0 0 30px 0;
        padding-left: 50px;
        padding-right: 0;
    }

    .timeline-item:nth-child(odd) {
        padding-right: 0px;
    }

    .timeline-item:nth-child(even) {
        margin: 0 0 30px 0;
        padding-left: 50px;
        padding-right: 0px;
    }

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

    .timeline-item::before {
        left: 11px;
        width: 16px;
        height: 16px;
        border-width: 3px;
    }

    .timeline-item:nth-child(odd)::before {
        right: auto;
        left: 9px;
    }

    .timeline-item:nth-child(even)::before {
        left: 9px;
    }

    .timeline-content {
        padding: 20px;
        width: 100%;
        box-sizing: border-box;
    }

    .timeline-content .icon {
        width: 50px;
        height: 50px;
        top: 15px;
        right: 20px;
    }

    .timeline-content .icon img {
        width: 100%;
        height: auto;
    }

    .timeline-content::before {
        display: none;
    }

    .timeline-content .step-number {
        font-size: 12px;
        padding: 6px 12px;
    }

    .timeline-content h3 {
        font-size: 18px;
        word-break: keep-all;
    }

    .timeline-content p {
        font-size: 14px;
        word-break: keep-all;
        white-space: normal;
        width: 100%;
    }

    .tip-item {
        padding: 15px;
        gap: 15px;
        flex-direction: row;
        align-items: flex-start;
    }

    .tip-label {
        font-size: 12px;
        padding: 6px 10px;
    }

    .tip-content {
        font-size: 14px;
    }
    
    /* product tips 섹션 */
    .product-tips {
        margin-top: 40px;
        padding: 0;
    }

    .product-tips-hero {
        flex-direction: column;
        padding: 25px;
        gap: 20px;
    }

    .product-tips-image {
        width: 100%;
        height: 150px;
        order: 1;
    }

    .product-tips-content {
        width: 100%;
        order: 2;
        text-align: center;
        padding: 0;
    }

    .product-tips-content h2 {
        font-size: 22px;
    }

    .product-tips-content h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .product-tips-content p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    /* product search 섹션 */
    .product-search {
        padding: 40px 0 0 0;
    }

    .product-search-image {
        max-width: 100%;
    }

    .top-banner.request {
        padding: 45px 20px;
    }

    .top-banner .sub-title {
        font-size: 16px;
    }

    /* request howto 섹션 */
    .request-howto {
        padding: 40px 0;
    }

    .request-howto-title h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .request-howto-title p {
        font-size: 16px;
    }

    .request-howto-steps {
        flex-direction: column;
        gap: 25px;
    }

    .step-arrow {
        font-size: 24px;
        height: 24px;
    }

    .step-arrow .pc-arrow {
        display: none;
    }

    .step-arrow .mobile-arrow {
        display: block;
    }

    .request-step-image {
        height: 200px;
        padding: 20px;
    }

    .request-step-content {
        padding: 15px 20px 25px;
    }

    .request-step-title {
        font-size: 16px;
    }

    .request-step-desc {
        font-size: 13px;
    }

    /* request notice 섹션 */
    .request-notice {
        padding: 40px 0;
    }

    .request-notice-icon img {
        width: 60px;
    }

    .request-notice-content h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .request-notice-content p {
        font-size: 15px;
        padding: 0 20px;
    }

    /* request button 섹션 */
    .request-button {
        padding: 40px 0;
    }

    .request-button-title h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .request-button-title p {
        font-size: 16px;
        padding: 0 20px;
        display: block;
    }

    .request-button-title.bottom p {
        font-size: 14px;
    }
    
    .request-button-title .alert i{
        font-size: 14px;
        margin-right: 5px;
    }

    .request-button-links{
        flex-direction: column;
        gap: 10px;
    }

    .request-button-link{
        justify-content: center;
    }

    /* ================ footer ================ */

    .footer {
        padding: 30px 0;
        padding-bottom: calc(30px + 42px);
        /* 모바일에서 기본 패딩 + 플로팅 메뉴 높이 */
    }

    .company-logo img {}

    .footer-container {
        padding: 0 15px;
    }

    .links-logo {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .footer-notice {
        margin-bottom: 10px;
    }

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

    .footer-notice p {
        margin-bottom: 0px;
        line-height: 1.5;
    }

    .contact-info {
        flex-direction: column;
        gap: 5px;
    }

    .contact-info p {
        font-size: 13px;
    }

    .contact-info p:not(:last-child)::after {
        display: none;
    }

    .footer-copyright {
        padding-top: 15px;
        font-size: 11px;
    }

    /* ================ 플로팅 메뉴 ================ */

    .floating a {
        padding: 20px 10px;
        font-size: 14px;
    }

    .floating i {
        font-size: 16px;
    }

    /* faq 섹션 */
    .faq-container {
        padding: 40px 0;
    }

    .faq-title {
        margin-bottom: 30px;
    }

    .faq-title h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .faq-title p {
        font-size: 15px;
        padding: 0 20px;
    }

    .faq-question {
        padding: 20px;
    }

    .question-mark {
        font-size: 18px;
        margin-right: 12px;
    }

    .question-text {
        font-size: 14px;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-answer p {
        padding: 20px 0;
        font-size: 14px;
    }

    /* 팝업 */

    .checkbox-wrapper {
        align-items: flex-start;
        gap: 5px;
    }
    
    .checkbox-wrapper input[type="checkbox"]{
        width: 15px;
    height: 15px;
    }

    .privacy-popup-content {
        margin: 40px auto;
        padding: 15px;
    }
    .privacy-popup-body{
        height: 450px;
        overflow:scroll;
    }
    .privacy-popup-header h2 {
        font-size: 18px;
    }
    
    .privacy-section h3 {
        font-size: 15px;
    }
    
    .privacy-section p {
        font-size: 13px;
    }
}

@media screen and (max-width: 1024px) {
    .main-introduce .card-row {
        flex-direction: column;
    }

    .main-introduce .card-row:last-child {
        justify-content: flex-start;
    }

}