/* Base Styles */
:root {
    /* Colors - Exact colors from Figma */
    --primary-color: #00B2BE;
    --secondary-color: #B1BB00;
    --accent-color: #5525D0;
    --dark-color: #1F1F1F;
    --light-color: #FFFFFF;
    --gray-color: #F3F3F3;
    --yellow-color: #FBDE38;
    --orange-color: #F1890E;
    --gradient-start: #00B2BE;
    --gradient-end: #068C96;
    --primary-text-color: #000000;
    --nc-blue-text: #09284B;
    
    /* Font sizes - using rem where 1rem = 10px */
    font-size: 62.5%; /* This makes 1rem = 10px */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans TC', sans-serif;
    font-size: 1.6rem;
    line-height: 1.5;
    color: var(--dark-color);
    background-color: var(--light-color);
}

html:lang(zh-tw) {
    font-family: 'Noto Sans TC', sans-serif;
}

.container {
    width: 100%;
}

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

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

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, #FBB204, #F06400);
    color: var(--light-color);
    border-radius: 5rem;
    font-weight: 700;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: linear-gradient(to bottom, #e05a00, #e9a700);
}

.btn-large {
    padding: 1.65rem 3.2rem;
    font-size: 2.4rem;
    letter-spacing: 0.26em;
    max-width: 36rem;
    line-height: 1.3;
    width: 100%;
}

.btn-icon {
    margin-left: 1rem;
}

/* KV Section */
.kv-section {
    color: var(--light-color);
    position: relative;
    overflow: hidden;
    height: 83.4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.kv-bg img {
    object-fit: cover;
    min-height: 83.4rem;
    height: auto;
}
.kv-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.kv-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 14.7rem;
    left: 37%;
    transform: translateX(-50%);
    width: 57.5rem;
}

.kv-text-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 2.4rem;
    text-shadow: 0 0 2rem rgba(0, 106, 112, 1);
}

.kv-title {
    font-size: 7.3rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.1em;
    text-align: center;
}

.kv-subtitle {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.1em;
    text-align: center;
    width: max-content;
}

.kv-feature {
    width: 55.6rem;
    height: 21.7rem;
    background-image: url('https://nativecamp-public-web-production.s3-ap-northeast-1.amazonaws.com/user/webroot/images/JP_PLATFORM/index/zh-tw/jp_landing_pages/kv_feature.webp');
    background-size: cover;
    background-position: center;
    margin-bottom: 2.4rem;
}

.kv-copy {
    width: 48.8rem;
    height: 14.8rem;
    background-image: url('https://nativecamp-public-web-production.s3-ap-northeast-1.amazonaws.com/user/webroot/images/JP_PLATFORM/index/zh-tw/jp_landing_pages/kv_copy.webp');
    background-size: cover;
    background-position: center;
}

.kv-cta {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 3.9rem 3.6rem;
    background: linear-gradient(to right, #F06400, #FBB204);
    border-radius: 4rem 0 0 4rem;
    cursor: pointer;
    box-shadow: 0 0 2rem rgba(0, 0, 0, 0.3);
    right: 0;
    top: 38.4%;
    width: 8rem;
    height: 32rem;
    position: fixed;
    z-index: 1000;
}

.kv-cta:hover {
    background: linear-gradient(to bottom, #e05a00, #e9a700);
}

.kv-cta-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    height: 24.8rem;
}

.kv-cta-icon {
    width: 3.6rem;
    height: 3.6rem;
}

.kv-cta-text {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--light-color);
    letter-spacing: 0.2em;
    writing-mode: vertical-rl;
    text-orientation: upright;
}

/* Intro Section */
.intro-section {
    padding: 12rem 0;
    text-align: center;
    background: #F3F3F3;
}

.intro-title {
    font-size: 5.2rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: var(--primary-text-color);
    line-height: 1;
}

.intro-image {
    position: relative;
    width: 100%;
    height: 43.4rem;
    margin-bottom: 4rem;
}

