        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Outfit', sans-serif;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-dark) 100%);
            min-height: 100vh;
            position: relative;
            overflow-x: hidden;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:
                radial-gradient(circle at 20% 50%, var(--primary-color-light) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, var(--primary-color) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, var(--primary-color-light) 0%, transparent 50%);
            pointer-events: none;
            z-index: 0;
        }

        .pricing-section {
            max-width: 1400px;
            margin: 4rem auto;
            position: relative;
            z-index: 1;
        }

        /* Header Styles */
        .pricing-header {
            text-align: center;
            margin-bottom: 4rem;
            animation: fadeInDown 0.8s ease-out;
        }

        .current-plan-banner {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            margin-bottom: 1rem;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 2rem;
            font-size: 1rem;
        }

        .current-plan-banner .current-plan-label {
            color: rgba(255, 255, 255, 0.85);
        }

        .current-plan-banner .current-plan-value {
            font-weight: 700;
            color: var(--text-color-light);
        }

        .pricing-header h2 {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--text-color-light);
            margin-bottom: 1rem;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .pricing-header p {
            font-size: 1.25rem;
            color: var(--text-color-light);
            max-width: 600px;
            margin: 0 auto;
        }

        /* Billing Toggle */
        .billing-toggle {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
            animation: fadeIn 1s ease-out 0.3s both;
        }

        .billing-toggle span {
            color: var(--text-color-light);
            font-weight: 600;
            font-size: 1rem;
        }

        .toggle-switch {
            position: relative;
            width: 60px;
            height: 32px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .toggle-switch:hover {
            background: rgba(255, 255, 255, 0.3);
        }

        .toggle-slider {
            position: absolute;
            top: 2px;
            left: 2px;
            width: 24px;
            height: 24px;
            background: var(--background-color-light);
            border-radius: 50%;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }

        .toggle-switch.active .toggle-slider {
            transform: translateX(28px);
        }

        .save-badge {
            background: linear-gradient(135deg, var(--success-color) 0%, var(--success-color) 100%);
            color: var(--text-color-light);
            padding: 0.375rem 0.875rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
            animation: pulse 2s ease-in-out infinite;
        }

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

        /* Pricing Card */
        .pricing-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 24px;
            padding: 2.5rem;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, transform 0.3s ease;
            border: 2px solid rgba(255, 255, 255, 0.5);
            animation: fadeInUp 0.6s ease-out backwards;
            opacity: 1;
            transform: scale(1);
        }

        .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;
        }

        .pricing-card:nth-child(4) {
            animation-delay: 0.4s;
        }

        .pricing-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-dark) 100%);
            opacity: 0;
            transition: all 0.3s ease;
        }

        .pricing-card:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
            border-color: rgba(99, 102, 241, 0.5);
        }

        .pricing-card:hover::before {
            opacity: 1;
        }

        /* Premium Card */
        .pricing-card.premium {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-dark) 100%);
            color: var(--text-color-light);
            border: 2px solid rgba(255, 255, 255, 0.8);
            transform: scale(1.05);
            box-shadow: 0 20px 50px rgba(99, 102, 241, 0.4);
        }

        .pricing-card.premium::before {
            background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
            opacity: 1;
        }

        .pricing-card.premium:hover {
            transform: translateY(-12px) scale(1.07);
            box-shadow: 0 35px 70px rgba(99, 102, 241, 0.5);
        }

        .pricing-card.premium .card-title,
        .pricing-card.premium .card-description,
        .pricing-card.premium .feature-text,
        .pricing-card.premium .price {
            color: var(--text-color-light);
        }

        .pricing-card.premium .feature-icon {
            background: rgba(255, 255, 255, 0.2);
            color: var(--text-color-light);
        }

        /* Popular Badge */
        .popular-badge {
            position: absolute;
            top: 3.5rem;
            right: -3rem;
            background: linear-gradient(135deg, var(--warning-color) 0%, var(--warning-color) 100%);
            color: var(--text-color-light);
            padding: 0.5rem 4rem;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            transform: rotate(45deg);
            box-shadow: 0 4px 15px rgba(245, 158, 11, 0.5);
        }

        /* Free Badge */
        .free-badge {
            background: linear-gradient(135deg, var(--success-color) 0%, var(--success-color) 100%);
            color: var(--text-color-light);
            padding: 0.375rem 1rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            display: inline-block;
            margin-bottom: 1rem;
            box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
        }

        /* Card Content */
        .card-icon {
            width: 64px;
            height: 64px;
            border-radius: 16px;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-dark) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 1.75rem;
            color: var(--text-color-light);
            box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
        }

        .pricing-card.premium .card-icon {
            background: rgba(255, 255, 255, 0.2);
        }

        .card-title {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--text-color-dark);
            margin-bottom: 0.75rem;
        }

        .card-description {
            font-size: 0.95rem;
            color: var(--text-color-medium);
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .price {
            margin-bottom: 2rem;
        }

        .price-amount {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--text-color-dark);
            line-height: 1;
        }

        .price-currency {
            font-size: 2rem;
            vertical-align: super;
        }

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

        .pricing-card.premium .price-amount,
        .pricing-card.premium .price-period {
            color: var(--text-color-light);
        }

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

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 0.875rem;
            margin-bottom: 1rem;
            animation: slideInLeft 0.5s ease-out backwards;
        }

        .feature-item:nth-child(1) {
            animation-delay: 0.1s;
        }

        .feature-item:nth-child(2) {
            animation-delay: 0.15s;
        }

        .feature-item:nth-child(3) {
            animation-delay: 0.2s;
        }

        .feature-item:nth-child(4) {
            animation-delay: 0.25s;
        }

        .feature-item:nth-child(5) {
            animation-delay: 0.3s;
        }

        .feature-icon {
            width: 24px;
            height: 24px;
            border-radius: 8px;
            background: rgba(99, 102, 241, 0.1);
            color: var(--primary-color);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .pricing-card:hover .feature-icon {
            transform: rotate(360deg);
        }

        .feature-text {
            font-size: 0.95rem;
            color: var(--text-color-dark);
            line-height: 1.5;
        }

        .feature-highlight {
            font-weight: 600;
            color: var(--primary-color);
        }

        .pricing-card.premium .feature-highlight {
            color: var(--text-color-light);
        }

        /* CTA Button */
        .cta-button {
            width: 100%;
            padding: 1rem 2rem;
            border: none;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .cta-button:hover::before {
            width: 300px;
            height: 300px;
        }

        .cta-button span {
            position: relative;
            z-index: 1;
        }

        .cta-primary {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-dark) 100%);
            color: var(--text-color-light);
            box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
        }

        .cta-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(99, 102, 241, 0.5);
        }

        .cta-outline {
            background: transparent;
            color: var(--text-color-dark);
            border: 2px solid var(--border-color);
        }

        .cta-outline:hover {
            background: var(--background-color-dark);
            border-color: var(--primary-color);
            color: var(--primary-color);
            transform: translateY(-3px);
        }

        .pricing-card.premium .cta-button {
            background: var(--background-color-light);
            color: var(--primary-color);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

        .pricing-card.premium .cta-button:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
        }

        /* Trial Badge */
        .trial-badge {
            display: inline-block;
            background: linear-gradient(135deg, var(--success-color) 0%, var(--success-color) 100%);
            color: var(--text-color-light);
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-top: 0.5rem;
        }

        /* Current Plan */
        .pricing-card.current-plan {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.2);
        }

        .pricing-card.current-plan form {
            padding-top: 2rem;
        }

        .current-plan-badge {
            position: absolute;
            top: 1rem;
            left: 1rem;
            background: var(--primary-color);
            color: var(--text-color-light);
            padding: 0.25rem 0.625rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            z-index: 2;
        }

        .pricing-card.premium .current-plan-badge {
            background: rgba(255, 255, 255, 0.25);
            color: var(--text-color-light);
        }

        .trial-days-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.3);
            color: inherit;
            padding: 0.2rem 0.5rem;
            border-radius: 12px;
            font-size: 0.7rem;
            font-weight: 600;
            margin-left: 0.5rem;
            vertical-align: middle;
        }

        .pricing-card.premium .trial-days-badge {
            background: rgba(255, 255, 255, 0.25);
        }

        .cta-button.disabled,
        .cta-button[aria-disabled="true"] {
            pointer-events: none;
            cursor: default;
            opacity: 0.85;
        }

        .cta-button.disabled:hover,
        .cta-button[aria-disabled="true"]:hover {
            transform: none;
        }

        /* Footer Note */
        .pricing-footer {
            text-align: center;
            margin-top: 4rem;
            animation: fadeIn 1s ease-out 0.6s both;
        }

        .pricing-footer p {
            color: var(--text-color-light);
            font-size: 1rem;
        }

        .pricing-footer a {
            color: var(--text-color-light);
            font-weight: 600;
            text-decoration: none;
            border-bottom: 2px solid var(--text-color-light);
            transition: all 0.3s ease;
        }

        .pricing-footer a:hover {
            opacity: 0.8;
            border-bottom-color: transparent;
        }

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

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

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

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

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }

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

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.05);
            }
        }

        /* Responsive */
        @media (max-width: 992px) {
            .pricing-section {
                margin: 3rem auto;
                padding: 0 1.5rem;
            }

            .pricing-header {
                margin-bottom: 3rem;
            }

            .pricing-header h2 {
                font-size: 3rem;
            }

            .pricing-header p {
                font-size: 1.125rem;
            }

            .pricing-grid {
                gap: 1.75rem;
                margin-bottom: 2.5rem;
            }

            .pricing-card {
                padding: 2.25rem;
            }
        }

        @media (max-width: 768px) {
            .pricing-section {
                margin: 2.5rem auto;
                padding: 0 1.25rem;
            }

            .pricing-header {
                margin-bottom: 2.5rem;
            }

            .pricing-header h2 {
                font-size: 2.5rem;
            }

            .pricing-header p {
                font-size: 1rem;
            }

            .current-plan-banner {
                padding: 0.4rem 0.875rem;
                font-size: 0.9375rem;
            }

            .billing-toggle {
                margin-top: 1.5rem;
                gap: 0.75rem;
            }

            .billing-toggle span {
                font-size: 0.9375rem;
            }

            .pricing-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                margin-bottom: 2rem;
            }

            .pricing-card {
                padding: 2rem;
                border-radius: 20px;
            }

            .pricing-card.premium {
                transform: scale(1);
            }

            .pricing-card.premium:hover {
                transform: translateY(-12px) scale(1.02);
            }

            .card-icon {
                width: 56px;
                height: 56px;
                font-size: 1.5rem;
            }

            .card-title {
                font-size: 1.5rem;
            }

            .card-description {
                font-size: 0.9375rem;
            }

            .price-amount {
                font-size: 2.5rem;
            }

            .price-currency {
                font-size: 1.5rem;
            }

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

            .cta-button {
                padding: 0.875rem 1.5rem;
                font-size: 0.9375rem;
            }

            .pricing-footer {
                margin-top: 3rem;
            }

            .pricing-footer p {
                font-size: 0.9375rem;
            }
        }

        @media (max-width: 640px) {
            .pricing-section {
                margin: 2rem auto;
                padding: 0 1rem;
            }

            .pricing-header {
                margin-bottom: 2rem;
            }

            .pricing-header h2 {
                font-size: 2.25rem;
            }

            .pricing-header p {
                font-size: 0.9375rem;
            }

            .current-plan-banner {
                padding: 0.375rem 0.75rem;
                font-size: 0.875rem;
            }

            .pricing-grid {
                gap: 1.25rem;
                margin-bottom: 1.75rem;
            }

            .pricing-card {
                padding: 1.75rem;
                border-radius: 18px;
            }

            .card-icon {
                width: 48px;
                height: 48px;
                font-size: 1.25rem;
            }

            .card-title {
                font-size: 1.375rem;
            }

            .price-amount {
                font-size: 2.25rem;
            }

            .price-currency {
                font-size: 1.25rem;
            }

            .cta-button {
                padding: 0.8125rem 1.25rem;
                font-size: 0.875rem;
            }

            .pricing-footer {
                margin-top: 2.5rem;
            }
        }

        @media (max-width: 480px) {
            .pricing-section {
                margin: 1.5rem auto;
                padding: 0 0.75rem;
            }

            .pricing-header {
                margin-bottom: 1.5rem;
            }

            .pricing-header h2 {
                font-size: 1.875rem;
            }

            .pricing-header p {
                font-size: 0.875rem;
            }

            .current-plan-banner {
                padding: 0.3rem 0.625rem;
                font-size: 0.8125rem;
            }

            .billing-toggle span {
                font-size: 0.875rem;
            }

            .toggle-switch {
                width: 52px;
                height: 28px;
            }

            .toggle-slider {
                width: 20px;
                height: 20px;
            }

            .toggle-switch.active .toggle-slider {
                transform: translateX(24px);
            }

            .pricing-grid {
                gap: 1rem;
                margin-bottom: 1.5rem;
            }

            .pricing-card {
                padding: 1.5rem;
                border-radius: 16px;
            }

            .card-icon {
                width: 44px;
                height: 44px;
                font-size: 1.125rem;
            }

            .card-title {
                font-size: 1.25rem;
            }

            .card-description {
                font-size: 0.875rem;
            }

            .price-amount {
                font-size: 2rem;
            }

            .price-currency {
                font-size: 1.125rem;
            }

            .feature-item {
                margin-bottom: 0.75rem;
            }

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

            .cta-button {
                padding: 0.875rem 1rem;
                font-size: 0.8125rem;
                min-height: 44px;
            }

            .pricing-footer {
                margin-top: 2rem;
            }

            .pricing-footer p {
                font-size: 0.875rem;
            }
        }

        @media (max-width: 360px) {
            .pricing-section {
                margin: 1.25rem auto;
                padding: 0 0.5rem;
            }

            .pricing-header h2 {
                font-size: 1.625rem;
            }

            .pricing-header p {
                font-size: 0.8125rem;
            }

            .current-plan-banner {
                font-size: 0.75rem;
            }

            .pricing-card {
                padding: 1.25rem;
                border-radius: 14px;
            }

            .card-icon {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }

            .card-title {
                font-size: 1.125rem;
            }

            .price-amount {
                font-size: 1.75rem;
            }

            .price-currency {
                font-size: 1rem;
            }

            .cta-button {
                padding: 0.75rem 0.875rem;
                font-size: 0.75rem;
            }
        }
