/* Pricing Page Styles */
:root {
    --primary-color: #00c0c0;
    --primary-dark: #009999;
    --primary-light: #33cccc;
    --secondary-color: #ff6b6b;
    --accent-color: #4ecdc4;
    --dark-bg: #0f1419;
    --card-bg: rgba(255, 255, 255, 0.02);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.8);
    --gradient-primary: linear-gradient(135deg, #00c0c0 0%, #009999 100%);
    --gradient-accent: linear-gradient(135deg, #4ecdc4 0%, #00c0c0 100%);
    --gradient-dark: linear-gradient(135deg, #0f1419 0%, #1a1a1a 100%);
    --gradient-hero: linear-gradient(135deg, #0f1419 0%, #1e293b 50%, #0f1419 100%);
}

/* Base Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    scroll-behavior: smooth;
}

/* Breadcrumb Styles */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    background: var(--gradient-hero);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 160px 0 100px;
    overflow: hidden;
    color: white;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(0, 192, 192, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 192, 192, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
    background: linear-gradient(to right, #ffffff, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title span {
    position: relative;
    display: inline-block;
    background: linear-gradient(to right, var(--primary-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(0,192,192,.2);
    z-index: -1;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-buttons .btn {
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-buttons .btn-primary {
    background: var(--gradient-primary);
    border: none;
    box-shadow: 0 4px 15px rgba(0,192,192,.25);
    color: white;
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,192,192,.4);
    color: white;
}

.hero-buttons .btn-outline-light {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    background-color: transparent;
}

.hero-buttons .btn-outline-light:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.trust-badges {
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-visual-container {
    padding: 2rem;
}

/* Pricing Section */
.pricing-section {
    background: #f8f9fa;
    padding: 100px 0;
    position: relative;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(0,192,192,0.05) 2px, transparent 2px);
    background-size: 30px 30px;
    z-index: 0;
    opacity: 0.4;
}

.pricing-section .container {
    position: relative;
    z-index: 1;
}

.pricing-main-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #1f2937;
    text-align: center;
}

.pricing-main-subtitle {
    color: #6b7280;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: center;
}

/* Pricing Toggle */
.pricing-toggle-wrapper {
    margin-bottom: 4rem;
}

.pricing-period-toggle {
    display: inline-flex;
    align-items: center;
    background: white;
    padding: 8px;
    border-radius: 60px;
    gap: 0;
    border: 2px solid #e2e8f0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    position: relative;
}

.toggle-label {
    font-weight: 700;
    color: #64748b;
    cursor: pointer;
    padding: 12px 24px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    white-space: nowrap;
}

.toggle-label.active {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 192, 192, 0.3);
}

.savings-badge {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-left: 8px;
    animation: pulse 2s infinite;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Pricing Cards Grid */
.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Changed to 3 equal columns */
    gap: 3rem; /* Increased gap for better spacing */
    max-width: 1200px; /* Optimized for 3 cards */
    margin: 0 auto;
    align-items: stretch; /* Ensure all cards have equal height */
    padding: 2rem 1rem; /* Add padding around the grid */
}

.pricing-card {
    background: white;
    border-radius: 24px; /* Slightly more rounded corners */
    padding: 0;
    border: 2px solid #f1f5f9;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: visible; /* Changed from hidden to visible for the badge */
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06); /* Softer, more elevated shadow */
    display: flex;
    flex-direction: column;
    min-width: 320px; /* Larger minimum width for 3-card layout */
}

.pricing-card:hover {
    transform: translateY(-12px); /* More pronounced hover effect */
    box-shadow: 0 25px 70px rgba(0, 192, 192, 0.15);
    border-color: var(--primary-color);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.02); /* Slightly less scaling to avoid crowding */
    z-index: 2;
    box-shadow: 0 30px 80px rgba(0, 192, 192, 0.2);
    background: linear-gradient(145deg, #ffffff 0%, #f8fdfd 100%);
}

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

/* Remove the featured card top border line */
.pricing-card.featured::before {
    display: none;
}

.popular-badge {
    position: absolute;
    top: -16px; /* Increased to ensure it's fully visible */
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 8px 20px; /* Increased padding for better visibility */
    border-radius: 20px;
    z-index: 10; /* Increased z-index to ensure it's on top */
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    white-space: nowrap; /* Prevents text wrapping */
}

.pricing-header {
    padding: 3.5rem 2.5rem 2.5rem; /* Increased padding for more breathing room */
    text-align: center;
    border-bottom: 1px solid #f1f5f9;
}

.pricing-plan-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 8px 25px rgba(0, 192, 192, 0.3);
}

.pricing-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.pricing-price {
    margin: 1.5rem 0;
}

.price-amount {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
}

.price-period {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 500;
}

.pricing-description {
    color: #6b7280;
    font-size: 1rem;
    margin: 0;
    line-height: 1.5;
}

.pricing-features {
    padding: 2rem;
    flex-grow: 1; /* This ensures all cards have the same height */
}

.feature-category {
    margin-bottom: 2.5rem; /* Increased spacing between categories */
}

.feature-category:last-child {
    margin-bottom: 0;
}

.feature-category-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-category-title i {
    color: var(--primary-color);
    width: 16px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 0; /* Increased padding for better spacing */
    font-size: 0.95rem;
    color: #374151;
}

.feature-item i {
    color: var(--primary-color);
    margin-right: 0.75rem;
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
}

.pricing-cta {
    padding: 0 2rem 2.5rem;
    text-align: center;
    margin-top: auto; /* This pushes the CTA to the bottom */
}

.pricing-btn {
    display: inline-block;
    width: 100%;
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-btn:hover {
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 192, 192, 0.3);
}

.pricing-btn.featured {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 192, 192, 0.3);
}

.pricing-btn.featured:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 192, 192, 0.4);
}

