/* Fileaxa Premium Cards - Modern UI Styles */

.fileaxa-premium-container {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #ffffff;
    min-height: 100vh;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.fileaxa-premium-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(116, 185, 255, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(253, 121, 168, 0.06) 0%, transparent 60%),
        radial-gradient(circle at 40% 40%, rgba(0, 184, 148, 0.05) 0%, transparent 60%),
        radial-gradient(circle at 70% 70%, rgba(255, 221, 87, 0.04) 0%, transparent 50%);
    pointer-events: none;
    animation: backgroundPulse 20s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.fileaxa-premium-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.fileaxa-premium-title {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #2d3436 0%, #636e72 50%, #2d3436 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 1rem 0;
    letter-spacing: -0.02em;
    position: relative;
}

.fileaxa-premium-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #74b9ff, #fd79a8, #00b894);
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(116, 185, 255, 0.3);
}

.fileaxa-premium-subtitle {
    font-size: 1.3rem;
    color: #636e72;
    margin: 0;
    font-weight: 500;
}



.fileaxa-premium-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    overflow: visible;
    z-index: 1;
}

.fileaxa-premium-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.08),
        0 4px 25px rgba(0, 0, 0, 0.04),
        0 1px 0 rgba(255, 255, 255, 0.9);
}

.fileaxa-premium-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.12),
        0 15px 35px rgba(0, 0, 0, 0.08),
        0 1px 0 rgba(255, 255, 255, 1);
}





/* Enhanced gradient backgrounds for different plan types */
.gradient-lite {
    position: relative;
}

.gradient-plus {
    position: relative;
}

.fileaxa-premium-card.gradient-plus {
    border: 2px solid #fd79a8;
    box-shadow: 
        0 8px 25px rgba(253, 121, 168, 0.15),
        0 4px 15px rgba(0, 0, 0, 0.08),
        0 1px 0 rgba(255, 255, 255, 1);
}

.gradient-max {
    position: relative;
}

/* Top colored sections for each card */
.fileaxa-premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
    border-radius: 20px 20px 0 0;
    z-index: 1;
}

.fileaxa-premium-card.gradient-lite::before {
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 50%, #74b9ff 100%);
    box-shadow: 0 2px 8px rgba(116, 185, 255, 0.2);
}

.fileaxa-premium-card.gradient-plus::before {
    background: linear-gradient(135deg, #fd79a8 0%, #e84393 50%, #fd79a8 100%);
    box-shadow: 0 2px 8px rgba(253, 121, 168, 0.2);
}

.fileaxa-premium-card.gradient-max::before {
    background: linear-gradient(135deg, #00b894 0%, #00a085 50%, #00cec9 100%);
    box-shadow: 0 2px 8px rgba(0, 184, 148, 0.2);
}



.fileaxa-plan-icon {
    position: relative;
    z-index: 2;
    animation: iconFloat 4s ease-in-out infinite;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 255, 0.98));
    width: 90px;
    height: 90px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.08),
        0 4px 15px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    transition: all 0.3s ease;
    font-size: 2.5rem;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.fileaxa-plan-icon:hover {
    transform: translateY(-2px) scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-3px); }
}



