/* ================================================
   PRICING CARDS - ALL BADGES ABOVE FRAME (FINAL FIX)
   ================================================ */

.hero-section {
    padding: 120px 0 60px;
    background: linear-gradient(180deg, #0a0f1e 0%, #111827 100%);
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 50px;
    color: #22d3ee;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #f9fafb;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.gradient-text {
    background: linear-gradient(135deg, #06b6d4 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.125rem;
    color: #d1d5db;
    line-height: 1.7;
}

.pricing-section {
    padding: 4rem 0;
    background: #0a0f1e;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.pricing-plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

/* Card with proper spacing and overflow handling */
.pricing-plan-card {
    position: relative;
    background: #1f2937;
    border: 2px solid rgba(6, 182, 212, 0.15);
    border-radius: 20px;
    overflow: visible;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 20px;
}

.pricing-plan-card:hover {
    transform: translateY(-8px);
    border-color: #06b6d4;
    box-shadow: 0 20px 60px rgba(6, 182, 212, 0.25);
}

.pricing-plan-card.featured-plan {
    border-color: #06b6d4;
    box-shadow: 0 10px 40px rgba(6, 182, 212, 0.2);
}

/* BADGE ALWAYS ABOVE FRAME - VISIBLE */
.plan-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1px;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    white-space: nowrap;
}

.plan-badge i {
    font-size: 0.7rem;
}

/* Badge Colors */
.badge-starter {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: white;
}

.badge-popular {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 4px 12px rgba(239, 68, 68, 0.5); }
    50% { box-shadow: 0 4px 16px rgba(239, 68, 68, 0.8); }
}

.badge-value {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.badge-performance {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.badge-ultimate {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1f2937;
    font-weight: 900;
}

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

.badge-recommended {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    color: white;
}

.badge-custom {
    background: linear-gradient(135deg, #64748b, #475569);
    color: white;
}

/* Plan Content - with inner wrapper for animation clipping */
.plan-content {
    padding: 2.5rem 1.75rem 1.75rem;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.plan-header {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(6, 182, 212, 0.1);
    margin-bottom: 1.5rem;
}

.plan-header h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: #f9fafb;
    line-height: 1.2;
}

.plan-description {
    color: #9ca3af;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    min-height: 45px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.35rem;
    margin-top: 1rem;
}

.plan-price .currency {
    font-size: 1.5rem;
    color: #22d3ee;
    font-weight: 700;
}

.plan-price .amount {
    font-size: 3.25rem;
    font-weight: 900;
    background: linear-gradient(135deg, #06b6d4 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.plan-price .period {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 500;
}

.plan-features {
    margin: 1.5rem 0 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem 0;
    border-bottom: 1px solid rgba(6, 182, 212, 0.08);
    transition: all 0.2s ease;
}

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

.feature-item:hover {
    padding-left: 0.5rem;
    background: rgba(6, 182, 212, 0.05);
    border-radius: 8px;
}

.feature-item i {
    color: #22d3ee;
    font-size: 1.125rem;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.feature-item span {
    color: #d1d5db;
    font-weight: 500;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.sellauth-button, .cta-button-primary, .plan-button {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #06b6d4 0%, #10b981 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(6, 182, 212, 0.3);
    margin-top: 1.5rem;
}

.sellauth-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.4);
}

.sellauth-button i {
    transition: transform 0.3s ease;
}

.sellauth-button:hover i {
    transform: translateX(4px);
}

.info-banner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, #06b6d4 0%, #10b981 100%);
    border-radius: 20px;
    padding: 2rem;
    margin-top: 4rem;
    box-shadow: 0 10px 40px rgba(6, 182, 212, 0.3);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.info-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 15, 30, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    padding: 1rem 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #06b6d4 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: #d1d5db;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-menu a:hover {
    color: #22d3ee;
}

.footer {
    background: #111827;
    padding: 2rem 0;
    text-align: center;
    color: #6b7280;
    border-top: 1px solid rgba(6, 182, 212, 0.1);
}

@media (max-width: 1200px) {
    .pricing-plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-plans-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .hero-title {
        font-size: 2rem;
    }
    .pricing-plan-card {
        margin-top: 18px;
    }
    .plan-badge {
        top: -12px;
        font-size: 0.6rem;
        padding: 0.4rem 1.2rem;
    }
    .plan-content {
        padding: 2rem 1.25rem 1.25rem;
    }
}

@media (max-width: 480px) {
    .pricing-plan-card {
        margin-top: 16px;
    }
    .plan-badge {
        top: -11px;
        font-size: 0.55rem;
        padding: 0.35rem 1rem;
    }
}

/* Top border gradient effect */
.pricing-plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #06b6d4 0%, #10b981 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    border-radius: 20px 20px 0 0;
    z-index: 1;
}

.pricing-plan-card:hover::before {
    transform: scaleX(1);
}

/* Fade In Animation - contained within content wrapper */
.fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

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