/* ============================================
   칸코드 - InClueD 페이지 스타일
   style.css 공통 스타일 위에 추가되는 페이지 전용 스타일
   ============================================ */

.inclued-page-body {
    background-color: var(--white);
}

.inclued-inner {
    width: min(1240px, calc(100% - 200px));
    margin: 0 auto;
    position: relative;
}

/* ============================================
   Hero
   ============================================ */
.inclued-hero {
    width: 100%;
    height: 700px;
    background-color: #05050B;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.inclued-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 5, 11, 0.18) 0%, rgba(5, 5, 11, 0.34) 100%);
    z-index: 1;
    pointer-events: none;
}

.inclued-hero-bg {
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    min-width: 1440px;
    height: 810px;
    transform: translateX(-50%);
    z-index: 0;
    pointer-events: none;
}

.inclued-hero-bg img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.inclued-hero-title {
    position: relative;
    z-index: 2;
    width: 739px;
    font-size: 42px;
    font-weight: 700;
    line-height: 58.8px;
    letter-spacing: -0.84px;
    color: var(--white);
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.32);
}

.inclued-hero-line-nowrap {
    white-space: nowrap;
}

.inclued-hero-accent {
    color: inherit;
}

/* ============================================
   Section 1
   ============================================ */
.inclued-section1 {
    width: 100%;
    background-color: #fff;
    padding: 0;
    overflow: hidden;
}

.inclued-section1-content {
    position: relative;
    height: 1408px;
}

.inclued-section1-bg-art {
    position: absolute;
    left: 477px;
    top: 0;
    width: 863px;
    height: 600px;
    z-index: 0;
    pointer-events: none;
}

.inclued-section1-bg-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inclued-section1-title-wrap {
    position: absolute;
    left: 0;
    top: 210px;
    width: 452px;
    z-index: 3;
}

.inclued-section1-title {
    width: 452px;
    font-size: 40px;
    font-weight: 600;
    line-height: 56px;
    letter-spacing: -0.8px;
    color: var(--gray-900);
    text-align: left;
}

.inclued-section1-mockup {
    position: absolute;
    left: 0;
    top: 402px;
    width: 786px;
    height: 666px;
    z-index: 1;
    overflow: hidden;
}

.inclued-section1-mockup img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inclued-qna-box {
    position: absolute;
    left: 542px;
    top: 0;
    width: 698px;
    height: 1408px;
    z-index: 2;
}

.inclued-bubble-list {
    position: absolute;
    left: 0;
    top: 210px;
    display: flex;
    flex-direction: column;
    gap: 160px;
}

.inclued-bubble-group {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.bubble-group-1 {
    width: 633px;
    margin-left: 45px;
}

.bubble-group-2 {
    width: 634px;
    margin-left: 24px;
}

.bubble-group-3 {
    width: 664px;
    margin-left: 14px;
}

.inclued-chat-bubble {
    box-sizing: border-box;
    width: fit-content;
    border-radius: 20px;
    padding: 24px 30px;
    font-size: 24px;
    font-weight: 700;
    line-height: 33.6px;
    letter-spacing: -0.48px;
    background-color: #fff;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: transform, opacity;
}

.inclued-chat-bubble.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.inclued-chat-bubble.bubble-question {
    margin-left: auto;
    color: var(--white);
    background-color: #6F5DFF;
}

.inclued-chat-bubble.bubble-answer {
    margin-right: auto;
    color: var(--gray-900);
    box-shadow: 3px 4px 20px rgba(0, 0, 0, 0.2);
}

.bubble-question-1 {
    width: 483px;
}

.bubble-answer-1 {
    width: 305px;
}

.bubble-question-2 {
    width: 385px;
}

.bubble-answer-2 {
    width: 432px;
}

.bubble-question-3 {
    width: 405px;
}

.bubble-answer-3 {
    width: 493px;
}

.inclued-chat-bubble::before {
    content: '';
    position: absolute;
    top: 24px;
    width: 12px;
    height: 16px;
    background-repeat: no-repeat;
    background-size: 12px 16px;
}

.inclued-chat-bubble.bubble-question::before {
    right: -12px;
    background-image: url('images/inclued-bubble-tail-right.svg');
}

.inclued-chat-bubble.bubble-answer::before {
    content: none;
}

/* ============================================
   Section 2
   ============================================ */
.inclued-section2 {
    position: relative;
    width: 100%;
    height: 850px;
    background-color: #272729;
    overflow: hidden;
}

.inclued-section2-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1440px;
    object-fit: cover;
    opacity: 0.3;
    pointer-events: none;
}

.inclued-section2 .inclued-inner {
    padding-top: 120px;
}

