/* ==================== 全局樣式 ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #323232;
    --secondary-color: #D4A373;
    --accent-color: #8B7355;
    --bg-light: #F5F5F5;
    --bg-white: #FFFFFF;
    --text-primary: #323232;
    --text-secondary: #666666;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Noto Sans TC', 'ABeeZee', sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

html {
    overflow-x: hidden;
    width: 100%;
    scrollbar-gutter: stable;
}

.container {
    width: 1425px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

@media (max-width: 1505px) {
    .container {
        width: auto;
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .container {
        width: auto;
        padding: 0 16px;
    }
}

/* ==================== 導航欄 ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: #F5F5F5;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar .container {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 50px;
}

.logo {
    margin-right: auto;
      margin-top: 7px;
}

.logo img {
    height: 32px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    margin-right: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 16px;
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--secondary-color);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-btn {
    background: #F5B041;
    color: white;
    border: none;
    padding: 17px 32px;
    border-radius: 29px;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
}

.cta-btn:hover {
    background: #F7C366;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 176, 65, 0.3);
}

/* 汉堡菜单按钮 */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ==================== 咨询模态框 ==================== */
.consultation-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.consultation-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 20px;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border: none;
    cursor: pointer;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    z-index: 10001;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.modal-close:hover {
    background: #f0f0f0;
    transform: rotate(90deg);
}

/* Lead Connector iframe 样式 */
.modal-content iframe {
    border: none;
    background: transparent;
    border-radius: 12px;
    max-width: 500px;
    width: 90vw;
}
 .ghl-form-wrap {
      max-width: none !important;
      border-radius: 0 !important;
      box-shadow: none !important;
      margin-bottom: 0 !important;
  }

/* 模态框响应式设计 */
@media (max-width: 768px) {
    .modal-close {
        top: 15px;
        right: 15px;
    }

    .modal-content iframe {
        width: 95vw;
        max-width: 95vw;
    }
}

@media (max-width: 480px) {
    .modal-close {
        top: 10px;
        right: 10px;
        padding: 8px;
    }

    .modal-content iframe {
        width: 98vw;
        max-width: 98vw;
        border-radius: 10px;
    }
}


