.tp-banner {
    position: relative;
    width: 100%;
    margin-top: 80px;
}

.tp-banner>img {
    width: 100%;
    height: auto;
    display: block;
}

.tp-banner-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    color: var(--color-text-primary);
}

.tp-banner-title {
    font-size: 72px;
    font-weight: 700;
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.tp-banner-subtitle {
    font-size: 44px;
    margin-bottom: var(--space-lg);
    color: var(--color-text-secondary);
    font-weight: 500;
}

.tp-banner-desc {
    font-size: var(--text-xl);
    opacity: 0.6;
}

.tp-solution {
    background: var(--color-white);
    padding: var(--space-5xl) 0;
}

.tp-solution .section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.tp-solution .section-header::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #6d7280;
    border-radius: 100px;
    margin: var(--space-lg) auto 0;
}

.tp-solution-content {
    max-width: 1200px;
    margin: 0 auto var(--space-3xl);
}

.tp-solution-text {
    font-size: var(--text-base);
    line-height: 2;
    color: var(--color-text-secondary);
    text-align: justify;
    margin-bottom: var(--space-lg);
}

.tp-solution-text:last-child {
    margin-bottom: 0;
}

.tp-solution-image {
    display: flex;
    justify-content: center;
}

.tp-solution-image img {
    max-width: 100%;
    height: auto;
}

.tp-modules {
    background: var(--color-purple);
    padding: var(--space-5xl) 0;
}

.tp-modules .section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.tp-modules .section-header::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #6d7280;
    border-radius: 100px;
    margin: var(--space-lg) auto 0;
}

.tp-modules-carousel {
    position: relative;
    padding: 0 60px;
}

.tp-modules-swiper {
    overflow: hidden;
}

.tp-modules-swiper .swiper-slide {
    height: auto;
}

.tp-modules-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 420px));
    gap: var(--space-lg);
    justify-content: center;
}

.tp-modules-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.tp-module-card {
    background: linear-gradient(180deg, #effaff, #feffff 100%);
    border: 3px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    box-shadow: 0px 8px 24px 0px rgba(43, 89, 193, 0.08);
    padding: var(--space-xl);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tp-module-icon {
    width: 60px;
    height: 60px;
    margin-bottom: var(--space-md);
    flex-shrink: 0;
}

.tp-module-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tp-module-title {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: var(--space-sm);
}

.tp-module-desc {
    font-size: var(--text-sm);
    line-height: 1.8;
    color: var(--color-text-secondary);
}

.tp-modules-prev,
.tp-modules-next {
    position: absolute;
    top: 50%;
    width: 40px;
    height: 40px;
    color: var(--color-primary);
    z-index: 10;
}

.tp-modules-prev {
    left: 10px;
}

.tp-modules-next {
    right: 10px;
}

.tp-modules-prev::after,
.tp-modules-next::after {
    font-size: 24px;
}

.tp-modules-prev:hover,
.tp-modules-next:hover {
    color: var(--color-secondary);
}

.tp-advantages {
    background: var(--color-white);
    padding: var(--space-5xl) 0;
}

.tp-advantages .section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.tp-advantages .section-header::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #6d7280;
    border-radius: 100px;
    margin: var(--space-lg) auto 0;
}

.tp-advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.tp-advantage-card {
    background: rgba(255, 255, 255, 0.50);
    border: 3px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    box-shadow: 0px 8px 24px 0px rgba(43, 89, 193, 0.08);
    backdrop-filter: blur(20px);
    padding: var(--space-xl);
    display: flex;
    align-items: flex-start;
    gap: var(--space-lg);
}

.tp-advantage-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0px 4px 4px 0px rgba(51, 142, 106, 0.20);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tp-advantage-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.tp-advantage-content {
    flex: 1;
}

.tp-advantage-title {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: var(--space-sm);
}

.tp-advantage-desc {
    font-size: var(--text-sm);
    line-height: 1.8;
    color: var(--color-text-secondary);
}