/* MBTI性格测试宣传页面特定样式 */

/* 心理学符号背景 */
.psychology-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.05;
    pointer-events: none;
    overflow: hidden;
}

.psychology-symbols {
    position: absolute;
    font-size: 6rem;
    color: #D4AF37;
    white-space: nowrap;
    animation: floatHorizontal 100s linear infinite;
    top: 15%;
    left: 0;
}

.brain-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(33, 150, 243, 0.1) 0%, transparent 25%),
        radial-gradient(circle at 80% 60%, rgba(156, 39, 176, 0.1) 0%, transparent 25%),
        radial-gradient(circle at 40% 80%, rgba(76, 175, 80, 0.1) 0%, transparent 25%);
    animation: brainFloat 60s ease-in-out infinite alternate;
}

@keyframes brainFloat {
    0% {
        background-position: 0 0;
        transform: scale(1);
    }
    100% {
        background-position: 100px 50px;
        transform: scale(1.1);
    }
}

/* MBTI英雄区 */
.mbti-hero {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

.mbti-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.mbti-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 30%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.mbti-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.6;
}

.mbti-tagline {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 40px 0;
    color: rgba(212, 175, 55, 0.8);
    font-style: italic;
    font-size: 1.2rem;
}

.free-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 30px;
    box-shadow: 0 10px 20px rgba(76, 175, 80, 0.3);
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.mbti-hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mbti-wheel {
    width: 400px;
    height: 400px;
    position: relative;
    animation: rotateSlow 40s linear infinite;
}

.wheel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
}

.mbti-type {
    position: absolute;
    width: 70px;
    height: 70px;
    background: rgba(42, 11, 67, 0.9);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.mbti-type:hover {
    transform: scale(1.2);
    border-color: #D4AF37;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    z-index: 10;
}

.mbti-type.active {
    transform: scale(1.3);
    border-color: #D4AF37;
    background: rgba(212, 175, 55, 0.1);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.7);
    z-index: 20;
}

.type-code {
    font-size: 0.9rem;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 3px;
}

.type-name {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* MBTI类型位置计算 */
.mbti-type.intj { top: 10%; left: 50%; transform: translateX(-50%); }
.mbti-type.infj { top: 20%; right: 20%; }
.mbti-type.istj { top: 40%; right: 10%; }
.mbti-type.isfj { top: 60%; right: 10%; }
.mbti-type.intp { top: 75%; right: 20%; }
.mbti-type.infp { bottom: 10%; left: 50%; transform: translateX(-50%); }
.mbti-type.istp { top: 75%; left: 20%; }
.mbti-type.isfp { top: 60%; left: 10%; }
.mbti-type.entj { top: 40%; left: 10%; }
.mbti-type.enfj { top: 20%; left: 20%; }
.mbti-type.estj { top: 10%; left: 35%; }
.mbti-type.esfj { top: 10%; right: 35%; }
.mbti-type.entp { top: 30%; left: 30%; transform: translate(-50%, -50%); }
.mbti-type.enfp { top: 30%; right: 30%; transform: translate(50%, -50%); }
.mbti-type.estp { bottom: 30%; left: 30%; transform: translate(-50%, 50%); }
.mbti-type.esfp { bottom: 30%; right: 30%; transform: translate(50%, 50%); }

.wheel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #2A0B43 0%, #4A1B6D 100%);
    border-radius: 50%;
    border: 3px solid #D4AF37;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
}

.center-text {
    color: #D4AF37;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
}

/* 免费介绍 */
.free-intro {
    padding: 100px 0;
    background: rgba(42, 11, 67, 0.3);
    border-radius: 40px;
    margin: 40px 0;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #fff;
}

.intro-text p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.intro-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #4CAF50;
    font-weight: 500;
}

.feature i {
    font-size: 1.2rem;
}

.free-card {
    background: linear-gradient(135deg, rgba(42, 11, 67, 0.9) 0%, rgba(74, 27, 109, 0.9) 100%);
    border-radius: 25px;
    padding: 30px;
    border: 2px solid #4CAF50;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
}

.card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
}

.card-content {
    margin-bottom: 30px;
}

.card-feature {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    text-align: left;
}

.card-feature i {
    font-size: 1.5rem;
    color: #4CAF50;
    width: 40px;
}

.feature-text {
    flex: 1;
}

.feature-title {
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
    font-size: 1rem;
}

