/* Pricing Page Styles - Modern Premium Design */

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global performance optimizations */
html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

:root {
    --yellow-primary: #FFD700;
    --yellow-glow: rgba(255, 215, 0, 0.3);
    --dark-bg: #0a0a0a;
    --dark-secondary: #1a1a1a;
    --dark-card: #1e1e1e;
    --text-primary: #ffffff;
    --text-secondary: #b4b4b4;
    --text-muted: #888888;
    --border-color: rgba(255, 215, 0, 0.1);
    --success-green: #10b981;
    --success-glow: rgba(16, 185, 129, 0.2);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    /* Smooth scrolling */
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    /* Performance optimizations */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Hide footer */
footer {
    display: none !important;
}

/* ==== PRICING HERO SECTION ==== */
.pricing-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
    padding: 6rem 0 4rem;
    /* Performance optimizations */
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.pricing-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 25% 30%, var(--yellow-glow) 0%, transparent 50%),
                radial-gradient(circle at 75% 70%, var(--yellow-glow) 0%, transparent 50%);
    opacity: 0.1;
    pointer-events: none;
}

.pricing-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* ==== PRICING HEADER ==== */
.pricing-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out;
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 9999px;
    border: 1px solid rgba(255, 215, 0, 0.5);
    background: #0e0e0e;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.2px;
    box-shadow: 0 0 18px rgba(255, 215, 0, 0.15);
    margin-bottom: 2rem;
}

.pricing-title {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--yellow-primary) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ==== PRICING GRID ==== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch; /* This ensures all cards stretch to same height */
    min-height: 700px; /* Ensure consistent minimum height */
    /* Performance optimizations */
    will-change: transform;
    transform: translateZ(0);
}

/* ==== PRICING CARDS ==== */
.pricing-card {
    background: var(--dark-card);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease-out;
    display: flex;
    flex-direction: column;
    height: 100%; /* Ensure cards take full height */
    /* Performance optimizations */
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--yellow-primary);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.2), 
                0 0 40px rgba(255, 215, 0, 0.1);
}

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

/* Featured plan styling */
.pricing-card.featured {
    border-color: var(--yellow-primary);
    background: linear-gradient(135deg, var(--dark-card) 0%, rgba(255, 215, 0, 0.15) 100%);
    box-shadow: 0 0 60px rgba(255, 215, 0, 0.3), 0 0 100px rgba(255, 215, 0, 0.1);
    scale: 1;
    z-index: 2;
}

.most-popular-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--yellow-primary) 0%, #ffed4e 100%);
    color: var(--dark-bg);
    padding: 8px 24px;
    border-radius: 0 0 12px 12px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 3;
    text-align: center;
    white-space: nowrap;
}

