
:root {
    /* Main Backgrounds */
    --bg-color: #fafafa; /* Very light gray to make the white cards pop */
    --card-bg: #ffffff;
    
    /* Text Colors */
    --text-main: #1f2937; /* Dark charcoal for high readability */
    --text-muted: #6b7280;
    --border-color: #e5e7eb;
    
    /* Orange Theme Colors */
    --theme-orange: #f97316; 
    --theme-orange-hover: #ea580c;
    --theme-orange-light: #fff7ed; /* Very soft orange for badges/borders */
    
    /* Gradients adapted to Orange */
    --gradient-free: linear-gradient(90deg, #fb923c, #f97316);
    --gradient-pro: linear-gradient(90deg, #f97316, #ea580c);
}


.somnath-pricing-main-box {
    background-color: var(--bg-color);
    color: var(--text-main);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
}

/* Header Styling */
.pricing-header {
    text-align: center;
    margin-bottom: 50px;
}

.badge {
    display: inline-block;
    background: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 20px;
    border: 1px solid var(--theme-orange-light);
}

.badge .gradient-bg {
    background: var(--gradient-pro);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    margin-right: 5px;
}

.pricing-header .budget_heading_first {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.pricing-header .highlight {
    background: var(--gradient-pro);
    -webkit-background-clip: text;
    color: transparent;
    background: var(--gradient-bg);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Gradients */
.text-gradient-free {
    background: var(--gradient-free);
    -webkit-background-clip: text;
    color: transparent;
    background: var(--gradient-bg);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; 
}

.text-gradient-pro {
    background: var(--gradient-pro);
    -webkit-background-clip: text;
    color: transparent;
}

/* Layout */
.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1100px;
    width: 100%;
    align-items: start; /* Keeps cards from stretching inappropriately */
}

/* Card Styling */
.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 30px;
    position: relative;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(249, 115, 22, 0.08); /* Subtle orange glow on hover */
    border-color: var(--theme-orange-light);
}

.pricing-card.recommended {
    border: 2px solid var(--theme-orange);
}

.recommended-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--theme-orange);
    color: white;
    padding: 6px 12px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(249, 115, 22, 0.2);
    background: var(--gradient-bg);
}

.card-header .icon {
    width: 40px;
    height: 40px;
    border: 1px solid var(--theme-orange-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 1.2rem;
    background: transparent; 
    background-image: var(--gradient-bg);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.card-header .first_card_sub_heading {
    font-size: 1.25rem;
    font-weight: 600;
}

.card-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 5px;
}
.card-header .second_card_sub_heading{
    font-size: 1.30rem;
    font-weight: 760;
}
.card-header .third_card_heading{
    font-size: 2rem;
    font-weight: 800;
}
.price-box {
    background: var(--theme-orange-light); /* Soft orange background for price */
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    margin: 20px 0;
}

.price {
    font-size: 3rem;
    font-weight: 700;
}

.decimals {
    font-size: 1.5rem;
    opacity: 0.7;
}

/* Features List & See More Animation */
.features-container {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.features-list {
    list-style: none;
    margin-bottom: 10px;
    max-height: 160px; 
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1); 
}

.features-list.expanded {
    max-height: 1000px; 
    transition: max-height 0.6s ease-in-out;
}

.features-list li {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-list li i {
    font-size: 0.8rem;
    opacity: 0.6;
}

.see-more-btn {
    background: none;
    border: none;
    color: var(--theme-orange); /* Orange text for See More */
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    text-align: left;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.see-more-btn i {
    transition: transform 0.3s ease;
}

.see-more-btn.active i {
    transform: rotate(180deg);
}

/* Buttons */
.card-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}

.btn {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.btn-primary {
    background: var(--theme-orange);
    color: white;
    border: none;
}

.btn-primary:hover {
    background: var(--theme-orange-hover);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.btn-secondary {
    background: white;
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: #f9fafb;
    border-color: var(--theme-orange);
    color: var(--theme-orange);
}

/* Responsive Media Queries */
@media (max-width: 768px) {
    .pricing-header h1 {
        font-size: 2rem;
    }
    .pricing-container {
        grid-template-columns: 1fr;
        max-width: 450px;
    }
}