

.rb-pricing-scroll-wrapper, 
.rb-pricing-scroll-wrapper * {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Specific SaaS weight for the big prices */
.rb-card-price {
    font-weight: 800 !important;
    letter-spacing: -0.04em !important;
}



/* 1. Global Centering & Vertical Flow */
.rb-pricing-scroll-wrapper {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column; /* Forces Title -> Cards -> Note stack */
    align-items: center; 
    justify-content: center; /* Centers the whole group on screen */
    background-color: #f8fafc;
    overflow-y: visible;
    padding: 40px 20px;
    box-sizing: border-box;
}

.rb-main-wrapper {
	
    width: 100%;
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 2. Compact Header */
.rb-main-title {
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 0 0 30px 0; /* Reduced margin */
    color: #0f172a;
    text-align: center;
    line-height: 1.2;
    width: 100%;
}

.rb-highlight {
    color: #4f46e5;
}

/* 3. Horizontal Card Container (Desktop Only) */
.rb-card-container {
    display: flex;
    flex-direction: row; 
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    width: 100%;
    margin-bottom: 25px; /* Space before the note */
}

/* 4. Polished Compact Card */
.rb-card-standard-pricing {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 20px; /* Reduced padding for compact look */
    flex: 1;
    max-width: 340px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    position: relative;
    text-align: left; /* Ensures text stays left inside cards */
}

.rb-card-standard-pricing:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px -5px rgba(0, 0, 0, 0.08);
}

.rb-card-standard-pricing {
    border: 2px solid #4f46e5;
    z-index: 2;
}

.rb-popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #4f46e5;
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 99px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
}

/* 5. Pricing Elements */
.rb-card-title {
    font-size: 28px;
    font-weight: 800;
    color: #1e293b;
    margin: 0;
}

.rb-card-subtitle {
    font-size: 12px;
    font-weight: 600;
    color: #5a6371;
    text-transform: uppercase;
    margin-top: 2px;
}

/* 1. Price Header Area (Regular Price + 50% OFF Badge) */
.rb-card-price-section {
    margin: 20px 0;
    text-align: left;
}

.rb-card-prices {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.rb-card-regular-price {
    color: #94a3b8;
    text-decoration: line-through;
    font-size: 16px;
    font-weight: 500;
}

.rb-card-offer-badge {
    background: #ecfdf5; /* Very light green */
    color: #10b981; /* SaaS Green */
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

/* 2. Main Large Price */
.rb-card-price {
    font-size: 32px; /* Matches the bold look in screenshots */
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.rb-card-price-duration {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
	letter-spacing: 1px;
}

/* 3. The "You Save" Row */
.rb-card-save {
    font-size: 14px;
    font-weight: 700;
    color: #4f46e5; /* Using the brand blue/indigo from your UI */
    margin-top: 10px;
    display: block;
}

/* Specific adjustment for the green "You Save" seen in image_c9e63e.png */
.rb-card-save-green {
    color: #059669;
    background: none;
    padding: 0;
}

/* 6. Compact Feature List */
.rb-card-includes {
    border-top: 1px solid #f1f5f9;
    padding-top: 15px;
    margin-top: 5px;
    flex-grow: 1;
	font-size: 15px;
	font-weight: 500;
}

.rb-card-includes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rb-card-includes li {
    font-size: 14px;
    color: #475569;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.rb-card-includes li::before {
    content: "✓";
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    background: #eef2ff;
    color: #4f46e5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    font-weight: 900;
}

/* 7. SaaS Buttons */
.rb-btn {
    width: 100%;
    margin-top: 15px;
    padding: 10px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    color: #0f172a;
}



.rb-btn:hover {
    background: #4f46e5;
	color: #ffffff;
	
}

.rb-btn-primary:hover {
    background: #4338ca;
    box-shadow: 0 4px 10px rgba(79, 70, 229, 0.2);
}

/* 8. The Bottom Note (Now Stacked Below) */
.rb-note {
    font-size: 11px;
    color: #94a3b8;
    font-weight: 600;
    text-align: center;
    width: 100%;
}

/* 9. Mobile Responsive Overrides */
@media (max-width: 850px) {
	
	.rb-is-pricing-page, 
	.rb-is-pricing-page body {
    height: auto !important;
    overflow-y: visible !important;
	}
	
    .rb-pricing-scroll-wrapper {
        display: block; /* Changes from flex to block for smoother mobile flow */
        padding-top: 40px;
        padding-bottom: 40px;
        height: auto; /* Ensures it grows with the cards */
        overflow-y: auto;
        -webkit-overflow-scrolling: touch; /* Smooth inertia scrolling for iOS */
		
    }
    .rb-card-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .rb-card-standard-pricing {
        max-width: 90%;
        width: 80%;
    }
	
}