/* Pricing Page Specific Styles */

/* New Pricing Hero */
.pricing-hero-new {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
    color: white;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

header{
    background-color: white;
}

.logo img{
    width: auto;
    height: 25px;
    margin-top: 7.5px;
}

.logo{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

.beta-tag{
    font-size: 0.65rem;
    font-weight: 600;
    color: white;
    margin-left: 10px;
    margin-top: 0.5px;
    background-color: rgb(17, 109, 247);
    padding: 3px 6px;
    border-radius: 150px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    animation: float 6s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: -5%;
    animation-delay: 0s;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(66, 133, 244, 0.2) 100%);
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: -3%;
    animation-delay: 2s;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, rgba(26, 115, 232, 0.15) 100%);
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 15%;
    animation-delay: 4s;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(13, 71, 161, 0.2) 100%);
}

.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.floating-icons i {
    position: absolute;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.12);
    animation: floatIcon 8s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(66, 133, 244, 0.3);
}

.floating-icons i:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icons i:nth-child(2) {
    top: 15%;
    right: 20%;
    animation-delay: 2s;
}

.floating-icons i:nth-child(3) {
    bottom: 30%;
    left: 15%;
    animation-delay: 4s;
}

.floating-icons i:nth-child(4) {
    bottom: 20%;
    right: 10%;
    animation-delay: 6s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.1; }
    50% { transform: translateY(-15px) rotate(5deg); opacity: 0.15; }
}

.hero-content-wrapper {
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.hero-main-content {
    flex: 1;
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-badge i {
    color: #fbbf24;
    margin-right: 0.5rem;
    filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.4));
}

.pricing-hero-new h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 500px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 0.3rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.plan-preview-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transform: perspective(1000px) rotateY(-15deg);
}

.preview-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    width: 200px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    display: block;
    color: white;
    text-decoration: none;
    cursor: pointer;
}

.preview-card:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    color: white;
}

.preview-card:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

.featured-preview {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.18);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(26, 115, 232, 0.2);
}

.featured-preview:hover {
    transform: scale(1.1) translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
    color: white;
}

.free-preview {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.free-preview:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.free-preview .preview-icon {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(66, 133, 244, 0.3) 100%);
    border-color: rgba(255, 255, 255, 0.3);
}

