
/* 전역 스타일 */
body {
    font-family: Pretendard, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


.landingtopmenubar {
    width: 100%;
    height: 80px;

    .box {
        width: 100%;
        max-width: 1200px;
    }

    .logo {
        height: 56px;

        img { height: 100%; }
    }

    .nav-item {
        .nav-link {
            font-weight: 700;
            color: black;
        }
        .nav-link.active {
            background-color: transparent;
            color: #4DA435;
        }
    }
}

.landing-main {
    gap: 160px;

    .banner {
        width: 100%;
        height: 744px;
        padding-top: 120px;
        background-color: rgba(237, 246, 235, 0.70);

        .banner-body {
            width: 460px;
            gap: 24px;
            .title {
                font-size: 56px;
                font-weight: 700;
                line-height: normal;
                text-transform: uppercase;
            }

            .description {
                font-size: 18px;
                font-weight: 400;
                line-height: 170%;
                color: #818181;
            }

            .button {
                text-decoration: none;
                width: 210px;
                height: 48px;
                border: 0;
                border-radius: 8px;
                background-color: #4DA435;

                font-size: 18px;
                font-weight: 700;
                line-height: 100%;
                color: white;
            }
        }

        .banner-img {
            height: 100%;
            img {
                height: 100%;
                aspect-ratio: 135/104;
                object-fit: contain;
            }
        }
    }

    .container {
        max-width: 1032px;
        gap: 32px;

        .card {
            width: 100%;
            height: 372px;
            padding: 0 60px;

            .card-row-body {
                height: 100%;
                gap: 20px;

                .content {
                    height: 100%;
                    padding: 50px 0;
                    gap: 16px;

                    .content-main {
                        font-size: 40px;
                        font-weight: 700;
                        line-height: normal;
                    }
                    .content-description {
                        font-size: 16px;
                        font-weight: 400;
                        line-height: 150%;
                    }
                }

                .content-img {
                    height: 100%;
                    img{height: 100%}
                }
            }
        }
    }

    .slide-banner {
        width: 100%;
        height: 1244px;
        background-color: #1E1E1E;
        padding: 120px 0;
        gap: 60px;
        overflow: hidden;

        .header {
            color: white;
            gap: 12px;

            .title {
                font-size: 32px;
                font-weight: 700;
                line-height: normal;
                text-align: center;
            }

            .sub-title {
                font-size: 48px;
                font-weight: 700;
                line-height: normal;
                text-align: center;

                b {
                   background-color: #4DA435;
                }
            }
        }

        .body {
            width: 100%;
            height: 100%;
            gap: 40px;

            .swiper {
                position: relative;
                width: 100%;
                max-width: 1200px;
                height: 643px;
                overflow: visible;

                .navigator {
                    position: absolute;
                    top: -40px;
                    right: 0;

                    display: flex;
                    gap: 26px;

                    .btn-prev,
                    .btn-next {
                        font-size: 2em;
                        color: white;

                        i {
                            width: 100%;
                            height: 100%;
                        }
                    }
                }
                .swiper-wrapper {
                    width: 100%;
                    height: 100%;

                    .swiper-slide {
                        border-radius: 14px;

                        img {
                            width: 100%;
                            height: 100%;
                            object-fit: cover;
                        }
                    }
                }
            }

        }

        .tail {
            font-size: 18px;
            font-weight: 400;
            color: #eeeeee;
            line-height: 170%;

            span {
                font-weight: 700;
            }
        }
    }

    .price-card-container {
        max-width: 1032px;
        gap: 60px;

        .header {
            gap: 16px;

            .title {
                font-size: 48px;
                font-weight: 700;
                line-height: 60px;
            }
            .sub-title {
                font-size: 24px;
                font-weight: 400;
                line-height: 30px;
            }
        }

        .body {
            width: 100%;
            gap: 24px;

            .card {
                width: 100%;
                border: 0;
                padding: 20px 24px;

                .title {
                    font-size: 24px;
                    font-weight: 600;
                    line-height: 140%;
                }
            }
        }
    }

    .contact-banner {
        width: 100%;
        padding: 40px 10px;
        background-color: #65B24C;

        .title {
            font-size: 20px;
            font-weight: 600;
            line-height: normal;
            color: #FFF;
        }

        .body {
            height: 60px;
            gap: 17px;

            margin-top: 8px;
            margin-bottom: 16px;

            .customer-logo-spinner {
                width: 191px;
                height: 100%;
                border-radius: 100px;
                background-color: #fff;
                padding: 8px;

                img {
                    height: 100%;
                }
            }

            .text {
                font-size: 40px;
                font-weight: 700;
                line-height: 60px;
                color: #FFF;
            }
        }

        .tail {
            height: 50px;

            .button {
                text-decoration: none;
                width: 163px;
                height: 100%;
                background-color: white;
                border-radius: 8px;
                border: 1px solid #4DA435;


                font-size: 18px;
                font-weight: 700;
                color: #4DA435;
            }
        }
    }
}

/*Service 페이지 */
.landing-service {
    display: flex;
    flex-direction: column;
    gap: 160px;

    .fab-layer {
        width: 100%;
        height: 100%;
        position:fixed;
        z-index: 99;
        background-color: transparent;

        pointer-events: none;

        .fab {
            width: 210px;
            height: 156px;

            position: absolute;
            right: 90px;
            top: 30vh;


            pointer-events: auto;
            border-radius: 12px;
            box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25);

            .card {
                width: 100%;
                height: 100%;
                padding: 20px;
                gap: 20px;

                .box {
                    gap: 20px;

                    font-size: 24px;
                    font-weight: 600;
                    line-height: 200%;
                    color: #000000;

                    i {
                        font-size: 14px;
                        line-height: 100%;
                        color: #D9D9D9;
                    }
                    i.active {
                        color: #234A18;
                    }

                }
            }
        }
    }

    /* 관리시스템, 임대시스템 배너 공통 디자인*/
    .management-banner,
    .rent-banner {
        width: 100%;

        img {
            width: 100%;
        }

        .card-body {
            height: 442px;
            padding: 124px 0;

            .text {
                font-size: 60px;
                font-weight: 700;
            }

        }
    }

    /* 배너 영역 디자인 */
    .management-banner {

        .card-body {
            background-color: #234A18;
            gap: 46px;

            color: white;

            .badge-list {
                gap: 36px;

                .badge {
                    height: 100%;
                    border: 4px solid #C8E3C0;
                    font-size: 36px;
                    font-weight: 700;

                    padding:20px 40px;
                }
            }

        }
    }

    .rent-banner {
        .card-body {
            background-color: #C8E3C0;
            color:#1e1e1e;
        }

        .container {
            margin: -200px 0 0;
            position:relative;
            z-index: 3;
            left: 50%;
            transform: translateX(-50%);
            .card .header {
                gap: 32px;

                .badge-list {
                    gap: 20px;

                    .badge {
                        height: 100%;
                        background-color: #4DA435;
                        font-size: 24px;
                        font-weight: 800;
                        line-height: 120%;

                        padding: 20px 40px;

                        text-align: center;
                    }
                }
            }
        }

    }

    /* 관리페이지 컨텐츠 */
    .container {
        width: 100%;
        max-width: 1200px;
        gap: 160px;
        padding: 0;



        .card {
            width: 100%;
            box-sizing: border-box;
            gap: 80px;

            padding: 96px 60px;
            border-radius: 20px;
            box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);

            /* 카드 상단 Header 디자인*/
            .header {
                gap: 16px;

                .title {
                    font-size: 48px;
                    line-height: 100%;
                    font-weight: 800;
                }

                .sub_title {
                    font-size: 20px;
                    line-height: 100%;
                    font-weight: 500;
                    color: #818181;
                }
            }

            /* 카드 body 영역 공통 디자인 */
            .card-column-body,
            .card-row-body {
                .card-img img {
                    width: 100%;
                    height: 100%;
                }


                .content-main {
                    font-size: 24px;
                    font-weight: 800;
                    gap: 12px;

                    .bi {
                        width: 30px;
                        height: 30px;
                        font-size: 30px;
                    }
                }

                .content-description {
                    font-size: 20px;
                    font-weight: 500;
                    color: #555;
                }
            }

            /* 세로형 카드 body 영역 디자인 */
            .card-column-body {
                width: 100%;
                gap: 40px;

                .content {
                    gap: 20px;
                }
            }

            /* 가로형 카드 body 영역 디자인 */
            .card-row-body {
                width: 100%;
                height: 500px;

                .card-img {
                    width: 580px;
                    height: 100%;
                }

                .content {
                    width: 480px;
                    gap: 20px;
                }
            }
        }
    }

    .button-list {
        padding: 42px 0;
        gap: 10px;

        .button {
            text-decoration: none;
            height: 88px;
            gap: 10px;
            padding: 20px 40px;
            border-radius: 12px;
            background-color: #1E1E1E;

            color: #f4f4f4;
            font-size: 24px;
            font-weight: 600;
            line-height: 48px;

            i {
                font-size: 48px;
            }
        }
    }

}

