/* 二代传承页面专属样式 */

/* 传承横幅 */
.succession-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1547981609-4b6bfe67ca0b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 70vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding-top: 80px;
}

.succession-hero h1 {
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.succession-hero .subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-quote {
    max-width: 800px;
    margin: 0 auto;
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.8;
}

.hero-quote span {
    display: block;
    margin-top: 1rem;
    font-size: 1rem;
    opacity: 0.8;
}

/* 传承愿景 */
.vision-section {
    padding: 5rem 0;
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.vision-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.05) 0%, rgba(184, 134, 11, 0.1) 100%);
    z-index: 0;
}

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

.vision-section h2 {
    text-align: center;
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 600;
    position: relative;
}

.vision-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
    font-size: 1.3rem;
    color: #444;
    line-height: 1.8;
    position: relative;
}

.vision-intro p {
    margin-bottom: 1.5rem;
}

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

.vision-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(184, 134, 11, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
}

.vision-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vision-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: var(--secondary-color);
}

.vision-card:hover:before {
    opacity: 1;
}

.vision-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.3);
    transition: transform 0.3s ease;
}

.vision-card:hover .vision-icon {
    transform: scale(1.1);
}

.vision-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.vision-card h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.vision-card p {
    color: #666;
    line-height: 1.8;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.vision-details {
    text-align: left;
    margin-top: 2rem;
}

.vision-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vision-details ul li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #555;
    font-size: 1.1rem;
    padding-left: 1.5rem;
    position: relative;
}

.vision-details ul li i {
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* 传承体系 */
.system-section {
    padding: 5rem 0;
    background: var(--light-bg);
    position: relative;
}

.system-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.05) 0%, rgba(184, 134, 11, 0.1) 100%);
    z-index: 0;
}

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

.system-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
    font-size: 1.3rem;
    color: #444;
    line-height: 1.8;
}

.system-timeline {
    max-width: 1000px;
    margin: 3rem auto 0;
    position: relative;
}

.system-timeline:before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: var(--gold-gradient);
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 50%;
    position: relative;
    margin-bottom: 4rem;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 50%;
}

.timeline-date {
    position: absolute;
    right: calc(50% - 40px);
    background: var(--gold-gradient);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.2);
    z-index: 1;
}

.timeline-item:nth-child(even) .timeline-date {
    right: auto;
    left: calc(50% - 40px);
}

.timeline-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    width: 90%;
    position: relative;
    transition: all 0.4s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.timeline-icon {
    position: absolute;
    top: -25px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
    z-index: 1;
}

.timeline-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.timeline-content h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    padding-left: 80px;
    font-weight: 600;
}

.timeline-details {
    margin-top: 2rem;
}

.timeline-details h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1rem;
    font-weight: 600;
}

.timeline-details h4:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

.timeline-details ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.timeline-details ul li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: #555;
    font-size: 1.1rem;
    padding-left: 1.5rem;
    position: relative;
}

.timeline-details ul li:before {
    content: "•";
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.timeline-achievements {
    background: rgba(184, 134, 11, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.timeline-achievements h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.timeline-progress {
    margin-top: 2rem;
}

.progress-bar {
    height: 6px;
    background: rgba(184, 134, 11, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: var(--gold-gradient);
    border-radius: 3px;
    transition: width 0.5s ease;
}

.system-connection {
    text-align: center;
    max-width: 800px;
    margin: 4rem auto 0;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.system-connection h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.system-connection p {
    color: #666;
    line-height: 1.8;
    font-size: 1.2rem;
}

/* 课程项目 */
.programs-section {
    padding: 5rem 0;
    background: var(--light-bg);
    position: relative;
}

.programs-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.05) 0%, rgba(184, 134, 11, 0.1) 100%);
    z-index: 0;
}

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

.programs-section h2 {
    text-align: center;
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 600;
}

.programs-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
    font-size: 1.3rem;
    color: #444;
    line-height: 1.8;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.program-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.program-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.program-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.program-image:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.4));
    z-index: 1;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.program-card:hover .program-image img {
    transform: scale(1.1);
}

.program-content {
    padding: 3rem 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--white);
}

.program-content h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.program-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.program-highlights {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(184, 134, 11, 0.05);
    border-radius: 10px;
}