.inclued-section2-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 50.4px;
    letter-spacing: -0.72px;
    color: var(--white);
    margin-bottom: 48px;
}

.inclued-usecase-grid {
    display: grid;
    grid-template-columns: repeat(3, 396px);
    column-gap: 26px;
}

.inclued-usecase-card {
    position: relative;
    width: 396px;
    height: 512px;
    border-radius: 16px;
    background-color: var(--white);
    overflow: hidden;
}

.inclued-usecase-title {
    margin: 50px 40px 21px;
    font-size: 28px;
    font-weight: 700;
    line-height: 39.2px;
    letter-spacing: -0.56px;
    color: var(--gray-900);
}

.inclued-usecase-desc {
    margin: 0 40px;
    width: 316px;
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: -0.4px;
    color: var(--gray-900);
}

.inclued-usecase-image {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 396px;
    height: 296px;
    overflow: hidden;
}

.inclued-usecase-image img {
    display: block;
    width: 100%;
    height: 100%;
    margin-left: 0;
    object-fit: cover;
    object-position: center;
}

/* ============================================
   Section 3
   ============================================ */
.inclued-section3 {
    width: 100%;
    height: 1000px;
    background-color: #F7F8FF;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inclued-section3-bg {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 1280px;
    height: 1000px;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

.inclued-section3-bg img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.inclued-comparison {
    width: min(1240px, calc(100% - 200px));
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 80px;
}

.inclued-comparison-card {
    flex: 1 1 0;
    min-width: 0;
    height: 630px;
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 2px 10px 60px rgba(151, 142, 255, 0.2);
}

.inclued-comparison-header {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.inclued-comparison-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.56px;
    color: #4B4C52;
}

.inclued-comparison-body {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.inclued-comparison-legacy .inclued-comparison-header {
    background-color: #DEDFE6;
}

.inclued-comparison-legacy-text {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    font-size: 21px;
    font-weight: 600;
    line-height: 1.6;
    letter-spacing: -0.42px;
    color: #4B4C52;
    text-align: center;
}

.inclued-comparison-inclued {
    border: 3px solid #6F5DFF;
}

.inclued-comparison-inclued .inclued-comparison-header {
    height: 90px;
    margin: -3px -3px 0;
    background-color: #6F5DFF;
}

.inclued-comparison-inclued .inclued-comparison-title {
    font-size: 32px;
    letter-spacing: -0.64px;
    color: var(--white);
}

.inclued-comparison-inclued .inclued-comparison-body {
    margin: 0 -3px;
}

.inclued-comparison-point {
    height: 170px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    text-align: center;
    color: var(--gray-900);
}

.inclued-comparison-point-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: -0.48px;
}

.inclued-comparison-point-desc {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: -0.4px;
}

/* ============================================
   Section 4
   ============================================ */
.inclued-section4 {
    width: 100%;
    height: 1176px;
    background-color: var(--white);
    padding-top: 100px;
}

.inclued-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 396px);
    column-gap: 26px;
    row-gap: 46px;
}

.inclued-feature-heading {
    grid-column: 1;
    grid-row: 1;
    font-size: 40px;
    font-weight: 700;
    line-height: 56px;
    letter-spacing: -0.8px;
    color: #212529;
}

.feature-1 {
    grid-column: 2;
    grid-row: 1;
}

.feature-2 {
    grid-column: 3;
    grid-row: 1;
}

.feature-3 {
    grid-column: 2;
    grid-row: 2;
}

.feature-4 {
    grid-column: 3;
    grid-row: 2;
}

.inclued-feature-card {
    width: 396px;
}

.inclued-feature-visual {
    width: 396px;
    height: 320px;
    background-color: #F7F8FF;
    overflow: hidden;
}

.inclued-feature-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inclued-feature-title {
    margin-top: 20px;
    font-size: 28px;
    font-weight: 600;
    line-height: 39.2px;
    letter-spacing: -0.56px;
    color: #212529;
}

.inclued-feature-desc {
    margin-top: 20px;
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: -0.4px;
    color: #495057;
}

/* ============================================
   FAQ
   ============================================ */
.inclued-faq {
    width: 100%;
    height: 784px;
    padding-top: 120px;
}

.inclued-faq-title {
    font-size: 34px;
    font-weight: 700;
    line-height: 47.6px;
    letter-spacing: -0.68px;
    color: var(--gray-900);
    margin-bottom: 60px;
}

.inclued-faq-list {
    width: 100%;
}

.inclued-faq-item {
    width: 100%;
    min-height: 109px;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 0;
    text-align: left;
    color: var(--gray-900);
    font-size: 24px;
    font-weight: 700;
    line-height: 28.8px;
    letter-spacing: -0.48px;
    cursor: default;
}

