/* ==========================================
   PRICING V2 - Authentic ManagerNest Style
   Colorful, Vibrant, 3D Effects
   ========================================== */

/* Hero Section */
.pricing-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
    overflow: visible;
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.05) 0%, 
        rgba(59, 130, 246, 0.05) 50%,
        rgba(236, 72, 153, 0.05) 100%);
}

.pricing-hero-content {
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out;
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    animation: slideDown 0.6s ease-out 0.2s both;
}

.pricing-badge svg {
    color: var(--primary);
}

.pricing-hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideDown 0.6s ease-out 0.3s both;
}

.price-highlight {
    display: block;
    margin-top: 16px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.price-highlight::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    opacity: 0.3;
}

.pricing-hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: #94a3b8;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    animation: slideDown 0.6s ease-out 0.4s both;
}

.usd-highlight {
    color: var(--primary);
    font-weight: 700;
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #10b981;
    font-weight: 500;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.pricing-hero-description {
    font-size: 18px;
    color: #cbd5e1;
    margin-bottom: 40px;
    line-height: 1.7;
    animation: slideDown 0.6s ease-out 0.5s both;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideDown 0.6s ease-out 0.6s both;
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

/* Breakdown Section */
.breakdown-section {
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.breakdown-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3), transparent);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 18px;
    color: #94a3b8;
}

.breakdown-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.breakdown-card {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.breakdown-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.1) 0%, 
        transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.breakdown-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 60px -15px rgba(139, 92, 246, 0.4);
}

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

.card-purple {
    border-left: 4px solid var(--primary);
}

.card-blue {
    border-left: 4px solid var(--secondary);
}

.card-pink {
    border-left: 4px solid #ec4899;
}

.card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
}

.card-purple .card-icon {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.05));
    color: var(--primary);
}

.card-blue .card-icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.05));
    color: var(--secondary);
}

.card-pink .card-icon {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(236, 72, 153, 0.05));
    color: #ec4899;
}

.card-icon svg {
    filter: drop-shadow(0 0 8px currentColor);
}

.card-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

.card-price {
    margin-bottom: 8px;
}

.sol-price {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    display: block;
    margin-bottom: 4px;
}

.usd-price {
    font-size: 18px;
    color: #94a3b8;
}

.card-percentage {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
    padding: 4px 12px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 20px;
    display: inline-block;
}

.card-description {
    font-size: 15px;
    line-height: 1.7;
    color: #cbd5e1;
}

/* Total Summary */
.total-summary {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.1) 0%, 
        rgba(59, 130, 246, 0.1) 100%);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.total-summary::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.total-summary:hover::before {
    opacity: 0.1;
}

.summary-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 16px;
}

.summary-label {
    font-size: 20px;
    font-weight: 600;
    color: #cbd5e1;
}

.summary-price {
    text-align: right;
}

.summary-sol {
    font-size: 40px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.summary-usd {
    font-size: 20px;
    color: #94a3b8;
}

.summary-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #64748b;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-note svg {
    color: var(--primary);
    flex-shrink: 0;
}

/* Comparison Section */
.comparison-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.03) 0%, 
        rgba(59, 130, 246, 0.03) 100%);
}

.comparison-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.comparison-card {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.comparison-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
}

.card-featured {
    border: 2px solid var(--primary);
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.1) 0%, 
        rgba(59, 130, 246, 0.05) 100%);
    transform: scale(1.02);
}

.card-featured:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 70px -15px rgba(139, 92, 246, 0.5);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 40px;
    background: var(--gradient-primary);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
}

.comparison-header {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-name {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
}

.comparison-price {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.price-main {
    font-size: 36px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-sub {
    font-size: 16px;
    color: #94a3b8;
}

.comparison-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: #cbd5e1;
}

.feature-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-icon.check {
    color: #10b981;
}

.feature-icon.cross {
    color: #64748b;
}

/* Calculator Section */
.calculator-section {
    padding: 100px 20px;
}

.calculator-card {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 25px 70px -15px rgba(0, 0, 0, 0.3);
}

.calculator-header {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 40px;
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.1) 0%, 
        rgba(59, 130, 246, 0.1) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.calculator-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(59, 130, 246, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.calculator-title {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4px;
}

.calculator-subtitle {
    font-size: 16px;
    color: #94a3b8;
}

.calculator-body {
    padding: 40px;
}

.calculator-input-group {
    margin-bottom: 40px;
}

.calculator-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
    color: #cbd5e1;
}

.count-display {
    font-size: 32px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.calculator-slider {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    margin-bottom: 12px;
}

.calculator-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gradient-primary);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.5);
    transition: transform 0.2s ease;
}

.calculator-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.calculator-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gradient-primary);
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.5);
    transition: transform 0.2s ease;
}

.calculator-slider::-moz-range-thumb:hover {
    transform: scale(1.2);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #64748b;
}

.calculator-results {
    background: rgba(15, 23, 42, 0.5);
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 32px;
}

.result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.result-label {
    font-size: 16px;
    color: #cbd5e1;
    font-weight: 500;
}

.result-values {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.result-sol {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

.result-usd {
    font-size: 14px;
    color: #94a3b8;
}

.result-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 8px 0;
}

.result-total .result-sol {
    font-size: 32px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.result-total .result-usd {
    font-size: 18px;
}

.calculator-cta {
    text-align: center;
}

/* FAQ Section */
.pricing-faq-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.03) 0%, 
        rgba(236, 72, 153, 0.03) 100%);
}

.pricing-faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-faq-card {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
}

.pricing-faq-card:hover {
    transform: translateY(-4px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 15px 40px -10px rgba(139, 92, 246, 0.2);
}

.faq-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 20px;
}

.pricing-faq-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.pricing-faq-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #cbd5e1;
}

/* CTA Section */
.pricing-cta-section {
    position: relative;
    padding: 120px 20px;
    text-align: center;
    overflow: visible;
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.05) 0%, 
        rgba(236, 72, 153, 0.05) 100%);
}

.cta-gradient-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.cta-gradient-orb {
    background: radial-gradient(circle, rgba(139, 92, 246, 0.4) 0%, transparent 70%);
    top: 50%;
    left: 10%;
    animation: orbit 20s linear infinite;
}

.cta-gradient-orb-2 {
    background: radial-gradient(circle, rgba(236, 72, 153, 0.4) 0%, transparent 70%);
    top: 30%;
    right: 10%;
    animation: orbit 25s linear infinite reverse;
}

.pricing-cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-description {
    font-size: 20px;
    color: #94a3b8;
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.cta-trust-indicators {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #cbd5e1;
    font-size: 16px;
    font-weight: 600;
}

.trust-item svg {
    color: var(--primary);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes orbit {
    from {
        transform: rotate(0deg) translateX(50px) rotate(0deg);
    }
    to {
        transform: rotate(360deg) translateX(50px) rotate(-360deg);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .comparison-cards {
        grid-template-columns: 1fr;
    }
    
    .breakdown-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-faq-grid {
        grid-template-columns: 1fr;
    }
    
    .calculator-header {
        flex-direction: column;
        text-align: center;
    }
    
    .summary-content {
        flex-direction: column;
        align-items: center;
    }
    
    .summary-price {
        text-align: center;
    }
}