.intro-bg {
    width: 100%;
    height: 100%;
}
.intro-bg img {
    object-fit: cover;
    min-height: 43.1rem;
    height: auto;
}
.intro-text {
    font-size: 2.8rem;
    line-height: 1.6;
}
.intro-text-highlight-b {
    color: var(--primary-color);
}
.intro-text-highlight-g {
    color: var(--secondary-color);
}

/* Features Section */
.features-section {
    padding: 12rem 6rem;
    background-color: var(--light-color);
}

.features-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 108rem;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

.feature-card {
    background-color: var(--light-color);
    overflow: hidden;
    border: 0.3rem solid var(--gray-color);
    padding: 4rem;
}

.feature-top {
    position: relative;
    width: 44rem;
}

.feature-image {
    width: 100%;
    height: auto;
}

.feature-number {
    position: absolute;
    bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    max-height: 9.3rem;
}

.feature-number-icon {
    position: relative;
    width: 7.7rem;
    height: 9.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature-number-icon img {
    width: 7.7rem;
    height: 9.3rem;
}
.feature-number-text {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--light-color);
    position: relative;
    z-index: 1;
}

.feature-title {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    width: 35.6rem;
}

.feature-subtitle-b {
    display: inline-flex;
    background-color: var(--primary-color);
    padding: 0.6rem 1rem 0.8rem;
    width: max-content;
}
.feature-subtitle-g {
    display: inline-flex;
    background-color: var(--secondary-color);
    padding: 0.6rem 1rem 0.8rem;
    width: max-content;
}

.feature-subtitle-b span,
.feature-subtitle-g span {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--light-color);
    line-height: 1.1;
}

.feature-description {
    padding: 1rem 0 0;
    font-size: 1.8rem;
    line-height: 1.6;
}

.feature-note {
    font-size: 1.4rem;
    color: #999;
}

/* Trial Promotion */
.trial-promo-border {
    background: linear-gradient(to top, #F06400, #FBB204);
    border-radius: 2rem;
    padding: 0.5rem;
    display: inline-block;
}
.trial-promo {
    position: relative;
    width: 100%;
    height: 44.7rem;
    background-color: #fff;
    border-radius: 2rem;
    overflow-y: hidden;
}
.trial-promo-bg img {
    justify-self: end;
    border-radius: 2rem;
}
.trial-label-number {
    width: 6.4rem;
    height: 9.1rem;
    position: absolute;
    top: 4rem;
    left: 4rem;
}
.trial-content {
    position: absolute;
    left: 12.8rem;
    top: 4rem;
    width: 42.4rem;
}
.trial-label {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.6;
    color: var(--primary-text-color);
    margin-bottom: 0.8rem;
}

.trial-badges {
    display: flex;
    margin-bottom: 1.6rem;
}

.trial-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 6.4rem;
    height: 6.4rem;
    position: relative;
    margin-right: 0.4rem;
}

.trial-badge-circle {
    width: 6rem;
    height: 6rem;
    background-color: var(--orange-color);
    border-radius: 50%;
    position: absolute;
}

.trial-badge-text {
    font-size: 3.4rem;
    font-weight: 700;
    color: var(--light-color);
    position: relative;
    z-index: 1;
}

.trial-cta {
    margin-top: 2rem;
}

.trial-note {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 1.6rem;
    max-width: 36rem;
}

.trial-note-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.6;
    color: var(--orange-color);
    margin-bottom: 0.8rem;
}

.trial-note-text {
    font-size: 2rem;
    line-height: 1.6;
    color: var(--primary-text-color);
}

/* Points Section */
.points-section {
    padding: 12rem 6rem;
    background: var(--primary-color);
}

.points-container {
    display: flex;
    flex-direction: column;
    gap: 6.4rem;
    width: 100%;
    max-width: 128rem;
    margin: 0 auto;
}