.program-highlights h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.program-highlights ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.program-highlights ul li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: #555;
    font-size: 1.1rem;
}

.program-highlights ul li i {
    color: var(--secondary-color);
    margin-right: 0.8rem;
    font-size: 1.1rem;
}

.program-details {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    border-top: 1px solid rgba(184, 134, 11, 0.1);
    padding-top: 1.5rem;
}

.program-details li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #555;
    font-size: 1.1rem;
}

.program-details li i {
    color: var(--secondary-color);
    margin-right: 1rem;
    font-size: 1.2rem;
}

.program-value {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(184, 134, 11, 0.05);
    border-radius: 10px;
}

.program-value h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.program-value p {
    color: #555;
    line-height: 1.6;
    font-size: 1.1rem;
    margin: 0;
}

.program-cta {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: var(--gold-gradient);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
    margin-top: auto;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

.program-cta:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.program-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(184, 134, 11, 0.3);
}

.program-cta:hover:before {
    left: 100%;
}

/* 导师团队 */
.mentors-section {
    padding: 5rem 0;
    background: var(--light-bg);
    position: relative;
}

.mentors-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.05) 0%, rgba(184, 134, 11, 0.1) 100%);
    z-index: 0;
}

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

.mentors-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
    font-size: 1.3rem;
    color: #444;
    line-height: 1.8;
}

.mentors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.mentor-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mentor-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.mentor-image {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.mentor-image:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.4));
    z-index: 1;
}

.mentor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.mentor-card:hover .mentor-image img {
    transform: scale(1.1);
}

.mentor-content {
    padding: 3rem 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: var(--white);
}

.mentor-content h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.mentor-title {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.mentor-bio {
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.mentor-expertise {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(184, 134, 11, 0.05);
    border-radius: 10px;
}

.mentor-expertise h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.mentor-expertise ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mentor-expertise ul li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: #555;
    font-size: 1.1rem;
    padding-left: 1.5rem;
    position: relative;
}

.mentor-expertise ul li:before {
    content: "•";
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.mentor-details {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    border-top: 1px solid rgba(184, 134, 11, 0.1);
    padding-top: 1.5rem;
}

.mentor-details li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #555;
    font-size: 1.1rem;
}

.mentor-details li i {
    color: var(--secondary-color);
    margin-right: 1rem;
    font-size: 1.2rem;
}

.mentor-publications,
.mentor-achievements,
.mentor-projects {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(184, 134, 11, 0.05);
    border-radius: 10px;
}

.mentor-publications h4,
.mentor-achievements h4,
.mentor-projects h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.mentor-publications ul,
.mentor-achievements ul,
.mentor-projects ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mentor-publications ul li,
.mentor-achievements ul li,
.mentor-projects ul li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: #555;
    font-size: 1.1rem;
    padding-left: 1.5rem;
    position: relative;
}