/* Plan-specific icon backgrounds and colors */
.gradient-lite .fileaxa-plan-icon {
    background: linear-gradient(135deg, rgba(116, 185, 255, 0.12), rgba(9, 132, 227, 0.08));
    border: 1px solid rgba(116, 185, 255, 0.25);
    box-shadow: 
        0 10px 30px rgba(116, 185, 255, 0.15),
        0 4px 15px rgba(116, 185, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.gradient-lite .fileaxa-plan-icon i {
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-plus .fileaxa-plan-icon {
    background: linear-gradient(135deg, rgba(253, 121, 168, 0.12), rgba(232, 67, 147, 0.08));
    border: 1px solid rgba(253, 121, 168, 0.25);
    box-shadow: 
        0 10px 30px rgba(253, 121, 168, 0.15),
        0 4px 15px rgba(253, 121, 168, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.gradient-plus .fileaxa-plan-icon i {
    background: linear-gradient(135deg, #fd79a8 0%, #e84393 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-max .fileaxa-plan-icon {
    background: linear-gradient(135deg, rgba(0, 184, 148, 0.12), rgba(0, 206, 201, 0.08));
    border: 1px solid rgba(0, 184, 148, 0.25);
    box-shadow: 
        0 10px 30px rgba(0, 184, 148, 0.15),
        0 4px 15px rgba(0, 184, 148, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.gradient-max .fileaxa-plan-icon i {
    background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fileaxa-plan-type {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2d3436 0%, #636e72 50%, #2d3436 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 0.8rem 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
}

.fileaxa-plan-description {
    font-size: 1.1rem;
    color: #74b9ff;
    margin: 0 0 2rem 0;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.gradient-lite .fileaxa-plan-description {
    color: #0984e3;
}

.gradient-plus .fileaxa-plan-description {
    color: #e84393;
}

.gradient-max .fileaxa-plan-description {
    color: #00a085;
}

.fileaxa-plan-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2d3436;
    margin: 0 0 0.25rem 0;
    line-height: 1;
}

.fileaxa-plan-duration {
    font-size: 1rem;
    color: #636e72;
    margin: 0 0 2rem 0;
    font-weight: 500;
}

.fileaxa-plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    text-align: left;
    position: relative;
    z-index: 2;
}

.fileaxa-plan-features li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    padding-left: 2.5rem;
    color: #2d3436;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.fileaxa-plan-features li:hover {
    color: #0984e3;
    transform: translateX(5px);
}

.fileaxa-plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 1rem;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #00b894, #00cec9);
    color: white;
    font-weight: 800;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 184, 148, 0.3);
}

.fileaxa-plan-features li:last-child {
    border-bottom: none;
}

.gradient-lite .fileaxa-plan-features li::before {
    background: linear-gradient(135deg, #74b9ff, #0984e3);
    box-shadow: 0 2px 8px rgba(116, 185, 255, 0.3);
}

.gradient-plus .fileaxa-plan-features li::before {
    background: linear-gradient(135deg, #fd79a8, #e84393);
    box-shadow: 0 2px 8px rgba(253, 121, 168, 0.3);
}

.gradient-max .fileaxa-plan-features li::before {
    background: linear-gradient(135deg, #00b894, #00cec9);
    box-shadow: 0 2px 8px rgba(0, 184, 148, 0.3);
}

.fileaxa-buy-button {
    background: linear-gradient(135deg, #00b894 0%, #00a085 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 184, 148, 0.3);
}

.fileaxa-buy-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 184, 148, 0.4);
    text-decoration: none;
    color: white;
}

.fileaxa-buy-button:active {
    transform: translateY(0);
}

.fileaxa-buy-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.5s;
}

.fileaxa-buy-button:hover::before {
    left: 100%;
}

/* Plan type specific button colors */
.gradient-lite .fileaxa-buy-button {
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
    box-shadow: 0 4px 15px rgba(116, 185, 255, 0.3);
}

.gradient-lite .fileaxa-buy-button:hover {
    box-shadow: 0 8px 25px rgba(116, 185, 255, 0.4);
}

.gradient-plus .fileaxa-buy-button {
    background: linear-gradient(135deg, #fd79a8 0%, #e84393 100%);
    box-shadow: 0 4px 15px rgba(253, 121, 168, 0.3);
}

.gradient-plus .fileaxa-buy-button:hover {
    box-shadow: 0 8px 25px rgba(253, 121, 168, 0.4);
}

.gradient-max .fileaxa-buy-button {
    background: linear-gradient(135deg, #00b894 0%, #00a085 100%);
    box-shadow: 0 4px 15px rgba(0, 184, 148, 0.3);
}

.gradient-max .fileaxa-buy-button:hover {
    box-shadow: 0 8px 25px rgba(0, 184, 148, 0.4);
}

.fileaxa-premium-footer {
    text-align: center;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.fileaxa-premium-footer-text {
    color: #636e72;
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) and (min-width: 769px) {
    .fileaxa-premium-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .fileaxa-premium-card:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .fileaxa-premium-container {
        padding: 1rem 0;
    }
    
    .fileaxa-premium-title {
        font-size: 2rem;
    }
    
    .fileaxa-premium-subtitle {
        font-size: 1rem;
    }
    
    .fileaxa-premium-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .fileaxa-premium-card {
        padding: 1.5rem;
    }
    

    
    .fileaxa-plan-price {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .fileaxa-premium-title {
        font-size: 1.75rem;
    }
    
    .fileaxa-premium-card {
        padding: 1.25rem;
    }
    
    .fileaxa-plan-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .fileaxa-plan-price {
        font-size: 1.75rem;
    }
    
    .fileaxa-buy-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .fileaxa-payment-info-toggle {
        padding: 1rem 1.5rem;
    }
    
    .fileaxa-payment-info-title {
        font-size: 1rem;
    }
    
    .fileaxa-payment-info-text {
        padding: 1.5rem;
    }
    
    .fileaxa-payment-steps {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .fileaxa-step {
        padding: 0.8rem;
    }
}

/* Loading animation */
.fileaxa-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

.fileaxa-loading::after {
    content: '';
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    animation: fileaxa-spin 1s linear infinite;
}

@keyframes fileaxa-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Accessibility */
.fileaxa-premium-card:focus-within {
    outline: 2px solid #74b9ff;
    outline-offset: 2px;
}

.fileaxa-buy-button:focus {
    outline: 2px solid rgba(255, 255, 255, 0.8);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .fileaxa-premium-container {
        background: white;
        color: black;
    }
    
    .fileaxa-premium-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .fileaxa-buy-button {
        background: #333;
        color: white;
    }
}

/* Duration Options Styles */
.fileaxa-duration-options {
    margin: 2rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 4px 20px rgba(0, 0, 0, 0.04);
}

.fileaxa-duration-options h4 {
    margin: 0 0 1.5rem 0;
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #2d3436 0%, #636e72 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    letter-spacing: 0.5px;
}

.fileaxa-duration-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    margin-bottom: 0.8rem;
    background: #ffffff;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    text-decoration: none;
    color: #2d3436;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    position: relative;
    overflow: hidden;
}

.fileaxa-duration-button:hover {
    border-color: #74b9ff;
    transform: translateY(-2px) scale(1.01);
    box-shadow: 
        0 6px 20px rgba(116, 185, 255, 0.15),
        0 3px 12px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    text-decoration: none;
    color: #2d3436;
}

.fileaxa-duration-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(116, 185, 255, 0.1), transparent);
    transition: left 0.6s;
}

.fileaxa-duration-button:hover::before {
    left: 100%;
}

.fileaxa-duration-card-notice {
    background: linear-gradient(135deg, #fff3e0 0%, #ffcc80 100%);
    border: 1px solid #ffb74d;
    border-radius: 6px;
    padding: 0.8rem 1rem;
    margin: 0.5rem 0 1rem 0;
    text-align: center;
    box-shadow: 0 2px 6px rgba(255, 183, 77, 0.2);
}

.fileaxa-duration-card-notice p {
    margin: 0;
    color: #e65100;
    font-size: 0.85rem;
    font-weight: 500;
}


.fileaxa-duration-button:last-child {
    margin-bottom: 0;
}

.duration-text {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.duration-price {
    font-size: 1.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Plan type specific duration button colors */
.gradient-lite .fileaxa-duration-button:hover {
    border-color: #74b9ff;
    box-shadow: 0 4px 12px rgba(116, 185, 255, 0.3);
}

.gradient-lite .duration-price {
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-plus .fileaxa-duration-button:hover {
    border-color: #fd79a8;
    box-shadow: 
        0 8px 25px rgba(253, 121, 168, 0.2),
        0 4px 15px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.gradient-plus .duration-price {
    background: linear-gradient(135deg, #fd79a8 0%, #e84393 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-max .fileaxa-duration-button:hover {
    border-color: #00b894;
    box-shadow: 
        0 8px 25px rgba(0, 184, 148, 0.2),
        0 4px 15px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.gradient-max .duration-price {
    background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Select Plan Button */
.fileaxa-select-plan-button {
    background: linear-gradient(135deg, #00b894 0%, #00a085 50%, #00cec9 100%);
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 25px rgba(0, 184, 148, 0.3),
        0 4px 15px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.fileaxa-select-plan-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 12px 35px rgba(0, 184, 148, 0.4),
        0 8px 20px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.fileaxa-select-plan-button:active {
    transform: translateY(0);
}

.fileaxa-select-plan-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.5s;
}

.fileaxa-select-plan-button:hover::before {
    left: 100%;
}

/* Plan type specific select button colors */
.gradient-lite .fileaxa-select-plan-button {
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
    box-shadow: 0 4px 15px rgba(116, 185, 255, 0.3);
}

.gradient-lite .fileaxa-select-plan-button:hover {
    box-shadow: 0 8px 25px rgba(116, 185, 255, 0.4);
}

.gradient-plus .fileaxa-select-plan-button {
    background: linear-gradient(135deg, #fd79a8 0%, #e84393 100%);
    box-shadow: 0 4px 15px rgba(253, 121, 168, 0.3);
}

.gradient-plus .fileaxa-select-plan-button:hover {
    box-shadow: 0 8px 25px rgba(253, 121, 168, 0.4);
}

.gradient-max .fileaxa-select-plan-button {
    background: linear-gradient(135deg, #00b894 0%, #00a085 100%);
    box-shadow: 0 4px 15px rgba(0, 184, 148, 0.3);
}

.gradient-max .fileaxa-select-plan-button:hover {
    box-shadow: 0 8px 25px rgba(0, 184, 148, 0.4);
}

/* Card Expanded State */
.fileaxa-premium-card.expanded {
    transform: scale(1.02);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.12),
        0 8px 25px rgba(0, 0, 0, 0.08),
        0 1px 0 rgba(255, 255, 255, 1);
}

.fileaxa-premium-card.expanded .fileaxa-duration-options {
    display: block !important;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Payment Information Section */
.fileaxa-payment-info-section {
    max-width: 800px;
    margin: 3rem auto 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

.fileaxa-payment-info-toggle {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.fileaxa-payment-info-toggle:hover {
    border-color: rgba(116, 185, 255, 0.3);
    box-shadow: 
        0 6px 20px rgba(116, 185, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    transform: translateY(-2px);
}

.fileaxa-payment-info-title {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3436;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    user-select: none;
}

.fileaxa-payment-info-title i.fas.fa-question-circle {
    color: #74b9ff;
    font-size: 1.1rem;
}

.fileaxa-toggle-icon {
    margin-left: auto;
    color: #636e72;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.fileaxa-payment-info-section.expanded .fileaxa-toggle-icon {
    transform: rotate(180deg);
}

.fileaxa-payment-info-content {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-top: none;
    border-radius: 0 0 12px 12px;
    margin-top: -1px;
}

.fileaxa-payment-info-text {
    padding: 2rem;
}

.fileaxa-payment-info-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #2d3436;
    margin: 0 0 1.5rem 0;
}



.fileaxa-payment-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.fileaxa-step {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.fileaxa-step:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.fileaxa-step i {
    font-size: 1.2rem;
    color: #00b894;
    flex-shrink: 0;
}

.fileaxa-step:nth-child(1) i {
    color: #74b9ff;
}

.fileaxa-step:nth-child(2) i {
    color: #fdcb6e;
}

.fileaxa-step:nth-child(3) i {
    color: #00b894;
}

.fileaxa-step span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #2d3436;
}
