/* 价格页面专用样式 - pricing.html */

/* 页面头部 */
.page-header {
    background: linear-gradient(135deg, #f5f7fa 0%, #e6f7ff 100%);
    color: var(--dark);
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-header-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.header-text {
    flex: 1;
    text-align: left;
}

.pricing-preview {
    flex: 1;
    display: flex;
    justify-content: center;
}

.header-text h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--dark);
}

.header-text p {
    font-size: 1.3rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 40px;
}

/* 全新3D价格展示样式 */
.pricing-showcase {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pricing-visual {
    width: 100%;
    max-width: 450px;
    height: 400px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

/* 现代价格卡片 */
.price-display {
    position: relative;
    z-index: 3;
}

.price-card-modern {
    width: 280px;
    height: 200px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 24px;
    padding: 24px;
    position: relative;
    box-shadow: 
        0 25px 50px rgba(79, 70, 229, 0.15),
        0 8px 16px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    animation: cardFloat 6s ease-in-out infinite;
    overflow: hidden;
}

.price-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary);
    background-size: 200% 100%;
    animation: gradientSlide 3s ease-in-out infinite;
}

.price-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.price-badge {
    background: var(--primary);
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-decoration {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.deco-line {
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
    animation: lineGlow 2s ease-in-out infinite;
}

.line-1 { width: 30px; animation-delay: 0s; }
.line-2 { width: 20px; animation-delay: 0.3s; }
.line-3 { width: 25px; animation-delay: 0.6s; }

.price-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
}

.currency-symbol {
    font-size: 24px;
    font-weight: 600;
    color: #64748b;
    margin-right: 4px;
    align-self: flex-start;
    margin-top: 8px;
}

.price-number {
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
    background: var(--primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.price-suffix {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 8px;
    position: relative;
}

.period {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
    margin-bottom: 4px;
}

.price-accent {
    width: 20px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    animation: accentPulse 2s ease-in-out infinite;
}

.price-features {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.feature-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e2e8f0;
    transition: all 0.3s ease;
}

.feature-dot.active {
    background: var(--primary);
    box-shadow: 0 0 8px rgba(79, 70, 229, 0.4);
    animation: dotPulse 2s ease-in-out infinite;
}

.feature-dot:nth-child(1) { animation-delay: 0s; }
.feature-dot:nth-child(2) { animation-delay: 0.2s; }
.feature-dot:nth-child(3) { animation-delay: 0.4s; }

/* 功能亮点 */
.feature-highlights {
    display: flex;
    gap: 20px;
    z-index: 2;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 80px;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.highlight-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.highlight-item span {
    font-size: 12px;
    font-weight: 600;
    color: #1e293b;
    text-align: center;
}

/* 用户评价 */
.user-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.95);
    padding: 16px 24px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.rating-stars {
    display: flex;
    gap: 2px;
}

.rating-stars i {
    color: #fbbf24;
    font-size: 16px;
}

.rating-text {
    display: flex;
    align-items: center;
    gap: 4px;
}

.rating-score {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
}

.rating-count {
    font-size: 12px;
    color: #64748b;
}

/* 背景装饰 */
.visual-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.bg-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.08), rgba(124, 58, 237, 0.08));
    animation: elementFloat 10s ease-in-out infinite;
}

.element-1 {
    width: 120px;
    height: 120px;
    top: 20px;
    right: 30px;
    animation-delay: 0s;
}

.element-2 {
    width: 80px;
    height: 80px;
    bottom: 40px;
    left: 20px;
    animation-delay: 3s;
}

.element-3 {
    width: 60px;
    height: 60px;
    top: 50%;
    left: 10px;
    animation-delay: 6s;
}

/* 动画效果 */
@keyframes cardFloat {
    0%, 100% {
        transform: translateY(0) rotateY(0deg);
    }
    50% {
        transform: translateY(-8px) rotateY(2deg);
    }
}

@keyframes gradientSlide {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes lineGlow {
    0%, 100% {
        opacity: 0.3;
        transform: scaleX(0.8);
    }
    50% {
        opacity: 1;
        transform: scaleX(1);
    }
}

@keyframes accentPulse {
    0%, 100% {
        opacity: 0.6;
        transform: scaleX(1);
    }
    50% {
        opacity: 1;
        transform: scaleX(1.2);
    }
}

@keyframes dotPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

@keyframes elementFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) scale(1.1);
        opacity: 0.6;
    }
}

/* 自定义 AOS 动画 */
[data-aos="slide-up"] {
    transform: translateY(30px);
    opacity: 0;
}