.points-header {
    display: flex;
    align-items: center;
    gap: 8rem;
    height: 14.6rem;
    align-items: self-start;
}

.points-logo {
    position: relative;
    width: 42rem;
    height: 10.5rem;
}
.point-illust {
    position: relative;
    margin-left: auto;
    margin-right: 6rem;
    width: 16.8rem;
    height: 22.6rem;
    z-index: 1;
}
.points-title {
    font-size: 5.2rem;
    font-weight: 700;
    color: var(--light-color);
    line-height: 1.4;
}

.points-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.point-card {
    background: var(--light-color);
    border-radius: 1.6rem;
    padding: 4rem;
    position: relative;
    box-shadow: 0px 0px 20px 0px #00000014;
}

.point-badge {
    position: absolute;
    top: -4rem;
    left: -3rem;
    background-color: var(--orange-color);
    color: var(--light-color);
    border-radius: 50%;
    font-size: 2.2rem;
    font-weight: 700;
    width: 8rem;
    height: 8rem;
    text-align: center;
    align-content: center;
}

.point-content {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
}

.point-text {
    color: var(--nc-blue-text);
}

.point-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--nc-blue-text);
    line-height: 1.6;
}

.point-description {
    font-size: 1.8rem;
    line-height: 1.6;
}

.point-image {
    display: flex;
    justify-content: center;
}

