        @import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@300;400;500;600;700&display=swap');
        
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Vazirmatn', Arial, sans-serif !important;
    scrollbar-width: thin;
    scrollbar-color: #1E355F transparent;
}
        
        html, body {
            overflow-x: hidden;
        }
        
        body {
            font-family: 'Vazirmatn', Arial, sans-serif !important ;
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
            min-height: 100vh;
            font-size: 16px;
            line-height: 1.6;
            position: relative;
        }
        
        /* 3D Background Elements */
        .bg-3d {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
            pointer-events: none;
        }
        
        .geometric-shape {
            position: absolute;
            background: linear-gradient(135deg, rgba(30, 53, 95, 0.08), rgba(30, 53, 95, 0.03));
            border: 1px solid rgba(30, 53, 95, 0.1);
            backdrop-filter: blur(10px);
            animation: float3DShape 20s infinite ease-in-out;
        }
        
        .shape-1 {
            width: 200px;
            height: 200px;
            border-radius: 30px;
            top: 10%;
            left: 5%;
            transform: rotate(45deg);
            animation-delay: 0s;
        }
        
        .shape-2 {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            top: 60%;
            right: 10%;
            animation-delay: 7s;
        }
        
        .shape-3 {
            width: 100px;
            height: 300px;
            border-radius: 50px;
            bottom: 20%;
            left: 15%;
            transform: rotate(-30deg);
            animation-delay: 14s;
        }
        
        .shape-4 {
            width: 120px;
            height: 120px;
            border-radius: 20px;
            top: 30%;
            left: 70%;
            transform: rotate(60deg);
            animation-delay: 5s;
        }
        
        .shape-5 {
            width: 80px;
            height: 250px;
            border-radius: 40px;
            bottom: 40%;
            right: 25%;
            transform: rotate(15deg);
            animation-delay: 10s;
        }
        
        /* Grid Pattern */
        .grid-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(30, 53, 95, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(30, 53, 95, 0.03) 1px, transparent 1px);
            background-size: 60px 60px;
            animation: gridMove 30s linear infinite;
        }
        
        /* Floating Orbs */
        .floating-orbs {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        
        .orb {
            position: absolute;
            background: radial-gradient(circle, rgba(30, 53, 95, 0.1) 0%, rgba(30, 53, 95, 0.02) 70%, transparent 100%);
            border-radius: 50%;
            animation: orbFloat 25s infinite ease-in-out;
        }
        
        .orb-1 {
            width: 300px;
            height: 300px;
            top: 20%;
            left: 80%;
            animation-delay: 0s;
        }
        
        .orb-2 {
            width: 200px;
            height: 200px;
            bottom: 30%;
            left: 10%;
            animation-delay: 8s;
        }
        
        .orb-3 {
            width: 150px;
            height: 150px;
            top: 70%;
            right: 60%;
            animation-delay: 16s;
        }
        
        ::-webkit-scrollbar {
            width: 8px;
            background: transparent;
        }
        
        ::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, #1E355F, rgba(30, 53, 95, 0.7));
            border-radius: 10px;
            box-shadow: 0 0 8px rgba(30, 53, 95, 0.7);
            transition: background 0.3s ease;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(180deg, #162a4a, #1E355F);
        }
        
        .container {
            max-width: 1700px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        .header {
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 4px 30px rgba(30, 53, 95, 0.15);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(30, 53, 95, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: #1E355F;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: transform 0.3s ease;
        }
        
        .logo:hover {
            transform: scale(1.05);
        }
        
        .logo-img {
            height: 95px;
            width: auto;
            object-fit: contain;
            margin: 0;
            filter: drop-shadow(0 4px 8px rgba(30, 53, 95, 0.2));
        }
        
        .nav-menu {
            display: flex;
            gap: 2rem;
            list-style: none;
        }
        
        .nav-link {
            text-decoration: none;
            color: #334155;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            padding: 0.5rem 0;
        }
        
        .nav-link::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #1E355F, #A8E10C);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover {
            color: #1E355F;
        }
        
        .nav-link:hover::before {
            width: 100%;
        }
        
        .header-cta {
            background: linear-gradient(135deg, #1E355F, rgba(30, 53, 95, 0.8));
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(30, 53, 95, 0.3);
        }
        
        .header-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s;
        }
        
        .header-cta:hover {
            transform: translateY(-2px) scale(1.05);
            box-shadow: 0 15px 35px rgba(30, 53, 95, 0.4);
        }
        
        .header-cta:hover::before {
            left: 100%;
        }
        
        /* Hero Section */
        .pricing-hero {
            padding: 6rem 0 4rem;
            background: linear-gradient(135deg, #1E355F 0%, rgba(30, 53, 95, 0.9) 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .hero-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }
        
        .hero-shape {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: float3D 8s ease-in-out infinite;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .hero-shape:nth-child(1) {
            width: 120px;
            height: 120px;
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }
        
        .hero-shape:nth-child(2) {
            width: 80px;
            height: 80px;
            top: 60%;
            right: 10%;
            animation-delay: 3s;
        }
        
        .hero-shape:nth-child(3) {
            width: 150px;
            height: 150px;
            bottom: 20%;
            left: 15%;
            animation-delay: 6s;
        }
        
        .hero-content {
            text-align: center;
            position: relative;
            z-index: 2;
        }
        
        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            animation: slideInFromTop 1s ease-out;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        
        .hero-subtitle {
            font-size: 1.3rem;
            opacity: 0.95;
            margin-bottom: 2rem;
            animation: slideInFromBottom 1s ease-out 0.3s both;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* Section Titles */
        .section-title {
            font-size: 2.8rem;
            color: #1E355F;
            text-align: center;
            margin-bottom: 1rem;
            font-weight: 700;
            position: relative;
        }
        
        .section-title .highlight {
            background: linear-gradient(135deg, #1E355F, rgba(30, 53, 95, 0.7));
            -webkit-background-clip: text;
            /*-webkit-text-fill-color: transparent;*/
            background-clip: text;
            position: relative;
        }
        
        .section-subtitle {
            text-align: center;
            color: #64748b;
            font-size: 1.2rem;
            margin-bottom: 4rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* Pricing Plans */
        .pricing-section {
            padding: 8rem 0;
            position: relative;
        }
        
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-bottom: 4rem;
        }
        
        .pricing-card {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(30px);
            border-radius: 25px;
            padding: 3rem 2.5rem;
            position: relative;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(30, 53, 95, 0.1);
            box-shadow: 
                0 25px 60px rgba(30, 53, 95, 0.08),
                0 0 0 1px rgba(255, 255, 255, 0.5) inset;
            transform-style: preserve-3d;
            opacity: 0;
            animation: cardSlideIn 0.8s ease-out forwards;
        }
        
        .pricing-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(30, 53, 95, 0.02), transparent 50%);
            border-radius: 25px;
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }
        
        .pricing-card:hover::before {
            opacity: 1;
        }
        
        .pricing-card:nth-child(1) { animation-delay: 0.2s; }
        .pricing-card:nth-child(2) { animation-delay: 0.4s; }
        .pricing-card:nth-child(3) { animation-delay: 0.6s; }
        .pricing-card:nth-child(4) { animation-delay: 0.8s; }
        
        .pricing-card:hover {
            transform: translateY(-20px) rotateX(8deg) rotateY(4deg) scale(1.02);
            box-shadow: 
                0 35px 80px rgba(30, 53, 95, 0.15),
                0 0 0 1px rgba(30, 53, 95, 0.1) inset;
        }
        
        .pricing-card.featured {
            border: 2px solid rgba(30, 53, 95, 0.3);
            transform: scale(1.05);
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(30, 53, 95, 0.02));
            box-shadow: 
                0 30px 70px rgba(30, 53, 95, 0.12),
                0 0 0 1px rgba(30, 53, 95, 0.2) inset;
        }
        
        .plan-badge {
            position: absolute;
            top: -15px;
            right: 30px;
            background: linear-gradient(135deg, #A8E10C, #cfff00, #eaff70);
            color: #1E355F;
            padding: 0.6rem 1.5rem;
            border-radius: 25px;
            font-size: 0.85rem;
            font-weight: 600;
            box-shadow: 0 8px 25px rgba(30, 53, 95, 0.3);
            animation: pulse 3s infinite;
            backdrop-filter: blur(10px);
        }
        
        .plan-name {
            font-size: 1.8rem;
            font-weight: 700;
            color: #1E355F;
            text-align: center;
            margin-bottom: 1.5rem;
        }
        
        .plan-price {
            text-align: center;
            margin-bottom: 2.5rem;
        }
        
        .price-amount {
            font-size: 3rem;
            font-weight: 700;
            background: linear-gradient(135deg, #1E355F, rgba(30, 53, 95, 0.8));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .price-currency {
            font-size: 1.1rem;
            color: #64748b;
        }
        
        .price-period {
            display: block;
            font-size: 1rem;
            color: #64748b;
            margin-top: 0.5rem;
        }
        
        .plan-features {
            list-style: none;
            margin-bottom: 2.5rem;
        }
        
        .plan-features li {
            padding: 1rem 0;
            display: flex;
            align-items: center;
            gap: 1rem;
            color: #475569;
            border-bottom: 1px solid rgba(30, 53, 95, 0.1);
            transition: all 0.3s ease;
        }
        
        .plan-features li:hover {
            background: rgba(168, 225, 12, 0.05);
            padding-right: 1rem;
            border-radius: 8px;
        }
        
        .plan-features li:last-child {
            border-bottom: none;
        }
        
        .feature-check {
            width: 25px;
            height: 25px;
            background: linear-gradient(135deg, rgba(30, 53, 95, 0.9), #1E355F);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 0.9rem;
            flex-shrink: 0;
            box-shadow: 0 4px 15px rgba(30, 53, 95, 0.2);
        }
        
        .signup-btn {
            width: 100%;
            background: linear-gradient(135deg, rgba(168, 225, 12, 1) 0%, rgba(168, 225, 12, 0.6) 50%, rgba(168, 225, 12, 0.2) 100%);
            color: #1E355F;
            border: none;
            padding: 1.2rem 2rem;
            border-radius: 15px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 10px 30px rgba(30, 53, 95, 0.3);
			
        }
        
        .signup-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s;
        }
        
        .signup-btn:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 20px 40px rgba(30, 53, 95, 0.4);
        }
        
        .signup-btn:hover::before {
            left: 100%;
        }
        
        /* Features Comparison Table */
        .comparison-section {
            padding: 8rem 0;
            background: 
                linear-gradient(135deg, rgba(248, 250, 252, 0.8) 0%, rgba(248, 250, 252, 0.9) 100%),
                radial-gradient(circle at 20% 50%, rgba(30, 53, 95, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(30, 53, 95, 0.03) 0%, transparent 50%);
            position: relative;
        }
        
        .comparison-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                linear-gradient(45deg, transparent 49%, rgba(30, 53, 95, 0.02) 50%, transparent 51%),
                linear-gradient(-45deg, transparent 49%, rgba(30, 53, 95, 0.02) 50%, transparent 51%);
            background-size: 100px 100px;
            opacity: 0.3;
        }
        
        .comparison-table {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(30px);
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 
                0 30px 80px rgba(30, 53, 95, 0.12),
                0 0 0 1px rgba(255, 255, 255, 0.8) inset;
            border: 1px solid rgba(30, 53, 95, 0.1);
            position: relative;
        }
        
        .table-header {
            background: linear-gradient(135deg, #1E355F, rgba(30, 53, 95, 0.9));
            color: white;
            padding: 2rem;
            text-align: center;
            position: relative;
        }
        
        .table-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
            opacity: 0.5;
        }
        
        .table-header h3 {
            font-size: 1.8rem;
            font-weight: 600;
        }
        
        .comparison-grid {
            display: grid;
            grid-template-columns: 2fr repeat(4, 1fr);
            gap: 0;
        }
       .table-cell {
    padding: 1.5rem 1rem;
    border-bottom: 1px solid rgba(30, 53, 95, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    color: #1e355f; /* رنگ پایه متن */
}

.table-cell::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(168, 225, 12, 0.1), rgba(30, 53, 95, 0.05));
    transition: width 0.4s ease, opacity 0.4s ease;
    opacity: 0.8;
    z-index: 0;
}

.table-cell:hover::before {
    width: 100%;
	    animation: waveEffect 0.8s ease-in-out;

}

.table-cell:hover {
    color: #A8E10C;
    font-weight: 600;
	    animation: pulseText 0.8s ease-in-out;

}
@keyframes waveEffect {
    0% { transform: translateX(-100%); }
    50% { transform: translateX(10%); }
    100% { transform: translateX(0%); }
}

/* نوس کشیدن متن */
@keyframes pulseText {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}
        
        .feature-name {
            font-weight: 600;
            color: #1E355F;
            text-align: right;
            justify-content: flex-start;
            font-size: 1.1rem;
        }
        
        .check-icon {
            color: #A8E10C;
            font-size: 1.4rem;
            font-weight: bold;
            text-shadow: 0 2px 4px rgba(30, 53, 95, 0.2);
			  text-shadow: 
    -0.5px -0.5px 0 black,
     0.5px -0.5px 0 black,
    -0.5px  0.5px 0 black,
     0.5px  0.5px 0 black;
        }
        
        .cross-icon {
            color: #ef4444;
            font-size: 1.4rem;
            font-weight: bold;
        }
        
        .plan-header {
            background: linear-gradient(135deg, rgba(30, 53, 95, 0.1), rgba(30, 53, 95, 0.05));
            font-weight: 700;
            color: #1E355F;
            border-bottom: 2px solid rgba(30, 53, 95, 0.3);
            font-size: 1.2rem;
        }
        
        /* FAQ Section */
        .faq-section {
            padding: 8rem 0;
            background: linear-gradient(135deg, #1E355F 0%, rgba(30, 53, 95, 0.95) 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .faq-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
        }
        
        .faq-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.1;
        }
        
        .faq-shape {
            position: absolute;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            animation: float3D 12s ease-in-out infinite;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        } */
        .faq-shape:nth-child(1) {
            top: 10%;
            left: 5%;
            width: 100px;
            height: 100px;
            animation-delay: 0s;
        }
        
        .faq-shape:nth-child(2) {
            top: 60%;
            right: 10%;
            width: 150px;
            height: 150px;
            animation-delay: 4s;
        }
        
        .faq-shape:nth-child(3) {
            bottom: 20%;
            left: 15%;
            width: 80px;
            height: 80px;
            animation-delay: 8s;
        }
        
        .faq-container {
            position: relative;
            z-index: 2;
        }
        
        .faq-grid {
            display: grid;
            gap: 2rem;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(25px);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
            position: relative;
        }
        
        .faq-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: left 0.6s;
        }
        
        .faq-item:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
        }
        
        .faq-item:hover::before {
            left: 100%;
        }
        
        .faq-question {
            padding: 2rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }
        
        .faq-icon {
            font-size: 1.5rem;
            margin-left: 1rem;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            color: rgba(255, 255, 255, 0.8);
        }
        
        .faq-answer {
            padding: 0 2rem 2rem;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.7;
            font-size: 1rem;
            display: none;
        }
        
        .faq-item.active .faq-answer {
            display: block;
            animation: fadeInDown 0.4s ease-out;
        }
        
        .faq-item.active .faq-icon {
            transform: rotate(180deg);
            color: white;
        }
        
        /* Enhanced Animations */
        @keyframes float3DShape {
            0%, 100% {
                transform: translateY(0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
            }
            25% {
                transform: translateY(-30px) rotateX(15deg) rotateY(15deg) rotateZ(5deg);
            }
            50% {
                transform: translateY(-20px) rotateX(-10deg) rotateY(-10deg) rotateZ(-5deg);
            }
            75% {
                transform: translateY(-40px) rotateX(20deg) rotateY(5deg) rotateZ(10deg);
            }
        }
        
        @keyframes gridMove {
            0% {
                transform: translate(0, 0);
            }
            100% {
                transform: translate(60px, 60px);
            }
        }
        
        @keyframes orbFloat {
            0%, 100% {
                transform: translate(0, 0) scale(1);
                opacity: 0.3;
            }
            33% {
                transform: translate(-30px, -50px) scale(1.1);
                opacity: 0.5;
            }
            66% {
                transform: translate(50px, -30px) scale(0.9);
                opacity: 0.4;
            }
        }
        
        @keyframes slideInFromTop {
            from {
                opacity: 0;
                transform: translateY(-80px) rotateX(-15deg);
            }
            to {
                opacity: 1;
                transform: translateY(0) rotateX(0deg);
            }
        }
        
        @keyframes slideInFromBottom {
            from {
                opacity: 0;
                transform: translateY(80px) rotateX(15deg);
            }
            to {
                opacity: 1;
                transform: translateY(0) rotateX(0deg);
            }
        }
        
        @keyframes cardSlideIn {
            from {
                opacity: 0;
                transform: translateY(100px) rotateX(-20deg) scale(0.8);
            }
            to {
                opacity: 1;
                transform: translateY(0) rotateX(0deg) scale(1);
            }
        }
        
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes float3D {
            0%, 100% {
                transform: translateY(0px) rotateX(0deg) rotateY(0deg);
            }
            33% {
                transform: translateY(-30px) rotateX(15deg) rotateY(5deg);
            }
            66% {
                transform: translateY(-15px) rotateX(-10deg) rotateY(-5deg);
            }
        }
        
        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                box-shadow: 0 8px 25px rgba(30, 53, 95, 0.3);
            }
            50% {
                transform: scale(1.05);
                box-shadow: 0 12px 35px rgba(30, 53, 95, 0.5);
            }
        }
        
        /* Mobile Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .pricing-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .pricing-card.featured {
                transform: none;
            }
            
            .comparison-grid {
                grid-template-columns: 1fr;
                font-size: 0.9rem;
            }
            
            .table-cell {
                padding: 1rem;
            }
            
            .geometric-shape {
                display: none;
            }
        }
        
        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            
            .pricing-card {
                padding: 2rem;
            }
            
            .hero-title {
                font-size: 2rem;
            }
        }