.preview-badge {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1f2937;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.8rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.preview-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(66, 133, 244, 0.3) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.preview-icon i {
    font-size: 1.5rem;
    color: white;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.preview-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.preview-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    opacity: 0.95;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.hero-arrow {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.hero-arrow a {
    display: inline-block;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}

.hero-arrow a:hover {
    color: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
}

.hero-arrow i {
    font-size: 2rem;
    animation: bounce 2s infinite;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Unified Pricing Section */
.unified-pricing {
    background-color: white;
    padding: 6rem 0;
}

.pricing-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.pricing-intro p {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.pricing-plan-card {
    background-color: white;
    border: 2px solid var(--gray-200);
    border-radius: 16px;
    padding: 1.75rem;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

/* Free Plan Styling */
.pricing-plan-card.free {
    background: white;
    border-color: var(--gray-300);
}

.pricing-plan-card.free:hover {
    border-color: var(--primary-color);
}

.pricing-plan-card.free .plan-badge {
    background: var(--gray-600);
    color: white;
}

.pricing-plan-card.free .plan-price .amount {
    color: var(--gray-900);
}

/* Individual Plan Styling */
.pricing-plan-card.individual {
    background: white;
}

.pricing-plan-card.individual .plan-badge {
    background: var(--primary-color);
    color: white;
}

/* Featured Plan Styling */
.pricing-plan-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
    transform: scale(1.02);
}

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

/* Enterprise Plan Styling */
.pricing-plan-card.enterprise {
    border-color: var(--gray-400);
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--gray-700);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.plan-badge.popular {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.plan-header {
    text-align: center;
    margin-bottom: 1.2rem;
}

.plan-header h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--gray-900);
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 0.4rem;
}

.plan-price .currency {
    font-size: 1.2rem;
    font-weight: 600;
    margin-right: 0.2rem;
    color: var(--gray-700);
}

.plan-price .amount {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
    color: var(--gray-900);
}

.plan-price .period {
    font-size: 1rem;
    margin-left: 0.2rem;
    color: var(--gray-500);
    font-weight: 500;
}

.contact-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.plan-subtitle {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin: 0;
}

.plan-features {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.plan-features ul {
    list-style: none;
}

.plan-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.6rem;
    font-size: 0.85rem;
    color: var(--gray-700);
}

.plan-features li i {
    color: var(--success-color);
    margin-right: 0.8rem;
    font-size: 1rem;
}

.plan-cta {
    margin-top: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.plan-cta .btn {
    width: 100%;
    padding: 0.7rem 1.2rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.trial-note {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin: 0;
    font-style: italic;
}

/* Pricing Benefits */
.pricing-benefits {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 3rem;
}

.benefits-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.benefit {
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    gap: 0.8rem;
}

.benefit i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.benefit span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
}

/* Enterprise Solutions Section */
.enterprise-solutions {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 6rem 0;
}

.enterprise-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.enterprise-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.enterprise-intro p {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.enterprise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.enterprise-card {
    background: white;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.enterprise-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.enterprise-card.premium {
    border-color: #f59e0b;
    background: linear-gradient(135deg, #fffbeb 0%, #ffffff 100%);
}

.enterprise-card.premium:hover {
    border-color: #d97706;
}

.enterprise-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 2rem;
    text-align: center;
    position: relative;
}

.enterprise-card.premium .enterprise-header {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.enterprise-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    backdrop-filter: blur(10px);
}

.enterprise-icon i {
    font-size: 2rem;
    color: white;
}

.enterprise-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: white;
}

.enterprise-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

.enterprise-content {
    padding: 2rem;
}

.enterprise-price {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray-200);
}

.enterprise-price .amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    display: block;
    line-height: 1;
}

.enterprise-price .period {
    font-size: 1rem;
    color: var(--gray-500);
    font-weight: 500;
}

.contact-price {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    display: block;
}

.enterprise-price .price-note {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-top: 0.5rem;
    font-style: italic;
}

.enterprise-description {
    margin-bottom: 2rem;
}

.enterprise-description p {
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

.enterprise-features h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--gray-800);
}

.enterprise-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.enterprise-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: var(--gray-700);
}

.enterprise-features li i {
    color: var(--primary-color);
    margin-right: 0.8rem;
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.enterprise-cta {
    text-align: center;
}

.enterprise-cta .btn {
    width: 100%;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
}

/* Enterprise Benefits */
.enterprise-benefits {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.benefits-intro {
    text-align: center;
    margin-bottom: 2rem;
}

.benefits-intro h3 {
    font-size: 1.8rem;
    color: var(--gray-900);
    margin: 0;
}

.enterprise-benefits .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    text-align: center;
    padding: 1.5rem;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--gray-50) 0%, white 100%);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--gray-900);
}

.benefit-card p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.5;
    margin: 0;
}

/* Free Trial Highlight */
.free-trial-highlight {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    padding: 5rem 0;
}

.trial-card {
    max-width: 900px;
    margin: 0 auto;
    background-color: white;
    border-radius: 20px;
    padding: 3rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.trial-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trial-icon i {
    font-size: 2rem;
    color: white;
}

.trial-content {
    flex: 1;
}

.trial-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.trial-content p {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.trial-features {
    flex-shrink: 0;
}

.trial-features ul {
    list-style: none;
}

.trial-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: var(--gray-700);
}

.trial-features li i {
    color: #10b981;
    margin-right: 0.8rem;
}

/* Custom Plans */
.custom-plans {
    background-color: white;
    padding: 6rem 0;
}

.custom-plans-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.custom-plans-text {
    flex: 1;
}

.custom-plans-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--gray-900);
}

.custom-plans-text p {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.custom-features {
    margin-bottom: 2rem;
}

.custom-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--gray-700);
}

