.price-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.pricing-wrapper {
    display: grid;
    grid-template-columns: 350px 1fr 1fr 1fr;
    gap: 20px;
    align-items: start;
}

.features-column {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.features-column h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #0f172a;
    line-height: 1.2;
    padding: 20px 0px;
}

.features-column p {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 8px;
}

.subtitle {
    font-weight: 700;
    color: #000000;
    margin-bottom: 32px;
}

.pricing-grid {
    display: grid;
    grid-template-rows: auto auto auto 1fr;
    gap: 0;
    height: 100%;
}

.plan-header {
    text-align: center;
    padding: 4px;
    background: white;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #d2ddeb;
    border-bottom: none;
}

.plan-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #0f172a;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 8px;
}

.currency {
    font-size: 1rem;
    color: #64748b;
    margin-right: 2px;
}

.amount {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
}

.period {
    font-size: 0.875rem;
    color: #64748b;
    margin-left: 2px;
}

.subtitle-text {
    font-size: 0.75rem;
    color: #64748b;
    margin-bottom: 12px;
}

.description {
    font-size: 0.875rem;
    color: #232323;
    margin-bottom: 20px;
    line-height: 1.4;
}

.contact-btn {
    width: 100%;
    background: #000000;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 32px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-bottom: 8px;
}

.contact-btn:hover {
    background: #0f172a;
}

.demo-link {
    text-align: center;
    font-size: 0.75rem;
    background: linear-gradient(to right, #7f00ff, #007bff, #7f00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.demo-link a {
    color: #3b82f6;
    text-decoration: none;
}

.demo-link a:hover {
    text-decoration: underline;
}

.features-list {
    display: grid;
    gap: 0;
}

.feature-category {
    display: contents;
}

.category-header {
    font-size: 1.125rem;
    font-weight: 600;
    color: #0f172a;
    padding: 16px 0;
    border-bottom: 1px solid #d2ddeb;
    margin-bottom: 0;
}

.feature-item {
    font-size: 0.875rem;
    color: #64748b;
    padding: 12px 8px;
    border-bottom: 1px solid #d2ddeb;
    display: flex;
    align-items: center;
    height: 48px;
    box-sizing: border-box;
}

.features-values {
    background: white;
    border: 1px solid #e2e8f0;
    border-top: none;
    border-radius: 0 0 12px 12px;
    display: grid;
    gap: 0;
}

.category-spacer {
    height: 58px;
    border-bottom: 1px solid #d2ddeb;
}

.feature-value {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    font-size: 0.875rem;
    font-weight: 500;
    border-bottom: 1px solid #d2ddeb;
    box-sizing: border-box;
}

.feature-value.available {
    color: #10b981;
    font-weight: 600;
}

.feature-value.unavailable {
    color: #94a3b8;
    font-weight: 600;
}

.feature-value.text {
    color: #0f172a;
    font-size: 0.8rem;
    font-weight: 600;
}

.professional {
    position: relative;
}

/* Mobile Card Layout */
.mobile-plans {
    display: none;
}

.mobile-plan-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    overflow: hidden;
}

.mobile-plan-header {
    text-align: center;
    padding: 24px;
    border-bottom: 1px solid #e2e8f0;
}

.mobile-plan-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #0f172a;
}

.mobile-plan-features {
    padding: 0;
}

.mobile-feature-group {
    border-bottom: 1px solid #e2e8f0;
}

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

.mobile-category-header {
    background: #f8fafc;
    padding: 16px 20px;
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    border-bottom: 1px solid #e2e8f0;
}

.mobile-feature-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #f1f5f9;
}

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

.mobile-feature-name {
    font-size: 0.875rem;
    color: #64748b;
    flex: 1;
}

.mobile-feature-value {
    font-size: 0.875rem;
    font-weight: 600;
    text-align: right;
}

.mobile-feature-value.available {
    color: #10b981;
}

.mobile-feature-value.unavailable {
    color: #94a3b8;
}

.mobile-feature-value.text {
    color: #0f172a;
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
    .pricing-wrapper {
        display: none;
    }
    
    .mobile-plans {
        display: block;
    }
    
    .features-column {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 20px 16px;
    }
    
    .features-column {
        padding: 24px;
    }
    
    .features-column h1 {
        font-size: 1.75rem;
    }
    
    .mobile-plan-header {
        padding: 20px;
    }
    
    .mobile-plan-header h3 {
        font-size: 1.25rem;
    }
    
    .amount {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .features-column h1 {
        font-size: 1.5rem;
    }
    
    .mobile-plan-header {
        padding: 16px;
    }
    
    .amount {
        font-size: 1.5rem;
    }
    
    .mobile-feature-item {
        padding: 12px 16px;
    }
}


.enterprise-plan {
    position: relative;
    width: 100vw; /* Full viewport width */
    margin-left: calc(-50vw + 50%); /* Break out of container */
    overflow: hidden;
    margin-top: 100px;
    min-height: 300px; /* Minimum height for very small screens */
}

.enter-prise {
    width: 100%;
    height: auto; /* Maintain original aspect ratio */
    display: block;
    min-height: 300px; /* Ensure minimum height */
    object-fit: cover; /* Maintain aspect ratio while filling container */
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    max-width: 90%;
    width: 100%;
    padding: 20px; /* Add padding for better spacing */
}

.hero-title {
    font-size: clamp(1.5rem, 4vw, 3rem); /* Responsive font size */
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: clamp(0.9rem, 2.5vw, 1.2rem); /* Responsive font size */
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.hero-button {
    background-color: transparent;
    color: white;
    border: 1px solid white;
    border-radius: 24px;
    padding: 10px 16px;
    font-size: clamp(0.8rem, 2vw, 1rem); /* Responsive button text */
    min-width: 120px; /* Minimum button width */
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-button:hover {
    background-color: white;
    color: #333;
}

/* Media queries for extra control */
@media (max-width: 768px) {
    .enterprise-plan {
        margin-top: 50px;
        min-height: 250px;
    }
    
    .hero-content {
        padding: 15px;
        max-width: 95%;
    }
    
    .hero-title {
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        margin-bottom: 1.2rem;
    }
}

@media (max-width: 480px) {
    .enterprise-plan {
        margin-top: 30px;
        min-height: 200px;
    }
    
    .hero-content {
        padding: 10px;
    }
    
    .hero-button {
        padding: 8px 14px;
        min-width: 100px;
    }
}

/* Utility classes */
.pb-4 {
    padding-bottom: 1rem;
}