/* Additional Info Section */
.pricing-additional-info {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    border: 1px solid #f1f5f9;
}

.pricing-additional-info p {
    margin-bottom: 1rem;
    color: #6b7280;
}

.pricing-additional-info p:last-child {
    margin-bottom: 0;
}

/* Enterprise CTA Section */
.enterprise-cta-section {
    margin-top: 4rem;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, #0f1419 0%, #1e293b 50%, #0f1419 100%);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    text-align: center;
    color: white;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.enterprise-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(0, 192, 192, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 192, 192, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.enterprise-cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.enterprise-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(0, 192, 192, 0.3);
}

.enterprise-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #ffffff, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.enterprise-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-weight: 400;
}

.enterprise-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    text-align: left;
}

.enterprise-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.enterprise-feature:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.08);
}

.enterprise-feature-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.enterprise-feature-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.enterprise-feature-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.4;
}

.enterprise-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.enterprise-btn {
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 200px;
    justify-content: center;
}

.enterprise-btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: 2px solid transparent;
    box-shadow: 0 8px 25px rgba(0, 192, 192, 0.3);
}

.enterprise-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 192, 192, 0.4);
    color: white;
    text-decoration: none;
}

.enterprise-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.enterprise-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    color: white;
    text-decoration: none;
}

/* Utility Classes */
.text-primary {
    color: var(--primary-color) !important;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}

.gap-3 {
    gap: 1rem !important;
}

.d-flex {
    display: flex !important;
}

.flex-wrap {
    flex-wrap: wrap !important;
}

.align-items-center {
    align-items: center !important;
}

.justify-content-end {
    justify-content: flex-end !important;
}

.text-end {
    text-align: right !important;
}

.me-2 {
    margin-right: 0.5rem !important;
}