.feature-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.card-button {
    width: 100%;
    justify-content: center;
}

/* MBTI测试区域 */
.mbti-test {
    padding: 100px 0;
}

.test-container {
    background: rgba(42, 11, 67, 0.7);
    border-radius: 25px;
    padding: 40px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    margin-top: 50px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.test-progress {
    margin-bottom: 40px;
}

.progress-bar {
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 15px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #4CAF50, #8BC34A);
    border-radius: 5px;
    transition: width 0.3s ease;
}

.progress-text {
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.current-question {
    color: #4CAF50;
    font-weight: 700;
}

.test-question {
    margin-bottom: 40px;
}

.question-number {
    color: #D4AF37;
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.test-question h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.5;
}

.question-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.option {
    position: relative;
}

.option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.option label {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.option label:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
}

.option input[type="radio"]:checked + label {
    background: rgba(76, 175, 80, 0.1);
    border-color: #4CAF50;
}

.option-letter {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4AF37;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.option input[type="radio"]:checked + label .option-letter {
    background: #4CAF50;
    color: white;
}

.option-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.5;
    flex: 1;
}

.test-navigation {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.test-navigation .btn {
    min-width: 150px;
    justify-content: center;
}

.test-tips {
    display: flex;
    gap: 20px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    padding: 25px;
    border-left: 4px solid #D4AF37;
}

.tip-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #D4AF37;
    flex-shrink: 0;
}

.tip-content h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #fff;
}

.tip-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.test-benefits {
    margin-top: 80px;
    text-align: center;
}

.test-benefits h3 {
    font-size: 1.8rem;
    margin-bottom: 50px;
    color: #fff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit {
    background: rgba(42, 11, 67, 0.7);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.benefit:hover {
    transform: translateY(-10px);
    border-color: #D4AF37;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2A0B43 0%, #4A1B6D 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.8rem;
    color: #D4AF37;
}

.benefit h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #fff;
}

.benefit p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* 16种人格类型 */
.mbti-types {
    padding: 100px 0;
    background: rgba(42, 11, 67, 0.3);
    border-radius: 40px;
    margin: 40px 0;
}

.types-filter {
    margin: 40px 0 50px;
    display: flex;
    justify-content: center;
}

.filter-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 12px 25px;
    background: rgba(42, 11, 67, 0.7);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    color: #D4AF37;
}

.filter-btn.active {
    background: #D4AF37;
    color: #2A0B43;
    border-color: #D4AF37;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.type-card {
    background: rgba(42, 11, 67, 0.7);
    border-radius: 20px;
    padding: 25px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
}