/* ==================== 搜索框 ==================== */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-container {
    max-width: 800px;
    margin: 120px auto 0;
    padding: 0 40px;
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-box {
    background: white;
    border-radius: 12px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.search-icon {
    flex-shrink: 0;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 18px;
    color: var(--text-primary);
    font-family: 'Noto Sans TC', sans-serif;
}

.search-input::placeholder {
    color: #999;
}

.search-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.search-close:hover {
    background: #f0f0f0;
}

.search-suggestions {
    margin-top: 30px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.suggestions-title {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    font-weight: 500;
}

.suggestion-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.suggestion-tags .tag {
    padding: 8px 16px;
    background: #f5f5f5;
    border-radius: 20px;
    font-size: 14px;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.suggestion-tags .tag:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .search-container {
        padding: 0 20px;
        margin-top: 100px;
    }

    .search-box {
        padding: 15px 20px;
    }

    .search-input {
        font-size: 16px;
    }
}

/* ==================== Hero Section ==================== */
.hero-section {
    min-height: 100vh;
    padding-top: 0;  /* Hero Section 从顶部开始 */
    background: #F5F5F5;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-content {
    display: flex;
    justify-content: space-between;  /* 左右两端对齐 */
    align-items: center;
    gap: 80px;
    padding-top: 130px;  /* 80px 避开 header + 60px 视觉间距 */
    width: 100%;
}

.hero-text {
    flex: 0 1 50%;  /* 占据 50% 宽度，左侧 */
    max-width: 100%;
}

.hero-title {
    font-size: 40px;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: 40px;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 40px;
    color: var(--text-primary);
}

.hero-description {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 50px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-direction: column;  /* 垂直排列按钮 */
    gap: 80px;  /* 按钮之间间距 80px */
    align-items: flex-start;  /* 左对齐 */
}

.btn-primary {
    background: #F5B041;
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 29px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-primary:hover {
    background: #F7C366;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 176, 65, 0.3);
}

.btn-video {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    color: var(--text-primary);
    transition: var(--transition);
}

.btn-video:hover {
    color: var(--secondary-color);
}

.play-icon {
    transition: var(--transition);
}

.btn-video:hover .play-icon {
    transform: scale(1.1);
}

.hero-image {
    position: relative;
    flex: 0 1 50%;  /* 占据 50% 宽度，右侧 */
    height: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;  /* 允许 badge 超出容器显示 */
    border-radius: var(--border-radius);
    max-width: 100%;
}

.hero-image img {
    height:800px;
    object-fit: cover;
    object-position: center 75%;
    border-radius: var(--border-radius);
    position: relative;
    z-index: 1;  /* 图片在底层 */
}

.badge {
    position: absolute;
    background: rgba(255, 255, 255, 0);
    padding: 16px 26px;
    border-radius: 42px;
    font-size: 16px;
    border: 1px solid rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(60px);
    -webkit-backdrop-filter: blur(60px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    z-index: 10;  /* 确保 badge 显示在图片上方 */
}

.badge-1 {
    top: 50%;
    left: -50px;
}

.badge-2 {
    top: 65%;
   left: -10px;
}

.badge-3 {
    top: 40%;
    right: -10px;
}

/* ==================== 側邊導航 ==================== */
.side-nav {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 100;
    align-items: flex-end;
}

.side-nav-line {
    display: none;
}

.side-nav-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    text-decoration: none;
    font-family: 'ABeeZee', sans-serif;
    transition: var(--transition);
    position: relative;
    padding: 8px 20px;
    border-radius: 25px;
    min-width: 60px;
    width: 60px;
    overflow: hidden;
}

.nav-label {
    font-size: 20px;
    color: rgba(0, 0, 0, 0.9);
    letter-spacing: 0.4px;
    line-height: 29px;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: 20px;
    transition: var(--transition);
    white-space: nowrap;
    font-family: 'Noto Sans TC', sans-serif;
    background: rgba(255, 255, 255, 0.95);
    padding: 5px 15px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transform: translateX(-100%);
}

.nav-number {
    font-size: 20px;
    color: rgba(0, 0, 0, 0.5);
    letter-spacing: 0.4px;
    line-height: 29px;
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: auto;
}

/* 激活状态 */
.side-nav-item.active {
    background: transparent;
    border: 2px solid rgba(0, 0, 0, 0.9);
    width: auto;
    min-width: 0px;
    padding: 10px 15px;
}

.side-nav-item.active .nav-label {
    opacity: 1;
    visibility: visible;
    position: relative;
    left: auto;
    background: transparent;
    box-shadow: none;
    padding: 0;
    transform: translateX(0);
}

.side-nav-item.active .nav-number {
    font-size: 24px;
    color: rgba(0, 0, 0, 0.9);
    font-weight: 500;
}

/* 悬停效果 */
.side-nav-item:hover .nav-number {
    color: rgba(0, 0, 0, 0.8);
}

/* ==================== 公共區域樣式 ==================== */
.section-title {
    font-size: 38px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 20px;
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-conclusion {
    font-size: 18px;
    text-align: center;
    color: var(--text-primary);
    font-weight: 500;
    max-width: 900px;
    margin-top: 60px;
    margin-left: auto;
    margin-right: auto;
}

section {
    min-height: 100vh;
    padding-top: 120px;  /* 80px header + 40px 视觉间距 */
    padding-bottom: 80px;  /* 保持底部间距 */
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

/* ==================== 問題覺察區域 ==================== */
.problem-section {
    background: #F5F5F5;
    width: 100%;
    max-width: 100%;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    grid-auto-rows: 500px;  /* 设置每行固定高度 500px */
    width: 100%;
    max-width: 100%;
}

.problem-card {
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #F5F5F5;
    border-radius: 20px;
}

.problem-image {
    width: 100%;
    height: 100%;
    flex: 1;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
    background: #F5F5F5;  /* 背景色与 section 一致，避免露白 */
        opacity: 0.7;
}

.problem-image:hover {
        opacity: 1;
}

.problem-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;  /* 移除 img 底部默认间隙 */
}

.problem-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.problem-card p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.problem-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 100px 20px 20px;
    opacity: 1;
    border-radius: 0px 0px 20px 20px;
    background: linear-gradient( 180deg, rgba(249,232,205,0) 0%, #FFFFFF 50%);
    min-height: 220px;
    z-index: 2;
}

/* ==================== 解決方案對比 ==================== */
.solution-section {
    background: #F5F5F5;
    width: 100%;
    max-width: 100%;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: start;
    max-width: 83%;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.comparison-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.comparison-card.traditional {
    background: #D5D5D5;  /* 传统方法卡片背景色 */
}

.comparison-card.jove-method {
    border: 1px solid #F5B041;
}

.comparison-card h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
}

.divider {
    width: 90%;
    height: 2px;
    background: linear-gradient(to right, var(--secondary-color), transparent);
    margin-bottom: 20px;
}

.comparison-card.traditional .divider {
    background: #999999;  /* 传统方法卡片的分割线为灰色 */
    height: 1px;
}

.creator-info .divider {
    width: 200px;
    height: 8px;
    background: linear-gradient(to right, var(--secondary-color), transparent);
    margin-bottom: 20px;
}

.comparison-item {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

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

.icon-x,
.icon-check {
    flex-shrink: 0;
    margin-top: 4px;
}

.icon-x {
    width: 22px;
    height: 22px;
}

.icon-check {
    width: 24px;
    height: 24px;
}

.comparison-item h4 {
    font-size: 18px;
    color: var(--text-primary);
}

.comparison-item p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.vs-divider {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 80px;
    font-weight: 700;
    color: var(--primary-color);
    z-index: 10;
    padding: 20px 30px;
    border-radius: 50%;
}


/* ==================== Jove Method ==================== */
.method-section {
    background: #F5F5F5;
    width: 100%;
    max-width: 100%;
}

.method-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    margin-top: 60px;
    width: 100%;
    max-width: 100%;
}

.method-image-wrapper {
    position: relative;
}

.method-image {
    width: 75%;
    border-radius: 20px;
}

.method-quote {
    position: absolute;
    top: 20%;
    right: -50px;
    background: white;
    padding: 20px 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 280px;
    z-index: 2;
}

.method-quote::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 30px;
    width: 20px;
    height: 20px;
    background: white;
    transform: rotate(45deg);
}

.method-quote p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-primary);
}

.method-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.method-cards .section-subtitle {
    text-align: left;
    margin-bottom: 20px;
    max-width: 100%;
}

.method-card {
    background: white;
    border: 1px solid #E5E5E5;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: flex-start;
    transition: var(--transition);
}

.method-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.method-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.method-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.method-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    color: var(--text-primary);
}

.method-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

/* ==================== 創辦人介紹 ==================== */
.creator-section {
    background: #F5F5F5;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.creator-content {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 100px;
    align-items: center;
    margin-top: 80px;
    width: 100%;
    max-width: 100%;
}

.creator-image-wrapper {
    position: relative;
}

.creator-image {
    width: 100%;
    max-width: 450px;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.creator-info h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.creator-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.creator-bio {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
      margin-right: 150px;
}

.subsection-title {
    font-size: 18px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-primary);
    font-weight: 500;
}

/* ==================== 轉變見證 ==================== */
.results-section {
    background-color: #F5F5F5;
    position: relative;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    padding-bottom: 0;
}

.results-section .container {
    position: relative;
    z-index: 1;
}

.results-section .section-title {
    margin-bottom: 12px;
}

.results-section .section-subtitle {
    margin-bottom: 20px;
    font-size: 18px;
}

.results-section .container::before {
    content: '';
    position: absolute;
    top: 190px;
    left: 50%;
    transform: translateX(-50%);
    width: 1200px;
    height: 600px;
    background-image: var(--bg-url);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    z-index: 0;
    opacity: 1;
}

/* 转变见证容器 */
.transformation-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 520px;
    overflow: hidden;
}