/* Learning Section */
.learning-section {
    padding: 12rem 0;
    background: #FAFAFA;
    position: relative;
}
.learning-bg {
    background: url(https://nativecamp-public-web-production.s3-ap-northeast-1.amazonaws.com/user/webroot/images/JP_PLATFORM/index/zh-tw/jp_landing_pages/learning_bg.webp);
    position: absolute;
    width: 100%;
    height: 24.8rem;
    top: 51rem;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.learning-image img.learning-icons-image {
    z-index: 1;
    position: relative;
}
.learning-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 128rem;
    margin: 0 auto;
}

.learning-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.learning-logo {
    width: 42rem;
    height: 10.5rem;
}

.learning-title {
    font-size: 5.2rem;
    font-weight: 700;
    color: var(--primary-text-color);
    line-height: 1.3;
}

.learning-content {
    display: flex;
    gap: 9.5rem;
    align-items: flex-start;
}

.learning-features {
    display: flex;
    flex-direction: column;
    gap: 2.3rem;
    margin-top: 2rem;
    width: 46.8rem;
}
.learning-icons {
    width: 46.8rem;
    align-self: end;
}
.learning-text {
    font-size: 2.8rem;
    line-height: 1.6;
    text-align: right;
    color: var(--primary-text-color);
}

/* Testimonials */
.testimonials {
    margin-top: 8rem;
}

.testimonials-title {
    font-size: 5.6rem;
    font-weight: 700;
    color: var(--primary-text-color);
    text-align: center;
    margin-bottom: 8rem;
    line-height: 1.3;
    margin-top: 7rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

.testimonial-card {
    background-color: #FCF8ED;
    border-radius: 1.6rem;
    padding: 4rem;
    box-shadow: 0 0.4rem 1.6rem rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 4rem;
}

.testimonial-avatar {
    position: absolute;
    top: -6rem;
    left: -6rem;
    width: 11rem;
    height: 10.6rem;
}
.icon-star {
    width: 2.1rem;
    height: 2rem;
    background: url('https://nativecamp-public-web-production.s3-ap-northeast-1.amazonaws.com/user/webroot/images/JP_PLATFORM/index/zh-tw/jp_landing_pages/star.svg') no-repeat center/cover;
    background-size: contain;
    background-position: center;
}
.testimonial-avatar-img {
    width: 11rem;
    height: 10.6rem;
    object-fit: cover;
}

.testimonial-content {
    flex: 1;
    position: relative;
}

.testimonial-highlight {
   height: 1.4rem;
    background-color: rgba(255, 158, 33, 0.3);
}

.testimonial-highlight:nth-child(2) {
    left: 2.4rem;
}

.testimonial-text {
    font-size: 1.8rem;
    line-height: 1.6;
}

.testimonial-user {
    display: flex;
    justify-content: space-between;
    width: 46.6rem;
    margin-left: 7.4rem;
    align-items: center;
    border-bottom: 0.4rem solid #FFF;
    margin-bottom: 2rem;
}
.testimonial-user-info {
    display: flex;
    gap: 1.6rem;
    align-items: center;
    align-items: center;
    margin-bottom: 0.8rem;
}
.testimonial-user-name {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    line-height: 1.6;
}

.testimonial-user-details {
    font-size: 1.8rem;
    color: #666;
    line-height: 1.6;
}

.testimonial-rating {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 0.8rem;
}

.testimonial-star {
    width: 2.1rem;
    height: 2rem;
}

/* FAQ Section */
.faq-section {
    padding: 12rem 0;
    background-color: rgba(0, 178, 190, 0.15);
}

.faq-container {
    border-radius: 1.6rem;
    max-width: 108rem;
    margin: 0 auto;
}

.faq-header {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    margin-bottom: 8rem;
    justify-content: center;
}

.faq-icon {
    width: 18.2rem;
    height: 7.8rem;
}

.faq-title {
    font-size: 4.8rem;
    font-weight: 700;
    line-height: 1.3;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-bottom: 8rem;
}

.faq-item {
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 1.6rem;
    overflow: hidden;
}

.faq-question {
    padding: 3rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: linear-gradient(90deg, #00B2BE -10.65%, #068C96 113.61%);
}

.faq-question-text {
    display: flex;
    align-items: center;
    gap: 1.6rem;
        color: var(--light-color);
}

.faq-question-icon {
    width: 4rem;
    height: 3.8rem;
    flex-shrink: 0;
    background-image: url(https://nativecamp-public-web-production.s3-ap-northeast-1.amazonaws.com/user/webroot/images/JP_PLATFORM/index/zh-tw/jp_landing_pages/question.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

.faq-question-title {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.3;
}

.faq-arrow {
    transition: transform 0.3s ease;
    background-image: url(https://nativecamp-public-web-production.s3-ap-northeast-1.amazonaws.com/user/webroot/images/JP_PLATFORM/index/zh-tw/jp_landing_pages/arrow_qa.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 2.4rem;
    height: 1.4rem;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 50rem;
}

.faq-answer-content {
    padding: 3rem 2.8rem 3rem 4rem;
    display: flex;
    gap: 1.6rem;
    background: var(--light-color);
}

.faq-answer-icon {
    width: 4rem;
    height: 3.2rem;
    flex-shrink: 0;
    background-image: url(https://nativecamp-public-web-production.s3-ap-northeast-1.amazonaws.com/user/webroot/images/JP_PLATFORM/index/zh-tw/jp_landing_pages/answer.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

.faq-answer-text {
    font-size: 2rem;
    line-height: 1.6;
}

.faq-cta {
    display: flex;
    justify-content: center;
}
.cta-arrow {
    transform: rotate(270deg);
    margin-left: 1.9rem;
    background-image: url(https://nativecamp-public-web-production.s3-ap-northeast-1.amazonaws.com/user/webroot/images/JP_PLATFORM/index/zh-tw/jp_landing_pages/arrow_qa.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 2.4rem;
    height: 1.4rem;
}
.arrow-down {
    border: 10rem solid transparent;
    border-bottom: 0;
    border-top: 7.1rem solid #F3F3F3;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 177.4rem;
}
.faq-cta .btn-large {
    max-width: 43rem;
    height: 100%;
    min-height: 7.6rem;
    font-weight: 700;
    font-size: 2.8rem;
    line-height: 1.3;
    text-align: center;
}
.faq-cta .cta-arrow {
    margin-left: 4.4rem;
}
