
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
        
        :root {
            --primary: #7C4DFF;
            --primary-dark: #6200EA;
            --secondary: #00BFA5;
            --dark: #121212;
            --darker: #0A0A0A;
            --light: #f8f9fa;
            --gray: #9E9E9E;
            --light-gray: #2A2A2A;
            --danger: #FF5252;
            --card-bg: #1E1E1E;
            --border-color: #333333;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
        }
        
        body {
            background-color: var(--dark);
            color: var(--light);
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 1.5rem;
        }
        
        header {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }
        
        h1 {
            font-size: 2.75rem;
            font-weight: 700;
            margin-bottom: 1rem;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: fadeInDown 1s ease-in-out;
            letter-spacing: -0.5px;
        }
        
        .subtitle {
            color: var(--gray);
            font-size: 1.2rem;
            margin-bottom: 2rem;
            animation: fadeIn 1s ease-in-out 0.2s both;
            font-weight: 300;
        }
        
        .tabs-container {
            position: relative;
            margin-bottom: 4rem;
            overflow: visible;
        }
        
        .tabs {
            display: flex;
            justify-content: center;
            position: relative;
            z-index: 1;
            animation: fadeIn 1s ease-in-out 0.4s both;
            border-bottom: 1px solid var(--border-color);
        }
        
        .tab {
            padding: 1rem 2rem;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s ease;
            color: var(--gray);
            position: relative;
            overflow: hidden;
            user-select: none;
        }
        
        .tab::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            transform: scaleX(0);
            transition: transform 0.3s ease;
            transform-origin: center;
        }
        
        .tab:hover {
            color: var(--light);
        }
        
        .tab.active {
            color: var(--light);
            font-weight: 600;
        }
        
        .tab.active::after {
            transform: scaleX(1);
        }
        
        .tabs-indicator {
            position: absolute;
            bottom: 0;
            height: 3px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            transition: all 0.3s ease;
        }
        
        .tab-content {
            padding-top: 1rem;
            position: relative;
        }
        
        .pricing-container {
            display: none;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 1rem;
        }
        
        .pricing-container.active {
            display: grid;
            animation: fadeIn 0.5s ease-in-out;
        }
        
        .price-card {
            background-color: var(--card-bg);
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            position: relative;
            display: flex;
            flex-direction: column;
            height: 100%;
            animation: fadeInUp 0.7s ease-in-out forwards;
            opacity: 0;
            border: 1px solid var(--border-color);
        }
        
        .price-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            border-color: var(--primary);
        }
        
        .price-card:nth-child(1) { animation-delay: 0.1s; }
        .price-card:nth-child(2) { animation-delay: 0.2s; }
        .price-card:nth-child(3) { animation-delay: 0.3s; }
        .price-card:nth-child(4) { animation-delay: 0.4s; }
        .price-card:nth-child(5) { animation-delay: 0.5s; }
        .price-card:nth-child(6) { animation-delay: 0.6s; }
        
        .price-header {
            padding: 2rem;
            text-align: center;
            background: linear-gradient(135deg, rgba(20, 20, 20, 0.8) 0%, rgba(30, 30, 30, 0.9) 100%);
            position: relative;
            border-bottom: 1px solid var(--border-color);
        }
        
        .enterprise .price-header {
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(20, 20, 20, 1) 100%);
        }
        
        .price-name {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
            letter-spacing: -0.5px;
        }
        
        .price {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            display: flex;
            justify-content: center;
            align-items: baseline;
            letter-spacing: -1px;
        }
        
        .currency {
            font-size: 1.2rem;
            margin-right: 0.25rem;
            font-weight: 500;
        }
        
        .original-price {
            font-size: 1rem;
            text-decoration: line-through;
            color: rgba(255, 255, 255, 0.5);
            margin-left: 0.5rem;
        }
        
        .discount-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            padding: 0.5rem 1rem;
            font-size: 0.6rem;
            font-weight: 600;
            border-radius: 2rem;
            box-shadow: 0 5px 15px rgba(124, 77, 255, 0.3);
            transform: translateY(0);
            animation: float 2.5s ease-in-out infinite;
        }
        
        .price-body {
            padding: 2rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .price-description {
            margin-bottom: 1.75rem;
            color: var(--gray);
            text-align: center;
            font-weight: 300;
        }
        
        .feature-list {
            list-style: none;
            margin-bottom: 2rem;
        }
        
        .feature-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.25rem;
            transition: all 0.3s ease;
        }
        
        .feature-item:hover {
            transform: translateX(5px);
        }
        
        .feature-icon {
            margin-right: 0.75rem;
            color: var(--secondary);
            flex-shrink: 0;
            margin-top: 0.2rem;
        }
        
        .free-tool {
            background-color: rgba(0, 191, 165, 0.08);
            border-left: 4px solid var(--secondary);
            padding: 1.25rem;
            margin-bottom: 30px;
            margin-top: 1.75rem;
            border-radius: 0.5rem;
            display: flex;
            align-items: center;
            transition: all 0.4s ease;
            animation: pulse 3s infinite;
        }
        
        .free-tool-icon {
            font-size: 1.5rem;
            margin-right: 1rem;
            color: var(--secondary);
        }
        
        .cta-btn {
            display: block;
            width: 100%;
            padding: 1rem;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            border: none;
            border-radius: 0.5rem;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            text-decoration: none;
            margin-top: auto;
            box-shadow: 0 5px 15px rgba(124, 77, 255, 0.2);
            position: relative;
            overflow: hidden;
        }
        
        .cta-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: all 0.6s ease;
        }
        
        .cta-btn:hover::before {
            left: 100%;
        }
        
        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(124, 77, 255, 0.4);
        }
        
        .enterprise .cta-btn {
            background: linear-gradient(135deg, #000000 0%, #333333 100%);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        
        .enterprise .cta-btn:hover {
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
        }
        
        .coming-soon {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 500px;
            text-align: center;
            animation: fadeIn 1s ease-in-out;
            background-color: var(--card-bg);
            border-radius: 1rem;
            padding: 3rem 2rem;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
            border: 1px solid var(--border-color);
        }
        
        .coming-soon h2 {
            font-size: 2.25rem;
            margin-bottom: 1rem;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -0.5px;
        }
        
        .coming-soon p {
            color: var(--gray);
            margin-bottom: 2rem;
            max-width: 500px;
            font-weight: 300;
        }
        
        .notify-btn {
            padding: 1rem 2rem;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            border: none;
            border-radius: 0.5rem;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(124, 77, 255, 0.2);
            position: relative;
            overflow: hidden;
        }
        
        .notify-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: all 0.6s ease;
        }
        
        .notify-btn:hover::before {
            left: 100%;
        }
        
        .notify-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(124, 77, 255, 0.4);
        }
        
        .search-pricing {
            display: none;
            animation: fadeIn 0.5s ease-in-out;
        }
        
        .search-pricing.active {
            display: block;
        }
        
        .subscription-plans {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .plan-selector {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 3rem;
            position: relative;
            z-index: 1;
        }
        
        .plan-option {
            background-color: var(--card-bg);
            border: 2px solid var(--border-color);
            border-radius: 0.75rem;
            padding: 1.5rem 2rem;
            cursor: pointer;
            position: relative;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            width: 200px;
            text-align: center;
            flex: 1;
            min-width: 180px;
            max-width: 200px;
        }
        
        .plan-option.active {
            border-color: var(--primary);
            background-color: rgba(124, 77, 255, 0.08);
            transform: scale(1.05);
        }
        
        .plan-option:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }
        
        .plan-option.active:hover {
            transform: translateY(-5px) scale(1.05);
        }
        
        .plan-price {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--light);
            margin-bottom: 0.5rem;
            letter-spacing: -0.5px;
        }
        
        .plan-period {
            font-size: 0.9rem;
            color: var(--gray);
            font-weight: 300;
        }
        
        .savings {
            background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
            color: white;
            padding: 0.35rem 0.75rem;
            border-radius: 2rem;
            font-size: 0.8rem;
            font-weight: 600;
            margin-top: 0.75rem;
            display: inline-block;
            box-shadow: 0 3px 10px rgba(0, 191, 165, 0.2);
        }
        
        .search-features {
            background-color: var(--card-bg);
            border-radius: 1rem;
            padding: 2.5rem;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
            margin-top: 2rem;
            animation: fadeIn 0.5s ease-in-out 0.3s both;
            border: 1px solid var(--border-color);
        }
        
        .search-features h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            font-weight: 600;
            letter-spacing: -0.5px;
        }
        
        .search-features > p {
            color: var(--gray);
            margin-bottom: 2rem;
            font-weight: 300;
        }
        
        .search-feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
            margin-top: 2.5rem;
        }
        
        .search-feature {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            transition: all 0.3s ease;
        }
        
        .search-feature:hover {
            transform: translateY(-5px);
        }
        
        .search-feature-icon {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            width: 42px;
            height: 42px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: 0 5px 15px rgba(124, 77, 255, 0.2);
        }
        
        .search-feature h4 {
            margin-bottom: 0.5rem;
            font-weight: 600;
            letter-spacing: -0.3px;
        }
        
        .search-feature p {
            color: var(--gray);
            font-size: 0.9rem;
            font-weight: 300;
        }
        
        .search-cta {
            display: block;
            width: 100%;
            max-width: 320px;
            margin: 3rem auto 0;
            padding: 1.25rem;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            border: none;
            border-radius: 0.5rem;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            text-decoration: none;
            box-shadow: 0 8px 20px rgba(124, 77, 255, 0.2);
            position: relative;
            overflow: hidden;
        }
        
        .search-cta::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: all 0.6s ease;
        }
        
        .search-cta:hover::before {
            left: 100%;
        }
        
        .search-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 25px rgba(124, 77, 255, 0.4);
        }
        
        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes fadeInDown {
            from { 
                opacity: 0;
                transform: translateY(-20px);
            }
            to { 
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInUp {
            from { 
                opacity: 0;
                transform: translateY(20px);
            }
            to { 
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-6px); }
        }
        
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(0, 191, 165, 0.2); }
            70% { box-shadow: 0 0 0 10px rgba(0, 191, 165, 0); }
            100% { box-shadow: 0 0 0 0 rgba(0, 191, 165, 0); }
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .pricing-container {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            }
        }
        
        @media (max-width: 768px) {
            .tabs {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .tab {
                padding: 0.75rem 1.5rem;
                font-size: 0.95rem;
                text-align: center;
                flex: 1;
                min-width: 150px;
            }
            
            .price-card {
                max-width: 400px;
                margin: 0 auto;
            }
            
            .plan-option {
                min-width: 140px;
            }
        }
        
        @media (max-width: 576px) {
            h1 {
                font-size: 2rem;
            }
            
            .subtitle {
                font-size: 1rem;
            }
            
            .tab {
                padding: 0.75rem 1rem;
                font-size: 0.9rem;
                min-width: 120px;
            }
            
            .plan-option {
                width: 100%;
                max-width: 100%;
            }
            
            .search-feature-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }


.subscription-plans {
    max-width: 1200px;
    margin: 0 auto;
}

.plan-container {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.plan-box {
    flex: 2;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 1rem;
}

.subtotal-box {
    flex: 1;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 1rem;
}

.plan-header {
    margin-bottom: 1rem;
}

.plan-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--light);
    padding: 0.4rem 0.8rem;
    border-radius: 0.5rem;
    display: inline-block;
}