.type-card.analyst::before { background: linear-gradient(90deg, #2196F3, #03A9F4); }
.type-card.diplomat::before { background: linear-gradient(90deg, #9C27B0, #E91E63); }
.type-card.sentinel::before { background: linear-gradient(90deg, #4CAF50, #8BC34A); }
.type-card.explorer::before { background: linear-gradient(90deg, #FF9800, #FFC107); }

.type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.type-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.type-code {
    font-size: 1.5rem;
    font-weight: 700;
    color: #D4AF37;
}

.type-category {
    font-size: 0.8rem;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 500;
}

.type-card.analyst .type-category { background: rgba(33, 150, 243, 0.2); color: #2196F3; }
.type-card.diplomat .type-category { background: rgba(156, 39, 176, 0.2); color: #9C27B0; }
.type-card.sentinel .type-category { background: rgba(76, 175, 80, 0.2); color: #4CAF50; }
.type-card.explorer .type-category { background: rgba(255, 152, 0, 0.2); color: #FF9800; }

.type-name {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #fff;
}

.type-desc {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.type-stats {
    display: flex;
    gap: 25px;
    margin-bottom: 20px;
}

.stat {
    text-align: center;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 5px;
}

.stat-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
}

.type-traits {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.trait {
    background: rgba(212, 175, 55, 0.1);
    color: #D4AF37;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.type-details {
    color: #D4AF37;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.type-card:hover .type-details {
    gap: 12px;
}

.types-cta {
    text-align: center;
    padding: 40px;
    background: rgba(42, 11, 67, 0.7);
    border-radius: 20px;
    border: 2px dashed rgba(212, 175, 55, 0.5);
}

.types-cta p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

.types-cta .btn {
    min-width: 300px;
    justify-content: center;
}

/* MBTI维度解析 */
.mbti-dimensions {
    padding: 100px 0;
}

.dimensions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.dimension-card {
    background: rgba(42, 11, 67, 0.7);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.dimension-card:hover {
    transform: translateY(-10px);
    border-color: #D4AF37;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.dimension-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
    position: relative;
    font-size: 2rem;
    font-weight: 700;
}

.dimension-icon.ei {
    background: linear-gradient(135deg, #FF5722 0%, #FF9800 100%);
}
.dimension-icon.sn {
    background: linear-gradient(135deg, #2196F3 0%, #03A9F4 100%);
}
.dimension-icon.tf {
    background: linear-gradient(135deg, #9C27B0 0%, #E91E63 100%);
}
.dimension-icon.jp {
    background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
}

.icon-letter {
    position: absolute;
    color: white;
}

.icon-letter:first-child {
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
}

.icon-letter:last-child {
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
}

.dimension-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #fff;
}

.dimension-types {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.type-item {
    text-align: left;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.type-label {
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.type-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.4;
}

.dimension-card p {
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* 测试价值 */
.test-value {
    padding: 100px 0;
    background: rgba(42, 11, 67, 0.3);
    border-radius: 40px;
    margin: 40px 0;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: rgba(42, 11, 67, 0.7);
    border-radius: 20px;
    padding: 35px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: #D4AF37;
    background: rgba(42, 11, 67, 0.9);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2A0B43 0%, #4A1B6D 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: #D4AF37;
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #fff;
}

.value-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

.value-list {
    list-style: none;
    padding-left: 0;
}

.value-list li {
    color: rgba(212, 175, 55, 0.9);
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
}

.value-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #D4AF37;
    font-size: 1.5rem;
}

/* 用户见证 */
.mbti-testimonials {
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: rgba(42, 11, 67, 0.7);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
}

.testimonial-content {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 25px;
    position: relative;
    padding-left: 25px;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 4rem;
    color: rgba(212, 175, 55, 0.3);
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2A0B43 0%, #4A1B6D 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4AF37;
    font-weight: 600;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #fff;
}

.author-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.author-rating {
    color: #D4AF37;
    font-size: 0.9rem;
}

.testimonial-free {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 15px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: #4CAF50;
    font-weight: 500;
}

/* FAQ常见问题 */
.mbti-faq {
    padding: 100px 0;
    background: rgba(42, 11, 67, 0.3);
    border-radius: 40px;
    margin: 40px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.faq-item {
    background: rgba(42, 11, 67, 0.7);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(212, 175, 55, 0.05);
}

.faq-question h3 {
    font-size: 1.1rem;
    color: #fff;
    margin: 0;
}

.faq-question i {
    color: #D4AF37;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 30px;
    max-height: 500px;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* CTA区域 */
.mbti-cta {
    padding: 100px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.3;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.2rem;
}

.cta-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.cta-features .feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.cta-features .feature i {
    font-size: 2.5rem;
    color: #4CAF50;
}

.cta-features .feature span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .mbti-title {
        font-size: 3.5rem;
    }
    
    .mbti-wheel {
        width: 350px;
        height: 350px;
    }
}

@media (max-width: 992px) {
    .mbti-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }
    
    .mbti-tagline {
        justify-content: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .intro-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .types-grid,
    .dimensions-grid,
    .value-grid,
    .testimonials-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .types-cta .btn {
        min-width: auto;
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .mbti-title {
        font-size: 2.8rem;
    }
    
    .mbti-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .mbti-hero-visual {
        height: 400px;
    }
    
    .mbti-wheel {
        width: 300px;
        height: 300px;
    }
    
    .mbti-type {
        width: 60px;
        height: 60px;
    }
    
    .type-code {
        font-size: 0.8rem;
    }
    
    .type-name {
        font-size: 0.6rem;
    }
    
    .intro-features {
        grid-template-columns: 1fr;
    }
    
    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .test-navigation {
        flex-direction: column;
        gap: 15px;
    }
    
    .test-navigation .btn {
        width: 100%;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .cta-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .mbti-title {
        font-size: 2.2rem;
    }
    
    .mbti-subtitle {
        font-size: 1.1rem;
    }
    
    .mbti-hero-visual {
        height: 350px;
    }
    
    .mbti-wheel {
        width: 280px;
        height: 280px;
    }
    
    .test-container {
        padding: 25px;
    }
    
    .option label {
        padding: 15px;
    }
    
    .option-text {
        font-size: 1rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
}