/* =====================================================
   PRICING PAGE 2100 - Ultra Futuristic Design
   ===================================================== */

/* Hero Section 2100 */
.pricing-hero-2100 {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 20px 80px;
    overflow: hidden;
}

.pricing-hero-2100 .hero-bg-2100 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.pricing-hero-2100 .hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: orbFloat 8s ease-in-out infinite;
}

.pricing-hero-2100 .orb-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.4), rgba(5, 150, 105, 0.2));
    top: -150px;
    right: -100px;
    animation-delay: 0s;
}

.pricing-hero-2100 .orb-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(139, 92, 246, 0.2));
    bottom: -100px;
    left: -100px;
    animation-delay: -3s;
}

.pricing-hero-2100 .orb-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.3), rgba(236, 72, 153, 0.2));
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -5s;
}

@keyframes orbFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

.pricing-hero-2100 .hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.pricing-hero-2100 .hero-container-2100 {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.pricing-hero-2100 .breadcrumb-2100 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.pricing-hero-2100 .breadcrumb-2100 a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.pricing-hero-2100 .breadcrumb-2100 a:hover {
    color: #10b981;
}

.pricing-hero-2100 .breadcrumb-2100 .separator {
    color: rgba(255,255,255,0.3);
    font-size: 0.75rem;
}

.pricing-hero-2100 .breadcrumb-2100 .current {
    color: rgba(255,255,255,0.9);
}

.pricing-hero-2100 .hero-badge-2100 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #10b981;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.pricing-hero-2100 .hero-badge-2100 i {
    font-size: 1.1rem;
}

.pricing-hero-2100 .hero-title-2100 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.pricing-hero-2100 .hero-title-2100 span {
    background: linear-gradient(135deg, #10b981, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-hero-2100 .hero-description-2100 {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* Billing Toggle */
.billing-toggle-2100 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.billing-toggle-2100 span {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    transition: color 0.3s ease;
}

.billing-toggle-2100 span.active {
    color: #fff;
    font-weight: 600;
}

.toggle-switch-2100 {
    position: relative;
    width: 60px;
    height: 32px;
    background: rgba(255,255,255,0.1);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-switch-2100::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.toggle-switch-2100.yearly::after {
    left: calc(100% - 28px);
}

.save-badge-2100 {
    padding: 6px 14px;
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #10b981;
}

/* Pricing Section 2100 */
.pricing-section-2100 {
    padding: 100px 20px;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.5) 100%);
}

.pricing-section-2100 .section-container-2100 {
    max-width: 1300px;
    margin: 0 auto;
}

/* Pricing Grid */
.pricing-grid-2100 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

/* Pricing Card */
.pricing-card-2100 {
    position: relative;
    padding: 40px 35px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.pricing-card-2100:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.15);
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

/* Featured Card */
.pricing-card-2100.featured {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(59, 130, 246, 0.1));
    border-color: rgba(16, 185, 129, 0.3);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card-2100.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-card-2100.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #3b82f6);
    border-radius: 24px 24px 0 0;
}

.pricing-badge-2100 {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 24px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.pricing-card-header-2100 {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-icon-2100 {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #10b981;
    transition: all 0.4s ease;
}

.pricing-card-2100:hover .pricing-icon-2100 {
    transform: scale(1.1) rotate(5deg);
}

.pricing-card-2100:nth-child(2) .pricing-icon-2100 {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
    color: #3b82f6;
}

.pricing-card-2100:nth-child(3) .pricing-icon-2100 {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(236, 72, 153, 0.2));
    color: #8b5cf6;
}

.pricing-card-header-2100 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.pricing-card-header-2100 .price-desc {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
}

.pricing-price-2100 {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.pricing-price-2100 .price-amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.pricing-price-2100 .price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #10b981;
    vertical-align: top;
}

.pricing-price-2100 .price-period {
    font-size: 1rem;
    color: rgba(255,255,255,0.5);
}

.pricing-price-2100 .price-yearly {
    display: block;
    margin-top: 8px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.4);
}

/* Features List */
.pricing-features-2100 {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex: 1;
}