.custom-features li i {
    color: var(--primary-color);
    margin-right: 0.8rem;
}

.custom-plans-image {
    flex: 0.8;
    display: flex;
    justify-content: center;
}

.custom-plans-image .image-placeholder {
    width: 350px;
    height: 300px;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--gray-600);
}

.custom-plans-image .image-placeholder i {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.custom-plans-image .image-placeholder p {
    font-weight: 600;
    margin: 0;
}

/* Responsive Design for Pricing */
@media screen and (max-width: 1024px) {
    .hero-content-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    
    .plan-preview-cards {
        flex-direction: row;
        transform: none;
        gap: 1rem;
    }
    
    .preview-card {
        width: 150px;
        padding: 1rem;
    }
    
    .featured-preview {
        transform: scale(1.05);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .pricing-plan-card.featured {
        transform: none;
    }
    
    .pricing-plan-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .enterprise-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .trial-card,
    .custom-plans-content {
        flex-direction: column;
        text-align: center;
    }
    
    .trial-card {
        gap: 2rem;
    }
    
    .custom-plans-content {
        gap: 3rem;
    }
    
    .custom-plans-image {
        order: -1;
    }
    
    /* Enhanced Custom Plans for Tablet */
    .custom-plans {
        background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        position: relative;
        overflow: hidden;
    }
    
    .custom-plans::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.05"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.05"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
        pointer-events: none;
    }
    
    .custom-plans-content {
        position: relative;
        z-index: 2;
        background: white;
        border-radius: 24px;
        padding: 3rem;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
    }
    
    .custom-plans-text h2 {
        font-size: 2.2rem;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 1.5rem;
    }
    
    .custom-plans-text p {
        font-size: 1.1rem;
        color: var(--gray-700);
        line-height: 1.7;
    }
    
    .custom-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin: 2rem 0;
    }
    
    .custom-features li {
        background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
        padding: 1rem;
        border-radius: 12px;
        border: 1px solid rgba(26, 115, 232, 0.1);
        transition: all 0.3s ease;
    }
    
    .custom-features li:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(26, 115, 232, 0.1);
    }
    
    .custom-plans-image .image-placeholder {
        width: 100%;
        height: 250px;
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        border-radius: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: white;
        position: relative;
        overflow: hidden;
    }
    
    .custom-plans-image .image-placeholder::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
        pointer-events: none;
    }
    
    .custom-plans-image .image-placeholder i {
        font-size: 4rem;
        margin-bottom: 1rem;
        color: white;
        text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        position: relative;
        z-index: 1;
    }
    
    .custom-plans-image .image-placeholder p {
        font-weight: 600;
        font-size: 1.2rem;
        margin: 0;
        color: white;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        position: relative;
        z-index: 1;
    }
}

