        /* Container */
        .container {
            max-width: 80rem;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .container-md {
            max-width: 64rem;
            margin: 0 auto;
            padding: 0 1rem;
        }

        /* Section */
        .section {
            padding: 5rem 1rem;
        }

        .section-muted {
            background-color: rgba(210, 220, 240, 0.3);
        }

        .section-gradient {
            background: var(--gradient-primary);
        }

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

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

        /* Card */
        .card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 0.75rem;
            box-shadow: var(--shadow-card);
            transition: all 0.3s ease;
            position: relative;
        }

        .card:hover {
            box-shadow: var(--shadow-primary);
        }

        .card-popular {
            border: 4px solid var(--primary);
            transform: scale(1.05);
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, var(--card-bg) 50%, rgba(59, 130, 246, 0.1) 100%);
        }

        .card-header {
            padding: 2rem;
            text-align: center;
        }

        .card-header-popular {
            padding-top: 3rem;
        }

        .card-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-align: center;
        }

        .card-title-popular {
            color: var(--primary);
        }

        .card-description {
            font-size: 1rem;
            color: var(--muted-foreground);
            margin-top: 1rem;
        }

        .card-content {
            padding: 0 2rem 2rem;
        }

        /* Badge */
        .badge-popular {
            position: absolute;
            top: -1rem;
            left: 50%;
            transform: translateX(-50%);
            background: var(--gradient-primary);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 9999px;
            font-size: 0.875rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            animation: pulse 2s infinite;
            z-index: 10;
        }

        .badge-save {
            display: inline-block;
            background-color: rgba(16, 185, 129, 0.1);
            color: rgb(4, 120, 87);
            font-size: 0.875rem;
            font-weight: 600;
            padding: 0.25rem 0.75rem;
            border-radius: 9999px;
            margin-top: 0.5rem;
        }

        .corner-decoration {
            position: absolute;
            top: 0;
            right: 0;
            width: 6rem;
            height: 6rem;
            background: linear-gradient(to bottom left, rgba(59, 130, 246, 0.2), transparent);
            border-bottom-left-radius: 100%;
        }

        /* Price */
        .price-wrapper {
            margin: 1rem 0;
        }

        .price {
            font-size: 3rem;
            font-weight: 700;
            color: var(--foreground);
        }

        .price-popular {
            color: var(--primary);
        }

        .price-period {
            color: var(--muted-foreground);
            font-size: 1rem;
        }

        /* Features List */
        .features-list {
            list-style: none;
            margin-bottom: 2rem;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            padding: 0.75rem 0;
        }

        .check-icon {
            width: 1.25rem;
            height: 1.25rem;
            color: var(--green-500);
            flex-shrink: 0;
            margin-top: 0.125rem;
        }

        .check-icon-primary {
            color: var(--primary);
        }

        .feature-text {
            font-size: 0.875rem;
        }

        .feature-highlight {
            font-weight: 700;
            color: var(--primary);
            background-color: rgba(59, 130, 246, 0.1);
            padding: 0.375rem 0.75rem;
            border-radius: 0.5rem;
        }

        .feature-bold {
            font-weight: 600;
            color: var(--foreground);
        }

        

        /* Info Cards */
        .info-card {
            text-align: center;
        }

        .icon-wrapper {
            width: 3rem;
            height: 3rem;
            background: var(--gradient-primary);
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
        }

        .icon {
            width: 1.5rem;
            height: 1.5rem;
            color: white;
        }

        /* Section Titles */
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 1.5rem;
        }

        .section-subtitle {
            font-size: 1.125rem;
            color: var(--muted-foreground);
            text-align: center;
            max-width: 42rem;
            margin: 0 auto 4rem;
        }

        .section-title-white {
            color: white;
        }

        .section-subtitle-white {
            color: rgba(255, 255, 255, 0.9);
        }

        /* FAQ */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .faq-card .card-header {
            text-align: left;
            padding-bottom: 0;
        }

        .faq-card .card-content {
            padding-top: 0.5rem;
        }

        .faq-title {
            font-size: 1.125rem;
            font-weight: 600;
        }

        /* Star icon */
        .star-icon {
            width: 1rem;
            height: 1rem;
            fill: currentColor;
        }

        

        /* Animations */
        @keyframes pulse {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.8;
            }
        }

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

        .animate-in {
            animation: fadeInUp 0.6s ease-out;
        }
