/* File Circle Upgrade Template Styles */

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

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8fafc;
}

/* Notice Bar */
.fc-notice-bar {
    background: linear-gradient(135deg, #00954b, #00a855);
    color: white;
    padding: 12px 0;
    text-align: center;
    position: relative;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 149, 75, 0.1);
}

.fc-notice-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 500;
    font-size: 14px;
}

.fc-notice-content i {
    font-size: 16px;
    color: #ffffff;
}

/* Main Container */
.fc-upgrade-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* Header Section */
.fc-upgrade-header {
    text-align: center;
    margin-bottom: 60px;
}

.fc-upgrade-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #00954b, #00a855);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fc-upgrade-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Pricing Grid */
.fc-pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 60px;
}

@media (max-width: 1200px) {
    .fc-pricing-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }
}

@media (max-width: 992px) {
    .fc-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

/* Pricing Cards */
.fc-pricing-card {
    background: white;
    border-radius: 10px;
    padding: 20px 16px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: fit-content;
    min-width: 0;
}

.fc-pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.fc-pricing-card.fc-popular {
    border-color: #00954b;
    transform: scale(1.02);
}

.fc-pricing-card.fc-popular:hover {
    transform: scale(1.02) translateY(-10px);
}

/* Popular Badge */
.fc-popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00954b, #00a855);
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 149, 75, 0.3);
}

/* Pricing Header */
.fc-pricing-header {
    text-align: center;
    margin-bottom: 16px;
}

.fc-plan-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.fc-plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 6px;
}

.fc-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #00954b;
}

.fc-period {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

.fc-plan-description {
    color: #64748b;
    font-size: 0.85rem;
}

/* Features */
.fc-pricing-features {
    margin-bottom: 24px;
}

.fc-feature-list {
    list-style: none;
}

.fc-feature-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 13px;
}

.fc-feature-list li:last-child {
    border-bottom: none;
}

.fc-feature-list li i {
    width: 14px;
    font-size: 12px;
}

.fc-feature-list li i.fa-check {
    color: #00954b;
}

.fc-feature-list li i.fa-times {
    color: #ef4444;
}

/* Pricing Footer */
.fc-pricing-footer {
    text-align: center;
}

.fc-pricing-btn {
    width: 100%;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.fc-btn-free {
    background-color: #f1f5f9;
    color: #64748b;
    cursor: not-allowed;
}

.fc-btn-pro {
    background: linear-gradient(135deg, #00954b, #00a855);
    color: white;
}

.fc-btn-pro:hover {
    background: linear-gradient(135deg, #007a3d, #008a47);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 149, 75, 0.3);
}

.fc-btn-business {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
}

.fc-btn-business:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.fc-btn-enterprise {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
}

.fc-btn-enterprise:hover {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

/* Features Section */
.fc-features-section {
    margin-bottom: 80px;
}

.fc-features-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 40px;
}

.fc-comparison-table {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
}

.fc-table {
    width: 100%;
    border-collapse: collapse;
}

.fc-table th,
.fc-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #f1f5f9;
}

.fc-table th {
    background-color: #f8fafc;
    font-weight: 700;
    color: #1e293b;
    font-size: 16px;
}

.fc-table td {
    font-size: 15px;
    color: #374151;
}

.fc-table tbody tr:hover {
    background-color: #f8fafc;
}

.fc-table tbody tr:last-child td {
    border-bottom: none;
}

.fc-table i.fa-check {
    color: #00954b;
    font-size: 16px;
}

.fc-table i.fa-times {
    color: #ef4444;
    font-size: 16px;
}

/* FAQ Section */
.fc-faq-section {
    margin-bottom: 40px;
}

.fc-faq-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 30px;
}

.fc-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.fc-faq-item {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.fc-faq-item:hover {
    transform: translateY(-3px);
}

.fc-faq-question {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
}

.fc-faq-answer {
    color: #64748b;
    line-height: 1.6;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .fc-upgrade-container {
        padding: 40px 15px;
    }
    
    .fc-upgrade-title {
        font-size: 2.5rem;
    }
    
    .fc-upgrade-subtitle {
        font-size: 1.1rem;
    }
    
    .fc-pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .fc-pricing-card {
        padding: 24px 20px;
    }
    
    .fc-pricing-card.fc-popular {
        transform: none;
    }
    
    .fc-pricing-card.fc-popular:hover {
        transform: translateY(-10px);
    }
    
    .fc-features-title,
    .fc-faq-title {
        font-size: 2rem;
    }
    
    .fc-comparison-table {
        overflow-x: auto;
    }
    
    .fc-table {
        min-width: 600px;
    }
    
    .fc-table th,
    .fc-table td {
        padding: 15px 12px;
        font-size: 14px;
    }
    
    .fc-faq-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .fc-faq-item {
        padding: 16px;
    }
    
    .fc-notice-content {
        font-size: 13px;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .fc-upgrade-title {
        font-size: 2rem;
    }
    
    .fc-price {
        font-size: 1.6rem;
    }
    
    .fc-pricing-card {
        padding: 20px 15px;
    }
    
    .fc-popular-badge {
        font-size: 12px;
        padding: 6px 16px;
    }
    
    .fc-faq-item {
        padding: 12px;
    }
    
    .fc-faq-question {
        font-size: 1rem;
    }
    
    .fc-faq-answer {
        font-size: 13px;
    }
}

/* Animation for smooth page load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fc-pricing-card {
    animation: fadeInUp 0.6s ease forwards;
}

.fc-pricing-card:nth-child(1) { animation-delay: 0.1s; }
.fc-pricing-card:nth-child(2) { animation-delay: 0.2s; }
.fc-pricing-card:nth-child(3) { animation-delay: 0.3s; }
.fc-pricing-card:nth-child(4) { animation-delay: 0.4s; }

/* Dark mode support (if needed in future) */
@media (prefers-color-scheme: dark) {
    body {
        background-color: #0f172a;
        color: #e2e8f0;
    }
    
    .fc-pricing-card,
    .fc-comparison-table,
    .fc-faq-item {
        background: #1e293b;
        border-color: #334155;
    }
    
    .fc-upgrade-title,
    .fc-features-title,
    .fc-faq-title,
    .fc-plan-name,
    .fc-faq-question {
        color: #f1f5f9;
    }
    
    .fc-table th {
        background-color: #334155;
        color: #f1f5f9;
    }
    
    .fc-table tbody tr:hover {
        background-color: #334155;
    }
}