@media screen and (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    .pricing-hero-new {
        padding: 4rem 0 3rem;
        min-height: 70vh;
    }

    .hero-main-content{
        margin-top: 8rem;
       
    }

   .pricing-grid .pricing-plan-card{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    max-width: auto;
   }

   .plan-cta{
    max-width: auto;
    
    width: 100%;
   }

    .pricing-hero-new .container{
        
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        
        }
    
    .pricing-hero-new h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .stat-item {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .plan-preview-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .shape {
        opacity: 0.5;
    }
    
    .floating-icons i {
        opacity: 0.1;
    }
    
    .pricing-intro h2 {
        font-size: 2rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-plan-card {
        padding: 1.5rem;
    }
    
    .plan-price .amount {
        font-size: 2.5rem;
    }
    
    .benefits-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .enterprise-intro h2 {
        font-size: 2rem;
    }
    
    .enterprise-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .enterprise-card {
        margin: 0 1rem;
    }
    
    .enterprise-header {
        padding: 1.5rem;
    }
    
    .enterprise-content {
        padding: 1.5rem;
    }
    
    .enterprise-benefits {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .enterprise-benefits .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .trial-card {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .custom-plans-text h2 {
        font-size: 2rem;
    }
    
    /* Enhanced Custom Plans for Mobile */
    .custom-plans {
        background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
        position: relative;
        overflow: hidden;
        padding: 4rem 0;
    }
    
    .custom-plans::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="mobile-grain" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="12" cy="12" r="0.8" fill="%23ffffff" opacity="0.08"/><circle cx="37" cy="37" r="0.8" fill="%23ffffff" opacity="0.08"/><circle cx="25" cy="5" r="0.4" fill="%23ffffff" opacity="0.04"/><circle cx="5" cy="30" r="0.4" fill="%23ffffff" opacity="0.04"/><circle cx="45" cy="20" r="0.4" fill="%23ffffff" opacity="0.04"/></pattern></defs><rect width="100" height="100" fill="url(%23mobile-grain)"/></svg>');
        pointer-events: none;
    }
    
    .custom-plans-content {
        position: relative;
        z-index: 2;
        background: white;
        border-radius: 20px;
        padding: 2.5rem 1.5rem;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(10px);
        margin: 0 1rem;
    }
    
    .custom-plans-text h2 {
        font-size: 1.8rem;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 1.2rem;
        text-align: center;
        line-height: 1.3;
    }
    
    .custom-plans-text p {
        font-size: 1rem;
        color: var(--gray-700);
        line-height: 1.6;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .custom-features {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.8rem;
        margin: 2rem 0;
    }
    
    .custom-features li {
        background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
        padding: 1.2rem;
        border-radius: 16px;
        border: 1px solid rgba(26, 115, 232, 0.08);
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    }
    
    .custom-features li:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(26, 115, 232, 0.12);
        border-color: rgba(26, 115, 232, 0.15);
    }
    
    .custom-features li i {
        font-size: 1.2rem;
        margin-right: 1rem;
        color: var(--primary-color);
        flex-shrink: 0;
    }
    
    .custom-plans-image .image-placeholder {
        width: 100%;
        height: 200px;
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        border-radius: 16px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: white;
        position: relative;
        overflow: hidden;
        margin-top: 2rem;
    }
    
    .custom-plans-image .image-placeholder::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="mobile-dots" width="15" height="15" patternUnits="userSpaceOnUse"><circle cx="7.5" cy="7.5" r="1.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23mobile-dots)"/></svg>');
        pointer-events: none;
    }
    
    .custom-plans-image .image-placeholder i {
        font-size: 3rem;
        margin-bottom: 0.8rem;
        color: white;
        text-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
        position: relative;
        z-index: 1;
    }
    
    .custom-plans-image .image-placeholder p {
        font-weight: 600;
        font-size: 1.1rem;
        margin: 0;
        color: white;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        position: relative;
        z-index: 1;
    }
    
    .custom-plans-text .btn {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 12px;
        margin-top: 1.5rem;
        box-shadow: 0 4px 15px rgba(26, 115, 232, 0.2);
        transition: all 0.3s ease;
    }
    
    .custom-plans-text .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(26, 115, 232, 0.3);
    }
}

@media screen and (max-width: 576px) {
    .hero-stats {
        gap: 0.5rem;
    }
    
    .stat-item {
        flex-direction: column;
        gap: 0.2rem;
    }
    
    .preview-card {
        width: 140px;
        padding: 0.8rem;
    }
    
    .preview-icon {
        width: 40px;
        height: 40px;
    }
    
    .preview-icon i {
        font-size: 1.2rem;
    }
    
    .benefits-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .benefit {
        flex-direction: row;
        text-align: left;
        gap: 1rem;
    }
    
    .benefit i {
        font-size: 1.5rem;
    }
    
    .enterprise-card {
        margin: 0;
    }
    
    .enterprise-header h3 {
        font-size: 1.5rem;
    }
    
    .enterprise-price .amount {
        font-size: 2rem;
    }
    
    .contact-price {
        font-size: 1.5rem;
    }
    
    .custom-plans-image .image-placeholder {
        width: 280px;
        height: 250px;
    }
    
    /* Enhanced Custom Plans for Small Mobile */
    .custom-plans {
        padding: 3rem 0;
    }
    
    .custom-plans-content {
        padding: 2rem 1rem;
        margin: 0 0.5rem;
        border-radius: 16px;
    }
    
    .custom-plans-text h2 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    
    .custom-plans-text p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .custom-features {
        gap: 0.6rem;
        margin: 1.5rem 0;
    }
    
    .custom-features li {
        padding: 1rem;
        border-radius: 12px;
    }
    
    .custom-features li i {
        font-size: 1.1rem;
        margin-right: 0.8rem;
    }
    
    .custom-plans-image .image-placeholder {
        height: 180px;
        border-radius: 12px;
        margin-top: 1.5rem;
    }
    
    .custom-plans-image .image-placeholder i {
        font-size: 2.5rem;
        margin-bottom: 0.6rem;
    }
    
    .custom-plans-image .image-placeholder p {
        font-size: 1rem;
    }
    
    .custom-plans-text .btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
        margin-top: 1.2rem;
    }
} 