.pricing-features-2100 li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.pricing-features-2100 li:last-child {
    border-bottom: none;
}

.pricing-features-2100 li i {
    width: 22px;
    height: 22px;
    background: rgba(16, 185, 129, 0.2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: #10b981;
    flex-shrink: 0;
}

.pricing-features-2100 li.disabled {
    color: rgba(255,255,255,0.3);
}

.pricing-features-2100 li.disabled i {
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.3);
}

/* Pricing Button */
.pricing-btn-2100 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 18px 30px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 14px;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pricing-btn-2100:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.pricing-btn-2100.primary {
    background: linear-gradient(135deg, #10b981, #059669);
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.pricing-btn-2100.primary:hover {
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
}

/* Comparison Section 2100 */
.comparison-section-2100 {
    padding: 100px 20px;
    position: relative;
}

.comparison-section-2100 .section-container-2100 {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header-2100 {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge-2100 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #10b981;
    margin-bottom: 20px;
}

.section-title-2100 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.section-title-2100 span {
    background: linear-gradient(135deg, #10b981, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc-2100 {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.6);
    max-width: 600px;
    margin: 0 auto;
}

/* Comparison Table */
.comparison-table-2100 {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    overflow: hidden;
}

.comparison-table-2100 thead {
    background: rgba(255,255,255,0.05);
}

.comparison-table-2100 th {
    padding: 25px 20px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.comparison-table-2100 th:first-child {
    text-align: left;
}

.comparison-table-2100 th.featured-col {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.comparison-table-2100 td {
    padding: 18px 20px;
    text-align: center;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.comparison-table-2100 td:first-child {
    text-align: left;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
}

.comparison-table-2100 td.featured-col {
    background: rgba(16, 185, 129, 0.05);
}

.comparison-table-2100 tbody tr:hover {
    background: rgba(255,255,255,0.02);
}

.comparison-table-2100 .check-icon {
    color: #10b981;
    font-size: 1.1rem;
}

.comparison-table-2100 .x-icon {
    color: rgba(255,255,255,0.2);
    font-size: 1.1rem;
}

/* FAQ Section 2100 */
.faq-section-2100 {
    padding: 100px 20px;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.5) 0%, rgba(15, 23, 42, 0) 100%);
}

.faq-section-2100 .section-container-2100 {
    max-width: 900px;
    margin: 0 auto;
}

.faq-list-2100 {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item-2100 {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item-2100:hover {
    border-color: rgba(16, 185, 129, 0.2);
}

.faq-item-2100.active {
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.1);
}

.faq-question-2100 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question-2100:hover {
    background: rgba(255,255,255,0.02);
}

.faq-question-2100 span {
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
    flex: 1;
    padding-right: 20px;
}

.faq-question-2100 .faq-icon-2100 {
    width: 40px;
    height: 40px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
    transition: all 0.3s ease;
}

.faq-item-2100.active .faq-icon-2100 {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    transform: rotate(180deg);
}

.faq-answer-2100 {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item-2100.active .faq-answer-2100 {
    max-height: 300px;
}

.faq-answer-content-2100 {
    padding: 0 30px 25px;
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

/* Guarantee Section */
.guarantee-section-2100 {
    padding: 80px 20px;
}

.guarantee-section-2100 .section-container-2100 {
    max-width: 1000px;
    margin: 0 auto;
}

.guarantee-card-2100 {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 50px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(59, 130, 246, 0.05));
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 24px;
}

.guarantee-icon-2100 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #fff;
    flex-shrink: 0;
}

.guarantee-content-2100 h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.guarantee-content-2100 p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

/* CTA Section 2100 */
.pricing-cta-2100 {
    padding: 100px 20px;
    position: relative;
}

.pricing-cta-2100 .cta-container-2100 {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 50px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(59, 130, 246, 0.1));
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.pricing-cta-2100 .cta-container-2100::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 60%);
    animation: rotateBg 15s linear infinite;
}

@keyframes rotateBg {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cta-icon-2100 {
    position: relative;
    z-index: 1;
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #fff;
}

.cta-title-2100 {
    position: relative;
    z-index: 1;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.cta-title-2100 span {
    background: linear-gradient(135deg, #10b981, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-desc-2100 {
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 35px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons-2100 {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-primary-2100 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 12px;
    color: #fff;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.cta-btn-primary-2100:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
}

.cta-btn-secondary-2100 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    color: #fff;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn-secondary-2100:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-3px);
}

/* Light Theme Support */
[data-theme="light"] .pricing-hero-2100 .hero-title-2100,
[data-theme="light"] .section-title-2100,
[data-theme="light"] .cta-title-2100,
[data-theme="light"] .pricing-card-header-2100 h3,
[data-theme="light"] .pricing-price-2100 .price-amount,
[data-theme="light"] .faq-question-2100 span,
[data-theme="light"] .guarantee-content-2100 h3 {
    color: #1e293b;
}

[data-theme="light"] .pricing-hero-2100 .hero-description-2100,
[data-theme="light"] .section-desc-2100,
[data-theme="light"] .cta-desc-2100,
[data-theme="light"] .pricing-card-header-2100 .price-desc,
[data-theme="light"] .pricing-features-2100 li,
[data-theme="light"] .faq-answer-content-2100,
[data-theme="light"] .guarantee-content-2100 p {
    color: #64748b;
}

[data-theme="light"] .pricing-hero-2100 .breadcrumb-2100 a {
    color: #64748b;
}

[data-theme="light"] .pricing-hero-2100 .breadcrumb-2100 .current {
    color: #1e293b;
}

[data-theme="light"] .pricing-card-2100,
[data-theme="light"] .faq-item-2100,
[data-theme="light"] .guarantee-card-2100 {
    background: rgba(255,255,255,0.8);
    border-color: rgba(0,0,0,0.08);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

[data-theme="light"] .pricing-card-2100.featured {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(59, 130, 246, 0.08));
}

[data-theme="light"] .pricing-cta-2100 .cta-container-2100 {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(59, 130, 246, 0.08));
}

[data-theme="light"] .cta-btn-secondary-2100 {
    background: rgba(0,0,0,0.05);
    border-color: rgba(0,0,0,0.1);
    color: #1e293b;
}

[data-theme="light"] .comparison-table-2100 {
    background: rgba(255,255,255,0.9);
    border-color: rgba(0,0,0,0.1);
}

[data-theme="light"] .comparison-table-2100 th,
[data-theme="light"] .comparison-table-2100 td:first-child {
    color: #1e293b;
}

[data-theme="light"] .comparison-table-2100 td {
    color: #64748b;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .pricing-grid-2100 {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .pricing-card-2100.featured {
        transform: none;
        order: -1;
    }
    
    .pricing-card-2100.featured:hover {
        transform: translateY(-10px);
    }
    
    .comparison-table-2100 {
        display: block;
        overflow-x: auto;
    }
}

@media (max-width: 768px) {
    .pricing-hero-2100 {
        min-height: 45vh;
        padding: 120px 20px 60px;
    }
    
    .pricing-hero-2100 .hero-badge-2100 {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .billing-toggle-2100 {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .faq-question-2100 {
        padding: 20px;
    }
    
    .faq-question-2100 span {
        font-size: 1rem;
    }
    
    .faq-answer-content-2100 {
        padding: 0 20px 20px;
    }
    
    .guarantee-card-2100 {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }
    
    .pricing-cta-2100 .cta-container-2100 {
        padding: 40px 25px;
    }
    
    .cta-buttons-2100 {
        flex-direction: column;
    }
    
    .cta-btn-primary-2100,
    .cta-btn-secondary-2100 {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .pricing-hero-2100 .hero-title-2100 {
        font-size: 2rem;
    }
    
    .pricing-hero-2100 .hero-description-2100 {
        font-size: 1rem;
    }
    
    .section-title-2100 {
        font-size: 1.8rem;
    }
    
    .pricing-card-2100 {
        padding: 30px 25px;
    }
    
    .pricing-price-2100 .price-amount {
        font-size: 3rem;
    }
}