.inclued-faq-item + .inclued-faq-item {
    margin-top: 0;
}

.faq-arrow {
    flex-shrink: 0;
    margin-left: 16px;
}

/* ============================================
   End Section
   ============================================ */
.inclued-end-section {
    width: 100%;
    height: 422px;
    background-color: #272729;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inclued-end-inner {
    width: 632px;
    text-align: center;
}

.inclued-end-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 67.2px;
    letter-spacing: -0.96px;
    color: var(--white);
    margin-bottom: 40px;
}

.inclued-end-section .cta-btn {
    width: 160px;
    height: 48px;
    margin: 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1280px) {
    .inclued-inner {
        width: calc(100% - 80px);
    }

    .inclued-hero-title {
        width: 100%;
        font-size: 46px;
        line-height: 64px;
    }

    .inclued-section1 {
        padding: 100px 0 120px;
    }

    .inclued-section1-content {
        height: auto;
        min-height: 0;
        padding-bottom: 40px;
    }

    .inclued-section1-bg-art {
        left: auto;
        right: -120px;
        top: -20px;
        width: 620px;
        height: 430px;
        opacity: 0.85;
    }

    .inclued-section1-title-wrap {
        position: relative;
        left: 0;
        top: 0;
        width: 100%;
        max-width: 540px;
        margin-bottom: 44px;
    }

    .inclued-section1-title {
        width: 100%;
        font-size: 36px;
        line-height: 50.4px;
        letter-spacing: -0.72px;
    }

    .inclued-section1-mockup {
        position: relative;
        left: 0;
        top: 0;
        width: 100%;
        max-width: 786px;
        height: auto;
        aspect-ratio: 786 / 666;
        margin-bottom: 44px;
    }

    .inclued-qna-box {
        position: relative;
        left: 0;
        top: 0;
        width: 100%;
        max-width: 698px;
        height: auto;
    }

    .inclued-bubble-list {
        position: relative;
        left: 0;
        top: 0;
        gap: 72px;
    }

    .inclued-bubble-group {
        width: 100%;
        gap: 24px;
        margin-left: 0 !important;
    }

    .inclued-chat-bubble {
        max-width: 85%;
        width: auto !important;
        border-radius: 18px;
        padding: 20px 26px;
        font-size: 22px;
        line-height: 30.8px;
        letter-spacing: -0.44px;
    }

    .inclued-chat-bubble::before {
        top: 20px;
    }

    .inclued-section2 {
        height: auto;
        padding: 120px 0;
    }

    .inclued-section2 .inclued-inner {
        padding-top: 0;
    }

    .inclued-usecase-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .inclued-usecase-card {
        width: 100%;
    }

    .inclued-usecase-card:last-child {
        grid-column: 1 / -1;
    }

    .inclued-usecase-image {
        width: 100%;
    }

    .inclued-usecase-image img,
    .inclued-usecase-image.shift-a img,
    .inclued-usecase-image.shift-b img,
    .inclued-usecase-image.shift-c img {
        width: 100%;
        height: 100%;
        margin-left: 0;
        object-fit: cover;
    }

    .inclued-section3 {
        height: auto;
        padding: 120px 0;
    }

    .inclued-section3-bg {
        width: 100%;
        min-width: 960px;
        height: 100%;
    }

    .inclued-comparison {
        width: calc(100% - 80px);
        gap: 40px;
    }

    .inclued-comparison-card {
        height: 600px;
    }

    .inclued-comparison-legacy-text {
        font-size: 19px;
    }

    .inclued-comparison-point-title {
        font-size: 22px;
    }

    .inclued-comparison-point-desc {
        font-size: 18px;
    }

    .inclued-section4 {
        height: auto;
        padding: 100px 0;
    }

    .inclued-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .inclued-feature-heading {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .feature-1,
    .feature-2,
    .feature-3,
    .feature-4 {
        grid-column: auto;
        grid-row: auto;
    }

    .inclued-feature-card,
    .inclued-feature-visual {
        width: 100%;
    }

    .inclued-feature-visual {
        height: auto;
        aspect-ratio: 396 / 320;
    }

    .inclued-faq {
        height: auto;
        padding: 120px 0;
    }

    .inclued-faq-item {
        font-size: 22px;
    }

    .inclued-end-section {
        height: auto;
        padding: 100px 0;
    }

    .inclued-end-inner {
        padding-top: 0;
    }
}

@media (max-width: 768px) {
    .gnb {
        padding: 0 20px;
    }

    .gnb-left {
        gap: 0;
    }

    .gnb-menu {
        display: none;
    }

    .inclued-inner {
        width: calc(100% - 48px);
    }

    .inclued-hero {
        height: 420px;
    }

    .inclued-hero-bg {
        width: 100%;
        min-width: 768px;
        height: 520px;
    }

    .inclued-hero-title {
        font-size: 34px;
        line-height: 48px;
        letter-spacing: -0.68px;
    }

    .inclued-hero-line-nowrap {
        white-space: normal;
    }

    .inclued-section1-title {
        width: 100%;
        font-size: 30px;
        line-height: 42px;
        letter-spacing: -0.6px;
    }

    .inclued-section1-title-wrap {
        margin-bottom: 28px;
        max-width: 332px;
    }

    .inclued-section1 {
        padding: 72px 0 96px;
    }

    .inclued-section1-bg-art {
        right: -60px;
        top: -10px;
        width: 420px;
        height: 292px;
    }

    .inclued-section1-mockup {
        margin-bottom: 28px;
        border-radius: 12px;
    }

    .inclued-bubble-list {
        gap: 48px;
    }

    .inclued-bubble-group {
        gap: 18px;
    }

    .inclued-chat-bubble {
        max-width: 92%;
        padding: 16px 18px;
        font-size: 17px;
        line-height: 23.8px;
        letter-spacing: -0.34px;
        border-radius: 14px;
    }

    .inclued-chat-bubble::before {
        top: 16px;
        width: 10px;
        height: 14px;
        background-size: 10px 14px;
    }

    .inclued-chat-bubble.bubble-question::before {
        right: -10px;
    }

    .inclued-chat-bubble br {
        display: none;
    }

    .inclued-section2 {
        padding: 90px 0;
    }

    .inclued-section2-title {
        font-size: 30px;
        line-height: 42px;
        letter-spacing: -0.6px;
    }

    .inclued-usecase-grid {
        grid-template-columns: 1fr;
        row-gap: 20px;
    }

    .inclued-usecase-card:last-child {
        grid-column: auto;
    }

    .inclued-usecase-title {
        font-size: 24px;
        line-height: 33px;
        margin: 38px 30px 18px;
    }

    .inclued-usecase-desc {
        width: auto;
        margin: 0 30px;
        font-size: 18px;
        line-height: 27px;
    }

    .inclued-usecase-image {
        position: relative;
        margin-top: 28px;
        height: 240px;
    }

    .inclued-usecase-card {
        height: auto;
    }

    .inclued-section3 {
        padding: 90px 0;
    }

    .inclued-comparison {
        width: calc(100% - 48px);
        flex-direction: column;
        gap: 28px;
    }

    .inclued-comparison-card {
        width: 100%;
        height: auto;
        min-height: 0;
        border-radius: 14px;
    }

    .inclued-comparison-header,
    .inclued-comparison-inclued .inclued-comparison-header {
        height: 72px;
    }

    .inclued-comparison-title {
        font-size: 24px;
        letter-spacing: -0.48px;
    }

    .inclued-comparison-inclued .inclued-comparison-title {
        font-size: 26px;
        letter-spacing: -0.52px;
    }

    .inclued-comparison-legacy-text,
    .inclued-comparison-point {
        height: auto;
        min-height: 136px;
        padding: 26px 18px;
    }

    .inclued-comparison-legacy-text,
    .inclued-comparison-point-desc {
        font-size: 16px;
        letter-spacing: -0.32px;
    }

    .inclued-comparison-point-title {
        font-size: 20px;
        letter-spacing: -0.4px;
    }

    .inclued-comparison br {
        display: none;
    }

    .inclued-section4 {
        padding: 90px 0;
    }

    .inclued-feature-grid {
        grid-template-columns: 1fr;
        row-gap: 36px;
    }

    .inclued-feature-heading {
        font-size: 34px;
        line-height: 47px;
        letter-spacing: -0.68px;
    }

    .inclued-feature-title {
        font-size: 24px;
        line-height: 33px;
    }

    .inclued-feature-desc {
        margin-top: 16px;
        font-size: 18px;
        line-height: 27px;
    }

    .inclued-faq {
        padding: 90px 0;
    }

    .inclued-faq-title {
        font-size: 30px;
        line-height: 42px;
        letter-spacing: -0.6px;
        margin-bottom: 42px;
    }

    .inclued-faq-item {
        min-height: 88px;
        padding: 28px 0;
        font-size: 18px;
        line-height: 26px;
        letter-spacing: -0.36px;
    }

    .inclued-end-section {
        padding: 80px 24px 90px;
    }

    .inclued-end-inner {
        width: 100%;
    }

    .inclued-end-title {
        font-size: 38px;
        line-height: 53px;
        letter-spacing: -0.76px;
    }
}
