/* Reset and Base */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: #fafbfc;
            color: #1a202c;
            line-height: 1.6;
        }

        /* Main Container */
        .pricing-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            padding: 100px 20px 80px;
            position: relative;
            overflow: hidden;
        }

        .pricing-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image:
                radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: float 20s ease-in-out infinite;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px) rotate(0deg);
            }

            33% {
                transform: translateY(-10px) rotate(1deg);
            }

            66% {
                transform: translateY(5px) rotate(-1deg);
            }
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        /* Header */
        .pricing-header {
            text-align: center;
            margin-bottom: 80px;
            animation: fadeInUp 0.8s ease-out;
        }

        .pricing-header h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            color: white;
            margin-bottom: 20px;
            letter-spacing: -0.02em;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .pricing-header p {
            font-size: clamp(1.1rem, 2vw, 1.3rem);
            color: rgba(255, 255, 255, 0.9);
            max-width: 600px;
            margin: 0 auto 30px auto;
            font-weight: 400;
        }

        .users-count {
            display: inline-flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            padding: 8px 20px;
            border-radius: 25px;
            color: white;
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 10px;
        }

        .users-count::before {
            content: "👥";
            margin-right: 8px;
        }

        /* Pricing Grid */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            max-width: 1100px;
            margin: 0 auto;
            align-items: start;
        }

        /* Pricing Cards */
        .pricing-card {
            background: white;
            border-radius: 24px;
            padding: 40px 32px 48px;
            position: relative;
            box-shadow:
                0 20px 40px -12px rgba(0, 0, 0, 0.15),
                0 0 0 1px rgba(255, 255, 255, 0.05);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 2px solid transparent;
            min-height: 600px;
            display: flex;
            flex-direction: column;
            overflow: hidden;
            transform: translateZ(0);
            backface-visibility: hidden;
        }

        .pricing-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #667eea, #764ba2);
            border-radius: 24px 24px 0 0;
        }

        .pricing-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow:
                0 32px 64px -12px rgba(0, 0, 0, 0.25),
                0 0 0 1px rgba(255, 255, 255, 0.1);
        }

        /* Featured Card */
        .pricing-card.featured {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            transform: scale(1.05);
            z-index: 10;
            border: 3px solid rgba(255, 255, 255, 0.2);
        }

        .pricing-card.featured::before {
            background: rgba(255, 255, 255, 0.2);
            height: 3px;
        }

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

        /* Popular Badge */
        .popular-badge {
            position: absolute;
            top: 5px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
            color: white;
            padding: 6px 20px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
        }

        /* Card Content */
        .card-header {
            text-align: center;
            margin-bottom: 32px;
        }

        .plan-name {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: inherit;
        }

        .plan-description {
            font-size: 0.95rem;
            opacity: 0.7;
            margin-bottom: 24px;
        }

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

        .price-currency {
            font-size: 2rem;
            font-weight: 700;
            margin-right: 4px;
        }

        .price-amount {
            font-size: 4rem;
            font-weight: 800;
            line-height: 0.9;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .pricing-card.featured .price-amount {
            background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .price-period {
            font-size: 1rem;
            opacity: 0.6;
            margin-left: 4px;
        }

        /* Features List */
        .features-list {
            list-style: none;
            margin: 0 0 40px 0;
            padding: 0;
            flex: 1;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 16px;
            font-size: 0.95rem;
            line-height: 1.4;
        }

        .feature-icon {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .feature-icon.included {
            background: #10b981;
            color: white;
        }

        .feature-icon.not-included {
            background: #e5e7eb;
            color: #9ca3af;
        }

        .pricing-card.featured .feature-icon.included {
            background: rgba(255, 255, 255, 0.2);
            color: white;
        }

        .feature-icon svg {
            width: 12px;
            height: 12px;
            fill: currentColor;
        }

        .feature-text {
            color: inherit;
            flex: 1;
        }

        .feature-text.not-included {
            opacity: 0.5;
            text-decoration: line-through;
        }

        .feature-highlight {
            font-weight: 600;
            position: relative;
        }

        .feature-highlight::after {
            content: '✨';
            margin-left: 8px;
            font-size: 0.8em;
        }

        /* CTA Buttons */
        .cta-button {
            width: 100%;
            padding: 16px 24px;
            border-radius: 16px;
            font-weight: 700;
            font-size: 1rem;
            text-decoration: none;
            text-align: center;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 2px solid transparent;
            display: block;
            margin-top: auto;
            position: relative;
            overflow: hidden;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button.primary {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
        }

        .cta-button.primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
        }

        .cta-button.secondary {
            background: transparent;
            color: #667eea;
            border: 2px solid #667eea;
        }

        .cta-button.secondary:hover {
            background: #667eea;
            color: white;
            transform: translateY(-2px);
        }

        .cta-button.featured {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .cta-button.featured:hover {
            background: white;
            color: #667eea;
            transform: translateY(-2px);
        }

        /* Social Proof Section */
        .social-proof {
            text-align: center;
            margin-top: 60px;
            color: white;
        }

        .testimonials {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }

        .testimonial {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 20px;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 15px;
            font-size: 0.95rem;
            line-height: 1.5;
        }

        .testimonial-author {
            font-weight: 600;
            font-size: 0.9rem;
        }

        /* Trust Section */
        .trust-section {
            text-align: center;
            margin-top: 80px;
            color: white;
            animation: fadeInUp 0.8s ease-out 0.3s both;
        }

        .trust-title {
            font-size: 1.1rem;
            margin-bottom: 30px;
            opacity: 0.9;
            font-weight: 500;
        }

        .trust-indicators {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
            opacity: 0.8;
            font-weight: 500;
            padding: 8px 16px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            backdrop-filter: blur(10px);
        }

        .trust-icon {
            width: 20px;
            height: 20px;
        }


        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

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

        .pricing-card {
            animation: fadeInUp 0.8s ease-out;
            animation-fill-mode: both;
        }

        .pricing-card:nth-child(1) {
            animation-delay: 0.1s;
        }

        .pricing-card:nth-child(2) {
            animation-delay: 0.2s;
        }

        .pricing-card:nth-child(3) {
            animation-delay: 0.3s;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .pricing-grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                gap: 25px;
            }

            .pricing-card.featured {
                transform: none;
            }
        }

        @media (max-width: 768px) {
            .pricing-section {
                padding: 15px 15px 15px;
            }

            .pricing-grid {
                grid-template-columns: 1fr;
                gap: 25px;
                max-width: 400px;
            }

            .pricing-card {
                padding: 32px 24px 40px;
                min-height: 500px;
            }

            .trust-indicators {
                gap: 20px;
                flex-direction: column;
            }

            .trust-item {
                padding: 6px 12px;
                font-size: 0.85rem;
            }

            .faq-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .testimonials {
                grid-template-columns: 1fr;
                gap: 15px;
            }
        }

        /* Performance Optimizations */
        .pricing-card {
            contain: layout style;
            will-change: transform;
        }

        .pricing-card:not(:hover) {
            will-change: auto;
        }

        /* Focus States for Accessibility */
        .cta-button:focus {
            outline: 3px solid rgba(255, 255, 255, 0.5);
            outline-offset: 2px;
        }

        /* High Contrast Mode */
        @media (prefers-contrast: high) {
            .pricing-card {
                border: 2px solid #000;
            }

            .feature-icon.included {
                background: #000;
                color: #fff;
            }
        }

        /* Reduced Motion */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }

            .pricing-card:hover {
                transform: none;
            }
        }