[data-aos="slide-up"].aos-animate {
    transform: translateY(0);
    opacity: 1;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* 旧的定价仪表板样式 - 保留以防需要 */
.pricing-dashboard {
    width: 100%;
    max-width: 500px;
    height: 400px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.price-comparison {
    display: flex;
    gap: 16px;
    flex: 1;
}

.plan-card {
    flex: 1;
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.plan-card.vip-plan {
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

.plan-card.vip-plan:hover {
    transform: scale(1.05) translateY(-5px);
}

.plan-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.plan-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 18px;
}

.plan-icon.premium {
    background: linear-gradient(135deg, var(--primary), #7c3aed);
    color: white;
}

.plan-info {
    flex: 1;
}

.plan-name {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
}

.plan-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Arial', sans-serif;
}

.period {
    font-size: 12px;
    font-weight: 400;
    color: #64748b;
}

.plan-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #475569;
}

.feature-item i {
    color: #10b981;
    font-size: 10px;
}

.popular-badge {
    position: absolute;
    top: -8px;
    right: 16px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    font-size: 10px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-stats {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.stat-item {
    text-align: center;
    background: white;
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
    min-width: 100px;
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 11px;
    color: #64748b;
    font-weight: 500;
}

.pricing-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
}

.bg-coin {
    position: absolute;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 152, 0, 0.1));
    border-radius: 50%;
    animation: coinFloat 6s ease-in-out infinite;
}

.coin-1 {
    top: 30px;
    right: 20px;
    animation-delay: 0s;
}

.coin-2 {
    bottom: 40px;
    left: 30px;
    animation-delay: 3s;
}

.bg-chart {
    position: absolute;
    bottom: 20px;
    right: 30px;
    width: 60px;
    height: 40px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(124, 58, 237, 0.1));
    border-radius: 8px;
    animation: chartFloat 8s ease-in-out infinite;
    animation-delay: 1.5s;
}

@keyframes coinFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-15px) rotate(180deg);
        opacity: 0.6;
    }
}

@keyframes chartFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-10px) scale(1.1);
        opacity: 0.7;
    }
}

/* 自定义 AOS 动画 */
[data-aos="slide-right"] {
    transform: translateX(-50px);
    opacity: 0;
}

[data-aos="slide-right"].aos-animate {
    transform: translateX(0);
    opacity: 1;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos="slide-left"] {
    transform: translateX(50px);
    opacity: 0;
}

[data-aos="slide-left"].aos-animate {
    transform: translateX(0);
    opacity: 1;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* 价格方案切换 */
.billing-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    background: white;
    border-radius: 50px;
    padding: 8px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.billing-option {
    padding: 12px 35px;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 50px;
    overflow: visible !important; /* 确保溢出可见 */
}

/* 为波纹容器添加特定样式 */
.billing-option > div {
    border-radius: 50px !important; /* 确保波纹容器有圆角 */
}

.billing-option.active {
    color: white;
    background: var(--primary);
    box-shadow: 0 5px 15px rgba(24, 144, 255, 0.3);
}

.savings-badge {
    display: inline-block;
    background: #f5222d;
    color: white;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 8px;
    vertical-align: super;
}

/* 价格方案卡片 */
.pricing-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 50px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(24, 144, 255, 0.15);
}

.pricing-card.featured:before {
    content: '最受欢迎';
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--primary);
    color: white;
    padding: 6px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.plan-name {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--dark);
    font-weight: 600;
}

.plan-description {
    color: var(--gray);
    margin-bottom: 25px;
    line-height: 1.6;
}

.plan-price {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    transition: opacity 0.3s ease;
}

.monthly-price {
    opacity: 1;
}

.yearly-price {
    opacity: 0;
}

.plan-price span {
    font-size: 1.2rem;
    color: var(--gray);
    font-weight: 500;
}

.billing-note {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.plan-features {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.plan-features li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    color: var(--gray);
    display: flex;
    align-items: center;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li i {
    margin-right: 10px;
    color: var(--primary);
}

/* 功能比较表格 */
.comparison-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e6f7ff 100%);
    position: relative;
    overflow: hidden;
}


.comparison-table {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
}

.table-header {
    display: grid;
    grid-template-columns: 1fr repeat(2, 250px);
    background: var(--primary);
    color: white;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.table-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
}