.landing-pricing {
    display: flex;
    flex-direction: column;

    .banner {
        width: 100%;
        height: 310px;

        padding: 30px 10px;
        gap: 10px;

        background-color: #F9F9F9;

        .title {
            font-size: 48px;
            font-weight: 700;
        }

        .sub-title {
            font-size: 24px;
            font-weight: 400;
        }
    }

    .checkbox_block {
        gap: 16px;
        padding: 40px 0;

        .radioset {
            gap: 12px;

            input {
                width: 18px;
                height: 18px;
            }
            input:checked {
                accent-color: #4DA435;
            }

            label {
                font-size: 20px;
                line-height: 100%;
            }
        }
        .radioset:hover {
            cursor: pointer;
        }
    }

    .price-card-container {
        margin-bottom: 60px;
        gap: 26px;

        .card {
            width: 450px;
            padding: 24px 40px;
            gap: 24px;

            .header {
                gap: 8px;

                .title {
                    font-size: 24px;
                    font-weight: 700;
                    line-height: 140%;
                    color: #17171B;
                }

                .amount {
                    font-size: 32px;
                    font-weight: 700;
                    line-height: 140%;
                    color: #17171B;
                }

                .amount-description {
                    font-size: 16px;
                    font-weight: 500;
                    line-height: 140%;
                    color: #818181;
                }
            }

            .body {
                gap: 16px;

                .detail-item {
                    gap: 8px;

                    .detail-label {
                        font-size: 16px;
                        font-weight: 500;
                        line-height: 140%;
                        color: #818181;
                    }

                    .detail-value {
                        font-size: 18px;
                        font-weight: 500;
                        line-height: 140%;
                        color: #404040;
                    }
                }
            }

            .footer {
                .button {
                    text-decoration: none;
                    height: 48px;
                    border: 1px solid #ccc;
                    border-radius: 8px;
                    background-color: white;

                    font-size: 14px;
                    font-weight: 600;
                    color: #4DA435;
                    text-align: center;
                }
            }
        }

        .badge-card {
            .popular-badge {
                padding: 10px 20px;
                background-color: #4DA435; /* 진한 녹색 배경 */
                color: white;
                font-weight: 700;
                font-size: 16px;
                line-height: 140%;
                /* .card의 둥근 모서리에 맞게 위쪽만 둥글게 */
                border-top-left-radius: 8px;
                border-top-right-radius: 8px;
            }

            .card {
                background-color: #EDF6EB;
                border: 2px solid #4DA435;

                border-top-left-radius: 0;
                border-top-right-radius: 0;

                .footer {
                    .button {
                        font-size: 16px;
                        font-weight: 700;
                        background-color: #4DA435;
                        color: #F4F4F4;
                    }
                }
            }
        }

    }

    .feature-comparison {
        width: 1036px;
        padding: 40px 0;
        gap: 28px;

        .text {
            font-size: 40px;
            font-weight: 700;
            line-height: 150%;
        }

        .table-list {
            width: 100%;

            .table {
                tr {
                  height: 54px;
                }
                th {
                  font-size: 20px;
                  font-weight: 600;
                  line-height: 140%;
                  color: #17171B;
                }

                td {
                  font-size: 16px;
                  font-weight: 500;
                  line-height: 140%;
                  align-content: center;
                }

                thead {
                    tr {
                        .feature-column {
                            text-align: start;
                        }

                        th {
                            font-size: 20px;
                            font-weight: 600;
                            line-height: 140%;
                            color: #17171B;
                            text-align: center;
                            background-color: #f8f9fa;
                        }
                    }
                }

                tbody {
                    tr:not([class='section-header']) {
                      border-top: 1px solid #EAEAEB;
                    }
                    .feature-label {
                        text-align: start;
                    }
                    .plan-value {
                        text-align: center;
                    }

                    .section-header th {
                        padding-top: 56px;
                    }

                    td .bi {
                      font-size: 24px;
                      color: #125DE6;
                      -webkit-text-stroke-width: 1px;
                    }
                }
            }

            .comparison-notes {
                width: 100%;
                padding: 40px 0;
                color: #A9A9A9;

                font-size: 16px;
                font-weight: 400;
                line-height: 30px;
            }
        }
    }

}

