<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 * Revenue Management - Subscription Plans Styling
 * Modern UI/UX 2025 Design
 */

/* Container Layout */
.revenue-subscription-plans {
    display: grid;
    grid-template-columns: repeat(var(--columns, 3), 1fr);
    gap: 28px;
    margin: 40px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

/* Responsive adjustments */
@media (max-width: 1100px) {
    .revenue-subscription-plans {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .revenue-subscription-plans {
        grid-template-columns: 1fr;
    }
}

/* Plan Card Design */
.revenue-plan {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    transition: all 0.35s cubic-bezier(0.17, 0.67, 0.83, 0.67);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
}

/* Hover effects */
.revenue-plan:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Featured plan */
.revenue-plan.is-featured {
    box-shadow: 0 15px 35px rgba(0, 118, 255, 0.15);
    border-color: rgba(0, 118, 255, 0.2);
}

.revenue-plan.is-featured::before {
    content: "Most Popular";
    position: absolute;
    top: 16px;
    right: -40px;
    background: linear-gradient(135deg, #0070F3 0%, #00C8FF 100%);
    color: white;
    font-weight: 600;
    font-size: 12px;
    padding: 6px 50px;
    transform: rotate(45deg);
    box-shadow: 0 2px 10px rgba(0, 118, 255, 0.2);
}

/* Plan header */
.revenue-plan-header {
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 25px;
    margin-bottom: 25px;
}

.revenue-plan-name {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 10px;
    color: #333;
    position: relative;
}

/* Custom styling for different plans */
.revenue-plan.plan-starter .revenue-plan-name {
    color: #2271b1;
}

.revenue-plan.plan-gold .revenue-plan-name {
    color: #F59E0B;
}

.revenue-plan.plan-platinum .revenue-plan-name {
    background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.revenue-plan.plan-custom .revenue-plan-name {
    background: linear-gradient(135deg, #10B981 0%, #3B82F6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Plan price */
.revenue-plan-price {
    font-size: 42px;
    font-weight: 800;
    margin: 20px 0 10px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 5px;
}

.revenue-plan-currency {
    font-size: 22px;
    font-weight: 500;
    color: #666;
}

.revenue-plan-interval {
    font-size: 16px;
    font-weight: 400;
    color: #888;
    margin-left: 5px;
}

/* Plan description */
.revenue-plan-description {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 5px;
}

/* Features list */
.revenue-plan-features {
    margin: 30px 0;
    padding: 0;
    list-style: none;
    flex-grow: 1;
}

.revenue-plan-feature {
    position: relative;
    padding-left: 30px;
    margin-bottom: 16px;
    font-size: 15px;
    color: #555;
}

.revenue-plan-feature::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 18px;
    height: 18px;
    background: url('data:image/svg+xml,&lt;svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%2338CB89"&gt;&lt;path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/&gt;&lt;/svg&gt;') no-repeat center;
    background-size: contain;
}

/* Plan action button */
.revenue-plan-action {
    margin-top: auto;
    padding-top: 20px;
}

.revenue-plan-button {
    display: block;
    width: 100%;
    padding: 14px 20px;
    background: #2271b1;
    color: white;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border: none;
    font-size: 16px;
    transition: all 0.2s;
}

.revenue-plan-button:hover, .revenue-plan-button:focus {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    background: #135e96;
    color: white;
    text-decoration: none;
}

/* Custom styling for different plan buttons */
.revenue-plan.plan-starter .revenue-plan-button {
    background: #2271b1;
}

.revenue-plan.plan-starter .revenue-plan-button:hover {
    background: #135e96;
}

.revenue-plan.plan-gold .revenue-plan-button {
    background: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);
}

.revenue-plan.plan-gold .revenue-plan-button:hover {
    background: linear-gradient(135deg, #D97706 0%, #F59E0B 100%);
}

.revenue-plan.plan-platinum .revenue-plan-button {
    background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
}

.revenue-plan.plan-platinum .revenue-plan-button:hover {
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
}

.revenue-plan.plan-custom .revenue-plan-button {
    background: linear-gradient(135deg, #10B981 0%, #3B82F6 100%);
}

.revenue-plan.plan-custom .revenue-plan-button:hover {
    background: linear-gradient(135deg, #059669 0%, #2563EB 100%);
}

/* Custom plan badge */
.revenue-plan-custom-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 12px;
}

/* Loading animation for dynamic content */
.revenue-subscription-loading {
    text-align: center;
    padding: 40px;
}

.revenue-loading-spinner {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top-color: #2271b1;
    animation: revenue-spin 1s ease-in-out infinite;
}

@keyframes revenue-spin {
    to { transform: rotate(360deg); }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .revenue-plan {
        background: #1f2937;
        border-color: rgba(255, 255, 255, 0.05);
    }

    .revenue-plan-header {
        border-color: rgba(255, 255, 255, 0.1);
    }

    .revenue-plan-name {
        color: #e5e7eb;
    }

    .revenue-plan-price {
        color: #f3f4f6;
    }

    .revenue-plan-currency {
        color: #d1d5db;
    }

    .revenue-plan-interval {
        color: #9ca3af;
    }

    .revenue-plan-description {
        color: #d1d5db;
    }

    .revenue-plan-feature {
        color: #d1d5db;
    }
}

/* Animation effects */
.revenue-plan {
    animation: revenue-fade-in 0.5s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes revenue-fade-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.revenue-plan:nth-child(1) { animation-delay: 0.1s; }
.revenue-plan:nth-child(2) { animation-delay: 0.2s; }
.revenue-plan:nth-child(3) { animation-delay: 0.3s; }
.revenue-plan:nth-child(4) { animation-delay: 0.4s; }</pre></body></html>