.table-header > div {
    padding: 20px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.table-header > div:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.table-header > div:last-child {
    border-right: none;
}

.feature-category {
    background: #f8f9fa;
    font-weight: 600;
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.feature-category::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background: var(--primary);
    transition: width 0.5s ease;
}

.feature-category:hover::after {
    width: 100%;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr repeat(2, 250px);
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.feature-row.hover {
    background-color: rgba(24, 144, 255, 0.05);
    transform: translateX(5px);
}

.feature-row:last-child {
    border-bottom: none;
}

.feature-name {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
    border-right: 1px solid #f0f0f0;
}

.feature-value {
    padding: 15px 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
}


.feature-value:last-child {
    border-right: none;
}

.feature-value i {
    color: var(--primary);
    font-size: 1.2rem;
}

.feature-value .not-included {
    color: var(--gray);
    opacity: 0.5;
}

/* 常见问题 */
.faq-section {
    background: white;
}

/* 响应式设计 */
@media (max-width: 992px) {

    .table-header {
        display: grid;
        grid-template-columns: 1fr repeat(2, 100px);
    }
    .feature-row {
        display: grid;
        grid-template-columns: 1fr repeat(2, 100px);
    }
    .page-header h1 {
        font-size: 2.8rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
    
    .billing-options {
        flex-direction: column;
        gap: 5px;
        border-radius: 12px;
    }
    
    .billing-option {
        border-radius: 8px;
        min-width: auto;
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 12px 15px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 150px 0 80px;
    }
    
    .page-header-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .header-text {
        text-align: center;
    }
    
    .header-text h1 {
        font-size: 2.5rem;
    }
    
    .header-text p {
        font-size: 1.1rem;
    }

    .pricing-visual {
        max-width: 380px;
        height: 350px;
        gap: 25px;
    }

    .price-card-modern {
        width: 240px;
        height: 180px;
        padding: 20px;
    }

    .price-number {
        font-size: 44px;
    }

    .currency-symbol {
        font-size: 20px;
        margin-top: 6px;
    }

    .period {
        font-size: 12px;
    }

    .price-badge {
        font-size: 10px;
        padding: 5px 10px;
    }

    .feature-highlights {
        gap: 16px;
    }

    .highlight-item {
        padding: 12px;
        min-width: 70px;
    }

    .highlight-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .highlight-item span {
        font-size: 11px;
    }

    .user-rating {
        padding: 12px 20px;
        gap: 10px;
    }

    .rating-stars i {
        font-size: 14px;
    }

    .rating-score {
        font-size: 14px;
    }

    .rating-count {
        font-size: 11px;
    }

    .element-1 {
        width: 100px;
        height: 100px;
    }

    .element-2 {
        width: 70px;
        height: 70px;
    }

    .element-3 {
        width: 50px;
        height: 50px;
    }
    
    .page-header-btns {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .price-card-float {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .features-badge {
        position: static;
        margin-top: 20px;
    }
    
    .comparison-table {
        font-size: 0.8rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 10px 12px;
    }
}

@media (max-width: 576px) {
    section {
        padding: 80px 0;
    }

    .pricing-visual {
        max-width: 300px;
        height: 300px;
        gap: 20px;
    }

    .price-card-modern {
        width: 220px;
        height: 160px;
        padding: 18px;
    }

    .price-number {
        font-size: 38px;
    }

    .currency-symbol {
        font-size: 18px;
        margin-top: 5px;
    }

    .period {
        font-size: 11px;
    }

    .price-badge {
        font-size: 9px;
        padding: 4px 8px;
    }

    .price-header {
        margin-bottom: 16px;
    }

    .price-main {
        margin-bottom: 16px;
    }

    .feature-highlights {
        gap: 12px;
    }

    .highlight-item {
        padding: 10px;
        min-width: 60px;
    }

    .highlight-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .highlight-item span {
        font-size: 10px;
    }

    .user-rating {
        padding: 10px 16px;
        gap: 8px;
    }

    .rating-stars i {
        font-size: 12px;
    }

    .rating-score {
        font-size: 13px;
    }

    .rating-count {
        font-size: 10px;
    }

    .element-1 {
        width: 80px;
        height: 80px;
    }

    .element-2 {
        width: 60px;
        height: 60px;
    }

    .element-3 {
        width: 40px;
        height: 40px;
    }

    /* 移动端AOS动画优化 */
    [data-aos="slide-up"] {
        transform: translateY(20px);
    }
    
    .header-text h1 {
        font-size: 2.2rem;
    }
    
    .pricing-card {
        padding: 25px 15px;
    }
    
    .monthly-price,
    .yearly-price {
        font-size: 2.8rem;
    }
    
    .billing-toggle-container h3 {
        font-size: 1.3rem;
    }
    
    .comparison-table {
        font-size: 0.75rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 8px 10px;
    }
}