.mentor-publications ul li:before,
.mentor-achievements ul li:before,
.mentor-projects ul li:before {
    content: "•";
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.mentors-interaction {
    text-align: center;
    max-width: 800px;
    margin: 4rem auto 0;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.mentors-interaction h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.mentors-interaction p {
    color: #666;
    line-height: 1.8;
    font-size: 1.2rem;
}

/* 加入我们 */
.join-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

.join-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.join-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.join-info {
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.join-info h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.join-info ul {
    list-style: none;
    margin-bottom: 2rem;
}

.join-info ul li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #666;
}

.join-info ul li i {
    color: var(--secondary-color);
    margin-right: 0.5rem;
}

.join-price {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 5px;
}

.join-price .price {
    display: block;
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.join-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.join-form input,
.join-form select,
.join-form textarea {
    padding: 1rem;
    border: 1px solid rgba(184, 134, 11, 0.2);
    border-radius: 5px;
    font-size: 1rem;
}

.join-form textarea {
    height: 150px;
    resize: vertical;
}

.join-form input:focus,
.join-form select:focus,
.join-form textarea:focus {
    border-color: var(--secondary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(184, 134, 11, 0.1);
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .vision-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .vision-card,
    .program-card {
        padding: 2.5rem 2rem;
    }
    
    .mentors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .timeline-content {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .succession-hero h1 {
        font-size: 2.5rem;
    }
    
    .succession-hero .subtitle {
        font-size: 1.2rem;
    }
    
    .vision-section h2,
    .programs-section h2 {
        font-size: 2.2rem;
    }
    
    .vision-intro,
    .programs-intro {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }
    
    .vision-grid,
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .vision-card,
    .program-card {
        padding: 2rem;
    }
    
    .program-image {
        height: 220px;
    }
    
    .program-content h3 {
        font-size: 1.8rem;
    }
    
    .vision-icon {
        width: 80px;
        height: 80px;
    }
    
    .vision-icon i {
        font-size: 2rem;
    }
    
    .join-content {
        grid-template-columns: 1fr;
    }
    
    .system-timeline:before {
        left: 30px;
    }
    
    .timeline-item {
        padding-right: 0;
        padding-left: 70px;
    }
    
    .timeline-item:nth-child(even) {
        padding-left: 70px;
    }
    
    .timeline-date {
        left: 0;
        right: auto;
    }
    
    .timeline-content {
        width: 100%;
        padding: 2rem;
    }
    
    .timeline-icon {
        left: 20px;
    }
    
    .timeline-content h3 {
        padding-left: 70px;
    }
    
    .mentors-grid {
        grid-template-columns: 1fr;
    }
    
    .mentor-image {
        height: 250px;
    }
    
    .mentor-content {
        padding: 2rem;
    }
    
    .mentor-content h3 {
        font-size: 1.8rem;
    }
}

/* 成长路径 */
.growth-path-section {
    padding: 5rem 0;
    background: var(--light-bg);
    position: relative;
}

.growth-path-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.05) 0%, rgba(184, 134, 11, 0.1) 100%);
    z-index: 0;
}

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

.growth-path-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
    font-size: 1.3rem;
    color: #444;
    line-height: 1.8;
}

.growth-path-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin: 3rem auto;
    max-width: 1200px;
}

.growth-path-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.growth-path-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.growth-path-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.growth-path-card:hover:before {
    opacity: 1;
}

.growth-path-icon {
    width: 80px;
    height: 80px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.3);
    transition: transform 0.3s ease;
}

.growth-path-card:hover .growth-path-icon {
    transform: scale(1.1);
}

.growth-path-icon i {
    font-size: 2rem;
    color: var(--white);
}

.growth-path-content h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.growth-path-period {
    display: inline-block;
    background: var(--gold-gradient);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 1rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.2);
}

.growth-path-details {
    margin-top: 2rem;
}

.growth-path-milestone,
.growth-path-achievement {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(184, 134, 11, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.growth-path-milestone:hover,
.growth-path-achievement:hover {
    background: rgba(184, 134, 11, 0.08);
    transform: translateX(5px);
}

.growth-path-milestone h4,
.growth-path-achievement h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1rem;
    font-weight: 600;
}

.growth-path-milestone h4:before,
.growth-path-achievement h4:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

.growth-path-milestone ul,
.growth-path-achievement ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.growth-path-milestone ul li,
.growth-path-achievement ul li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: #555;
    font-size: 1.1rem;
    padding-left: 1.5rem;
    position: relative;
}

.growth-path-milestone ul li:before,
.growth-path-achievement ul li:before {
    content: "•";
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.growth-path-summary {
    text-align: center;
    max-width: 1000px;
    margin: 4rem auto 0;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.growth-path-summary h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

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

.summary-item {
    padding: 2rem;
    background: rgba(184, 134, 11, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.summary-item:hover {
    transform: translateY(-5px);
    background: rgba(184, 134, 11, 0.08);
}

.summary-item i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.summary-item h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.summary-item p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .growth-path-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .growth-path-card {
        padding: 2.5rem;
    }
    
    .summary-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .growth-path-card {
        padding: 2rem;
    }
    
    .growth-path-icon {
        width: 60px;
        height: 60px;
    }
    
    .growth-path-icon i {
        font-size: 1.5rem;
    }
    
    .growth-path-content h3 {
        font-size: 1.8rem;
    }
    
    .summary-grid {
        grid-template-columns: 1fr;
    }
    
    .summary-item {
        padding: 1.5rem;
    }
} 