.period-price-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.period-container {
    flex: 3;
    position: relative;
    z-index: 1;
}

.period-label {
    font-size: 0.95rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.period-select-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.period-select {
    width: 100%;
    padding: 0.75rem;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    color: var(--light);
    font-size: 0.95rem;
    font-weight: 500;
    appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.period-select:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 2px rgba(124, 77, 255, 0.2);
}

.select-arrow {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
    pointer-events: none;
    transition: all 0.3s ease;
}

.price-details {
    flex: 2;
    padding: 0.75rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(124, 77, 255, 0.2);
}

.current-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 0.25rem;
    letter-spacing: -0.5px;
}

.savings-text {
    color: var(--secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.renews-info {
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--gray);
}

.free-tool-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background-color: rgba(124, 77, 255, 0.05);
    border-radius: 0.5rem;
    border: 1px dashed rgba(124, 77, 255, 0.3);
    font-size: 0.9rem;
}

.free-tool-icon {
    color: var(--secondary);
    font-size: 1.25rem;
}

.subtotal-container {
    margin-bottom: 1.5rem;
}

.subtotal-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.subtotal-amount {
    color: var(--light);
}

.subtotal-note {
    color: var(--gray);
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.coupon-container {
    margin-bottom: 1rem;
}

.coupon-label {
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.coupon-input {
    width: 100%;
    padding: 0.6rem;
    background-color: var(--body-bg);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    color: var(--light);
    font-size: 0.85rem;
}

.coupon-input:focus {
    border-color: var(--primary);
    outline: none;
}

.continue-btn {
    display: block;
    width: 100%;
    padding: 0.75rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 5px 15px rgba(124, 77, 255, 0.2);
}

.continue-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(124, 77, 255, 0.4);
}

.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--gray);
    font-size: 0.95rem;
}