/*Contact 페이지*/
.landing-contact {
    .container {
        width: 100%;
        max-width: 1200px;

        box-sizing: border-box;
        padding: 128px 0;
    }

    .container .row .card {
        border-radius: 16px;
    }

    .container .row .card .card-body pre{
        font-family: Pretendard, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        height: 60px;
        overflow: hidden;

        font-size: 18px;
        line-height: 30px;

        span {
            color: #4DA435;
        }
    }

    .container .row .card .form-label,
    .container .row .card .form-control,
    .container .row .card .form-select {
        font-size: 18px;
    }

    .container .row .card .form-control,
    .container .row .card .form-select {
        height: 67px;
    }

    .container .row .card .form-control::placeholder,
    .container .row .card .form-select::placeholder {
        color: #A9A9A9;
    }

    .container .row .card button {
        height: 60px;
        background-color: #4DA435;
        color: white;
        border: 0;
        font-size: 16px;
        font-weight: 600;
        line-height: 150%;
    }

    .container .row .card button:disabled {
        background-color: #CACACA;
        color: #818181;
    }
}

.landing-footer {
    width: 100%;
    background-color: #E0E0E0;

    .body {
        width: 100%;
        max-width: 1200px;
        gap: 20px;

        padding-top: 30px;

        a,
        .text {
            color: #818181;
            font-size: 14px;
            font-weight: 400;
            line-height: 28px;
        }

        .company-logo {
            height: 50px;
            img {
                height: 100%;
            }
        }

        .company-info {
            gap: 16px;
            color: #818181;

            .box {
                .contact {
                    gap: 12px;

                    .text {
                        position: relative;
                        padding-right: 8px;
                        white-space: nowrap;
                    }

                    .text:not(:last-child)::after {
                        content: '|';
                        position: absolute;
                        right: 0;
                    }
                }
            }
        }

        .tail {
            width: 100%;
            padding: 10px;
            border-top: 1px solid #BBBBBB;

            .link-list {
                gap: 24px;
            }
        }
    }
}
