  /* ===== Import existing CSS variables and base styles ===== */
        :root {
            --primary-color: #1a3a5f;
            --secondary-color: #2a5a8c;
            --accent-color: #e6a23c;
            --accent-secondary: #16a34a;
            --premium-blue: #1e88e5;
            --premium-green: #43a047;
            --light-bg: #f8fafc;
            --dark-bg: #0f172a;
            --text-color: #333;
            --gray: #64748b;
            --light-gray: #e2e8f0;
            --border-color: #e2e8f0;
            --transition: all 0.3s ease;
            --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            --radius: 8px;
        }

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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: white;
        }

        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            line-height: 1.2;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        h1 { font-size: 2.8rem; }
        h2 { font-size: 2.2rem; }
        h3 { font-size: 1.8rem; }

        p {
            margin-bottom: 1rem;
            line-height: 1.6;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ===== Header (consistent with other pages) ===== */
        .header {
            background: linear-gradient(135deg, #0f172a 0%, #1a3a5f 100%);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

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

        .footerdivs_top {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .topleftalign {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .toplogo {
            color: white;
            font-size: 1.4rem;
            font-weight: 700;
        }

        .header_menu {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-weight: 500;
            padding: 8px 15px;
            border-radius: 6px;
            transition: all 0.3s ease;
        }

        .header_menu:hover {
            color: white;
            background: rgba(255, 255, 255, 0.1);
        }

        /* ===== Subscribe Hero Section ===== */
        .subscribe-hero {
            padding: 100px 0 60px;
            background: linear-gradient(135deg, #0f172a 0%, #1a3a5f 100%);
            color: white;
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .subscribe-hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 80%, rgba(230, 162, 60, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(30, 136, 229, 0.05) 0%, transparent 50%);
            opacity: 0.7;
            z-index: 0;
        }

        .subscribe-hero-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .subscribe-hero h1 {
            color: white;
            font-size: 3.2rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        .subscribe-hero p {
            font-size: 1.3rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.9);
            max-width: 700px;
            margin: 0 auto 2rem;
        }

        .highlight {
            color: #e6a23c;
            font-weight: 700;
        }

        .subscription-badge {
            display: inline-block;
            background: linear-gradient(135deg, #82D32B, #4CAF50);
            color: white;
            padding: 12px 25px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 2rem;
            box-shadow: 0 6px 20px rgba(130, 211, 43, 0.3);
        }

        /* ===== Subscription Plans Section ===== */
        .subscription-plans {
            padding: 80px 0;
            background-color: var(--light-bg);
        }

        .section-title {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title h2 {
            position: relative;
            display: inline-block;
            padding-bottom: 1rem;
            margin-bottom: 1rem;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--accent-color), #f59e0b);
            border-radius: 2px;
        }

        .section-subtitle {
            color: var(--gray);
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
            font-weight: 400;
        }

        .plans-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .plan-card {
            background-color: white;
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: var(--shadow);
            transition: var(--transition);
            text-align: center;
            position: relative;
            border: 2px solid var(--border-color);
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .plan-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
            border-color: rgba(230, 162, 60, 0.1);
        }



        .popular-badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, var(--accent-color), #f59e0b);
            color: white;
            padding: 10px 30px;
            border-radius: 25px;
            font-weight: 700;
            font-size: 0.95rem;
            z-index: 2;
            box-shadow: 0 6px 20px rgba(230, 162, 60, 0.4);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .plan-header {
            margin-bottom: 1.5rem;
        }

        .plan-name {
            font-size: 1.8rem;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
            font-weight: 700;
        }

        .plan-description {
            color: var(--gray);
            font-size: 1rem;
            margin-bottom: 2rem;
        }

        .plan-pricing {
            margin: 2rem 0;
        }

        .price {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--accent-color);
            line-height: 1;
            display: block;
        }

        .price-period {
            font-size: 1rem;
            color: var(--gray);
            margin-top: 5px;
        }

        .savings-badge {
            background: rgba(130, 211, 43, 0.1);
            color: #82D32B;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            display: inline-block;
            margin-top: 10px;
        }

        .billing-toggle {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            margin: 2rem 0 3rem;
            padding: 1.5rem;
            background: var(--light-bg);
            border-radius: 15px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }

        .billing-option {
            font-weight: 600;
            color: var(--gray);
            transition: color 0.3s;
            font-size: 1.1rem;
        }

        .billing-option.active {
            color: var(--primary-color);
        }

        .toggle-switch {
            position: relative;
            width: 70px;
            height: 34px;
        }

        .toggle-checkbox {
            display: none;
        }

        .toggle-label {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #ccc;
            border-radius: 34px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .toggle-label::after {
            content: '';
            position: absolute;
            top: 2px;
            left: 2px;
            width: 30px;
            height: 30px;
            background-color: white;
            border-radius: 50%;
            transition: transform 0.3s;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }

        .toggle-checkbox:checked + .toggle-label {
            background-color: var(--primary-color);
        }

        .toggle-checkbox:checked + .toggle-label::after {
            transform: translateX(36px);
        }

        .plan-pricing .price-monthly {
            display: block;
        }

        .plan-pricing .price-annual {
            display: none;
        }

        .plan-pricing.show-annual .price-monthly {
            display: none;
        }

        .plan-pricing.show-annual .price-annual {
            display: block;
        }

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

        .intro-price .price {
            font-size: 3.2rem;
            font-weight: 800;
            color: var(--accent-color);
            display: block;
            line-height: 1;
        }

        .intro-price .period {
            font-size: 0.9rem;
            color: var(--gray);
            display: block;
            margin-top: 5px;
            font-style: italic;
        }

        .annual-price .price {
            font-size: 3.2rem;
            font-weight: 800;
            color: var(--primary-color);
            display: block;
            line-height: 1;
        }

        .annual-price .period {
            font-size: 1rem;
            color: var(--gray);
            display: block;
            margin-top: 5px;
        }

        .regular-price {
            color: var(--primary-color);
            font-size: 1rem;
            font-weight: 600;
            padding-top: 10px;
            border-top: 1px dashed #e2e8f0;
        }

        .profit-share .price-main {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--primary-color);
            line-height: 1;
        }

        .profit-share .price-sub {
            font-size: 1.3rem;
            color: var(--gray);
            margin-top: 8px;
            font-weight: 600;
        }

        .profit-share .price-note {
            font-size: 0.95rem;
            color: #666;
            margin-top: 10px;
            font-style: italic;
        }

        .plan-features {
            list-style: none;
            margin: 2.5rem 0 3rem;
            text-align: left;
            flex-grow: 1;
        }

        .plan-features li {
            margin-bottom: 1rem;
            padding-left: 2rem;
            position: relative;
            color: #334155;
            font-size: 0.95rem;
            line-height: 1.5;
        }

        .plan-features li i {
            position: absolute;
            left: 0;
            top: 3px;
            font-size: 1rem;
        }

        .feature-included i {
            color: #82D32B;
        }

        .feature-excluded {
            color: #999;
            opacity: 0.7;
        }

        .feature-excluded i {
            color: #ff4d4f;
        }

        .plan-stats {
            display: flex;
            gap: 1.5rem;
            margin: 2rem 0;
            padding: 1.5rem;
            background: var(--light-bg);
            border-radius: 12px;
        }

        .stat {
            text-align: center;
            flex: 1;
        }

        .stat-value {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary-color);
            line-height: 1;
        }

        .stat-label {
            font-size: 0.9rem;
            color: #666;
            margin-top: 5px;
        }

        /* ===== Buttons ===== */
        .cta-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 2rem;
            background: linear-gradient(135deg, var(--accent-color), #f59e0b);
            color: white;
            border: none;
            border-radius: var(--radius);
            font-weight: 700;
            font-size: 1.1rem;
            text-decoration: none;
            transition: var(--transition);
            cursor: pointer;
            text-align: center;
            gap: 10px;
            width: 100%;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow);
            background: linear-gradient(135deg, #f59e0b, var(--accent-color));
        }

        .plan-cta {
            margin-top: 1.5rem;
            animation: pulse-glow 2s infinite;
        }

        @keyframes pulse-glow {
            0% { box-shadow: 0 0 0 0 rgba(230, 162, 60, 0.4); }
            70% { box-shadow: 0 0 0 10px rgba(230, 162, 60, 0); }
            100% { box-shadow: 0 0 0 0 rgba(230, 162, 60, 0); }
        }

        /* ===== Crypto Payment Section ===== */
        .payment-section {
            padding: 80px 0;
            background-color: white;
        }

        .payment-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .payment-methods {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin: 3rem 0;
            flex-wrap: wrap;
        }

        .payment-method {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }

        .payment-icon {
            font-size: 3rem;
            color: var(--gray);
        }

        .payment-name {
            font-weight: 600;
            color: var(--primary-color);
        }

        .crypto-only-badge {
            background: linear-gradient(135deg, #f59e0b, #e6a23c);
            color: white;
            padding: 8px 20px;
            border-radius: 20px;
            font-weight: 700;
            font-size: 1rem;
            margin-bottom: 2rem;
            display: inline-block;
            box-shadow: 0 4px 12px rgba(230, 162, 60, 0.3);
        }

        .security-badge {
            background: var(--light-bg);
            border-radius: 12px;
            padding: 2rem;
            text-align: center;
            margin-top: 3rem;
            border: 1px solid var(--border-color);
        }

        .security-badge h4 {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-bottom: 1rem;
        }

        .security-badge i {
            color: #82D32B;
            font-size: 1.5rem;
        }

        /* ===== Guarantee Section ===== */
        .guarantee-section {
            padding: 80px 0;
            background-color: var(--light-bg);
        }

        .guarantee-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .guarantee-card {
            background: white;
            border-radius: 12px;
            padding: 2.5rem;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid var(--border-color);
        }

        .guarantee-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .guarantee-icon {
            font-size: 3rem;
            color: var(--accent-color);
            margin-bottom: 1.5rem;
        }

        .guarantee-card h4 {
            margin-bottom: 1rem;
        }

        /* ===== FAQ Section ===== */
        .faq-section {
            padding: 80px 0;
            background-color: white;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 1.5rem;
            border: 1px solid var(--border-color);
            border-radius: var(--radius);
            overflow: hidden;
        }

        .faq-question {
            padding: 1.5rem;
            background: var(--light-bg);
            font-weight: 600;
            font-size: 1.1rem;
            color: var(--primary-color);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition);
        }

        .faq-question:hover {
            background: #e2e8f0;
        }

        .faq-question i {
            transition: transform 0.3s ease;
        }

        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 1.5rem;
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        /* ===== Footer ===== */
        .footer {
            background: linear-gradient(135deg, #0f172a 0%, #1a3a5f 100%);
            color: white;
            padding: 4rem 0 2rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 1.5rem;
            font-size: 1.4rem;
            font-weight: 700;
        }

        .footer-links h4 {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--accent-color);
        }

        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }

        /* ===== Mobile Navigation ===== */
        .mobile-menu-btn {
            display: none;
            background: transparent;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 5px;
        }

        /* ===== Responsive Design ===== */
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 2rem; }
            
            .subscribe-hero h1 {
                font-size: 2.8rem;
            }
            
            .plans-container {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin-left: auto;
                margin-right: auto;
            }
            
            .plan-card.featured {
                transform: none;
            }
        }
 /* Premium Horizontal Section */
        .premium-section {
            background: linear-gradient(135deg, #e3f2fd 0%, #e8f5e9 100%);
            padding: 4rem 0;
            margin: 3rem 0;
            border-radius: var(--radius);
        }
        
        .premium-container {
            display: flex;
            align-items: center;
            gap: 3rem;
        }
        
        .premium-content {
            flex: 1;
        }
        
        .premium-badge {
            display: inline-block;
            background: linear-gradient(135deg, var(--premium-blue), var(--premium-green));
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }
        
        .premium-title {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }
        
        .premium-subtitle {
            font-size: 1.2rem;
            color: var(--gray);
            margin-bottom: 1.5rem;
            font-weight: 500;
        }
        
        .premium-highlight {
            display: inline-block;
            background-color: rgba(30, 136, 229, 0.1);
            color: var(--premium-blue);
            padding: 0.5rem 1rem;
            border-radius: 4px;
            font-weight: 600;
            margin-bottom: 1.5rem;
            border-left: 4px solid var(--premium-blue);
        }
        
        .premium-features {
            list-style: none;
            margin: 1.5rem 0;
        }
        
        .premium-features li {
            margin-bottom: 0.8rem;
            display: flex;
            align-items: flex-start;
        }
        
        .premium-features i {
            color: var(--premium-green);
            margin-right: 10px;
            margin-top: 3px;
            flex-shrink: 0;
        }
        
        .premium-pricing {
            background: white;
            padding: 2rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            flex: 0 0 350px;
            border-top: 4px solid var(--premium-blue);
        }
        
        .premium-price-main {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--premium-blue);
            margin-bottom: 0.5rem;
        }
        
        .premium-price-sub {
            color: var(--gray);
            margin-bottom: 1.5rem;
        }
        
        .premium-price-details {
            list-style: none;
            margin: 1.5rem 0;
        }
        
        .premium-price-details li {
            margin-bottom: 0.8rem;
            padding-left: 1.5rem;
            position: relative;
        }
        
        .premium-price-details li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--premium-green);
            font-weight: bold;
            font-size: 1.2rem;
        }
        @media (max-width: 768px) {
            .subscribe-hero {
                padding: 80px 0 40px;
            }
            
            .subscribe-hero h1 {
                font-size: 2.4rem;
            }
            
            .subscribe-hero p {
                font-size: 1.1rem;
            }
            
            .footerdivs_top > .topleftalign:last-child {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .payment-methods {
                gap: 20px;
            }
            
            .payment-icon {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 576px) {
            h1 { font-size: 2rem; }
            h2 { font-size: 1.6rem; }
            
            .subscribe-hero h1 {
                font-size: 2rem;
            }
            
            .plan-card {
                padding: 2rem;
            }
            
            .price {
                font-size: 2.8rem;
            }
            
            .plan-stats {
                flex-direction: column;
                gap: 1rem;
            }
            
            .guarantee-container {
                grid-template-columns: 1fr;
            }
        }
        /* ===== Subscription Plans Section ===== */
.subscription-plans {
    padding: 80px 0;
    background-color: var(--light-bg);
    position: relative;
}

/* All Plans Benefits */
.all-plans-benefits {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    margin: 2rem auto 3rem;
    max-width: 900px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.all-plans-benefits h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
}

.all-plans-benefits h3 i {
    color: #82D32B;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--light-bg);
    border-radius: 8px;
    transition: var(--transition);
}

.benefit-item:hover {
    background: #e2e8f0;
    transform: translateY(-2px);
}

.benefit-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.benefit-item span {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.95rem;
}

/* Billing Toggle */
.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 2rem 0 3rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
}

.billing-option {
    font-weight: 600;
    color: var(--gray);
    transition: color 0.3s;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.billing-option.active {
    color: var(--primary-color);
}

.discount-badge {
    background: #82D32B;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
}

.toggle-switch {
    position: relative;
    width: 70px;
    height: 34px;
}

.toggle-checkbox {
    display: none;
}

.toggle-label {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ccc;
    border-radius: 34px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.toggle-label::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 30px;
    height: 30px;
    background-color: white;
    border-radius: 50%;
    transition: transform 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.toggle-checkbox:checked + .toggle-label {
    background-color: var(--primary-color);
}

.toggle-checkbox:checked + .toggle-label::after {
    transform: translateX(36px);
}

/* Plans Container */
.plans-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.plan-card {
    background-color: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    position: relative;
    border: 2px solid var(--border-color);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: rgba(230, 162, 60, 0.1);
}



.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-color), #f59e0b);
    color: white;
    padding: 10px 30px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.95rem;
    z-index: 2;
    box-shadow: 0 6px 20px rgba(230, 162, 60, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Plan Header with Colored Title Backgrounds */
.plan-header {
    margin-bottom: 1.5rem;
}

.plan-title-badge {
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 1.5rem;
    display: inline-block;
    width: 100%;
}

.plan-title-badge.basic-bg {
    background: linear-gradient(135deg, #1a3a5f, #2a5a8c);
}

.plan-title-badge.advanced-bg {
    background: linear-gradient(135deg, var(--accent-color), #f59e0b);
}

.plan-title-badge.profitshare-bg {
    background: linear-gradient(135deg, #82D32B, #4CAF50);
}

.plan-title-badge .plan-name {
    color: white;
    font-size: 2.2rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-header-content {
    margin-top: 1rem;
}

.plan-description {
    color: var(--gray);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.plan-highlights {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.plan-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    padding: 8px 15px;
    background: var(--light-bg);
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--primary-color);
    font-weight: 500;
}

.highlight-icon {
    color: var(--accent-color);
    font-size: 1rem;
}

/* Plan Pricing */
.plan-pricing {
    margin: 2rem 0;
}

.plan-pricing .price-monthly {
    display: block;
}

.plan-pricing .price-annual {
    display: none;
}

.plan-pricing.show-annual .price-monthly {
    display: none;
}

.plan-pricing.show-annual .price-annual {
    display: block;
}

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

.intro-price .price {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--accent-color);
    display: block;
    line-height: 1;
}

.intro-price .period {
    font-size: 0.9rem;
    color: var(--gray);
    display: block;
    margin-top: 5px;
    font-style: italic;
}

.annual-price .price {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    line-height: 1;
}

.annual-price .period {
    font-size: 1rem;
    color: var(--gray);
    display: block;
    margin-top: 5px;
}

.regular-price {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    padding-top: 10px;
    border-top: 1px dashed #e2e8f0;
}

.savings-highlight {
    background: rgba(130, 211, 43, 0.1);
    color: #82D32B;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 10px;
    display: inline-block;
}

/* Profit Share Specific Pricing */
.profit-share {
    margin: 1.5rem 0;
}

.profit-share .price-main {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.profit-share .price-sub {
    font-size: 1.3rem;
    color: var(--gray);
    margin-top: 8px;
    font-weight: 600;
}

.profit-share .price-note {
    font-size: 0.95rem;
    color: #666;
    margin-top: 10px;
    font-style: italic;
}

.setup-fee {
    background: #fff8e1;
    padding: 12px;
    border-radius: 8px;
    margin: 1rem 0;
    border: 1px solid #ffeaa7;
}

.fee-label {
    color: #666;
    font-size: 0.95rem;
    margin-right: 8px;
}

.fee-amount {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.minimum-account {
    color: #666;
    font-size: 0.9rem;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.minimum-account i {
    color: var(--accent-color);
}

/* Plan Stats */
.plan-stats {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 12px;
}

.stat {
    text-align: center;
    flex: 1;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Plan Features */
.plan-features {
    list-style: none;
    margin: 2.5rem 0 3rem;
    text-align: left;
    flex-grow: 1;
    padding: 0 10px;
}

.plan-features li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    color: #334155;
    font-size: 0.95rem;
    line-height: 1.5;
}

.plan-features li i {
    position: absolute;
    left: 0;
    top: 3px;
    font-size: 1rem;
}

.feature-included i {
    color: #82D32B;
}

.feature-excluded {
    color: #999;
    opacity: 0.7;
}

.feature-excluded i {
    color: #ff4d4f;
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--accent-color), #f59e0b);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
    gap: 10px;
    width: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    background: linear-gradient(135deg, #f59e0b, var(--accent-color));
}

.plan-cta {
    margin-top: 1.5rem;
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(230, 162, 60, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(230, 162, 60, 0); }
    100% { box-shadow: 0 0 0 0 rgba(230, 162, 60, 0); }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .plans-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .plans-container {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .plan-card.featured {
        transform: none;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .subscription-plans {
        padding: 60px 0;
    }
    
    .all-plans-benefits {
        padding: 2rem;
    }
    
    .billing-toggle {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .toggle-switch {
        transform: rotate(90deg);
    }
    
    .plan-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .plan-highlights {
        flex-direction: column;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .plan-card {
        padding: 2rem;
    }
    
    .plan-title-badge .plan-name {
        font-size: 1.8rem;
    }
    
    .intro-price .price,
    .annual-price .price {
        font-size: 2.8rem;
    }
    
    .profit-share .price-main {
        font-size: 3rem;
    }
}
/* ===== Billing Toggle Updates ===== */
.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 2rem 0 3rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
}

.billing-option {
    font-weight: 600;
    color: var(--gray);
    transition: color 0.3s;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.billing-option.active {
    color: var(--primary-color);
}

.discount-badge {
    
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* ===== Plan Header Updates ===== */
.plan-header {
    margin-bottom: 1.5rem;
    text-align: center;
}

.plan-title-badge {
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 1rem;
    display: inline-block;
    width: 100%;
}

.plan-title-badge.basic-bg {
    background: linear-gradient(135deg, #1a3a5f, #2a5a8c);
}

.plan-title-badge.advanced-bg {
    
     background: linear-gradient(135deg, #82D32B, #4CAF50);
}

.plan-title-badge.profitshare-bg {
   background: linear-gradient(135deg, var(--accent-color), #f59e0b);
}

.plan-title-badge .plan-name {
    color: white;
    font-size: 2.2rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
}

.plan-description {
    color: var(--gray);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    font-weight: 500;
}

.plan-highlights {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 1rem;
}

.plan-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.plan-card .plan-highlight {
    background: var(--light-bg);
    border: 1px solid var(--border-color);
}

.plan-card.featured .plan-highlight {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.highlight-icon {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.plan-card.featured .highlight-icon {
    color: white;
}

/* ===== Plan Pricing Updates ===== */
.plan-pricing {
    margin: 2rem 0;
    text-align: center;
}

.intro-price {
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-color);
    display: block;
    line-height: 1;
    margin-bottom: 5px;
}

.intro-price .period {
    font-size: 1rem;
    color: var(--gray);
    display: block;
    font-weight: 500;
}

.regular-price {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    padding-top: 15px;
    border-top: 2px dashed #e2e8f0;
}

.annual-price .price-amount {
    color: var(--primary-color);
    font-size: 3.5rem;
}

.annual-price .period {
    color: var(--gray);
    font-size: 1rem;
    font-weight: 500;
}

.plan-pricing.show-annual .regular-price {
    color: #82D32B;
    background: rgba(130, 211, 43, 0.1);
    padding: 8px 15px;
    border-radius: 8px;
    border-top: none;
    margin-top: 10px;
}

/* ===== Popular Badge Updates ===== */
.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6b6b, #ff4757);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 800;
    font-size: 1rem;
    z-index: 2;
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== Profit Share Pricing Updates ===== */
.profit-share {
    margin: 1.5rem 0;
    text-align: center;
}

.profit-share .price-main {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.profit-share .price-sub {
    font-size: 1.5rem;
    color: var(--gray);
    margin-top: 10px;
    font-weight: 700;
}

.profit-share .price-note {
    font-size: 1rem;
    color: #666;
    margin-top: 10px;
    font-style: italic;
}

.setup-fee {
    background: #f8f9fa;
    padding: 12px 15px;
    border-radius: 8px;
    margin: 1.5rem 0;
    border: 2px solid var(--border-color);
}

.fee-label {
    color: var(--gray);
    font-size: 1rem;
    margin-right: 8px;
    font-weight: 500;
}

.fee-amount {
    color: var(--accent-color);
    font-weight: 800;
    font-size: 1.5rem;
}

.minimum-account {
    color: #666;
    font-size: 0.95rem;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 500;
}

.minimum-account i {
    color: var(--accent-color);
}

/* ===== Plan Stats Updates ===== */
.plan-stats {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 12px;
}

.stat {
    text-align: center;
    flex: 1;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* ===== Featured Plan Styling ===== */
.plan-card.featured {
    border: 3px solid #82D32B; /* Green border only */
    background: linear-gradient(135deg, #0f172a 0%, #1a3a5f 100%); /* Keep dark background */
    color: white;
    transform: scale(1.03);
    box-shadow: 0 20px 40px rgba(130, 211, 43, 0.25); /* Green shadow to match border */
    z-index: 1;
}

/* Make sure the Subscribe button is green */
.plan-card.featured .cta-button {
    background: linear-gradient(135deg, #82D32B, #4CAF50) !important;
    color: white !important;
}

.plan-card.featured .cta-button:hover {
    background: linear-gradient(135deg, #68D639, #2E7D32) !important;
}

.plan-card.featured .plan-name,
.plan-card.featured .plan-description,
.plan-card.featured .plan-features li,
.plan-card.featured .stat-label,
.plan-card.featured .stat-value,
.plan-card.featured .regular-price {
    color: white;
}

.plan-card.featured .plan-stats {
    background: rgba(255, 255, 255, 0.1);
}

.plan-card.featured .price-amount,
.plan-card.featured .annual-price .price-amount {
    color: white;
}

.plan-card.featured .regular-price {
    border-top-color: rgba(255, 255, 255, 0.3);
}

.plan-card.featured .feature-included i {
    color: #82D32B;
}

/* ===== Responsive Updates ===== */
@media (max-width: 768px) {
    .plan-title-badge .plan-name {
        font-size: 1.8rem;
    }
    
    .price-amount,
    .profit-share .price-main {
        font-size: 2.8rem;
    }
    
    .plan-highlights {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .plan-card.featured {
        transform: none;
    }
    
    .plan-title-badge .plan-name {
        font-size: 1.6rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
}
.premium-button {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #1e3c72 100%) !important;
    background-size: 200% 200% !important;
    animation: premium-glow 3s ease infinite !important;
}

@keyframes premium-glow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.premium-button:hover {
    animation: none !important;
    background: linear-gradient(135deg, #162b58, #1e3c72) !important;
}

/* ===== Crypto Payment Section ===== */
.payment-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.payment-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Crypto-only badge */
.crypto-only-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #f59e0b, #e6a23c);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    box-shadow: 0 6px 20px rgba(230, 162, 60, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.crypto-only-badge i {
    font-size: 1.2rem;
    color: white;
}

/* Payment methods grid */
.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.payment-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 2.5rem 1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.payment-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #f59e0b, #82D32B);
    opacity: 0.7;
    transition: height 0.3s ease;
}

.payment-method:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: rgba(130, 211, 43, 0.3);
}

.payment-method:hover::before {
    height: 8px;
    opacity: 1;
}

.payment-icon {
    font-size: 3.5rem;
    color: #f59e0b;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.payment-method:hover .payment-icon {
    transform: scale(1.1);
    color: #82D32B;
}

/* Specific crypto icons */
.payment-method:nth-child(1) .payment-icon {
    color: #F7931A; /* Bitcoin orange */
}
.payment-method:nth-child(2) .payment-icon {
    color: #26A17B; /* USDT green */
}
.payment-method:nth-child(3) .payment-icon {
    color: #2775CA; /* USDC blue */
}
.payment-method:nth-child(4) .payment-icon {
    color: #1E3A8A; /* SGNLT dark blue */
}

.payment-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 10px;
}

.payment-symbol {
    font-size: 0.9rem;
    color: var(--gray);
    background: var(--light-bg);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    margin-top: 5px;
}

.payment-method .discount-note {
    background: linear-gradient(135deg, #82D32B, #4CAF50);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 10px;
    box-shadow: 0 3px 10px rgba(130, 211, 43, 0.3);
}

/* Activation Steps */
.activation-steps {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    margin: 4rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--border-color);
    text-align: left;
}

.activation-steps h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.activation-steps h3 i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.steps-list {
    list-style: none;
    counter-reset: step-counter;
}

.steps-list li {
    counter-increment: step-counter;
    margin-bottom: 2rem;
    padding-left: 4rem;
    position: relative;
    border-left: 2px solid var(--light-gray);
    padding-bottom: 1.5rem;
}

.steps-list li:last-child {
    border-left: none;
    padding-bottom: 0;
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: -1.25rem;
    top: 0;
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, var(--accent-color), #f59e0b);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(230, 162, 60, 0.3);
}

.steps-list h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.steps-list p {
    color: var(--gray);
    margin-bottom: 0;
}

.steps-list .step-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--light-bg);
    padding: 8px 16px;
    border-radius: 8px;
    margin-top: 10px;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.steps-list .step-action:hover {
    background: var(--border-color);
    transform: translateY(-2px);
}

/* Contact Help Badge */
.contact-help-badge {
    background: linear-gradient(135deg, #1a3a5f, #0f172a);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    margin-top: 3rem;
    color: white;
    border: 2px solid rgba(230, 162, 60, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-help-badge h4 {
    color: white;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.3rem;
}

.contact-help-badge i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.contact-help-badge p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    border-color: rgba(230, 162, 60, 0.3);
}

.contact-method i {
    color: var(--accent-color);
}

/* Security badge */
.security-badge {
    background: linear-gradient(135deg, #82D32B, #4CAF50);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    margin-top: 4rem;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(130, 211, 43, 0.2);
}

.security-badge h4 {
    color: white;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.5rem;
}

.security-badge i {
    color: white;
    font-size: 1.8rem;
}

.security-badge p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .payment-methods {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .activation-steps {
        padding: 2rem;
    }
    
    .steps-list li {
        padding-left: 3rem;
        border-left: none;
    }
    
    .steps-list li::before {
        left: 0;
        top: 0;
        width: 2.2rem;
        height: 2.2rem;
    }
    
    .contact-methods {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-method {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .payment-methods {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .crypto-only-badge {
        font-size: 1rem;
        padding: 10px 20px;
    }
}
/* Payment Benefits */
.payment-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0 3rem;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.benefit-item i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.benefit-item span {
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
    font-size: 0.95rem;
}

/* Other crypto note */
.other-crypto-note {
    background: linear-gradient(135deg, #e6f7ff, #f0f9ff);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    border-left: 4px solid var(--accent-color);
    text-align: center;
}

.other-crypto-note p {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.other-crypto-note i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.other-crypto-note strong {
    color: var(--accent-color);
    background: rgba(230, 162, 60, 0.1);
    padding: 4px 10px;
    border-radius: 6px;
    margin: 0 5px;
}

/* Update the security badge title */
.security-badge h4 i {
    color: var(--accent-color) !important;
}

/* Update badge text */
.crypto-only-badge {
    /* ... existing styles ... */
    background: linear-gradient(135deg, #82D32B, #4CAF50); /* Change to green */
}

@media (max-width: 768px) {
    .payment-benefits {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .other-crypto-note p {
        flex-direction: column;
        gap: 5px;
    }
}

@media (max-width: 576px) {
    .payment-benefits {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
}
/* ===== Professional Services Section ===== */
.pro-services {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.pro-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(26, 58, 95, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(130, 211, 43, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.pro-services__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Header */
.pro-services__head {
    text-align: center;
    margin-bottom: 60px;
}

.pro-services__title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.pro-services__title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--accent-color), #f59e0b);
    border-radius: 2px;
}

.pro-services__subtitle {
    font-size: 1.3rem;
    color: var(--gray);
    max-width: 800px;
    margin: 2rem auto 0;
    line-height: 1.6;
    font-weight: 500;
}

/* Grid */
.pro-services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 60px;
}

/* Cards */
.pro-services__card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pro-services__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--accent-color), #82D32B);
    opacity: 0.8;
    transition: height 0.3s ease;
}

.pro-services__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(130, 211, 43, 0.3);
}

.pro-services__card:hover::before {
    height: 10px;
    opacity: 1;
}

/* Card Content */
.pro-services__icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(230, 162, 60, 0.1), rgba(130, 211, 43, 0.1));
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
}

.pro-services__cardTitle {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    text-align: center;
    line-height: 1.3;
}

.pro-services__text {
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1.8rem;
    text-align: center;
    flex-grow: 1;
}

/* List */
.pro-services__list {
    list-style: none;
    margin: 1.5rem 0 2rem;
    padding: 0;
}

.pro-services__list li {
    margin-bottom: 0.8rem;
    padding-left: 2rem;
    position: relative;
    color: #334155;
    font-size: 0.95rem;
    line-height: 1.5;
}

.pro-services__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #82D32B;
    font-weight: bold;
    font-size: 1rem;
}

/* Links */
.pro-services__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-color), #2a5a8c);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-top: auto;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: center;
}

.pro-services__link:hover {
    background: linear-gradient(135deg, #2a5a8c, var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(26, 58, 95, 0.2);
}

.pro-services__link i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.pro-services__link:hover i {
    transform: translateX(4px);
}

/* CTA Section */
.pro-services__cta {
    background: linear-gradient(135deg, var(--primary-color), #0f172a);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    color: white;
    margin-top: 4rem;
    border: 2px solid rgba(230, 162, 60, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.pro-services__ctaText {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pro-services__ctaText strong {
    color: var(--accent-color);
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

/* Buttons */
.pro-services__ctaButtons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.pro-services__ctaButtons .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color), #f59e0b);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #f59e0b, var(--accent-color));
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(230, 162, 60, 0.3);
}

.btn-ghost {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
    .pro-services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pro-services {
        padding: 80px 0;
    }
    
    .pro-services__title {
        font-size: 2.2rem;
    }
    
    .pro-services__subtitle {
        font-size: 1.1rem;
        padding: 0 15px;
    }
    
    .pro-services__grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .pro-services__cta {
        padding: 2.5rem 2rem;
    }
    
    .pro-services__ctaButtons {
        flex-direction: column;
        align-items: center;
    }
    
    .pro-services__ctaButtons .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .pro-services__card {
        padding: 2rem;
    }
    
    .pro-services__cardTitle {
        font-size: 1.5rem;
    }
    
    .pro-services__ctaText {
        font-size: 1.1rem;
    }
}