.guarantee-icon {
    color: var(--secondary);
}

/* Features section */
.search-features {
    margin-top: 3rem;
    padding: 2rem;
    background-color: var(--card-bg);
    border-radius: 0.75rem;
    border: 1px solid var(--border-color);
}

.search-features h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--light);
}

.search-features > p {
    margin-bottom: 2rem;
    color: var(--gray);
    font-size: 1.1rem;
}

.search-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.search-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.search-feature-icon {
    color: var(--primary);
    font-size: 1.5rem;
    padding: 0.75rem;
    background-color: rgba(124, 77, 255, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-feature h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--light);
}

.search-feature p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

.search-cta {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(124, 77, 255, 0.2);
}

.search-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(124, 77, 255, 0.4);
}

/* Enhanced Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.modal-content {
  background-color: var(--dark);
  color: var(--light);
  margin: 10% auto;
  padding: 30px;
  border-radius: 12px;
  width: 90%;
  max-width: 480px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 
              0 0 0 1px rgba(124, 77, 255, 0.1),
              0 1px 0 rgba(255, 255, 255, 0.05) inset;
  transform: translateY(0);
  animation: modalFadeIn 0.4s ease-out;
  border: 1px solid var(--border-color);
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.close-modal {
  color: var(--gray);
  float: right;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.close-modal:hover {
  color: var(--light);
  background-color: var(--light-gray);
}

.modal h2 {
  color: var(--light);
  font-size: 24px;
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.proceed-btn {
  display: block;
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  margin-top: 24px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(124, 77, 255, 0.3);
}

.proceed-btn:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(124, 77, 255, 0.4);
}

.proceed-btn:active {
  transform: translateY(1px);
  box-shadow: 0 2px 8px rgba(124, 77, 255, 0.3);
}

/* Payment Details */
#payment-details {
  background-color: var(--light-gray);
  border-radius: 8px;
  padding: 15px;
  margin-top: 15px;
  border: 1px solid var(--border-color);
}