.me-4 {
    margin-right: 1.5rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.mt-5 {
    margin-top: 3rem !important;
}

.ms-2 {
    margin-left: 0.5rem !important;
}

.small {
    font-size: 0.875rem !important;
}

.position-relative {
    position: relative !important;
}

.position-absolute {
    position: absolute !important;
}

.bottom-0 {
    bottom: 0 !important;
}

.end-0 {
    right: 0 !important;
}

.d-none {
    display: none !important;
}

.d-lg-block {
    display: none !important;
}

@media (min-width: 992px) {
    .d-lg-block {
        display: block !important;
    }
}

/* Responsive Design */
@media (max-width: 1199.98px) {
    .pricing-main-title {
        font-size: 2.5rem;
    }
    
    .pricing-cards-grid {
        gap: 1.5rem; /* Reduce gap on smaller screens */
    }
    
    .pricing-card.featured {
        transform: none;
        margin-bottom: 2rem;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 991.98px) {
    .pricing-main-title {
        font-size: 2.25rem;
    }
    
    .pricing-section {
        padding: 80px 0;
    }
    
    .pricing-cards-grid {
        grid-template-columns: 1fr; /* Single column on tablets */
        gap: 2rem;
        max-width: 500px; /* Narrower for single column */
    }
    
    .enterprise-cta-section {
        margin-top: 3rem;
        padding: 3rem 2rem;
    }
    
    .enterprise-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .enterprise-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .enterprise-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-section {
        padding: 120px 0 80px;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 2rem;
    }
    
    .pricing-main-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .pricing-main-subtitle {
        font-size: 1.1rem;
    }
    
    .pricing-section {
        padding: 60px 0;
    }
    
    .pricing-cards-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 1.5rem;
    }
    
    .pricing-card {
        margin-bottom: 1rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-header {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .pricing-features {
        padding: 1.5rem;
    }
    
    .pricing-cta {
        padding: 0 1.5rem 2rem;
    }
    
    .pricing-period-toggle {
        flex-direction: column;
        gap: 0.5rem;
        padding: 12px;
        border-radius: 20px;
    }
    
    .toggle-label {
        padding: 10px 20px;
        width: 100%;
        text-align: center;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .trust-badges > div {
        margin-bottom: 0.75rem;
    }
}

/* Enhanced Responsive Design */
@media (max-width: 1399.98px) {
    .pricing-cards-grid {
        gap: 2.5rem;
        max-width: 1100px;
    }
    
    .pricing-card {
        min-width: 300px;
    }
}

@media (max-width: 1199.98px) {
    .pricing-main-title {
        font-size: 2.5rem;
    }
    
    .pricing-cards-grid {
        gap: 2rem;
        max-width: 900px;
    }
    
    .pricing-card {
        min-width: 280px;
    }
    
    .pricing-card.featured {
        transform: none;
        margin-bottom: 0;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-12px);
    }
    
    .enterprise-cta-section {
        margin-top: 3rem;
        padding: 3rem 2rem;
    }
    
    .enterprise-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 991.98px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-section {
        padding: 120px 0 80px;
        text-align: center;
    }
    
    .pricing-main-title {
        font-size: 2.25rem;
    }
    
    .pricing-section {
        padding: 80px 0;
    }
    
    .pricing-cards-grid {
        grid-template-columns: 1fr; /* Single column on tablets */
        gap: 2rem;
        max-width: 500px; /* Narrower for single column */
    }
    
    .pricing-card {
        min-width: auto;
        max-width: 100%;
    }
    
    .enterprise-cta-section {
        margin-top: 3rem;
        padding: 3rem 2rem;
    }
    
    .enterprise-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .enterprise-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .enterprise-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
    }
    
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin-bottom: 0.75rem;
        justify-content: center;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .trust-badges > div {
        margin-bottom: 0.75rem;
        margin-right: 0 !important;
    }
    
    .pricing-main-title {
        font-size: 2rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }
    
    .pricing-main-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .pricing-section {
        padding: 60px 0;
    }
    
    .pricing-cards-grid {
        gap: 1.5rem;
        padding: 1rem 0.5rem;
    }
    
    .pricing-card {
        margin-bottom: 1rem;
        border-radius: 20px;
    }
    
    .pricing-header {
        padding: 2.5rem 1.5rem 2rem;
    }
    
    .pricing-title {
        font-size: 1.5rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .pricing-features {
        padding: 2rem 1.5rem;
    }
    
    .feature-category {
        margin-bottom: 2rem;
    }
    
    .feature-category-title {
        font-size: 0.95rem;
    }
    
    .feature-item {
        padding: 0.6rem 0;
        font-size: 0.9rem;
    }
    
    .pricing-cta {
        padding: 0 1.5rem 2rem;
    }
    
    .pricing-btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .pricing-period-toggle {
        flex-direction: column;
        gap: 0.5rem;
        padding: 12px;
        border-radius: 20px;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .toggle-label {
        padding: 12px 20px;
        width: 100%;
        text-align: center;
        font-size: 0.95rem;
    }
    
    .enterprise-cta-section {
        margin-top: 2.5rem;
        padding: 2.5rem 1.5rem;
        border-radius: 20px;
    }
    
    .enterprise-title {
        font-size: 2rem;
    }
    
    .enterprise-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .enterprise-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .enterprise-feature {
        padding: 1.25rem;
        text-align: center;
    }
    
    .enterprise-feature-icon {
        width: 35px;
        height: 35px;
        margin: 0 auto 1rem;
    }
    
    .enterprise-feature-content h4 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .enterprise-feature-content p {
        font-size: 0.85rem;
    }
    
    .enterprise-btn {
        font-size: 1rem;
        padding: 14px 24px;
    }
    
    .pricing-additional-info {
        margin-top: 2.5rem;
        padding: 1.5rem;
        border-radius: 12px;
        text-align: center;
    }
    
    .pricing-additional-info p {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .hero-section {
        padding: 80px 0 50px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .pricing-main-title {
        font-size: 1.8rem;
        padding: 0 1rem;
    }
    
    .pricing-main-subtitle {
        font-size: 1rem;
        padding: 0 1.5rem;
    }
    
    .pricing-cards-grid {
        padding: 1rem 0;
    }
    
    .pricing-card {
        border-radius: 16px;
    }
    
    .pricing-header {
        padding: 2rem 1.25rem 1.5rem;
    }
    
    .pricing-plan-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .pricing-title {
        font-size: 1.4rem;
    }
    
    .price-amount {
        font-size: 2.2rem;
    }
    
    .pricing-description {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .pricing-features {
        padding: 1.5rem 1.25rem;
    }
    
    .feature-category {
        margin-bottom: 1.5rem;
    }
    
    .feature-category-title {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
    
    .feature-item {
        padding: 0.5rem 0;
        font-size: 0.85rem;
    }
    
    .feature-item i {
        font-size: 0.8rem;
        width: 14px;
        margin-right: 0.6rem;
    }
    
    .pricing-cta {
        padding: 0 1.25rem 1.75rem;
    }
    
    .pricing-btn {
        padding: 0.8rem 1.25rem;
        font-size: 0.9rem;
        letter-spacing: 0.3px;
    }
    
    .popular-badge {
        font-size: 0.7rem;
        padding: 6px 16px;
        top: -14px;
    }
    
    .enterprise-cta-section {
        margin-top: 2rem;
        padding: 2rem 1.25rem;
        border-radius: 16px;
    }
    
    .enterprise-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .enterprise-subtitle {
        font-size: 1rem;
        padding: 0;
        margin-bottom: 1.5rem;
    }
    
    .enterprise-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .enterprise-features {
        margin: 1.5rem 0;
    }
    
    .enterprise-feature {
        padding: 1rem;
        border-radius: 12px;
    }
    
    .enterprise-feature-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
    
    .enterprise-feature-content h4 {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }
    
    .enterprise-feature-content p {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    .enterprise-btn {
        font-size: 0.9rem;
        padding: 12px 20px;
        border-radius: 40px;
    }
    
    .pricing-additional-info {
        margin-top: 2rem;
        padding: 1.25rem;
        border-radius: 12px;
    }
    
    .pricing-additional-info p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
}

@media (max-width: 399.98px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .pricing-main-title {
        font-size: 1.6rem;
    }
    
    .pricing-cards-grid {
        padding: 0.5rem 0;
    }
    
    .pricing-card {
        margin-bottom: 1rem;
    }
    
    .pricing-header {
        padding: 1.75rem 1rem 1.25rem;
    }
    
    .pricing-title {
        font-size: 1.3rem;
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    .pricing-features {
        padding: 1.25rem 1rem;
    }
    
    .pricing-cta {
        padding: 0 1rem 1.5rem;
    }
    
    .enterprise-cta-section {
        padding: 1.75rem 1rem;
    }
    
    .enterprise-title {
        font-size: 1.6rem;
    }
    
    .enterprise-subtitle {
        font-size: 0.95rem;
    }
    
    .enterprise-feature {
        padding: 0.875rem;
    }
    
    .enterprise-btn {
        font-size: 0.85rem;
        padding: 11px 18px;
    }
}

/* Updated padding for larger screens */
@media (min-width: 1200px) {
    .pricing-cards-grid {
        gap: 3rem; /* Even larger gap on very large screens */
        max-width: 1500px; /* Allow more breathing room */
    }
    
    .pricing-card {
        min-width: 320px; /* Larger minimum width on big screens */
    }
}

/* Base Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    scroll-behavior: smooth;
    background-color: #f8f9fa;
}

/* Hero Section */
.hero-section {
    background: var(--gradient-hero);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 160px 0 100px;
    overflow: hidden;
    color: white;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
    background: linear-gradient(to right, #ffffff, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title span {
    position: relative;
    display: inline-block;
    background: linear-gradient(to right, var(--primary-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(0,192,192,.2);
    z-index: -1;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-buttons .btn {
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hero-buttons .btn-primary {
    background: var(--gradient-primary);
    border: none;
    box-shadow: 0 4px 15px rgba(0,192,192,.25);
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,192,192,.4);
}

.hero-buttons .btn-outline-light {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    background-color: transparent;
}

.hero-buttons .btn-outline-light:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.trust-badges {
    flex-wrap: wrap;
    gap: 1rem;
}

/* Features Section */
.features-section {
    background-color: #f8f9fa;
    position: relative;
    padding: 100px 0;
}

.bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(0,192,192,0.1) 2px, transparent 2px);
    background-size: 30px 30px;
    z-index: 0;
    opacity: 0.4;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.section-subtitle {
    color: #6b7280;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* Pricing Toggle */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto 3rem;
    max-width: 320px;
    position: relative;
    gap: 15px;
}

.pricing-toggle-label {
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 3px 0;
}

.pricing-toggle-button {
    position: relative;
    width: 50px;
    height: 28px;
    background-color: #e9ecef;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: inset 0 0 5px rgba(0,0,0,0.1);
}

.pricing-toggle-switch {
    position: absolute;
    width: 22px;
    height: 22px;
    background-color: white;
    border-radius: 50%;
    top: 3px;
    left: 3px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.pricing-toggle-button.annual {
    background-color: var(--primary-color);
}

.pricing-toggle-button.annual .pricing-toggle-switch {
    left: 25px;
}

.badge.bg-primary {
    background-color: var(--primary-color) !important;
    font-size: 0.7rem;
    padding: 0.35em 0.65em;
    border-radius: 10px;
    font-weight: 600;
}

#monthlyLabel, #annualLabel {
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

#monthlyLabel {
    opacity: 1;
}

/* Pricing Section */
.pricing-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 20%, rgba(0, 192, 192, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(0, 192, 192, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.pricing-section .container {
    position: relative;
    z-index: 1;
}

.pricing-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1f2937 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    text-align: center;
}

.pricing-main-subtitle {
    font-size: 1.3rem;
    color: #6b7280;
    margin-bottom: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Pricing Toggle */
.pricing-toggle-wrapper {
    margin-bottom: 4rem;
}

.pricing-period-toggle {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 8px;
    border-radius: 60px;
    gap: 0;
    border: 2px solid #e2e8f0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    position: relative;
}

.toggle-label {
    font-weight: 700;
    color: #64748b;
    cursor: pointer;
    padding: 12px 24px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    white-space: nowrap;
}

.toggle-label.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 192, 192, 0.3);
}

.toggle-switch {
    display: none;
}

.savings-badge {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-left: 8px;
    animation: pulse 2s infinite;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Interactive Pricing Explorer */
.pricing-explorer {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Plan Selector */
.plan-selector {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.plan-option {
    padding: 2rem 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
}

.plan-option:last-child {
    border-right: none;
}

.plan-option:hover {
    background: linear-gradient(135deg, rgba(0, 192, 192, 0.05) 0%, rgba(0, 192, 192, 0.02) 100%);
}

.plan-option.active {
    background: white;
    border-bottom: 4px solid var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 192, 192, 0.15);
}

.plan-option.featured {
    position: relative;
    overflow: visible;
}

.popular-tag {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 12px;
    z-index: 2;
}

.plan-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.plan-option.active .plan-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 192, 192, 0.3);
}

.plan-option h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.plan-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.plan-option p {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
}

.pricing-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    min-height: 60px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.pricing-row.header-row {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 120px;
}

.pricing-row.cta-row {
    background: linear-gradient(135deg, #fafbfc 0%, #ffffff 100%);
    min-height: 80px;
}

.pricing-cell {
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.pricing-cell:last-child {
    border-right: none;
}

.pricing-cell.feature-cell {
    justify-content: flex-start;
    text-align: left;
    font-weight: 600;
    color: #374151;
    background: rgba(248, 249, 250, 0.5);
}

.pricing-cell.plan-cell {
    flex-direction: column;
    padding: 1.5rem 1rem;
}

.pricing-cell.featured {
    background: linear-gradient(135deg, rgba(0, 192, 192, 0.05) 0%, rgba(0, 192, 192, 0.02) 100%);
    border-left: 3px solid var(--primary-color);
    border-right: 3px solid var(--primary-color);
}

.plan-header-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.plan-header-content .plan-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.plan-header-content p {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
}

/* Plan Details */
.plan-details {
    padding: 3rem;
    background: white;
}

.plan-content {
    display: none;
    animation: fadeInUp 0.5s ease-out;
}

.plan-content.active {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.plan-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}

.plan-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.plan-title i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
}

.plan-title h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin: 0;
}

.popular-badge {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    margin-left: 1rem;
}

.plan-description {
    font-size: 1.2rem;
    color: #6b7280;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.plan-cta {
    margin-top: 2rem;
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 8px 25px rgba(0, 192, 192, 0.3);
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 192, 192, 0.4);
    color: white;
    text-decoration: none;
}

.plan-note {
    display: block;
    font-size: 0.9rem;
    color: #6b7280;
    margin-top: 1rem;
    font-style: italic;
}

.pricing-cell i.fas.fa-check {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.pricing-cell i.fas.fa-times {
    color: #dc3545;
    opacity: 0.6;
}

.btn-plan {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-plan:hover {
    background: var(--primary-color);
    color: white;
    text-decoration: none;
}

.btn-plan.featured {
    background: var(--primary-color);
    color: white;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-category {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-category:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.feature-category h5 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(0, 192, 192, 0.1);
}

.feature-category h5 i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    transition: all 0.3s ease;
}

.feature-item:hover {
    padding-left: 0.5rem;
}

.feature-item.included i {
    color: var(--primary-color);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.feature-item span {
    font-size: 1rem;
    color: #374151;
    font-weight: 500;
    line-height: 1.4;
}

.btn-plan.featured:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

/* Plan Cards */
.plan-card {
    background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 24px;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 192, 192, 0.12);
    border-color: rgba(0, 192, 192, 0.3);
}

.plan-card:hover::before {
    opacity: 1;
}

.plan-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.03) translateY(-8px);
    box-shadow: 0 25px 70px rgba(0, 192, 192, 0.15);
    background: linear-gradient(145deg, #ffffff 0%, #f0fdfd 100%);
}

.plan-card.featured::before {
    opacity: 1;
    height: 6px;
}

.plan-card.featured:hover {
    transform: scale(1.03) translateY(-12px);
    box-shadow: 0 30px 80px rgba(0, 192, 192, 0.2);
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    font-size: 0.8rem;
    font-weight: 800;
    padding: 8px 24px;
    border-radius: 25px;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 192, 192, 0.3);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.plan-header {
    padding: 3rem 2rem 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(241, 245, 249, 0.6);
    background: linear-gradient(135deg, transparent 0%, rgba(0, 192, 192, 0.02) 100%);
}

.plan-name {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1f2937 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.plan-price {
    margin: 1.5rem 0;
    position: relative;
}

.price {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-color);
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 192, 192, 0.1);
}

.price span {
    font-size: 1.2rem;
    color: #64748b;
    font-weight: 600;
}

.plan-subtitle {
    color: #64748b;
    font-size: 1.1rem;
    margin: 0;
    font-weight: 500;
    line-height: 1.4;
}

/* Plan Features */
.plan-features {
    padding: 2rem;
    flex-grow: 1;
    background: linear-gradient(135deg, #fafbfc 0%, #ffffff 100%);
}

.feature {
    padding: 1rem 0;
    color: #374151;
    font-size: 1rem;
    border-bottom: 1px solid rgba(241, 245, 249, 0.6);
    position: relative;
    padding-left: 2rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

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

.feature:hover {
    color: var(--primary-color);
    padding-left: 2.5rem;
}

.feature::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    font-weight: 800;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 192, 192, 0.2);
}

/* Plan CTA */
.plan-cta {
    padding: 2rem;
    text-align: center;
    margin-top: auto;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.plan-btn {
    display: inline-block;
    width: 100%;
    padding: 16px 24px;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.plan-btn:hover {
    color: white;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 192, 192, 0.3);
}

.plan-btn:hover::before {
    left: 0;
}

.plan-btn.featured {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 192, 192, 0.3);
}

.plan-btn.featured::before {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}

.plan-btn.featured:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 192, 192, 0.4);
}

/* Nested Feature Items */
.pricing-feature-item.ms-4 {
    padding-left: 8px;
}

.pricing-feature-item.ms-4 .pricing-feature-icon {
    font-size: 0.9em;
}

.pricing-feature-item.ms-4 .pricing-feature-text {
    font-size: 0.9rem;
    color: #6b7280;
}

/* Comparison Table */
.comparison-table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    background-color: white;
    margin: 3rem auto;
    table-layout: fixed;
    border: none;
}

.comparison-table thead {
    background-color: var(--primary-color);
    color: white;
    position: relative;
}

.comparison-table th {
    text-align: center;
    padding: 20px 15px;
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    border: none;
    vertical-align: middle;
}

.comparison-table th:first-child {
    background-color: var(--primary-color);
    text-align: left;
    width: 240px;
}

.comparison-table td {
    padding: 16px 15px;
    text-align: center;
    vertical-align: middle;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    background-color: white;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: #1f2937;
    background-color: white;
}

.comparison-table tbody tr:hover td {
    background-color: rgba(248, 249, 250, 0.7);
}

.comparison-check {
    color: var(--primary-color);
    font-size: 1.1rem;
    display: inline-block;
}

.comparison-x {
    color: #dc3545;
    font-size: 1rem;
    opacity: 0.6;
}

.feature-header {
    font-weight: 600;
    color: #1f2937;
}

.comparison-table .btn-sm {
    padding: 8px 15px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 90px;
}

.comparison-table .btn-sm.btn-primary {
    background-color: var(--primary-color);
    border: none;
}

.comparison-table .btn-sm.btn-outline-primary {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    background-color: transparent;
}

.comparison-table .btn-sm.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
}

.comparison-table tr:last-child td {
    border-bottom: none;
    padding-top: 20px;
    padding-bottom: 20px;
}

/* Mobile Pricing Cards */
.pricing-card-mobile {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    margin-bottom: 1.25rem;
    border: 1px solid rgba(0,0,0,0.05);
}

.pricing-card-mobile.popular {
    border-color: var(--primary-color);
    position: relative;
}

.pricing-header-mobile {
    background: linear-gradient(to right, #f8f9fa, white);
    padding: 1.25rem;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    min-height: 80px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.pricing-header-mobile:hover {
    background: linear-gradient(to right, #f0f0f0, white);
}

.pricing-title-mobile {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.pricing-price-mobile {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0;
    text-align: right;
    line-height: 1.2;
    margin-left: 0.5rem;
    white-space: nowrap;
}

.pricing-dropdown-indicator {
    position: absolute;
    right: 1.25rem;
    bottom: 1.25rem;
    color: var(--primary-color);
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.pricing-card-mobile.expanded .pricing-dropdown-indicator {
    transform: rotate(180deg);
}

.pricing-body-mobile {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    border-top: 0px solid rgba(0,0,0,0.05);
    opacity: 0;
    transform: translateY(-10px);
}

.pricing-card-mobile.expanded .pricing-body-mobile {
    padding: 1.5rem 1.25rem 1.25rem;
    max-height: 800px;
    border-top: 1px solid rgba(0,0,0,0.05);
    opacity: 1;
    transform: translateY(0);
}

.pricing-mobile-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--gradient-primary);
    color: white;
    font-size: 0.7rem;
    padding: 4px 12px;
    border-radius: 0 16px 0 8px;
    font-weight: 600;
    box-shadow: -2px 2px 5px rgba(0,0,0,0.1);
    z-index: 1;
}

/* Mobile Comparison */
.mobile-comparison-selector {
    display: flex;
    overflow-x: auto;
    margin: 0 -15px 1.5rem;
    padding: 0 15px 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-padding: 15px;
    position: relative;
    scroll-snap-type: x mandatory;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 10px;
}

.mobile-comparison-selector::-webkit-scrollbar {
    display: none;
}

.mobile-comparison-option {
    flex: 0 0 auto;
    padding: 8px 20px;
    margin-right: 8px;
    background: white;
    border-radius: 50px;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: all 0.2s ease;
    scroll-snap-align: start;
    border: 1px solid rgba(0,0,0,0.08);
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
    min-width: 80px;
    text-align: center;
}

.mobile-comparison-option:last-child {
    margin-right: 0;
}

.mobile-comparison-option.active {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 3px 8px rgba(0,192,192,0.25);
    transform: translateY(-2px);
    border: 1px solid var(--primary-dark);
}

.mobile-feature-list {
    background: white;
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
}

.mobile-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed rgba(0,0,0,0.07);
}

.mobile-feature-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.mobile-feature-item .me-3 {
    flex: 0 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.mobile-feature-name {
    font-weight: 600;
    margin-bottom: 2px;
    color: #1f2937;
}

.mobile-feature-value {
    color: #6b7280;
    font-size: 0.9rem;
}

.mobile-comparison-section {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-comparison-section.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (min-width: 992px) {
    .pricing-features {
        min-height: 240px;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .pricing-features {
        min-height: 280px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-section {
        padding: 120px 0 80px;
    }
    
    .pricing-toggle {
        flex-direction: row;
        align-items: center;
        gap: 10px;
        max-width: 100%;
    }
    
    .pricing-toggle-label {
        font-size: 0.9rem;
    }
}

/* Add some additional animations and effects */
.plan-card {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.plan-card:nth-child(1) { animation-delay: 0.1s; }
.plan-card:nth-child(2) { animation-delay: 0.2s; }
.plan-card:nth-child(3) { animation-delay: 0.3s; }
.plan-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1199.98px) {
    .pricing-main-title {
        font-size: 3rem;
    }
    
    .plan-card.featured {
        transform: none;
        margin-bottom: 2rem;
    }
    
    .plan-card.featured:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 991.98px) {
    .pricing-main-title {
        font-size: 2.5rem;
    }
    
    .pricing-section {
        padding: 80px 0 100px;
    }
    
    .plan-header {
        padding: 2.5rem 1.5rem 1.5rem;
    }
    
    .plan-name {
        font-size: 1.75rem;
    }
    
    .price {
        font-size: 3rem;
    }
}

@media (max-width: 767.98px) {
    .pricing-main-title {
        font-size: 2.25rem;
        margin-bottom: 1rem;
    }
    
    .pricing-main-subtitle {
        font-size: 1.1rem;
    }
    
    .pricing-section {
        padding: 60px 0 80px;
    }
    
    .pricing-toggle-wrapper {
        margin-bottom: 3rem;
    }
    
    .pricing-period-toggle {
        flex-direction: column;
        gap: 0.5rem;
        padding: 12px;
        border-radius: 20px;
    }
    
    .toggle-label {
        padding: 10px 20px;
        width: 100%;
        text-align: center;
    }
    
    .plan-card {
        margin-bottom: 2rem;
    }
    
    .plan-card.featured {
        transform: none;
    }
    
    .plan-header {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .plan-name {
        font-size: 1.5rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .plan-features {
        padding: 1.5rem;
    }
    
    .feature {
        padding: 0.75rem 0;
        padding-left: 2rem;
        font-size: 0.95rem;
    }
    
    .plan-cta {
        padding: 1.5rem;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .trust-badges > div {
        margin-bottom: 0.75rem;
    }
}

/* Mobile Responsive for Pricing Explorer */
@media (max-width: 991.98px) {
    .plan-selector {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .plan-details {
        padding: 2rem 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .plan-title h3 {
        font-size: 2rem;
    }
    
    .plan-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 767.98px) {
    .plan-selector {
        grid-template-columns: 1fr;
    }
    
    .plan-option {
        padding: 1.5rem 1rem;
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .plan-option:last-child {
        border-bottom: none;
    }
    
    .plan-details {
        padding: 1.5rem;
    }
    
    .plan-header {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .plan-title {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .plan-title h3 {
        font-size: 1.8rem;
    }
    
    .popular-badge {
        margin-left: 0;
        margin-top: 0.5rem;
    }
    
    .feature-category {
        padding: 1.5rem;
    }
    
    .feature-category h5 {
        font-size: 1.1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

@media (max-width: 575.98px) {
    .pricing-main-title {
        font-size: 2rem;
    }
    
    .plan-badge {
        font-size: 0.7rem;
        padding: 6px 16px;
    }
    
    .plan-name {
        font-size: 1.4rem;
    }
    
    .price {
        font-size: 2.2rem;
    }
    
    .feature::before {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }
    
    .feature {
        padding-left: 1.8rem;
    }
    
    .pricing-cell {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .plan-header-content h3 {
        font-size: 1.2rem;
    }
    
    .plan-header-content .plan-price {
        font-size: 1.3rem;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin-bottom: 0.75rem;
    }
    
    .pricing-title {
        font-size: 1.3rem;
    }
    
    .pricing-price {
        font-size: 2.2rem;
        margin: 1rem 0;
    }
    
    .pricing-description {
        font-size: 0.85rem;
    }
    
    .pricing-feature-item {
        margin-bottom: 0.75rem;
    }
    
    .mobile-comparison-option {
        padding: 6px 15px;
        font-size: 0.85rem;
        min-width: 70px;
    }
    
    .mobile-feature-list {
        padding: 1.5rem;
    }
    
    .mobile-feature-name {
        font-size: 0.95rem;
    }
    
    .mobile-feature-value {
        font-size: 0.85rem;
    }
}

@media (max-width: 399.98px) {
    .mobile-comparison-option {
        padding: 6px 15px;
        font-size: 0.85rem;
        min-width: 70px;
    }
    
    .mobile-feature-list {
        padding: 1.5rem;
    }
    
    .mobile-feature-name {
        font-size: 0.95rem;
    }
    
    .mobile-feature-value {
        font-size: 0.85rem;
    }
}

/* Make sure all cards have equal height */
@media (min-width: 768px) {
    .pricing-cards-grid {
        align-items: stretch; /* Stretch all cards to same height */
    }
    
    .pricing-card {
        min-height: 600px; /* Minimum height for better alignment */
    }
}

/* Hero Section Responsive Improvements */
@media (max-width: 991.98px) {
    .hero-visual-container {
        display: none !important; /* Hide SVG on tablets and below */
    }
    
    .hero-section .col-lg-6 {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }
}

/* Pricing Toggle Responsive Fixes */
@media (max-width: 767.98px) {
    .pricing-toggle-wrapper {
        margin-bottom: 3rem;
    }
    
    .savings-badge {
        margin-left: 0;
        margin-top: 0.5rem;
        display: block;
    }
}

/* Container padding adjustments for small screens */
@media (max-width: 575.98px) {
    .pricing-section .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .hero-section .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Ultra small screens (320px and below) */
@media (max-width: 320px) {
    .pricing-main-title {
        font-size: 1.5rem;
        line-height: 1.2;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .pricing-card {
        margin-bottom: 0.75rem;
    }
    
    .pricing-header {
        padding: 1.5rem 0.75rem 1rem;
    }
    
    .pricing-features {
        padding: 1rem 0.75rem;
    }
    
    .pricing-cta {
        padding: 0 0.75rem 1.25rem;
    }
    
    .enterprise-cta-section {
        padding: 1.5rem 0.75rem;
    }
    
    .feature-item {
        font-size: 0.8rem;
    }
}