.invoicing-hero .hero-subtitle {
    color: #1e293b;
    font-size: 1.15rem;
    opacity: 1;
    line-height: 1.6;
    font-weight: 500;
}

.dark .invoicing-hero .hero-subtitle {
    color: #f3f4f6;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-500);
}

.pricing-card.featured {
    border-color: var(--primary-600);
    box-shadow: var(--shadow-lg);
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: "Most Popular";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
    color: white;
    padding: 0.4rem 1.5rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.pricing-header h3 {
    font-size: 1.75rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.pricing-header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.pricing-amount {
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.pricing-amount .price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-600);
    line-height: 1;
}

.dark .pricing-amount .price {
    color: var(--primary-400);
}

.pricing-amount .currency {
    font-size: 1.5rem;
    vertical-align: super;
}

.pricing-amount .period {
    color: var(--text-secondary);
    font-size: 1rem;
    display: block;
    margin-top: 0.5rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--text-primary);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.pricing-features li::before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.pricing-card .btn {
    width: 100%;
    margin-top: 1rem;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-700), var(--primary-800));
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--bg-secondary);
    border-color: var(--primary-500);
}

.comparison-section {
    margin-top: 4rem;
    padding: 3rem 0;
    background: var(--bg-secondary);
    border-radius: var(--radius-xl);
}

.comparison-table {
    width: 100%;
    max-width: 1000px;
    margin: 2rem auto;
    border-collapse: collapse;
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comparison-table th,
.comparison-table td {
    padding: 1rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background: var(--primary-600);
    color: white;
    font-weight: 600;
    text-align: center;
}

.dark .comparison-table th {
    background: var(--primary-700);
}

.comparison-table td:first-child {
    font-weight: 500;
    color: var(--text-primary);
}

.comparison-table td:not(:first-child) {
    text-align: center;
    color: var(--text-secondary);
}

.check-icon {
    color: #10b981;
    font-size: 1.25rem;
}

.cross-icon {
    color: #ef4444;
    font-size: 1.25rem;
}

.demo-section {
    background: linear-gradient(135deg, var(--primary-50), var(--primary-100));
    border-radius: var(--radius-xl);
    padding: 3rem;
    margin: 3rem 0;
    text-align: center;
}

.dark .demo-section {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(29, 78, 216, 0.15));
}

.demo-section h2 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.demo-section p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.demo-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
    color: white;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-base);
}

.demo-button:hover {
    background: linear-gradient(135deg, var(--primary-700), var(--primary-800));
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .comparison-table {
        font-size: 0.875rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 0.5rem;
    }
}
