        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
            color: #1a1a1a;
            background: #ffffff;
            line-height: 1.6;
        }

        /* Hero Section */
        .pricing-hero {
            text-align: center;
            padding: 80px 40px 60px;
            max-width: 900px;
            margin: 0 auto;
        }

        .pricing-hero h1 {
            font-size: 56px;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.1;
            letter-spacing: -1px;
        }

        .pricing-hero p {
            font-size: 20px;
            color: #666;
            margin-bottom: 40px;
        }

        /* Toggle */
        .billing-toggle {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            margin-bottom: 60px;
        }

        .toggle-label {
            font-size: 16px;
            font-weight: 600;
            color: #666;
            transition: color 0.3s;
        }

        .toggle-label.active {
            color: #1a1a1a;
        }

        .toggle-switch {
            position: relative;
            width: 56px;
            height: 32px;
            background: #e5e7eb;
            border-radius: 16px;
            cursor: pointer;
            transition: background 0.3s;
        }

        .toggle-switch.active {
            background: #ff6154;
        }

        .toggle-slider {
            position: absolute;
            top: 4px;
            left: 4px;
            width: 24px;
            height: 24px;
            background: white;
            border-radius: 50%;
            transition: transform 0.3s;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .toggle-switch.active .toggle-slider {
            transform: translateX(24px);
        }

        .savings-badge {
            background: #fff4f3;
            color: #ff6154;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
        }

        /* Pricing Cards */
        .pricing-container {
            max-width: 1200px;
            margin: 0 auto 100px;
            padding: 0 40px;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 32px;
            align-items: stretch;
        }

        .pricing-card {
            background: white;
            border: 2px solid #e5e7eb;
            border-radius: 16px;
            padding: 40px;
            transition: all 0.3s;
            position: relative;
            display: flex;
            flex-direction: column;
        }

        .pricing-card:hover {
            box-shadow: 0 12px 40px rgba(0,0,0,0.08);
            transform: translateY(-4px);
        }

        .pricing-card.featured {
            border-color: #ff6154;
            box-shadow: 0 8px 32px rgba(255, 97, 84, 0.15);
        }

        .popular-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #ff6154 0%, #ff7a6e 100%);
            color: white;
            padding: 6px 20px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .plan-header {
            margin-bottom: 24px;
        }

        .plan-name {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 12px;
            color: #1a1a1a;
        }

        .plan-description {
            font-size: 14px;
            color: #666;
            min-height: 42px;
        }

        .price-container {
            margin-bottom: 32px;
        }

        .price {
            font-size: 48px;
            font-weight: 800;
            color: #1a1a1a;
            line-height: 1;
            display: flex;
            align-items: baseline;
            gap: 4px;
        }

        .price-currency {
            font-size: 28px;
        }

        .price-period {
            font-size: 16px;
            color: #666;
            font-weight: 500;
            margin-left: 4px;
        }

        .billed-annually {
            font-size: 14px;
            color: #666;
            margin-top: 8px;
        }

        .btn-plan {
            width: 100%;
            padding: 16px;
            border-radius: 8px;
            border: none;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            margin-bottom: 32px;
        }

        .btn-plan-primary {
            background: #ff6154;
            color: white;
            box-shadow: 0 4px 12px rgba(255, 97, 84, 0.3);
        }

        .btn-plan-primary:hover {
            background: #e5554a;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(255, 97, 84, 0.4);
        }

        .btn-plan-secondary {
            background: transparent;
            color: #333;
            border: 2px solid #e5e7eb;
        }

        .btn-plan-secondary:hover {
            border-color: #ff6154;
            color: #ff6154;
        }

        .features-list {
            list-style: none;
            flex-grow: 1;
        }

        .features-list li {
            padding: 10px 0;
            font-size: 15px;
            color: #333;
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .features-list i.fa-check {
            color: #ff6154;
            margin-top: 4px;
            flex-shrink: 0;
        }

        .features-list i.fa-times {
            color: #d1d5db;
            margin-top: 4px;
            flex-shrink: 0;
        }

        /* FAQ Section */
        .faq-section {
            max-width: 900px;
            margin: 100px auto;
            padding: 0 40px;
        }

        .faq-title {
            text-align: center;
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 60px;
            color: #1a1a1a;
        }

        .faq-item {
            border-bottom: 1px solid #e5e7eb;
            padding: 24px 0;
            overflow: hidden;
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-size: 18px;
            font-weight: 600;
            color: #1a1a1a;
        }

        .faq-question i {
            color: #ff6154;
            transition: transform 0.4s ease;
            flex-shrink: 0;
            margin-left: 16px;
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.4s ease;
            color: #666;
            font-size: 15px;
            line-height: 1.7;
            opacity: 0;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding-top: 16px;
            opacity: 1;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #ff6154 0%, #ff7a6e 100%);
            padding: 80px 40px;
            text-align: center;
            color: white;
            margin-top: 100px;
        }

        .cta-section h2 {
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .cta-section p {
            font-size: 18px;
            margin-bottom: 32px;
            opacity: 0.95;
        }

        .btn-white {
            background: white;
            color: #ff6154;
            padding: 16px 40px;
            border-radius: 8px;
            border: none;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.2s;
            box-shadow: 0 4px 16px rgba(0,0,0,0.1);
        }

        .btn-white:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.15);
        }

        @media (max-width: 768px) {
            .pricing-hero h1 {
                font-size: 36px;
            }

            .pricing-hero p {
                font-size: 16px;
            }

            .pricing-grid {
                grid-template-columns: 1fr;
            }

            .pricing-container,
            .faq-section {
                padding: 0 20px;
            }

            .faq-title {
                font-size: 32px;
            }

            .cta-section h2 {
                font-size: 32px;
            }
        }