/* ==== PLAN HEADER ==== */
.plan-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.plan-name {
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 1.75rem;
    color: var(--yellow-primary);
    margin-top: 0.75rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.plan-description {
    font-family: 'Inter', sans-serif;
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.plan-price {
    margin-bottom: 1.5rem;
}

.price-amount {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 3rem;
    color: var(--yellow-primary);
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

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

.price-period {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.price-note {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: white;
    margin-top: 0.5rem;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* ==== FEATURES LIST ==== */
.features-list {
    margin-bottom: 2.5rem;
    flex-grow: 1; /* This makes the features section expand to fill available space */
    min-height: 420px; /* Set minimum height for feature comparison */
}

.features-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    min-height: 44px;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.02);
    padding-left: 8px;
    margin-left: -8px;
    border-radius: 8px;
}

.feature-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.feature-icon.included {
    background: var(--success-green);
    color: white;
    box-shadow: 0 0 10px var(--success-glow);
}

.feature-icon.not-included {
    background: #dc2626;
    color: white;
    box-shadow: 0 0 10px rgba(220, 38, 38, 0.3);
}

.feature-text {
    font-family: 'Inter', sans-serif;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.4;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.feature-item.not-included .feature-text {
    color: var(--text-secondary);
    opacity: 1;
}

/* ==== CTA BUTTON ==== */
.cta-button {
    width: 100%;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    background: linear-gradient(135deg, var(--yellow-primary) 0%, #ffed4e 100%);
    color: var(--dark-bg);
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 4px 20px var(--yellow-glow);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--yellow-glow);
    background: linear-gradient(135deg, #ffed4e 0%, var(--yellow-primary) 100%);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button.secondary {
    background: linear-gradient(135deg, var(--yellow-primary) 0%, #ffed4e 100%);
    color: var(--dark-bg);
    border: none;
    box-shadow: 0 4px 20px var(--yellow-glow);
}

.cta-button.secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--yellow-glow);
    background: linear-gradient(135deg, #ffed4e 0%, var(--yellow-primary) 100%);
}

/* ==== DISABLED BUTTON STYLES ==== */
.cta-button:disabled,
.cta-button.disabled {
    background: linear-gradient(135deg, #666666 0%, #888888 100%);
    color: #cccccc;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
    opacity: 0.6;
}

.cta-button:disabled:hover,
.cta-button.disabled:hover {
    transform: none;
    box-shadow: none;
    background: linear-gradient(135deg, #666666 0%, #888888 100%);
}

.cta-button:disabled::before,
.cta-button.disabled::before {
    display: none;
}

.cta-button.current-plan {
    background: linear-gradient(135deg, var(--success-green) 0%, #34d399 100%);
    color: white;
    box-shadow: 0 4px 20px var(--success-glow);
}

.cta-button.current-plan:hover {
    background: linear-gradient(135deg, #34d399 0%, var(--success-green) 100%);
    box-shadow: 0 8px 30px var(--success-glow);
}

/* Credits package button disabled state */
.credits-package-button:disabled {
    background: linear-gradient(135deg, #666666 0%, #888888 100%);
    color: #cccccc;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
    opacity: 0.6;
}

.credits-package-button:disabled:hover {
    transform: none;
    box-shadow: none;
    background: linear-gradient(135deg, #666666 0%, #888888 100%);
}

/* ==== ANIMATIONS ==== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 30px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* Add staggered animation delays */
.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; }

/* ==== RESPONSIVE DESIGN ==== */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 1.5rem;
    }
    
    .pricing-card.featured {
        scale: 1; /* Remove scale on smaller screens for better alignment */
    }
    
    .features-list {
        min-height: 380px; /* Adjust for tablets */
    }
}

@media (max-width: 768px) {
    .pricing-hero {
        padding: 4rem 0 2rem;
        min-height: auto;
    }
    
    .pricing-container {
        padding: 0 1rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 400px;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
    }
    
    .pricing-title {
        font-size: 2.5rem;
    }
    
    .pricing-subtitle {
        font-size: 1.1rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .pricing-hero {
        padding: 3rem 0 2rem;
    }
    
    .pricing-container {
        padding: 0 1rem;
    }
    
    .pricing-card {
        padding: 1.5rem 1rem;
    }
    
    .pricing-title {
        font-size: 2rem;
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    .cta-button {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }
}

/* ==== PERFORMANCE OPTIMIZATIONS ==== */
@media (prefers-reduced-motion: reduce) {
    .pricing-card,
    .feature-item,
    .cta-button {
        transition: none;
    }
    
    .pricing-card {
        animation: none;
    }
}

/* Improve text rendering */
.pricing-title,
.plan-name,
.price-amount {
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* ==== SIMPLE TOOLTIP SYSTEM ==== */
.tooltip-container {
    position: relative;
    display: inline-block;
    margin-left: 8px;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.tooltip-icon {
    width: 16px;
    height: 16px;
    background: rgba(255, 215, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    color: var(--yellow-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.tooltip-icon:hover {
    background: rgba(255, 215, 0, 0.3);
    border-color: var(--yellow-primary);
    transform: scale(1.1);
}

.tooltip-content {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-80%);
    background: var(--dark-card);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    padding: 12px 16px;
    min-width: 200px;
    max-width: 280px;
    width: max-content;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 215, 0, 0.1);
}

.tooltip-content::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: var(--dark-card);
}

.tooltip-container:hover .tooltip-content {
    opacity: 1;
    visibility: visible;
}

.tooltip-line {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-bottom: 4px;
}

.tooltip-line:last-child {
    margin-bottom: 0;
}

.tooltip-line:first-child {
    color: var(--text-primary);
    font-weight: 500;
}

/* Trial card tooltip positioning - center the tooltip */
.trial-features .tooltip-content {
    transform: translateX(-50%) !important;
}

/* Mobile tooltip positioning */
@media (max-width: 768px) {
    .tooltip-content {
        position: absolute;
        bottom: calc(100% + 8px);
        left: 50%;
        transform: translateX(-100%);
        min-width: 200px;
        max-width: 280px;
        margin-bottom: 0;
    }
    
    .trial-features .tooltip-content {
        transform: translateX(-50%) !important;
    }
}

@media (max-width: 480px) {
    .tooltip-content {
        position: absolute;
        bottom: calc(100% + 8px);
        left: 50%;
        transform: translateX(-100%);
        min-width: 150px;
        max-width: 280px;
        margin-bottom: 0;
    }
}
/* ==== CREDITS PACKAGE SECTION ==== */
.credits-package-section {
    margin-top: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.credits-package-card {
    background: linear-gradient(135deg, var(--dark-card) 0%, rgba(255, 215, 0, 0.08) 100%);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.credits-package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.credits-package-card:hover {
    transform: translateY(-5px);
    border-color: var(--yellow-primary);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.15);
}

.credits-package-card:hover::before {
    opacity: 1;
}

.credits-package-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.credits-package-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--yellow-primary) 0%, #ffed4e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.credits-package-info {
    flex-grow: 1;
}

.credits-package-title {
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--yellow-primary);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.credits-package-description {
    font-family: 'Inter', sans-serif;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.5;
}

.credits-package-price {
    text-align: center;
    margin: 0 1rem;
}

.credits-price-amount {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    color: var(--yellow-primary);
    display: block;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.credits-price-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.credits-package-button {
    flex-shrink: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    background: linear-gradient(135deg, var(--yellow-primary) 0%, #ffed4e 100%);
    color: var(--dark-bg);
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 4px 20px var(--yellow-glow);
    position: relative;
    overflow: hidden;
    min-width: 160px;
}

.credits-package-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.credits-package-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--yellow-glow);
    background: linear-gradient(135deg, #ffed4e 0%, var(--yellow-primary) 100%);
}

.credits-package-button:hover::before {
    left: 100%;
}

/* ==== RESPONSIVE DESIGN FOR CREDITS PACKAGE ==== */
@media (max-width: 768px) {
    .credits-package-section {
        margin-top: 3rem;
    }
    
    .credits-package-card {
        padding: 1.5rem;
    }
    
    .credits-package-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .credits-package-price {
        margin: 0;
    }
    
    .credits-package-button {
        width: 100%;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .credits-package-card {
        padding: 1rem;
    }
    
    .credits-package-content {
        gap: 1rem;
    }
    
    .credits-package-title {
        font-size: 1.25rem;
    }
    
    .credits-package-description {
        font-size: 0.9rem;
    }
    
    .credits-price-amount {
        font-size: 1.5rem;
    }
}

/* ==== TRIAL PLAN SECTION ==== */
.trial-plan-section {
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.trial-plan-card {
    background: var(--dark-card);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
}

.trial-plan-card:hover {
    border-color: var(--yellow-primary);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.15);
}

.trial-badge {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    color: white;
    padding: 12px 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
}

.trial-content {
    display: flex;
    align-items: center;
    padding: 1.5rem 2rem;
    gap: 2rem;
}

.trial-info {
    flex: 2;
}

.trial-title {
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 1.8rem;
    color: var(--yellow-primary);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.trial-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.feature-icon {
    width: 18px;
    height: 18px;
    background: var(--success-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.trial-pricing {
    flex: 1;
    text-align: center;
    padding: 0 1rem;
}

.price-original {
    font-family: 'Sora', sans-serif;
    font-size: 3rem;
    color: #dc2626;
    margin-bottom: 8px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.price-original::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140%;
    height: 3px;
    background-color: #dc2626;
    transform: translate(-50%, -50%) rotate(-15deg);
    transform-origin: center;
}

.price-current {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 3.5rem;
    color: var(--yellow-primary);
    line-height: 1;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.price-period {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-left: 4px;
}

.trial-cta {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.trial-purchase-btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    background: linear-gradient(135deg, var(--yellow-primary) 0%, #ffed4e 100%);
    color: var(--dark-bg);
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 4px 20px var(--yellow-glow);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.trial-purchase-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.trial-purchase-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--yellow-glow);
    background: linear-gradient(135deg, #ffed4e 0%, var(--yellow-primary) 100%);
}

.trial-purchase-btn:hover::before {
    left: 100%;
}

/* Disabled trial button styles */
.trial-purchase-btn.disabled {
    background: linear-gradient(135deg, #666666 0%, #888888 100%);
    color: #cccccc;
    cursor: not-allowed;
    box-shadow: 0 4px 20px rgba(102, 102, 102, 0.3);
    transform: none;
    opacity: 0.7;
}

.trial-purchase-btn.disabled:hover {
    transform: none;
    box-shadow: 0 4px 20px rgba(102, 102, 102, 0.3);
    background: linear-gradient(135deg, #666666 0%, #888888 100%);
}

.trial-purchase-btn.disabled::before {
    display: none;
}

.trial-note {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #3b82f6;
    margin-top: 0.75rem;
    font-weight: 500;
    text-align: center;
}

.trial-disabled-note {
    color: #ef4444;
    font-weight: 600;
}

/* ==== RESPONSIVE DESIGN FOR TRIAL PLAN ==== */
@media (max-width: 768px) {
    .trial-plan-section {
        margin-bottom: 2rem;
    }
    
    .trial-content {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1.5rem;
        text-align: center;
    }
    
    .trial-info,
    .trial-pricing,
    .trial-cta {
        flex: none;
        width: 100%;
    }
    
    .price-current {
        font-size: 2.5rem;
    }

    .price-original {
        font-size: 2rem;
    }
    
    .trial-purchase-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .trial-content {
        padding: 1rem;
    }
    
    .trial-title {
        font-size: 1.75rem;
    }
    
    .price-current {
        font-size: 2.5rem;
    }
    
    .price-original {
        font-size: 2rem;
    }
    
    .trial-purchase-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* ==== FAQ AND SUPPORT SECTION ==== */
.faq-support-section {
    margin-top: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.faq-support-content {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.faq-support-content:hover {
    border-color: rgba(255, 215, 0, 0.2);
    background: rgba(255, 255, 255, 0.03);
    transform: translateY(-2px);
}

.faq-support-text {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.faq-support-link {
    color: var(--yellow-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.faq-support-link:hover {
    color: #ffed4e;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}

.faq-support-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--yellow-primary), #ffed4e);
    transition: width 0.3s ease;
}

.faq-support-link:hover::after {
    width: 100%;
}

/* ==== RESPONSIVE DESIGN FOR FAQ SUPPORT SECTION ==== */
@media (max-width: 768px) {
    .faq-support-section {
        margin-top: 3rem;
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .faq-support-content {
        padding: 1.5rem;
    }
    
    .faq-support-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .faq-support-section {
        margin-top: 2rem;
    }
    
    .faq-support-content {
        padding: 1.25rem;
    }
    
    .faq-support-text {
        font-size: 0.9rem;
    }
}

.ui-modal-backdrop{ position: fixed; inset: 0; background: rgba(0,0,0,0.6); opacity:0; transition: opacity .15s ease; z-index: 1000; }
.ui-modal-backdrop.show{ opacity:1; }
.ui-modal{ position: fixed; top: 50%; left: 50%; opacity:0; transform: translate(-50%, -50%) scale(.98); transition: opacity .15s ease, transform .15s ease; z-index: 1001; }
.ui-modal.show{ opacity:1; transform: translate(-50%, -50%) scale(1); }
.ui-modal-content{ width: min(520px, 92vw); max-height: 80vh; overflow:auto; background: #141414; border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; box-shadow: 0 20px 60px rgba(0,0,0,0.45); }
body.modal-open{ overflow: hidden; }
.ui-modal-header{
    display:flex; align-items:center; justify-content: space-between; padding: 16px 18px; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ui-modal-title{ font-size: 18px; font-weight: 700; color: #fff; letter-spacing: .2px; }
.ui-modal-close{ background: transparent; border: none; color: #aaa; font-size: 22px; cursor: pointer; padding: 6px; border-radius: 8px; }
.ui-modal-close:hover{ background: rgba(255,255,255,0.06); color: #fff; }
.ui-modal-body{ padding: 18px; color: #ddd; font-size: 15px; line-height: 1.6; }
.ui-modal-actions{ display:flex; gap: 10px; justify-content: flex-end; padding: 12px 18px 18px; }
.ui-modal-btn{ padding: 10px 14px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.08); background: #222; color: #eee; cursor: pointer; font-weight: 600; transition: all .15s ease; }
.ui-modal-btn:hover{ transform: translateY(-1px); }
.ui-modal-btn.primary{ background: linear-gradient(135deg, #FFD700 0%, #ffcc00 100%); color: #000; border-color: rgba(255,215,0,0.25); }
.ui-modal-btn.primary:hover{ box-shadow: 0 10px 26px rgba(255,215,0,0.25); }
.ui-modal-btn.ghost{ background: transparent; color: #bbb; }
.ui-modal-text{ white-space: pre-line; }

/* ==== PROCESSING OVERLAY ==== */
.processing-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.processing-overlay.show {
    display: flex;
    opacity: 1;
}

.processing-content {
    text-align: center;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
}

.processing-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 215, 0, 0.2);
    border-top: 4px solid var(--yellow-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.processing-title {
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--yellow-primary);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.processing-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 400;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
