        /* Base reset and tokens */
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: 'Inter', sans-serif; -webkit-font-smoothing: antialiased; background: #fff; color: #111; padding-bottom: 4rem; }

        /* Pricing Section */
        .pricing { padding: 8rem 1.25rem; position: relative; overflow: hidden; }
        
        .pricing__hd { text-align: center; max-width: 600px; margin: 0 auto 4rem; }
        
        .pricing__pill {
            display: inline-flex; align-items: center; gap: 6px;
            font-size: .6875rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em;
            color: #2563eb; background: #eff6ff; padding: 6px 14px; border-radius: 100px;
            border: 1px solid #dbeafe; margin-bottom: 1.5rem; justify-content: center;
        }
        .pricing__h2 { font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 800; letter-spacing: -0.03em; color: #111; line-height: 1.1; margin-bottom: 1rem; }
        .pricing__sub { font-size: 1.125rem; color: #4b5563; line-height: 1.6; font-weight: 500; }
        
        /* Toggle */
        .pricing__toggle-wrap { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 2rem; font-weight: 600; font-size: 1rem; color: #4b5563; }
        .pricing__toggle {
            position: relative; width: 56px; height: 32px; background: #e5e7eb; border-radius: 100px; cursor: pointer; transition: background 0.3s;
        }
        .pricing__toggle.annual { background: #2563eb; }
        .pricing__toggle::after {
            content: ''; position: absolute; top: 4px; left: 4px; width: 24px; height: 24px; background: #fff; border-radius: 50%;
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        .pricing__toggle.annual::after { transform: translateX(24px); }
        .pricing__badge {
            background: #ecfdf5; color: #059669; font-size: .75rem; padding: 4px 8px; border-radius: 100px; font-weight: 700; border: 1px solid #d1fae5;
        }

        /* Grid */
        .pricing__grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; align-items: center; }
        
        /* Cards */
        .p-card {
            background: #fff; border: 1px solid rgba(0,0,0,0.08); border-radius: 24px; padding: 3rem 2rem;
            display: flex; flex-direction: column; transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 10px 30px -10px rgba(0,0,0,0.03);
            position: relative; height: 100%;
        }
        .p-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -10px rgba(0,0,0,0.08); }
        
        .p-card__name { font-size: 1.25rem; font-weight: 700; color: #111; margin-bottom: 8px; }
        .p-card__desc { font-size: .9375rem; color: #6b7280; font-weight: 500; margin-bottom: 2rem; line-height: 1.5; height: 44px; }
        
        .p-card__price-wrap { display: flex; align-items: flex-end; gap: 4px; margin-bottom: 2rem; }
        .p-card__val { font-size: 3.5rem; font-weight: 800; color: #111; line-height: 1; letter-spacing: -0.05em; }
        .p-card__period { font-size: 1rem; color: #6b7280; font-weight: 500; padding-bottom: 6px; }
        
        .p-card__btn {
            display: flex; align-items: center; justify-content: center; width: 100%;
            padding: 16px; border-radius: 12px; font-weight: 600; font-size: 1rem;
            text-decoration: none; transition: all 0.2s; border: 1px solid;
            background: #fff; color: #111; border-color: #e5e7eb;
        }
        .p-card__btn:hover { background: #f9fafb; border-color: #d1d5db; }
        
        /* Features */
        .p-card__feats { margin-top: 2.5rem; border-top: 1px solid #f3f4f6; padding-top: 2.5rem; display: flex; flex-direction: column; gap: 16px; flex-grow: 1; }
        .p-card__feat { display: flex; align-items: flex-start; gap: 12px; font-size: .9375rem; color: #374151; font-weight: 500; line-height: 1.4; }
        .p-card__feat svg { width: 20px; height: 20px; color: #2563eb; flex-shrink: 0; stroke-width: 2.5; }
        .p-card__feat.op-50 { opacity: 0.5; }
        .p-card__feat.op-50 svg { color: #9ca3af; }
        
        /* Emphasized Card (Middle) */
        .p-card--pro {
            background: #111827; color: #fff; border-color: #1f2937; padding: 4rem 2.5rem;
            box-shadow: 0 40px 80px -20px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05);
        }
        .p-card--pro:hover { transform: translateY(-8px); box-shadow: 0 50px 100px -20px rgba(0,0,0,0.6); }
        .p-card--pro::before {
            content: ''; position: absolute; top: -1px; left: 20%; right: 20%; height: 1px;
            background: linear-gradient(90deg, transparent, #3b82f6, transparent);
        }
        
        .p-card--pro .p-card__name, .p-card--pro .p-card__val { color: #fff; }
        .p-card--pro .p-card__desc, .p-card--pro .p-card__period { color: #a1a1aa; }
        .p-card--pro .p-card__feats { border-color: rgba(255,255,255,0.1); }
        .p-card--pro .p-card__feat { color: #d4d4d8; }
        .p-card--pro .p-card__feat svg { color: #60a5fa; }
        
        .p-card--pro .p-card__btn {
            background: linear-gradient(135deg, #2563eb, #7c3aed); color: #fff; border: none;
            box-shadow: 0 8px 24px rgba(37,99,235,0.25);
        }
        .p-card--pro .p-card__btn:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(37,99,235,0.4); background: linear-gradient(135deg, #1d4ed8, #6d28d9); }
        
        .p-card__badge-top {
            position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%);
            background: linear-gradient(135deg, #3b82f6, #8b5cf6); color: #fff;
            padding: 6px 16px; border-radius: 100px; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
            box-shadow: 0 4px 12px rgba(59,130,246,0.3);
        }

        @media (max-width: 1024px) {
            .pricing__grid { grid-template-columns: 1fr; max-width: 480px; }
            .p-card--pro { padding: 3rem 2rem; }
        }

        @media (max-width: 640px) {
            .pricing { padding: 4rem 1rem; }
            .pricing__hd { margin-bottom: 2.5rem; }
            .pricing__h2 { font-size: 2rem; }
            .pricing__sub { font-size: 1rem; }
            .pricing__toggle-wrap { font-size: .875rem; gap: .75rem; }
            .p-card { padding: 2rem 1.5rem; border-radius: 20px; }
            .p-card--pro { padding: 2.5rem 1.5rem; }
            .p-card__desc { height: auto; }
            .p-card__val { font-size: 2.5rem; }
            .p-card__feats { gap: 12px; }
            .p-card__feat { font-size: .875rem; }
        }