/* Success Modal */
.success-modal .modal-content {
  border-top: 4px solid var(--secondary);
}

.success-modal h2 {
  color: var(--secondary);
}

.success-modal .proceed-btn {
  background: linear-gradient(135deg, var(--secondary), #00897B);
  box-shadow: 0 4px 12px rgba(0, 191, 165, 0.3);
}

.success-modal .proceed-btn:hover {
  background: linear-gradient(135deg, #00897B, var(--secondary));
  box-shadow: 0 6px 15px rgba(0, 191, 165, 0.4);
}

/* Failure Modal */
.failure-modal .modal-content {
  border-top: 4px solid var(--danger);
}

.failure-modal h2 {
  color: var(--danger);
}

.failure-modal .proceed-btn {
  background: linear-gradient(135deg, var(--danger), #D32F2F);
  box-shadow: 0 4px 12px rgba(255, 82, 82, 0.3);
}

.failure-modal .proceed-btn:hover {
  background: linear-gradient(135deg, #D32F2F, var(--danger));
  box-shadow: 0 6px 15px rgba(255, 82, 82, 0.4);
}

/* Animation containers */
#success-animation, #failure-animation {
  display: flex;
  justify-content: center;
  margin: 20px 0;
  height: 80px;
}

/* Additional info styling */
.modal p {
  margin: 8px 0;
  font-size: 15px;
  color: var(--gray);
}

.modal p strong {
  color: var(--light);
  font-weight: 500;
}

/* Status badge */
.status-badge {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  margin-left: 10px;
}

.status-badge.success {
  background-color: rgba(0, 191, 165, 0.15);
  color: var(--secondary);
  border: 1px solid rgba(0, 191, 165, 0.3);
}

.status-badge.failure {
  background-color: rgba(255, 82, 82, 0.15);
  color: var(--danger);
  border: 1px solid rgba(255, 82, 82, 0.3);
}

/* CSS-based animations for success and failure */

/* Success checkmark animation */
.checkmark-circle {
  width: 80px;
  height: 80px;
  position: relative;
  background-color: rgba(0, 191, 165, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: checkmarkScale 0.5s ease-in-out;
  margin: 0 auto;
}

.checkmark-circle::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid rgba(0, 191, 165, 0.3);
  box-sizing: border-box;
  animation: checkmarkPulse 2s infinite;
}

.checkmark-stem {
  position: absolute;
  width: 4px;
  height: 25px;
  background-color: var(--secondary);
  left: 36px;
  top: 20px;
  transform: rotate(45deg);
  animation: checkmarkStem 0.5s ease-in-out 0.1s forwards;
  transform-origin: left bottom;
  opacity: 0;
}

.checkmark-kick {
  position: absolute;
  width: 12px;
  height: 4px;
  background-color: var(--secondary);
  left: 26px;
  top: 38px;
  transform: rotate(45deg);
  animation: checkmarkKick 0.5s ease-in-out 0.1s forwards;
  transform-origin: left bottom;
  opacity: 0;
}

/* Failure X mark animation */
.xmark-circle {
  width: 80px;
  height: 80px;
  position: relative;
  background-color: rgba(255, 82, 82, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: xmarkScale 0.5s ease-in-out;
  margin: 0 auto;
}

.xmark-circle::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid rgba(255, 82, 82, 0.3);
  box-sizing: border-box;
  animation: xmarkPulse 2s infinite;
}

.xmark-left {
  position: absolute;
  width: 4px;
  height: 32px;
  background-color: var(--danger);
  left: 38px;
  top: 24px;
  transform: rotate(45deg);
  animation: xmarkLeft 0.5s ease-in-out 0.1s forwards;
  opacity: 0;
}

.xmark-right {
  position: absolute;
  width: 4px;
  height: 32px;
  background-color: var(--danger);
  left: 38px;
  top: 24px;
  transform: rotate(-45deg);
  animation: xmarkRight 0.5s ease-in-out 0.1s forwards;
  opacity: 0;
}

/* Animation keyframes */
@keyframes checkmarkScale {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes checkmarkPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes checkmarkStem {
  0% {
    height: 0;
    opacity: 0;
    transform: translateX(10px) rotate(45deg);
  }
  100% {
    height: 25px;
    opacity: 1;
    transform: translateX(0) rotate(45deg);
  }
}

@keyframes checkmarkKick {
  0% {
    width: 0;
    opacity: 0;
  }
  100% {
    width: 12px;
    opacity: 1;
  }
}

@keyframes xmarkScale {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes xmarkPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes xmarkLeft {
  0% {
    height: 0;
    opacity: 0;
  }
  100% {
    height: 32px;
    opacity: 1;
  }
}

@keyframes xmarkRight {
  0% {
    height: 0;
    opacity: 0;
  }
  100% {
    height: 32px;
    opacity: 1;
  }
}

/* Error text styling */
.error-text {
  color: var(--danger) !important;
  background-color: rgba(255, 82, 82, 0.1);
  padding: 10px;
  border-radius: 4px;
  font-size: 14px !important;
  border-left: 3px solid var(--danger);
  margin-top: 15px !important;
}

.trial-banner {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 8px;
    margin-bottom: 30px;
    padding: 25px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.trial-banner:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='rgba(255,255,255,0.03)' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}

.trial-banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
}

.badge-container {
    margin-bottom: 15px;
}

.inaugural-badge {
    background: linear-gradient(135deg, #ff8800 0%, #ff5500 100%);
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 5px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    box-shadow: 0 2px 5px rgba(255, 85, 0, 0.3);
}

.trial-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 10px;
    background: linear-gradient(90deg, #ffffff 0%, #cccccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.trial-subtitle {
    font-size: 16px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.claim-trial-btn {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(46, 125, 50, 0.3);
    letter-spacing: 0.5px;
}

.claim-trial-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(46, 125, 50, 0.4);
}

.claim-trial-btn:active {
    transform: translateY(1px);
    box-shadow: 0 2px 5px rgba(46, 125, 50, 0.4);
}

/* Modal Styling */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #1e1e1e;
    border-radius: 8px;
    padding: 30px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    text-align: center;
    color: white;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Processing Modal */
.processing-modal h3 {
    margin-top: 20px;
    font-size: 22px;
    color: #f8f8f8;
}

.processing-modal p {
    margin-top: 10px;
    color: #c0c0c0;
}

.processing-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border-top-color: #4CAF50;
    margin: 0 auto 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Success Modal */
.success-modal h3 {
    margin-top: 20px;
    font-size: 24px;
    color: #f8f8f8;
}

.success-modal p {
    margin: 15px 0 25px;
    color: #c0c0c0;
    line-height: 1.5;
}

.success-icon {
    font-size: 60px;
    color: #4CAF50;
    margin-bottom: 15px;
}

.try-now-btn {
    background: linear-gradient(135deg, #2196F3 0%, #1565C0 100%);
    color: white;
    border: none;
    padding: 12px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(21, 101, 192, 0.3);
}

.try-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(21, 101, 192, 0.4);
}

.try-now-btn:active {
    transform: translateY(1px);
    box-shadow: 0 2px 5px rgba(21, 101, 192, 0.4);
}

 /* Pricing Section */
        .ebook-pricing {
            padding: 8rem 0;
            background: #0f0f0f;
            color: white;
        }

        .ebook-pricing-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .ebook-pricing-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .ebook-pricing-header h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: #ffffff;
        }

        .ebook-pricing-header p {
            font-size: 1.2rem;
            color: #9ca3af;
        }

        .ebook-pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .ebook-pricing-card {
            background: #1f1f1f;
            border: 1px solid #374151;
            border-radius: 12px;
            padding: 2.5rem;
            text-align: center;
            position: relative;
            transition: all 0.3s ease;
        }

        .ebook-pricing-card:hover {
            transform: translateY(-10px);
            border-color: #3b82f6;
            background: #262626;
        }

        .ebook-pricing-card.featured {
            border-color: #3b82f6;
            background: #1a1a2e;
        }

        .ebook-pricing-card.featured::before {
            content: 'Most Popular';
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            background: #3b82f6;
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .ebook-pricing-duration {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #ffffff;
        }

        .ebook-pricing-price {
            font-size: 2.5rem;
            font-weight: 800;
            color: #3b82f6;
            margin-bottom: 0.5rem;
        }

        .ebook-pricing-period {
            color: #9ca3af;
            margin-bottom: 1.5rem;
        }

        .ebook-pricing-features {
            list-style: none;
            margin-bottom: 2rem;
            text-align: left;
        }

        .ebook-pricing-features li {
            padding: 0.5rem 0;
            border-bottom: 1px solid #374151;
            color: #e5e7eb;
        }

        .ebook-pricing-features li:last-child {
            border-bottom: none;
        }

        .ebook-save-badge {
            background: #10b981;
            color: white;
            padding: 0.3rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            position: absolute;
            top: 1rem;
            right: 1rem;
        }

.btn-ebook {
            background: #3b82f6;
            color: white;
            padding: 0.8rem 1.5rem;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
            font-size: 0.9rem;
        }

        .btn-ebook:hover {
            background: #2563eb;
            transform: translateY(-2px);
        }
        
                .save-badge {
            background: #10b981;
            color: white;
            padding: 0.3rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            position: absolute;
            top: 1rem;
            right: 1rem;
        }