/* 中心图片（默认隐藏，仅手机端显示） */
.center-image {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 460px;
    z-index: 10;
}

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

/* 翻转卡片基础样式 */
.flip-card {
    position: absolute;
    width: 260px;
    height: 180px;
    perspective: 1000px;
    cursor: pointer;
    max-width: 100%;
    z-index:999;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.15s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    
    backface-visibility: hidden;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.flip-card-front {
    padding: 8px 15px;
    height: 50%;
}

.flip-card-back {
    padding: 15px;
    height: 100%;
}

.flip-card-front {
    background: #E8E8E8;
}

.flip-card-back {
    background: white;
    transform: rotateY(180deg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.flip-card h4 {
    font-size: 17px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.flip-card p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.flip-card-back .card-image {
    margin: 0 auto 12px;
    overflow: hidden;
}

.flip-card-back .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 卡片定位 */
.card-top-left {
    top: 120px;
    left: 190px;
}

.card-top-right {
    top: 120px;
    right: 190px;
}

.card-bottom-left {
    bottom: 0px;
    left: 80px;
}

.card-bottom-right {
    bottom: 0px;
    right: 80px;
}

/* ==================== 是否適合您 ==================== */
.suitable-section {
    background: #F5F5F5;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.suitable-section .section-title {
    margin-bottom: 15px;
}

.suitable-section .section-subtitle {
    margin-bottom: 50px;
}

.suitable-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 75%;
    width: 100%;
    margin: 60px auto 0;
}

/* 卡片共用样式 */
.suitable-card {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border: none;
    padding: 50px 60px;
    position: relative;
    max-width: 100%;
}

/* 禁用悬停效果 */
.suitable-card {
    transition: none !important;
}

.suitable-card:hover,
.suitable-card.unsuitable:hover {
    background-color: transparent !important;
    box-shadow: none !important;
    transform: none !important;
}

/* 左边卡片 - 不合适人群 */
.suitable-card.unsuitable {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    top: 0;
}

/* 右边卡片 - 合适人群 */
.suitable-card:not(.unsuitable) {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    top: -40px;
   padding: 50px 50px 50px 100px;
}
.suitable-divider{
        width: 80%;
    height: 2px;
    background: #afafaf;
    margin: 0 auto 35px;
}
.suitable-divider1{
        width: 80%;
    height: 2px;
    background: #323232;
    margin: 0 auto 35px;
}

.suitable-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    color: #323232;
}

.suitable-card .divider {
    width: 30%;
    height: 2px;
    background: #323232;
    margin: 0 auto 35px;
}

.suitable-list {
    list-style: none;
}

.suitable-list li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 25px;
}

.suitable-list li:last-child {
    margin-bottom: 0;
}

.check-icon,
.x-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.suitable-list span {
    font-size: 20px;
    line-height: 1.6;
    color: #323232;
    font-weight: 500;
}

/* ==================== 預約策略諮詢 CTA ==================== */
.consult-section {
    padding: 180px 0;
    background: var(--bg-light);
    text-align: center;
        min-height: 50vh;
}

.consult-title {
    font-size: 32px;
    font-weight: 500;
    color: #323232;
    margin-bottom: 30px;
    line-height: 1.46;
}

.consult-features {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 40px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    color: rgba(0, 0, 0, 0.6);
}

.consult-description {
    font-size: 20px;
    color: #323232;
    margin-bottom: 50px;
}

.btn-consult {
    background: #F5B041;
    color: white;
    border: none;
    padding: 16px 83px;
    border-radius: 29px;
    font-size: 20px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-consult:hover {
    background: #F7C366;
    box-shadow: 0 6px 20px rgba(245, 176, 65, 0.3);
}


/* 咨询区域的按钮居中 */
.consult-section .btn-primary {
    margin: 0 auto;
    display: inline-flex;
    padding: 16px 83px;
    font-size: 20px;
}

/* ==================== Footer ==================== */
.footer {
    background: #F5B041;
    color: #323232;
    padding: 50px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.footer-left h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #323232;
}

.footer-left p {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 8px;
    color: #323232;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 20px;
    text-align: right;
}

.footer-social {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer-social a {
    display: inline-flex;
    transition: var(--transition);
    line-height: 0;
}

.footer-social a svg {
    width: 36px;
    height: 36px;
}

.footer-social a:hover {
    opacity: 0.85;
    transform: translateY(-3px);
}

.footer-links {
    display: flex;
    gap: 10px;
    font-size: 16px;
    white-space: nowrap;
    flex-wrap: nowrap;
}

.footer-links a {
    color: #323232;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
}

.footer-links a:hover {
    opacity: 0.7;
}

.footer-links .divider {
    color: #323232;
}

.copyright {
    font-size: 14px !important;
    margin-top: 8px;
    color: #323232;
}

/* ==================== 響應式設計 ==================== */
@media (max-width: 1440px) {
    .hero-content,
    .method-content,
    .creator-content {
        gap: 80px;
    }

    .section-title {
        font-size: 40px;
    }

    .hero-title,
    .hero-subtitle {
        font-size: 38px;
    }
}

@media (max-width: 1024px) {
    * {
        box-sizing: border-box;
    }

    html, body {
        overflow-x: hidden;
        max-width: 100%;
        width: 100%;
        position: relative;
    }

    .container {
        max-width: 100%;
        width: 100%;
        padding: 0 30px;
    }

    /* 平板端導航菜單間距調整 */
    .nav-menu {
        gap: 20px;
    }
      .logo img {
        height: 30px;
    }

    section {
        overflow-x: hidden;
        max-width: 100%;
        width: 100%;
    }

    .hero-content {
        flex-direction: row;
        max-width: 100%;
        justify-content: space-between;
        align-items: center;
    }

    .hero-text,
    .hero-image {
        flex: 0 1 48%;
        max-width: 48%;
    }

    .method-content,
    .creator-content {
        grid-template-columns: 1fr 1fr;
        max-width: 100%;
        width: 100%;
    }

    .comparison-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
        max-width: 100%;
        width: 100%;
    }

    .suitable-grid {
        grid-template-columns: 1fr 1fr;
        max-width: 100%;
        width: 100%;
    }

    .suitable-section {
        height: auto;
        min-height: auto;
        padding-top: 100px !important;
        padding-bottom: 60px !important;
    }

    .suitable-grid {
        margin-top: 0;
    }

    .suitable-card {
        padding: 20px 50px;
        max-width: 100%;
        box-sizing: border-box;
        background-size: contain;
        background-position: center;
    }

    .suitable-card h3 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .suitable-list li {
        margin-bottom: 10px;
    }

    .suitable-list span {
        font-size: 17px;
        line-height: 1.5;
    }

    .check-icon,
    .x-icon {
        width: 24px;
        height: 24px;
    }

    .suitable-card:not(.unsuitable) {
        top: -20px;
        padding: 0 20px 0 60px;
    }

    .suitable-divider,
    .suitable-divider1 {
        width: 70%;
        margin: 0 auto 10px;
    }


    .method-content {
        margin-top: 40px;
        gap: 60px;
        max-width: 100%;
        width: 100%;
    }

    .method-image-wrapper {
        max-width: 100%;
    }

    .method-image {
        width: 85%;
        max-width: 100%;
    }

    .method-quote {
        position: absolute;
        top: 20%;
        right: -50px;
        max-width: 200px;
        padding: 12px 20px;s
    }

    .method-quote::before {
        content: '';
        position: absolute;
        left: -8px;
        top: 25px;
        width: 16px;
        height: 16px;
        background: white;
        transform: rotate(45deg);
    }

    .method-quote p {
        font-size: 14px;
        line-height: 1.6;
    }

    .method-cards .section-subtitle {
        font-size: 17px;
        line-height: 1.6;
    }

    .method-icon {
        width: 26px;
        height: 26px;
    }

    .method-card {
        flex-direction: row;
        gap: 12px;
        padding: 18px;
    }

    .method-card h3 {
        font-size: 17px;
    }

    .method-card p {
        font-size: 14px;
        line-height: 1.5;
    }

    .method-text {
        gap: 6px;
    }

    .hero-section {
        min-height: auto;
        padding-top: 0;
        max-width: 100vw;
        overflow-x: hidden;
        overflow-y: hidden;
    }

    .hero-content {
        gap: 40px;
        max-width: 100%;
    }

    .hero-text {
        text-align: left;
    }

    .hero-title,
    .hero-subtitle {
        font-size: 28px;
        margin-bottom: 16px;
    }
    .hero-actions{
        gap: 40px;
    }


    .hero-description {
        font-size: 18px;
        margin-bottom: 40px;
    }

    .hero-image {
        max-height: 500px;
        min-height: auto;
        margin-top: 0;
        width: 100%;
        overflow: visible;
    }

    .hero-image img {
        height: auto;
        max-height: 500px;
        width: 100%;
        max-width: 100%;
        object-fit: contain;
    }

    .badge {
        font-size: 13px;
        padding: 10px 10px;
        white-space: normal;
        max-width: 180px;
        line-height: 1.4;
    }

    .badge-1 {
        top: 50%;
        left: -20px;
    }

    .badge-2 {
        top: 65%;
        left: -35px;
    }

    .badge-3 {
        top: 45%;
        right: -20px;
    }

    .problem-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
        grid-auto-rows: 300px;
        max-width: 100%;
        width: 100%;
    }

    .problem-card {
        max-width: 100%;
    }

    .problem-card h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .problem-card p {
        font-size: 14px;
        line-height: 1.6;
    }

    .problem-text {
        padding: 80px 12px 15px;
        min-height: 180px;
    }

    .method-pillars {
        padding: 50px 32px;
    }

    .creator-section {
        height: auto;
        min-height: auto;
        padding-top: 100px !important;
        padding-bottom: 60px !important;
    }

    .creator-content {
        margin-top: 0;
        gap: 70px;
        max-width: 100%;
        width: 100%;
        grid-template-columns: 1.5fr 1fr;
    }

    .creator-image-wrapper {
        max-width: 100%;
    }

    .creator-image {
        max-width: 100%;
        width: 100%;
    }

    .creator-info h3 {
        font-size: 30px;
        margin-bottom: 12px;
    }

    .creator-title {
        font-size: 17px;
        margin-bottom: 20px;
    }

    .creator-bio {
        font-size: 15px;
        line-height: 1.7;
    }

    .creator-info .divider {
        height: 6px;
        width: 160px;
        margin-bottom: 18px;
    }

    .results-section {
        height: auto;
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .results-section .section-subtitle {
        font-size: 16px;
    }

    .results-section .container::before {
        top: 180px;
        width: 90%;
        max-width: 700px;
        height: 350px;
        left: 50%;
        transform: translateX(-50%);
    }

    .transformation-container {
        height: 350px;
        max-width: 100%;
        width: 100%;
        padding: 0;
        overflow: visible;
        box-sizing: border-box;
    }

    .center-image {
        width: 280px;
        height: 370px;
    }

    .flip-card {
        width: 220px;
        height: 150px;
    }

    .flip-card h4 {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .flip-card p {
        font-size: 11px;
        line-height: 1.4;
    }

    .flip-card-front {
        padding: 8px 10px;
    }

    .flip-card-back {
        padding: 10px;
    }

    .card-top-left {
        top: 150px;
        left: 0px;
    }

    .card-top-right {
        top: 150px;
        right: 0px;
    }

    .card-bottom-left {
        bottom: -80px;
        left: 0;
    }

    .card-bottom-right {
        bottom: -80px;
        right: 0;
    }

    .subsection-title {
        margin-bottom: 30px;
        font-size: 16px;
    }


    .comparison-card {
        margin: 0;
        max-width: 100%;
        box-sizing: border-box;
    }

    .comparison-card h3 {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .comparison-item {
        gap: 15px;
        margin-bottom: 16px;
    }

    .comparison-item h4 {
        font-size: 16px;
    }

    .comparison-item p {
        font-size: 14px;
        line-height: 1.6;
    }

    .vs-divider {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 20px 30px;
        font-size: 70px;
        margin: 0;
    }

    .side-nav {
        display: none !important;
    }

    .footer {
        padding: 40px 0;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
        gap: 40px;
    }

    .footer-left h4 {
        font-size: 17px;
        margin-bottom: 12px;
    }

    .footer-left p {
        font-size: 15px;
        margin-bottom: 6px;
    }

    .footer-right {
        align-items: flex-end;
        width: auto;
    }

    .footer-social {
        gap: 12px;
    }

    .footer-social a svg {
        width: 36px;
        height: 36px;
    }

    .footer-links {
        font-size: 15px;
        gap: 8px;
    }

    .section-conclusion {
        margin-top: 50px;
    }

    /* 平板端隐藏中心图片 */
    .center-image {
        display: none;
    }

    section {
        min-height: auto;
        height: auto;
        padding-top: 100px;  /* 80px header + 20px 视觉间距（平板优化）*/
        padding-bottom: 60px;
    }

    /* Consult */
    .consult-section {
       padding: 50px 0;
       min-height: auto;
    }

    .consult-title {
        font-size: 28px;
    }

    .consult-description {
        font-size: 18px;
    }

    .feature {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
      .card-top-left {
        top: 150px;
        left: 0px;
    }
.flip-card-inner
 {
    width: 85% !important;
}
      .card-top-left {
        left: -10px;
    }
      .card-top-right {
        right: -40px;
    }
      .card-bottom-left {
        left: -10px;
    }
  
    .card-bottom-right {
        right: -40px;
    }
    .section-title {
        font-size: 26px;
        margin-bottom: 16px;
    }

    .section-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .hero-section {
        height: auto;
        min-height: auto;
        padding-top: 80px;
        padding-bottom: 60px;
    }

    .hero-content {
        flex-direction: column;
        padding-top: 40px;
        gap: 35px;
        width: 100%;
    }

    .hero-text {
        text-align: left;
        order: 1;
        width: 100%;
        max-width: 100%;
    }

    .hero-image {
        order: 2;
        width: 100%;
        max-width: 100%;
    }

    .hero-title,
    .hero-subtitle {
        font-size: 24px;
        line-height: 1.4;
        margin-bottom: 12px;
    }

    .hero-description {
        font-size: 16px;
        margin-bottom: 30px;
        line-height: 1.6;
    }

    .hero-actions {
        gap: 30px;
        width: 100%;
        align-items: flex-start;
    }

    .btn-primary {
        width: auto;
        min-width: fit-content;
        max-width: 40%;
        white-space: nowrap;
    }

    .btn-video {
        width: auto;
        justify-content: flex-start;
    }

    .hero-image {
        max-height: 400px;
        min-height: auto;
        height: auto;
    }

    .hero-image img {
        height: 500px;
        max-height: 500px;
        width: 100%;
        object-fit: cover;
    }

    .badge {
        font-size: 11px;
        padding: 8px 14px;
        border-radius: 30px;
        white-space: normal;
        line-height: 1.3;
    }

    .badge-1 {
        position: absolute;
        top: 45%;
    }

    .badge-2 {
        position: absolute;
        top: 65%;
        left: -10px;
    }

    .badge-3 {
        position: absolute;
        top: 50%;
        right: -10px;
    }

    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        grid-auto-rows: 240px;
    }

    .problem-card h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .problem-card p {
        font-size: 14px;
        line-height: 1.6;
    }

    .problem-text {
        padding: 70px 15px 20px;
        min-height: 160px;
        background: linear-gradient(180deg, rgba(249,232,205,0) 0%, #FFFFFF 40%);
    }

    .method-content {
        grid-template-columns: 1fr;
        margin-top: 30px;
        gap: 35px;
    }

    .method-image-wrapper {
        text-align: center;
        order: 1;
    }

    .method-cards {
        order: 2;
                gap: 15px;
    }

    .method-image {
        width: 100%;
        max-width: 100%;
    }

    .method-quote {
        padding: 18px 24px;
        width: 40%;
        right: -15px;
    }

    .method-quote p {
        font-size: 14px;
        line-height: 1.6;
    }

    .method-cards .section-subtitle {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .method-icon {
        width: 24px;
        height: 24px;
    }

    .method-card {
        flex-direction: row;
        gap: 12px;
        padding: 16px;
    }

    .method-text {
        gap: 5px;
    }

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

    .method-card p {
        font-size: 14px;
        line-height: 1.5;
    }

    .method-pillars {
        padding: 32px 24px;
    }

    .creator-section {
        height: auto;
        min-height: auto;
        padding-top: 80px !important;
        padding-bottom: 40px !important;
    }

    .creator-content {
        gap: 35px;
        margin-top: 0;
        grid-template-columns: 1fr;
    }

    .creator-image-wrapper {
        order: 2;
        text-align: center;
    }

    .creator-info {
        order: 1;
    }

    .creator-image {
        max-width: 100%;
        width: 100%;
    }

    .creator-info h3 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .creator-title {
        font-size: 16px;
        margin-bottom: 18px;
    }

    .creator-bio {
        font-size: 16px;
        line-height: 1.7;
      margin-right:0;
    }

    .creator-info .divider {
        width: 150px;
        height: 6px;
        margin-bottom: 15px;
    }

    .results-section {
        height: auto;
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .results-section .section-title {
        font-size: 24px;
    }

    .results-section .section-subtitle {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .results-section .container::before {
        display: none;
    }

    .transformation-container {
        height: auto;
        position: relative;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        max-width: 100%;
        padding: 20px 0;
        margin-top: 30px;
        background: none;
    }

    .center-image {
        display: block;
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 100%;
        max-width: 200px;
        height: auto;
        margin: 0 auto;
        grid-column: 1 / -1;
        order: 10;
    }

    .center-image img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }


    /* 移动端点击翻转 */
    .flip-card.flipped .flip-card-inner {
        transform: rotateY(180deg);
    }

    .flip-card-front {
        display: flex;
        padding: 15px;
    }

    .flip-card-back {
        position: absolute;
        top: 0;
        left: 0;
        transform: rotateY(180deg);
        padding: 15px;
        height: 100%;
        background: white;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        border-radius: 20px;
        backface-visibility: hidden;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .flip-card h4 {
        font-size: 15px;
        margin-bottom: 6px;
        color: var(--text-primary);
    }

    .flip-card p {
        font-size: 12px;
        line-height: 1.5;
        color: var(--text-secondary);
    }

    .flip-card-back .card-image {
        display: block;
        margin: 0 auto 10px;
        overflow: hidden;
        width: 80px;
        height: 80px;
    }

    .flip-card-back .card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
    }

    .subsection-title {
        margin-bottom: 20px;
        font-size: 16px;
    }

    .section-conclusion {
        font-size: 15px;
        margin-top: 30px;
    }


    .audience-cards {
        grid-template-columns: 1fr;
    }

    .audience-card {
        padding: 32px 24px;
    }

    /* 汉堡菜单在移动端显示 */
    .hamburger {
        display: flex;
    }

    /* 移动端菜单 */
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: #F5F5F5;
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-menu a {
        display: block;
        font-size: 18px;
    }

    /* 移动端CTA按钮隐藏 */
    .navbar .cta-btn {
        display: none;
    }

    /* Logo 调整 */
    .logo img {
        height: 26px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 20px;  
        align-items: stretch;
    }

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

    .comparison-card {
        padding: 30px 25px;
    }

    .comparison-card h3 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .comparison-item {
        gap: 15px;
        margin-bottom: 18px;
    }

    .comparison-item h4 {
        font-size: 15px;
    }

    .comparison-item p {
        font-size: 15px;
        line-height: 1.7;
    }

    .icon-x,
    .icon-check {
        width: 18px;
        height: 18px;
    }

    .vs-divider {
        font-size: 48px;
        padding: 15px 0;
        margin-top: -20px;
    }

    .suitable-section {
        height: auto;
        min-height: auto;
        padding-top: 80px !important;
        padding-bottom: 40px !important;
    }

    .suitable-section .section-subtitle {
        font-size: 15px;
    }

    .suitable-grid {
        grid-template-columns: 1fr;
        margin-top: 0;
        gap: 20px;
    }

    .suitable-card.unsuitable {
        padding: 30px 40px 50px 40px;
    }

    .suitable-card:not(.unsuitable) {
        padding: 40px 0 40px 60px;
        top: 0;
    }

    .suitable-card h3 {
        font-size: 20px;
        margin-bottom: 14px;
    }

    .suitable-divider,
    .suitable-divider1 {
        width: 70%;
    }

    .suitable-list {
        padding: 0;
    }

    .suitable-list li {
        margin-bottom: 18px;
        gap: 12px;
    }

    .suitable-list span {
        font-size: 14px;
        line-height: 1.4;
    }

    .check-icon,
    .x-icon {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }

    .section-conclusion {
        margin-top: 40px;
        font-size: 15px;
    }

    /* Consult Section */
    .consult-section {
        padding: 60px 0;
    }

    .consult-title {
        font-size: 20px;
        line-height: 1.5;
        margin-bottom: 24px;
        padding: 0 10px;
    }

    .consult-features {
        gap: 16px;
        margin-bottom: 30px;
    }

    .feature {
        font-size: 16px;
        justify-content: center;
    }

    .consult-description {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 40px;
        padding: 0 10px;
    }

    .btn-consult {
        padding: 15px 50px;
        font-size: 18px;
    }

    /* Footer */
    .footer {
        padding: 35px 0;
    }

    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .footer-left h4 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .footer-left p {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 5px;
    }

    .footer-right {
        align-items: flex-start;
        width: 100%;
        gap: 18px;
    }

    .footer-social {
        gap: 10px;
    }

    .footer-social a svg {
        width: 36px;
        height: 36px;
    }

    .footer-links {
        font-size: 15px;
        gap: 8px;
        flex-wrap: nowrap;
        white-space: nowrap;
    }

    .copyright {
        font-size: 13px !important;
        margin-top: 5px;
    }

    section {
        padding-top: 100px;
        padding-bottom: 20px;
    }
}

/* ==================== 平滑滾動 ==================== */
html {
    scroll-behavior: smooth;
}

/* ==================== 動畫效果 ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-text,
.section-title,
.section-subtitle,
.section-conclusion,
.subsection-title,
.consult-title,
.consult-features,
.consult-description {
    animation: fadeInUp 0.8s ease-out;
}

.hero-image {
    animation: fadeInRight 1s ease-out;
}

.vs-divider {
    animation: fadeIn 1.2s ease-out;
}

.hero-actions .btn-primary,
.hero-actions .btn-video {
    animation: fadeInUp 1s ease-out;
}

.hero-actions .btn-video {
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

.badge {
    animation: fadeIn 1.2s ease-out;
    animation-fill-mode: both;
}

.badge-1 {
    animation-delay: 0.3s;
}

.badge-2 {
    animation-delay: 0.5s;
}

.badge-3 {
    animation-delay: 0.4s;
}

/* 統一的過渡效果 */
.problem-card,
.method-card,
.comparison-card,
.suitable-card,
.flip-card,
.creator-info,
.creator-image-wrapper,
.method-image-wrapper,
.method-quote,
.footer-left,
.footer-right {
    transition: all 0.3s ease;
}


/* 卡片陰影過渡 */
.problem-card,
.method-card,
.comparison-card {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.problem-card:hover,
.method-card:hover,
.comparison-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}


/* 英文版样式覆盖 - 使用 html[lang="en"] 选择器 */

/* home - Section 7 */
body.lang-en .suitable-section .suitable-list span {
    font-size: 16px !important;
    line-height: 1.4 !important;
}

body.lang-en .suitable-section .suitable-list li {
    margin-bottom: 18px !important;
}

body.lang-en .suitable-section .suitable-card h3 {
    font-size: 24px !important;
      margin-bottom: 10px !important;
}

body.lang-en  .suitable-divider1 {
    margin: 0 auto 15px !important;
}
body.lang-en  .section-subtitle {
    max-width: 1200px;

}
body.lang-en  .section-conclusion {
    max-width: 1200px;
}

body.lang-en   .flip-card-front {
    height: 70%;
}
 @media (max-width: 768px) {
      body.lang-en .problem-grid {
          grid-auto-rows: 350px !important;
      }
    body.lang-en .vs-divider {
        margin-top: -55px !important;
    }
   body.lang-en .suitable-section .suitable-list span {
    font-size: 13px !important;
    line-height: 1.2 !important;
}
   body.lang-en .suitable-section .suitable-card h3 {
    font-size: 20px !important;
      margin-bottom: 5px !important;
}
  }