/* Floating Cards Styles */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 100%;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 450px;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    max-width: 280px;
}

.floating-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.card-icon i {
    font-size: 1.5rem;
    color: white;
}

.card-content h4 {
    color: #1a1a1a;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.card-content p {
    color: #666666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.price-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1rem;
}

/* Card Positioning and Animation */
.card-1 {
    top: 20px;
    left: 30px;
    animation: float-card-1 6s ease-in-out infinite;
}

.card-2 {
    top: 120px;
    right: 50px;
    animation: float-card-2 6s ease-in-out infinite;
    animation-delay: 1s;
}

.card-3 {
    bottom: -80px;
    left: 20%;
    transform: translateX(-50%);
    animation: float-card-3 6s ease-in-out infinite;
    animation-delay: 2s;
}

@keyframes float-card-1 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

@keyframes float-card-2 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(-2deg); }
}

@keyframes float-card-3 {
    0%, 100% { transform: translateX(-50%) translateY(0px) rotate(0deg); }
    50% { transform: translateX(-50%) translateY(-10px) rotate(1deg); }
}

/* Responsive Design for Floating Cards */
@media screen and (max-width: 1200px) {
    .floating-elements {
        height: 350px;
    }
    
    .floating-card {
        max-width: 350px;
        padding: 1.5rem;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
    }
    
    .card-icon i {
        font-size: 1.3rem;
    }
}

@media screen and (max-width: 1024px) {
    .hero-visual {
        margin-top: 3rem;
    }
    
    .floating-elements {
        display: none;
    }
    
}

@media screen and (max-width: 576px) {
    .floating-elements {
        display: none;
    }
    
} 

/* Position View All Plans button lower */
.hero-cta {
    margin-top: 2rem;
}


/* More specific targeting for the button positioning */
.hero-main-content .hero-cta {
    margin-top: 3rem;
    margin-bottom: 2rem;
}

/* Custom White Button for View All Plans */
.btn-outline.btn-white {
    background-color: white;
    border: 1px solid white;
    color: var(--primary-color);
}

.btn-outline.btn-white:hover {
    background-color: #f8f9fa;
    border-color: #e9ecef;
    color: var(--primary-color);
}

/* Force button positioning with !important */
.pricing-hero-new .hero-main-content .hero-cta {
    margin-top: 4rem !important;
}

/* Mobile logo sizing for pricing page */
@media screen and (max-width: 480px) {
    .logo img {
        height: 18px !important;
        margin-top: 4px;
    }

    .beta-tag {
        font-size: 0.43rem !important;
        padding: 2px 5px !important;
        margin-left: 5px !important;
        margin-top: 2px;
    }
}

@media screen and (max-width: 330px) {
    .logo img {
        height: 16px !important;
        margin-top: 3px;
    }

    .beta-tag {
        font-size: 0.4rem !important;
        padding: 1px 4px !important;
        margin-left: 4px !important;
        margin-top: 6px;
    }
} 